├── .gitignore ├── projects ├── AI_chatbot │ └── node_modules │ │ ├── tr46 │ │ ├── lib │ │ │ └── .gitkeep │ │ └── .npmignore │ │ ├── .bin │ │ └── openai │ │ ├── delayed-stream │ │ ├── .npmignore │ │ └── Makefile │ │ ├── dotenv │ │ ├── config.d.ts │ │ └── config.js │ │ ├── formdata-node │ │ ├── lib │ │ │ ├── esm │ │ │ │ ├── BlobPart.js │ │ │ │ ├── package.json │ │ │ │ ├── isFunction.js │ │ │ │ ├── index.js │ │ │ │ ├── isBlob.js │ │ │ │ ├── isFile.js │ │ │ │ └── deprecateConstructorEntries.js │ │ │ ├── cjs │ │ │ │ ├── package.json │ │ │ │ ├── BlobPart.js │ │ │ │ ├── isFunction.js │ │ │ │ ├── isBlob.js │ │ │ │ └── isFile.js │ │ │ └── node-domexception.d.ts │ │ ├── @type │ │ │ ├── isFunction.d.ts │ │ │ ├── deprecateConstructorEntries.d.ts │ │ │ ├── index.d.ts │ │ │ ├── isBlob.d.ts │ │ │ ├── isPlainObject.d.ts │ │ │ ├── BlobPart.d.ts │ │ │ └── isFile.d.ts │ │ └── node_modules │ │ │ └── web-streams-polyfill │ │ │ ├── polyfill │ │ │ ├── package.json │ │ │ └── es5 │ │ │ │ └── package.json │ │ │ └── es5 │ │ │ └── package.json │ │ ├── node-domexception │ │ └── .history │ │ │ ├── index_20210527203842.js │ │ │ ├── test_20210527205603.js │ │ │ ├── test_20210527205957.js │ │ │ ├── test_20210527210021.js │ │ │ └── README_20210527203617.md │ │ ├── form-data-encoder │ │ ├── lib │ │ │ ├── esm │ │ │ │ ├── FileLike.js │ │ │ │ ├── FormDataLike.js │ │ │ │ ├── package.json │ │ │ │ ├── util │ │ │ │ │ ├── isFunction.js │ │ │ │ │ └── escapeName.js │ │ │ │ └── index.js │ │ │ └── cjs │ │ │ │ ├── package.json │ │ │ │ ├── FileLike.js │ │ │ │ ├── FormDataLike.js │ │ │ │ └── util │ │ │ │ └── isFunction.js │ │ └── @type │ │ │ ├── util │ │ │ ├── isPlainObject.d.ts │ │ │ └── isFunction.d.ts │ │ │ └── index.d.ts │ │ ├── @types │ │ └── node │ │ │ ├── globals.global.d.ts │ │ │ ├── ts4.8 │ │ │ ├── globals.global.d.ts │ │ │ └── assert │ │ │ │ └── strict.d.ts │ │ │ └── assert │ │ │ └── strict.d.ts │ │ ├── charenc │ │ └── README.js │ │ ├── digest-fetch │ │ ├── .npmignore │ │ ├── .babelrc │ │ └── .eslintrc │ │ ├── crypt │ │ └── README.mkd │ │ ├── openai │ │ ├── src │ │ │ ├── version.ts │ │ │ ├── _shims │ │ │ │ ├── auto │ │ │ │ │ ├── types.js │ │ │ │ │ ├── types.mjs │ │ │ │ │ ├── runtime.ts │ │ │ │ │ ├── types-node.ts │ │ │ │ │ ├── runtime-bun.ts │ │ │ │ │ └── runtime-node.ts │ │ │ │ ├── node-types.js │ │ │ │ ├── node-types.mjs │ │ │ │ ├── web-types.js │ │ │ │ ├── web-types.mjs │ │ │ │ ├── manual-types.js │ │ │ │ └── manual-types.mjs │ │ │ ├── resources │ │ │ │ └── beta │ │ │ │ │ └── chat │ │ │ │ │ └── index.ts │ │ │ ├── lib │ │ │ │ └── .keep │ │ │ └── resource.ts │ │ ├── version.d.ts │ │ ├── _shims │ │ │ ├── auto │ │ │ │ ├── runtime.mjs │ │ │ │ ├── runtime-bun.mjs │ │ │ │ ├── types-node.mjs │ │ │ │ ├── runtime-node.mjs │ │ │ │ ├── types.js │ │ │ │ ├── types.mjs │ │ │ │ ├── runtime.mjs.map │ │ │ │ ├── types-node.mjs.map │ │ │ │ ├── runtime-bun.mjs.map │ │ │ │ ├── runtime-node.mjs.map │ │ │ │ ├── runtime.d.ts.map │ │ │ │ ├── runtime.js.map │ │ │ │ ├── types-node.d.ts.map │ │ │ │ ├── runtime-bun.d.ts.map │ │ │ │ ├── runtime-bun.js.map │ │ │ │ ├── runtime-node.d.ts.map │ │ │ │ ├── runtime.d.ts │ │ │ │ ├── types-node.js.map │ │ │ │ ├── runtime-node.js.map │ │ │ │ ├── types-node.d.ts │ │ │ │ ├── runtime-bun.d.ts │ │ │ │ └── runtime-node.d.ts │ │ │ ├── node-types.js │ │ │ ├── web-types.js │ │ │ ├── web-types.mjs │ │ │ ├── manual-types.js │ │ │ ├── manual-types.mjs │ │ │ ├── node-types.mjs │ │ │ ├── node-runtime.d.ts │ │ │ ├── web-runtime.d.ts │ │ │ ├── node-runtime.d.ts.map │ │ │ ├── bun-runtime.d.ts.map │ │ │ ├── bun-runtime.d.ts │ │ │ ├── MultipartBody.d.ts.map │ │ │ └── web-runtime.d.ts.map │ │ ├── version.mjs │ │ ├── lib │ │ │ ├── ChatCompletionRunFunctions.test.d.ts │ │ │ ├── ChatCompletionRunFunctions.test.d.ts.map │ │ │ ├── jsonschema.js.map │ │ │ └── jsonschema.mjs.map │ │ ├── resources │ │ │ ├── shared.mjs │ │ │ ├── shared.js.map │ │ │ ├── shared.mjs.map │ │ │ ├── beta │ │ │ │ ├── chat │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.mjs │ │ │ │ │ ├── index.mjs.map │ │ │ │ │ ├── index.js.map │ │ │ │ │ └── index.d.ts.map │ │ │ │ ├── threads │ │ │ │ │ ├── runs │ │ │ │ │ │ ├── index.mjs │ │ │ │ │ │ └── index.mjs.map │ │ │ │ │ ├── index.mjs.map │ │ │ │ │ └── messages │ │ │ │ │ │ ├── index.mjs │ │ │ │ │ │ └── index.mjs.map │ │ │ │ ├── assistants │ │ │ │ │ ├── index.mjs.map │ │ │ │ │ └── index.mjs │ │ │ │ └── index.mjs.map │ │ │ ├── shared.js │ │ │ ├── chat │ │ │ │ ├── index.mjs.map │ │ │ │ ├── index.mjs │ │ │ │ └── index.js.map │ │ │ ├── fine-tuning │ │ │ │ ├── index.mjs.map │ │ │ │ ├── index.mjs │ │ │ │ ├── index.d.ts │ │ │ │ └── index.js.map │ │ │ └── audio │ │ │ │ └── index.mjs.map │ │ ├── version.d.ts.map │ │ ├── version.js.map │ │ ├── version.mjs.map │ │ ├── resource.d.ts │ │ ├── shims │ │ │ ├── node.mjs.map │ │ │ ├── node.js.map │ │ │ ├── node.mjs │ │ │ ├── web.mjs.map │ │ │ ├── web.mjs │ │ │ └── web.js.map │ │ ├── resource.mjs │ │ ├── resource.mjs.map │ │ ├── version.js │ │ ├── resource.js.map │ │ └── resource.d.ts.map │ │ ├── md5 │ │ ├── .travis.yml │ │ └── webpack.config.js │ │ ├── form-data │ │ └── lib │ │ │ ├── browser.js │ │ │ └── populate.js │ │ ├── undici-types │ │ ├── header.d.ts │ │ ├── global-origin.d.ts │ │ └── interceptors.d.ts │ │ ├── agentkeepalive │ │ ├── browser.js │ │ └── index.js │ │ ├── asynckit │ │ └── index.js │ │ ├── mime-db │ │ └── index.js │ │ └── strip-ansi │ │ └── index.js ├── stocks_data_api │ └── node_modules │ │ ├── mime │ │ ├── .npmignore │ │ └── cli.js │ │ ├── nopt │ │ └── .npmignore │ │ ├── .bin │ │ ├── mime │ │ ├── nopt │ │ ├── semver │ │ ├── esparse │ │ ├── extract-zip │ │ ├── js-yaml │ │ ├── nodemon │ │ ├── nodetouch │ │ ├── escodegen │ │ ├── esgenerate │ │ ├── esvalidate │ │ ├── browsers │ │ └── puppeteer │ │ ├── smart-buffer │ │ ├── docs │ │ │ └── ROADMAP.md │ │ ├── .prettierrc.yaml │ │ └── .travis.yml │ │ ├── call-bind │ │ ├── .eslintignore │ │ └── .nycrc │ │ ├── require-directory │ │ ├── .npmignore │ │ └── .travis.yml │ │ ├── chromium-bidi │ │ ├── .browser │ │ └── lib │ │ │ ├── esm │ │ │ ├── package.json │ │ │ ├── protocol │ │ │ │ ├── cdp.js │ │ │ │ ├── cdp.js.map │ │ │ │ └── generated │ │ │ │ │ ├── webdriver-bidi.js.map │ │ │ │ │ ├── webdriver-bidi-bluetooth.js.map │ │ │ │ │ └── webdriver-bidi-permissions.js.map │ │ │ ├── cdp │ │ │ │ ├── cdpMessage.js │ │ │ │ └── cdpMessage.js.map │ │ │ ├── utils │ │ │ │ ├── result.js.map │ │ │ │ ├── transport.js.map │ │ │ │ ├── CdpErrorConstants.js.map │ │ │ │ └── unitConversions.js.map │ │ │ ├── bidiMapper │ │ │ │ ├── BidiParser.js.map │ │ │ │ ├── BidiTransport.js.map │ │ │ │ └── modules │ │ │ │ │ └── input │ │ │ │ │ └── ActionOption.js.map │ │ │ └── bidiServer │ │ │ │ └── WebSocketServer.d.ts │ │ │ └── cjs │ │ │ ├── protocol │ │ │ ├── cdp.js │ │ │ ├── cdp.js.map │ │ │ └── generated │ │ │ │ ├── webdriver-bidi.js.map │ │ │ │ ├── webdriver-bidi-bluetooth.js.map │ │ │ │ └── webdriver-bidi-permissions.js.map │ │ │ ├── cdp │ │ │ ├── cdpMessage.js │ │ │ └── cdpMessage.js.map │ │ │ ├── utils │ │ │ ├── result.js.map │ │ │ ├── transport.js.map │ │ │ └── CdpErrorConstants.js.map │ │ │ └── bidiMapper │ │ │ ├── BidiParser.js.map │ │ │ ├── BidiTransport.js.map │ │ │ └── modules │ │ │ └── input │ │ │ └── ActionOption.js.map │ │ ├── jsbn │ │ ├── .npmignore │ │ ├── test │ │ │ └── es6-import.js │ │ └── example.js │ │ ├── zod │ │ ├── lib │ │ │ ├── benchmarks │ │ │ │ ├── index.d.ts │ │ │ │ ├── ipv4.d.ts │ │ │ │ ├── object.d.ts │ │ │ │ ├── string.d.ts │ │ │ │ ├── union.d.ts │ │ │ │ ├── datetime.d.ts │ │ │ │ ├── primitives.d.ts │ │ │ │ ├── realworld.d.ts │ │ │ │ └── discriminatedUnion.d.ts │ │ │ ├── helpers │ │ │ │ ├── enumUtil.js │ │ │ │ ├── partialUtil.js │ │ │ │ ├── typeAliases.js │ │ │ │ └── typeAliases.d.ts │ │ │ ├── index.d.ts │ │ │ ├── locales │ │ │ │ └── en.d.ts │ │ │ ├── external.d.ts │ │ │ └── errors.d.ts │ │ └── index.d.ts │ │ ├── cheerio │ │ └── lib │ │ │ ├── esm │ │ │ ├── package.json │ │ │ ├── types.js │ │ │ └── types.js.map │ │ │ ├── types.js │ │ │ └── types.js.map │ │ ├── puppeteer │ │ ├── lib │ │ │ ├── esm │ │ │ │ ├── package.json │ │ │ │ └── puppeteer │ │ │ │ │ └── node │ │ │ │ │ ├── cli.d.ts.map │ │ │ │ │ ├── cli.d.ts │ │ │ │ │ └── install.d.ts.map │ │ │ └── cjs │ │ │ │ └── puppeteer │ │ │ │ └── node │ │ │ │ ├── cli.d.ts.map │ │ │ │ ├── cli.d.ts │ │ │ │ └── install.d.ts.map │ │ └── src │ │ │ ├── tsconfig.esm.json │ │ │ └── tsconfig.cjs.json │ │ ├── tslib │ │ ├── tslib.html │ │ ├── modules │ │ │ └── package.json │ │ └── tslib.es6.html │ │ ├── bare-fs │ │ ├── binding.js │ │ ├── promises.js │ │ ├── prebuilds │ │ │ ├── darwin-x64 │ │ │ │ └── bare-fs.bare │ │ │ ├── ios-arm64 │ │ │ │ └── bare-fs.bare │ │ │ ├── linux-x64 │ │ │ │ └── bare-fs.bare │ │ │ ├── win32-x64 │ │ │ │ └── bare-fs.bare │ │ │ ├── android-arm │ │ │ │ └── bare-fs.bare │ │ │ ├── android-ia32 │ │ │ │ └── bare-fs.bare │ │ │ ├── android-x64 │ │ │ │ └── bare-fs.bare │ │ │ ├── darwin-arm64 │ │ │ │ └── bare-fs.bare │ │ │ ├── linux-arm64 │ │ │ │ └── bare-fs.bare │ │ │ ├── win32-arm64 │ │ │ │ └── bare-fs.bare │ │ │ ├── android-arm64 │ │ │ │ └── bare-fs.bare │ │ │ ├── ios-x64-simulator │ │ │ │ └── bare-fs.bare │ │ │ └── ios-arm64-simulator │ │ │ │ └── bare-fs.bare │ │ └── CMakeLists.txt │ │ ├── bare-os │ │ ├── binding.js │ │ ├── lib │ │ │ └── constants.js │ │ ├── README.md │ │ ├── prebuilds │ │ │ ├── darwin-x64 │ │ │ │ └── bare-os.bare │ │ │ ├── ios-arm64 │ │ │ │ └── bare-os.bare │ │ │ ├── linux-x64 │ │ │ │ └── bare-os.bare │ │ │ ├── win32-x64 │ │ │ │ └── bare-os.bare │ │ │ ├── android-arm │ │ │ │ └── bare-os.bare │ │ │ ├── android-ia32 │ │ │ │ └── bare-os.bare │ │ │ ├── android-x64 │ │ │ │ └── bare-os.bare │ │ │ ├── darwin-arm64 │ │ │ │ └── bare-os.bare │ │ │ ├── linux-arm64 │ │ │ │ └── bare-os.bare │ │ │ ├── win32-arm64 │ │ │ │ └── bare-os.bare │ │ │ ├── android-arm64 │ │ │ │ └── bare-os.bare │ │ │ ├── ios-x64-simulator │ │ │ │ └── bare-os.bare │ │ │ └── ios-arm64-simulator │ │ │ │ └── bare-os.bare │ │ └── CMakeLists.txt │ │ ├── css-select │ │ └── lib │ │ │ ├── esm │ │ │ ├── package.json │ │ │ ├── types.js │ │ │ ├── pseudo-selectors │ │ │ │ └── aliases.d.ts │ │ │ └── types.js.map │ │ │ ├── types.js │ │ │ ├── pseudo-selectors │ │ │ └── aliases.d.ts │ │ │ └── types.js.map │ │ ├── domhandler │ │ └── lib │ │ │ └── esm │ │ │ └── package.json │ │ ├── domutils │ │ └── lib │ │ │ └── esm │ │ │ └── package.json │ │ ├── entities │ │ └── lib │ │ │ ├── esm │ │ │ ├── package.json │ │ │ └── generated │ │ │ │ ├── decode-data-html.d.ts │ │ │ │ ├── decode-data-xml.d.ts │ │ │ │ ├── decode-data-html.d.ts.map │ │ │ │ └── decode-data-xml.d.ts.map │ │ │ └── generated │ │ │ ├── decode-data-html.d.ts │ │ │ ├── decode-data-xml.d.ts │ │ │ ├── decode-data-xml.d.ts.map │ │ │ └── decode-data-html.d.ts.map │ │ ├── fd-slicer │ │ ├── .npmignore │ │ └── .travis.yml │ │ ├── htmlparser2 │ │ └── lib │ │ │ └── esm │ │ │ └── package.json │ │ ├── nth-check │ │ └── lib │ │ │ └── esm │ │ │ └── package.json │ │ ├── parse5 │ │ └── dist │ │ │ ├── cjs │ │ │ ├── package.json │ │ │ └── tree-adapters │ │ │ │ └── interface.js │ │ │ └── tree-adapters │ │ │ └── interface.js │ │ ├── puppeteer-core │ │ ├── lib │ │ │ ├── esm │ │ │ │ ├── package.json │ │ │ │ ├── third_party │ │ │ │ │ ├── mitt │ │ │ │ │ │ └── mitt.d.ts │ │ │ │ │ └── parsel-js │ │ │ │ │ │ └── parsel-js.d.ts │ │ │ │ └── puppeteer │ │ │ │ │ ├── generated │ │ │ │ │ ├── version.js │ │ │ │ │ ├── version.d.ts │ │ │ │ │ ├── version.d.ts.map │ │ │ │ │ ├── version.js.map │ │ │ │ │ ├── injected.d.ts.map │ │ │ │ │ └── injected.js.map │ │ │ │ │ ├── common │ │ │ │ │ ├── Cookie.js.map │ │ │ │ │ ├── types.js.map │ │ │ │ │ ├── Viewport.js.map │ │ │ │ │ ├── types.js │ │ │ │ │ ├── Configuration.js.map │ │ │ │ │ ├── ConnectOptions.js.map │ │ │ │ │ ├── Cookie.js │ │ │ │ │ ├── SupportedBrowser.js.map │ │ │ │ │ ├── Viewport.js │ │ │ │ │ ├── Configuration.js │ │ │ │ │ ├── ConnectOptions.js │ │ │ │ │ ├── ConnectionTransport.js.map │ │ │ │ │ ├── SupportedBrowser.js │ │ │ │ │ ├── ConnectionTransport.js │ │ │ │ │ └── SupportedBrowser.d.ts.map │ │ │ │ │ ├── api │ │ │ │ │ ├── Environment.js.map │ │ │ │ │ ├── Environment.js │ │ │ │ │ ├── ElementHandleSymbol.d.ts.map │ │ │ │ │ └── ElementHandleSymbol.js.map │ │ │ │ │ ├── cdp │ │ │ │ │ ├── TargetManager.js.map │ │ │ │ │ └── TargetManager.js │ │ │ │ │ ├── node │ │ │ │ │ ├── LaunchOptions.js.map │ │ │ │ │ └── LaunchOptions.js │ │ │ │ │ ├── bidi │ │ │ │ │ └── core │ │ │ │ │ │ ├── Connection.js.map │ │ │ │ │ │ └── Connection.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ ├── revisions.d.ts.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── util │ │ │ │ │ ├── util.js.map │ │ │ │ │ └── util.d.ts.map │ │ │ └── cjs │ │ │ │ ├── third_party │ │ │ │ ├── mitt │ │ │ │ │ └── mitt.d.ts │ │ │ │ └── parsel-js │ │ │ │ │ └── parsel-js.d.ts │ │ │ │ └── puppeteer │ │ │ │ ├── generated │ │ │ │ ├── version.d.ts │ │ │ │ ├── version.js.map │ │ │ │ ├── version.d.ts.map │ │ │ │ ├── injected.d.ts.map │ │ │ │ ├── injected.js.map │ │ │ │ └── version.js │ │ │ │ ├── common │ │ │ │ ├── types.js.map │ │ │ │ ├── Cookie.js.map │ │ │ │ ├── Viewport.js.map │ │ │ │ ├── Configuration.js.map │ │ │ │ ├── ConnectOptions.js.map │ │ │ │ ├── SupportedBrowser.js.map │ │ │ │ ├── ConnectionTransport.js.map │ │ │ │ ├── types.js │ │ │ │ ├── Cookie.js │ │ │ │ ├── SupportedBrowser.d.ts.map │ │ │ │ └── Viewport.js │ │ │ │ ├── api │ │ │ │ ├── Environment.js.map │ │ │ │ ├── ElementHandleSymbol.d.ts.map │ │ │ │ ├── ElementHandleSymbol.js.map │ │ │ │ └── Environment.js │ │ │ │ ├── cdp │ │ │ │ ├── TargetManager.js.map │ │ │ │ └── TargetManager.js │ │ │ │ ├── node │ │ │ │ ├── LaunchOptions.js.map │ │ │ │ ├── node.js.map │ │ │ │ └── LaunchOptions.js │ │ │ │ ├── bidi │ │ │ │ └── core │ │ │ │ │ ├── Connection.js.map │ │ │ │ │ └── Connection.js │ │ │ │ ├── index.js.map │ │ │ │ ├── index.d.ts.map │ │ │ │ ├── revisions.d.ts.map │ │ │ │ ├── util │ │ │ │ ├── util.js.map │ │ │ │ └── util.d.ts.map │ │ │ │ ├── index.d.ts │ │ │ │ └── index-browser.js.map │ │ └── src │ │ │ ├── generated │ │ │ └── version.ts │ │ │ ├── templates │ │ │ ├── version.ts.tmpl │ │ │ └── README.md │ │ │ ├── index.ts │ │ │ ├── tsconfig.esm.json │ │ │ └── api │ │ │ └── ElementHandleSymbol.ts │ │ ├── @puppeteer │ │ └── browsers │ │ │ ├── lib │ │ │ ├── esm │ │ │ │ ├── package.json │ │ │ │ ├── main-cli.d.ts.map │ │ │ │ ├── debug.js.map │ │ │ │ ├── debug.d.ts.map │ │ │ │ ├── main-cli.d.ts │ │ │ │ ├── debug.d.ts │ │ │ │ ├── debug.js │ │ │ │ ├── fileUtil.d.ts.map │ │ │ │ ├── main-cli.js.map │ │ │ │ ├── main-cli.js │ │ │ │ └── detectPlatform.d.ts.map │ │ │ └── cjs │ │ │ │ ├── main-cli.d.ts.map │ │ │ │ ├── debug.js.map │ │ │ │ ├── debug.d.ts.map │ │ │ │ ├── main-cli.d.ts │ │ │ │ ├── debug.d.ts │ │ │ │ ├── main-cli.js.map │ │ │ │ ├── fileUtil.d.ts.map │ │ │ │ └── detectPlatform.d.ts.map │ │ │ └── src │ │ │ ├── tsconfig.esm.json │ │ │ ├── debug.ts │ │ │ ├── tsconfig.cjs.json │ │ │ └── main-cli.ts │ │ ├── cheerio-select │ │ └── lib │ │ │ └── esm │ │ │ └── package.json │ │ ├── debug │ │ ├── node.js │ │ ├── .coveralls.yml │ │ ├── .npmignore │ │ ├── .travis.yml │ │ └── .eslintrc │ │ ├── dom-serializer │ │ └── lib │ │ │ ├── esm │ │ │ ├── package.json │ │ │ ├── foreignNames.d.ts │ │ │ └── foreignNames.d.ts.map │ │ │ ├── foreignNames.d.ts │ │ │ └── foreignNames.d.ts.map │ │ ├── domelementtype │ │ ├── lib │ │ │ └── esm │ │ │ │ └── package.json │ │ └── readme.md │ │ ├── nodemon │ │ ├── lib │ │ │ ├── index.js │ │ │ └── monitor │ │ │ │ └── index.js │ │ ├── .prettierrc.json │ │ ├── doc │ │ │ └── cli │ │ │ │ └── usage.txt │ │ └── bin │ │ │ └── windows-kill.exe │ │ ├── yargs │ │ ├── build │ │ │ └── lib │ │ │ │ ├── typings │ │ │ │ └── yargs-parser-types.js │ │ │ │ └── utils │ │ │ │ └── is-promise.js │ │ ├── helpers │ │ │ └── package.json │ │ ├── browser.d.ts │ │ ├── browser.mjs │ │ └── index.mjs │ │ ├── progress │ │ ├── index.js │ │ └── Makefile │ │ ├── socks │ │ ├── typings │ │ │ └── index.d.ts │ │ ├── build │ │ │ └── index.js.map │ │ ├── docs │ │ │ └── index.md │ │ ├── .prettierrc.yaml │ │ └── .eslintrc.cjs │ │ ├── @types │ │ └── node │ │ │ ├── globals.global.d.ts │ │ │ └── assert │ │ │ └── strict.d.ts │ │ ├── cookie-signature │ │ └── .npmignore │ │ ├── cosmiconfig │ │ └── dist │ │ │ ├── util.d.ts │ │ │ ├── Explorer.d.ts │ │ │ ├── ExplorerBase.d.ts │ │ │ ├── ExplorerSync.d.ts │ │ │ ├── types.js.map │ │ │ ├── util.d.ts.map │ │ │ ├── Explorer.d.ts.map │ │ │ ├── types.js │ │ │ ├── ExplorerBase.d.ts.map │ │ │ ├── ExplorerSync.d.ts.map │ │ │ ├── canUseDynamicImport.d.ts │ │ │ ├── canUseDynamicImport.d.ts.map │ │ │ ├── getPropertyByPath.d.ts │ │ │ └── getDirectory.d.ts │ │ ├── pump │ │ ├── .github │ │ │ └── FUNDING.yml │ │ ├── .travis.yml │ │ └── SECURITY.md │ │ ├── hasown │ │ ├── .eslintrc │ │ ├── index.d.ts │ │ └── index.js │ │ ├── object-inspect │ │ ├── util.inspect.js │ │ └── example │ │ │ ├── circular.js │ │ │ └── fn.js │ │ ├── parse5-htmlparser2-tree-adapter │ │ └── dist │ │ │ └── cjs │ │ │ └── package.json │ │ ├── binary-extensions │ │ ├── index.js │ │ └── binary-extensions.json.d.ts │ │ ├── concat-map │ │ ├── .travis.yml │ │ └── example │ │ │ └── map.js │ │ ├── es-errors │ │ ├── .eslintrc │ │ ├── index.d.ts │ │ ├── uri.d.ts │ │ ├── eval.d.ts │ │ ├── index.js │ │ ├── type.d.ts │ │ ├── range.d.ts │ │ ├── uri.js │ │ ├── eval.js │ │ ├── syntax.d.ts │ │ ├── type.js │ │ ├── range.js │ │ ├── ref.d.ts │ │ ├── ref.js │ │ └── syntax.js │ │ ├── has-proto │ │ ├── .eslintrc │ │ └── index.js │ │ ├── picomatch │ │ └── index.js │ │ ├── balanced-match │ │ └── .github │ │ │ └── FUNDING.yml │ │ ├── is-arrayish │ │ ├── .npmignore │ │ ├── .istanbul.yml │ │ └── index.js │ │ ├── semver │ │ ├── preload.js │ │ ├── functions │ │ │ ├── gt.js │ │ │ ├── lt.js │ │ │ ├── eq.js │ │ │ ├── gte.js │ │ │ ├── lte.js │ │ │ ├── neq.js │ │ │ ├── major.js │ │ │ ├── minor.js │ │ │ ├── patch.js │ │ │ ├── rcompare.js │ │ │ ├── compare-loose.js │ │ │ ├── sort.js │ │ │ ├── rsort.js │ │ │ ├── compare.js │ │ │ ├── valid.js │ │ │ ├── clean.js │ │ │ └── prerelease.js │ │ ├── classes │ │ │ └── index.js │ │ └── ranges │ │ │ ├── ltr.js │ │ │ ├── gtr.js │ │ │ └── intersects.js │ │ ├── through │ │ └── .travis.yml │ │ ├── unpipe │ │ └── HISTORY.md │ │ ├── tar-stream │ │ └── index.js │ │ ├── ast-types │ │ ├── types.js │ │ ├── def │ │ │ ├── babel.d.ts │ │ │ ├── core.d.ts │ │ │ ├── es2020.d.ts │ │ │ ├── es6.d.ts │ │ │ ├── es7.d.ts │ │ │ ├── flow.d.ts │ │ │ ├── jsx.d.ts │ │ │ ├── babel-core.d.ts │ │ │ ├── esprima.d.ts │ │ │ ├── typescript.d.ts │ │ │ └── es-proposals.d.ts │ │ ├── gen │ │ │ ├── builders.js │ │ │ ├── kinds.js │ │ │ ├── visitor.js │ │ │ └── namedTypes.js │ │ ├── lib │ │ │ └── equiv.d.ts │ │ └── types.d.ts │ │ ├── get-caller-file │ │ └── index.d.ts │ │ ├── bare-stream │ │ ├── promises.js │ │ └── README.md │ │ ├── supports-color │ │ └── browser.js │ │ ├── basic-ftp │ │ └── dist │ │ │ ├── StringEncoding.js │ │ │ ├── StringEncoding.d.ts │ │ │ └── parseList.d.ts │ │ ├── degenerator │ │ └── dist │ │ │ ├── index.d.ts │ │ │ ├── index.d.ts.map │ │ │ └── index.js.map │ │ ├── es-define-property │ │ ├── index.d.ts │ │ ├── .nycrc │ │ └── .eslintrc │ │ ├── setprototypeof │ │ └── index.d.ts │ │ ├── side-channel │ │ ├── README.md │ │ ├── .editorconfig │ │ └── .eslintrc │ │ ├── queue-tick │ │ ├── queue-microtask.js │ │ ├── process-next-tick.js │ │ └── test.js │ │ ├── css-what │ │ └── lib │ │ │ ├── es │ │ │ ├── index.js │ │ │ ├── index.d.ts │ │ │ ├── index.d.ts.map │ │ │ └── stringify.d.ts.map │ │ │ └── commonjs │ │ │ ├── index.d.ts │ │ │ ├── index.d.ts.map │ │ │ └── stringify.d.ts.map │ │ ├── sprintf-js │ │ └── dist │ │ │ └── .gitattributes │ │ ├── utils-merge │ │ └── .npmignore │ │ ├── pstree.remy │ │ └── .travis.yml │ │ ├── fsevents │ │ └── fsevents.node │ │ ├── boolbase │ │ └── index.js │ │ ├── function-bind │ │ ├── index.js │ │ ├── .github │ │ │ └── SECURITY.md │ │ └── test │ │ │ └── .eslintrc │ │ ├── set-function-length │ │ ├── env.d.ts.map │ │ └── index.d.ts.map │ │ ├── undici-types │ │ ├── header.d.ts │ │ └── global-origin.d.ts │ │ ├── picocolors │ │ └── picocolors.d.ts │ │ ├── strip-ansi │ │ └── index.js │ │ ├── base64-js │ │ └── index.d.ts │ │ ├── fs-extra │ │ └── lib │ │ │ ├── copy │ │ │ └── index.js │ │ │ └── move │ │ │ └── index.js │ │ ├── toidentifier │ │ └── HISTORY.md │ │ ├── get-intrinsic │ │ └── .nycrc │ │ ├── has-symbols │ │ ├── .nycrc │ │ └── .eslintrc │ │ ├── urlpattern-polyfill │ │ ├── index.js │ │ └── index.cjs │ │ ├── color-name │ │ └── test.js │ │ ├── has-property-descriptors │ │ ├── .nycrc │ │ └── .eslintrc │ │ ├── @tootallnate │ │ └── quickjs-emscripten │ │ │ └── dist │ │ │ ├── debug.d.ts │ │ │ └── generated │ │ │ └── emscripten-module.WASM_RELEASE_SYNC.d.ts │ │ ├── data-uri-to-buffer │ │ └── dist │ │ │ ├── node.d.ts.map │ │ │ └── index.d.ts.map │ │ ├── pac-resolver │ │ └── dist │ │ │ ├── myIpAddress.d.ts.map │ │ │ ├── isResolvable.d.ts.map │ │ │ ├── timeRange.d.ts.map │ │ │ ├── dnsResolve.d.ts.map │ │ │ ├── dnsDomainLevels.d.ts.map │ │ │ ├── ip.d.ts.map │ │ │ ├── isPlainHostName.d.ts.map │ │ │ ├── ip.d.ts │ │ │ ├── dateRange.d.ts.map │ │ │ ├── dnsDomainIs.d.ts.map │ │ │ ├── shExpMatch.d.ts.map │ │ │ ├── isInNet.d.ts.map │ │ │ ├── dateRange.js.map │ │ │ └── isPlainHostName.js.map │ │ ├── ws │ │ └── browser.js │ │ ├── ip-address │ │ └── dist │ │ │ ├── address-error.d.ts │ │ │ ├── v4 │ │ │ ├── constants.d.ts │ │ │ ├── constants.d.ts.map │ │ │ └── constants.js.map │ │ │ └── address-error.d.ts.map │ │ ├── y18n │ │ ├── index.mjs │ │ └── build │ │ │ └── lib │ │ │ └── cjs.js │ │ ├── get-uri │ │ └── dist │ │ │ ├── https.d.ts │ │ │ └── notfound.js.map │ │ ├── js-yaml │ │ └── lib │ │ │ └── type │ │ │ ├── map.js │ │ │ ├── str.js │ │ │ └── seq.js │ │ ├── escalade │ │ └── sync │ │ │ └── index.d.mts │ │ ├── mime-db │ │ └── index.js │ │ ├── simple-update-notifier │ │ └── src │ │ │ └── types.ts │ │ ├── qs │ │ └── lib │ │ │ └── index.js │ │ └── is-binary-path │ │ └── index.js ├── JSON_database │ └── db.json └── compound_interest_calculator │ └── node_modules │ └── strip-ansi │ └── index.js ├── .gitattributes └── assets └── thumbnail.jpg /.gitignore: -------------------------------------------------------------------------------- 1 | .env -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/tr46/lib/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/mime/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/nopt/.npmignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/.bin/openai: -------------------------------------------------------------------------------- 1 | ../openai/bin/cli -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/.bin/mime: -------------------------------------------------------------------------------- 1 | ../mime/cli.js -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/delayed-stream/.npmignore: -------------------------------------------------------------------------------- 1 | test 2 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/dotenv/config.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/.bin/nopt: -------------------------------------------------------------------------------- 1 | ../nopt/bin/nopt.js -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/smart-buffer/docs/ROADMAP.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/.bin/semver: -------------------------------------------------------------------------------- 1 | ../semver/bin/semver.js -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/.bin/esparse: -------------------------------------------------------------------------------- 1 | ../esprima/bin/esparse.js -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/.bin/extract-zip: -------------------------------------------------------------------------------- 1 | ../extract-zip/cli.js -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/.bin/js-yaml: -------------------------------------------------------------------------------- 1 | ../js-yaml/bin/js-yaml.js -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/.bin/nodemon: -------------------------------------------------------------------------------- 1 | ../nodemon/bin/nodemon.js -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/.bin/nodetouch: -------------------------------------------------------------------------------- 1 | ../touch/bin/nodetouch.js -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/call-bind/.eslintignore: -------------------------------------------------------------------------------- 1 | coverage/ 2 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/require-directory/.npmignore: -------------------------------------------------------------------------------- 1 | test/** 2 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/formdata-node/lib/esm/BlobPart.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/node-domexception/.history/index_20210527203842.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/node-domexception/.history/test_20210527205603.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/.bin/escodegen: -------------------------------------------------------------------------------- 1 | ../escodegen/bin/escodegen.js -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/.bin/esgenerate: -------------------------------------------------------------------------------- 1 | ../escodegen/bin/esgenerate.js -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/.bin/esvalidate: -------------------------------------------------------------------------------- 1 | ../esprima/bin/esvalidate.js -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/chromium-bidi/.browser: -------------------------------------------------------------------------------- 1 | chrome@131.0.6748.0 -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/jsbn/.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .DS_Store -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/zod/lib/benchmarks/index.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/form-data-encoder/lib/esm/FileLike.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/cheerio/lib/esm/package.json: -------------------------------------------------------------------------------- 1 | {"type":"module"} 2 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer/lib/esm/package.json: -------------------------------------------------------------------------------- 1 | {"type": "module"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/tslib/tslib.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/form-data-encoder/lib/esm/FormDataLike.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /projects/JSON_database/db.json: -------------------------------------------------------------------------------- 1 | {"name":"james","favorite_numbers":[8,3],"number_of_bananas":4} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/.bin/browsers: -------------------------------------------------------------------------------- 1 | ../@puppeteer/browsers/lib/cjs/main-cli.js -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/bare-fs/binding.js: -------------------------------------------------------------------------------- 1 | module.exports = require.addon() 2 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/bare-os/binding.js: -------------------------------------------------------------------------------- 1 | module.exports = require.addon() 2 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/chromium-bidi/lib/esm/package.json: -------------------------------------------------------------------------------- 1 | {"type": "module"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/css-select/lib/esm/package.json: -------------------------------------------------------------------------------- 1 | {"type":"module"} 2 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/domhandler/lib/esm/package.json: -------------------------------------------------------------------------------- 1 | {"type":"module"} 2 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/domutils/lib/esm/package.json: -------------------------------------------------------------------------------- 1 | {"type":"module"} 2 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/entities/lib/esm/package.json: -------------------------------------------------------------------------------- 1 | {"type":"module"} 2 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/fd-slicer/.npmignore: -------------------------------------------------------------------------------- 1 | /coverage 2 | /node_modules 3 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/htmlparser2/lib/esm/package.json: -------------------------------------------------------------------------------- 1 | {"type":"module"} 2 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/nth-check/lib/esm/package.json: -------------------------------------------------------------------------------- 1 | {"type":"module"} 2 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/parse5/dist/cjs/package.json: -------------------------------------------------------------------------------- 1 | {"type":"commonjs"} 2 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/esm/package.json: -------------------------------------------------------------------------------- 1 | {"type":"module"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/.bin/puppeteer: -------------------------------------------------------------------------------- 1 | ../puppeteer/lib/cjs/puppeteer/node/cli.js -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/@puppeteer/browsers/lib/esm/package.json: -------------------------------------------------------------------------------- 1 | {"type": "module"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/cheerio-select/lib/esm/package.json: -------------------------------------------------------------------------------- 1 | {"type":"module"} 2 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/debug/node.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./src/node'); 2 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/dom-serializer/lib/esm/package.json: -------------------------------------------------------------------------------- 1 | {"type":"module"} 2 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/domelementtype/lib/esm/package.json: -------------------------------------------------------------------------------- 1 | {"type":"module"} 2 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/nodemon/lib/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./nodemon'); -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/tslib/modules/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/tslib/tslib.es6.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/yargs/build/lib/typings/yargs-parser-types.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/formdata-node/lib/esm/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } 4 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/bare-fs/promises.js: -------------------------------------------------------------------------------- 1 | module.exports = require('.').promises 2 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/nodemon/.prettierrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true 3 | } 4 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/yargs/helpers/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "commonjs" 3 | } 4 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/@types/node/globals.global.d.ts: -------------------------------------------------------------------------------- 1 | declare var global: typeof globalThis; 2 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/charenc/README.js: -------------------------------------------------------------------------------- 1 | **enc** provides crypto character encoding utilities. 2 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/digest-fetch/.npmignore: -------------------------------------------------------------------------------- 1 | !.gitignore 2 | node_modules 3 | packing 4 | 5 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/form-data-encoder/lib/cjs/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "commonjs" 3 | } 4 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/form-data-encoder/lib/esm/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } 4 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/formdata-node/lib/cjs/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "commonjs" 3 | } 4 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/tr46/.npmignore: -------------------------------------------------------------------------------- 1 | scripts/ 2 | test/ 3 | 4 | !lib/mapping_table.json 5 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/debug/.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: SIAeZjKYlHK74rbcFvNHMUzjRiMpflxve 2 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/progress/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/node-progress'); 2 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/socks/typings/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './client/socksclient'; 2 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/zod/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./lib"; 2 | export as namespace Zod; 3 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/@types/node/ts4.8/globals.global.d.ts: -------------------------------------------------------------------------------- 1 | declare var global: typeof globalThis; 2 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/crypt/README.mkd: -------------------------------------------------------------------------------- 1 | **crypt** provides utilities for encryption and hashing 2 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/@types/node/globals.global.d.ts: -------------------------------------------------------------------------------- 1 | declare var global: typeof globalThis; 2 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/cheerio/lib/esm/types.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=types.js.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/cookie-signature/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | *.sock 5 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/cosmiconfig/dist/util.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=util.d.ts.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/css-select/lib/esm/types.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=types.js.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/domelementtype/readme.md: -------------------------------------------------------------------------------- 1 | All the types of nodes in htmlparser2's DOM. 2 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/pump/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: mafintosh 2 | tidelift: "npm/pump" 3 | -------------------------------------------------------------------------------- /assets/thumbnail.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/the-complete-javascript-course/HEAD/assets/thumbnail.jpg -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/hasown/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | 4 | "extends": "@ljharb", 5 | } 6 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/object-inspect/util.inspect.js: -------------------------------------------------------------------------------- 1 | module.exports = require('util').inspect; 2 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/parse5-htmlparser2-tree-adapter/dist/cjs/package.json: -------------------------------------------------------------------------------- 1 | {"type":"commonjs"} 2 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/require-directory/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.10 4 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/digest-fetch/.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": [ 3 | "@babel/preset-env" 4 | ] 5 | } 6 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/src/version.ts: -------------------------------------------------------------------------------- 1 | export const VERSION = '4.28.0'; // x-release-please-version 2 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/binary-extensions/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./binary-extensions.json'); 2 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/chromium-bidi/lib/esm/protocol/cdp.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=cdp.js.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/concat-map/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.4 4 | - 0.6 5 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/cosmiconfig/dist/Explorer.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=Explorer.d.ts.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/es-errors/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | 4 | "extends": "@ljharb", 5 | } 6 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/has-proto/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | 4 | "extends": "@ljharb", 5 | } 6 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/es-errors/index.d.ts: -------------------------------------------------------------------------------- 1 | declare const Error: ErrorConstructor; 2 | 3 | export = Error; 4 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/parse5/dist/tree-adapters/interface.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=interface.js.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/picomatch/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./lib/picomatch'); 4 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/balanced-match/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | tidelift: "npm/balanced-match" 2 | patreon: juliangruber 3 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/chromium-bidi/lib/esm/cdp/cdpMessage.js: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=cdpMessage.js.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/cosmiconfig/dist/ExplorerBase.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=ExplorerBase.d.ts.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/cosmiconfig/dist/ExplorerSync.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=ExplorerSync.d.ts.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/es-errors/uri.d.ts: -------------------------------------------------------------------------------- 1 | declare const URIError: URIErrorConstructor; 2 | 3 | export = URIError; 4 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/is-arrayish/.npmignore: -------------------------------------------------------------------------------- 1 | /coverage/ 2 | /test.js 3 | /test/ 4 | *.sw[a-p] 5 | /node_modules/ 6 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/pump/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | 5 | script: "npm test" 6 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/semver/preload.js: -------------------------------------------------------------------------------- 1 | // XXX remove in v8 or beyond 2 | module.exports = require('./index.js') 3 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/through/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.6 4 | - 0.8 5 | - "0.10" 6 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/unpipe/HISTORY.md: -------------------------------------------------------------------------------- 1 | 1.0.0 / 2015-06-14 2 | ================== 3 | 4 | * Initial release 5 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/md5/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 0.12 4 | - 4 5 | - 5 6 | - 6 7 | - 7 8 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/version.d.ts: -------------------------------------------------------------------------------- 1 | export declare const VERSION = "4.28.0"; 2 | //# sourceMappingURL=version.d.ts.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/es-errors/eval.d.ts: -------------------------------------------------------------------------------- 1 | declare const EvalError: EvalErrorConstructor; 2 | 3 | export = EvalError; 4 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/es-errors/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /** @type {import('.')} */ 4 | module.exports = Error; 5 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/es-errors/type.d.ts: -------------------------------------------------------------------------------- 1 | declare const TypeError: TypeErrorConstructor 2 | 3 | export = TypeError; 4 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/is-arrayish/.istanbul.yml: -------------------------------------------------------------------------------- 1 | instrumentation: 2 | excludes: 3 | - test.js 4 | - test/**/* 5 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/jsbn/test/es6-import.js: -------------------------------------------------------------------------------- 1 | import {BigInteger} from '../'; 2 | 3 | console.log(typeof BigInteger) 4 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/tar-stream/index.js: -------------------------------------------------------------------------------- 1 | exports.extract = require('./extract') 2 | exports.pack = require('./pack') 3 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/delayed-stream/Makefile: -------------------------------------------------------------------------------- 1 | SHELL := /bin/bash 2 | 3 | test: 4 | @./test/run.js 5 | 6 | .PHONY: test 7 | 8 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/formdata-node/lib/esm/isFunction.js: -------------------------------------------------------------------------------- 1 | export const isFunction = (value) => (typeof value === "function"); 2 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/_shims/auto/runtime.mjs: -------------------------------------------------------------------------------- 1 | export * from "../web-runtime.mjs"; 2 | //# sourceMappingURL=runtime.mjs.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/ast-types/types.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/es-errors/range.d.ts: -------------------------------------------------------------------------------- 1 | declare const RangeError: RangeErrorConstructor; 2 | 3 | export = RangeError; 4 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/es-errors/uri.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /** @type {import('./uri')} */ 4 | module.exports = URIError; 5 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/get-caller-file/index.d.ts: -------------------------------------------------------------------------------- 1 | declare const _default: (position?: number) => any; 2 | export = _default; 3 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/formdata-node/@type/isFunction.d.ts: -------------------------------------------------------------------------------- 1 | export declare const isFunction: (value: unknown) => value is Function; 2 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/_shims/auto/runtime-bun.mjs: -------------------------------------------------------------------------------- 1 | export * from "../bun-runtime.mjs"; 2 | //# sourceMappingURL=runtime-bun.mjs.map -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/_shims/auto/types-node.mjs: -------------------------------------------------------------------------------- 1 | export * from "../node-types.mjs"; 2 | //# sourceMappingURL=types-node.mjs.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/ast-types/def/babel.d.ts: -------------------------------------------------------------------------------- 1 | import { Fork } from "../types"; 2 | export default function (fork: Fork): void; 3 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/ast-types/def/core.d.ts: -------------------------------------------------------------------------------- 1 | import { Fork } from "../types"; 2 | export default function (fork: Fork): void; 3 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/ast-types/def/es2020.d.ts: -------------------------------------------------------------------------------- 1 | import { Fork } from "../types"; 2 | export default function (fork: Fork): void; 3 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/ast-types/def/es6.d.ts: -------------------------------------------------------------------------------- 1 | import { Fork } from "../types"; 2 | export default function (fork: Fork): void; 3 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/ast-types/def/es7.d.ts: -------------------------------------------------------------------------------- 1 | import { Fork } from "../types"; 2 | export default function (fork: Fork): void; 3 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/ast-types/def/flow.d.ts: -------------------------------------------------------------------------------- 1 | import { Fork } from "../types"; 2 | export default function (fork: Fork): void; 3 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/ast-types/def/jsx.d.ts: -------------------------------------------------------------------------------- 1 | import { Fork } from "../types"; 2 | export default function (fork: Fork): void; 3 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/ast-types/gen/builders.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/ast-types/gen/kinds.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/ast-types/gen/visitor.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/es-errors/eval.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /** @type {import('./eval')} */ 4 | module.exports = EvalError; 5 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/es-errors/syntax.d.ts: -------------------------------------------------------------------------------- 1 | declare const SyntaxError: SyntaxErrorConstructor; 2 | 3 | export = SyntaxError; 4 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/es-errors/type.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /** @type {import('./type')} */ 4 | module.exports = TypeError; 5 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/formdata-node/@type/deprecateConstructorEntries.d.ts: -------------------------------------------------------------------------------- 1 | export declare const deprecateConstructorEntries: () => void; 2 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/formdata-node/@type/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./FormData"; 2 | export * from "./Blob"; 3 | export * from "./File"; 4 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/formdata-node/lib/cjs/BlobPart.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/_shims/auto/runtime-node.mjs: -------------------------------------------------------------------------------- 1 | export * from "../node-runtime.mjs"; 2 | //# sourceMappingURL=runtime-node.mjs.map -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/version.mjs: -------------------------------------------------------------------------------- 1 | export const VERSION = '4.28.0'; // x-release-please-version 2 | //# sourceMappingURL=version.mjs.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/ast-types/def/babel-core.d.ts: -------------------------------------------------------------------------------- 1 | import { Fork } from "../types"; 2 | export default function (fork: Fork): void; 3 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/ast-types/def/esprima.d.ts: -------------------------------------------------------------------------------- 1 | import { Fork } from "../types"; 2 | export default function (fork: Fork): void; 3 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/ast-types/def/typescript.d.ts: -------------------------------------------------------------------------------- 1 | import { Fork } from "../types"; 2 | export default function (fork: Fork): void; 3 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/bare-stream/promises.js: -------------------------------------------------------------------------------- 1 | const stream = require('streamx') 2 | 3 | exports.pipeline = stream.pipelinePromise 4 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/es-errors/range.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /** @type {import('./range')} */ 4 | module.exports = RangeError; 5 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/es-errors/ref.d.ts: -------------------------------------------------------------------------------- 1 | declare const ReferenceError: ReferenceErrorConstructor; 2 | 3 | export = ReferenceError; 4 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/es-errors/ref.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /** @type {import('./ref')} */ 4 | module.exports = ReferenceError; 5 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/es-errors/syntax.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | /** @type {import('./syntax')} */ 4 | module.exports = SyntaxError; 5 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/supports-color/browser.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = { 3 | stdout: false, 4 | stderr: false 5 | }; 6 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/zod/lib/helpers/enumUtil.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/zod/lib/helpers/partialUtil.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/zod/lib/helpers/typeAliases.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/form-data-encoder/lib/cjs/FileLike.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/node-domexception/.history/test_20210527205957.js: -------------------------------------------------------------------------------- 1 | require('./index.js') 2 | 3 | console.log(DOMException.INDEX_SIZE_ERR) 4 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/node-domexception/.history/test_20210527210021.js: -------------------------------------------------------------------------------- 1 | const e = require('./index.js') 2 | 3 | console.log(e.INDEX_SIZE_ERR) 4 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/_shims/auto/types.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Disclaimer: modules in _shims aren't intended to be imported by SDK users. 3 | */ 4 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/_shims/node-types.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Disclaimer: modules in _shims aren't intended to be imported by SDK users. 3 | */ 4 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/_shims/web-types.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Disclaimer: modules in _shims aren't intended to be imported by SDK users. 3 | */ 4 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/_shims/web-types.mjs: -------------------------------------------------------------------------------- 1 | /** 2 | * Disclaimer: modules in _shims aren't intended to be imported by SDK users. 3 | */ 4 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/lib/ChatCompletionRunFunctions.test.d.ts: -------------------------------------------------------------------------------- 1 | export {}; 2 | //# sourceMappingURL=ChatCompletionRunFunctions.test.d.ts.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/ast-types/def/es-proposals.d.ts: -------------------------------------------------------------------------------- 1 | import { Fork } from "../types"; 2 | export default function (fork: Fork): void; 3 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/basic-ftp/dist/StringEncoding.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/src/generated/version.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * @internal 3 | */ 4 | export const packageVersion = '23.5.2'; 5 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/form-data-encoder/lib/cjs/FormDataLike.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/formdata-node/lib/esm/index.js: -------------------------------------------------------------------------------- 1 | export * from "./FormData.js"; 2 | export * from "./Blob.js"; 3 | export * from "./File.js"; 4 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/formdata-node/lib/esm/isBlob.js: -------------------------------------------------------------------------------- 1 | import { Blob } from "./Blob.js"; 2 | export const isBlob = (value) => value instanceof Blob; 3 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/formdata-node/lib/esm/isFile.js: -------------------------------------------------------------------------------- 1 | import { File } from "./File.js"; 2 | export const isFile = (value) => value instanceof File; 3 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/_shims/auto/types.mjs: -------------------------------------------------------------------------------- 1 | /** 2 | * Disclaimer: modules in _shims aren't intended to be imported by SDK users. 3 | */ 4 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/_shims/manual-types.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Disclaimer: modules in _shims aren't intended to be imported by SDK users. 3 | */ 4 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/_shims/manual-types.mjs: -------------------------------------------------------------------------------- 1 | /** 2 | * Disclaimer: modules in _shims aren't intended to be imported by SDK users. 3 | */ 4 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/_shims/node-types.mjs: -------------------------------------------------------------------------------- 1 | /** 2 | * Disclaimer: modules in _shims aren't intended to be imported by SDK users. 3 | */ 4 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/src/_shims/auto/types.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Disclaimer: modules in _shims aren't intended to be imported by SDK users. 3 | */ 4 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/src/_shims/auto/types.mjs: -------------------------------------------------------------------------------- 1 | /** 2 | * Disclaimer: modules in _shims aren't intended to be imported by SDK users. 3 | */ 4 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/src/_shims/node-types.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Disclaimer: modules in _shims aren't intended to be imported by SDK users. 3 | */ 4 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/src/_shims/node-types.mjs: -------------------------------------------------------------------------------- 1 | /** 2 | * Disclaimer: modules in _shims aren't intended to be imported by SDK users. 3 | */ 4 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/src/_shims/web-types.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Disclaimer: modules in _shims aren't intended to be imported by SDK users. 3 | */ 4 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/src/_shims/web-types.mjs: -------------------------------------------------------------------------------- 1 | /** 2 | * Disclaimer: modules in _shims aren't intended to be imported by SDK users. 3 | */ 4 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/hasown/index.d.ts: -------------------------------------------------------------------------------- 1 | declare function hasOwn(o: T, p: PropertyKey): p is keyof T; 2 | 3 | export = hasOwn; -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/nodemon/doc/cli/usage.txt: -------------------------------------------------------------------------------- 1 | Usage: nodemon [nodemon options] [script.js] [args] 2 | 3 | See "nodemon --help" for more. 4 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/cjs/third_party/mitt/mitt.d.ts: -------------------------------------------------------------------------------- 1 | export * from 'mitt'; 2 | export { default as default } from 'mitt'; 3 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/esm/third_party/mitt/mitt.d.ts: -------------------------------------------------------------------------------- 1 | export * from 'mitt'; 2 | export { default as default } from 'mitt'; 3 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/form-data/lib/browser.js: -------------------------------------------------------------------------------- 1 | /* eslint-env browser */ 2 | module.exports = typeof self == 'object' ? self.FormData : window.FormData; 3 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/formdata-node/@type/isBlob.d.ts: -------------------------------------------------------------------------------- 1 | import { Blob } from "./Blob"; 2 | export declare const isBlob: (value: unknown) => value is Blob; 3 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/node-domexception/.history/README_20210527203617.md: -------------------------------------------------------------------------------- 1 | # node-domexception 2 | An implementation of the DOMException class from NodeJS 3 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/resources/shared.mjs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec by Stainless. 2 | export {}; 3 | //# sourceMappingURL=shared.mjs.map -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/src/_shims/manual-types.js: -------------------------------------------------------------------------------- 1 | /** 2 | * Disclaimer: modules in _shims aren't intended to be imported by SDK users. 3 | */ 4 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/src/_shims/manual-types.mjs: -------------------------------------------------------------------------------- 1 | /** 2 | * Disclaimer: modules in _shims aren't intended to be imported by SDK users. 3 | */ 4 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/degenerator/dist/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from './degenerator'; 2 | export * from './compile'; 3 | //# sourceMappingURL=index.d.ts.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/es-define-property/index.d.ts: -------------------------------------------------------------------------------- 1 | declare const defineProperty: false | typeof Object.defineProperty; 2 | 3 | export = defineProperty; -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/nodemon/lib/monitor/index.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | run: require('./run'), 3 | watch: require('./watch').watch, 4 | }; 5 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/src/templates/version.ts.tmpl: -------------------------------------------------------------------------------- 1 | /** 2 | * @internal 3 | */ 4 | export const packageVersion = 'PACKAGE_VERSION'; 5 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/setprototypeof/index.d.ts: -------------------------------------------------------------------------------- 1 | declare function setPrototypeOf(o: any, proto: object | null): any; 2 | export = setPrototypeOf; 3 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/side-channel/README.md: -------------------------------------------------------------------------------- 1 | # side-channel 2 | Store information about any JS value in a side channel. Uses WeakMap if available. 3 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/smart-buffer/.prettierrc.yaml: -------------------------------------------------------------------------------- 1 | parser: typescript 2 | printWidth: 120 3 | tabWidth: 2 4 | singleQuote: true 5 | trailingComma: none -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/zod/lib/index.d.ts: -------------------------------------------------------------------------------- 1 | import * as z from "./external"; 2 | export * from "./external"; 3 | export { z }; 4 | export default z; 5 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/form-data-encoder/lib/esm/util/isFunction.js: -------------------------------------------------------------------------------- 1 | const isFunction = (value) => (typeof value === "function"); 2 | export default isFunction; 3 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/cosmiconfig/dist/types.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"types.js","sourceRoot":"","sources":["../src/types.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/cosmiconfig/dist/util.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"util.d.ts","sourceRoot":"","sources":["../src/util.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/debug/.npmignore: -------------------------------------------------------------------------------- 1 | support 2 | test 3 | examples 4 | example 5 | *.sock 6 | dist 7 | yarn.lock 8 | coverage 9 | bower.json 10 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/formdata-node/@type/isPlainObject.d.ts: -------------------------------------------------------------------------------- 1 | declare function isPlainObject(value: unknown): value is object; 2 | export default isPlainObject; 3 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/cheerio/lib/types.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | //# sourceMappingURL=types.js.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/zod/lib/locales/en.d.ts: -------------------------------------------------------------------------------- 1 | import { ZodErrorMap } from "../ZodError"; 2 | declare const errorMap: ZodErrorMap; 3 | export default errorMap; 4 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/form-data-encoder/@type/util/isPlainObject.d.ts: -------------------------------------------------------------------------------- 1 | declare function isPlainObject(value: unknown): value is object; 2 | export default isPlainObject; 3 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/formdata-node/@type/BlobPart.d.ts: -------------------------------------------------------------------------------- 1 | import type { Blob, BlobLike } from "./Blob"; 2 | export declare type BlobPart = BlobLike | Blob | Uint8Array; 3 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/binary-extensions/binary-extensions.json.d.ts: -------------------------------------------------------------------------------- 1 | declare const binaryExtensionsJson: readonly string[]; 2 | 3 | export = binaryExtensionsJson; 4 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/cosmiconfig/dist/Explorer.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"Explorer.d.ts","sourceRoot":"","sources":["../src/Explorer.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/cosmiconfig/dist/types.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | //# sourceMappingURL=types.js.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/css-select/lib/types.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | //# sourceMappingURL=types.js.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/queue-tick/queue-microtask.js: -------------------------------------------------------------------------------- 1 | module.exports = typeof queueMicrotask === 'function' ? queueMicrotask : (fn) => Promise.resolve().then(fn) 2 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/semver/functions/gt.js: -------------------------------------------------------------------------------- 1 | const compare = require('./compare') 2 | const gt = (a, b, loose) => compare(a, b, loose) > 0 3 | module.exports = gt 4 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/semver/functions/lt.js: -------------------------------------------------------------------------------- 1 | const compare = require('./compare') 2 | const lt = (a, b, loose) => compare(a, b, loose) < 0 3 | module.exports = lt 4 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/css-what/lib/es/index.js: -------------------------------------------------------------------------------- 1 | export * from "./types"; 2 | export { isTraversal, parse } from "./parse"; 3 | export { stringify } from "./stringify"; 4 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/src/templates/README.md: -------------------------------------------------------------------------------- 1 | # Templated Artifacts 2 | 3 | These files are generated as TypeScript files in the `src/generated` folder. 4 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/semver/functions/eq.js: -------------------------------------------------------------------------------- 1 | const compare = require('./compare') 2 | const eq = (a, b, loose) => compare(a, b, loose) === 0 3 | module.exports = eq 4 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/semver/functions/gte.js: -------------------------------------------------------------------------------- 1 | const compare = require('./compare') 2 | const gte = (a, b, loose) => compare(a, b, loose) >= 0 3 | module.exports = gte 4 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/semver/functions/lte.js: -------------------------------------------------------------------------------- 1 | const compare = require('./compare') 2 | const lte = (a, b, loose) => compare(a, b, loose) <= 0 3 | module.exports = lte 4 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/semver/functions/neq.js: -------------------------------------------------------------------------------- 1 | const compare = require('./compare') 2 | const neq = (a, b, loose) => compare(a, b, loose) !== 0 3 | module.exports = neq 4 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/sprintf-js/dist/.gitattributes: -------------------------------------------------------------------------------- 1 | #ignore all generated files from diff 2 | #also skip line ending check 3 | *.js -diff -text 4 | *.map -diff -text 5 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/utils-merge/.npmignore: -------------------------------------------------------------------------------- 1 | CONTRIBUTING.md 2 | Makefile 3 | docs/ 4 | examples/ 5 | reports/ 6 | test/ 7 | 8 | .jshintrc 9 | .travis.yml 10 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/_shims/auto/runtime.mjs.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"runtime.mjs","sourceRoot":"","sources":["../../src/_shims/auto/runtime.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/resources/shared.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"shared.js","sourceRoot":"","sources":["../src/resources/shared.ts"],"names":[],"mappings":";AAAA,qDAAqD"} -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/resources/shared.mjs.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"shared.mjs","sourceRoot":"","sources":["../src/resources/shared.ts"],"names":[],"mappings":"AAAA,qDAAqD"} -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/version.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"version.d.ts","sourceRoot":"","sources":["src/version.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,OAAO,WAAW,CAAC"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/chromium-bidi/lib/cjs/protocol/cdp.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | //# sourceMappingURL=cdp.js.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/chromium-bidi/lib/cjs/protocol/cdp.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"cdp.js","sourceRoot":"","sources":["../../../src/protocol/cdp.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/chromium-bidi/lib/esm/protocol/cdp.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"cdp.js","sourceRoot":"","sources":["../../../src/protocol/cdp.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/pstree.remy/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | cache: 3 | directories: 4 | - ~/.npm 5 | notifications: 6 | email: false 7 | node_js: 8 | - '8' 9 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/socks/build/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,uDAAqC"} -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/formdata-node/lib/node-domexception.d.ts: -------------------------------------------------------------------------------- 1 | declare class DOMException { 2 | constructor(message: string, name: string) 3 | } 4 | 5 | export default DOMException 6 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/_shims/auto/types-node.mjs.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"types-node.mjs","sourceRoot":"","sources":["../../src/_shims/auto/types-node.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/resources/beta/chat/index.d.ts: -------------------------------------------------------------------------------- 1 | export { Chat } from "./chat.js"; 2 | export { Completions } from "./completions.js"; 3 | //# sourceMappingURL=index.d.ts.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/cosmiconfig/dist/ExplorerBase.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"ExplorerBase.d.ts","sourceRoot":"","sources":["../src/ExplorerBase.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/cosmiconfig/dist/ExplorerSync.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"ExplorerSync.d.ts","sourceRoot":"","sources":["../src/ExplorerSync.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/entities/lib/generated/decode-data-html.d.ts: -------------------------------------------------------------------------------- 1 | declare const _default: Uint16Array; 2 | export default _default; 3 | //# sourceMappingURL=decode-data-html.d.ts.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/entities/lib/generated/decode-data-xml.d.ts: -------------------------------------------------------------------------------- 1 | declare const _default: Uint16Array; 2 | export default _default; 3 | //# sourceMappingURL=decode-data-xml.d.ts.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/fsevents/fsevents.node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/the-complete-javascript-course/HEAD/projects/stocks_data_api/node_modules/fsevents/fsevents.node -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/cjs/third_party/parsel-js/parsel-js.d.ts: -------------------------------------------------------------------------------- 1 | export { tokenize, TOKENS, stringify } from 'parsel-js'; 2 | export type * from 'parsel-js'; 3 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/esm/third_party/parsel-js/parsel-js.d.ts: -------------------------------------------------------------------------------- 1 | export { tokenize, TOKENS, stringify } from 'parsel-js'; 2 | export type * from 'parsel-js'; 3 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/semver/functions/major.js: -------------------------------------------------------------------------------- 1 | const SemVer = require('../classes/semver') 2 | const major = (a, loose) => new SemVer(a, loose).major 3 | module.exports = major 4 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/semver/functions/minor.js: -------------------------------------------------------------------------------- 1 | const SemVer = require('../classes/semver') 2 | const minor = (a, loose) => new SemVer(a, loose).minor 3 | module.exports = minor 4 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/semver/functions/patch.js: -------------------------------------------------------------------------------- 1 | const SemVer = require('../classes/semver') 2 | const patch = (a, loose) => new SemVer(a, loose).patch 3 | module.exports = patch 4 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/semver/functions/rcompare.js: -------------------------------------------------------------------------------- 1 | const compare = require('./compare') 2 | const rcompare = (a, b, loose) => compare(b, a, loose) 3 | module.exports = rcompare 4 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/_shims/auto/runtime-bun.mjs.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"runtime-bun.mjs","sourceRoot":"","sources":["../../src/_shims/auto/runtime-bun.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/_shims/node-runtime.d.ts: -------------------------------------------------------------------------------- 1 | import { type Shims } from "./registry.js"; 2 | export declare function getRuntime(): Shims; 3 | //# sourceMappingURL=node-runtime.d.ts.map -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/src/_shims/auto/runtime.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Disclaimer: modules in _shims aren't intended to be imported by SDK users. 3 | */ 4 | export * from '../web-runtime'; 5 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/src/_shims/auto/types-node.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Disclaimer: modules in _shims aren't intended to be imported by SDK users. 3 | */ 4 | export * from '../node-types'; 5 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/version.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"version.js","sourceRoot":"","sources":["src/version.ts"],"names":[],"mappings":";;;AAAa,QAAA,OAAO,GAAG,QAAQ,CAAC,CAAC,2BAA2B"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/bare-os/lib/constants.js: -------------------------------------------------------------------------------- 1 | const binding = require('../binding') 2 | 3 | module.exports = { 4 | signals: binding.signals, 5 | errnos: binding.errnos 6 | } 7 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/chromium-bidi/lib/cjs/cdp/cdpMessage.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | //# sourceMappingURL=cdpMessage.js.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/chromium-bidi/lib/cjs/cdp/cdpMessage.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"cdpMessage.js","sourceRoot":"","sources":["../../../src/cdp/cdpMessage.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/chromium-bidi/lib/esm/cdp/cdpMessage.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"cdpMessage.js","sourceRoot":"","sources":["../../../src/cdp/cdpMessage.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/entities/lib/esm/generated/decode-data-html.d.ts: -------------------------------------------------------------------------------- 1 | declare const _default: Uint16Array; 2 | export default _default; 3 | //# sourceMappingURL=decode-data-html.d.ts.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/entities/lib/esm/generated/decode-data-xml.d.ts: -------------------------------------------------------------------------------- 1 | declare const _default: Uint16Array; 2 | export default _default; 3 | //# sourceMappingURL=decode-data-xml.d.ts.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/parse5/dist/cjs/tree-adapters/interface.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | //# sourceMappingURL=interface.js.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/esm/puppeteer/generated/version.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @internal 3 | */ 4 | export const packageVersion = '23.5.2'; 5 | //# sourceMappingURL=version.js.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/semver/functions/compare-loose.js: -------------------------------------------------------------------------------- 1 | const compare = require('./compare') 2 | const compareLoose = (a, b) => compare(a, b, true) 3 | module.exports = compareLoose 4 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/socks/docs/index.md: -------------------------------------------------------------------------------- 1 | # Documentation 2 | 3 | - [API Reference](https://github.com/JoshGlazebrook/socks#api-reference) 4 | 5 | - [Code Examples](./examples/index.md) -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/_shims/auto/runtime-node.mjs.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"runtime-node.mjs","sourceRoot":"","sources":["../../src/_shims/auto/runtime-node.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/src/_shims/auto/runtime-bun.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Disclaimer: modules in _shims aren't intended to be imported by SDK users. 3 | */ 4 | export * from '../bun-runtime'; 5 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/src/_shims/auto/runtime-node.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Disclaimer: modules in _shims aren't intended to be imported by SDK users. 3 | */ 4 | export * from '../node-runtime'; 5 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/undici-types/header.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * The header type declaration of `undici`. 3 | */ 4 | export type IncomingHttpHeaders = Record; 5 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/@puppeteer/browsers/src/tsconfig.esm.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../../tsconfig.base.json", 3 | "compilerOptions": { 4 | "outDir": "../lib/esm" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/boolbase/index.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | trueFunc: function trueFunc(){ 3 | return true; 4 | }, 5 | falseFunc: function falseFunc(){ 6 | return false; 7 | } 8 | }; -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/function-bind/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var implementation = require('./implementation'); 4 | 5 | module.exports = Function.prototype.bind || implementation; 6 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/nodemon/bin/windows-kill.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/the-complete-javascript-course/HEAD/projects/stocks_data_api/node_modules/nodemon/bin/windows-kill.exe -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer/src/tsconfig.esm.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../../tsconfig.base.json", 3 | "compilerOptions": { 4 | "outDir": "../lib/esm/puppeteer" 5 | } 6 | } 7 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/socks/.prettierrc.yaml: -------------------------------------------------------------------------------- 1 | parser: typescript 2 | printWidth: 80 3 | tabWidth: 2 4 | singleQuote: true 5 | trailingComma: all 6 | arrowParens: always 7 | bracketSpacing: false -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/zod/lib/benchmarks/ipv4.d.ts: -------------------------------------------------------------------------------- 1 | import Benchmark from "benchmark"; 2 | declare const _default: { 3 | suites: Benchmark.Suite[]; 4 | }; 5 | export default _default; 6 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/zod/lib/benchmarks/object.d.ts: -------------------------------------------------------------------------------- 1 | import Benchmark from "benchmark"; 2 | declare const _default: { 3 | suites: Benchmark.Suite[]; 4 | }; 5 | export default _default; 6 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/zod/lib/benchmarks/string.d.ts: -------------------------------------------------------------------------------- 1 | import Benchmark from "benchmark"; 2 | declare const _default: { 3 | suites: Benchmark.Suite[]; 4 | }; 5 | export default _default; 6 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/zod/lib/benchmarks/union.d.ts: -------------------------------------------------------------------------------- 1 | import Benchmark from "benchmark"; 2 | declare const _default: { 3 | suites: Benchmark.Suite[]; 4 | }; 5 | export default _default; 6 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/version.mjs.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"version.mjs","sourceRoot":"","sources":["src/version.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,MAAM,OAAO,GAAG,QAAQ,CAAC,CAAC,2BAA2B"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/@puppeteer/browsers/lib/cjs/main-cli.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"main-cli.d.ts","sourceRoot":"","sources":["../../src/main-cli.ts"],"names":[],"mappings":";AAEA;;;;GAIG"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/@puppeteer/browsers/lib/esm/main-cli.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"main-cli.d.ts","sourceRoot":"","sources":["../../src/main-cli.ts"],"names":[],"mappings":";AAEA;;;;GAIG"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/bare-os/README.md: -------------------------------------------------------------------------------- 1 | # bare-os 2 | 3 | Operating system utilities for Javascript. 4 | 5 | ``` 6 | npm i bare-os 7 | ``` 8 | 9 | ## License 10 | 11 | Apache-2.0 12 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/degenerator/dist/index.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,eAAe,CAAC;AAC9B,cAAc,WAAW,CAAC"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/degenerator/dist/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,gDAA8B;AAC9B,4CAA0B"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/jsbn/example.js: -------------------------------------------------------------------------------- 1 | (function () { 2 | var BigInteger = jsbn.BigInteger; 3 | var a = new BigInteger('91823918239182398123'); 4 | console.log(a.bitLength()); 5 | }()); 6 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/object-inspect/example/circular.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var inspect = require('../'); 4 | var obj = { a: 1, b: [3, 4] }; 5 | obj.c = obj; 6 | console.log(inspect(obj)); 7 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/object-inspect/example/fn.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var inspect = require('../'); 4 | var obj = [1, 2, function f(n) { return n + 5; }, 4]; 5 | console.log(inspect(obj)); 6 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer/lib/cjs/puppeteer/node/cli.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../../../../src/node/cli.ts"],"names":[],"mappings":";AAEA;;;;GAIG"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer/lib/esm/puppeteer/node/cli.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"cli.d.ts","sourceRoot":"","sources":["../../../../src/node/cli.ts"],"names":[],"mappings":";AAEA;;;;GAIG"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/semver/classes/index.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | SemVer: require('./semver.js'), 3 | Range: require('./range.js'), 4 | Comparator: require('./comparator.js'), 5 | } 6 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/set-function-length/env.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"env.d.ts","sourceRoot":"","sources":["env.js"],"names":[],"mappings":"AAaA,oDAAsE;AAEtE,gDAA8D;AAN9D,qDAA2E;AAE3E,iDAAmE"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/undici-types/header.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * The header type declaration of `undici`. 3 | */ 4 | export type IncomingHttpHeaders = Record; 5 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/yargs/browser.d.ts: -------------------------------------------------------------------------------- 1 | import {YargsFactory} from './build/lib/yargs-factory'; 2 | 3 | declare const Yargs: ReturnType; 4 | 5 | export default Yargs; 6 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/zod/lib/benchmarks/datetime.d.ts: -------------------------------------------------------------------------------- 1 | import Benchmark from "benchmark"; 2 | declare const _default: { 3 | suites: Benchmark.Suite[]; 4 | }; 5 | export default _default; 6 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/zod/lib/benchmarks/primitives.d.ts: -------------------------------------------------------------------------------- 1 | import Benchmark from "benchmark"; 2 | declare const _default: { 3 | suites: Benchmark.Suite[]; 4 | }; 5 | export default _default; 6 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/zod/lib/benchmarks/realworld.d.ts: -------------------------------------------------------------------------------- 1 | import Benchmark from "benchmark"; 2 | declare const _default: { 3 | suites: Benchmark.Suite[]; 4 | }; 5 | export default _default; 6 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/basic-ftp/dist/StringEncoding.d.ts: -------------------------------------------------------------------------------- 1 | export type StringEncoding = "utf8" | "ascii" | "utf-8" | "utf16le" | "ucs2" | "ucs-2" | "base64" | "latin1" | "binary" | "hex" | undefined; 2 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/chromium-bidi/lib/esm/utils/result.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"result.js","sourceRoot":"","sources":["../../../src/utils/result.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;GAeG"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/cosmiconfig/dist/canUseDynamicImport.d.ts: -------------------------------------------------------------------------------- 1 | declare function canUseDynamicImport(): boolean; 2 | export { canUseDynamicImport }; 3 | //# sourceMappingURL=canUseDynamicImport.d.ts.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/cjs/puppeteer/generated/version.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * @internal 3 | */ 4 | export declare const packageVersion = "23.5.2"; 5 | //# sourceMappingURL=version.d.ts.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/esm/puppeteer/generated/version.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * @internal 3 | */ 4 | export declare const packageVersion = "23.5.2"; 5 | //# sourceMappingURL=version.d.ts.map -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/agentkeepalive/browser.js: -------------------------------------------------------------------------------- 1 | module.exports = noop; 2 | module.exports.HttpsAgent = noop; 3 | 4 | // Noop function for browser since native api's don't use agents. 5 | function noop () {} 6 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/_shims/auto/runtime.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"runtime.d.ts","sourceRoot":"","sources":["../../src/_shims/auto/runtime.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,cAAc,gBAAgB,CAAC"} -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/src/resources/beta/chat/index.ts: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec by Stainless. 2 | 3 | export { Chat } from './chat'; 4 | export { Completions } from './completions'; 5 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/chromium-bidi/lib/cjs/utils/result.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"result.js","sourceRoot":"","sources":["../../../src/utils/result.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;GAeG"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/css-what/lib/es/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./types"; 2 | export { isTraversal, parse } from "./parse"; 3 | export { stringify } from "./stringify"; 4 | //# sourceMappingURL=index.d.ts.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/picocolors/picocolors.d.ts: -------------------------------------------------------------------------------- 1 | import { Colors } from "./types" 2 | 3 | declare const picocolors: Colors & { createColors: (enabled?: boolean) => Colors } 4 | 5 | export = picocolors 6 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/cjs/puppeteer/common/types.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"types.js","sourceRoot":"","sources":["../../../../src/common/types.ts"],"names":[],"mappings":";AAAA;;;;GAIG"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/esm/puppeteer/common/Cookie.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"Cookie.js","sourceRoot":"","sources":["../../../../src/common/Cookie.ts"],"names":[],"mappings":"AAAA;;;;GAIG"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/esm/puppeteer/common/types.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"types.js","sourceRoot":"","sources":["../../../../src/common/types.ts"],"names":[],"mappings":"AAAA;;;;GAIG"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/semver/functions/sort.js: -------------------------------------------------------------------------------- 1 | const compareBuild = require('./compare-build') 2 | const sort = (list, loose) => list.sort((a, b) => compareBuild(a, b, loose)) 3 | module.exports = sort 4 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/set-function-length/index.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.js"],"names":[],"mappings":";;;+DAYkD,MAAM,UAAU,OAAO;;sBAFjD,OAAO,EAAE,KAAK,OAAO"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/zod/lib/benchmarks/discriminatedUnion.d.ts: -------------------------------------------------------------------------------- 1 | import Benchmark from "benchmark"; 2 | declare const _default: { 3 | suites: Benchmark.Suite[]; 4 | }; 5 | export default _default; 6 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/_shims/auto/runtime.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"runtime.js","sourceRoot":"","sources":["../../src/_shims/auto/runtime.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA;;GAEG;AACH,oDAA+B"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/chromium-bidi/lib/cjs/utils/transport.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"transport.js","sourceRoot":"","sources":["../../../src/utils/transport.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;GAeG"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/chromium-bidi/lib/esm/utils/transport.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"transport.js","sourceRoot":"","sources":["../../../src/utils/transport.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;GAeG"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/cjs/puppeteer/common/Cookie.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"Cookie.js","sourceRoot":"","sources":["../../../../src/common/Cookie.ts"],"names":[],"mappings":";AAAA;;;;GAIG"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/semver/functions/rsort.js: -------------------------------------------------------------------------------- 1 | const compareBuild = require('./compare-build') 2 | const rsort = (list, loose) => list.sort((a, b) => compareBuild(b, a, loose)) 3 | module.exports = rsort 4 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/strip-ansi/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | const ansiRegex = require('ansi-regex'); 3 | 4 | module.exports = string => typeof string === 'string' ? string.replace(ansiRegex(), '') : string; 5 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/asynckit/index.js: -------------------------------------------------------------------------------- 1 | module.exports = 2 | { 3 | parallel : require('./parallel.js'), 4 | serial : require('./serial.js'), 5 | serialOrdered : require('./serialOrdered.js') 6 | }; 7 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/digest-fetch/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "node": true, 4 | "es6": true 5 | }, 6 | "parserOptions": { 7 | "ecmaVersion": 2017 8 | }, 9 | "rules": { 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/formdata-node/node_modules/web-streams-polyfill/polyfill/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "web-streams-polyfill", 3 | "main": "../dist/polyfill.js", 4 | "types": "../types/polyfill.d.ts" 5 | } 6 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/_shims/auto/types-node.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"types-node.d.ts","sourceRoot":"","sources":["../../src/_shims/auto/types-node.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,cAAc,eAAe,CAAC"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/bare-fs/prebuilds/darwin-x64/bare-fs.bare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/the-complete-javascript-course/HEAD/projects/stocks_data_api/node_modules/bare-fs/prebuilds/darwin-x64/bare-fs.bare -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/bare-fs/prebuilds/ios-arm64/bare-fs.bare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/the-complete-javascript-course/HEAD/projects/stocks_data_api/node_modules/bare-fs/prebuilds/ios-arm64/bare-fs.bare -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/bare-fs/prebuilds/linux-x64/bare-fs.bare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/the-complete-javascript-course/HEAD/projects/stocks_data_api/node_modules/bare-fs/prebuilds/linux-x64/bare-fs.bare -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/bare-fs/prebuilds/win32-x64/bare-fs.bare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/the-complete-javascript-course/HEAD/projects/stocks_data_api/node_modules/bare-fs/prebuilds/win32-x64/bare-fs.bare -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/bare-os/prebuilds/darwin-x64/bare-os.bare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/the-complete-javascript-course/HEAD/projects/stocks_data_api/node_modules/bare-os/prebuilds/darwin-x64/bare-os.bare -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/bare-os/prebuilds/ios-arm64/bare-os.bare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/the-complete-javascript-course/HEAD/projects/stocks_data_api/node_modules/bare-os/prebuilds/ios-arm64/bare-os.bare -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/bare-os/prebuilds/linux-x64/bare-os.bare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/the-complete-javascript-course/HEAD/projects/stocks_data_api/node_modules/bare-os/prebuilds/linux-x64/bare-os.bare -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/bare-os/prebuilds/win32-x64/bare-os.bare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/the-complete-javascript-course/HEAD/projects/stocks_data_api/node_modules/bare-os/prebuilds/win32-x64/bare-os.bare -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/base64-js/index.d.ts: -------------------------------------------------------------------------------- 1 | export function byteLength(b64: string): number; 2 | export function toByteArray(b64: string): Uint8Array; 3 | export function fromByteArray(uint8: Uint8Array): string; 4 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/basic-ftp/dist/parseList.d.ts: -------------------------------------------------------------------------------- 1 | import { FileInfo } from "./FileInfo"; 2 | /** 3 | * Parse raw directory listing. 4 | */ 5 | export declare function parseList(rawList: string): FileInfo[]; 6 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/css-what/lib/commonjs/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./types"; 2 | export { isTraversal, parse } from "./parse"; 3 | export { stringify } from "./stringify"; 4 | //# sourceMappingURL=index.d.ts.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/mime/cli.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | var mime = require('./mime.js'); 4 | var file = process.argv[2]; 5 | var type = mime.lookup(file); 6 | 7 | process.stdout.write(type + '\n'); 8 | 9 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/cjs/puppeteer/api/Environment.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"Environment.js","sourceRoot":"","sources":["../../../../src/api/Environment.ts"],"names":[],"mappings":";AAAA;;;;GAIG"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/cjs/puppeteer/common/Viewport.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"Viewport.js","sourceRoot":"","sources":["../../../../src/common/Viewport.ts"],"names":[],"mappings":";AAAA;;;;GAIG"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/esm/puppeteer/api/Environment.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"Environment.js","sourceRoot":"","sources":["../../../../src/api/Environment.ts"],"names":[],"mappings":"AAAA;;;;GAIG"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/esm/puppeteer/common/Viewport.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"Viewport.js","sourceRoot":"","sources":["../../../../src/common/Viewport.ts"],"names":[],"mappings":"AAAA;;;;GAIG"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/zod/lib/helpers/typeAliases.d.ts: -------------------------------------------------------------------------------- 1 | export declare type Primitive = string | number | symbol | bigint | boolean | null | undefined; 2 | export declare type Scalars = Primitive | Primitive[]; 3 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/_shims/auto/runtime-bun.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"runtime-bun.d.ts","sourceRoot":"","sources":["../../src/_shims/auto/runtime-bun.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,cAAc,gBAAgB,CAAC"} -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/_shims/auto/runtime-bun.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"runtime-bun.js","sourceRoot":"","sources":["../../src/_shims/auto/runtime-bun.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA;;GAEG;AACH,oDAA+B"} -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/_shims/auto/runtime-node.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"runtime-node.d.ts","sourceRoot":"","sources":["../../src/_shims/auto/runtime-node.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,cAAc,iBAAiB,CAAC"} -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/_shims/auto/runtime.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Disclaimer: modules in _shims aren't intended to be imported by SDK users. 3 | */ 4 | export * from "../web-runtime.js"; 5 | //# sourceMappingURL=runtime.d.ts.map -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/_shims/auto/types-node.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"types-node.js","sourceRoot":"","sources":["../../src/_shims/auto/types-node.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA;;GAEG;AACH,mDAA8B"} -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/resources/shared.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | // File generated from our OpenAPI spec by Stainless. 3 | Object.defineProperty(exports, "__esModule", { value: true }); 4 | //# sourceMappingURL=shared.js.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/@puppeteer/browsers/lib/cjs/debug.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"debug.js","sourceRoot":"","sources":["../../src/debug.ts"],"names":[],"mappings":";AAAA;;;;GAIG;;;;;;AAEH,kDAA0B;AAElB,gBAFD,eAAK,CAEC"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/bare-fs/prebuilds/android-arm/bare-fs.bare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/the-complete-javascript-course/HEAD/projects/stocks_data_api/node_modules/bare-fs/prebuilds/android-arm/bare-fs.bare -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/bare-fs/prebuilds/android-ia32/bare-fs.bare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/the-complete-javascript-course/HEAD/projects/stocks_data_api/node_modules/bare-fs/prebuilds/android-ia32/bare-fs.bare -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/bare-fs/prebuilds/android-x64/bare-fs.bare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/the-complete-javascript-course/HEAD/projects/stocks_data_api/node_modules/bare-fs/prebuilds/android-x64/bare-fs.bare -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/bare-fs/prebuilds/darwin-arm64/bare-fs.bare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/the-complete-javascript-course/HEAD/projects/stocks_data_api/node_modules/bare-fs/prebuilds/darwin-arm64/bare-fs.bare -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/bare-fs/prebuilds/linux-arm64/bare-fs.bare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/the-complete-javascript-course/HEAD/projects/stocks_data_api/node_modules/bare-fs/prebuilds/linux-arm64/bare-fs.bare -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/bare-fs/prebuilds/win32-arm64/bare-fs.bare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/the-complete-javascript-course/HEAD/projects/stocks_data_api/node_modules/bare-fs/prebuilds/win32-arm64/bare-fs.bare -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/bare-os/prebuilds/android-arm/bare-os.bare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/the-complete-javascript-course/HEAD/projects/stocks_data_api/node_modules/bare-os/prebuilds/android-arm/bare-os.bare -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/bare-os/prebuilds/android-ia32/bare-os.bare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/the-complete-javascript-course/HEAD/projects/stocks_data_api/node_modules/bare-os/prebuilds/android-ia32/bare-os.bare -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/bare-os/prebuilds/android-x64/bare-os.bare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/the-complete-javascript-course/HEAD/projects/stocks_data_api/node_modules/bare-os/prebuilds/android-x64/bare-os.bare -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/bare-os/prebuilds/darwin-arm64/bare-os.bare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/the-complete-javascript-course/HEAD/projects/stocks_data_api/node_modules/bare-os/prebuilds/darwin-arm64/bare-os.bare -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/bare-os/prebuilds/linux-arm64/bare-os.bare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/the-complete-javascript-course/HEAD/projects/stocks_data_api/node_modules/bare-os/prebuilds/linux-arm64/bare-os.bare -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/bare-os/prebuilds/win32-arm64/bare-os.bare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/the-complete-javascript-course/HEAD/projects/stocks_data_api/node_modules/bare-os/prebuilds/win32-arm64/bare-os.bare -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/dom-serializer/lib/foreignNames.d.ts: -------------------------------------------------------------------------------- 1 | export declare const elementNames: Map; 2 | export declare const attributeNames: Map; 3 | //# sourceMappingURL=foreignNames.d.ts.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/fs-extra/lib/copy/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const u = require('universalify').fromPromise 4 | module.exports = { 5 | copy: u(require('./copy')), 6 | copySync: require('./copy-sync') 7 | } 8 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/fs-extra/lib/move/index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | const u = require('universalify').fromPromise 4 | module.exports = { 5 | move: u(require('./move')), 6 | moveSync: require('./move-sync') 7 | } 8 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/TargetManager.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"TargetManager.js","sourceRoot":"","sources":["../../../../src/cdp/TargetManager.ts"],"names":[],"mappings":"AAAA;;;;GAIG"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/toidentifier/HISTORY.md: -------------------------------------------------------------------------------- 1 | 1.0.1 / 2021-11-14 2 | ================== 3 | 4 | * pref: enable strict mode 5 | 6 | 1.0.0 / 2018-07-09 7 | ================== 8 | 9 | * Initial release 10 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/formdata-node/node_modules/web-streams-polyfill/polyfill/es5/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "web-streams-polyfill", 3 | "main": "../../dist/polyfill.es5.js", 4 | "types": "../../types/polyfill.d.ts" 5 | } 6 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/_shims/auto/runtime-node.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"runtime-node.js","sourceRoot":"","sources":["../../src/_shims/auto/runtime-node.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA;;GAEG;AACH,qDAAgC"} -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/_shims/auto/types-node.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Disclaimer: modules in _shims aren't intended to be imported by SDK users. 3 | */ 4 | export * from "../node-types.js"; 5 | //# sourceMappingURL=types-node.d.ts.map -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/resources/chat/index.mjs.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.mjs","sourceRoot":"","sources":["../../src/resources/chat/index.ts"],"names":[],"mappings":"AAAA,qDAAqD;OAE9C,EAAE,IAAI,EAAE;OACR,EA2BL,WAAW,GACZ"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/ast-types/lib/equiv.d.ts: -------------------------------------------------------------------------------- 1 | import { Fork } from "../types"; 2 | export default function (fork: Fork): { 3 | (a: any, b: any, problemPath?: any): boolean; 4 | assert(a: any, b: any): void; 5 | }; 6 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/bare-fs/prebuilds/android-arm64/bare-fs.bare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/the-complete-javascript-course/HEAD/projects/stocks_data_api/node_modules/bare-fs/prebuilds/android-arm64/bare-fs.bare -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/bare-os/prebuilds/android-arm64/bare-os.bare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/the-complete-javascript-course/HEAD/projects/stocks_data_api/node_modules/bare-os/prebuilds/android-arm64/bare-os.bare -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/call-bind/.nycrc: -------------------------------------------------------------------------------- 1 | { 2 | "all": true, 3 | "check-coverage": false, 4 | "reporter": ["text-summary", "text", "html", "json"], 5 | "exclude": [ 6 | "coverage", 7 | "test" 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/chromium-bidi/lib/cjs/bidiMapper/BidiParser.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"BidiParser.js","sourceRoot":"","sources":["../../../src/bidiMapper/BidiParser.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;GAeG"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/chromium-bidi/lib/esm/bidiMapper/BidiParser.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"BidiParser.js","sourceRoot":"","sources":["../../../src/bidiMapper/BidiParser.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;GAeG"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/dom-serializer/lib/esm/foreignNames.d.ts: -------------------------------------------------------------------------------- 1 | export declare const elementNames: Map; 2 | export declare const attributeNames: Map; 3 | //# sourceMappingURL=foreignNames.d.ts.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/function-bind/.github/SECURITY.md: -------------------------------------------------------------------------------- 1 | # Security 2 | 3 | Please email [@ljharb](https://github.com/ljharb) or see https://tidelift.com/security if you have a potential security vulnerability to report. 4 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/get-intrinsic/.nycrc: -------------------------------------------------------------------------------- 1 | { 2 | "all": true, 3 | "check-coverage": false, 4 | "reporter": ["text-summary", "text", "html", "json"], 5 | "exclude": [ 6 | "coverage", 7 | "test" 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/has-symbols/.nycrc: -------------------------------------------------------------------------------- 1 | { 2 | "all": true, 3 | "check-coverage": false, 4 | "reporter": ["text-summary", "text", "html", "json"], 5 | "exclude": [ 6 | "coverage", 7 | "test" 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/progress/Makefile: -------------------------------------------------------------------------------- 1 | 2 | EXAMPLES = $(foreach EXAMPLE, $(wildcard examples/*.js), $(EXAMPLE)) 3 | 4 | .PHONY: test 5 | test: $(EXAMPLES) 6 | 7 | .PHONY: $(EXAMPLES) 8 | $(EXAMPLES): ; node $@ && echo 9 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/TargetManager.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"TargetManager.js","sourceRoot":"","sources":["../../../../src/cdp/TargetManager.ts"],"names":[],"mappings":";AAAA;;;;GAIG"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/cjs/puppeteer/node/LaunchOptions.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"LaunchOptions.js","sourceRoot":"","sources":["../../../../src/node/LaunchOptions.ts"],"names":[],"mappings":";AAAA;;;;GAIG"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/esm/puppeteer/common/types.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license 3 | * Copyright 2020 Google Inc. 4 | * SPDX-License-Identifier: Apache-2.0 5 | */ 6 | export {}; 7 | //# sourceMappingURL=types.js.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/esm/puppeteer/node/LaunchOptions.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"LaunchOptions.js","sourceRoot":"","sources":["../../../../src/node/LaunchOptions.ts"],"names":[],"mappings":"AAAA;;;;GAIG"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/queue-tick/process-next-tick.js: -------------------------------------------------------------------------------- 1 | module.exports = (typeof process !== 'undefined' && typeof process.nextTick === 'function') 2 | ? process.nextTick.bind(process) 3 | : require('./queue-microtask') 4 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/semver/functions/compare.js: -------------------------------------------------------------------------------- 1 | const SemVer = require('../classes/semver') 2 | const compare = (a, b, loose) => 3 | new SemVer(a, loose).compare(new SemVer(b, loose)) 4 | 5 | module.exports = compare 6 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/urlpattern-polyfill/index.js: -------------------------------------------------------------------------------- 1 | import { URLPattern } from "./dist/urlpattern.js"; 2 | 3 | export { URLPattern }; 4 | 5 | if (!globalThis.URLPattern) { 6 | globalThis.URLPattern = URLPattern; 7 | } 8 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/agentkeepalive/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./lib/agent'); 4 | module.exports.HttpsAgent = require('./lib/https_agent'); 5 | module.exports.constants = require('./lib/constants'); 6 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/form-data-encoder/lib/esm/util/escapeName.js: -------------------------------------------------------------------------------- 1 | const escapeName = (name) => String(name) 2 | .replace(/\r/g, "%0D") 3 | .replace(/\n/g, "%0A") 4 | .replace(/"/g, "%22"); 5 | export default escapeName; 6 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/_shims/auto/runtime-bun.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Disclaimer: modules in _shims aren't intended to be imported by SDK users. 3 | */ 4 | export * from "../bun-runtime.js"; 5 | //# sourceMappingURL=runtime-bun.d.ts.map -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/lib/ChatCompletionRunFunctions.test.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"ChatCompletionRunFunctions.test.d.ts","sourceRoot":"","sources":["../src/lib/ChatCompletionRunFunctions.test.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/bare-fs/prebuilds/ios-x64-simulator/bare-fs.bare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/the-complete-javascript-course/HEAD/projects/stocks_data_api/node_modules/bare-fs/prebuilds/ios-x64-simulator/bare-fs.bare -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/bare-os/prebuilds/ios-x64-simulator/bare-os.bare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/the-complete-javascript-course/HEAD/projects/stocks_data_api/node_modules/bare-os/prebuilds/ios-x64-simulator/bare-os.bare -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/color-name/test.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | var names = require('./'); 4 | var assert = require('assert'); 5 | 6 | assert.deepEqual(names.red, [255,0,0]); 7 | assert.deepEqual(names.aliceblue, [240,248,255]); 8 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/es-define-property/.nycrc: -------------------------------------------------------------------------------- 1 | { 2 | "all": true, 3 | "check-coverage": false, 4 | "reporter": ["text-summary", "text", "html", "json"], 5 | "exclude": [ 6 | "coverage", 7 | "test" 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/core/Connection.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"Connection.js","sourceRoot":"","sources":["../../../../../src/bidi/core/Connection.ts"],"names":[],"mappings":";AAAA;;;;GAIG"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/cjs/puppeteer/common/Configuration.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"Configuration.js","sourceRoot":"","sources":["../../../../src/common/Configuration.ts"],"names":[],"mappings":";AAAA;;;;GAIG"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/cjs/puppeteer/common/ConnectOptions.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"ConnectOptions.js","sourceRoot":"","sources":["../../../../src/common/ConnectOptions.ts"],"names":[],"mappings":";AAAA;;;;GAIG"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/cjs/puppeteer/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":";AAAA;;;;GAIG;;;;;;;;;;;;;;;;AAEH,qDAAmC;AACnC,iDAA+B"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/core/Connection.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"Connection.js","sourceRoot":"","sources":["../../../../../src/bidi/core/Connection.ts"],"names":[],"mappings":"AAAA;;;;GAIG"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/esm/puppeteer/common/Configuration.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"Configuration.js","sourceRoot":"","sources":["../../../../src/common/Configuration.ts"],"names":[],"mappings":"AAAA;;;;GAIG"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/esm/puppeteer/common/ConnectOptions.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"ConnectOptions.js","sourceRoot":"","sources":["../../../../src/common/ConnectOptions.ts"],"names":[],"mappings":"AAAA;;;;GAIG"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/esm/puppeteer/common/Cookie.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license 3 | * Copyright 2024 Google Inc. 4 | * SPDX-License-Identifier: Apache-2.0 5 | */ 6 | export {}; 7 | //# sourceMappingURL=Cookie.js.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/esm/puppeteer/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,cAAc,oBAAoB,CAAC;AACnC,cAAc,gBAAgB,CAAC"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/yargs/build/lib/utils/is-promise.js: -------------------------------------------------------------------------------- 1 | export function isPromise(maybePromise) { 2 | return (!!maybePromise && 3 | !!maybePromise.then && 4 | typeof maybePromise.then === 'function'); 5 | } 6 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/form-data-encoder/@type/index.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./FormDataEncoder"; 2 | export * from "./FileLike"; 3 | export * from "./FormDataLike"; 4 | export * from "./util/isFileLike"; 5 | export * from "./util/isFormData"; 6 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/_shims/auto/runtime-node.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Disclaimer: modules in _shims aren't intended to be imported by SDK users. 3 | */ 4 | export * from "../node-runtime.js"; 5 | //# sourceMappingURL=runtime-node.d.ts.map -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/resources/beta/chat/index.mjs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec by Stainless. 2 | export { Chat } from "./chat.mjs"; 3 | export { Completions } from "./completions.mjs"; 4 | //# sourceMappingURL=index.mjs.map -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/resources/chat/index.mjs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec by Stainless. 2 | export { Chat } from "./chat.mjs"; 3 | export { Completions, } from "./completions.mjs"; 4 | //# sourceMappingURL=index.mjs.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/@puppeteer/browsers/src/debug.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * @license 3 | * Copyright 2023 Google Inc. 4 | * SPDX-License-Identifier: Apache-2.0 5 | */ 6 | 7 | import debug from 'debug'; 8 | 9 | export {debug}; 10 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/bare-fs/prebuilds/ios-arm64-simulator/bare-fs.bare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/the-complete-javascript-course/HEAD/projects/stocks_data_api/node_modules/bare-fs/prebuilds/ios-arm64-simulator/bare-fs.bare -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/bare-os/prebuilds/ios-arm64-simulator/bare-os.bare: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/the-complete-javascript-course/HEAD/projects/stocks_data_api/node_modules/bare-os/prebuilds/ios-arm64-simulator/bare-os.bare -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/chromium-bidi/lib/cjs/bidiMapper/BidiTransport.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"BidiTransport.js","sourceRoot":"","sources":["../../../src/bidiMapper/BidiTransport.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;GAeG"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/chromium-bidi/lib/cjs/utils/CdpErrorConstants.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"CdpErrorConstants.js","sourceRoot":"","sources":["../../../src/utils/CdpErrorConstants.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;GAeG"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/chromium-bidi/lib/esm/bidiMapper/BidiTransport.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"BidiTransport.js","sourceRoot":"","sources":["../../../src/bidiMapper/BidiTransport.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;GAeG"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/chromium-bidi/lib/esm/utils/CdpErrorConstants.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"CdpErrorConstants.js","sourceRoot":"","sources":["../../../src/utils/CdpErrorConstants.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;GAeG"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/css-select/lib/pseudo-selectors/aliases.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Aliases are pseudos that are expressed as selectors. 3 | */ 4 | export declare const aliases: Record; 5 | //# sourceMappingURL=aliases.d.ts.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/cjs/puppeteer/index.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,cAAc,oBAAoB,CAAC;AACnC,cAAc,gBAAgB,CAAC"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/esm/puppeteer/api/Environment.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license 3 | * Copyright 2023 Google Inc. 4 | * SPDX-License-Identifier: Apache-2.0 5 | */ 6 | export {}; 7 | //# sourceMappingURL=Environment.js.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/esm/puppeteer/common/SupportedBrowser.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"SupportedBrowser.js","sourceRoot":"","sources":["../../../../src/common/SupportedBrowser.ts"],"names":[],"mappings":"AAAA;;;;GAIG"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/esm/puppeteer/common/Viewport.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license 3 | * Copyright 2020 Google Inc. 4 | * SPDX-License-Identifier: Apache-2.0 5 | */ 6 | export {}; 7 | //# sourceMappingURL=Viewport.js.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/esm/puppeteer/index.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/index.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,cAAc,oBAAoB,CAAC;AACnC,cAAc,gBAAgB,CAAC"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/semver/functions/valid.js: -------------------------------------------------------------------------------- 1 | const parse = require('./parse') 2 | const valid = (version, options) => { 3 | const v = parse(version, options) 4 | return v ? v.version : null 5 | } 6 | module.exports = valid 7 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/resource.d.ts: -------------------------------------------------------------------------------- 1 | import type { OpenAI } from "./index.js"; 2 | export declare class APIResource { 3 | protected _client: OpenAI; 4 | constructor(client: OpenAI); 5 | } 6 | //# sourceMappingURL=resource.d.ts.map -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/resources/beta/chat/index.mjs.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.mjs","sourceRoot":"","sources":["../../../src/resources/beta/chat/index.ts"],"names":[],"mappings":"AAAA,qDAAqD;OAE9C,EAAE,IAAI,EAAE;OACR,EAAE,WAAW,EAAE"} -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/shims/node.mjs.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"node.mjs","sourceRoot":"","sources":["../src/shims/node.ts"],"names":[],"mappings":"OACO,KAAK,KAAK;OACV,EAAE,QAAQ,EAAE;OACZ,EAAE,UAAU,EAAE;AACrB,QAAQ,CAAC,UAAU,EAAE,CAAC,CAAC"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/@puppeteer/browsers/lib/esm/debug.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"debug.js","sourceRoot":"","sources":["../../src/debug.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAC,KAAK,EAAC,CAAC"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/cheerio/lib/esm/types.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"types.js","sourceRoot":"https://raw.githubusercontent.com/cheeriojs/cheerio/d1cbc66d53392ce8bf6cd0068f675836372d2bf3/src/","sources":["types.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/cheerio/lib/types.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"types.js","sourceRoot":"https://raw.githubusercontent.com/cheeriojs/cheerio/d1cbc66d53392ce8bf6cd0068f675836372d2bf3/src/","sources":["types.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/concat-map/example/map.js: -------------------------------------------------------------------------------- 1 | var concatMap = require('../'); 2 | var xs = [ 1, 2, 3, 4, 5, 6 ]; 3 | var ys = concatMap(xs, function (x) { 4 | return x % 2 ? [ x - 0.1, x, x + 0.1 ] : []; 5 | }); 6 | console.dir(ys); 7 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/css-select/lib/esm/pseudo-selectors/aliases.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Aliases are pseudos that are expressed as selectors. 3 | */ 4 | export declare const aliases: Record; 5 | //# sourceMappingURL=aliases.d.ts.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/css-select/lib/types.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"types.js","sourceRoot":"https://raw.githubusercontent.com/fb55/css-select/0f0725a9dfeddd2fdb54eda9656cdbab5bbf6be6/src/","sources":["types.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/has-property-descriptors/.nycrc: -------------------------------------------------------------------------------- 1 | { 2 | "all": true, 3 | "check-coverage": false, 4 | "reporter": ["text-summary", "text", "html", "json"], 5 | "exclude": [ 6 | "coverage", 7 | "test" 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/cjs/puppeteer/common/SupportedBrowser.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"SupportedBrowser.js","sourceRoot":"","sources":["../../../../src/common/SupportedBrowser.ts"],"names":[],"mappings":";AAAA;;;;GAIG"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/esm/puppeteer/bidi/core/Connection.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license 3 | * Copyright 2024 Google Inc. 4 | * SPDX-License-Identifier: Apache-2.0 5 | */ 6 | export {}; 7 | //# sourceMappingURL=Connection.js.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/esm/puppeteer/cdp/TargetManager.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license 3 | * Copyright 2022 Google Inc. 4 | * SPDX-License-Identifier: Apache-2.0 5 | */ 6 | export {}; 7 | //# sourceMappingURL=TargetManager.js.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/esm/puppeteer/node/LaunchOptions.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license 3 | * Copyright 2020 Google Inc. 4 | * SPDX-License-Identifier: Apache-2.0 5 | */ 6 | export {}; 7 | //# sourceMappingURL=LaunchOptions.js.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/src/index.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * @license 3 | * Copyright 2017 Google Inc. 4 | * SPDX-License-Identifier: Apache-2.0 5 | */ 6 | 7 | export * from './index-browser.js'; 8 | export * from './node/node.js'; 9 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/side-channel/.editorconfig: -------------------------------------------------------------------------------- 1 | root = true 2 | 3 | [*] 4 | charset = utf-8 5 | end_of_line = lf 6 | insert_final_newline = true 7 | indent_style = tab 8 | indent_size = 2 9 | trim_trailing_whitespace = true 10 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/urlpattern-polyfill/index.cjs: -------------------------------------------------------------------------------- 1 | const { URLPattern } = require("./dist/urlpattern.cjs"); 2 | 3 | module.exports = { URLPattern }; 4 | 5 | if (!globalThis.URLPattern) { 6 | globalThis.URLPattern = URLPattern; 7 | } 8 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/form-data-encoder/lib/cjs/util/isFunction.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | const isFunction = (value) => (typeof value === "function"); 4 | exports.default = isFunction; 5 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/resource.mjs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec by Stainless. 2 | export class APIResource { 3 | constructor(client) { 4 | this._client = client; 5 | } 6 | } 7 | //# sourceMappingURL=resource.mjs.map -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/resource.mjs.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"resource.mjs","sourceRoot":"","sources":["src/resource.ts"],"names":[],"mappings":"AAAA,qDAAqD;AAIrD,MAAM,OAAO,WAAW;IAGtB,YAAY,MAAc;QACxB,IAAI,CAAC,OAAO,GAAG,MAAM,CAAC;IACxB,CAAC;CACF"} -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/version.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.VERSION = void 0; 4 | exports.VERSION = '4.28.0'; // x-release-please-version 5 | //# sourceMappingURL=version.js.map -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/undici-types/global-origin.d.ts: -------------------------------------------------------------------------------- 1 | export { 2 | setGlobalOrigin, 3 | getGlobalOrigin 4 | } 5 | 6 | declare function setGlobalOrigin(origin: string | URL | undefined): void; 7 | declare function getGlobalOrigin(): URL | undefined; -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/@puppeteer/browsers/lib/cjs/debug.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"debug.d.ts","sourceRoot":"","sources":["../../src/debug.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAC,KAAK,EAAC,CAAC"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/@puppeteer/browsers/lib/esm/debug.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"debug.d.ts","sourceRoot":"","sources":["../../src/debug.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,OAAO,EAAC,KAAK,EAAC,CAAC"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/@tootallnate/quickjs-emscripten/dist/debug.d.ts: -------------------------------------------------------------------------------- 1 | export declare const QTS_DEBUG: boolean; 2 | export declare let debugLog: { 3 | (...data: any[]): void; 4 | (message?: any, ...optionalParams: any[]): void; 5 | }; 6 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/css-select/lib/esm/types.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"types.js","sourceRoot":"https://raw.githubusercontent.com/fb55/css-select/0f0725a9dfeddd2fdb54eda9656cdbab5bbf6be6/src/","sources":["types.ts"],"names":[],"mappings":""} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/data-uri-to-buffer/dist/node.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"node.d.ts","sourceRoot":"","sources":["../src/node.ts"],"names":[],"mappings":"AAEA,YAAY,EAAE,aAAa,EAAE,MAAO,UAAU,CAAC;AAoB/C;;;;GAIG;AACH,eAAO,MAAM,eAAe,yDAA+D,CAAC"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/dom-serializer/lib/foreignNames.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"foreignNames.d.ts","sourceRoot":"","sources":["../src/foreignNames.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,YAAY,qBAwCxB,CAAC;AACF,eAAO,MAAM,cAAc,qBA8D1B,CAAC"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/fd-slicer/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - "0.10" 4 | script: 5 | - "npm run test-travis" 6 | after_script: 7 | - "npm install coveralls@2 && cat ./coverage/lcov.info | ./node_modules/.bin/coveralls" 8 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/pac-resolver/dist/myIpAddress.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"myIpAddress.d.ts","sourceRoot":"","sources":["../src/myIpAddress.ts"],"names":[],"mappings":"AAGA;;;;;;;;;;;;;GAaG;AACH,wBAA8B,WAAW,IAAI,OAAO,CAAC,MAAM,CAAC,CAwB3D"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/cjs/puppeteer/common/ConnectionTransport.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"ConnectionTransport.js","sourceRoot":"","sources":["../../../../src/common/ConnectionTransport.ts"],"names":[],"mappings":";AAAA;;;;GAIG"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/cjs/puppeteer/generated/version.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"version.js","sourceRoot":"","sources":["../../../../src/generated/version.ts"],"names":[],"mappings":";;;AAAA;;GAEG;AACU,QAAA,cAAc,GAAG,QAAQ,CAAC"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/esm/puppeteer/common/Configuration.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license 3 | * Copyright 2022 Google Inc. 4 | * SPDX-License-Identifier: Apache-2.0 5 | */ 6 | export {}; 7 | //# sourceMappingURL=Configuration.js.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/esm/puppeteer/common/ConnectOptions.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license 3 | * Copyright 2020 Google Inc. 4 | * SPDX-License-Identifier: Apache-2.0 5 | */ 6 | export {}; 7 | //# sourceMappingURL=ConnectOptions.js.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/esm/puppeteer/common/ConnectionTransport.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"ConnectionTransport.js","sourceRoot":"","sources":["../../../../src/common/ConnectionTransport.ts"],"names":[],"mappings":"AAAA;;;;GAIG"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer/lib/cjs/puppeteer/node/cli.d.ts: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | /** 3 | * @license 4 | * Copyright 2023 Google Inc. 5 | * SPDX-License-Identifier: Apache-2.0 6 | */ 7 | export {}; 8 | //# sourceMappingURL=cli.d.ts.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer/lib/esm/puppeteer/node/cli.d.ts: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | /** 3 | * @license 4 | * Copyright 2023 Google Inc. 5 | * SPDX-License-Identifier: Apache-2.0 6 | */ 7 | export {}; 8 | //# sourceMappingURL=cli.d.ts.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/ws/browser.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function () { 4 | throw new Error( 5 | 'ws does not work in the browser. Browser clients must use the native ' + 6 | 'WebSocket object' 7 | ); 8 | }; 9 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/form-data-encoder/@type/util/isFunction.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Checks if given value is a function. 3 | * 4 | * @api private 5 | */ 6 | declare const isFunction: (value: unknown) => value is Function; 7 | export default isFunction; 8 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/form-data-encoder/lib/esm/index.js: -------------------------------------------------------------------------------- 1 | export * from "./FormDataEncoder.js"; 2 | export * from "./FileLike.js"; 3 | export * from "./FormDataLike.js"; 4 | export * from "./util/isFileLike.js"; 5 | export * from "./util/isFormData.js"; 6 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/_shims/web-runtime.d.ts: -------------------------------------------------------------------------------- 1 | import { type Shims } from "./registry.js"; 2 | export declare function getRuntime({ manuallyImported }?: { 3 | manuallyImported?: boolean; 4 | }): Shims; 5 | //# sourceMappingURL=web-runtime.d.ts.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/@puppeteer/browsers/lib/cjs/main-cli.d.ts: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | /** 3 | * @license 4 | * Copyright 2023 Google Inc. 5 | * SPDX-License-Identifier: Apache-2.0 6 | */ 7 | export {}; 8 | //# sourceMappingURL=main-cli.d.ts.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/@puppeteer/browsers/lib/esm/main-cli.d.ts: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | /** 3 | * @license 4 | * Copyright 2023 Google Inc. 5 | * SPDX-License-Identifier: Apache-2.0 6 | */ 7 | export {}; 8 | //# sourceMappingURL=main-cli.d.ts.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/data-uri-to-buffer/dist/index.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAEA,YAAY,EAAE,aAAa,EAAE,MAAO,UAAU,CAAC;AAkD/C;;;;GAIG;AACH,eAAO,MAAM,eAAe,yDAA+D,CAAC"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/debug/.travis.yml: -------------------------------------------------------------------------------- 1 | 2 | language: node_js 3 | node_js: 4 | - "6" 5 | - "5" 6 | - "4" 7 | 8 | install: 9 | - make node_modules 10 | 11 | script: 12 | - make lint 13 | - make test 14 | - make coveralls 15 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/dom-serializer/lib/esm/foreignNames.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"foreignNames.d.ts","sourceRoot":"","sources":["../../src/foreignNames.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,YAAY,qBAwCxB,CAAC;AACF,eAAO,MAAM,cAAc,qBA8D1B,CAAC"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/ip-address/dist/address-error.d.ts: -------------------------------------------------------------------------------- 1 | export declare class AddressError extends Error { 2 | parseMessage?: string; 3 | constructor(message: string, parseMessage?: string); 4 | } 5 | //# sourceMappingURL=address-error.d.ts.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/pump/SECURITY.md: -------------------------------------------------------------------------------- 1 | ## Security contact information 2 | 3 | To report a security vulnerability, please use the 4 | [Tidelift security contact](https://tidelift.com/security). 5 | Tidelift will coordinate the fix and disclosure. 6 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/cjs/puppeteer/generated/version.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../../../../src/generated/version.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,eAAO,MAAM,cAAc,WAAW,CAAC"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/cjs/puppeteer/revisions.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"revisions.d.ts","sourceRoot":"","sources":["../../../src/revisions.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH;;GAEG;AACH,eAAO,MAAM,mBAAmB;;;;EAI9B,CAAC"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/esm/puppeteer/common/SupportedBrowser.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license 3 | * Copyright 2020 Google Inc. 4 | * SPDX-License-Identifier: Apache-2.0 5 | */ 6 | export {}; 7 | //# sourceMappingURL=SupportedBrowser.js.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/esm/puppeteer/generated/version.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"version.d.ts","sourceRoot":"","sources":["../../../../src/generated/version.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,eAAO,MAAM,cAAc,WAAW,CAAC"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/esm/puppeteer/revisions.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"revisions.d.ts","sourceRoot":"","sources":["../../../src/revisions.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH;;GAEG;AACH,eAAO,MAAM,mBAAmB;;;;EAI9B,CAAC"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/undici-types/global-origin.d.ts: -------------------------------------------------------------------------------- 1 | export { 2 | setGlobalOrigin, 3 | getGlobalOrigin 4 | } 5 | 6 | declare function setGlobalOrigin(origin: string | URL | undefined): void; 7 | declare function getGlobalOrigin(): URL | undefined; -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/y18n/index.mjs: -------------------------------------------------------------------------------- 1 | import shim from './build/lib/platform-shims/node.js' 2 | import { y18n as _y18n } from './build/lib/index.js' 3 | 4 | const y18n = (opts) => { 5 | return _y18n(opts, shim) 6 | } 7 | 8 | export default y18n 9 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/dotenv/config.js: -------------------------------------------------------------------------------- 1 | (function () { 2 | require('./lib/main').config( 3 | Object.assign( 4 | {}, 5 | require('./lib/env-options'), 6 | require('./lib/cli-options')(process.argv) 7 | ) 8 | ) 9 | })() 10 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/formdata-node/node_modules/web-streams-polyfill/es5/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "web-streams-polyfill", 3 | "main": "../dist/ponyfill.es5.js", 4 | "module": "../dist/ponyfill.es5.mjs", 5 | "types": "../types/ponyfill.d.ts" 6 | } 7 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/_shims/node-runtime.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"node-runtime.d.ts","sourceRoot":"","sources":["../src/_shims/node-runtime.ts"],"names":[],"mappings":"AAcA,OAAO,EAAE,KAAK,KAAK,EAAE,MAAM,YAAY,CAAC;AA+CxC,wBAAgB,UAAU,IAAI,KAAK,CAqBlC"} -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/resource.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"resource.js","sourceRoot":"","sources":["src/resource.ts"],"names":[],"mappings":";AAAA,qDAAqD;;;AAIrD,MAAa,WAAW;IAGtB,YAAY,MAAc;QACxB,IAAI,CAAC,OAAO,GAAG,MAAM,CAAC;IACxB,CAAC;CACF;AAND,kCAMC"} -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/resources/chat/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/resources/chat/index.ts"],"names":[],"mappings":";AAAA,qDAAqD;;;AAErD,kCAA8B;AAArB,4FAAA,IAAI,OAAA;AACb,gDA4BuB;AADrB,0GAAA,WAAW,OAAA"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/@puppeteer/browsers/lib/cjs/debug.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * @license 3 | * Copyright 2023 Google Inc. 4 | * SPDX-License-Identifier: Apache-2.0 5 | */ 6 | import debug from 'debug'; 7 | export { debug }; 8 | //# sourceMappingURL=debug.d.ts.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/@puppeteer/browsers/lib/esm/debug.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * @license 3 | * Copyright 2023 Google Inc. 4 | * SPDX-License-Identifier: Apache-2.0 5 | */ 6 | import debug from 'debug'; 7 | export { debug }; 8 | //# sourceMappingURL=debug.d.ts.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/@puppeteer/browsers/lib/esm/debug.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license 3 | * Copyright 2023 Google Inc. 4 | * SPDX-License-Identifier: Apache-2.0 5 | */ 6 | import debug from 'debug'; 7 | export { debug }; 8 | //# sourceMappingURL=debug.js.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/chromium-bidi/lib/cjs/protocol/generated/webdriver-bidi.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"webdriver-bidi.js","sourceRoot":"","sources":["../../../../src/protocol/generated/webdriver-bidi.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;GAeG"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/chromium-bidi/lib/esm/protocol/generated/webdriver-bidi.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"webdriver-bidi.js","sourceRoot":"","sources":["../../../../src/protocol/generated/webdriver-bidi.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;GAeG"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/esm/puppeteer/common/ConnectionTransport.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license 3 | * Copyright 2020 Google Inc. 4 | * SPDX-License-Identifier: Apache-2.0 5 | */ 6 | export {}; 7 | //# sourceMappingURL=ConnectionTransport.js.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/esm/puppeteer/generated/version.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"version.js","sourceRoot":"","sources":["../../../../src/generated/version.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,MAAM,CAAC,MAAM,cAAc,GAAG,QAAQ,CAAC"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/zod/lib/external.d.ts: -------------------------------------------------------------------------------- 1 | export * from "./errors"; 2 | export * from "./helpers/parseUtil"; 3 | export * from "./helpers/typeAliases"; 4 | export * from "./helpers/util"; 5 | export * from "./types"; 6 | export * from "./ZodError"; 7 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/lib/jsonschema.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"jsonschema.js","sourceRoot":"","sources":["../src/lib/jsonschema.ts"],"names":[],"mappings":";AAAA,kFAAkF;AAClF,gIAAgI;AAChI,EAAE;AACF,qGAAqG;AACrG,uBAAuB;AACvB,qGAAqG;AACrG,uEAAuE;AACvE,qGAAqG"} -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/lib/jsonschema.mjs.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"jsonschema.mjs","sourceRoot":"","sources":["../src/lib/jsonschema.ts"],"names":[],"mappings":"AAAA,kFAAkF;AAClF,gIAAgI;AAChI,EAAE;AACF,qGAAqG;AACrG,uBAAuB;AACvB,qGAAqG;AACrG,uEAAuE;AACvE,qGAAqG"} -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/resources/beta/threads/runs/index.mjs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec by Stainless. 2 | export { RunStepsPage, Steps, } from "./steps.mjs"; 3 | export { RunsPage, Runs, } from "./runs.mjs"; 4 | //# sourceMappingURL=index.mjs.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/@puppeteer/browsers/src/tsconfig.cjs.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../../tsconfig.base.json", 3 | "compilerOptions": { 4 | "module": "NodeNext", 5 | "moduleResolution": "NodeNext", 6 | "outDir": "../lib/cjs" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/@tootallnate/quickjs-emscripten/dist/generated/emscripten-module.WASM_RELEASE_SYNC.d.ts: -------------------------------------------------------------------------------- 1 | export = QuickJSRaw; 2 | declare function QuickJSRaw(QuickJSRaw?: {}): any; 3 | declare namespace QuickJSRaw { 4 | export { QuickJSRaw }; 5 | } 6 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/es-define-property/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | 4 | "extends": "@ljharb", 5 | 6 | "rules": { 7 | "new-cap": ["error", { 8 | "capIsNewExceptions": [ 9 | "GetIntrinsic", 10 | ], 11 | }], 12 | }, 13 | } 14 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/pac-resolver/dist/isResolvable.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"isResolvable.d.ts","sourceRoot":"","sources":["../src/isResolvable.ts"],"names":[],"mappings":"AAEA;;;;;GAKG;AAEH,wBAA8B,YAAY,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,OAAO,CAAC,CAUzE"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/cjs/puppeteer/generated/injected.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"injected.d.ts","sourceRoot":"","sources":["../../../../src/generated/injected.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,eAAO,MAAM,MAAM,6/SAA6/S,CAAC"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/cjs/puppeteer/generated/injected.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"injected.js","sourceRoot":"","sources":["../../../../src/generated/injected.ts"],"names":[],"mappings":";;;AAAA;;;;;;GAMG;AACU,QAAA,MAAM,GAAG,0/SAA0/S,CAAC"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/esm/puppeteer/generated/injected.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"injected.d.ts","sourceRoot":"","sources":["../../../../src/generated/injected.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,eAAO,MAAM,MAAM,6/SAA6/S,CAAC"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/src/tsconfig.esm.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../../tsconfig.base.json", 3 | "compilerOptions": { 4 | "outDir": "../lib/esm/puppeteer" 5 | }, 6 | "references": [{"path": "../third_party/tsconfig.json"}] 7 | } 8 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer/src/tsconfig.cjs.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "../../../tsconfig.base.json", 3 | "compilerOptions": { 4 | "module": "NodeNext", 5 | "moduleResolution": "NodeNext", 6 | "outDir": "../lib/cjs/puppeteer" 7 | } 8 | } 9 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/semver/functions/clean.js: -------------------------------------------------------------------------------- 1 | const parse = require('./parse') 2 | const clean = (version, options) => { 3 | const s = parse(version.trim().replace(/^[=v]+/, ''), options) 4 | return s ? s.version : null 5 | } 6 | module.exports = clean 7 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/smart-buffer/.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | node_js: 3 | - 6 4 | - 8 5 | - 10 6 | - 12 7 | - stable 8 | 9 | before_script: 10 | - npm install -g typescript 11 | - tsc -p ./ 12 | 13 | script: "npm run coveralls" -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/y18n/build/lib/cjs.js: -------------------------------------------------------------------------------- 1 | import { y18n as _y18n } from './index.js'; 2 | import nodePlatformShim from './platform-shims/node.js'; 3 | const y18n = (opts) => { 4 | return _y18n(opts, nodePlatformShim); 5 | }; 6 | export default y18n; 7 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/_shims/bun-runtime.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"bun-runtime.d.ts","sourceRoot":"","sources":["../src/_shims/bun-runtime.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAE,KAAK,KAAK,EAAE,MAAM,YAAY,CAAC;AAIxC,wBAAgB,UAAU,IAAI,KAAK,CAMlC"} -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/resources/beta/chat/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/resources/beta/chat/index.ts"],"names":[],"mappings":";AAAA,qDAAqD;;;AAErD,kCAA8B;AAArB,4FAAA,IAAI,OAAA;AACb,gDAA4C;AAAnC,0GAAA,WAAW,OAAA"} -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/resources/fine-tuning/index.mjs.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.mjs","sourceRoot":"","sources":["../../src/resources/fine-tuning/index.ts"],"names":[],"mappings":"AAAA,qDAAqD;OAE9C,EAAE,UAAU,EAAE;OACd,EAML,kBAAkB,EAClB,uBAAuB,EACvB,IAAI,GACL"} -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/shims/node.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"node.js","sourceRoot":"","sources":["../src/shims/node.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;AAAA,aAAa;AACb,+DAA8C;AAC9C,oDAA8C;AAC9C,4DAAoD;AACpD,IAAA,mBAAQ,EAAC,IAAA,yBAAU,GAAE,CAAC,CAAC"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/bare-fs/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.25) 2 | 3 | project(bare_fs C) 4 | 5 | include(bare) 6 | 7 | add_bare_module(bare_fs) 8 | 9 | target_sources( 10 | ${bare_fs} 11 | PRIVATE 12 | binding.c 13 | ) 14 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/bare-os/CMakeLists.txt: -------------------------------------------------------------------------------- 1 | cmake_minimum_required(VERSION 3.25) 2 | 3 | project(bare_os C) 4 | 5 | include(bare) 6 | 7 | add_bare_module(bare_os) 8 | 9 | target_sources( 10 | ${bare_os} 11 | PRIVATE 12 | binding.c 13 | ) 14 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/chromium-bidi/lib/cjs/bidiMapper/modules/input/ActionOption.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"ActionOption.js","sourceRoot":"","sources":["../../../../../src/bidiMapper/modules/input/ActionOption.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;GAeG"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/chromium-bidi/lib/esm/bidiMapper/modules/input/ActionOption.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"ActionOption.js","sourceRoot":"","sources":["../../../../../src/bidiMapper/modules/input/ActionOption.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;GAeG"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/cosmiconfig/dist/canUseDynamicImport.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"canUseDynamicImport.d.ts","sourceRoot":"","sources":["../src/canUseDynamicImport.ts"],"names":[],"mappings":"AAEA,iBAAS,mBAAmB,IAAI,OAAO,CAUtC;AAED,OAAO,EAAE,mBAAmB,EAAE,CAAC"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/get-uri/dist/https.d.ts: -------------------------------------------------------------------------------- 1 | import { HttpOptions } from './http'; 2 | import type { GetUriProtocol } from '.'; 3 | /** 4 | * Returns a Readable stream from an "https:" URI. 5 | */ 6 | export declare const https: GetUriProtocol; 7 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/has-symbols/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | 4 | "extends": "@ljharb", 5 | 6 | "rules": { 7 | "max-statements-per-line": [2, { "max": 2 }], 8 | "no-magic-numbers": 0, 9 | "multiline-comment-style": 0, 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/ip-address/dist/v4/constants.d.ts: -------------------------------------------------------------------------------- 1 | export declare const BITS = 32; 2 | export declare const GROUPS = 4; 3 | export declare const RE_ADDRESS: RegExp; 4 | export declare const RE_SUBNET_STRING: RegExp; 5 | //# sourceMappingURL=constants.d.ts.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/js-yaml/lib/type/map.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var Type = require('../type'); 4 | 5 | module.exports = new Type('tag:yaml.org,2002:map', { 6 | kind: 'mapping', 7 | construct: function (data) { return data !== null ? data : {}; } 8 | }); 9 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/js-yaml/lib/type/str.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var Type = require('../type'); 4 | 5 | module.exports = new Type('tag:yaml.org,2002:str', { 6 | kind: 'scalar', 7 | construct: function (data) { return data !== null ? data : ''; } 8 | }); 9 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/pac-resolver/dist/timeRange.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"timeRange.d.ts","sourceRoot":"","sources":["../src/timeRange.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAwCG;AAEH,MAAM,CAAC,OAAO,UAAU,SAAS,IAAI,OAAO,CAkD3C"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/esm/puppeteer/generated/injected.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"injected.js","sourceRoot":"","sources":["../../../../src/generated/injected.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,MAAM,CAAC,MAAM,MAAM,GAAG,0/SAA0/S,CAAC"} -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/form-data/lib/populate.js: -------------------------------------------------------------------------------- 1 | // populates missing values 2 | module.exports = function(dst, src) { 3 | 4 | Object.keys(src).forEach(function(prop) 5 | { 6 | dst[prop] = dst[prop] || src[prop]; 7 | }); 8 | 9 | return dst; 10 | }; 11 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/formdata-node/lib/cjs/isFunction.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.isFunction = void 0; 4 | const isFunction = (value) => (typeof value === "function"); 5 | exports.isFunction = isFunction; 6 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/resource.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"resource.d.ts","sourceRoot":"","sources":["src/resource.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,MAAM,EAAE,MAAM,SAAS,CAAC;AAEtC,qBAAa,WAAW;IACtB,SAAS,CAAC,OAAO,EAAE,MAAM,CAAC;gBAEd,MAAM,EAAE,MAAM;CAG3B"} -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/resources/audio/index.mjs.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.mjs","sourceRoot":"","sources":["../../src/resources/audio/index.ts"],"names":[],"mappings":"AAAA,qDAAqD;OAE9C,EAAE,KAAK,EAAE;OACT,EAAsB,MAAM,EAAE;OAC9B,EAA4C,cAAc,EAAE;OAC5D,EAAwC,YAAY,EAAE"} -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/resources/beta/chat/index.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/resources/beta/chat/index.ts"],"names":[],"mappings":"AAEA,OAAO,EAAE,IAAI,EAAE,MAAM,QAAQ,CAAC;AAC9B,OAAO,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC"} -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/shims/node.mjs: -------------------------------------------------------------------------------- 1 | import * as types from "../_shims/node-types.mjs"; 2 | import { setShims } from "../_shims/registry.mjs"; 3 | import { getRuntime } from "../_shims/node-runtime.mjs"; 4 | setShims(getRuntime()); 5 | //# sourceMappingURL=node.mjs.map -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/shims/web.mjs.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"web.mjs","sourceRoot":"","sources":["../src/shims/web.ts"],"names":[],"mappings":"OACO,KAAK,KAAK;OACV,EAAE,QAAQ,EAAE;OACZ,EAAE,UAAU,EAAE;AACrB,QAAQ,CAAC,UAAU,CAAC,EAAE,gBAAgB,EAAE,IAAI,EAAE,CAAC,CAAC,CAAC"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/@puppeteer/browsers/lib/cjs/main-cli.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"main-cli.js","sourceRoot":"","sources":["../../src/main-cli.ts"],"names":[],"mappings":";;AAEA;;;;GAIG;;AAEH,qCAA6B;AAE7B,KAAK,IAAI,YAAG,EAAE,CAAC,GAAG,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/bare-stream/README.md: -------------------------------------------------------------------------------- 1 | # bare-stream 2 | 3 | Streaming data for JavaScript. 4 | 5 | ``` 6 | npm i bare-stream 7 | ``` 8 | 9 | ## API 10 | 11 | See . 12 | 13 | ## License 14 | 15 | Apache-2.0 16 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/cosmiconfig/dist/getPropertyByPath.d.ts: -------------------------------------------------------------------------------- 1 | declare function getPropertyByPath(source: { 2 | [key: string]: unknown; 3 | }, path: string | Array): unknown; 4 | export { getPropertyByPath }; 5 | //# sourceMappingURL=getPropertyByPath.d.ts.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/css-what/lib/es/index.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAC;AACxB,OAAO,EAAE,WAAW,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAC7C,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/escalade/sync/index.d.mts: -------------------------------------------------------------------------------- 1 | export type Callback = ( 2 | directory: string, 3 | files: string[], 4 | ) => string | false | void; 5 | 6 | export default function ( 7 | directory: string, 8 | callback: Callback, 9 | ): string | void; 10 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/function-bind/test/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "rules": { 3 | "array-bracket-newline": 0, 4 | "array-element-newline": 0, 5 | "max-statements-per-line": [2, { "max": 2 }], 6 | "no-invalid-this": 0, 7 | "no-magic-numbers": 0, 8 | } 9 | } 10 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/js-yaml/lib/type/seq.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var Type = require('../type'); 4 | 5 | module.exports = new Type('tag:yaml.org,2002:seq', { 6 | kind: 'sequence', 7 | construct: function (data) { return data !== null ? data : []; } 8 | }); 9 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/pac-resolver/dist/dnsResolve.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"dnsResolve.d.ts","sourceRoot":"","sources":["../src/dnsResolve.ts"],"names":[],"mappings":"AAEA;;;;;;;;;;;;;GAaG;AAEH,wBAA8B,UAAU,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,GAAG,IAAI,CAAC,CAW7E"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer/lib/cjs/puppeteer/node/install.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"install.d.ts","sourceRoot":"","sources":["../../../../src/node/install.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AA4DH;;GAEG;AACH,wBAAsB,gBAAgB,IAAI,OAAO,CAAC,IAAI,CAAC,CAkEtD"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer/lib/esm/puppeteer/node/install.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"install.d.ts","sourceRoot":"","sources":["../../../../src/node/install.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AA4DH;;GAEG;AACH,wBAAsB,gBAAgB,IAAI,OAAO,CAAC,IAAI,CAAC,CAkEtD"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/semver/ranges/ltr.js: -------------------------------------------------------------------------------- 1 | const outside = require('./outside') 2 | // Determine if version is less than all the versions possible in the range 3 | const ltr = (version, range, options) => outside(version, range, '<', options) 4 | module.exports = ltr 5 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/resources/beta/assistants/index.mjs.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.mjs","sourceRoot":"","sources":["../../../src/resources/beta/assistants/index.ts"],"names":[],"mappings":"AAAA,qDAAqD;OAE9C,EAML,cAAc,EACd,UAAU,GACX;OACM,EAKL,kBAAkB,EAClB,KAAK,GACN"} -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/resources/beta/index.mjs.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.mjs","sourceRoot":"","sources":["../../src/resources/beta/index.ts"],"names":[],"mappings":"AAAA,qDAAqD;OAE9C,EAML,cAAc,EACd,UAAU,GACX;OACM,EAAE,IAAI,EAAE;OACR,EAAE,IAAI,EAAE;OACR,EAML,OAAO,GACR"} -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/resources/beta/threads/runs/index.mjs.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.mjs","sourceRoot":"","sources":["../../../../src/resources/beta/threads/runs/index.ts"],"names":[],"mappings":"AAAA,qDAAqD;OAE9C,EAQL,YAAY,EACZ,KAAK,GACN;OACM,EAOL,QAAQ,EACR,IAAI,GACL"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/css-what/lib/commonjs/index.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,SAAS,CAAC;AACxB,OAAO,EAAE,WAAW,EAAE,KAAK,EAAE,MAAM,SAAS,CAAC;AAC7C,OAAO,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/debug/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "env": { 3 | "browser": true, 4 | "node": true 5 | }, 6 | "rules": { 7 | "no-console": 0, 8 | "no-empty": [1, { "allowEmptyCatch": true }] 9 | }, 10 | "extends": "eslint:recommended" 11 | } 12 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/hasown/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var call = Function.prototype.call; 4 | var $hasOwn = Object.prototype.hasOwnProperty; 5 | var bind = require('function-bind'); 6 | 7 | /** @type {import('.')} */ 8 | module.exports = bind.call(call, $hasOwn); 9 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/pac-resolver/dist/dnsDomainLevels.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"dnsDomainLevels.d.ts","sourceRoot":"","sources":["../src/dnsDomainLevels.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;GAeG;AACH,MAAM,CAAC,OAAO,UAAU,eAAe,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAO5D"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/pac-resolver/dist/ip.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"ip.d.ts","sourceRoot":"","sources":["../src/ip.ts"],"names":[],"mappings":"AAEA,eAAO,MAAM,EAAE;eACH,MAAM;qBAsBA,MAAM,GAAG,OAAO;qBAQhB,QAAQ,GAAG,MAAM;CAWlC,CAAC;AAYF,KAAK,QAAQ,GAAG,MAAM,GAAG,MAAM,CAAA"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/pac-resolver/dist/isPlainHostName.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"isPlainHostName.d.ts","sourceRoot":"","sources":["../src/isPlainHostName.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;GAeG;AAEH,MAAM,CAAC,OAAO,UAAU,eAAe,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAE7D"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/cjs/puppeteer/util/util.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"util.js","sourceRoot":"","sources":["../../../../src/util/util.ts"],"names":[],"mappings":";AAAA;;;;GAIG;;;;;;;;;;;;;;;;AAEH,8CAA4B;AAC5B,gDAA8B;AAC9B,iDAA+B;AAC/B,yDAAuC;AACvC,kDAAgC"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/semver/ranges/gtr.js: -------------------------------------------------------------------------------- 1 | // Determine if version is greater than all the versions possible in the range. 2 | const outside = require('./outside') 3 | const gtr = (version, range, options) => outside(version, range, '>', options) 4 | module.exports = gtr 5 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/@types/node/assert/strict.d.ts: -------------------------------------------------------------------------------- 1 | declare module "assert/strict" { 2 | import { strict } from "node:assert"; 3 | export = strict; 4 | } 5 | declare module "node:assert/strict" { 6 | import { strict } from "node:assert"; 7 | export = strict; 8 | } 9 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/resources/beta/assistants/index.mjs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec by Stainless. 2 | export { AssistantsPage, Assistants, } from "./assistants.mjs"; 3 | export { AssistantFilesPage, Files, } from "./files.mjs"; 4 | //# sourceMappingURL=index.mjs.map -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/src/lib/.keep: -------------------------------------------------------------------------------- 1 | File generated from our OpenAPI spec by Stainless. 2 | 3 | This directory can be used to store custom files to expand the SDK. 4 | It is ignored by Stainless code generation and its content (other than this keep file) won't be touched. 5 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/undici-types/interceptors.d.ts: -------------------------------------------------------------------------------- 1 | import Dispatcher from "./dispatcher"; 2 | 3 | type RedirectInterceptorOpts = { maxRedirections?: number } 4 | 5 | export declare function createRedirectInterceptor (opts: RedirectInterceptorOpts): Dispatcher.DispatchInterceptor 6 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/chromium-bidi/lib/esm/bidiServer/WebSocketServer.d.ts: -------------------------------------------------------------------------------- 1 | import debug from 'debug'; 2 | export declare const debugInfo: debug.Debugger; 3 | export declare class WebSocketServer { 4 | #private; 5 | constructor(port: number, verbose: boolean); 6 | } 7 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/cosmiconfig/dist/getDirectory.d.ts: -------------------------------------------------------------------------------- 1 | declare function getDirectory(filepath: string): Promise; 2 | declare function getDirectorySync(filepath: string): string; 3 | export { getDirectory, getDirectorySync }; 4 | //# sourceMappingURL=getDirectory.d.ts.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/esm/puppeteer/index.js: -------------------------------------------------------------------------------- 1 | /** 2 | * @license 3 | * Copyright 2017 Google Inc. 4 | * SPDX-License-Identifier: Apache-2.0 5 | */ 6 | export * from './index-browser.js'; 7 | export * from './node/node.js'; 8 | //# sourceMappingURL=index.js.map -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/@types/node/ts4.8/assert/strict.d.ts: -------------------------------------------------------------------------------- 1 | declare module "assert/strict" { 2 | import { strict } from "node:assert"; 3 | export = strict; 4 | } 5 | declare module "node:assert/strict" { 6 | import { strict } from "node:assert"; 7 | export = strict; 8 | } 9 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/formdata-node/@type/isFile.d.ts: -------------------------------------------------------------------------------- 1 | import { File } from "./File"; 2 | /** 3 | * Checks if given value is a File, Blob or file-look-a-like object. 4 | * 5 | * @param value A value to test 6 | */ 7 | export declare const isFile: (value: unknown) => value is File; 8 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/mime-db/index.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * mime-db 3 | * Copyright(c) 2014 Jonathan Ong 4 | * Copyright(c) 2015-2022 Douglas Christopher Wilson 5 | * MIT Licensed 6 | */ 7 | 8 | /** 9 | * Module exports. 10 | */ 11 | 12 | module.exports = require('./db.json') 13 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/_shims/bun-runtime.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * Disclaimer: modules in _shims aren't intended to be imported by SDK users. 3 | */ 4 | import { type Shims } from "./registry.js"; 5 | export declare function getRuntime(): Shims; 6 | //# sourceMappingURL=bun-runtime.d.ts.map -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/resources/beta/threads/index.mjs.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.mjs","sourceRoot":"","sources":["../../../src/resources/beta/threads/index.ts"],"names":[],"mappings":"AAAA,qDAAqD;OAE9C,EAQL,kBAAkB,EAClB,QAAQ,GACT;OACM,EAOL,QAAQ,EACR,IAAI,GACL;OACM,EAML,OAAO,GACR"} -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/resources/beta/threads/messages/index.mjs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec by Stainless. 2 | export { ThreadMessagesPage, Messages, } from "./messages.mjs"; 3 | export { MessageFilesPage, Files } from "./files.mjs"; 4 | //# sourceMappingURL=index.mjs.map -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/resources/fine-tuning/index.mjs: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec by Stainless. 2 | export { FineTuning } from "./fine-tuning.mjs"; 3 | export { FineTuningJobsPage, FineTuningJobEventsPage, Jobs, } from "./jobs.mjs"; 4 | //# sourceMappingURL=index.mjs.map -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/strip-ansi/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | const ansiRegex = require('ansi-regex'); 3 | 4 | const stripAnsi = string => typeof string === 'string' ? string.replace(ansiRegex(), '') : string; 5 | 6 | module.exports = stripAnsi; 7 | module.exports.default = stripAnsi; 8 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/@types/node/assert/strict.d.ts: -------------------------------------------------------------------------------- 1 | declare module "assert/strict" { 2 | import { strict } from "node:assert"; 3 | export = strict; 4 | } 5 | declare module "node:assert/strict" { 6 | import { strict } from "node:assert"; 7 | export = strict; 8 | } 9 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/ast-types/gen/namedTypes.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.namedTypes = void 0; 4 | var namedTypes; 5 | (function (namedTypes) { 6 | })(namedTypes = exports.namedTypes || (exports.namedTypes = {})); 7 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/ast-types/types.d.ts: -------------------------------------------------------------------------------- 1 | export declare type Fork = { 2 | use(plugin: Plugin): T; 3 | }; 4 | export declare type Plugin = (fork: Fork) => T; 5 | export declare type Def = Plugin; 6 | export declare type Omit = Pick>; 7 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/chromium-bidi/lib/cjs/protocol/generated/webdriver-bidi-bluetooth.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"webdriver-bidi-bluetooth.js","sourceRoot":"","sources":["../../../../src/protocol/generated/webdriver-bidi-bluetooth.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;GAeG"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/chromium-bidi/lib/esm/protocol/generated/webdriver-bidi-bluetooth.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"webdriver-bidi-bluetooth.js","sourceRoot":"","sources":["../../../../src/protocol/generated/webdriver-bidi-bluetooth.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;GAeG"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/pac-resolver/dist/ip.d.ts: -------------------------------------------------------------------------------- 1 | export declare const ip: { 2 | address(): string; 3 | isLoopback(addr: string): boolean; 4 | loopback(family: IpFamily): string; 5 | }; 6 | type IpFamily = 'ipv4' | 'ipv6'; 7 | export {}; 8 | //# sourceMappingURL=ip.d.ts.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/cjs/puppeteer/index.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * @license 3 | * Copyright 2017 Google Inc. 4 | * SPDX-License-Identifier: Apache-2.0 5 | */ 6 | export * from './index-browser.js'; 7 | export * from './node/node.js'; 8 | //# sourceMappingURL=index.d.ts.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/esm/puppeteer/index.d.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * @license 3 | * Copyright 2017 Google Inc. 4 | * SPDX-License-Identifier: Apache-2.0 5 | */ 6 | export * from './index-browser.js'; 7 | export * from './node/node.js'; 8 | //# sourceMappingURL=index.d.ts.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/semver/ranges/intersects.js: -------------------------------------------------------------------------------- 1 | const Range = require('../classes/range') 2 | const intersects = (r1, r2, options) => { 3 | r1 = new Range(r1, options) 4 | r2 = new Range(r2, options) 5 | return r1.intersects(r2, options) 6 | } 7 | module.exports = intersects 8 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/side-channel/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | 4 | "extends": "@ljharb", 5 | 6 | "rules": { 7 | "max-lines-per-function": 0, 8 | "multiline-comment-style": 1, 9 | "new-cap": [2, { "capIsNewExceptions": ["GetIntrinsic"] }], 10 | }, 11 | } 12 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/formdata-node/lib/cjs/isBlob.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.isBlob = void 0; 4 | const Blob_1 = require("./Blob"); 5 | const isBlob = (value) => value instanceof Blob_1.Blob; 6 | exports.isBlob = isBlob; 7 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/formdata-node/lib/cjs/isFile.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.isFile = void 0; 4 | const File_1 = require("./File"); 5 | const isFile = (value) => value instanceof File_1.File; 6 | exports.isFile = isFile; 7 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/formdata-node/lib/esm/deprecateConstructorEntries.js: -------------------------------------------------------------------------------- 1 | import { deprecate } from "util"; 2 | export const deprecateConstructorEntries = deprecate(() => { }, "Constructor \"entries\" argument is not spec-compliant " 3 | + "and will be removed in next major release."); 4 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/resources/beta/threads/messages/index.mjs.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.mjs","sourceRoot":"","sources":["../../../../src/resources/beta/threads/messages/index.ts"],"names":[],"mappings":"AAAA,qDAAqD;OAE9C,EAQL,kBAAkB,EAClB,QAAQ,GACT;OACM,EAA+B,gBAAgB,EAAE,KAAK,EAAE"} -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/shims/web.mjs: -------------------------------------------------------------------------------- 1 | import * as types from "../_shims/web-types.mjs"; 2 | import { setShims } from "../_shims/registry.mjs"; 3 | import { getRuntime } from "../_shims/web-runtime.mjs"; 4 | setShims(getRuntime({ manuallyImported: true })); 5 | //# sourceMappingURL=web.mjs.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/@puppeteer/browsers/src/main-cli.ts: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | /** 4 | * @license 5 | * Copyright 2023 Google Inc. 6 | * SPDX-License-Identifier: Apache-2.0 7 | */ 8 | 9 | import {CLI} from './CLI.js'; 10 | 11 | void new CLI().run(process.argv); 12 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/chromium-bidi/lib/cjs/protocol/generated/webdriver-bidi-permissions.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"webdriver-bidi-permissions.js","sourceRoot":"","sources":["../../../../src/protocol/generated/webdriver-bidi-permissions.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;GAeG"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/chromium-bidi/lib/esm/protocol/generated/webdriver-bidi-permissions.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"webdriver-bidi-permissions.js","sourceRoot":"","sources":["../../../../src/protocol/generated/webdriver-bidi-permissions.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;GAeG"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/css-what/lib/es/stringify.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"stringify.d.ts","sourceRoot":"","sources":["../../src/stringify.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAiC,MAAM,SAAS,CAAC;AA6BlE;;;;GAIG;AACH,wBAAgB,SAAS,CAAC,QAAQ,EAAE,QAAQ,EAAE,EAAE,GAAG,MAAM,CAIxD"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/ip-address/dist/address-error.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"address-error.d.ts","sourceRoot":"","sources":["../src/address-error.ts"],"names":[],"mappings":"AAAA,qBAAa,YAAa,SAAQ,KAAK;IACrC,YAAY,CAAC,EAAE,MAAM,CAAC;gBAEV,OAAO,EAAE,MAAM,EAAE,YAAY,CAAC,EAAE,MAAM;CASnD"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/mime-db/index.js: -------------------------------------------------------------------------------- 1 | /*! 2 | * mime-db 3 | * Copyright(c) 2014 Jonathan Ong 4 | * Copyright(c) 2015-2022 Douglas Christopher Wilson 5 | * MIT Licensed 6 | */ 7 | 8 | /** 9 | * Module exports. 10 | */ 11 | 12 | module.exports = require('./db.json') 13 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/pac-resolver/dist/dateRange.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"dateRange.d.ts","sourceRoot":"","sources":["../src/dateRange.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgEG;AAEH,MAAM,CAAC,OAAO,UAAU,SAAS,IAAI,OAAO,CAG3C"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/pac-resolver/dist/dnsDomainIs.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"dnsDomainIs.d.ts","sourceRoot":"","sources":["../src/dnsDomainIs.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,MAAM,CAAC,OAAO,UAAU,WAAW,CAAC,IAAI,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,GAAG,OAAO,CAIzE"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/pac-resolver/dist/shExpMatch.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"shExpMatch.d.ts","sourceRoot":"","sources":["../src/shExpMatch.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;GAoBG;AAEH,MAAM,CAAC,OAAO,UAAU,UAAU,CAAC,GAAG,EAAE,MAAM,EAAE,KAAK,EAAE,MAAM,GAAG,OAAO,CAGtE"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/cjs/puppeteer/api/ElementHandleSymbol.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"ElementHandleSymbol.d.ts","sourceRoot":"","sources":["../../../../src/api/ElementHandleSymbol.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH;;GAEG;AACH,eAAO,MAAM,gBAAgB,eAA6B,CAAC"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/cjs/puppeteer/index-browser.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index-browser.js","sourceRoot":"","sources":["../../../src/index-browser.ts"],"names":[],"mappings":";AAAA;;;;GAIG;;;;;;;;;;;;;;;;AAKH,+CAA6B;AAC7B,+CAA6B;AAC7B,qDAAmC;AACnC,iDAA+B;AAC/B,iDAA+B"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/esm/puppeteer/api/ElementHandleSymbol.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"ElementHandleSymbol.d.ts","sourceRoot":"","sources":["../../../../src/api/ElementHandleSymbol.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH;;GAEG;AACH,eAAO,MAAM,gBAAgB,eAA6B,CAAC"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/src/api/ElementHandleSymbol.ts: -------------------------------------------------------------------------------- 1 | /** 2 | * @license 3 | * Copyright 2023 Google Inc. 4 | * SPDX-License-Identifier: Apache-2.0 5 | */ 6 | 7 | /** 8 | * @internal 9 | */ 10 | export const _isElementHandle = Symbol('_isElementHandle'); 11 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/simple-update-notifier/src/types.ts: -------------------------------------------------------------------------------- 1 | export interface IUpdate { 2 | pkg: { name: string; version: string }; 3 | updateCheckInterval?: number; 4 | shouldNotifyInNpmScript?: boolean; 5 | distTag?: string; 6 | alwaysRun?: boolean; 7 | debug?: boolean; 8 | } 9 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/shims/web.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"web.js","sourceRoot":"","sources":["../src/shims/web.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;AAAA,aAAa;AACb,8DAA6C;AAC7C,oDAA8C;AAC9C,0DAAmD;AACnD,IAAA,mBAAQ,EAAC,IAAA,wBAAU,EAAC,EAAE,gBAAgB,EAAE,IAAI,EAAE,CAAC,CAAC,CAAC"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/@puppeteer/browsers/lib/cjs/fileUtil.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"fileUtil.d.ts","sourceRoot":"","sources":["../../src/fileUtil.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAWH;;GAEG;AACH,wBAAsB,aAAa,CACjC,WAAW,EAAE,MAAM,EACnB,UAAU,EAAE,MAAM,GACjB,OAAO,CAAC,IAAI,CAAC,CAuBf"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/@puppeteer/browsers/lib/esm/fileUtil.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"fileUtil.d.ts","sourceRoot":"","sources":["../../src/fileUtil.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAWH;;GAEG;AACH,wBAAsB,aAAa,CACjC,WAAW,EAAE,MAAM,EACnB,UAAU,EAAE,MAAM,GACjB,OAAO,CAAC,IAAI,CAAC,CAuBf"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/@puppeteer/browsers/lib/esm/main-cli.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"main-cli.js","sourceRoot":"","sources":["../../src/main-cli.ts"],"names":[],"mappings":";AAEA;;;;GAIG;AAEH,OAAO,EAAC,GAAG,EAAC,MAAM,UAAU,CAAC;AAE7B,KAAK,IAAI,GAAG,EAAE,CAAC,GAAG,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/css-what/lib/commonjs/stringify.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"stringify.d.ts","sourceRoot":"","sources":["../../src/stringify.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAiC,MAAM,SAAS,CAAC;AA6BlE;;;;GAIG;AACH,wBAAgB,SAAS,CAAC,QAAQ,EAAE,QAAQ,EAAE,EAAE,GAAG,MAAM,CAIxD"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/has-property-descriptors/.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "root": true, 3 | 4 | "extends": "@ljharb", 5 | 6 | "rules": { 7 | "func-name-matching": 0, 8 | "id-length": 0, 9 | "new-cap": [2, { 10 | "capIsNewExceptions": ["GetIntrinsic"], 11 | }], 12 | }, 13 | } 14 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/has-proto/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var test = { 4 | foo: {} 5 | }; 6 | 7 | var $Object = Object; 8 | 9 | module.exports = function hasProto() { 10 | return { __proto__: test }.foo === test.foo && !({ __proto__: null } instanceof $Object); 11 | }; 12 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/is-arrayish/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = function isArrayish(obj) { 4 | if (!obj) { 5 | return false; 6 | } 7 | 8 | return obj instanceof Array || Array.isArray(obj) || 9 | (obj.length >= 0 && obj.splice instanceof Function); 10 | }; 11 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/cjs/puppeteer/common/types.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /** 3 | * @license 4 | * Copyright 2020 Google Inc. 5 | * SPDX-License-Identifier: Apache-2.0 6 | */ 7 | Object.defineProperty(exports, "__esModule", { value: true }); 8 | //# sourceMappingURL=types.js.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/semver/functions/prerelease.js: -------------------------------------------------------------------------------- 1 | const parse = require('./parse') 2 | const prerelease = (version, options) => { 3 | const parsed = parse(version, options) 4 | return (parsed && parsed.prerelease.length) ? parsed.prerelease : null 5 | } 6 | module.exports = prerelease 7 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/zod/lib/errors.d.ts: -------------------------------------------------------------------------------- 1 | import defaultErrorMap from "./locales/en"; 2 | import type { ZodErrorMap } from "./ZodError"; 3 | export { defaultErrorMap }; 4 | export declare function setErrorMap(map: ZodErrorMap): void; 5 | export declare function getErrorMap(): ZodErrorMap; 6 | -------------------------------------------------------------------------------- /projects/compound_interest_calculator/node_modules/strip-ansi/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | const ansiRegex = require('ansi-regex'); 3 | 4 | const stripAnsi = string => typeof string === 'string' ? string.replace(ansiRegex(), '') : string; 5 | 6 | module.exports = stripAnsi; 7 | module.exports.default = stripAnsi; 8 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/entities/lib/generated/decode-data-xml.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"decode-data-xml.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/entities/61afd4701eaa736978b13c7351cd3de9a96b04bc/src/","sources":["generated/decode-data-xml.ts"],"names":[],"mappings":";AAEA,wBAKE"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/ip-address/dist/v4/constants.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../../src/v4/constants.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,IAAI,KAAK,CAAC;AACvB,eAAO,MAAM,MAAM,IAAI,CAAC;AAExB,eAAO,MAAM,UAAU,QAAsK,CAAC;AAE9L,eAAO,MAAM,gBAAgB,QAAe,CAAC"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/ip-address/dist/v4/constants.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"constants.js","sourceRoot":"","sources":["../../src/v4/constants.ts"],"names":[],"mappings":";;;AAAa,QAAA,IAAI,GAAG,EAAE,CAAC;AACV,QAAA,MAAM,GAAG,CAAC,CAAC;AAEX,QAAA,UAAU,GAAG,mKAAmK,CAAC;AAEjL,QAAA,gBAAgB,GAAG,YAAY,CAAC"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/cjs/puppeteer/common/Cookie.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /** 3 | * @license 4 | * Copyright 2024 Google Inc. 5 | * SPDX-License-Identifier: Apache-2.0 6 | */ 7 | Object.defineProperty(exports, "__esModule", { value: true }); 8 | //# sourceMappingURL=Cookie.js.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/cjs/puppeteer/common/SupportedBrowser.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"SupportedBrowser.d.ts","sourceRoot":"","sources":["../../../../src/common/SupportedBrowser.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH;;;;GAIG;AACH,MAAM,MAAM,gBAAgB,GAAG,QAAQ,GAAG,SAAS,CAAC"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/esm/puppeteer/common/SupportedBrowser.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"SupportedBrowser.d.ts","sourceRoot":"","sources":["../../../../src/common/SupportedBrowser.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH;;;;GAIG;AACH,MAAM,MAAM,gBAAgB,GAAG,QAAQ,GAAG,SAAS,CAAC"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/queue-tick/test.js: -------------------------------------------------------------------------------- 1 | const tape = require('tape') 2 | const queueTick = require('./') 3 | const js = require('./queue-microtask') 4 | 5 | tape('basic', function (t) { 6 | t.plan(2) 7 | 8 | queueTick(() => t.pass('tick')) 9 | js(() => t.pass('tock')) 10 | }) 11 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/socks/.eslintrc.cjs: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | parser: '@typescript-eslint/parser', 4 | plugins: [ 5 | '@typescript-eslint', 6 | ], 7 | extends: [ 8 | 'eslint:recommended', 9 | 'plugin:@typescript-eslint/recommended', 10 | ], 11 | }; -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/yargs/browser.mjs: -------------------------------------------------------------------------------- 1 | // Bootstrap yargs for browser: 2 | import browserPlatformShim from './lib/platform-shims/browser.mjs'; 3 | import {YargsFactory} from './build/lib/yargs-factory.js'; 4 | 5 | const Yargs = YargsFactory(browserPlatformShim); 6 | 7 | export default Yargs; 8 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/yargs/index.mjs: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | // Bootstraps yargs for ESM: 4 | import esmPlatformShim from './lib/platform-shims/esm.mjs'; 5 | import {YargsFactory} from './build/lib/yargs-factory.js'; 6 | 7 | const Yargs = YargsFactory(esmPlatformShim); 8 | export default Yargs; 9 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/md5/webpack.config.js: -------------------------------------------------------------------------------- 1 | const {resolve} = require('path'); 2 | 3 | module.exports = { 4 | entry: [ 5 | './md5.js' 6 | ], 7 | output: { 8 | path: resolve('./dist'), 9 | filename: 'md5.min.js', 10 | libraryTarget: "var", 11 | library: "MD5" 12 | } 13 | }; -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/_shims/MultipartBody.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"MultipartBody.d.ts","sourceRoot":"","sources":["../src/_shims/MultipartBody.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,qBAAa,aAAa;IACL,IAAI,EAAE,GAAG;gBAAT,IAAI,EAAE,GAAG;IAC5B,IAAI,CAAC,MAAM,CAAC,WAAW,CAAC,IAAI,MAAM,CAEjC;CACF"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/@puppeteer/browsers/lib/esm/main-cli.js: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | /** 3 | * @license 4 | * Copyright 2023 Google Inc. 5 | * SPDX-License-Identifier: Apache-2.0 6 | */ 7 | import { CLI } from './CLI.js'; 8 | void new CLI().run(process.argv); 9 | //# sourceMappingURL=main-cli.js.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/entities/lib/esm/generated/decode-data-html.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"decode-data-html.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/entities/61afd4701eaa736978b13c7351cd3de9a96b04bc/src/","sources":["generated/decode-data-html.ts"],"names":[],"mappings":";AAEA,wBAKE"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/entities/lib/esm/generated/decode-data-xml.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"decode-data-xml.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/entities/61afd4701eaa736978b13c7351cd3de9a96b04bc/src/","sources":["generated/decode-data-xml.ts"],"names":[],"mappings":";AAEA,wBAKE"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/entities/lib/generated/decode-data-html.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"decode-data-html.d.ts","sourceRoot":"https://raw.githubusercontent.com/fb55/entities/61afd4701eaa736978b13c7351cd3de9a96b04bc/src/","sources":["generated/decode-data-html.ts"],"names":[],"mappings":";AAEA,wBAKE"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/pac-resolver/dist/isInNet.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"isInNet.d.ts","sourceRoot":"","sources":["../src/isInNet.ts"],"names":[],"mappings":"AAGA;;;;;;;;;;;;;;;;;;;;;GAqBG;AAEH,wBAA8B,OAAO,CACpC,IAAI,EAAE,MAAM,EACZ,OAAO,EAAE,MAAM,EACf,IAAI,EAAE,MAAM,GACV,OAAO,CAAC,OAAO,CAAC,CAYlB"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/cjs/puppeteer/api/ElementHandleSymbol.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"ElementHandleSymbol.js","sourceRoot":"","sources":["../../../../src/api/ElementHandleSymbol.ts"],"names":[],"mappings":";AAAA;;;;GAIG;;;AAEH;;GAEG;AACU,QAAA,gBAAgB,GAAG,MAAM,CAAC,kBAAkB,CAAC,CAAC"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/cjs/puppeteer/api/Environment.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /** 3 | * @license 4 | * Copyright 2023 Google Inc. 5 | * SPDX-License-Identifier: Apache-2.0 6 | */ 7 | Object.defineProperty(exports, "__esModule", { value: true }); 8 | //# sourceMappingURL=Environment.js.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/cjs/puppeteer/common/Viewport.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /** 3 | * @license 4 | * Copyright 2020 Google Inc. 5 | * SPDX-License-Identifier: Apache-2.0 6 | */ 7 | Object.defineProperty(exports, "__esModule", { value: true }); 8 | //# sourceMappingURL=Viewport.js.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/cjs/puppeteer/generated/version.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | exports.packageVersion = void 0; 4 | /** 5 | * @internal 6 | */ 7 | exports.packageVersion = '23.5.2'; 8 | //# sourceMappingURL=version.js.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/cjs/puppeteer/node/node.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"node.js","sourceRoot":"","sources":["../../../../src/node/node.ts"],"names":[],"mappings":";AAAA;;;;GAIG;;;;;;;;;;;;;;;;AAEH,sDAAoC;AACpC,uDAAqC;AACrC,qDAAmC;AACnC,qDAAmC;AACnC,uDAAqC;AACrC,qDAAmC;AACnC,sDAAoC"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/esm/puppeteer/util/util.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"util.js","sourceRoot":"","sources":["../../../../src/util/util.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,cAAc,aAAa,CAAC;AAC5B,cAAc,eAAe,CAAC;AAC9B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,wBAAwB,CAAC;AACvC,cAAc,iBAAiB,CAAC"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/qs/lib/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | var stringify = require('./stringify'); 4 | var parse = require('./parse'); 5 | var formats = require('./formats'); 6 | 7 | module.exports = { 8 | formats: formats, 9 | parse: parse, 10 | stringify: stringify 11 | }; 12 | -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/src/resource.ts: -------------------------------------------------------------------------------- 1 | // File generated from our OpenAPI spec by Stainless. 2 | 3 | import type { OpenAI } from './index'; 4 | 5 | export class APIResource { 6 | protected _client: OpenAI; 7 | 8 | constructor(client: OpenAI) { 9 | this._client = client; 10 | } 11 | } 12 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/@puppeteer/browsers/lib/cjs/detectPlatform.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"detectPlatform.d.ts","sourceRoot":"","sources":["../../src/detectPlatform.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAIH,OAAO,EAAC,eAAe,EAAC,MAAM,gCAAgC,CAAC;AAE/D;;GAEG;AACH,wBAAgB,qBAAqB,IAAI,eAAe,GAAG,SAAS,CAkBnE"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/@puppeteer/browsers/lib/esm/detectPlatform.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"detectPlatform.d.ts","sourceRoot":"","sources":["../../src/detectPlatform.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAIH,OAAO,EAAC,eAAe,EAAC,MAAM,gCAAgC,CAAC;AAE/D;;GAEG;AACH,wBAAgB,qBAAqB,IAAI,eAAe,GAAG,SAAS,CAkBnE"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/get-uri/dist/notfound.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"notfound.js","sourceRoot":"","sources":["../src/notfound.ts"],"names":[],"mappings":";AAAA;;;;;GAKG;;AAEH,MAAqB,aAAc,SAAQ,KAAK;IAG/C,YAAY,OAAgB;QAC3B,KAAK,CAAC,OAAO,IAAI,+CAA+C,CAAC,CAAC;QAH5D,SAAI,GAAG,WAAW,CAAC;IAI1B,CAAC;CACD;AAND,gCAMC"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/is-binary-path/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | const path = require('path'); 3 | const binaryExtensions = require('binary-extensions'); 4 | 5 | const extensions = new Set(binaryExtensions); 6 | 7 | module.exports = filePath => extensions.has(path.extname(filePath).slice(1).toLowerCase()); 8 | -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/pac-resolver/dist/dateRange.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"dateRange.js","sourceRoot":"","sources":["../src/dateRange.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgEG;;AAEH,SAAwB,SAAS;IAChC,sBAAsB;IACtB,OAAO,KAAK,CAAC;AACd,CAAC;AAHD,4BAGC"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/pac-resolver/dist/isPlainHostName.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"isPlainHostName.js","sourceRoot":"","sources":["../src/isPlainHostName.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;GAeG;;AAEH,SAAwB,eAAe,CAAC,IAAY;IACnD,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;AACzB,CAAC;AAFD,kCAEC"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/cjs/puppeteer/bidi/core/Connection.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /** 3 | * @license 4 | * Copyright 2024 Google Inc. 5 | * SPDX-License-Identifier: Apache-2.0 6 | */ 7 | Object.defineProperty(exports, "__esModule", { value: true }); 8 | //# sourceMappingURL=Connection.js.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/cjs/puppeteer/cdp/TargetManager.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /** 3 | * @license 4 | * Copyright 2022 Google Inc. 5 | * SPDX-License-Identifier: Apache-2.0 6 | */ 7 | Object.defineProperty(exports, "__esModule", { value: true }); 8 | //# sourceMappingURL=TargetManager.js.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/cjs/puppeteer/node/LaunchOptions.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | /** 3 | * @license 4 | * Copyright 2020 Google Inc. 5 | * SPDX-License-Identifier: Apache-2.0 6 | */ 7 | Object.defineProperty(exports, "__esModule", { value: true }); 8 | //# sourceMappingURL=LaunchOptions.js.map -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/cjs/puppeteer/util/util.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"util.d.ts","sourceRoot":"","sources":["../../../../src/util/util.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,cAAc,aAAa,CAAC;AAC5B,cAAc,eAAe,CAAC;AAC9B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,wBAAwB,CAAC;AACvC,cAAc,iBAAiB,CAAC"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/esm/puppeteer/api/ElementHandleSymbol.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"ElementHandleSymbol.js","sourceRoot":"","sources":["../../../../src/api/ElementHandleSymbol.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH;;GAEG;AACH,MAAM,CAAC,MAAM,gBAAgB,GAAG,MAAM,CAAC,kBAAkB,CAAC,CAAC"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/puppeteer-core/lib/esm/puppeteer/util/util.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"util.d.ts","sourceRoot":"","sources":["../../../../src/util/util.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,cAAc,aAAa,CAAC;AAC5B,cAAc,eAAe,CAAC;AAC9B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,wBAAwB,CAAC;AACvC,cAAc,iBAAiB,CAAC"} -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/_shims/web-runtime.d.ts.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"web-runtime.d.ts","sourceRoot":"","sources":["../src/_shims/web-runtime.ts"],"names":[],"mappings":"AAKA,OAAO,EAAE,KAAK,KAAK,EAAE,MAAM,YAAY,CAAC;AAExC,wBAAgB,UAAU,CAAC,EAAE,gBAAgB,EAAE,GAAE;IAAE,gBAAgB,CAAC,EAAE,OAAO,CAAA;CAAO,GAAG,KAAK,CA+F3F"} -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/resources/fine-tuning/index.d.ts: -------------------------------------------------------------------------------- 1 | export { FineTuning } from "./fine-tuning.js"; 2 | export { FineTuningJob, FineTuningJobEvent, JobCreateParams, JobListParams, JobListEventsParams, FineTuningJobsPage, FineTuningJobEventsPage, Jobs, } from "./jobs.js"; 3 | //# sourceMappingURL=index.d.ts.map -------------------------------------------------------------------------------- /projects/AI_chatbot/node_modules/openai/resources/fine-tuning/index.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/resources/fine-tuning/index.ts"],"names":[],"mappings":";AAAA,qDAAqD;;;AAErD,gDAA2C;AAAlC,yGAAA,UAAU,OAAA;AACnB,kCASgB;AAHd,0GAAA,kBAAkB,OAAA;AAClB,+GAAA,uBAAuB,OAAA;AACvB,4FAAA,IAAI,OAAA"} -------------------------------------------------------------------------------- /projects/stocks_data_api/node_modules/chromium-bidi/lib/esm/utils/unitConversions.js.map: -------------------------------------------------------------------------------- 1 | {"version":3,"file":"unitConversions.js","sourceRoot":"","sources":["../../../src/utils/unitConversions.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;GAeG;AAEH,0DAA0D;AAC1D,MAAM,UAAU,YAAY,CAAC,EAAU;IACrC,OAAO,EAAE,GAAG,IAAI,CAAC;AACnB,CAAC"} --------------------------------------------------------------------------------