@nocobase/plugin-ai-gigachat 2.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +201 -0
- package/README.md +99 -0
- package/client.d.ts +2 -0
- package/client.js +1 -0
- package/dist/client/index.d.ts +8 -0
- package/dist/client/index.js +10 -0
- package/dist/client/llm-providers/gigachat/ModelSettings.d.ts +10 -0
- package/dist/client/llm-providers/gigachat/ProviderSettings.d.ts +10 -0
- package/dist/client/llm-providers/gigachat/index.d.ts +10 -0
- package/dist/client/locale.d.ts +3 -0
- package/dist/externalVersion.js +18 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +48 -0
- package/dist/locale/de-DE.json +1 -0
- package/dist/locale/en-US.json +1 -0
- package/dist/locale/es-ES.json +1 -0
- package/dist/locale/fr-FR.json +1 -0
- package/dist/locale/hu-HU.json +1 -0
- package/dist/locale/id-ID.json +1 -0
- package/dist/locale/it-IT.json +1 -0
- package/dist/locale/ja-JP.json +1 -0
- package/dist/locale/ko-KR.json +1 -0
- package/dist/locale/nl-NL.json +1 -0
- package/dist/locale/pt-BR.json +1 -0
- package/dist/locale/ru-RU.json +1 -0
- package/dist/locale/tr-TR.json +1 -0
- package/dist/locale/uk-UA.json +1 -0
- package/dist/locale/vi-VN.json +1 -0
- package/dist/locale/zh-CN.json +1 -0
- package/dist/locale/zh-TW.json +1 -0
- package/dist/node_modules/gigachat/api/get_balance.d.ts +8 -0
- package/dist/node_modules/gigachat/api/get_balance.js +33 -0
- package/dist/node_modules/gigachat/api/get_file.d.ts +9 -0
- package/dist/node_modules/gigachat/api/get_file.js +32 -0
- package/dist/node_modules/gigachat/api/get_files.d.ts +8 -0
- package/dist/node_modules/gigachat/api/get_files.js +32 -0
- package/dist/node_modules/gigachat/api/get_image.d.ts +10 -0
- package/dist/node_modules/gigachat/api/get_image.js +34 -0
- package/dist/node_modules/gigachat/api/get_model.d.ts +9 -0
- package/dist/node_modules/gigachat/api/get_model.js +32 -0
- package/dist/node_modules/gigachat/api/get_models.d.ts +8 -0
- package/dist/node_modules/gigachat/api/get_models.js +32 -0
- package/dist/node_modules/gigachat/api/index.d.ts +16 -0
- package/dist/node_modules/gigachat/api/index.js +35 -0
- package/dist/node_modules/gigachat/api/post_ai_check.d.ts +10 -0
- package/dist/node_modules/gigachat/api/post_ai_check.js +33 -0
- package/dist/node_modules/gigachat/api/post_auth.d.ts +10 -0
- package/dist/node_modules/gigachat/api/post_auth.js +47 -0
- package/dist/node_modules/gigachat/api/post_chat.d.ts +11 -0
- package/dist/node_modules/gigachat/api/post_chat.js +33 -0
- package/dist/node_modules/gigachat/api/post_embeddings.d.ts +10 -0
- package/dist/node_modules/gigachat/api/post_embeddings.js +33 -0
- package/dist/node_modules/gigachat/api/post_files.d.ts +10 -0
- package/dist/node_modules/gigachat/api/post_files.js +36 -0
- package/dist/node_modules/gigachat/api/post_files_delete.d.ts +9 -0
- package/dist/node_modules/gigachat/api/post_files_delete.js +33 -0
- package/dist/node_modules/gigachat/api/post_token.d.ts +10 -0
- package/dist/node_modules/gigachat/api/post_token.js +36 -0
- package/dist/node_modules/gigachat/api/post_tokens_count.d.ts +10 -0
- package/dist/node_modules/gigachat/api/post_tokens_count.js +34 -0
- package/dist/node_modules/gigachat/api/stream_chat.d.ts +11 -0
- package/dist/node_modules/gigachat/api/stream_chat.js +140 -0
- package/dist/node_modules/gigachat/api/utils.d.ts +9 -0
- package/dist/node_modules/gigachat/api/utils.js +67 -0
- package/dist/node_modules/gigachat/constants.d.ts +3 -0
- package/dist/node_modules/gigachat/constants.js +6 -0
- package/dist/node_modules/gigachat/exceptions.d.ts +12 -0
- package/dist/node_modules/gigachat/exceptions.js +26 -0
- package/dist/node_modules/gigachat/index.d.mts +78 -0
- package/dist/node_modules/gigachat/index.d.ts +78 -0
- package/dist/node_modules/gigachat/index.js +1 -0
- package/dist/node_modules/gigachat/interfaces/access_token.d.ts +8 -0
- package/dist/node_modules/gigachat/interfaces/access_token.js +3 -0
- package/dist/node_modules/gigachat/interfaces/ai_check_result.d.ts +13 -0
- package/dist/node_modules/gigachat/interfaces/ai_check_result.js +3 -0
- package/dist/node_modules/gigachat/interfaces/balance.d.ts +11 -0
- package/dist/node_modules/gigachat/interfaces/balance.js +3 -0
- package/dist/node_modules/gigachat/interfaces/chat.d.ts +33 -0
- package/dist/node_modules/gigachat/interfaces/chat.js +3 -0
- package/dist/node_modules/gigachat/interfaces/chat_completion.d.ts +16 -0
- package/dist/node_modules/gigachat/interfaces/chat_completion.js +3 -0
- package/dist/node_modules/gigachat/interfaces/chat_completion_chunk.d.ts +13 -0
- package/dist/node_modules/gigachat/interfaces/chat_completion_chunk.js +3 -0
- package/dist/node_modules/gigachat/interfaces/chat_function_call.d.ts +11 -0
- package/dist/node_modules/gigachat/interfaces/chat_function_call.js +3 -0
- package/dist/node_modules/gigachat/interfaces/choices.d.ts +11 -0
- package/dist/node_modules/gigachat/interfaces/choices.js +3 -0
- package/dist/node_modules/gigachat/interfaces/choices_chunk.d.ts +11 -0
- package/dist/node_modules/gigachat/interfaces/choices_chunk.js +3 -0
- package/dist/node_modules/gigachat/interfaces/deleted_file.d.ts +8 -0
- package/dist/node_modules/gigachat/interfaces/deleted_file.js +3 -0
- package/dist/node_modules/gigachat/interfaces/embedding.d.ts +13 -0
- package/dist/node_modules/gigachat/interfaces/embedding.js +3 -0
- package/dist/node_modules/gigachat/interfaces/embeddings.d.ts +11 -0
- package/dist/node_modules/gigachat/interfaces/embeddings.js +3 -0
- package/dist/node_modules/gigachat/interfaces/embeddings_usage.d.ts +6 -0
- package/dist/node_modules/gigachat/interfaces/embeddings_usage.js +3 -0
- package/dist/node_modules/gigachat/interfaces/few_shot_example.d.ts +10 -0
- package/dist/node_modules/gigachat/interfaces/few_shot_example.js +3 -0
- package/dist/node_modules/gigachat/interfaces/function.d.ts +18 -0
- package/dist/node_modules/gigachat/interfaces/function.js +3 -0
- package/dist/node_modules/gigachat/interfaces/function_call.d.ts +10 -0
- package/dist/node_modules/gigachat/interfaces/function_call.js +3 -0
- package/dist/node_modules/gigachat/interfaces/function_parameters.d.ts +13 -0
- package/dist/node_modules/gigachat/interfaces/function_parameters.js +3 -0
- package/dist/node_modules/gigachat/interfaces/function_parameters_property.d.ts +18 -0
- package/dist/node_modules/gigachat/interfaces/function_parameters_property.js +3 -0
- package/dist/node_modules/gigachat/interfaces/image.d.ts +6 -0
- package/dist/node_modules/gigachat/interfaces/image.js +3 -0
- package/dist/node_modules/gigachat/interfaces/index.d.ts +31 -0
- package/dist/node_modules/gigachat/interfaces/index.js +47 -0
- package/dist/node_modules/gigachat/interfaces/message.d.ts +22 -0
- package/dist/node_modules/gigachat/interfaces/message.js +3 -0
- package/dist/node_modules/gigachat/interfaces/message_chunk.d.ts +12 -0
- package/dist/node_modules/gigachat/interfaces/message_chunk.js +3 -0
- package/dist/node_modules/gigachat/interfaces/message_role.d.ts +2 -0
- package/dist/node_modules/gigachat/interfaces/message_role.js +3 -0
- package/dist/node_modules/gigachat/interfaces/model.d.ts +10 -0
- package/dist/node_modules/gigachat/interfaces/model.js +3 -0
- package/dist/node_modules/gigachat/interfaces/models.d.ts +9 -0
- package/dist/node_modules/gigachat/interfaces/models.js +3 -0
- package/dist/node_modules/gigachat/interfaces/token.d.ts +8 -0
- package/dist/node_modules/gigachat/interfaces/token.js +3 -0
- package/dist/node_modules/gigachat/interfaces/tokens_count.d.ts +13 -0
- package/dist/node_modules/gigachat/interfaces/tokens_count.js +3 -0
- package/dist/node_modules/gigachat/interfaces/uploaded_file.d.ts +18 -0
- package/dist/node_modules/gigachat/interfaces/uploaded_file.js +3 -0
- package/dist/node_modules/gigachat/interfaces/uploaded_files.d.ts +7 -0
- package/dist/node_modules/gigachat/interfaces/uploaded_files.js +3 -0
- package/dist/node_modules/gigachat/interfaces/usage.d.ts +10 -0
- package/dist/node_modules/gigachat/interfaces/usage.js +3 -0
- package/dist/node_modules/gigachat/interfaces/with_x_headers.d.ts +5 -0
- package/dist/node_modules/gigachat/interfaces/with_x_headers.js +3 -0
- package/dist/node_modules/gigachat/node_modules/axios/dist/axios.js +4353 -0
- package/dist/node_modules/gigachat/node_modules/axios/dist/axios.min.js +5 -0
- package/dist/node_modules/gigachat/node_modules/axios/dist/browser/axios.cjs +3979 -0
- package/dist/node_modules/gigachat/node_modules/axios/dist/esm/axios.js +4002 -0
- package/dist/node_modules/gigachat/node_modules/axios/dist/esm/axios.min.js +3 -0
- package/dist/node_modules/gigachat/node_modules/axios/dist/node/axios.cjs +5315 -0
- package/dist/node_modules/gigachat/node_modules/axios/index.d.cts +591 -0
- package/dist/node_modules/gigachat/node_modules/axios/index.d.ts +810 -0
- package/dist/node_modules/gigachat/node_modules/axios/index.js +43 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/adapters/adapters.js +126 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/adapters/fetch.js +288 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/adapters/http.js +898 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/adapters/xhr.js +200 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/axios.js +89 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/cancel/CancelToken.js +135 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/cancel/CanceledError.js +22 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/cancel/isCancel.js +5 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/core/Axios.js +249 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/core/AxiosError.js +73 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/core/AxiosHeaders.js +314 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/core/InterceptorManager.js +72 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/core/buildFullPath.js +22 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/core/dispatchRequest.js +81 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/core/mergeConfig.js +119 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/core/settle.js +27 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/core/transformData.js +28 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/defaults/index.js +161 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/defaults/transitional.js +8 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/env/classes/FormData.js +2 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/env/data.js +1 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/helpers/AxiosTransformStream.js +143 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/helpers/AxiosURLSearchParams.js +58 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/helpers/HttpStatusCode.js +77 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/helpers/ZlibHeaderTransformStream.js +28 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/helpers/bind.js +14 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/helpers/buildURL.js +64 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/helpers/callbackify.js +16 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/helpers/combineURLs.js +15 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/helpers/composeSignals.js +48 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/helpers/cookies.js +53 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/helpers/deprecatedMethod.js +26 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/helpers/estimateDataURLDecodedBytes.js +73 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/helpers/formDataToJSON.js +95 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/helpers/formDataToStream.js +112 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/helpers/fromDataURI.js +53 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/helpers/isAbsoluteURL.js +20 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/helpers/isAxiosError.js +14 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/helpers/isURLSameOrigin.js +14 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/helpers/null.js +2 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/helpers/parseHeaders.js +55 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/helpers/parseProtocol.js +6 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/helpers/progressEventReducer.js +44 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/helpers/readBlob.js +15 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/helpers/resolveConfig.js +61 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/helpers/speedometer.js +55 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/helpers/spread.js +28 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/helpers/throttle.js +44 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/helpers/toFormData.js +223 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/helpers/toURLEncodedForm.js +19 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/helpers/trackStream.js +87 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/helpers/validator.js +99 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/platform/browser/classes/Blob.js +3 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/platform/browser/classes/FormData.js +3 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/platform/browser/classes/URLSearchParams.js +4 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/platform/browser/index.js +13 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/platform/common/utils.js +51 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/platform/index.js +7 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/platform/node/classes/FormData.js +3 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/platform/node/classes/URLSearchParams.js +4 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/platform/node/index.js +38 -0
- package/dist/node_modules/gigachat/node_modules/axios/lib/utils.js +863 -0
- package/dist/node_modules/gigachat/node_modules/axios/package.json +220 -0
- package/dist/node_modules/gigachat/node_modules/es-define-property/.eslintrc +13 -0
- package/dist/node_modules/gigachat/node_modules/es-define-property/.github/FUNDING.yml +12 -0
- package/dist/node_modules/gigachat/node_modules/es-define-property/.nycrc +9 -0
- package/dist/node_modules/gigachat/node_modules/es-define-property/index.d.ts +3 -0
- package/dist/node_modules/gigachat/node_modules/es-define-property/index.js +14 -0
- package/dist/node_modules/gigachat/node_modules/es-define-property/package.json +81 -0
- package/dist/node_modules/gigachat/node_modules/es-define-property/test/index.js +56 -0
- package/dist/node_modules/gigachat/node_modules/es-object-atoms/.eslintrc +16 -0
- package/dist/node_modules/gigachat/node_modules/es-object-atoms/.github/FUNDING.yml +12 -0
- package/dist/node_modules/gigachat/node_modules/es-object-atoms/RequireObjectCoercible.d.ts +3 -0
- package/dist/node_modules/gigachat/node_modules/es-object-atoms/RequireObjectCoercible.js +11 -0
- package/dist/node_modules/gigachat/node_modules/es-object-atoms/ToObject.d.ts +7 -0
- package/dist/node_modules/gigachat/node_modules/es-object-atoms/ToObject.js +10 -0
- package/dist/node_modules/gigachat/node_modules/es-object-atoms/index.d.ts +3 -0
- package/dist/node_modules/gigachat/node_modules/es-object-atoms/index.js +4 -0
- package/dist/node_modules/gigachat/node_modules/es-object-atoms/isObject.d.ts +3 -0
- package/dist/node_modules/gigachat/node_modules/es-object-atoms/isObject.js +6 -0
- package/dist/node_modules/gigachat/node_modules/es-object-atoms/package.json +80 -0
- package/dist/node_modules/gigachat/node_modules/es-object-atoms/test/index.js +38 -0
- package/dist/node_modules/gigachat/node_modules/es-set-tostringtag/.eslintrc +13 -0
- package/dist/node_modules/gigachat/node_modules/es-set-tostringtag/.nycrc +9 -0
- package/dist/node_modules/gigachat/node_modules/es-set-tostringtag/index.d.ts +10 -0
- package/dist/node_modules/gigachat/node_modules/es-set-tostringtag/index.js +35 -0
- package/dist/node_modules/gigachat/node_modules/es-set-tostringtag/package.json +78 -0
- package/dist/node_modules/gigachat/node_modules/es-set-tostringtag/test/index.js +85 -0
- package/dist/node_modules/gigachat/node_modules/follow-redirects/debug.js +15 -0
- package/dist/node_modules/gigachat/node_modules/follow-redirects/http.js +1 -0
- package/dist/node_modules/gigachat/node_modules/follow-redirects/https.js +1 -0
- package/dist/node_modules/gigachat/node_modules/follow-redirects/index.js +686 -0
- package/dist/node_modules/gigachat/node_modules/follow-redirects/package.json +58 -0
- package/dist/node_modules/gigachat/node_modules/form-data/License +19 -0
- package/dist/node_modules/gigachat/node_modules/form-data/index.d.ts +62 -0
- package/dist/node_modules/gigachat/node_modules/form-data/lib/browser.js +4 -0
- package/dist/node_modules/gigachat/node_modules/form-data/lib/form_data.js +494 -0
- package/dist/node_modules/gigachat/node_modules/form-data/lib/populate.js +10 -0
- package/dist/node_modules/gigachat/node_modules/form-data/package.json +82 -0
- package/dist/node_modules/gigachat/node_modules/get-intrinsic/.eslintrc +42 -0
- package/dist/node_modules/gigachat/node_modules/get-intrinsic/.github/FUNDING.yml +12 -0
- package/dist/node_modules/gigachat/node_modules/get-intrinsic/.nycrc +9 -0
- package/dist/node_modules/gigachat/node_modules/get-intrinsic/index.js +378 -0
- package/dist/node_modules/gigachat/node_modules/get-intrinsic/node_modules/has-symbols/.eslintrc +11 -0
- package/dist/node_modules/gigachat/node_modules/get-intrinsic/node_modules/has-symbols/.github/FUNDING.yml +12 -0
- package/dist/node_modules/gigachat/node_modules/get-intrinsic/node_modules/has-symbols/.nycrc +9 -0
- package/dist/node_modules/gigachat/node_modules/get-intrinsic/node_modules/has-symbols/index.d.ts +3 -0
- package/dist/node_modules/gigachat/node_modules/get-intrinsic/node_modules/has-symbols/index.js +14 -0
- package/dist/node_modules/gigachat/node_modules/get-intrinsic/node_modules/has-symbols/package.json +111 -0
- package/dist/node_modules/gigachat/node_modules/get-intrinsic/node_modules/has-symbols/shams.d.ts +3 -0
- package/dist/node_modules/gigachat/node_modules/get-intrinsic/node_modules/has-symbols/shams.js +45 -0
- package/dist/node_modules/gigachat/node_modules/get-intrinsic/node_modules/has-symbols/test/index.js +22 -0
- package/dist/node_modules/gigachat/node_modules/get-intrinsic/node_modules/has-symbols/test/shams/core-js.js +29 -0
- package/dist/node_modules/gigachat/node_modules/get-intrinsic/node_modules/has-symbols/test/shams/get-own-property-symbols.js +29 -0
- package/dist/node_modules/gigachat/node_modules/get-intrinsic/node_modules/has-symbols/test/tests.js +58 -0
- package/dist/node_modules/gigachat/node_modules/get-intrinsic/package.json +97 -0
- package/dist/node_modules/gigachat/node_modules/get-intrinsic/test/GetIntrinsic.js +274 -0
- package/dist/node_modules/gigachat/node_modules/gopd/.eslintrc +16 -0
- package/dist/node_modules/gigachat/node_modules/gopd/.github/FUNDING.yml +12 -0
- package/dist/node_modules/gigachat/node_modules/gopd/gOPD.d.ts +1 -0
- package/dist/node_modules/gigachat/node_modules/gopd/gOPD.js +4 -0
- package/dist/node_modules/gigachat/node_modules/gopd/index.d.ts +5 -0
- package/dist/node_modules/gigachat/node_modules/gopd/index.js +15 -0
- package/dist/node_modules/gigachat/node_modules/gopd/package.json +77 -0
- package/dist/node_modules/gigachat/node_modules/gopd/test/index.js +36 -0
- package/dist/node_modules/gigachat/node_modules/has-tostringtag/.eslintrc +5 -0
- package/dist/node_modules/gigachat/node_modules/has-tostringtag/.github/FUNDING.yml +12 -0
- package/dist/node_modules/gigachat/node_modules/has-tostringtag/.nycrc +13 -0
- package/dist/node_modules/gigachat/node_modules/has-tostringtag/index.d.ts +3 -0
- package/dist/node_modules/gigachat/node_modules/has-tostringtag/index.js +8 -0
- package/dist/node_modules/gigachat/node_modules/has-tostringtag/package.json +108 -0
- package/dist/node_modules/gigachat/node_modules/has-tostringtag/shams.d.ts +3 -0
- package/dist/node_modules/gigachat/node_modules/has-tostringtag/shams.js +8 -0
- package/dist/node_modules/gigachat/node_modules/has-tostringtag/test/index.js +21 -0
- package/dist/node_modules/gigachat/node_modules/has-tostringtag/test/shams/core-js.js +31 -0
- package/dist/node_modules/gigachat/node_modules/has-tostringtag/test/shams/get-own-property-symbols.js +30 -0
- package/dist/node_modules/gigachat/node_modules/has-tostringtag/test/tests.js +15 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs/index.d.ts +15 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs/index.js +31 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs/max.d.ts +2 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs/max.js +3 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs/md5.d.ts +4 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs/md5.js +13 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs/native.d.ts +6 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs/native.js +4 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs/nil.d.ts +2 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs/nil.js +3 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs/package.json +1 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs/parse.d.ts +2 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs/parse.js +11 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs/regex.d.ts +2 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs/regex.js +3 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs/rng.d.ts +1 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs/rng.js +13 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs/sha1.d.ts +4 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs/sha1.js +13 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs/stringify.d.ts +3 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs/stringify.js +39 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs/types.d.ts +21 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs/types.js +2 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs/uuid-bin.d.ts +1 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs/uuid-bin.js +72 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs/v1.d.ts +11 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs/v1.js +87 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs/v1ToV6.d.ts +2 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs/v1ToV6.js +13 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs/v3.d.ts +9 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs/v3.js +14 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs/v35.d.ts +7 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs/v35.js +41 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs/v4.d.ts +4 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs/v4.js +29 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs/v5.d.ts +9 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs/v5.js +14 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs/v6.d.ts +4 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs/v6.js +19 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs/v6ToV1.d.ts +2 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs/v6ToV1.js +13 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs/v7.d.ts +9 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs/v7.js +69 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs/validate.d.ts +2 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs/validate.js +7 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs/version.d.ts +2 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs/version.js +10 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs-browser/index.d.ts +15 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs-browser/index.js +31 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs-browser/max.d.ts +2 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs-browser/max.js +3 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs-browser/md5.d.ts +2 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs-browser/md5.js +137 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs-browser/native.d.ts +4 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs-browser/native.js +4 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs-browser/nil.d.ts +2 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs-browser/nil.js +3 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs-browser/package.json +1 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs-browser/parse.d.ts +2 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs-browser/parse.js +11 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs-browser/regex.d.ts +2 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs-browser/regex.js +3 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs-browser/rng.d.ts +1 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs-browser/rng.js +14 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs-browser/sha1.d.ts +2 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs-browser/sha1.js +72 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs-browser/stringify.d.ts +3 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs-browser/stringify.js +39 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs-browser/types.d.ts +21 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs-browser/types.js +2 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs-browser/uuid-bin.d.ts +1 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs-browser/uuid-bin.js +72 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs-browser/v1.d.ts +11 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs-browser/v1.js +87 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs-browser/v1ToV6.d.ts +2 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs-browser/v1ToV6.js +13 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs-browser/v3.d.ts +9 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs-browser/v3.js +14 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs-browser/v35.d.ts +7 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs-browser/v35.js +41 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs-browser/v4.d.ts +4 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs-browser/v4.js +29 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs-browser/v5.d.ts +9 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs-browser/v5.js +14 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs-browser/v6.d.ts +4 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs-browser/v6.js +19 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs-browser/v6ToV1.d.ts +2 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs-browser/v6ToV1.js +13 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs-browser/v7.d.ts +9 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs-browser/v7.js +69 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs-browser/validate.d.ts +2 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs-browser/validate.js +7 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs-browser/version.d.ts +2 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/cjs-browser/version.js +10 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm/bin/uuid +2 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm/index.d.ts +15 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm/index.js +14 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm/max.d.ts +2 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm/max.js +1 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm/md5.d.ts +4 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm/md5.js +11 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm/native.d.ts +6 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm/native.js +2 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm/nil.d.ts +2 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm/nil.js +1 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm/parse.d.ts +2 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm/parse.js +9 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm/regex.d.ts +2 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm/regex.js +1 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm/rng.d.ts +1 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm/rng.js +10 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm/sha1.d.ts +4 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm/sha1.js +11 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm/stringify.d.ts +3 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm/stringify.js +35 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm/types.d.ts +21 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm/types.js +1 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm/uuid-bin.d.ts +1 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm/uuid-bin.js +70 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm/v1.d.ts +11 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm/v1.js +83 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm/v1ToV6.d.ts +2 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm/v1ToV6.js +10 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm/v3.d.ts +9 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm/v3.js +9 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm/v35.d.ts +7 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm/v35.js +36 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm/v4.d.ts +4 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm/v4.js +27 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm/v5.d.ts +9 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm/v5.js +9 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm/v6.d.ts +4 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm/v6.js +17 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm/v6ToV1.d.ts +2 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm/v6ToV1.js +10 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm/v7.d.ts +9 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm/v7.js +65 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm/validate.d.ts +2 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm/validate.js +5 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm/version.d.ts +2 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm/version.js +8 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm-browser/index.d.ts +15 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm-browser/index.js +14 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm-browser/max.d.ts +2 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm-browser/max.js +1 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm-browser/md5.d.ts +2 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm-browser/md5.js +135 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm-browser/native.d.ts +4 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm-browser/native.js +2 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm-browser/nil.d.ts +2 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm-browser/nil.js +1 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm-browser/parse.d.ts +2 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm-browser/parse.js +9 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm-browser/regex.d.ts +2 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm-browser/regex.js +1 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm-browser/rng.d.ts +1 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm-browser/rng.js +11 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm-browser/sha1.d.ts +2 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm-browser/sha1.js +70 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm-browser/stringify.d.ts +3 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm-browser/stringify.js +35 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm-browser/types.d.ts +21 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm-browser/types.js +1 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm-browser/uuid-bin.d.ts +1 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm-browser/uuid-bin.js +70 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm-browser/v1.d.ts +11 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm-browser/v1.js +83 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm-browser/v1ToV6.d.ts +2 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm-browser/v1ToV6.js +10 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm-browser/v3.d.ts +9 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm-browser/v3.js +9 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm-browser/v35.d.ts +7 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm-browser/v35.js +36 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm-browser/v4.d.ts +4 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm-browser/v4.js +27 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm-browser/v5.d.ts +9 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm-browser/v5.js +9 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm-browser/v6.d.ts +4 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm-browser/v6.js +17 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm-browser/v6ToV1.d.ts +2 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm-browser/v6ToV1.js +10 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm-browser/v7.d.ts +9 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm-browser/v7.js +65 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm-browser/validate.d.ts +2 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm-browser/validate.js +5 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm-browser/version.d.ts +2 -0
- package/dist/node_modules/gigachat/node_modules/uuid/dist/esm-browser/version.js +8 -0
- package/dist/node_modules/gigachat/node_modules/uuid/package.json +132 -0
- package/dist/node_modules/gigachat/package.json +1 -0
- package/dist/node_modules/gigachat/settings.d.ts +35 -0
- package/dist/node_modules/gigachat/settings.js +27 -0
- package/dist/node_modules/gigachat/src/api/get_balance.ts +37 -0
- package/dist/node_modules/gigachat/src/api/get_file.ts +40 -0
- package/dist/node_modules/gigachat/src/api/get_files.ts +39 -0
- package/dist/node_modules/gigachat/src/api/get_image.ts +40 -0
- package/dist/node_modules/gigachat/src/api/get_model.ts +37 -0
- package/dist/node_modules/gigachat/src/api/get_models.ts +36 -0
- package/dist/node_modules/gigachat/src/api/index.ts +15 -0
- package/dist/node_modules/gigachat/src/api/post_ai_check.ts +42 -0
- package/dist/node_modules/gigachat/src/api/post_auth.ts +56 -0
- package/dist/node_modules/gigachat/src/api/post_chat.ts +43 -0
- package/dist/node_modules/gigachat/src/api/post_embeddings.ts +42 -0
- package/dist/node_modules/gigachat/src/api/post_files.ts +46 -0
- package/dist/node_modules/gigachat/src/api/post_files_delete.ts +41 -0
- package/dist/node_modules/gigachat/src/api/post_token.ts +42 -0
- package/dist/node_modules/gigachat/src/api/post_tokens_count.ts +44 -0
- package/dist/node_modules/gigachat/src/api/stream_chat.ts +164 -0
- package/dist/node_modules/gigachat/src/api/utils.ts +66 -0
- package/dist/node_modules/gigachat/src/constants.ts +3 -0
- package/dist/node_modules/gigachat/src/exceptions.ts +25 -0
- package/dist/node_modules/gigachat/src/index.ts +389 -0
- package/dist/node_modules/gigachat/src/interfaces/access_token.ts +9 -0
- package/dist/node_modules/gigachat/src/interfaces/ai_check_result.ts +16 -0
- package/dist/node_modules/gigachat/src/interfaces/balance.ts +11 -0
- package/dist/node_modules/gigachat/src/interfaces/chat.ts +46 -0
- package/dist/node_modules/gigachat/src/interfaces/chat_completion.ts +21 -0
- package/dist/node_modules/gigachat/src/interfaces/chat_completion_chunk.ts +17 -0
- package/dist/node_modules/gigachat/src/interfaces/chat_function_call.ts +11 -0
- package/dist/node_modules/gigachat/src/interfaces/choices.ts +14 -0
- package/dist/node_modules/gigachat/src/interfaces/choices_chunk.ts +14 -0
- package/dist/node_modules/gigachat/src/interfaces/deleted_file.ts +8 -0
- package/dist/node_modules/gigachat/src/interfaces/embedding.ts +17 -0
- package/dist/node_modules/gigachat/src/interfaces/embeddings.ts +14 -0
- package/dist/node_modules/gigachat/src/interfaces/embeddings_usage.ts +6 -0
- package/dist/node_modules/gigachat/src/interfaces/few_shot_example.ts +9 -0
- package/dist/node_modules/gigachat/src/interfaces/function.ts +21 -0
- package/dist/node_modules/gigachat/src/interfaces/function_call.ts +9 -0
- package/dist/node_modules/gigachat/src/interfaces/function_parameters.ts +14 -0
- package/dist/node_modules/gigachat/src/interfaces/function_parameters_property.ts +18 -0
- package/dist/node_modules/gigachat/src/interfaces/image.ts +6 -0
- package/dist/node_modules/gigachat/src/interfaces/index.ts +30 -0
- package/dist/node_modules/gigachat/src/interfaces/message.ts +30 -0
- package/dist/node_modules/gigachat/src/interfaces/message_chunk.ts +15 -0
- package/dist/node_modules/gigachat/src/interfaces/message_role.ts +7 -0
- package/dist/node_modules/gigachat/src/interfaces/model.ts +12 -0
- package/dist/node_modules/gigachat/src/interfaces/models.ts +11 -0
- package/dist/node_modules/gigachat/src/interfaces/token.ts +9 -0
- package/dist/node_modules/gigachat/src/interfaces/tokens_count.ts +16 -0
- package/dist/node_modules/gigachat/src/interfaces/uploaded_file.ts +24 -0
- package/dist/node_modules/gigachat/src/interfaces/uploaded_files.ts +8 -0
- package/dist/node_modules/gigachat/src/interfaces/usage.ts +10 -0
- package/dist/node_modules/gigachat/src/interfaces/with_x_headers.ts +5 -0
- package/dist/node_modules/gigachat/src/settings.ts +71 -0
- package/dist/node_modules/langchain-gigachat/LICENSE +21 -0
- package/dist/node_modules/langchain-gigachat/chat_models.cjs +1 -0
- package/dist/node_modules/langchain-gigachat/chat_models.d.cts +1 -0
- package/dist/node_modules/langchain-gigachat/chat_models.d.ts +1 -0
- package/dist/node_modules/langchain-gigachat/chat_models.js +1 -0
- package/dist/node_modules/langchain-gigachat/dist/chat_models.cjs +628 -0
- package/dist/node_modules/langchain-gigachat/dist/chat_models.d.ts +126 -0
- package/dist/node_modules/langchain-gigachat/dist/chat_models.js +624 -0
- package/dist/node_modules/langchain-gigachat/dist/embeddings.cjs +153 -0
- package/dist/node_modules/langchain-gigachat/dist/embeddings.d.ts +77 -0
- package/dist/node_modules/langchain-gigachat/dist/embeddings.js +149 -0
- package/dist/node_modules/langchain-gigachat/dist/index.cjs +18 -0
- package/dist/node_modules/langchain-gigachat/dist/index.d.ts +2 -0
- package/dist/node_modules/langchain-gigachat/dist/index.js +2 -0
- package/dist/node_modules/langchain-gigachat/embeddings.cjs +1 -0
- package/dist/node_modules/langchain-gigachat/embeddings.d.cts +1 -0
- package/dist/node_modules/langchain-gigachat/embeddings.d.ts +1 -0
- package/dist/node_modules/langchain-gigachat/embeddings.js +1 -0
- package/dist/node_modules/langchain-gigachat/index.cjs +7 -0
- package/dist/node_modules/langchain-gigachat/index.d.cts +1 -0
- package/dist/node_modules/langchain-gigachat/index.d.ts +1 -0
- package/dist/node_modules/langchain-gigachat/index.js +1 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs/index.d.ts +15 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs/index.js +31 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs/max.d.ts +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs/max.js +3 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs/md5.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs/md5.js +13 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs/native.d.ts +6 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs/native.js +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs/nil.d.ts +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs/nil.js +3 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs/package.json +1 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs/parse.d.ts +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs/parse.js +11 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs/regex.d.ts +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs/regex.js +3 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs/rng.d.ts +1 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs/rng.js +13 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs/sha1.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs/sha1.js +13 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs/stringify.d.ts +3 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs/stringify.js +39 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs/types.d.ts +21 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs/types.js +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs/uuid-bin.d.ts +1 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs/uuid-bin.js +72 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs/v1.d.ts +11 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs/v1.js +87 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs/v1ToV6.d.ts +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs/v1ToV6.js +13 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs/v3.d.ts +9 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs/v3.js +14 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs/v35.d.ts +7 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs/v35.js +41 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs/v4.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs/v4.js +29 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs/v5.d.ts +9 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs/v5.js +14 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs/v6.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs/v6.js +19 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs/v6ToV1.d.ts +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs/v6ToV1.js +13 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs/v7.d.ts +9 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs/v7.js +69 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs/validate.d.ts +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs/validate.js +7 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs/version.d.ts +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs/version.js +10 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs-browser/index.d.ts +15 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs-browser/index.js +31 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs-browser/max.d.ts +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs-browser/max.js +3 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs-browser/md5.d.ts +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs-browser/md5.js +137 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs-browser/native.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs-browser/native.js +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs-browser/nil.d.ts +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs-browser/nil.js +3 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs-browser/package.json +1 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs-browser/parse.d.ts +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs-browser/parse.js +11 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs-browser/regex.d.ts +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs-browser/regex.js +3 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs-browser/rng.d.ts +1 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs-browser/rng.js +14 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs-browser/sha1.d.ts +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs-browser/sha1.js +72 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs-browser/stringify.d.ts +3 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs-browser/stringify.js +39 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs-browser/types.d.ts +21 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs-browser/types.js +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs-browser/uuid-bin.d.ts +1 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs-browser/uuid-bin.js +72 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs-browser/v1.d.ts +11 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs-browser/v1.js +87 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs-browser/v1ToV6.d.ts +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs-browser/v1ToV6.js +13 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs-browser/v3.d.ts +9 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs-browser/v3.js +14 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs-browser/v35.d.ts +7 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs-browser/v35.js +41 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs-browser/v4.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs-browser/v4.js +29 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs-browser/v5.d.ts +9 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs-browser/v5.js +14 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs-browser/v6.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs-browser/v6.js +19 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs-browser/v6ToV1.d.ts +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs-browser/v6ToV1.js +13 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs-browser/v7.d.ts +9 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs-browser/v7.js +69 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs-browser/validate.d.ts +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs-browser/validate.js +7 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs-browser/version.d.ts +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/cjs-browser/version.js +10 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm/bin/uuid +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm/index.d.ts +15 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm/index.js +14 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm/max.d.ts +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm/max.js +1 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm/md5.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm/md5.js +11 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm/native.d.ts +6 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm/native.js +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm/nil.d.ts +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm/nil.js +1 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm/parse.d.ts +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm/parse.js +9 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm/regex.d.ts +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm/regex.js +1 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm/rng.d.ts +1 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm/rng.js +10 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm/sha1.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm/sha1.js +11 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm/stringify.d.ts +3 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm/stringify.js +35 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm/types.d.ts +21 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm/types.js +1 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm/uuid-bin.d.ts +1 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm/uuid-bin.js +70 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm/v1.d.ts +11 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm/v1.js +83 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm/v1ToV6.d.ts +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm/v1ToV6.js +10 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm/v3.d.ts +9 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm/v3.js +9 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm/v35.d.ts +7 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm/v35.js +36 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm/v4.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm/v4.js +27 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm/v5.d.ts +9 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm/v5.js +9 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm/v6.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm/v6.js +17 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm/v6ToV1.d.ts +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm/v6ToV1.js +10 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm/v7.d.ts +9 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm/v7.js +65 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm/validate.d.ts +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm/validate.js +5 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm/version.d.ts +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm/version.js +8 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm-browser/index.d.ts +15 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm-browser/index.js +14 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm-browser/max.d.ts +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm-browser/max.js +1 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm-browser/md5.d.ts +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm-browser/md5.js +135 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm-browser/native.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm-browser/native.js +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm-browser/nil.d.ts +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm-browser/nil.js +1 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm-browser/parse.d.ts +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm-browser/parse.js +9 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm-browser/regex.d.ts +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm-browser/regex.js +1 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm-browser/rng.d.ts +1 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm-browser/rng.js +11 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm-browser/sha1.d.ts +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm-browser/sha1.js +70 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm-browser/stringify.d.ts +3 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm-browser/stringify.js +35 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm-browser/types.d.ts +21 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm-browser/types.js +1 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm-browser/uuid-bin.d.ts +1 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm-browser/uuid-bin.js +70 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm-browser/v1.d.ts +11 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm-browser/v1.js +83 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm-browser/v1ToV6.d.ts +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm-browser/v1ToV6.js +10 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm-browser/v3.d.ts +9 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm-browser/v3.js +9 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm-browser/v35.d.ts +7 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm-browser/v35.js +36 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm-browser/v4.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm-browser/v4.js +27 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm-browser/v5.d.ts +9 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm-browser/v5.js +9 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm-browser/v6.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm-browser/v6.js +17 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm-browser/v6ToV1.d.ts +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm-browser/v6ToV1.js +10 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm-browser/v7.d.ts +9 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm-browser/v7.js +65 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm-browser/validate.d.ts +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm-browser/validate.js +5 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm-browser/version.d.ts +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/dist/esm-browser/version.js +8 -0
- package/dist/node_modules/langchain-gigachat/node_modules/uuid/package.json +132 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/index.cjs +33 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/index.d.cts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/index.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/index.js +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/package.json +118 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/index.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/ZodError.ts +330 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/benchmarks/datetime.ts +58 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/benchmarks/discriminatedUnion.ts +80 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/benchmarks/index.ts +59 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/benchmarks/ipv4.ts +57 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/benchmarks/object.ts +69 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/benchmarks/primitives.ts +162 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/benchmarks/realworld.ts +63 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/benchmarks/string.ts +55 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/benchmarks/union.ts +80 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/errors.ts +13 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/external.ts +6 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/helpers/enumUtil.ts +17 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/helpers/errorUtil.ts +8 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/helpers/parseUtil.ts +176 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/helpers/partialUtil.ts +34 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/helpers/typeAliases.ts +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/helpers/util.ts +224 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/index.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/locales/en.ts +124 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/standard-schema.ts +113 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/Mocker.ts +54 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/all-errors.test.ts +157 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/anyunknown.test.ts +28 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/array.test.ts +71 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/async-parsing.test.ts +388 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/async-refinements.test.ts +46 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/base.test.ts +29 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/bigint.test.ts +55 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/branded.test.ts +53 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/catch.test.ts +220 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/coerce.test.ts +133 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/complex.test.ts +56 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/custom.test.ts +31 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/date.test.ts +32 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/deepmasking.test.ts +186 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/default.test.ts +112 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/description.test.ts +33 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/discriminated-unions.test.ts +315 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/enum.test.ts +80 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/error.test.ts +551 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/firstparty.test.ts +87 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/firstpartyschematypes.test.ts +21 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/function.test.ts +257 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/generics.test.ts +48 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/instanceof.test.ts +37 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/intersection.test.ts +110 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/language-server.source.ts +76 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/language-server.test.ts +207 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/literal.test.ts +36 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/map.test.ts +110 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/masking.test.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/mocker.test.ts +19 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/nan.test.ts +21 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/nativeEnum.test.ts +87 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/nullable.test.ts +42 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/number.test.ts +176 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/object-augmentation.test.ts +29 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/object-in-es5-env.test.ts +29 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/object.test.ts +434 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/optional.test.ts +42 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/parseUtil.test.ts +23 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/parser.test.ts +41 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/partials.test.ts +243 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/pickomit.test.ts +111 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/pipeline.test.ts +29 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/preprocess.test.ts +186 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/primitive.test.ts +440 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/promise.test.ts +90 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/readonly.test.ts +194 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/record.test.ts +171 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/recursive.test.ts +197 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/refine.test.ts +313 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/safeparse.test.ts +27 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/set.test.ts +142 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/standard-schema.test.ts +83 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/string.test.ts +916 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/transformer.test.ts +233 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/tuple.test.ts +90 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/unions.test.ts +57 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/validations.test.ts +133 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/tests/void.test.ts +15 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v3/types.ts +5136 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/checks.ts +30 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/coerce.ts +27 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/compat.ts +66 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/errors.ts +75 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/external.ts +50 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/index.ts +5 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/iso.ts +90 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/parse.ts +33 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/schemas.ts +2054 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/anyunknown.test.ts +26 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/array.test.ts +264 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/assignability.test.ts +210 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/async-parsing.test.ts +381 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/async-refinements.test.ts +68 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/base.test.ts +7 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/bigint.test.ts +54 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/brand.test.ts +63 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/catch.test.ts +252 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/coalesce.test.ts +20 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/coerce.test.ts +160 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/continuability.test.ts +352 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/custom.test.ts +40 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/date.test.ts +31 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/datetime.test.ts +296 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/default.test.ts +313 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/description.test.ts +32 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/discriminated-unions.test.ts +619 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/enum.test.ts +285 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/error-utils.test.ts +527 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/error.test.ts +711 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/file.test.ts +91 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/firstparty.test.ts +175 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/function.test.ts +268 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/generics.test.ts +72 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/index.test.ts +829 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/instanceof.test.ts +34 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/intersection.test.ts +171 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/json.test.ts +108 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/lazy.test.ts +227 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/literal.test.ts +92 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/map.test.ts +196 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/nan.test.ts +21 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/nested-refine.test.ts +168 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/nonoptional.test.ts +86 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/nullable.test.ts +22 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/number.test.ts +247 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/object.test.ts +563 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/optional.test.ts +123 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/partial.test.ts +147 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/pickomit.test.ts +127 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/pipe.test.ts +81 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/prefault.test.ts +37 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/preprocess.test.ts +298 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/primitive.test.ts +175 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/promise.test.ts +81 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/prototypes.test.ts +23 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/readonly.test.ts +252 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/record.test.ts +342 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/recursive-types.test.ts +356 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/refine.test.ts +532 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/registries.test.ts +204 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/set.test.ts +179 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/standard-schema.test.ts +57 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/string-formats.test.ts +109 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/string.test.ts +881 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/stringbool.test.ts +66 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/template-literal.test.ts +758 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/to-json-schema.test.ts +2314 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/transform.test.ts +250 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/tuple.test.ts +163 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/union.test.ts +94 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/validations.test.ts +283 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/classic/tests/void.test.ts +12 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/core/api.ts +1594 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/core/checks.ts +1283 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/core/config.ts +15 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/core/core.ts +134 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/core/doc.ts +44 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/core/errors.ts +424 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/core/function.ts +176 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/core/index.ts +15 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/core/json-schema.ts +143 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/core/parse.ts +94 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/core/regexes.ts +135 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/core/registries.ts +96 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/core/schemas.ts +3842 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/core/standard-schema.ts +64 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/core/tests/index.test.ts +46 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/core/tests/locales/be.test.ts +124 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/core/tests/locales/en.test.ts +22 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/core/tests/locales/ru.test.ts +128 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/core/tests/locales/tr.test.ts +69 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/core/to-json-schema.ts +977 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/core/util.ts +775 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/core/versions.ts +5 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/core/zsf.ts +323 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/index.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/locales/ar.ts +125 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/locales/az.ts +121 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/locales/be.ts +184 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/locales/ca.ts +127 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/locales/cs.ts +142 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/locales/de.ts +124 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/locales/en.ts +127 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/locales/eo.ts +125 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/locales/es.ts +125 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/locales/fa.ts +134 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/locales/fi.ts +131 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/locales/fr-CA.ts +126 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/locales/fr.ts +124 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/locales/he.ts +125 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/locales/hu.ts +126 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/locales/id.ts +125 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/locales/index.ts +39 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/locales/it.ts +125 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/locales/ja.ts +122 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/locales/kh.ts +126 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/locales/ko.ts +131 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/locales/mk.ts +127 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/locales/ms.ts +124 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/locales/nl.ts +126 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/locales/no.ts +124 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/locales/ota.ts +125 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/locales/pl.ts +126 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/locales/ps.ts +133 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/locales/pt.ts +123 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/locales/ru.ts +184 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/locales/sl.ts +126 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/locales/sv.ts +127 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/locales/ta.ts +125 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/locales/th.ts +126 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/locales/tr.ts +121 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/locales/ua.ts +126 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/locales/ur.ts +126 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/locales/vi.ts +125 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/locales/zh-CN.ts +123 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/locales/zh-TW.ts +125 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/mini/checks.ts +32 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/mini/coerce.ts +22 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/mini/external.ts +40 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/mini/index.ts +3 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/mini/iso.ts +62 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/mini/parse.ts +1 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/mini/schemas.ts +1579 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/mini/tests/assignability.test.ts +129 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/mini/tests/brand.test.ts +51 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/mini/tests/checks.test.ts +144 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/mini/tests/computed.test.ts +36 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/mini/tests/error.test.ts +22 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/mini/tests/functions.test.ts +43 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/mini/tests/index.test.ts +871 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/mini/tests/number.test.ts +95 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/mini/tests/object.test.ts +185 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/mini/tests/prototypes.test.ts +43 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/mini/tests/recursive-types.test.ts +275 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4/mini/tests/string.test.ts +299 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/src/v4-mini/index.ts +1 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/ZodError.cjs +138 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/ZodError.d.cts +164 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/ZodError.d.ts +164 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/ZodError.js +133 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/errors.cjs +17 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/errors.d.cts +5 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/errors.d.ts +5 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/errors.js +9 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/external.cjs +22 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/external.d.cts +6 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/external.d.ts +6 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/external.js +6 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/helpers/enumUtil.cjs +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/helpers/enumUtil.d.cts +8 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/helpers/enumUtil.d.ts +8 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/helpers/enumUtil.js +1 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/helpers/errorUtil.cjs +9 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/helpers/errorUtil.d.cts +9 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/helpers/errorUtil.d.ts +9 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/helpers/errorUtil.js +6 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/helpers/parseUtil.cjs +124 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/helpers/parseUtil.d.cts +78 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/helpers/parseUtil.d.ts +78 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/helpers/parseUtil.js +109 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/helpers/partialUtil.cjs +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/helpers/partialUtil.d.cts +8 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/helpers/partialUtil.d.ts +8 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/helpers/partialUtil.js +1 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/helpers/typeAliases.cjs +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/helpers/typeAliases.d.cts +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/helpers/typeAliases.d.ts +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/helpers/typeAliases.js +1 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/helpers/util.cjs +137 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/helpers/util.d.cts +85 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/helpers/util.d.ts +85 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/helpers/util.js +133 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/index.cjs +33 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/index.d.cts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/index.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/index.js +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/locales/en.cjs +111 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/locales/en.d.cts +3 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/locales/en.d.ts +3 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/locales/en.js +109 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/standard-schema.cjs +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/standard-schema.d.cts +102 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/standard-schema.d.ts +102 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/standard-schema.js +1 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/types.cjs +3775 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/types.d.cts +1031 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/types.d.ts +1031 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v3/types.js +3693 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/classic/checks.cjs +32 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/classic/checks.d.cts +1 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/classic/checks.d.ts +1 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/classic/checks.js +1 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/classic/coerce.cjs +47 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/classic/coerce.d.cts +17 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/classic/coerce.d.ts +17 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/classic/coerce.js +17 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/classic/compat.cjs +57 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/classic/compat.d.cts +46 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/classic/compat.d.ts +46 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/classic/compat.js +27 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/classic/errors.cjs +67 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/classic/errors.d.cts +30 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/classic/errors.d.ts +30 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/classic/errors.js +41 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/classic/external.cjs +70 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/classic/external.d.cts +13 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/classic/external.d.ts +13 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/classic/external.js +18 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/classic/index.cjs +33 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/classic/index.d.cts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/classic/index.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/classic/index.js +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/classic/iso.cjs +60 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/classic/iso.d.cts +22 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/classic/iso.d.ts +22 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/classic/iso.js +30 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/classic/parse.cjs +32 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/classic/parse.d.cts +23 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/classic/parse.d.ts +23 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/classic/parse.js +6 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/classic/schemas.cjs +1109 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/classic/schemas.d.cts +630 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/classic/schemas.d.ts +630 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/classic/schemas.js +1006 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/api.cjs +1039 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/api.d.cts +284 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/api.d.ts +284 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/api.js +906 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/checks.cjs +591 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/checks.d.cts +278 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/checks.d.ts +278 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/checks.js +565 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/core.cjs +67 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/core.d.cts +49 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/core.d.ts +49 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/core.js +61 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/doc.cjs +39 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/doc.d.cts +14 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/doc.d.ts +14 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/doc.js +35 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/errors.cjs +226 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/errors.d.cts +208 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/errors.d.ts +208 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/errors.js +195 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/function.cjs +102 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/function.d.cts +52 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/function.d.ts +52 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/function.js +75 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/index.cjs +44 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/index.d.cts +15 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/index.d.ts +15 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/index.js +15 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/json-schema.cjs +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/json-schema.d.cts +87 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/json-schema.d.ts +87 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/json-schema.js +1 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/parse.cjs +87 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/parse.d.cts +25 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/parse.d.ts +25 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/parse.js +57 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/regexes.cjs +103 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/regexes.d.cts +62 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/regexes.d.ts +62 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/regexes.js +95 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/registries.cjs +56 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/registries.d.cts +35 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/registries.d.ts +35 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/registries.js +51 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/schemas.cjs +1748 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/schemas.d.cts +1041 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/schemas.d.ts +1041 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/schemas.js +1717 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/standard-schema.cjs +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/standard-schema.d.cts +55 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/standard-schema.d.ts +55 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/standard-schema.js +1 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/to-json-schema.cjs +854 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/to-json-schema.d.cts +88 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/to-json-schema.d.ts +88 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/to-json-schema.js +849 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/util.cjs +539 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/util.d.cts +183 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/util.d.ts +183 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/util.js +493 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/versions.cjs +8 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/versions.d.cts +5 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/versions.d.ts +5 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/core/versions.js +5 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/index.cjs +22 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/index.d.cts +3 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/index.d.ts +3 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/index.js +3 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/ar.cjs +142 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/ar.d.cts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/ar.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/ar.js +116 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/az.cjs +141 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/az.d.cts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/az.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/az.js +115 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/be.cjs +190 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/be.d.cts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/be.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/be.js +164 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/ca.cjs +144 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/ca.d.cts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/ca.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/ca.js +118 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/cs.cjs +161 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/cs.d.cts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/cs.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/cs.js +135 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/de.cjs +142 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/de.d.cts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/de.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/de.js +116 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/en.cjs +145 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/en.d.cts +5 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/en.d.ts +5 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/en.js +117 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/eo.cjs +144 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/eo.d.cts +5 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/eo.d.ts +5 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/eo.js +116 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/es.cjs +143 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/es.d.cts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/es.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/es.js +117 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/fa.cjs +148 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/fa.d.cts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/fa.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/fa.js +122 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/fi.cjs +148 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/fi.d.cts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/fi.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/fi.js +122 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/fr-CA.cjs +143 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/fr-CA.d.cts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/fr-CA.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/fr-CA.js +117 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/fr.cjs +142 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/fr.d.cts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/fr.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/fr.js +116 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/he.cjs +143 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/he.d.cts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/he.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/he.js +117 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/hu.cjs +143 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/hu.d.cts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/hu.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/hu.js +117 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/id.cjs +142 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/id.d.cts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/id.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/id.js +116 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/index.cjs +84 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/index.d.cts +39 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/index.d.ts +39 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/index.js +39 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/it.cjs +143 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/it.d.cts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/it.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/it.js +117 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/ja.cjs +141 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/ja.d.cts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/ja.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/ja.js +115 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/kh.cjs +143 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/kh.d.cts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/kh.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/kh.js +117 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/ko.cjs +147 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/ko.d.cts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/ko.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/ko.js +121 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/mk.cjs +144 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/mk.d.cts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/mk.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/mk.js +118 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/ms.cjs +142 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/ms.d.cts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/ms.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/ms.js +116 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/nl.cjs +143 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/nl.d.cts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/nl.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/nl.js +117 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/no.cjs +142 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/no.d.cts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/no.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/no.js +116 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/ota.cjs +143 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/ota.d.cts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/ota.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/ota.js +117 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/pl.cjs +143 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/pl.d.cts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/pl.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/pl.js +117 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/ps.cjs +148 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/ps.d.cts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/ps.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/ps.js +122 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/pt.cjs +142 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/pt.d.cts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/pt.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/pt.js +116 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/ru.cjs +190 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/ru.d.cts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/ru.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/ru.js +164 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/sl.cjs +143 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/sl.d.cts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/sl.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/sl.js +117 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/sv.cjs +144 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/sv.d.cts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/sv.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/sv.js +118 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/ta.cjs +143 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/ta.d.cts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/ta.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/ta.js +117 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/th.cjs +143 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/th.d.cts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/th.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/th.js +117 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/tr.cjs +143 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/tr.d.cts +5 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/tr.d.ts +5 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/tr.js +115 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/ua.cjs +143 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/ua.d.cts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/ua.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/ua.js +117 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/ur.cjs +143 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/ur.d.cts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/ur.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/ur.js +117 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/vi.cjs +142 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/vi.d.cts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/vi.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/vi.js +116 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/zh-CN.cjs +142 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/zh-CN.d.cts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/zh-CN.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/zh-CN.js +116 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/zh-TW.cjs +143 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/zh-TW.d.cts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/zh-TW.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/locales/zh-TW.js +117 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/mini/checks.cjs +34 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/mini/checks.d.cts +1 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/mini/checks.d.ts +1 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/mini/checks.js +1 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/mini/coerce.cjs +47 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/mini/coerce.d.cts +7 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/mini/coerce.d.ts +7 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/mini/coerce.js +17 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/mini/external.cjs +62 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/mini/external.d.cts +11 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/mini/external.d.ts +11 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/mini/external.js +13 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/mini/index.cjs +32 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/mini/index.d.cts +3 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/mini/index.d.ts +3 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/mini/index.js +3 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/mini/iso.cjs +60 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/mini/iso.d.cts +22 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/mini/iso.d.ts +22 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/mini/iso.js +30 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/mini/parse.cjs +8 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/mini/parse.d.cts +1 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/mini/parse.d.ts +1 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/mini/parse.js +1 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/mini/schemas.cjs +839 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/mini/schemas.d.cts +356 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/mini/schemas.d.ts +356 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4/mini/schemas.js +732 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4-mini/index.cjs +17 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4-mini/index.d.cts +1 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4-mini/index.d.ts +1 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod/v4-mini/index.js +1 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/.github/CR_logotype-full-color.png +0 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/.github/FUNDING.yml +1 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/.prettierrc.json +1 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/createIndex.ts +32 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/cjs/Options.js +51 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/cjs/Refs.js +26 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/cjs/errorMessages.js +19 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/cjs/getRelativePath.js +12 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/cjs/index.js +56 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/cjs/package.json +1 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/cjs/parseDef.js +66 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/cjs/parseTypes.js +2 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/cjs/parsers/any.js +21 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/cjs/parsers/array.js +30 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/cjs/parsers/bigint.js +53 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/cjs/parsers/boolean.js +9 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/cjs/parsers/branded.js +8 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/cjs/parsers/catch.js +8 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/cjs/parsers/date.js +50 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/cjs/parsers/default.js +11 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/cjs/parsers/effects.js +11 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/cjs/parsers/enum.js +10 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/cjs/parsers/intersection.js +56 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/cjs/parsers/literal.js +25 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/cjs/parsers/map.js +30 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/cjs/parsers/nativeEnum.js +20 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/cjs/parsers/never.js +15 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/cjs/parsers/null.js +14 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/cjs/parsers/nullable.js +37 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/cjs/parsers/number.js +56 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/cjs/parsers/object.js +76 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/cjs/parsers/optional.js +25 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/cjs/parsers/pipeline.js +24 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/cjs/parsers/promise.js +8 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/cjs/parsers/readonly.js +8 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/cjs/parsers/record.js +65 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/cjs/parsers/set.js +24 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/cjs/parsers/string.js +356 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/cjs/parsers/tuple.js +36 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/cjs/parsers/undefined.js +10 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/cjs/parsers/union.js +84 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/cjs/parsers/unknown.js +8 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/cjs/selectParser.js +109 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/cjs/zodToJsonSchema.js +90 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/esm/Options.js +46 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/esm/Refs.js +22 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/esm/errorMessages.js +14 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/esm/getRelativePath.js +8 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/esm/index.js +40 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/esm/package.json +1 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/esm/parseDef.js +62 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/esm/parseTypes.js +1 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/esm/parsers/any.js +17 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/esm/parsers/array.js +26 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/esm/parsers/bigint.js +49 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/esm/parsers/boolean.js +5 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/esm/parsers/branded.js +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/esm/parsers/catch.js +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/esm/parsers/date.js +46 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/esm/parsers/default.js +7 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/esm/parsers/effects.js +7 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/esm/parsers/enum.js +6 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/esm/parsers/intersection.js +52 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/esm/parsers/literal.js +21 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/esm/parsers/map.js +26 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/esm/parsers/nativeEnum.js +16 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/esm/parsers/never.js +11 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/esm/parsers/null.js +10 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/esm/parsers/nullable.js +33 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/esm/parsers/number.js +52 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/esm/parsers/object.js +72 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/esm/parsers/optional.js +21 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/esm/parsers/pipeline.js +20 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/esm/parsers/promise.js +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/esm/parsers/readonly.js +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/esm/parsers/record.js +61 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/esm/parsers/set.js +20 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/esm/parsers/string.js +352 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/esm/parsers/tuple.js +32 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/esm/parsers/undefined.js +6 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/esm/parsers/union.js +80 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/esm/parsers/unknown.js +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/esm/selectParser.js +105 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/esm/zodToJsonSchema.js +87 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/types/Options.d.ts +37 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/types/Refs.d.ts +17 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/types/errorMessages.d.ts +15 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/types/getRelativePath.d.ts +1 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/types/index.d.ts +40 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/types/parseDef.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/types/parseTypes.d.ts +34 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/types/parsers/any.d.ts +5 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/types/parsers/array.d.ts +12 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/types/parsers/bigint.d.ts +14 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/types/parsers/boolean.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/types/parsers/branded.d.ts +3 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/types/parsers/catch.d.ts +3 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/types/parsers/date.d.ts +15 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/types/parsers/default.d.ts +6 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/types/parsers/effects.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/types/parsers/enum.d.ts +6 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/types/parsers/intersection.d.ts +8 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/types/parsers/literal.d.ts +9 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/types/parsers/map.d.ts +15 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/types/parsers/nativeEnum.d.ts +6 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/types/parsers/never.d.ts +6 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/types/parsers/null.d.ts +5 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/types/parsers/nullable.d.ts +10 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/types/parsers/number.d.ts +13 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/types/parsers/object.d.ts +10 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/types/parsers/optional.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/types/parsers/pipeline.d.ts +5 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/types/parsers/promise.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/types/parsers/readonly.d.ts +3 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/types/parsers/record.d.ts +13 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/types/parsers/set.d.ts +13 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/types/parsers/string.d.ts +73 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/types/parsers/tuple.d.ts +13 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/types/parsers/undefined.d.ts +6 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/types/parsers/union.d.ts +23 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/types/parsers/unknown.d.ts +4 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/types/selectParser.d.ts +5 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/dist/types/zodToJsonSchema.d.ts +10 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/package.json +78 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/postcjs.ts +3 -0
- package/dist/node_modules/langchain-gigachat/node_modules/zod-to-json-schema/postesm.ts +3 -0
- package/dist/node_modules/langchain-gigachat/package.json +1 -0
- package/dist/server/index.d.ts +1 -0
- package/dist/server/index.js +42 -0
- package/dist/server/llm-providers/gigachat.d.ts +24 -0
- package/dist/server/llm-providers/gigachat.js +109 -0
- package/dist/server/plugin.d.ts +12 -0
- package/dist/server/plugin.js +59 -0
- package/package.json +26 -0
- package/server.d.ts +2 -0
- package/server.js +1 -0
|
@@ -0,0 +1,863 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import bind from "./helpers/bind.js";
|
|
4
|
+
|
|
5
|
+
// utils is a library of generic helper functions non-specific to axios
|
|
6
|
+
|
|
7
|
+
const { toString } = Object.prototype;
|
|
8
|
+
const { getPrototypeOf } = Object;
|
|
9
|
+
const { iterator, toStringTag } = Symbol;
|
|
10
|
+
|
|
11
|
+
const kindOf = ((cache) => (thing) => {
|
|
12
|
+
const str = toString.call(thing);
|
|
13
|
+
return cache[str] || (cache[str] = str.slice(8, -1).toLowerCase());
|
|
14
|
+
})(Object.create(null));
|
|
15
|
+
|
|
16
|
+
const kindOfTest = (type) => {
|
|
17
|
+
type = type.toLowerCase();
|
|
18
|
+
return (thing) => kindOf(thing) === type;
|
|
19
|
+
};
|
|
20
|
+
|
|
21
|
+
const typeOfTest = (type) => (thing) => typeof thing === type;
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* Determine if a value is a non-null object
|
|
25
|
+
*
|
|
26
|
+
* @param {Object} val The value to test
|
|
27
|
+
*
|
|
28
|
+
* @returns {boolean} True if value is an Array, otherwise false
|
|
29
|
+
*/
|
|
30
|
+
const { isArray } = Array;
|
|
31
|
+
|
|
32
|
+
/**
|
|
33
|
+
* Determine if a value is undefined
|
|
34
|
+
*
|
|
35
|
+
* @param {*} val The value to test
|
|
36
|
+
*
|
|
37
|
+
* @returns {boolean} True if the value is undefined, otherwise false
|
|
38
|
+
*/
|
|
39
|
+
const isUndefined = typeOfTest("undefined");
|
|
40
|
+
|
|
41
|
+
/**
|
|
42
|
+
* Determine if a value is a Buffer
|
|
43
|
+
*
|
|
44
|
+
* @param {*} val The value to test
|
|
45
|
+
*
|
|
46
|
+
* @returns {boolean} True if value is a Buffer, otherwise false
|
|
47
|
+
*/
|
|
48
|
+
function isBuffer(val) {
|
|
49
|
+
return (
|
|
50
|
+
val !== null &&
|
|
51
|
+
!isUndefined(val) &&
|
|
52
|
+
val.constructor !== null &&
|
|
53
|
+
!isUndefined(val.constructor) &&
|
|
54
|
+
isFunction(val.constructor.isBuffer) &&
|
|
55
|
+
val.constructor.isBuffer(val)
|
|
56
|
+
);
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
/**
|
|
60
|
+
* Determine if a value is an ArrayBuffer
|
|
61
|
+
*
|
|
62
|
+
* @param {*} val The value to test
|
|
63
|
+
*
|
|
64
|
+
* @returns {boolean} True if value is an ArrayBuffer, otherwise false
|
|
65
|
+
*/
|
|
66
|
+
const isArrayBuffer = kindOfTest("ArrayBuffer");
|
|
67
|
+
|
|
68
|
+
/**
|
|
69
|
+
* Determine if a value is a view on an ArrayBuffer
|
|
70
|
+
*
|
|
71
|
+
* @param {*} val The value to test
|
|
72
|
+
*
|
|
73
|
+
* @returns {boolean} True if value is a view on an ArrayBuffer, otherwise false
|
|
74
|
+
*/
|
|
75
|
+
function isArrayBufferView(val) {
|
|
76
|
+
let result;
|
|
77
|
+
if (typeof ArrayBuffer !== "undefined" && ArrayBuffer.isView) {
|
|
78
|
+
result = ArrayBuffer.isView(val);
|
|
79
|
+
} else {
|
|
80
|
+
result = val && val.buffer && isArrayBuffer(val.buffer);
|
|
81
|
+
}
|
|
82
|
+
return result;
|
|
83
|
+
}
|
|
84
|
+
|
|
85
|
+
/**
|
|
86
|
+
* Determine if a value is a String
|
|
87
|
+
*
|
|
88
|
+
* @param {*} val The value to test
|
|
89
|
+
*
|
|
90
|
+
* @returns {boolean} True if value is a String, otherwise false
|
|
91
|
+
*/
|
|
92
|
+
const isString = typeOfTest("string");
|
|
93
|
+
|
|
94
|
+
/**
|
|
95
|
+
* Determine if a value is a Function
|
|
96
|
+
*
|
|
97
|
+
* @param {*} val The value to test
|
|
98
|
+
* @returns {boolean} True if value is a Function, otherwise false
|
|
99
|
+
*/
|
|
100
|
+
const isFunction = typeOfTest("function");
|
|
101
|
+
|
|
102
|
+
/**
|
|
103
|
+
* Determine if a value is a Number
|
|
104
|
+
*
|
|
105
|
+
* @param {*} val The value to test
|
|
106
|
+
*
|
|
107
|
+
* @returns {boolean} True if value is a Number, otherwise false
|
|
108
|
+
*/
|
|
109
|
+
const isNumber = typeOfTest("number");
|
|
110
|
+
|
|
111
|
+
/**
|
|
112
|
+
* Determine if a value is an Object
|
|
113
|
+
*
|
|
114
|
+
* @param {*} thing The value to test
|
|
115
|
+
*
|
|
116
|
+
* @returns {boolean} True if value is an Object, otherwise false
|
|
117
|
+
*/
|
|
118
|
+
const isObject = (thing) => thing !== null && typeof thing === "object";
|
|
119
|
+
|
|
120
|
+
/**
|
|
121
|
+
* Determine if a value is a Boolean
|
|
122
|
+
*
|
|
123
|
+
* @param {*} thing The value to test
|
|
124
|
+
* @returns {boolean} True if value is a Boolean, otherwise false
|
|
125
|
+
*/
|
|
126
|
+
const isBoolean = (thing) => thing === true || thing === false;
|
|
127
|
+
|
|
128
|
+
/**
|
|
129
|
+
* Determine if a value is a plain Object
|
|
130
|
+
*
|
|
131
|
+
* @param {*} val The value to test
|
|
132
|
+
*
|
|
133
|
+
* @returns {boolean} True if value is a plain Object, otherwise false
|
|
134
|
+
*/
|
|
135
|
+
const isPlainObject = (val) => {
|
|
136
|
+
if (kindOf(val) !== "object") {
|
|
137
|
+
return false;
|
|
138
|
+
}
|
|
139
|
+
|
|
140
|
+
const prototype = getPrototypeOf(val);
|
|
141
|
+
return (
|
|
142
|
+
(prototype === null ||
|
|
143
|
+
prototype === Object.prototype ||
|
|
144
|
+
Object.getPrototypeOf(prototype) === null) &&
|
|
145
|
+
!(toStringTag in val) &&
|
|
146
|
+
!(iterator in val)
|
|
147
|
+
);
|
|
148
|
+
};
|
|
149
|
+
|
|
150
|
+
/**
|
|
151
|
+
* Determine if a value is an empty object (safely handles Buffers)
|
|
152
|
+
*
|
|
153
|
+
* @param {*} val The value to test
|
|
154
|
+
*
|
|
155
|
+
* @returns {boolean} True if value is an empty object, otherwise false
|
|
156
|
+
*/
|
|
157
|
+
const isEmptyObject = (val) => {
|
|
158
|
+
// Early return for non-objects or Buffers to prevent RangeError
|
|
159
|
+
if (!isObject(val) || isBuffer(val)) {
|
|
160
|
+
return false;
|
|
161
|
+
}
|
|
162
|
+
|
|
163
|
+
try {
|
|
164
|
+
return (
|
|
165
|
+
Object.keys(val).length === 0 &&
|
|
166
|
+
Object.getPrototypeOf(val) === Object.prototype
|
|
167
|
+
);
|
|
168
|
+
} catch (e) {
|
|
169
|
+
// Fallback for any other objects that might cause RangeError with Object.keys()
|
|
170
|
+
return false;
|
|
171
|
+
}
|
|
172
|
+
};
|
|
173
|
+
|
|
174
|
+
/**
|
|
175
|
+
* Determine if a value is a Date
|
|
176
|
+
*
|
|
177
|
+
* @param {*} val The value to test
|
|
178
|
+
*
|
|
179
|
+
* @returns {boolean} True if value is a Date, otherwise false
|
|
180
|
+
*/
|
|
181
|
+
const isDate = kindOfTest("Date");
|
|
182
|
+
|
|
183
|
+
/**
|
|
184
|
+
* Determine if a value is a File
|
|
185
|
+
*
|
|
186
|
+
* @param {*} val The value to test
|
|
187
|
+
*
|
|
188
|
+
* @returns {boolean} True if value is a File, otherwise false
|
|
189
|
+
*/
|
|
190
|
+
const isFile = kindOfTest("File");
|
|
191
|
+
|
|
192
|
+
/**
|
|
193
|
+
* Determine if a value is a Blob
|
|
194
|
+
*
|
|
195
|
+
* @param {*} val The value to test
|
|
196
|
+
*
|
|
197
|
+
* @returns {boolean} True if value is a Blob, otherwise false
|
|
198
|
+
*/
|
|
199
|
+
const isBlob = kindOfTest("Blob");
|
|
200
|
+
|
|
201
|
+
/**
|
|
202
|
+
* Determine if a value is a FileList
|
|
203
|
+
*
|
|
204
|
+
* @param {*} val The value to test
|
|
205
|
+
*
|
|
206
|
+
* @returns {boolean} True if value is a File, otherwise false
|
|
207
|
+
*/
|
|
208
|
+
const isFileList = kindOfTest("FileList");
|
|
209
|
+
|
|
210
|
+
/**
|
|
211
|
+
* Determine if a value is a Stream
|
|
212
|
+
*
|
|
213
|
+
* @param {*} val The value to test
|
|
214
|
+
*
|
|
215
|
+
* @returns {boolean} True if value is a Stream, otherwise false
|
|
216
|
+
*/
|
|
217
|
+
const isStream = (val) => isObject(val) && isFunction(val.pipe);
|
|
218
|
+
|
|
219
|
+
/**
|
|
220
|
+
* Determine if a value is a FormData
|
|
221
|
+
*
|
|
222
|
+
* @param {*} thing The value to test
|
|
223
|
+
*
|
|
224
|
+
* @returns {boolean} True if value is an FormData, otherwise false
|
|
225
|
+
*/
|
|
226
|
+
const isFormData = (thing) => {
|
|
227
|
+
let kind;
|
|
228
|
+
return (
|
|
229
|
+
thing &&
|
|
230
|
+
((typeof FormData === "function" && thing instanceof FormData) ||
|
|
231
|
+
(isFunction(thing.append) &&
|
|
232
|
+
((kind = kindOf(thing)) === "formdata" ||
|
|
233
|
+
// detect form-data instance
|
|
234
|
+
(kind === "object" &&
|
|
235
|
+
isFunction(thing.toString) &&
|
|
236
|
+
thing.toString() === "[object FormData]"))))
|
|
237
|
+
);
|
|
238
|
+
};
|
|
239
|
+
|
|
240
|
+
/**
|
|
241
|
+
* Determine if a value is a URLSearchParams object
|
|
242
|
+
*
|
|
243
|
+
* @param {*} val The value to test
|
|
244
|
+
*
|
|
245
|
+
* @returns {boolean} True if value is a URLSearchParams object, otherwise false
|
|
246
|
+
*/
|
|
247
|
+
const isURLSearchParams = kindOfTest("URLSearchParams");
|
|
248
|
+
|
|
249
|
+
const [isReadableStream, isRequest, isResponse, isHeaders] = [
|
|
250
|
+
"ReadableStream",
|
|
251
|
+
"Request",
|
|
252
|
+
"Response",
|
|
253
|
+
"Headers",
|
|
254
|
+
].map(kindOfTest);
|
|
255
|
+
|
|
256
|
+
/**
|
|
257
|
+
* Trim excess whitespace off the beginning and end of a string
|
|
258
|
+
*
|
|
259
|
+
* @param {String} str The String to trim
|
|
260
|
+
*
|
|
261
|
+
* @returns {String} The String freed of excess whitespace
|
|
262
|
+
*/
|
|
263
|
+
const trim = (str) =>
|
|
264
|
+
str.trim ? str.trim() : str.replace(/^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, "");
|
|
265
|
+
|
|
266
|
+
/**
|
|
267
|
+
* Iterate over an Array or an Object invoking a function for each item.
|
|
268
|
+
*
|
|
269
|
+
* If `obj` is an Array callback will be called passing
|
|
270
|
+
* the value, index, and complete array for each item.
|
|
271
|
+
*
|
|
272
|
+
* If 'obj' is an Object callback will be called passing
|
|
273
|
+
* the value, key, and complete object for each property.
|
|
274
|
+
*
|
|
275
|
+
* @param {Object|Array<unknown>} obj The object to iterate
|
|
276
|
+
* @param {Function} fn The callback to invoke for each item
|
|
277
|
+
*
|
|
278
|
+
* @param {Object} [options]
|
|
279
|
+
* @param {Boolean} [options.allOwnKeys = false]
|
|
280
|
+
* @returns {any}
|
|
281
|
+
*/
|
|
282
|
+
function forEach(obj, fn, { allOwnKeys = false } = {}) {
|
|
283
|
+
// Don't bother if no value provided
|
|
284
|
+
if (obj === null || typeof obj === "undefined") {
|
|
285
|
+
return;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
let i;
|
|
289
|
+
let l;
|
|
290
|
+
|
|
291
|
+
// Force an array if not already something iterable
|
|
292
|
+
if (typeof obj !== "object") {
|
|
293
|
+
/*eslint no-param-reassign:0*/
|
|
294
|
+
obj = [obj];
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
if (isArray(obj)) {
|
|
298
|
+
// Iterate over array values
|
|
299
|
+
for (i = 0, l = obj.length; i < l; i++) {
|
|
300
|
+
fn.call(null, obj[i], i, obj);
|
|
301
|
+
}
|
|
302
|
+
} else {
|
|
303
|
+
// Buffer check
|
|
304
|
+
if (isBuffer(obj)) {
|
|
305
|
+
return;
|
|
306
|
+
}
|
|
307
|
+
|
|
308
|
+
// Iterate over object keys
|
|
309
|
+
const keys = allOwnKeys
|
|
310
|
+
? Object.getOwnPropertyNames(obj)
|
|
311
|
+
: Object.keys(obj);
|
|
312
|
+
const len = keys.length;
|
|
313
|
+
let key;
|
|
314
|
+
|
|
315
|
+
for (i = 0; i < len; i++) {
|
|
316
|
+
key = keys[i];
|
|
317
|
+
fn.call(null, obj[key], key, obj);
|
|
318
|
+
}
|
|
319
|
+
}
|
|
320
|
+
}
|
|
321
|
+
|
|
322
|
+
function findKey(obj, key) {
|
|
323
|
+
if (isBuffer(obj)) {
|
|
324
|
+
return null;
|
|
325
|
+
}
|
|
326
|
+
|
|
327
|
+
key = key.toLowerCase();
|
|
328
|
+
const keys = Object.keys(obj);
|
|
329
|
+
let i = keys.length;
|
|
330
|
+
let _key;
|
|
331
|
+
while (i-- > 0) {
|
|
332
|
+
_key = keys[i];
|
|
333
|
+
if (key === _key.toLowerCase()) {
|
|
334
|
+
return _key;
|
|
335
|
+
}
|
|
336
|
+
}
|
|
337
|
+
return null;
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
const _global = (() => {
|
|
341
|
+
/*eslint no-undef:0*/
|
|
342
|
+
if (typeof globalThis !== "undefined") return globalThis;
|
|
343
|
+
return typeof self !== "undefined"
|
|
344
|
+
? self
|
|
345
|
+
: typeof window !== "undefined"
|
|
346
|
+
? window
|
|
347
|
+
: global;
|
|
348
|
+
})();
|
|
349
|
+
|
|
350
|
+
const isContextDefined = (context) =>
|
|
351
|
+
!isUndefined(context) && context !== _global;
|
|
352
|
+
|
|
353
|
+
/**
|
|
354
|
+
* Accepts varargs expecting each argument to be an object, then
|
|
355
|
+
* immutably merges the properties of each object and returns result.
|
|
356
|
+
*
|
|
357
|
+
* When multiple objects contain the same key the later object in
|
|
358
|
+
* the arguments list will take precedence.
|
|
359
|
+
*
|
|
360
|
+
* Example:
|
|
361
|
+
*
|
|
362
|
+
* ```js
|
|
363
|
+
* const result = merge({foo: 123}, {foo: 456});
|
|
364
|
+
* console.log(result.foo); // outputs 456
|
|
365
|
+
* ```
|
|
366
|
+
*
|
|
367
|
+
* @param {Object} obj1 Object to merge
|
|
368
|
+
*
|
|
369
|
+
* @returns {Object} Result of all merge properties
|
|
370
|
+
*/
|
|
371
|
+
function merge(/* obj1, obj2, obj3, ... */) {
|
|
372
|
+
const { caseless, skipUndefined } = (isContextDefined(this) && this) || {};
|
|
373
|
+
const result = {};
|
|
374
|
+
const assignValue = (val, key) => {
|
|
375
|
+
// Skip dangerous property names to prevent prototype pollution
|
|
376
|
+
if (key === "__proto__" || key === "constructor" || key === "prototype") {
|
|
377
|
+
return;
|
|
378
|
+
}
|
|
379
|
+
|
|
380
|
+
const targetKey = (caseless && findKey(result, key)) || key;
|
|
381
|
+
if (isPlainObject(result[targetKey]) && isPlainObject(val)) {
|
|
382
|
+
result[targetKey] = merge(result[targetKey], val);
|
|
383
|
+
} else if (isPlainObject(val)) {
|
|
384
|
+
result[targetKey] = merge({}, val);
|
|
385
|
+
} else if (isArray(val)) {
|
|
386
|
+
result[targetKey] = val.slice();
|
|
387
|
+
} else if (!skipUndefined || !isUndefined(val)) {
|
|
388
|
+
result[targetKey] = val;
|
|
389
|
+
}
|
|
390
|
+
};
|
|
391
|
+
|
|
392
|
+
for (let i = 0, l = arguments.length; i < l; i++) {
|
|
393
|
+
arguments[i] && forEach(arguments[i], assignValue);
|
|
394
|
+
}
|
|
395
|
+
return result;
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
/**
|
|
399
|
+
* Extends object a by mutably adding to it the properties of object b.
|
|
400
|
+
*
|
|
401
|
+
* @param {Object} a The object to be extended
|
|
402
|
+
* @param {Object} b The object to copy properties from
|
|
403
|
+
* @param {Object} thisArg The object to bind function to
|
|
404
|
+
*
|
|
405
|
+
* @param {Object} [options]
|
|
406
|
+
* @param {Boolean} [options.allOwnKeys]
|
|
407
|
+
* @returns {Object} The resulting value of object a
|
|
408
|
+
*/
|
|
409
|
+
const extend = (a, b, thisArg, { allOwnKeys } = {}) => {
|
|
410
|
+
forEach(
|
|
411
|
+
b,
|
|
412
|
+
(val, key) => {
|
|
413
|
+
if (thisArg && isFunction(val)) {
|
|
414
|
+
Object.defineProperty(a, key, {
|
|
415
|
+
value: bind(val, thisArg),
|
|
416
|
+
writable: true,
|
|
417
|
+
enumerable: true,
|
|
418
|
+
configurable: true,
|
|
419
|
+
});
|
|
420
|
+
} else {
|
|
421
|
+
Object.defineProperty(a, key, {
|
|
422
|
+
value: val,
|
|
423
|
+
writable: true,
|
|
424
|
+
enumerable: true,
|
|
425
|
+
configurable: true,
|
|
426
|
+
});
|
|
427
|
+
}
|
|
428
|
+
},
|
|
429
|
+
{ allOwnKeys },
|
|
430
|
+
);
|
|
431
|
+
return a;
|
|
432
|
+
};
|
|
433
|
+
|
|
434
|
+
/**
|
|
435
|
+
* Remove byte order marker. This catches EF BB BF (the UTF-8 BOM)
|
|
436
|
+
*
|
|
437
|
+
* @param {string} content with BOM
|
|
438
|
+
*
|
|
439
|
+
* @returns {string} content value without BOM
|
|
440
|
+
*/
|
|
441
|
+
const stripBOM = (content) => {
|
|
442
|
+
if (content.charCodeAt(0) === 0xfeff) {
|
|
443
|
+
content = content.slice(1);
|
|
444
|
+
}
|
|
445
|
+
return content;
|
|
446
|
+
};
|
|
447
|
+
|
|
448
|
+
/**
|
|
449
|
+
* Inherit the prototype methods from one constructor into another
|
|
450
|
+
* @param {function} constructor
|
|
451
|
+
* @param {function} superConstructor
|
|
452
|
+
* @param {object} [props]
|
|
453
|
+
* @param {object} [descriptors]
|
|
454
|
+
*
|
|
455
|
+
* @returns {void}
|
|
456
|
+
*/
|
|
457
|
+
const inherits = (constructor, superConstructor, props, descriptors) => {
|
|
458
|
+
constructor.prototype = Object.create(
|
|
459
|
+
superConstructor.prototype,
|
|
460
|
+
descriptors,
|
|
461
|
+
);
|
|
462
|
+
Object.defineProperty(constructor.prototype, "constructor", {
|
|
463
|
+
value: constructor,
|
|
464
|
+
writable: true,
|
|
465
|
+
enumerable: false,
|
|
466
|
+
configurable: true,
|
|
467
|
+
});
|
|
468
|
+
Object.defineProperty(constructor, "super", {
|
|
469
|
+
value: superConstructor.prototype,
|
|
470
|
+
});
|
|
471
|
+
props && Object.assign(constructor.prototype, props);
|
|
472
|
+
};
|
|
473
|
+
|
|
474
|
+
/**
|
|
475
|
+
* Resolve object with deep prototype chain to a flat object
|
|
476
|
+
* @param {Object} sourceObj source object
|
|
477
|
+
* @param {Object} [destObj]
|
|
478
|
+
* @param {Function|Boolean} [filter]
|
|
479
|
+
* @param {Function} [propFilter]
|
|
480
|
+
*
|
|
481
|
+
* @returns {Object}
|
|
482
|
+
*/
|
|
483
|
+
const toFlatObject = (sourceObj, destObj, filter, propFilter) => {
|
|
484
|
+
let props;
|
|
485
|
+
let i;
|
|
486
|
+
let prop;
|
|
487
|
+
const merged = {};
|
|
488
|
+
|
|
489
|
+
destObj = destObj || {};
|
|
490
|
+
// eslint-disable-next-line no-eq-null,eqeqeq
|
|
491
|
+
if (sourceObj == null) return destObj;
|
|
492
|
+
|
|
493
|
+
do {
|
|
494
|
+
props = Object.getOwnPropertyNames(sourceObj);
|
|
495
|
+
i = props.length;
|
|
496
|
+
while (i-- > 0) {
|
|
497
|
+
prop = props[i];
|
|
498
|
+
if (
|
|
499
|
+
(!propFilter || propFilter(prop, sourceObj, destObj)) &&
|
|
500
|
+
!merged[prop]
|
|
501
|
+
) {
|
|
502
|
+
destObj[prop] = sourceObj[prop];
|
|
503
|
+
merged[prop] = true;
|
|
504
|
+
}
|
|
505
|
+
}
|
|
506
|
+
sourceObj = filter !== false && getPrototypeOf(sourceObj);
|
|
507
|
+
} while (
|
|
508
|
+
sourceObj &&
|
|
509
|
+
(!filter || filter(sourceObj, destObj)) &&
|
|
510
|
+
sourceObj !== Object.prototype
|
|
511
|
+
);
|
|
512
|
+
|
|
513
|
+
return destObj;
|
|
514
|
+
};
|
|
515
|
+
|
|
516
|
+
/**
|
|
517
|
+
* Determines whether a string ends with the characters of a specified string
|
|
518
|
+
*
|
|
519
|
+
* @param {String} str
|
|
520
|
+
* @param {String} searchString
|
|
521
|
+
* @param {Number} [position= 0]
|
|
522
|
+
*
|
|
523
|
+
* @returns {boolean}
|
|
524
|
+
*/
|
|
525
|
+
const endsWith = (str, searchString, position) => {
|
|
526
|
+
str = String(str);
|
|
527
|
+
if (position === undefined || position > str.length) {
|
|
528
|
+
position = str.length;
|
|
529
|
+
}
|
|
530
|
+
position -= searchString.length;
|
|
531
|
+
const lastIndex = str.indexOf(searchString, position);
|
|
532
|
+
return lastIndex !== -1 && lastIndex === position;
|
|
533
|
+
};
|
|
534
|
+
|
|
535
|
+
/**
|
|
536
|
+
* Returns new array from array like object or null if failed
|
|
537
|
+
*
|
|
538
|
+
* @param {*} [thing]
|
|
539
|
+
*
|
|
540
|
+
* @returns {?Array}
|
|
541
|
+
*/
|
|
542
|
+
const toArray = (thing) => {
|
|
543
|
+
if (!thing) return null;
|
|
544
|
+
if (isArray(thing)) return thing;
|
|
545
|
+
let i = thing.length;
|
|
546
|
+
if (!isNumber(i)) return null;
|
|
547
|
+
const arr = new Array(i);
|
|
548
|
+
while (i-- > 0) {
|
|
549
|
+
arr[i] = thing[i];
|
|
550
|
+
}
|
|
551
|
+
return arr;
|
|
552
|
+
};
|
|
553
|
+
|
|
554
|
+
/**
|
|
555
|
+
* Checking if the Uint8Array exists and if it does, it returns a function that checks if the
|
|
556
|
+
* thing passed in is an instance of Uint8Array
|
|
557
|
+
*
|
|
558
|
+
* @param {TypedArray}
|
|
559
|
+
*
|
|
560
|
+
* @returns {Array}
|
|
561
|
+
*/
|
|
562
|
+
// eslint-disable-next-line func-names
|
|
563
|
+
const isTypedArray = ((TypedArray) => {
|
|
564
|
+
// eslint-disable-next-line func-names
|
|
565
|
+
return (thing) => {
|
|
566
|
+
return TypedArray && thing instanceof TypedArray;
|
|
567
|
+
};
|
|
568
|
+
})(typeof Uint8Array !== "undefined" && getPrototypeOf(Uint8Array));
|
|
569
|
+
|
|
570
|
+
/**
|
|
571
|
+
* For each entry in the object, call the function with the key and value.
|
|
572
|
+
*
|
|
573
|
+
* @param {Object<any, any>} obj - The object to iterate over.
|
|
574
|
+
* @param {Function} fn - The function to call for each entry.
|
|
575
|
+
*
|
|
576
|
+
* @returns {void}
|
|
577
|
+
*/
|
|
578
|
+
const forEachEntry = (obj, fn) => {
|
|
579
|
+
const generator = obj && obj[iterator];
|
|
580
|
+
|
|
581
|
+
const _iterator = generator.call(obj);
|
|
582
|
+
|
|
583
|
+
let result;
|
|
584
|
+
|
|
585
|
+
while ((result = _iterator.next()) && !result.done) {
|
|
586
|
+
const pair = result.value;
|
|
587
|
+
fn.call(obj, pair[0], pair[1]);
|
|
588
|
+
}
|
|
589
|
+
};
|
|
590
|
+
|
|
591
|
+
/**
|
|
592
|
+
* It takes a regular expression and a string, and returns an array of all the matches
|
|
593
|
+
*
|
|
594
|
+
* @param {string} regExp - The regular expression to match against.
|
|
595
|
+
* @param {string} str - The string to search.
|
|
596
|
+
*
|
|
597
|
+
* @returns {Array<boolean>}
|
|
598
|
+
*/
|
|
599
|
+
const matchAll = (regExp, str) => {
|
|
600
|
+
let matches;
|
|
601
|
+
const arr = [];
|
|
602
|
+
|
|
603
|
+
while ((matches = regExp.exec(str)) !== null) {
|
|
604
|
+
arr.push(matches);
|
|
605
|
+
}
|
|
606
|
+
|
|
607
|
+
return arr;
|
|
608
|
+
};
|
|
609
|
+
|
|
610
|
+
/* Checking if the kindOfTest function returns true when passed an HTMLFormElement. */
|
|
611
|
+
const isHTMLForm = kindOfTest("HTMLFormElement");
|
|
612
|
+
|
|
613
|
+
const toCamelCase = (str) => {
|
|
614
|
+
return str
|
|
615
|
+
.toLowerCase()
|
|
616
|
+
.replace(/[-_\s]([a-z\d])(\w*)/g, function replacer(m, p1, p2) {
|
|
617
|
+
return p1.toUpperCase() + p2;
|
|
618
|
+
});
|
|
619
|
+
};
|
|
620
|
+
|
|
621
|
+
/* Creating a function that will check if an object has a property. */
|
|
622
|
+
const hasOwnProperty = (
|
|
623
|
+
({ hasOwnProperty }) =>
|
|
624
|
+
(obj, prop) =>
|
|
625
|
+
hasOwnProperty.call(obj, prop)
|
|
626
|
+
)(Object.prototype);
|
|
627
|
+
|
|
628
|
+
/**
|
|
629
|
+
* Determine if a value is a RegExp object
|
|
630
|
+
*
|
|
631
|
+
* @param {*} val The value to test
|
|
632
|
+
*
|
|
633
|
+
* @returns {boolean} True if value is a RegExp object, otherwise false
|
|
634
|
+
*/
|
|
635
|
+
const isRegExp = kindOfTest("RegExp");
|
|
636
|
+
|
|
637
|
+
const reduceDescriptors = (obj, reducer) => {
|
|
638
|
+
const descriptors = Object.getOwnPropertyDescriptors(obj);
|
|
639
|
+
const reducedDescriptors = {};
|
|
640
|
+
|
|
641
|
+
forEach(descriptors, (descriptor, name) => {
|
|
642
|
+
let ret;
|
|
643
|
+
if ((ret = reducer(descriptor, name, obj)) !== false) {
|
|
644
|
+
reducedDescriptors[name] = ret || descriptor;
|
|
645
|
+
}
|
|
646
|
+
});
|
|
647
|
+
|
|
648
|
+
Object.defineProperties(obj, reducedDescriptors);
|
|
649
|
+
};
|
|
650
|
+
|
|
651
|
+
/**
|
|
652
|
+
* Makes all methods read-only
|
|
653
|
+
* @param {Object} obj
|
|
654
|
+
*/
|
|
655
|
+
|
|
656
|
+
const freezeMethods = (obj) => {
|
|
657
|
+
reduceDescriptors(obj, (descriptor, name) => {
|
|
658
|
+
// skip restricted props in strict mode
|
|
659
|
+
if (
|
|
660
|
+
isFunction(obj) &&
|
|
661
|
+
["arguments", "caller", "callee"].indexOf(name) !== -1
|
|
662
|
+
) {
|
|
663
|
+
return false;
|
|
664
|
+
}
|
|
665
|
+
|
|
666
|
+
const value = obj[name];
|
|
667
|
+
|
|
668
|
+
if (!isFunction(value)) return;
|
|
669
|
+
|
|
670
|
+
descriptor.enumerable = false;
|
|
671
|
+
|
|
672
|
+
if ("writable" in descriptor) {
|
|
673
|
+
descriptor.writable = false;
|
|
674
|
+
return;
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
if (!descriptor.set) {
|
|
678
|
+
descriptor.set = () => {
|
|
679
|
+
throw Error("Can not rewrite read-only method '" + name + "'");
|
|
680
|
+
};
|
|
681
|
+
}
|
|
682
|
+
});
|
|
683
|
+
};
|
|
684
|
+
|
|
685
|
+
const toObjectSet = (arrayOrString, delimiter) => {
|
|
686
|
+
const obj = {};
|
|
687
|
+
|
|
688
|
+
const define = (arr) => {
|
|
689
|
+
arr.forEach((value) => {
|
|
690
|
+
obj[value] = true;
|
|
691
|
+
});
|
|
692
|
+
};
|
|
693
|
+
|
|
694
|
+
isArray(arrayOrString)
|
|
695
|
+
? define(arrayOrString)
|
|
696
|
+
: define(String(arrayOrString).split(delimiter));
|
|
697
|
+
|
|
698
|
+
return obj;
|
|
699
|
+
};
|
|
700
|
+
|
|
701
|
+
const noop = () => {};
|
|
702
|
+
|
|
703
|
+
const toFiniteNumber = (value, defaultValue) => {
|
|
704
|
+
return value != null && Number.isFinite((value = +value))
|
|
705
|
+
? value
|
|
706
|
+
: defaultValue;
|
|
707
|
+
};
|
|
708
|
+
|
|
709
|
+
/**
|
|
710
|
+
* If the thing is a FormData object, return true, otherwise return false.
|
|
711
|
+
*
|
|
712
|
+
* @param {unknown} thing - The thing to check.
|
|
713
|
+
*
|
|
714
|
+
* @returns {boolean}
|
|
715
|
+
*/
|
|
716
|
+
function isSpecCompliantForm(thing) {
|
|
717
|
+
return !!(
|
|
718
|
+
thing &&
|
|
719
|
+
isFunction(thing.append) &&
|
|
720
|
+
thing[toStringTag] === "FormData" &&
|
|
721
|
+
thing[iterator]
|
|
722
|
+
);
|
|
723
|
+
}
|
|
724
|
+
|
|
725
|
+
const toJSONObject = (obj) => {
|
|
726
|
+
const stack = new Array(10);
|
|
727
|
+
|
|
728
|
+
const visit = (source, i) => {
|
|
729
|
+
if (isObject(source)) {
|
|
730
|
+
if (stack.indexOf(source) >= 0) {
|
|
731
|
+
return;
|
|
732
|
+
}
|
|
733
|
+
|
|
734
|
+
//Buffer check
|
|
735
|
+
if (isBuffer(source)) {
|
|
736
|
+
return source;
|
|
737
|
+
}
|
|
738
|
+
|
|
739
|
+
if (!("toJSON" in source)) {
|
|
740
|
+
stack[i] = source;
|
|
741
|
+
const target = isArray(source) ? [] : {};
|
|
742
|
+
|
|
743
|
+
forEach(source, (value, key) => {
|
|
744
|
+
const reducedValue = visit(value, i + 1);
|
|
745
|
+
!isUndefined(reducedValue) && (target[key] = reducedValue);
|
|
746
|
+
});
|
|
747
|
+
|
|
748
|
+
stack[i] = undefined;
|
|
749
|
+
|
|
750
|
+
return target;
|
|
751
|
+
}
|
|
752
|
+
}
|
|
753
|
+
|
|
754
|
+
return source;
|
|
755
|
+
};
|
|
756
|
+
|
|
757
|
+
return visit(obj, 0);
|
|
758
|
+
};
|
|
759
|
+
|
|
760
|
+
const isAsyncFn = kindOfTest("AsyncFunction");
|
|
761
|
+
|
|
762
|
+
const isThenable = (thing) =>
|
|
763
|
+
thing &&
|
|
764
|
+
(isObject(thing) || isFunction(thing)) &&
|
|
765
|
+
isFunction(thing.then) &&
|
|
766
|
+
isFunction(thing.catch);
|
|
767
|
+
|
|
768
|
+
// original code
|
|
769
|
+
// https://github.com/DigitalBrainJS/AxiosPromise/blob/16deab13710ec09779922131f3fa5954320f83ab/lib/utils.js#L11-L34
|
|
770
|
+
|
|
771
|
+
const _setImmediate = ((setImmediateSupported, postMessageSupported) => {
|
|
772
|
+
if (setImmediateSupported) {
|
|
773
|
+
return setImmediate;
|
|
774
|
+
}
|
|
775
|
+
|
|
776
|
+
return postMessageSupported
|
|
777
|
+
? ((token, callbacks) => {
|
|
778
|
+
_global.addEventListener(
|
|
779
|
+
"message",
|
|
780
|
+
({ source, data }) => {
|
|
781
|
+
if (source === _global && data === token) {
|
|
782
|
+
callbacks.length && callbacks.shift()();
|
|
783
|
+
}
|
|
784
|
+
},
|
|
785
|
+
false,
|
|
786
|
+
);
|
|
787
|
+
|
|
788
|
+
return (cb) => {
|
|
789
|
+
callbacks.push(cb);
|
|
790
|
+
_global.postMessage(token, "*");
|
|
791
|
+
};
|
|
792
|
+
})(`axios@${Math.random()}`, [])
|
|
793
|
+
: (cb) => setTimeout(cb);
|
|
794
|
+
})(typeof setImmediate === "function", isFunction(_global.postMessage));
|
|
795
|
+
|
|
796
|
+
const asap =
|
|
797
|
+
typeof queueMicrotask !== "undefined"
|
|
798
|
+
? queueMicrotask.bind(_global)
|
|
799
|
+
: (typeof process !== "undefined" && process.nextTick) || _setImmediate;
|
|
800
|
+
|
|
801
|
+
// *********************
|
|
802
|
+
|
|
803
|
+
const isIterable = (thing) => thing != null && isFunction(thing[iterator]);
|
|
804
|
+
|
|
805
|
+
export default {
|
|
806
|
+
isArray,
|
|
807
|
+
isArrayBuffer,
|
|
808
|
+
isBuffer,
|
|
809
|
+
isFormData,
|
|
810
|
+
isArrayBufferView,
|
|
811
|
+
isString,
|
|
812
|
+
isNumber,
|
|
813
|
+
isBoolean,
|
|
814
|
+
isObject,
|
|
815
|
+
isPlainObject,
|
|
816
|
+
isEmptyObject,
|
|
817
|
+
isReadableStream,
|
|
818
|
+
isRequest,
|
|
819
|
+
isResponse,
|
|
820
|
+
isHeaders,
|
|
821
|
+
isUndefined,
|
|
822
|
+
isDate,
|
|
823
|
+
isFile,
|
|
824
|
+
isBlob,
|
|
825
|
+
isRegExp,
|
|
826
|
+
isFunction,
|
|
827
|
+
isStream,
|
|
828
|
+
isURLSearchParams,
|
|
829
|
+
isTypedArray,
|
|
830
|
+
isFileList,
|
|
831
|
+
forEach,
|
|
832
|
+
merge,
|
|
833
|
+
extend,
|
|
834
|
+
trim,
|
|
835
|
+
stripBOM,
|
|
836
|
+
inherits,
|
|
837
|
+
toFlatObject,
|
|
838
|
+
kindOf,
|
|
839
|
+
kindOfTest,
|
|
840
|
+
endsWith,
|
|
841
|
+
toArray,
|
|
842
|
+
forEachEntry,
|
|
843
|
+
matchAll,
|
|
844
|
+
isHTMLForm,
|
|
845
|
+
hasOwnProperty,
|
|
846
|
+
hasOwnProp: hasOwnProperty, // an alias to avoid ESLint no-prototype-builtins detection
|
|
847
|
+
reduceDescriptors,
|
|
848
|
+
freezeMethods,
|
|
849
|
+
toObjectSet,
|
|
850
|
+
toCamelCase,
|
|
851
|
+
noop,
|
|
852
|
+
toFiniteNumber,
|
|
853
|
+
findKey,
|
|
854
|
+
global: _global,
|
|
855
|
+
isContextDefined,
|
|
856
|
+
isSpecCompliantForm,
|
|
857
|
+
toJSONObject,
|
|
858
|
+
isAsyncFn,
|
|
859
|
+
isThenable,
|
|
860
|
+
setImmediate: _setImmediate,
|
|
861
|
+
asap,
|
|
862
|
+
isIterable,
|
|
863
|
+
};
|