repo
stringclasses
4 values
file_path
stringlengths
6
193
extension
stringclasses
23 values
content
stringlengths
0
1.73M
token_count
int64
0
724k
__index_level_0__
int64
0
10.8k
hyperswitch-web
Dockerfile
none
FROM node:20-alpine # Add build essentials RUN apk add --no-cache make gcc g++ python3 WORKDIR /usr/src/app # Copy package files COPY package*.json ./ # Install dependencies RUN npm install --ignore-scripts # Copy the rest of the application code COPY . . # First, build ReScript code and wait for it to complete RUN npm run re:build && \ # Then build the application with webpack npm run build EXPOSE 9050 # For development, use a start script that ensures ReScript watch mode # runs before starting webpack dev server CMD npm run re:build && npm run start
144
10,221
hyperswitch-web
package.json
.json
{ "name": "orca-payment-page", "version": "0.121.2", "main": "index.js", "private": true, "dependencies": { "@glennsl/rescript-fetch": "^0.2.0", "@rescript/core": "^0.7.0", "@rescript/react": "^0.12.1", "@sentry/react": "^9.9.0", "@sentry/webpack-plugin": "^3.2.2", "react": "^18.2.0", "react-datepicker": "^6.9.0", "react-dom": "^18.2.0", "recoil": "^0.1.2", "webpack-merge": "^5.9.0" }, "scripts": { "build": "webpack --config webpack.common.js", "build:v2": "cross-env SDK_VERSION=v2 webpack --config webpack.common.js", "build:integ": "cross-env sdkEnv=integ webpack --config webpack.common.js", "build:playground": "npm run setup:playground && webpack --config webpack.common.js", "build:sandbox": "cross-env sdkEnv=sandbox webpack --config webpack.common.js", "build:prod": "cross-env sdkEnv=prod webpack --config webpack.common.js", "build:integ:v2": "cross-env sdkEnv=integ SDK_VERSION=v2 webpack --config webpack.common.js", "build:sandbox:v2": "cross-env sdkEnv=sandbox SDK_VERSION=v2 webpack --config webpack.common.js", "build:prod:v2": "cross-env sdkEnv=prod SDK_VERSION=v2 webpack --config webpack.common.js", "deploy-to-s3": "node ./scripts/pushToS3.js", "postinstall": "cd Hyperswitch-React-Demo-App && npm i", "prepare": "husky install", "re:build": "rescript", "re:clean": "rescript clean", "re:format": "rescript format -all", "re:start": "rescript -w", "setup:playground": "npm run postinstall && cd Hyperswitch-React-Demo-App && node promptScript.js", "start": "cross-env sdkEnv=local webpack serve --config webpack.dev.js", "start:playground": "npm run setup:playground && npm run start", "test": "cd cypress-tests && npm run cypress:run", "test:hooks": "npx eslint src/" }, "eslintConfig": { "extends": [ "react-app", "react-app/jest" ] }, "browserslist": { "production": [ ">0.2%", "not dead", "not op_mini all" ], "development": [ "last 1 chrome version", "last 1 firefox version", "last 1 safari version" ] }, "devDependencies": { "@babel/core": "^7.25.2", "@babel/preset-env": "^7.25.3", "@babel/preset-react": "^7.24.7", "@commitlint/cli": "^17.0.3", "@commitlint/config-conventional": "^17.0.3", "@semantic-release/changelog": "^6.0.3", "@semantic-release/commit-analyzer": "^13.0.0", "@semantic-release/git": "^10.0.1", "@semantic-release/npm": "^12.0.1", "@semantic-release/release-notes-generator": "^14.0.1", "autoprefixer": "^10.4.8", "babel-loader": "^9.1.3", "babel-plugin-add-react-displayname": "^0.0.5", "copy-webpack-plugin": "^11.0.0", "cross-env": "^7.0.3", "css-loader": "^6.7.1", "cz-conventional-changelog": "^3.3.0", "eslint": "^8.57.0", "eslint-plugin-promise": "^7.2.1", "eslint-plugin-react-hooks": "^4.6.0", "html-webpack-plugin": "^5.6.0", "husky": "^8.0.3", "mini-css-extract-plugin": "^1.3.1", "postcss": "^8.4.16", "postcss-loader": "^7.0.1", "rescript": "^11.1.0", "semantic-release": "^24.0.0", "tailwindcss": "^3.1.8", "terser-webpack-plugin": "^5.3.10", "webpack": "^5.94.0", "webpack-bundle-analyzer": "^4.10.2", "webpack-cli": "^5.1.4", "webpack-dev-server": "^5.1.0" }, "config": { "commitizen": { "path": "./node_modules/cz-conventional-changelog", "types": { "feat": { "description": "A new feature", "title": "Features" }, "fix": { "description": "A bug fix", "title": "Bug Fixes" }, "refactor": { "description": "A code change that neither fixes a bug nor adds a feature", "title": "Code Refactoring" }, "chore": { "description": "Other changes that don't modify src or test files", "title": "Chores" }, "docs": { "description": "Documentation only changes", "title": "Documentation" }, "revert": { "description": "Reverts a previous commit", "title": "Reverts" } } } }, "commitlint": { "extends": [ "@commitlint/config-conventional" ] }, "release": { "branches": [ "main", { "name": "release-[0-9]+", "prerelease": true } ], "repositoryUrl": "https://github.com/juspay/hyperswitch-web.git", "plugins": [ [ "@semantic-release/commit-analyzer", { "preset": "angular", "releaseRules": [ { "type": "refactor", "release": "patch" }, { "type": "chore", "release": "patch" }, { "type": "revert", "release": "patch" } ] } ], "@semantic-release/release-notes-generator", "@semantic-release/npm", "@semantic-release/changelog", "@semantic-release/git" ] } }
1,528
10,222
hyperswitch-web
CHANGELOG.md
.md
## [0.121.2](https://github.com/juspay/hyperswitch-web/compare/v0.121.1...v0.121.2) (2025-03-28) ### Bug Fixes * bancontact confirm payload ([#976](https://github.com/juspay/hyperswitch-web/issues/976)) ([bd5b5b1](https://github.com/juspay/hyperswitch-web/commit/bd5b5b1376aac14422af989bebe9c976ce3b4b05)) ## [0.121.1](https://github.com/juspay/hyperswitch-web/compare/v0.121.0...v0.121.1) (2025-03-28) # [0.121.0](https://github.com/juspay/hyperswitch-web/compare/v0.120.2...v0.121.0) (2025-03-28) ### Features * added instant bank transfer method ([#968](https://github.com/juspay/hyperswitch-web/issues/968)) ([a354546](https://github.com/juspay/hyperswitch-web/commit/a35454658c24d39e6d9ba3350d7528087c253994)) ## [0.120.2](https://github.com/juspay/hyperswitch-web/compare/v0.120.1...v0.120.2) (2025-03-28) ### Bug Fixes * **sentry:** fix sentry integrations ([#970](https://github.com/juspay/hyperswitch-web/issues/970)) ([be35ee7](https://github.com/juspay/hyperswitch-web/commit/be35ee7861d489edb43f9f5d5ee4dc0f0ccfb20c)) ## [0.120.1](https://github.com/juspay/hyperswitch-web/compare/v0.120.0...v0.120.1) (2025-03-28) # [0.120.0](https://github.com/juspay/hyperswitch-web/compare/v0.119.9...v0.120.0) (2025-03-27) ### Features * integration for redsys 3ds ([#963](https://github.com/juspay/hyperswitch-web/issues/963)) ([b4bea78](https://github.com/juspay/hyperswitch-web/commit/b4bea781254cc142ca565fd8d73bea7b6fbfc0c8)) ## [0.119.9](https://github.com/juspay/hyperswitch-web/compare/v0.119.8...v0.119.9) (2025-03-26) ## [0.119.8](https://github.com/juspay/hyperswitch-web/compare/v0.119.7...v0.119.8) (2025-03-26) ### Bug Fixes * HyperLoader Reinitialisation ([#966](https://github.com/juspay/hyperswitch-web/issues/966)) ([39f4bf2](https://github.com/juspay/hyperswitch-web/commit/39f4bf24a6cd4f1836139e8cf1af00b9b2b04fca)) ## [0.119.7](https://github.com/juspay/hyperswitch-web/compare/v0.119.6...v0.119.7) (2025-03-25) ## [0.119.6](https://github.com/juspay/hyperswitch-web/compare/v0.119.5...v0.119.6) (2025-03-25) ### Bug Fixes * remove hardcoded URLS while checking environment ([#954](https://github.com/juspay/hyperswitch-web/issues/954)) ([87fd61f](https://github.com/juspay/hyperswitch-web/commit/87fd61f21ce148463d45f317d2f3194247a1c731)) ## [0.119.5](https://github.com/juspay/hyperswitch-web/compare/v0.119.4...v0.119.5) (2025-03-25) ## [0.119.4](https://github.com/juspay/hyperswitch-web/compare/v0.119.3...v0.119.4) (2025-03-24) ## [0.119.3](https://github.com/juspay/hyperswitch-web/compare/v0.119.2...v0.119.3) (2025-03-24) ### Bug Fixes * updated the regex for CartesBancaires ([#952](https://github.com/juspay/hyperswitch-web/issues/952)) ([243bccd](https://github.com/juspay/hyperswitch-web/commit/243bccdd4c3c6c5b5db900448d8e1f1d86542cb5)) ## [0.119.2](https://github.com/juspay/hyperswitch-web/compare/v0.119.1...v0.119.2) (2025-03-19) ## [0.119.1](https://github.com/juspay/hyperswitch-web/compare/v0.119.0...v0.119.1) (2025-03-19) ### Bug Fixes * netcetera and cvc cypress test ([#956](https://github.com/juspay/hyperswitch-web/issues/956)) ([018d1be](https://github.com/juspay/hyperswitch-web/commit/018d1be67d1c41c6ab4160c5b7e3f84c39921e67)) # [0.119.0](https://github.com/juspay/hyperswitch-web/compare/v0.118.1...v0.119.0) (2025-03-18) ### Features * post message events for isFormReadyForSubmission ([#951](https://github.com/juspay/hyperswitch-web/issues/951)) ([589d342](https://github.com/juspay/hyperswitch-web/commit/589d3422c801c6bc08300dc4f09567c08300b2fa)) ## [0.118.1](https://github.com/juspay/hyperswitch-web/compare/v0.118.0...v0.118.1) (2025-03-18) ### Bug Fixes * react-sentry ([#946](https://github.com/juspay/hyperswitch-web/issues/946)) ([2de1210](https://github.com/juspay/hyperswitch-web/commit/2de1210220c137b73572210e3b2c113220bb0dbf)) # [0.118.0](https://github.com/juspay/hyperswitch-web/compare/v0.117.7...v0.118.0) (2025-03-17) ### Features * add EFT as a payment method ([#910](https://github.com/juspay/hyperswitch-web/issues/910)) ([976dc6f](https://github.com/juspay/hyperswitch-web/commit/976dc6fa35890e02315bc7f2c99ccfae4ee46490)), closes [Anurag-Sin#WPMHJ5619](https://github.com/Anurag-Sin/issues/WPMHJ5619) ## [0.117.7](https://github.com/juspay/hyperswitch-web/compare/v0.117.6...v0.117.7) (2025-03-12) ### Bug Fixes * correction in locale detection ([#948](https://github.com/juspay/hyperswitch-web/issues/948)) ([91f5b8b](https://github.com/juspay/hyperswitch-web/commit/91f5b8b5a615d52d6da9b0bc8941d889b925c240)) * fix pay button stuck on processing after QR code modal closes ([#944](https://github.com/juspay/hyperswitch-web/issues/944)) ([9681286](https://github.com/juspay/hyperswitch-web/commit/9681286b58808aacdd45c2ae5db148010ebf9dfb)) ## [0.117.6](https://github.com/juspay/hyperswitch-web/compare/v0.117.5...v0.117.6) (2025-03-12) ### Reverts * detect country correction ([#947](https://github.com/juspay/hyperswitch-web/issues/947)) ([afb3098](https://github.com/juspay/hyperswitch-web/commit/afb3098956ee2f17d670e39abf0d8f5401d81988)) ## [0.117.5](https://github.com/juspay/hyperswitch-web/compare/v0.117.4...v0.117.5) (2025-03-11) ### Bug Fixes * detect country correction ([#941](https://github.com/juspay/hyperswitch-web/issues/941)) ([40d7c70](https://github.com/juspay/hyperswitch-web/commit/40d7c7088af2ed37cabe76999a24a0885a3dcf66)) ## [0.117.4](https://github.com/juspay/hyperswitch-web/compare/v0.117.3...v0.117.4) (2025-03-11) ### Bug Fixes * added cust acceptance for samsung pay and removed italics for surcharge ([#943](https://github.com/juspay/hyperswitch-web/issues/943)) ([bcaf8c9](https://github.com/juspay/hyperswitch-web/commit/bcaf8c93a3bc5e642b46e1f66d8042b99e9c1bef)) ## [0.117.3](https://github.com/juspay/hyperswitch-web/compare/v0.117.2...v0.117.3) (2025-03-10) ## [0.117.2](https://github.com/juspay/hyperswitch-web/compare/v0.117.1...v0.117.2) (2025-03-07) ## [0.117.1](https://github.com/juspay/hyperswitch-web/compare/v0.117.0...v0.117.1) (2025-03-06) # [0.117.0](https://github.com/juspay/hyperswitch-web/compare/v0.116.0...v0.117.0) (2025-03-05) ### Features * update QR code page for DuitNow payment method ([#929](https://github.com/juspay/hyperswitch-web/issues/929)) ([cc76426](https://github.com/juspay/hyperswitch-web/commit/cc76426dcecebe73bd42f03d4c42bf910b753a15)) # [0.116.0](https://github.com/juspay/hyperswitch-web/compare/v0.115.4...v0.116.0) (2025-03-05) ### Features * add new rule to change color of input icon ([#935](https://github.com/juspay/hyperswitch-web/issues/935)) ([695b876](https://github.com/juspay/hyperswitch-web/commit/695b876467b08dd587d016c57b7a025eb17c3257)) ## [0.115.4](https://github.com/juspay/hyperswitch-web/compare/v0.115.3...v0.115.4) (2025-03-05) ### Bug Fixes * fix: Missing Billing Details ([#934](https://github.com/juspay/hyperswitch-web/issues/934)) ([9fda007](https://github.com/juspay/hyperswitch-web/commit/9fda007114c3405d032eaf0f9af317f09b1e46a7)) ## [0.115.3](https://github.com/juspay/hyperswitch-web/compare/v0.115.2...v0.115.3) (2025-03-04) ## [0.115.2](https://github.com/juspay/hyperswitch-web/compare/v0.115.1...v0.115.2) (2025-03-03) ## [0.115.1](https://github.com/juspay/hyperswitch-web/compare/v0.115.0...v0.115.1) (2025-02-27) ### Bug Fixes * fixed crypto pay body payload ([#919](https://github.com/juspay/hyperswitch-web/issues/919)) ([e956628](https://github.com/juspay/hyperswitch-web/commit/e9566287f96a257d261e1a5f9a131730814bc80c)) * fixed error handling of click to pay ([#923](https://github.com/juspay/hyperswitch-web/issues/923)) ([2ea9ff1](https://github.com/juspay/hyperswitch-web/commit/2ea9ff1a3b316b6e777ee7431952488233ab7f76)) * Fixed Responsive Behaviour for Saved Cards ([#922](https://github.com/juspay/hyperswitch-web/issues/922)) ([a23fd2b](https://github.com/juspay/hyperswitch-web/commit/a23fd2bcbd5dc4cd59b00185440241a5677584f4)) ## [0.115.1](https://github.com/juspay/hyperswitch-web/compare/v0.115.0...v0.115.1) (2025-02-27) ### Bug Fixes * fixed crypto pay body payload ([#919](https://github.com/juspay/hyperswitch-web/issues/919)) ([e956628](https://github.com/juspay/hyperswitch-web/commit/e9566287f96a257d261e1a5f9a131730814bc80c)) * fixed error handling of click to pay ([#923](https://github.com/juspay/hyperswitch-web/issues/923)) ([2ea9ff1](https://github.com/juspay/hyperswitch-web/commit/2ea9ff1a3b316b6e777ee7431952488233ab7f76)) * Fixed Responsive Behaviour for Saved Cards ([#922](https://github.com/juspay/hyperswitch-web/issues/922)) ([a23fd2b](https://github.com/juspay/hyperswitch-web/commit/a23fd2bcbd5dc4cd59b00185440241a5677584f4)) ## [0.115.1](https://github.com/juspay/hyperswitch-web/compare/v0.115.0...v0.115.1) (2025-02-27) ### Bug Fixes * fixed crypto pay body payload ([#919](https://github.com/juspay/hyperswitch-web/issues/919)) ([e956628](https://github.com/juspay/hyperswitch-web/commit/e9566287f96a257d261e1a5f9a131730814bc80c)) * fixed error handling of click to pay ([#923](https://github.com/juspay/hyperswitch-web/issues/923)) ([2ea9ff1](https://github.com/juspay/hyperswitch-web/commit/2ea9ff1a3b316b6e777ee7431952488233ab7f76)) * Fixed Responsive Behaviour for Saved Cards ([#922](https://github.com/juspay/hyperswitch-web/issues/922)) ([a23fd2b](https://github.com/juspay/hyperswitch-web/commit/a23fd2bcbd5dc4cd59b00185440241a5677584f4)) ## [0.115.1](https://github.com/juspay/hyperswitch-web/compare/v0.115.0...v0.115.1) (2025-02-27) ### Bug Fixes * fixed crypto pay body payload ([#919](https://github.com/juspay/hyperswitch-web/issues/919)) ([e956628](https://github.com/juspay/hyperswitch-web/commit/e9566287f96a257d261e1a5f9a131730814bc80c)) * fixed error handling of click to pay ([#923](https://github.com/juspay/hyperswitch-web/issues/923)) ([2ea9ff1](https://github.com/juspay/hyperswitch-web/commit/2ea9ff1a3b316b6e777ee7431952488233ab7f76)) * Fixed Responsive Behaviour for Saved Cards ([#922](https://github.com/juspay/hyperswitch-web/issues/922)) ([a23fd2b](https://github.com/juspay/hyperswitch-web/commit/a23fd2bcbd5dc4cd59b00185440241a5677584f4)) ## [0.115.1](https://github.com/juspay/hyperswitch-web/compare/v0.115.0...v0.115.1) (2025-02-25) ### Bug Fixes * fixed crypto pay body payload ([#919](https://github.com/juspay/hyperswitch-web/issues/919)) ([e956628](https://github.com/juspay/hyperswitch-web/commit/e9566287f96a257d261e1a5f9a131730814bc80c)) * fixed error handling of click to pay ([#923](https://github.com/juspay/hyperswitch-web/issues/923)) ([2ea9ff1](https://github.com/juspay/hyperswitch-web/commit/2ea9ff1a3b316b6e777ee7431952488233ab7f76)) # [0.115.0](https://github.com/juspay/hyperswitch-web/compare/v0.114.10...v0.115.0) (2025-02-25) ### Features * added display billing details feature ([#874](https://github.com/juspay/hyperswitch-web/issues/874)) ([be60bff](https://github.com/juspay/hyperswitch-web/commit/be60bff52838d953fc4868ac106c1b2ffd79e98c)) ## [0.114.10](https://github.com/juspay/hyperswitch-web/compare/v0.114.9...v0.114.10) (2025-02-25) ### Bug Fixes * fixed shimmer stuck for click to pay ([#917](https://github.com/juspay/hyperswitch-web/issues/917)) ([7e1e20f](https://github.com/juspay/hyperswitch-web/commit/7e1e20fd8ff49b726e7fc62a35a1bfeb985ac2fa)) ## [0.114.9](https://github.com/juspay/hyperswitch-web/compare/v0.114.8...v0.114.9) (2025-02-24) ## [0.114.8](https://github.com/juspay/hyperswitch-web/compare/v0.114.7...v0.114.8) (2025-02-21) ### Bug Fixes * clear card expiry and CVC when switching to saved method and back ([#913](https://github.com/juspay/hyperswitch-web/issues/913)) ([a4049e6](https://github.com/juspay/hyperswitch-web/commit/a4049e606b7c99956b5b26679e2a3d14c3d6d274)) ## [0.114.7](https://github.com/juspay/hyperswitch-web/compare/v0.114.6...v0.114.7) (2025-02-20) ## [0.114.6](https://github.com/juspay/hyperswitch-web/compare/v0.114.5...v0.114.6) (2025-02-19) ### Bug Fixes * shimmer fixed for saved flow ([#909](https://github.com/juspay/hyperswitch-web/issues/909)) ([0ae81a9](https://github.com/juspay/hyperswitch-web/commit/0ae81a93b5f2db16b2f8b336553ae27a6c62901a)) ## [0.114.5](https://github.com/juspay/hyperswitch-web/compare/v0.114.4...v0.114.5) (2025-02-19) ## [0.114.4](https://github.com/juspay/hyperswitch-web/compare/v0.114.3...v0.114.4) (2025-02-19) ## [0.114.3](https://github.com/juspay/hyperswitch-web/compare/v0.114.2...v0.114.3) (2025-02-19) ### Bug Fixes * remove unwanted gap in dynamic fields ([#905](https://github.com/juspay/hyperswitch-web/issues/905)) ([f7dec59](https://github.com/juspay/hyperswitch-web/commit/f7dec593621c8f8d346e9ec449fb6eeaa4327b44)) ## [0.114.2](https://github.com/juspay/hyperswitch-web/compare/v0.114.1...v0.114.2) (2025-02-18) ### Bug Fixes * premount loader race condition ([#896](https://github.com/juspay/hyperswitch-web/issues/896)) ([7c8f1df](https://github.com/juspay/hyperswitch-web/commit/7c8f1df521990b3c48d69e2810f656b641372a88)) ## [0.114.1](https://github.com/juspay/hyperswitch-web/compare/v0.114.0...v0.114.1) (2025-02-18) ### Bug Fixes * ensure country code dropdown appears and prevent text overflow ([#903](https://github.com/juspay/hyperswitch-web/issues/903)) ([adb1642](https://github.com/juspay/hyperswitch-web/commit/adb16423c96642e225eb049aad78b9b9f91f4e89)) # [0.114.0](https://github.com/juspay/hyperswitch-web/compare/v0.113.0...v0.114.0) (2025-02-17) ### Features * emit payment method info ([#890](https://github.com/juspay/hyperswitch-web/issues/890)) ([91dda60](https://github.com/juspay/hyperswitch-web/commit/91dda605207bed54c86aba619494f7a36e185021)) # [0.113.0](https://github.com/juspay/hyperswitch-web/compare/v0.112.3...v0.113.0) (2025-02-17) ### Features * added regex interac card network ([#901](https://github.com/juspay/hyperswitch-web/issues/901)) ([9cedc5b](https://github.com/juspay/hyperswitch-web/commit/9cedc5b5d5fb0da84c4668932016d6f3d1b565a0)) ## [0.112.3](https://github.com/juspay/hyperswitch-web/compare/v0.112.2...v0.112.3) (2025-02-03) ### Bug Fixes * improve web accessibility with better ARIA support and contrast fixes ([#885](https://github.com/juspay/hyperswitch-web/issues/885)) ([269c230](https://github.com/juspay/hyperswitch-web/commit/269c2306436e63c382652ba855a0ccf7e598cde5)) ## [0.112.2](https://github.com/juspay/hyperswitch-web/compare/v0.112.1...v0.112.2) (2025-02-03) ## [0.112.1](https://github.com/juspay/hyperswitch-web/compare/v0.112.0...v0.112.1) (2025-02-03) ### Bug Fixes * updated CVC and expiry behaviour ([#840](https://github.com/juspay/hyperswitch-web/issues/840)) ([7e30da1](https://github.com/juspay/hyperswitch-web/commit/7e30da1d053577b4521912d182e44d2faa0ffd3a)) # [0.112.0](https://github.com/juspay/hyperswitch-web/compare/v0.111.0...v0.112.0) (2025-01-31) ### Features * add integrity hash ([#875](https://github.com/juspay/hyperswitch-web/issues/875)) ([da6e01c](https://github.com/juspay/hyperswitch-web/commit/da6e01c13c071fc90082f9ae1b95a4191d604807)) # [0.111.0](https://github.com/juspay/hyperswitch-web/compare/v0.110.2...v0.111.0) (2025-01-31) ### Features * add regex for UnionPay and allow card number checking if cardbrand not detected ([#882](https://github.com/juspay/hyperswitch-web/issues/882)) ([543d4dc](https://github.com/juspay/hyperswitch-web/commit/543d4dcd4f0fbbee54abeec709c7651775d463a9)) ## [0.110.2](https://github.com/juspay/hyperswitch-web/compare/v0.110.1...v0.110.2) (2025-01-30) ### Bug Fixes * inconsistent country code dropdown border ([#881](https://github.com/juspay/hyperswitch-web/issues/881)) ([9841f63](https://github.com/juspay/hyperswitch-web/commit/9841f635dca15efa1612d2c04dcf010dc85cf1cb)) ## [0.110.1](https://github.com/juspay/hyperswitch-web/compare/v0.110.0...v0.110.1) (2025-01-29) ### Bug Fixes * fixed click to pay loader coming above saved cards ([#880](https://github.com/juspay/hyperswitch-web/issues/880)) ([94c63c4](https://github.com/juspay/hyperswitch-web/commit/94c63c4fdffecfb93c8b7606d1c9bd0fea77b9ed)) # [0.110.0](https://github.com/juspay/hyperswitch-web/compare/v0.109.1...v0.110.0) (2025-01-29) ### Features * added support for ClickToPay ([#846](https://github.com/juspay/hyperswitch-web/issues/846)) ([232d141](https://github.com/juspay/hyperswitch-web/commit/232d1419bc2e78dd95728ea898ae4dcf52ed0ff8)) ## [0.109.1](https://github.com/juspay/hyperswitch-web/compare/v0.109.0...v0.109.1) (2025-01-22) ### Bug Fixes * get attribute type fixed for handling null values ([#876](https://github.com/juspay/hyperswitch-web/issues/876)) ([ab149b7](https://github.com/juspay/hyperswitch-web/commit/ab149b7865d88195acc8f47c365de88d3c4a043f)) # [0.109.0](https://github.com/juspay/hyperswitch-web/compare/v0.108.0...v0.109.0) (2025-01-21) ### Features * added eslint config for promise catch handling ([#871](https://github.com/juspay/hyperswitch-web/issues/871)) ([f03787a](https://github.com/juspay/hyperswitch-web/commit/f03787a7dab0ea02bf155169d80b54b9593a5bcd)) # [0.108.0](https://github.com/juspay/hyperswitch-web/compare/v0.107.9...v0.108.0) (2025-01-20) ### Features * add functionality for removing any beforeunload listeners once payment form is submitted ([#860](https://github.com/juspay/hyperswitch-web/issues/860)) ([e889a53](https://github.com/juspay/hyperswitch-web/commit/e889a5364a7d6eecc6196ececee2c192576e2bd7)) ## [0.107.9](https://github.com/juspay/hyperswitch-web/compare/v0.107.8...v0.107.9) (2025-01-16) ### Bug Fixes * apple pay height ([#870](https://github.com/juspay/hyperswitch-web/issues/870)) ([90c79a6](https://github.com/juspay/hyperswitch-web/commit/90c79a62db4c6080fa89f98a9c15035a06d23a8e)) ## [0.107.8](https://github.com/juspay/hyperswitch-web/compare/v0.107.7...v0.107.8) (2025-01-15) ## [0.107.7](https://github.com/juspay/hyperswitch-web/compare/v0.107.6...v0.107.7) (2025-01-10) ### Bug Fixes * checkbox margin issue ([#864](https://github.com/juspay/hyperswitch-web/issues/864)) ([8f1f2db](https://github.com/juspay/hyperswitch-web/commit/8f1f2db494febeb6f112ab608bd08510d0e42515)) ## [0.107.6](https://github.com/juspay/hyperswitch-web/compare/v0.107.5...v0.107.6) (2025-01-09) ### Bug Fixes * added initiative context back for trustpay applepay ([#861](https://github.com/juspay/hyperswitch-web/issues/861)) ([b43ce26](https://github.com/juspay/hyperswitch-web/commit/b43ce261c2dfe093b0f2eb5176152db3c9e1e442)) ## [0.107.5](https://github.com/juspay/hyperswitch-web/compare/v0.107.4...v0.107.5) (2025-01-08) ### Reverts * reverting some changes for klarna checkout ([#859](https://github.com/juspay/hyperswitch-web/issues/859)) ([18ad359](https://github.com/juspay/hyperswitch-web/commit/18ad3595f1ac27b108236c38f35ecfce9193669c)) ## [0.107.4](https://github.com/juspay/hyperswitch-web/compare/v0.107.3...v0.107.4) (2025-01-07) ### Bug Fixes * fix klarna_checkout getting rendered with stripe ([#857](https://github.com/juspay/hyperswitch-web/issues/857)) ([b49e6e0](https://github.com/juspay/hyperswitch-web/commit/b49e6e01c417e8f50dc9c04d6f32e79d67523880)) ## [0.107.3](https://github.com/juspay/hyperswitch-web/compare/v0.107.2...v0.107.3) (2025-01-06) ## [0.107.2](https://github.com/juspay/hyperswitch-web/compare/v0.107.1...v0.107.2) (2025-01-06) ## [0.107.1](https://github.com/juspay/hyperswitch-web/compare/v0.107.0...v0.107.1) (2025-01-06) # [0.107.0](https://github.com/juspay/hyperswitch-web/compare/v0.106.17...v0.107.0) (2025-01-03) ### Features * klarna Checkout SDK added ([#851](https://github.com/juspay/hyperswitch-web/issues/851)) ([3011a1c](https://github.com/juspay/hyperswitch-web/commit/3011a1c61ae4cf2650cb44e7dd65364af108204a)) ## [0.106.17](https://github.com/juspay/hyperswitch-web/compare/v0.106.16...v0.106.17) (2024-12-31) ## [0.106.16](https://github.com/juspay/hyperswitch-web/compare/v0.106.15...v0.106.16) (2024-12-25) ## [0.106.15](https://github.com/juspay/hyperswitch-web/compare/v0.106.14...v0.106.15) (2024-12-23) ### Bug Fixes * saved cards screen cards validity issue ([#849](https://github.com/juspay/hyperswitch-web/issues/849)) ([ef1bd85](https://github.com/juspay/hyperswitch-web/commit/ef1bd8521a58be3e61e088cf60c9e4a88b7e82fc)) ## [0.106.14](https://github.com/juspay/hyperswitch-web/compare/v0.106.13...v0.106.14) (2024-12-23) ### Bug Fixes * display saved method screen condition and dynamic fields values updation issue in saved card screen ([#848](https://github.com/juspay/hyperswitch-web/issues/848)) ([aa0d088](https://github.com/juspay/hyperswitch-web/commit/aa0d088c7c56425ff815564cf79e740996649751)) ## [0.106.13](https://github.com/juspay/hyperswitch-web/compare/v0.106.12...v0.106.13) (2024-12-19) ## [0.106.12](https://github.com/juspay/hyperswitch-web/compare/v0.106.11...v0.106.12) (2024-12-18) ## [0.106.11](https://github.com/juspay/hyperswitch-web/compare/v0.106.10...v0.106.11) (2024-12-16) ### Bug Fixes * samsung pay button rendering fixed ([#838](https://github.com/juspay/hyperswitch-web/issues/838)) ([904d103](https://github.com/juspay/hyperswitch-web/commit/904d10369cae6dd41b211493c932d94dad0943a6)) ## [0.106.10](https://github.com/juspay/hyperswitch-web/compare/v0.106.9...v0.106.10) (2024-12-12) ### Bug Fixes * cartes bancaires logo not appearing in firefox ([#837](https://github.com/juspay/hyperswitch-web/issues/837)) ([aa0182b](https://github.com/juspay/hyperswitch-web/commit/aa0182b92018dfb95284198e2610fb40a0b6387e)) ## [0.106.9](https://github.com/juspay/hyperswitch-web/compare/v0.106.8...v0.106.9) (2024-12-11) ## [0.106.8](https://github.com/juspay/hyperswitch-web/compare/v0.106.7...v0.106.8) (2024-12-11) ## [0.106.7](https://github.com/juspay/hyperswitch-web/compare/v0.106.6...v0.106.7) (2024-12-11) ## [0.106.6](https://github.com/juspay/hyperswitch-web/compare/v0.106.5...v0.106.6) (2024-12-11) ## [0.106.5](https://github.com/juspay/hyperswitch-web/compare/v0.106.4...v0.106.5) (2024-12-11) ## [0.106.4](https://github.com/juspay/hyperswitch-web/compare/v0.106.3...v0.106.4) (2024-12-11) ## [0.106.3](https://github.com/juspay/hyperswitch-web/compare/v0.106.2...v0.106.3) (2024-12-11) ## [0.106.2](https://github.com/juspay/hyperswitch-web/compare/v0.106.1...v0.106.2) (2024-12-10) ## [0.106.1](https://github.com/juspay/hyperswitch-web/compare/v0.106.0...v0.106.1) (2024-12-09) ### Bug Fixes * card validation focus check ([#827](https://github.com/juspay/hyperswitch-web/issues/827)) ([fd15e54](https://github.com/juspay/hyperswitch-web/commit/fd15e54ffd9d1bb4445a78567242d3ebc5a25b90)) # [0.106.0](https://github.com/juspay/hyperswitch-web/compare/v0.105.3...v0.106.0) (2024-12-09) ### Features * added cb regex and typo fix ([#811](https://github.com/juspay/hyperswitch-web/issues/811)) ([e925e33](https://github.com/juspay/hyperswitch-web/commit/e925e33556531eb7142ee0a7b26cdbcacc920b15)) ## [0.105.3](https://github.com/juspay/hyperswitch-web/compare/v0.105.2...v0.105.3) (2024-12-09) ## [0.105.2](https://github.com/juspay/hyperswitch-web/compare/v0.105.1...v0.105.2) (2024-12-05) ### Bug Fixes * re render issue of card nickname ([#823](https://github.com/juspay/hyperswitch-web/issues/823)) ([a4691b0](https://github.com/juspay/hyperswitch-web/commit/a4691b09f8dba1fa3ebaa8a56b910206296b899d)) ## [0.105.1](https://github.com/juspay/hyperswitch-web/compare/v0.105.0...v0.105.1) (2024-12-05) # [0.105.0](https://github.com/juspay/hyperswitch-web/compare/v0.104.6...v0.105.0) (2024-12-04) ### Features * add traditional chinese locale ([#822](https://github.com/juspay/hyperswitch-web/issues/822)) ([2707923](https://github.com/juspay/hyperswitch-web/commit/27079236edef9bdd776753b67a70c474a794dd72)) ## [0.104.6](https://github.com/juspay/hyperswitch-web/compare/v0.104.5...v0.104.6) (2024-12-04) ## [0.104.5](https://github.com/juspay/hyperswitch-web/compare/v0.104.4...v0.104.5) (2024-12-03) ## [0.104.4](https://github.com/juspay/hyperswitch-web/compare/v0.104.3...v0.104.4) (2024-12-03) ### Bug Fixes * show card form by default rendering issue ([#817](https://github.com/juspay/hyperswitch-web/issues/817)) ([00e8562](https://github.com/juspay/hyperswitch-web/commit/00e8562b97c20ed02dc86eaf139ffafb822be075)) ## [0.104.3](https://github.com/juspay/hyperswitch-web/compare/v0.104.2...v0.104.3) (2024-12-02) ## [0.104.2](https://github.com/juspay/hyperswitch-web/compare/v0.104.1...v0.104.2) (2024-12-02) ## [0.104.1](https://github.com/juspay/hyperswitch-web/compare/v0.104.0...v0.104.1) (2024-12-02) # [0.104.0](https://github.com/juspay/hyperswitch-web/compare/v0.103.2...v0.104.0) (2024-11-26) ### Features * samsung pay added ([#806](https://github.com/juspay/hyperswitch-web/issues/806)) ([01db104](https://github.com/juspay/hyperswitch-web/commit/01db104a2512e99eb38305751a9e9395e0812940)) ## [0.103.2](https://github.com/juspay/hyperswitch-web/compare/v0.103.1...v0.103.2) (2024-11-26) ## [0.103.1](https://github.com/juspay/hyperswitch-web/compare/v0.103.0...v0.103.1) (2024-11-25) ### Bug Fixes * crypto currency payment method ([#810](https://github.com/juspay/hyperswitch-web/issues/810)) ([c3aed42](https://github.com/juspay/hyperswitch-web/commit/c3aed42b9f218b8c44e2574f3032081cd7a45999)) # [0.103.0](https://github.com/juspay/hyperswitch-web/compare/v0.102.9...v0.103.0) (2024-11-21) ### Features * added paypal tabs flow support for billing details ([#792](https://github.com/juspay/hyperswitch-web/issues/792)) ([a7c7d19](https://github.com/juspay/hyperswitch-web/commit/a7c7d191aa3df3de3293f8dade14c0448415a913)) ## [0.102.9](https://github.com/juspay/hyperswitch-web/compare/v0.102.8...v0.102.9) (2024-11-20) ## [0.102.8](https://github.com/juspay/hyperswitch-web/compare/v0.102.7...v0.102.8) (2024-11-19) ## [0.102.7](https://github.com/juspay/hyperswitch-web/compare/v0.102.6...v0.102.7) (2024-11-19) ## [0.102.6](https://github.com/juspay/hyperswitch-web/compare/v0.102.5...v0.102.6) (2024-11-19) ## [0.102.5](https://github.com/juspay/hyperswitch-web/compare/v0.102.4...v0.102.5) (2024-11-19) ## [0.102.4](https://github.com/juspay/hyperswitch-web/compare/v0.102.3...v0.102.4) (2024-11-14) ## [0.102.3](https://github.com/juspay/hyperswitch-web/compare/v0.102.2...v0.102.3) (2024-11-14) ### Bug Fixes * card holder name ([#794](https://github.com/juspay/hyperswitch-web/issues/794)) ([60275cd](https://github.com/juspay/hyperswitch-web/commit/60275cd6aed4cb8dec1c1bbaafc1a37cffe0b193)) ## [0.102.2](https://github.com/juspay/hyperswitch-web/compare/v0.102.1...v0.102.2) (2024-11-14) ## [0.102.1](https://github.com/juspay/hyperswitch-web/compare/v0.102.0...v0.102.1) (2024-11-13) ### Bug Fixes * paze express checkout for multiple iframe ([#789](https://github.com/juspay/hyperswitch-web/issues/789)) ([7af9e96](https://github.com/juspay/hyperswitch-web/commit/7af9e96f60277b5bacb2cabec059ab56a601a7a9)) # [0.102.0](https://github.com/juspay/hyperswitch-web/compare/v0.101.10...v0.102.0) (2024-11-12) ### Features * express checkout for paze ([#779](https://github.com/juspay/hyperswitch-web/issues/779)) ([f5dd999](https://github.com/juspay/hyperswitch-web/commit/f5dd999dc9f12a5e81c7cc7b353a40cfc5386f65)) ## [0.101.10](https://github.com/juspay/hyperswitch-web/compare/v0.101.9...v0.101.10) (2024-11-12) ## [0.101.9](https://github.com/juspay/hyperswitch-web/compare/v0.101.8...v0.101.9) (2024-11-12) ## [0.101.8](https://github.com/juspay/hyperswitch-web/compare/v0.101.7...v0.101.8) (2024-11-08) ## [0.101.7](https://github.com/juspay/hyperswitch-web/compare/v0.101.6...v0.101.7) (2024-11-08) ## [0.101.6](https://github.com/juspay/hyperswitch-web/compare/v0.101.5...v0.101.6) (2024-11-08) ## [0.101.5](https://github.com/juspay/hyperswitch-web/compare/v0.101.4...v0.101.5) (2024-11-07) ## [0.101.4](https://github.com/juspay/hyperswitch-web/compare/v0.101.3...v0.101.4) (2024-11-07) ## [0.101.3](https://github.com/juspay/hyperswitch-web/compare/v0.101.2...v0.101.3) (2024-11-07) ## [0.101.2](https://github.com/juspay/hyperswitch-web/compare/v0.101.1...v0.101.2) (2024-11-07) ## [0.101.1](https://github.com/juspay/hyperswitch-web/compare/v0.101.0...v0.101.1) (2024-11-07) # [0.101.0](https://github.com/juspay/hyperswitch-web/compare/v0.100.1...v0.101.0) (2024-11-07) ### Features * added dynamic fields support for sepa bank transfer ([#775](https://github.com/juspay/hyperswitch-web/issues/775)) ([52d2d15](https://github.com/juspay/hyperswitch-web/commit/52d2d15ed2b2b8ed364a81fe9bbd3dfbd64c0cec)) ## [0.100.1](https://github.com/juspay/hyperswitch-web/compare/v0.100.0...v0.100.1) (2024-11-06) # [0.100.0](https://github.com/juspay/hyperswitch-web/compare/v0.99.6...v0.100.0) (2024-11-06) ### Features * add dynamic fields support for affirm ([#776](https://github.com/juspay/hyperswitch-web/issues/776)) ([e55e533](https://github.com/juspay/hyperswitch-web/commit/e55e533a197efad11c9b8cceb4b06c672a365dfe)) ## [0.99.6](https://github.com/juspay/hyperswitch-web/compare/v0.99.5...v0.99.6) (2024-11-06) ## [0.99.5](https://github.com/juspay/hyperswitch-web/compare/v0.99.4...v0.99.5) (2024-11-06) ## [0.99.4](https://github.com/juspay/hyperswitch-web/compare/v0.99.3...v0.99.4) (2024-11-05) ### Bug Fixes * card brand update to prevent multiple error messages ([#767](https://github.com/juspay/hyperswitch-web/issues/767)) ([17892d9](https://github.com/juspay/hyperswitch-web/commit/17892d9ff7470ac12e251e878afe9ae9affffd50)) ## [0.99.3](https://github.com/juspay/hyperswitch-web/compare/v0.99.2...v0.99.3) (2024-11-05) ### Bug Fixes * remove blue border of iframe in firefox ([#766](https://github.com/juspay/hyperswitch-web/issues/766)) ([f629219](https://github.com/juspay/hyperswitch-web/commit/f629219492ef234c2df76a52a99fb135def7b428)) ## [0.99.2](https://github.com/juspay/hyperswitch-web/compare/v0.99.1...v0.99.2) (2024-11-04) ### Reverts * reverting fetchAPI changes ([3108148](https://github.com/juspay/hyperswitch-web/commit/31081488d47d81590a980cc147efdb918b2a8235)) ## [0.99.1](https://github.com/juspay/hyperswitch-web/compare/v0.99.0...v0.99.1) (2024-11-04) ### Bug Fixes * card input error text correction ([#759](https://github.com/juspay/hyperswitch-web/issues/759)) ([f426662](https://github.com/juspay/hyperswitch-web/commit/f426662c04e78d170c303fa01193eb37934c7636)) # [0.99.0](https://github.com/juspay/hyperswitch-web/compare/v0.98.6...v0.99.0) (2024-11-04) ### Features * paze integration ([#738](https://github.com/juspay/hyperswitch-web/issues/738)) ([64fab0a](https://github.com/juspay/hyperswitch-web/commit/64fab0aac5323613f77c92537973e43f89a165d2)) ## [0.98.6](https://github.com/juspay/hyperswitch-web/compare/v0.98.5...v0.98.6) (2024-11-04) ## [0.98.5](https://github.com/juspay/hyperswitch-web/compare/v0.98.4...v0.98.5) (2024-11-04) ### Bug Fixes * format function refactor for better logs readability ([#757](https://github.com/juspay/hyperswitch-web/issues/757)) ([4f4ee6b](https://github.com/juspay/hyperswitch-web/commit/4f4ee6be28975b3060c955388f0536d2f6cea7ea)) ## [0.98.4](https://github.com/juspay/hyperswitch-web/compare/v0.98.3...v0.98.4) (2024-10-30) ### Bug Fixes * Google pay log issue fix ([#762](https://github.com/juspay/hyperswitch-web/issues/762)) ([df629e9](https://github.com/juspay/hyperswitch-web/commit/df629e9d053f6e2fd443c833a9e343b3cf841f90)) ## [0.98.3](https://github.com/juspay/hyperswitch-web/compare/v0.98.2...v0.98.3) (2024-10-30) ### Bug Fixes * Gpay unified checkout fix ([#761](https://github.com/juspay/hyperswitch-web/issues/761)) ([45ee508](https://github.com/juspay/hyperswitch-web/commit/45ee50849c1d048e3dba0b35c5252bd4e2ffac89)) ## [0.98.2](https://github.com/juspay/hyperswitch-web/compare/v0.98.1...v0.98.2) (2024-10-30) ### Reverts * remove changes of pr [#746](https://github.com/juspay/hyperswitch-web/issues/746) ([#758](https://github.com/juspay/hyperswitch-web/issues/758)) ([cdae75e](https://github.com/juspay/hyperswitch-web/commit/cdae75ec21525e21aa2049f7bbfd513adebfef89)) ## [0.98.1](https://github.com/juspay/hyperswitch-web/compare/v0.98.0...v0.98.1) (2024-10-29) ### Bug Fixes * remove contact and password icon in safari ([#747](https://github.com/juspay/hyperswitch-web/issues/747)) ([ebeca6e](https://github.com/juspay/hyperswitch-web/commit/ebeca6e1380c8b76830aa81b0df9e3bd07d4c880)) # [0.98.0](https://github.com/juspay/hyperswitch-web/compare/v0.97.0...v0.98.0) (2024-10-29) ### Features * added dynamic fields for SEPA ([#624](https://github.com/juspay/hyperswitch-web/issues/624)) ([63f536e](https://github.com/juspay/hyperswitch-web/commit/63f536ef22dc0304b01d703a232ce99819743608)) # [0.97.0](https://github.com/juspay/hyperswitch-web/compare/v0.96.3...v0.97.0) (2024-10-29) ### Features * tax calculation in google pay ([#750](https://github.com/juspay/hyperswitch-web/issues/750)) ([0039fbe](https://github.com/juspay/hyperswitch-web/commit/0039fbe65ec7ff958d637d00c58aed710fed5b1f)) ## [0.96.3](https://github.com/juspay/hyperswitch-web/compare/v0.96.2...v0.96.3) (2024-10-29) ### Bug Fixes * remove blue border in firefox ([#746](https://github.com/juspay/hyperswitch-web/issues/746)) ([40ef7a5](https://github.com/juspay/hyperswitch-web/commit/40ef7a5578b3a687c9b596a27818f4533758f136)) ## [0.96.2](https://github.com/juspay/hyperswitch-web/compare/v0.96.1...v0.96.2) (2024-10-28) ## [0.96.1](https://github.com/juspay/hyperswitch-web/compare/v0.96.0...v0.96.1) (2024-10-25) ### Bug Fixes * card cvc bug fix ([#748](https://github.com/juspay/hyperswitch-web/issues/748)) ([6122d9d](https://github.com/juspay/hyperswitch-web/commit/6122d9d200b934969ee8643e598754d724a786a4)) # [0.96.0](https://github.com/juspay/hyperswitch-web/compare/v0.95.3...v0.96.0) (2024-10-23) ### Features * added apple pay support inside an iframe ([#743](https://github.com/juspay/hyperswitch-web/issues/743)) ([44ed3a8](https://github.com/juspay/hyperswitch-web/commit/44ed3a83b9686b140470575f7aa15c516cac1cc8)) ## [0.95.3](https://github.com/juspay/hyperswitch-web/compare/v0.95.2...v0.95.3) (2024-10-21) ### Bug Fixes * add text overflow with ellipsis in dropdown ([#745](https://github.com/juspay/hyperswitch-web/issues/745)) ([9061306](https://github.com/juspay/hyperswitch-web/commit/90613062e9bcc1f19e538117d7aebddd3bd5fb76)) ## [0.95.2](https://github.com/juspay/hyperswitch-web/compare/v0.95.1...v0.95.2) (2024-10-21) ### Bug Fixes * extra scroll in safari ([#744](https://github.com/juspay/hyperswitch-web/issues/744)) ([5254446](https://github.com/juspay/hyperswitch-web/commit/52544466899116be2222c5a4db1da16241f4fa4b)) ## [0.95.1](https://github.com/juspay/hyperswitch-web/compare/v0.95.0...v0.95.1) (2024-10-16) ### Bug Fixes * closed loader before calling merchant callback ([#741](https://github.com/juspay/hyperswitch-web/issues/741)) ([c0d4e15](https://github.com/juspay/hyperswitch-web/commit/c0d4e157e133d6c1f0a867ef2b9a8480eb314488)) # [0.95.0](https://github.com/juspay/hyperswitch-web/compare/v0.94.2...v0.95.0) (2024-10-16) ### Features * dynamic tax calculation in paypal ([#739](https://github.com/juspay/hyperswitch-web/issues/739)) ([9a5b87d](https://github.com/juspay/hyperswitch-web/commit/9a5b87d2f0f60c152a861d1f6e9837e49ef6a0ba)) ## [0.94.2](https://github.com/juspay/hyperswitch-web/compare/v0.94.1...v0.94.2) (2024-10-15) ## [0.94.1](https://github.com/juspay/hyperswitch-web/compare/v0.94.0...v0.94.1) (2024-10-15) ### Bug Fixes * callback fix ([5b7e78b](https://github.com/juspay/hyperswitch-web/commit/5b7e78b49fe4ce7e05fafb4e259dfa6a3f71919e)) # [0.94.0](https://github.com/juspay/hyperswitch-web/compare/v0.93.0...v0.94.0) (2024-10-15) ### Features * added click handler ([#732](https://github.com/juspay/hyperswitch-web/issues/732)) ([9c09ff2](https://github.com/juspay/hyperswitch-web/commit/9c09ff2d90ece78583c897c9cb29f2f45f346f90)) # [0.93.0](https://github.com/juspay/hyperswitch-web/compare/v0.92.1...v0.93.0) (2024-10-15) ### Features * added confirm handler ([#731](https://github.com/juspay/hyperswitch-web/issues/731)) ([4f65ecb](https://github.com/juspay/hyperswitch-web/commit/4f65ecbeb48022dbe9da507d98344e43c308b691)) ## [0.92.1](https://github.com/juspay/hyperswitch-web/compare/v0.92.0...v0.92.1) (2024-10-10) ### Bug Fixes * web package added ([#726](https://github.com/juspay/hyperswitch-web/issues/726)) ([ecf0db3](https://github.com/juspay/hyperswitch-web/commit/ecf0db3d2fdb811f572bdffb5a61e468284a1c51)) # [0.92.0](https://github.com/juspay/hyperswitch-web/compare/v0.91.10...v0.92.0) (2024-10-10) ### Features * added bubblegum theme ([#723](https://github.com/juspay/hyperswitch-web/issues/723)) ([7df22f3](https://github.com/juspay/hyperswitch-web/commit/7df22f3f9c0dd1c8687d67e64faf7a0591e3e59b)) ## [0.91.10](https://github.com/juspay/hyperswitch-web/compare/v0.91.9...v0.91.10) (2024-10-10) ### Bug Fixes * fixed applePay for headless fow ([#725](https://github.com/juspay/hyperswitch-web/issues/725)) ([6e513a3](https://github.com/juspay/hyperswitch-web/commit/6e513a3bab9444a75dbc976945ab3113ced76b51)) ## [0.91.9](https://github.com/juspay/hyperswitch-web/compare/v0.91.8...v0.91.9) (2024-10-07) ### Bug Fixes * cypress env fix ([#719](https://github.com/juspay/hyperswitch-web/issues/719)) ([95eabc0](https://github.com/juspay/hyperswitch-web/commit/95eabc0242094cedb2c48af19c41e2fa0fa72b33)) ## [0.91.8](https://github.com/juspay/hyperswitch-web/compare/v0.91.7...v0.91.8) (2024-10-07) ### Bug Fixes * workflow indentation fix ([#713](https://github.com/juspay/hyperswitch-web/issues/713)) ([bf00bb3](https://github.com/juspay/hyperswitch-web/commit/bf00bb3859ec5b0156b71e543d693e01ee7b1c2d)) ## [0.91.7](https://github.com/juspay/hyperswitch-web/compare/v0.91.6...v0.91.7) (2024-10-04) ### Bug Fixes * paypal flow fixed for one click handler ([#711](https://github.com/juspay/hyperswitch-web/issues/711)) ([09a8470](https://github.com/juspay/hyperswitch-web/commit/09a8470a3b16c410636c1544033aa0f2e76a59b1)) ## [0.91.6](https://github.com/juspay/hyperswitch-web/compare/v0.91.5...v0.91.6) (2024-10-04) ## [0.91.5](https://github.com/juspay/hyperswitch-web/compare/v0.91.4...v0.91.5) (2024-10-04) ### Bug Fixes * sentry dependent bot alerts ([#716](https://github.com/juspay/hyperswitch-web/issues/716)) ([6bc1fb4](https://github.com/juspay/hyperswitch-web/commit/6bc1fb4372c27f6fc021585f69791a0dadca62d5)) ## [0.91.4](https://github.com/juspay/hyperswitch-web/compare/v0.91.3...v0.91.4) (2024-10-04) ### Bug Fixes * add cross env script support for windows ([#714](https://github.com/juspay/hyperswitch-web/issues/714)) ([318b5c2](https://github.com/juspay/hyperswitch-web/commit/318b5c294cc670988204f40ed427f56c4902d163)) ## [0.91.3](https://github.com/juspay/hyperswitch-web/compare/v0.91.2...v0.91.3) (2024-10-04) ### Bug Fixes * sdk pay now redirect fix ([#715](https://github.com/juspay/hyperswitch-web/issues/715)) ([2bdf260](https://github.com/juspay/hyperswitch-web/commit/2bdf260f2c1fbfce6627db7c9eb5a519987cabfa)) ## [0.91.2](https://github.com/juspay/hyperswitch-web/compare/v0.91.1...v0.91.2) (2024-10-03) ### Bug Fixes * customer-acceptance for saved pm ([#709](https://github.com/juspay/hyperswitch-web/issues/709)) ([a569dac](https://github.com/juspay/hyperswitch-web/commit/a569dacede738ba4f7464966a323e14d19170028)) ## [0.91.1](https://github.com/juspay/hyperswitch-web/compare/v0.91.0...v0.91.1) (2024-09-26) ### Bug Fixes * added fix for google_pay and apple_pay ([#630](https://github.com/juspay/hyperswitch-web/issues/630)) ([95d7bb3](https://github.com/juspay/hyperswitch-web/commit/95d7bb32164611bdcc76fb1232e17b4d22fe220a)) # [0.91.0](https://github.com/juspay/hyperswitch-web/compare/v0.90.1...v0.91.0) (2024-09-26) ### Features * pass email and phone number to confirm call ([#681](https://github.com/juspay/hyperswitch-web/issues/681)) ([412ba68](https://github.com/juspay/hyperswitch-web/commit/412ba68b0c32698cc6de8b0e5e2dcfeec2741d15)) ## [0.90.1](https://github.com/juspay/hyperswitch-web/compare/v0.90.0...v0.90.1) (2024-09-26) # [0.90.0](https://github.com/juspay/hyperswitch-web/compare/v0.89.2...v0.90.0) (2024-09-26) ### Features * customMessageForCardTerms prop added ([#705](https://github.com/juspay/hyperswitch-web/issues/705)) ([c30558f](https://github.com/juspay/hyperswitch-web/commit/c30558f8d772e54d7bf68aaff89d52dad89e73e9)) ## [0.89.2](https://github.com/juspay/hyperswitch-web/compare/v0.89.1...v0.89.2) (2024-09-25) ### Bug Fixes * styling issues ([#696](https://github.com/juspay/hyperswitch-web/issues/696)) ([764d526](https://github.com/juspay/hyperswitch-web/commit/764d526c69b7b9ec9b79b084fa0b6a50aab8e86a)) ## [0.89.1](https://github.com/juspay/hyperswitch-web/compare/v0.89.0...v0.89.1) (2024-09-24) # [0.89.0](https://github.com/juspay/hyperswitch-web/compare/v0.88.5...v0.89.0) (2024-09-24) ### Features * added support to change create payment and added env to cypress ([#616](https://github.com/juspay/hyperswitch-web/issues/616)) ([2e27f98](https://github.com/juspay/hyperswitch-web/commit/2e27f98cf63e408627bd18c9184973ebc38438f5)) ## [0.88.5](https://github.com/juspay/hyperswitch-web/compare/v0.88.4...v0.88.5) (2024-09-24) ### Bug Fixes * dependant bot alerts ([#637](https://github.com/juspay/hyperswitch-web/issues/637)) ([dcc351d](https://github.com/juspay/hyperswitch-web/commit/dcc351db09f2416e5647360129f1253e2d8bb702)) ## [0.88.4](https://github.com/juspay/hyperswitch-web/compare/v0.88.3...v0.88.4) (2024-09-23) ### Bug Fixes * added support for redirectUrl for netcetera flow ([#636](https://github.com/juspay/hyperswitch-web/issues/636)) ([205054f](https://github.com/juspay/hyperswitch-web/commit/205054ff0dd1083c28c3ef5eb159e70440715efc)) ## [0.88.3](https://github.com/juspay/hyperswitch-web/compare/v0.88.2...v0.88.3) (2024-09-20) ### Bug Fixes * added suspense and error boundary for apple pay and google pay in tabs ([#632](https://github.com/juspay/hyperswitch-web/issues/632)) ([209f8e9](https://github.com/juspay/hyperswitch-web/commit/209f8e96be744c4c49e05c10700d839e3dd957f3)) ## [0.88.2](https://github.com/juspay/hyperswitch-web/compare/v0.88.1...v0.88.2) (2024-09-20) ### Reverts * chunk loading issue - 1 ([#623](https://github.com/juspay/hyperswitch-web/issues/623)) ([#631](https://github.com/juspay/hyperswitch-web/issues/631)) ([f719ff5](https://github.com/juspay/hyperswitch-web/commit/f719ff5472bd844125c97eae412c3afa1ec114ed)) ## [0.88.1](https://github.com/juspay/hyperswitch-web/compare/v0.88.0...v0.88.1) (2024-09-20) ### Bug Fixes * Invalid shipping address and taxjar api failing case handle in apple pay ([#628](https://github.com/juspay/hyperswitch-web/issues/628)) ([d4f3c41](https://github.com/juspay/hyperswitch-web/commit/d4f3c41ff3ccc1253f4c19613ead0be60cd98fc3)) # [0.88.0](https://github.com/juspay/hyperswitch-web/compare/v0.87.2...v0.88.0) (2024-09-17) ### Features * added support for cobadged cards ([#564](https://github.com/juspay/hyperswitch-web/issues/564)) ([9deb94b](https://github.com/juspay/hyperswitch-web/commit/9deb94b20b3336ded849f4d079f1d7352dad7e46)) ## [0.87.2](https://github.com/juspay/hyperswitch-web/compare/v0.87.1...v0.87.2) (2024-09-17) ### Bug Fixes * chunk loading issue - 1 ([#623](https://github.com/juspay/hyperswitch-web/issues/623)) ([06e7fab](https://github.com/juspay/hyperswitch-web/commit/06e7fab244e49fe1f448db25f3f5af54eaddf2c7)) ## [0.87.1](https://github.com/juspay/hyperswitch-web/compare/v0.87.0...v0.87.1) (2024-09-16) ### Bug Fixes * dynamic tax calculation fix ([#618](https://github.com/juspay/hyperswitch-web/issues/618)) ([9a321fd](https://github.com/juspay/hyperswitch-web/commit/9a321fdac759407bf5c4881e057ced60cbc8b169)) # [0.87.0](https://github.com/juspay/hyperswitch-web/compare/v0.86.2...v0.87.0) (2024-09-16) ### Features * added duit now payment method ([#612](https://github.com/juspay/hyperswitch-web/issues/612)) ([3237bb5](https://github.com/juspay/hyperswitch-web/commit/3237bb52c24ff788b8b6445e9786acd59484569c)) ## [0.86.2](https://github.com/juspay/hyperswitch-web/compare/v0.86.1...v0.86.2) (2024-09-16) ### Bug Fixes * **payout:** on change handler for dropdown ([#615](https://github.com/juspay/hyperswitch-web/issues/615)) ([750b8c6](https://github.com/juspay/hyperswitch-web/commit/750b8c62eb1f31dc5dd7d406893b63132ea8aae2)) ## [0.86.1](https://github.com/juspay/hyperswitch-web/compare/v0.86.0...v0.86.1) (2024-09-13) ### Reverts * handle redirections for iframed content ([#557](https://github.com/juspay/hyperswitch-web/issues/557)) ([#611](https://github.com/juspay/hyperswitch-web/issues/611)) ([6e203e4](https://github.com/juspay/hyperswitch-web/commit/6e203e42e4e689f2802eb1af2191af9cf3ef945f)) # [0.86.0](https://github.com/juspay/hyperswitch-web/compare/v0.85.0...v0.86.0) (2024-09-13) ### Features * **applepay:** calculate tax amount dynamically while changing shipping address in apple pay sdk ([#610](https://github.com/juspay/hyperswitch-web/issues/610)) ([0804823](https://github.com/juspay/hyperswitch-web/commit/08048237dbee8cfff26a7c8e7a6d8940ab913227)) # [0.85.0](https://github.com/juspay/hyperswitch-web/compare/v0.84.20...v0.85.0) (2024-09-12) ### Features * **payout:** add dynamic fields for payout widget ([#590](https://github.com/juspay/hyperswitch-web/issues/590)) ([c647dee](https://github.com/juspay/hyperswitch-web/commit/c647dee5dbe190d87949a5b90052ca7468a7805e)) ## [0.84.20](https://github.com/juspay/hyperswitch-web/compare/v0.84.19...v0.84.20) (2024-09-11) ### Bug Fixes * double scroll bar fix ([#608](https://github.com/juspay/hyperswitch-web/issues/608)) ([a371b4f](https://github.com/juspay/hyperswitch-web/commit/a371b4f86fef245ad8180f3af00b93b1a674b4f3)) ## [0.84.19](https://github.com/juspay/hyperswitch-web/compare/v0.84.18...v0.84.19) (2024-09-10) ## [0.84.18](https://github.com/juspay/hyperswitch-web/compare/v0.84.17...v0.84.18) (2024-09-09) ## [0.84.17](https://github.com/juspay/hyperswitch-web/compare/v0.84.16...v0.84.17) (2024-09-09) ## [0.84.16](https://github.com/juspay/hyperswitch-web/compare/v0.84.15...v0.84.16) (2024-09-09) ### Bug Fixes * added wild cards support ([#601](https://github.com/juspay/hyperswitch-web/issues/601)) ([54e613c](https://github.com/juspay/hyperswitch-web/commit/54e613cc4e992f760543c1be796cf7563c5c78cf)) ## [0.84.15](https://github.com/juspay/hyperswitch-web/compare/v0.84.14...v0.84.15) (2024-09-09) ### Bug Fixes * integ env in webpack ([#602](https://github.com/juspay/hyperswitch-web/issues/602)) ([1f3cc6b](https://github.com/juspay/hyperswitch-web/commit/1f3cc6bd44cfb0e1086920cb7631e6ba416ec74b)) ## [0.84.14](https://github.com/juspay/hyperswitch-web/compare/v0.84.13...v0.84.14) (2024-09-04) ### Bug Fixes * changed post message from parent window to current window ([#598](https://github.com/juspay/hyperswitch-web/issues/598)) ([46b0ef4](https://github.com/juspay/hyperswitch-web/commit/46b0ef46f7af2aa8fbd5ac59c4fa8b0903b21c03)) ## [0.84.13](https://github.com/juspay/hyperswitch-web/compare/v0.84.12...v0.84.13) (2024-09-03) ### Bug Fixes * console log removal ([94f47e1](https://github.com/juspay/hyperswitch-web/commit/94f47e128a74f51fecaf28e72dd9f9c410296e0d)) ## [0.84.12](https://github.com/juspay/hyperswitch-web/compare/v0.84.11...v0.84.12) (2024-09-03) ## [0.84.11](https://github.com/juspay/hyperswitch-web/compare/v0.84.10...v0.84.11) (2024-09-03) ### Bug Fixes * added support to send post messages to parent iframe ([#594](https://github.com/juspay/hyperswitch-web/issues/594)) ([638ccfc](https://github.com/juspay/hyperswitch-web/commit/638ccfca91625db8cb14ee74593b6fb09d1fe3fc)) ## [0.84.10](https://github.com/juspay/hyperswitch-web/compare/v0.84.9...v0.84.10) (2024-09-03) ### Bug Fixes * zsl fix ([#596](https://github.com/juspay/hyperswitch-web/issues/596)) ([55b6a9f](https://github.com/juspay/hyperswitch-web/commit/55b6a9f61068a105dc2b948078571ebd755831a9)) ## [0.84.9](https://github.com/juspay/hyperswitch-web/compare/v0.84.8...v0.84.9) (2024-09-03) ### Bug Fixes * added loader for netecetera when openurl_if_required is sent post otp submission ([#589](https://github.com/juspay/hyperswitch-web/issues/589)) ([bf04562](https://github.com/juspay/hyperswitch-web/commit/bf0456234bb6746a4e8c44fd7f9cd364c914e665)) ## [0.84.8](https://github.com/juspay/hyperswitch-web/compare/v0.84.7...v0.84.8) (2024-09-02) ### Bug Fixes * added customization for padding inside accordion item rule ([#595](https://github.com/juspay/hyperswitch-web/issues/595)) ([a251de5](https://github.com/juspay/hyperswitch-web/commit/a251de52d70b0389bc5b0e789bcc1982cf343344)) ## [0.84.7](https://github.com/juspay/hyperswitch-web/compare/v0.84.6...v0.84.7) (2024-09-02) ## [0.84.6](https://github.com/juspay/hyperswitch-web/compare/v0.84.5...v0.84.6) (2024-08-30) ### Bug Fixes * added support for customPodUri instead of switchToCustomPod ([#591](https://github.com/juspay/hyperswitch-web/issues/591)) ([f9fed51](https://github.com/juspay/hyperswitch-web/commit/f9fed5117e74c63f813117d5eceafc4a000e17dc)) ## [0.84.5](https://github.com/juspay/hyperswitch-web/compare/v0.84.4...v0.84.5) (2024-08-26) ## [0.84.4](https://github.com/juspay/hyperswitch-web/compare/v0.84.3...v0.84.4) (2024-08-23) ### Bug Fixes * **payout:** dropdown for selecting payment methods, UI updates ([#581](https://github.com/juspay/hyperswitch-web/issues/581)) ([78bc958](https://github.com/juspay/hyperswitch-web/commit/78bc9580b21006fb8522e86e0c2e19f9777586e6)) ## [0.84.3](https://github.com/juspay/hyperswitch-web/compare/v0.84.2...v0.84.3) (2024-08-22) ## [0.84.2](https://github.com/juspay/hyperswitch-web/compare/v0.84.1...v0.84.2) (2024-08-22) ### Bug Fixes * google pay button border ([#570](https://github.com/juspay/hyperswitch-web/issues/570)) ([44be5b6](https://github.com/juspay/hyperswitch-web/commit/44be5b69ed95d081d178d9dbed74e9ddcc336a56)) ## [0.84.1](https://github.com/juspay/hyperswitch-web/compare/v0.84.0...v0.84.1) (2024-08-13) ### Bug Fixes * john doe name added ([b46dce2](https://github.com/juspay/hyperswitch-web/commit/b46dce2102ba99d83e4a367f82660e0c61d01f02)) # [0.84.0](https://github.com/juspay/hyperswitch-web/compare/v0.83.0...v0.84.0) (2024-08-12) ### Features * Web Automation Testing Setup ([#556](https://github.com/juspay/hyperswitch-web/issues/556)) ([0a03fcb](https://github.com/juspay/hyperswitch-web/commit/0a03fcbfd31993f54688e1db4443cb7d2fe21ace)) # [0.83.0](https://github.com/juspay/hyperswitch-web/compare/v0.82.3...v0.83.0) (2024-08-12) ### Features * dockerize the hyperswitch-web ([#555](https://github.com/juspay/hyperswitch-web/issues/555)) ([e7588f3](https://github.com/juspay/hyperswitch-web/commit/e7588f3243dddba56d938b93545c19095ae45077)) ## [0.82.3](https://github.com/juspay/hyperswitch-web/compare/v0.82.2...v0.82.3) (2024-08-12) ## [0.82.2](https://github.com/juspay/hyperswitch-web/compare/v0.82.1...v0.82.2) (2024-08-09) ## [0.82.1](https://github.com/juspay/hyperswitch-web/compare/v0.82.0...v0.82.1) (2024-08-07) ### Bug Fixes * revert changes for hyper.res ([#548](https://github.com/juspay/hyperswitch-web/issues/548)) ([373cd40](https://github.com/juspay/hyperswitch-web/commit/373cd40860f31cc201be41b2706e9c14c6eb771a)) # [0.82.0](https://github.com/juspay/hyperswitch-web/compare/v0.81.1...v0.82.0) (2024-08-07) ### Features * open banking PIS integration ([#541](https://github.com/juspay/hyperswitch-web/issues/541)) ([25e24b6](https://github.com/juspay/hyperswitch-web/commit/25e24b614e616104057d1ece77a18d7f841dbc89)) ## [0.81.1](https://github.com/juspay/hyperswitch-web/compare/v0.81.0...v0.81.1) (2024-08-07) ### Bug Fixes * fixed structure of billing details in payment body ([#546](https://github.com/juspay/hyperswitch-web/issues/546)) ([1e63aad](https://github.com/juspay/hyperswitch-web/commit/1e63aad43e7de2cfca8bd8127395445fbb43e109)) # [0.81.0](https://github.com/juspay/hyperswitch-web/compare/v0.80.7...v0.81.0) (2024-08-07) ### Features * sdk pay now button enable prop added ([#543](https://github.com/juspay/hyperswitch-web/issues/543)) ([bf7a505](https://github.com/juspay/hyperswitch-web/commit/bf7a50518d74a5cd0d5e74b420d49d5320b515d0)) ## [0.80.7](https://github.com/juspay/hyperswitch-web/compare/v0.80.6...v0.80.7) (2024-08-06) ## [0.80.6](https://github.com/juspay/hyperswitch-web/compare/v0.80.5...v0.80.6) (2024-08-06) ### Bug Fixes * parse exn error handle ([#542](https://github.com/juspay/hyperswitch-web/issues/542)) ([79ed07a](https://github.com/juspay/hyperswitch-web/commit/79ed07a829ae2c5f62959b8acb929edaab1f42c2)) ## [0.80.5](https://github.com/juspay/hyperswitch-web/compare/v0.80.4...v0.80.5) (2024-08-06) ### Bug Fixes * semantic package update ([#538](https://github.com/juspay/hyperswitch-web/issues/538)) ([8ab2730](https://github.com/juspay/hyperswitch-web/commit/8ab27309993eac1d19427e2b41820f5244ca5ae9)) ## [0.80.4](https://github.com/juspay/hyperswitch-web/compare/v0.80.3...v0.80.4) (2024-08-05) ### Bug Fixes * webpack upgraded to new version for removing vulnerability ([#536](https://github.com/juspay/hyperswitch-web/issues/536)) ([c109c7d](https://github.com/juspay/hyperswitch-web/commit/c109c7d81f3e1cb9738c90e49e358ab53d7b6886)) ## [0.80.3](https://github.com/juspay/hyperswitch-web/compare/v0.80.2...v0.80.3) (2024-08-05) ### Bug Fixes * package removal ([#534](https://github.com/juspay/hyperswitch-web/issues/534)) ([179a9a7](https://github.com/juspay/hyperswitch-web/commit/179a9a7986825df5b58739ee303888da4a312666)) ## [0.80.2](https://github.com/juspay/hyperswitch-web/compare/v0.80.1...v0.80.2) (2024-08-02) ## [0.80.1](https://github.com/juspay/hyperswitch-web/compare/v0.80.0...v0.80.1) (2024-08-02) ### Bug Fixes * removal of unnecessary package ([#532](https://github.com/juspay/hyperswitch-web/issues/532)) ([d9ae21f](https://github.com/juspay/hyperswitch-web/commit/d9ae21f37e4503e27b866ed1249f2ea59e2ef0d5)) # [0.80.0](https://github.com/juspay/hyperswitch-web/compare/v0.79.0...v0.80.0) (2024-07-31) ### Features * added support for collecting_billing_details_from_wallets ([#529](https://github.com/juspay/hyperswitch-web/issues/529)) ([4193d85](https://github.com/juspay/hyperswitch-web/commit/4193d85554630affafde70ece98ff3df70cf8762)) # [0.79.0](https://github.com/juspay/hyperswitch-web/compare/v0.78.1...v0.79.0) (2024-07-31) ### Features * **payout:** add localisation for payout widget ([#520](https://github.com/juspay/hyperswitch-web/issues/520)) ([56edd9e](https://github.com/juspay/hyperswitch-web/commit/56edd9e7486c1f0187c10e6fc4d9440b6966f73b)) ## [0.78.1](https://github.com/juspay/hyperswitch-web/compare/v0.78.0...v0.78.1) (2024-07-30) ### Bug Fixes * pix confirm call and added locale support ([#528](https://github.com/juspay/hyperswitch-web/issues/528)) ([382e1c1](https://github.com/juspay/hyperswitch-web/commit/382e1c1eca0560863be5a489d78ec8f9fef5e0a7)) # [0.78.0](https://github.com/juspay/hyperswitch-web/compare/v0.77.4...v0.78.0) (2024-07-26) ### Bug Fixes * log payment data filled and payment method changed event if missed ([#514](https://github.com/juspay/hyperswitch-web/issues/514)) ([61655c2](https://github.com/juspay/hyperswitch-web/commit/61655c2e540c3f73af010c3c75d62486033a8010)) ### Features * pix-ItauBank api contract changes ([#527](https://github.com/juspay/hyperswitch-web/issues/527)) ([fdd692e](https://github.com/juspay/hyperswitch-web/commit/fdd692e4a4a34e5b91cc9008337faad81e03c506)) ## [0.77.4](https://github.com/juspay/hyperswitch-web/compare/v0.77.3...v0.77.4) (2024-07-25) ### Reverts * passing initiativeContext to TrustPay ApplePay ([#522](https://github.com/juspay/hyperswitch-web/issues/522)) ([1ceefe1](https://github.com/juspay/hyperswitch-web/commit/1ceefe15d7943ac02b678b116c4058b4830f5b52)) ## [0.77.3](https://github.com/juspay/hyperswitch-web/compare/v0.77.2...v0.77.3) (2024-07-24) ### Bug Fixes * passing initiativeContext to TrustPay ApplePay ([#519](https://github.com/juspay/hyperswitch-web/issues/519)) ([b74c816](https://github.com/juspay/hyperswitch-web/commit/b74c81656c92e6e917872eccb490944c195b1d47)) ## [0.77.2](https://github.com/juspay/hyperswitch-web/compare/v0.77.1...v0.77.2) (2024-07-24) ### Bug Fixes * customer acceptance issue for bank debits ([#516](https://github.com/juspay/hyperswitch-web/issues/516)) ([e797149](https://github.com/juspay/hyperswitch-web/commit/e797149d2737232c1fd20c39a95413208a685a91)) ## [0.77.1](https://github.com/juspay/hyperswitch-web/compare/v0.77.0...v0.77.1) (2024-07-23) # [0.77.0](https://github.com/juspay/hyperswitch-web/compare/v0.76.2...v0.77.0) (2024-07-18) ### Features * passing X-Merchant-Domain in the headers for Sessions Call ([#504](https://github.com/juspay/hyperswitch-web/issues/504)) ([cd001c5](https://github.com/juspay/hyperswitch-web/commit/cd001c554b0ccf68f2eca08304e6d30abdca85b3)) ## [0.76.2](https://github.com/juspay/hyperswitch-web/compare/v0.76.1...v0.76.2) (2024-07-18) ### Bug Fixes * **payout:** handle tab order updates ([#505](https://github.com/juspay/hyperswitch-web/issues/505)) ([5bdbd74](https://github.com/juspay/hyperswitch-web/commit/5bdbd744570ebf34acf1bb00036383722ad4a73c)) ## [0.76.1](https://github.com/juspay/hyperswitch-web/compare/v0.76.0...v0.76.1) (2024-07-17) # [0.76.0](https://github.com/juspay/hyperswitch-web/compare/v0.75.0...v0.76.0) (2024-07-17) ### Features * language preference for mifinity added ([#502](https://github.com/juspay/hyperswitch-web/issues/502)) ([f9f15ca](https://github.com/juspay/hyperswitch-web/commit/f9f15cacbda9d1b02e778e6606c209f5233b6553)) # [0.75.0](https://github.com/juspay/hyperswitch-web/compare/v0.74.5...v0.75.0) (2024-07-16) ### Features * **payout-link:** add input validations for payment methods in CollectWidget ([#460](https://github.com/juspay/hyperswitch-web/issues/460)) ([c2686cf](https://github.com/juspay/hyperswitch-web/commit/c2686cf046a41176ba93afb0625d6adf5625ccdc)) ## [0.74.5](https://github.com/juspay/hyperswitch-web/compare/v0.74.4...v0.74.5) (2024-07-12) ### Bug Fixes * error string ([#498](https://github.com/juspay/hyperswitch-web/issues/498)) ([213daf7](https://github.com/juspay/hyperswitch-web/commit/213daf793498b7e23d0da74a1e17975c8591bc9e)) ## [0.74.4](https://github.com/juspay/hyperswitch-web/compare/v0.74.3...v0.74.4) (2024-07-12) ## [0.74.3](https://github.com/juspay/hyperswitch-web/compare/v0.74.2...v0.74.3) (2024-07-11) ### Bug Fixes * premount loader fix ([#492](https://github.com/juspay/hyperswitch-web/issues/492)) ([f9d973c](https://github.com/juspay/hyperswitch-web/commit/f9d973cd19a54d73dfcbc664f9ec093ecefd3798)) ## [0.74.2](https://github.com/juspay/hyperswitch-web/compare/v0.74.1...v0.74.2) (2024-07-10) ### Bug Fixes * version: 0.74.1 ([00a71cc](https://github.com/juspay/hyperswitch-web/commit/00a71cca2b2d7207ff41c02ec6c1b8a99bd28c98)) # [0.74.0](https://github.com/juspay/hyperswitch-web/compare/v0.73.2...v0.74.0) (2024-07-10) ### Features * added upi collect payment method type ([#491](https://github.com/juspay/hyperswitch-web/issues/491)) ([8b87fc4](https://github.com/juspay/hyperswitch-web/commit/8b87fc458546924918ac05f0cd6c8a28f879e89f)) ## [0.73.2](https://github.com/juspay/hyperswitch-web/compare/v0.73.1...v0.73.2) (2024-07-09) ### Bug Fixes * date of birth validations ([#480](https://github.com/juspay/hyperswitch-web/issues/480)) ([8d9c620](https://github.com/juspay/hyperswitch-web/commit/8d9c6202fd479c24a01673997bd8d8ab372cf496)) ## [0.73.1](https://github.com/juspay/hyperswitch-web/compare/v0.73.0...v0.73.1) (2024-07-09) # [0.73.0](https://github.com/juspay/hyperswitch-web/compare/v0.72.7...v0.73.0) (2024-07-08) ### Features * payment-management added ([#392](https://github.com/juspay/hyperswitch-web/issues/392)) ([ef1c605](https://github.com/juspay/hyperswitch-web/commit/ef1c605cb3300b28ec4ca41b56ee320a85945fe8)) ## [0.72.7](https://github.com/juspay/hyperswitch-web/compare/v0.72.6...v0.72.7) (2024-07-08) ### Bug Fixes * passing customer acceptance if recurring_enabled is false in saved methods list ([#476](https://github.com/juspay/hyperswitch-web/issues/476)) ([27c132e](https://github.com/juspay/hyperswitch-web/commit/27c132e0dbad9102ec7b9e9cfbf4d6d886b33bdd)) ## [0.72.6](https://github.com/juspay/hyperswitch-web/compare/v0.72.5...v0.72.6) (2024-07-04) ### Bug Fixes * integ api change ([#474](https://github.com/juspay/hyperswitch-web/issues/474)) ([7636470](https://github.com/juspay/hyperswitch-web/commit/76364705d4ecc4eabd8e52a699697e1fd4872eae)) ## [0.72.5](https://github.com/juspay/hyperswitch-web/compare/v0.72.4...v0.72.5) (2024-07-04) ### Bug Fixes * version change ([df29391](https://github.com/juspay/hyperswitch-web/commit/df29391159941b18e16c0ddb4a9d39f8e045f726)) ## [0.72.3](https://github.com/juspay/hyperswitch-web/compare/v0.72.2...v0.72.3) (2024-07-04) ### Bug Fixes * payment data filled event logs for few payment methods ([#467](https://github.com/juspay/hyperswitch-web/issues/467)) ([c1610d5](https://github.com/juspay/hyperswitch-web/commit/c1610d59fc4abc4bbce4d98bef7fb8c0ac8625a5)) ## [0.72.2](https://github.com/juspay/hyperswitch-web/compare/v0.72.1...v0.72.2) (2024-07-04) ### Bug Fixes * info element added & logs addition ([#471](https://github.com/juspay/hyperswitch-web/issues/471)) ([53b3961](https://github.com/juspay/hyperswitch-web/commit/53b3961a1e8aae1699a9393b9cda4e60551f0ca1)) ## [0.72.1](https://github.com/juspay/hyperswitch-web/compare/v0.72.0...v0.72.1) (2024-07-03) ### Bug Fixes * fixed netcetra 3ds not opening and added fallback log ([#470](https://github.com/juspay/hyperswitch-web/issues/470)) ([c686b1b](https://github.com/juspay/hyperswitch-web/commit/c686b1b3588b3128aab63de470bb55633154bd95)) # [0.72.0](https://github.com/juspay/hyperswitch-web/compare/v0.71.11...v0.72.0) (2024-07-03) ### Features * pm auth connector integration - Plaid ([#461](https://github.com/juspay/hyperswitch-web/issues/461)) ([222b322](https://github.com/juspay/hyperswitch-web/commit/222b3227d7bf6f555fe8016975348d050162d91a)) ## [0.71.11](https://github.com/juspay/hyperswitch-web/compare/v0.71.10...v0.71.11) (2024-07-02) ### Bug Fixes * wallets on top for saved cards flow ([#469](https://github.com/juspay/hyperswitch-web/issues/469)) ([eaaccb0](https://github.com/juspay/hyperswitch-web/commit/eaaccb09427904dda4292bf2d692edecd940a76a)) ## [0.71.10](https://github.com/juspay/hyperswitch-web/compare/v0.71.9...v0.71.10) (2024-07-02) ### Bug Fixes * fixed the ui disparity for more payment methods text and use saved payment methods ([#466](https://github.com/juspay/hyperswitch-web/issues/466)) ([c7ca45c](https://github.com/juspay/hyperswitch-web/commit/c7ca45cb1f97aac865e9cfa146fbf92166c1f175)) ## [0.71.9](https://github.com/juspay/hyperswitch-web/compare/v0.71.8...v0.71.9) (2024-07-01) ### Bug Fixes * codeowner changes ([#465](https://github.com/juspay/hyperswitch-web/issues/465)) ([f9a9ff7](https://github.com/juspay/hyperswitch-web/commit/f9a9ff7034c008350ca8f871b149050eb93ebd97)) ## [0.71.8](https://github.com/juspay/hyperswitch-web/compare/v0.71.7...v0.71.8) (2024-07-01) ### Bug Fixes * googlePay and applePay billing details not being passed in confirm call for saved methods ([#464](https://github.com/juspay/hyperswitch-web/issues/464)) ([19db1d3](https://github.com/juspay/hyperswitch-web/commit/19db1d398fc77ca99bb6d296da5f39d1b0d1aca3)) ## [0.71.7](https://github.com/juspay/hyperswitch-web/compare/v0.71.6...v0.71.7) (2024-07-01) ### Bug Fixes * manual retries ([#453](https://github.com/juspay/hyperswitch-web/issues/453)) ([39a51d8](https://github.com/juspay/hyperswitch-web/commit/39a51d8a62b9691b6390dcf27f5fc52e35bc8282)) ## [0.71.6](https://github.com/juspay/hyperswitch-web/compare/v0.71.5...v0.71.6) (2024-06-28) ### Bug Fixes * browser name changes - temp ([#463](https://github.com/juspay/hyperswitch-web/issues/463)) ([3f36342](https://github.com/juspay/hyperswitch-web/commit/3f36342fa4c1684856ae811095c3b4e4be08ee5a)) ## [0.71.5](https://github.com/juspay/hyperswitch-web/compare/v0.71.4...v0.71.5) (2024-06-28) ### Bug Fixes * fixed Appearance and Headless PaymentMethodId ([#462](https://github.com/juspay/hyperswitch-web/issues/462)) ([facda4a](https://github.com/juspay/hyperswitch-web/commit/facda4aca234d82fcbbe55a7543d996d35132606)) ## [0.71.4](https://github.com/juspay/hyperswitch-web/compare/v0.71.3...v0.71.4) (2024-06-27) ### Bug Fixes * add a console.log ([8026d50](https://github.com/juspay/hyperswitch-web/commit/8026d50d61f7f0db29ff80aa667d3360a36ee160)) ## [0.71.3](https://github.com/juspay/hyperswitch-web/compare/v0.71.2...v0.71.3) (2024-06-26) ### Bug Fixes * v0.71.2 ([28f40de](https://github.com/juspay/hyperswitch-web/commit/28f40de551eec4be5302f1ec2ae7a1263038fcc0)) ## [0.71.1](https://github.com/juspay/hyperswitch-web/compare/v0.71.0...v0.71.1) (2024-06-26) ### Bug Fixes * added Env to disable sentry by default ([#459](https://github.com/juspay/hyperswitch-web/issues/459)) ([c622e4f](https://github.com/juspay/hyperswitch-web/commit/c622e4f7a80d418112b605d1352d8b88c2baf801)) # [0.71.0](https://github.com/juspay/hyperswitch-web/compare/v0.70.7...v0.71.0) (2024-06-25) ### Features * add payout widget ([#435](https://github.com/juspay/hyperswitch-web/issues/435)) ([3b1e7f9](https://github.com/juspay/hyperswitch-web/commit/3b1e7f9d8288d392917149693ae5b3b21b664d3f)) ## [0.70.7](https://github.com/juspay/hyperswitch-web/compare/v0.70.6...v0.70.7) (2024-06-25) ### Bug Fixes * google Pay Fix ([#458](https://github.com/juspay/hyperswitch-web/issues/458)) ([1bcd585](https://github.com/juspay/hyperswitch-web/commit/1bcd585f09f9eb5c151614e29827127d4d6dc4e0)) ## [0.70.6](https://github.com/juspay/hyperswitch-web/compare/v0.70.5...v0.70.6) (2024-06-25) ### Bug Fixes * fixed handling of empty string in requiredString and warningString ([#450](https://github.com/juspay/hyperswitch-web/issues/450)) ([a1c75fb](https://github.com/juspay/hyperswitch-web/commit/a1c75fbaea004b2abd274544b90e40a9b1a74cea)) ## [0.70.5](https://github.com/juspay/hyperswitch-web/compare/v0.70.4...v0.70.5) (2024-06-25) ### Bug Fixes * headers update & warnings removed ([#457](https://github.com/juspay/hyperswitch-web/issues/457)) ([a4b653b](https://github.com/juspay/hyperswitch-web/commit/a4b653b79b0056bfc1966f6dcab5a02c272c2c47)) ## [0.70.4](https://github.com/juspay/hyperswitch-web/compare/v0.70.3...v0.70.4) (2024-06-25) ### Bug Fixes * handle requires_customer_action and processing status for pix pa… ([#456](https://github.com/juspay/hyperswitch-web/issues/456)) ([a680e71](https://github.com/juspay/hyperswitch-web/commit/a680e71a73a31eef89d66fd1d35666da53294a51)) ## [0.70.3](https://github.com/juspay/hyperswitch-web/compare/v0.70.2...v0.70.3) (2024-06-24) ### Bug Fixes * fixed Saved Methods ApplePay and GooglePay Handler ([#455](https://github.com/juspay/hyperswitch-web/issues/455)) ([bce8bea](https://github.com/juspay/hyperswitch-web/commit/bce8bea6045acbae2df1016b93623709715a8277)) ## [0.70.2](https://github.com/juspay/hyperswitch-web/compare/v0.70.1...v0.70.2) (2024-06-24) ### Bug Fixes * package update ([0d01ff2](https://github.com/juspay/hyperswitch-web/commit/0d01ff290e0d22e17bf294d939d500c6c9a927a5)) # [0.69.0](https://github.com/juspay/hyperswitch-web/compare/v0.68.0...v0.69.0) (2024-06-20) ### Features * phone country code accept ([#452](https://github.com/juspay/hyperswitch-web/issues/452)) ([45d8f22](https://github.com/juspay/hyperswitch-web/commit/45d8f22e3597b515e53f668d31b1f4e2bffd1ca2)) # [0.68.0](https://github.com/juspay/hyperswitch-web/compare/v0.67.0...v0.68.0) (2024-06-20) ### Features * mifinity wallet addition ([#451](https://github.com/juspay/hyperswitch-web/issues/451)) ([283af60](https://github.com/juspay/hyperswitch-web/commit/283af60daaed8c5eb5f6fe0b25b24dac765a6d54)) # [0.67.0](https://github.com/juspay/hyperswitch-web/compare/v0.66.2...v0.67.0) (2024-06-18) ### Features * add datepicker library ([#449](https://github.com/juspay/hyperswitch-web/issues/449)) ([d28074d](https://github.com/juspay/hyperswitch-web/commit/d28074de5c49684005f498eff597175a11bb8c29)) ## [0.66.2](https://github.com/juspay/hyperswitch-web/compare/v0.66.1...v0.66.2) (2024-06-14) ## [0.66.1](https://github.com/juspay/hyperswitch-web/compare/v0.66.0...v0.66.1) (2024-06-14) ### Bug Fixes * default selected pm issue ([#446](https://github.com/juspay/hyperswitch-web/issues/446)) ([c689185](https://github.com/juspay/hyperswitch-web/commit/c689185168e13493a8921678aec6276f0b29195c)) # [0.66.0](https://github.com/juspay/hyperswitch-web/compare/v0.65.5...v0.66.0) (2024-06-14) ### Features * hideCardNicknameField added ([#445](https://github.com/juspay/hyperswitch-web/issues/445)) ([36109ca](https://github.com/juspay/hyperswitch-web/commit/36109ca1700d426908b956a1e10512e3602fe7dd)) ## [0.65.5](https://github.com/juspay/hyperswitch-web/compare/v0.65.4...v0.65.5) (2024-06-14) ### Bug Fixes * locales update for mm/yy ([#444](https://github.com/juspay/hyperswitch-web/issues/444)) ([0ebc610](https://github.com/juspay/hyperswitch-web/commit/0ebc6101b962fff7cca42d6da1b44319b2c17f88)) ## [0.65.4](https://github.com/juspay/hyperswitch-web/compare/v0.65.3...v0.65.4) (2024-06-14) ### Bug Fixes * button border changes ([#443](https://github.com/juspay/hyperswitch-web/issues/443)) ([a573e16](https://github.com/juspay/hyperswitch-web/commit/a573e16349414b2642da7d44a5924d15d3d0d2c1)) ## [0.65.3](https://github.com/juspay/hyperswitch-web/compare/v0.65.2...v0.65.3) (2024-06-14) ## [0.65.2](https://github.com/juspay/hyperswitch-web/compare/v0.65.1...v0.65.2) (2024-06-13) ### Bug Fixes * loader changes ([#442](https://github.com/juspay/hyperswitch-web/issues/442)) ([47c4d11](https://github.com/juspay/hyperswitch-web/commit/47c4d11ec14aba191ec2d754c4a0cdc923fb1443)) ## [0.65.1](https://github.com/juspay/hyperswitch-web/compare/v0.65.0...v0.65.1) (2024-06-13) ### Bug Fixes * transforming billing and shipping country code to touppercase for applepay ([#441](https://github.com/juspay/hyperswitch-web/issues/441)) ([4745fa2](https://github.com/juspay/hyperswitch-web/commit/4745fa259ef3398fd0c9a39b12fe622b29a824ca)) # [0.65.0](https://github.com/juspay/hyperswitch-web/compare/v0.64.0...v0.65.0) (2024-06-13) ### Features * added prop for displayDefaultSavedPaymentIcon ([#434](https://github.com/juspay/hyperswitch-web/issues/434)) ([b141aed](https://github.com/juspay/hyperswitch-web/commit/b141aedf07e8eff9d6653440631aa193e72db712)) # [0.64.0](https://github.com/juspay/hyperswitch-web/compare/v0.63.0...v0.64.0) (2024-06-13) ### Features * added confirm and get handler for last used payment ([#428](https://github.com/juspay/hyperswitch-web/issues/428)) ([5e46da0](https://github.com/juspay/hyperswitch-web/commit/5e46da0924977fa00ccd5ce716c1ed494076ae7f)) # [0.63.0](https://github.com/juspay/hyperswitch-web/compare/v0.62.3...v0.63.0) (2024-06-13) ### Features * log href without including search params ([#439](https://github.com/juspay/hyperswitch-web/issues/439)) ([ad43a5c](https://github.com/juspay/hyperswitch-web/commit/ad43a5cbe8a53ca06aff77b852d76d84f2b1df05)) ## [0.62.3](https://github.com/juspay/hyperswitch-web/compare/v0.62.2...v0.62.3) (2024-06-13) ### Bug Fixes * removed fallback in case of sessions call fail based on payment experience ([#440](https://github.com/juspay/hyperswitch-web/issues/440)) ([8f2e408](https://github.com/juspay/hyperswitch-web/commit/8f2e4085a65aff510ae49b416bc987aa2ca5b4da)) ## [0.62.2](https://github.com/juspay/hyperswitch-web/compare/v0.62.1...v0.62.2) (2024-06-11) ### Bug Fixes * button border changes ([#438](https://github.com/juspay/hyperswitch-web/issues/438)) ([b1168a5](https://github.com/juspay/hyperswitch-web/commit/b1168a5d284e6363e34b295c54262b17c8e4fdd0)) ## [0.62.1](https://github.com/juspay/hyperswitch-web/compare/v0.62.0...v0.62.1) (2024-06-11) ### Bug Fixes * demo app docker url needed ([#437](https://github.com/juspay/hyperswitch-web/issues/437)) ([2fdf8a5](https://github.com/juspay/hyperswitch-web/commit/2fdf8a5d412e4e24984c876daaf1a9bd381c4400)) # [0.62.0](https://github.com/juspay/hyperswitch-web/compare/v0.61.2...v0.62.0) (2024-06-11) ### Bug Fixes * two shimmers issue fixed ([#424](https://github.com/juspay/hyperswitch-web/issues/424)) ([78ba856](https://github.com/juspay/hyperswitch-web/commit/78ba8561e85e7dbf9f7257337b155265295d7392)) ### Features * crypto currency network added ([#403](https://github.com/juspay/hyperswitch-web/issues/403)) ([24f7297](https://github.com/juspay/hyperswitch-web/commit/24f72972e7faa45edc77f7e75248ca9c8f3334d8)) ## [0.61.2](https://github.com/juspay/hyperswitch-web/compare/v0.61.1...v0.61.2) (2024-06-07) ### Bug Fixes * redirect issue ([#432](https://github.com/juspay/hyperswitch-web/issues/432)) ([a984498](https://github.com/juspay/hyperswitch-web/commit/a9844988ee15fe40a2e7ba2b38f6c49fbe31b5a8)) ## [0.61.1](https://github.com/juspay/hyperswitch-web/compare/v0.61.0...v0.61.1) (2024-06-07) # [0.61.0](https://github.com/juspay/hyperswitch-web/compare/v0.60.0...v0.61.0) (2024-06-07) ### Features * self serve url in env ([#425](https://github.com/juspay/hyperswitch-web/issues/425)) ([107e914](https://github.com/juspay/hyperswitch-web/commit/107e914865a0b6a677663746689c6452287fae19)) # [0.60.0](https://github.com/juspay/hyperswitch-web/compare/v0.59.2...v0.60.0) (2024-06-05) ### Features * added Klarna as a one click widget ([#420](https://github.com/juspay/hyperswitch-web/issues/420)) ([bdd0fa3](https://github.com/juspay/hyperswitch-web/commit/bdd0fa3ffd5b4e0018109541323981c945a1ed4a)) ## [0.59.2](https://github.com/juspay/hyperswitch-web/compare/v0.59.1...v0.59.2) (2024-06-04) ### Bug Fixes * afterpay_body fix ([#418](https://github.com/juspay/hyperswitch-web/issues/418)) ([1338e15](https://github.com/juspay/hyperswitch-web/commit/1338e15e4cc4708610b56c59ee665af1f438fef2)) ## [0.59.1](https://github.com/juspay/hyperswitch-web/compare/v0.59.0...v0.59.1) (2024-06-04) ### Bug Fixes * apple-pay outline ([#417](https://github.com/juspay/hyperswitch-web/issues/417)) ([c476d29](https://github.com/juspay/hyperswitch-web/commit/c476d29ad46bd581aea4e771e953e393af1191e2)) # [0.59.0](https://github.com/juspay/hyperswitch-web/compare/v0.58.3...v0.59.0) (2024-06-04) ### Features * enabled afterpay with dynamic fields ([#416](https://github.com/juspay/hyperswitch-web/issues/416)) ([0f64ec3](https://github.com/juspay/hyperswitch-web/commit/0f64ec398e87a4871c7967f5283a0255d0510592)) ## [0.58.3](https://github.com/juspay/hyperswitch-web/compare/v0.58.2...v0.58.3) (2024-06-03) ### Bug Fixes * fixed polling status and firefox form rendering ([#411](https://github.com/juspay/hyperswitch-web/issues/411)) ([600495b](https://github.com/juspay/hyperswitch-web/commit/600495b32725566265b6e5dd5d05ed3962226c3b)) * width issue dropdown ([#415](https://github.com/juspay/hyperswitch-web/issues/415)) ([7defc1d](https://github.com/juspay/hyperswitch-web/commit/7defc1d9817e053c85610be317838815935d3385)) ## [0.58.2](https://github.com/juspay/hyperswitch-web/compare/v0.58.1...v0.58.2) (2024-06-03) ### Bug Fixes * remove postal code check ([#412](https://github.com/juspay/hyperswitch-web/issues/412)) ([13b9625](https://github.com/juspay/hyperswitch-web/commit/13b962581e8243d99f070b2fc7e2ab4edc180e49)) ## [0.58.1](https://github.com/juspay/hyperswitch-web/compare/v0.58.0...v0.58.1) (2024-06-03) ### Bug Fixes * 3ds netcetra paymentloader ([#414](https://github.com/juspay/hyperswitch-web/issues/414)) ([3ffe27a](https://github.com/juspay/hyperswitch-web/commit/3ffe27a1ce4ded6888b4c983fc37a4da59042aef)) # [0.58.0](https://github.com/juspay/hyperswitch-web/compare/v0.57.3...v0.58.0) (2024-05-31) ### Features * ali pay hk added, fix for disableSavedPaymentMethods prop ([#410](https://github.com/juspay/hyperswitch-web/issues/410)) ([41a006c](https://github.com/juspay/hyperswitch-web/commit/41a006c59d1cb3b8da2088976b306e7444b11285)) ## [0.57.3](https://github.com/juspay/hyperswitch-web/compare/v0.57.2...v0.57.3) (2024-05-31) ### Bug Fixes * error utils refactor ([#405](https://github.com/juspay/hyperswitch-web/issues/405)) ([8d833e4](https://github.com/juspay/hyperswitch-web/commit/8d833e4385a4e9b3c819fbc3ad062a9a3f352cf8)) * mb_way ui fix ([#407](https://github.com/juspay/hyperswitch-web/issues/407)) ([9c6a87c](https://github.com/juspay/hyperswitch-web/commit/9c6a87c5e99102a8047cb674810b713f60069ea0)) ## [0.57.2](https://github.com/juspay/hyperswitch-web/compare/v0.57.1...v0.57.2) (2024-05-30) ### Bug Fixes * allow customer to pay with different payment method on cancel of… ([#409](https://github.com/juspay/hyperswitch-web/issues/409)) ([d48c5c2](https://github.com/juspay/hyperswitch-web/commit/d48c5c26b2eb96ceeaa75c348d73c3f6ab480cc4)) ## [0.57.1](https://github.com/juspay/hyperswitch-web/compare/v0.57.0...v0.57.1) (2024-05-30) ### Bug Fixes * hide terms based upon prop ([#408](https://github.com/juspay/hyperswitch-web/issues/408)) ([8a5d554](https://github.com/juspay/hyperswitch-web/commit/8a5d5548d70750725a61381abf4fa68879fa4746)) # [0.57.0](https://github.com/juspay/hyperswitch-web/compare/v0.56.1...v0.57.0) (2024-05-30) ### Bug Fixes * fixed ApplePay Event Handler ([#406](https://github.com/juspay/hyperswitch-web/issues/406)) ([bfc7470](https://github.com/juspay/hyperswitch-web/commit/bfc747010c6a5c891d0d93e7ce9dbbcdd8980e07)) ### Features * added PayPal SDK Via PayPal ([#404](https://github.com/juspay/hyperswitch-web/issues/404)) ([084932d](https://github.com/juspay/hyperswitch-web/commit/084932d644cc4f7da9aebe124e069e97ee14476b)) ## [0.56.1](https://github.com/juspay/hyperswitch-web/compare/v0.56.0...v0.56.1) (2024-05-27) ### Bug Fixes * redirection for 400 confirm call ([#402](https://github.com/juspay/hyperswitch-web/issues/402)) ([a169a44](https://github.com/juspay/hyperswitch-web/commit/a169a44585f2f2a33cce3d0d2b232b0c82671107)) # [0.56.0](https://github.com/juspay/hyperswitch-web/compare/v0.55.2...v0.56.0) (2024-05-27) ### Bug Fixes * added Fixes for one click widgets ([#399](https://github.com/juspay/hyperswitch-web/issues/399)) ([a1a1c5e](https://github.com/juspay/hyperswitch-web/commit/a1a1c5e3017d1c43edae05081e74f6e9ffdaa924)) ### Features * 3DS netcetra Part B ([#383](https://github.com/juspay/hyperswitch-web/issues/383)) ([aa44b98](https://github.com/juspay/hyperswitch-web/commit/aa44b98b853bda6ed2b91f5276e027a120df2be8)) ## [0.55.2](https://github.com/juspay/hyperswitch-web/compare/v0.55.1...v0.55.2) (2024-05-27) ### Bug Fixes * blik code hyphen removal ([#401](https://github.com/juspay/hyperswitch-web/issues/401)) ([4953f7a](https://github.com/juspay/hyperswitch-web/commit/4953f7a861ed40ebe2c59b139aa06f9b822f8e67)) ## [0.55.1](https://github.com/juspay/hyperswitch-web/compare/v0.55.0...v0.55.1) (2024-05-27) ### Bug Fixes * sdk button loader issue ([#400](https://github.com/juspay/hyperswitch-web/issues/400)) ([e012642](https://github.com/juspay/hyperswitch-web/commit/e012642865231e6c2787b828730cfc1c41ebbe36)) # [0.55.0](https://github.com/juspay/hyperswitch-web/compare/v0.54.2...v0.55.0) (2024-05-23) ### Features * unsupported card networks validation ([#370](https://github.com/juspay/hyperswitch-web/issues/370)) ([05f527a](https://github.com/juspay/hyperswitch-web/commit/05f527abb475bdaf29912fd452a3b0f4b0b3bb55)) ## [0.54.2](https://github.com/juspay/hyperswitch-web/compare/v0.54.1...v0.54.2) (2024-05-23) ### Bug Fixes * sdk button redirect issue ([#398](https://github.com/juspay/hyperswitch-web/issues/398)) ([dd78d56](https://github.com/juspay/hyperswitch-web/commit/dd78d5611100e23025e19d1563e1ff1e5434a692)) ## [0.54.1](https://github.com/juspay/hyperswitch-web/compare/v0.54.0...v0.54.1) (2024-05-22) ### Bug Fixes * saved method checkbox condition updated ([#395](https://github.com/juspay/hyperswitch-web/issues/395)) ([8642913](https://github.com/juspay/hyperswitch-web/commit/8642913f5ba4be1c441499f15da2aab64870b209)) # [0.54.0](https://github.com/juspay/hyperswitch-web/compare/v0.53.3...v0.54.0) (2024-05-22) ### Features * isolate paymentElementCreate message ([#387](https://github.com/juspay/hyperswitch-web/issues/387)) ([0fdfacd](https://github.com/juspay/hyperswitch-web/commit/0fdfacd5826cebc16bb0a807d0539c42055e30f5)) ## [0.53.3](https://github.com/juspay/hyperswitch-web/compare/v0.53.2...v0.53.3) (2024-05-22) ### Bug Fixes * added patch for revert to generate tag ([#385](https://github.com/juspay/hyperswitch-web/issues/385)) ([4a0d92f](https://github.com/juspay/hyperswitch-web/commit/4a0d92f775fafd21e892e58a12151cbd58f7a170)) * reverse core lib issue ([#386](https://github.com/juspay/hyperswitch-web/issues/386)) ([28f9067](https://github.com/juspay/hyperswitch-web/commit/28f90670d61c18828f7e24007f9c898bf3ad2acc)) ## [0.53.2](https://github.com/juspay/hyperswitch-web/compare/v0.53.1...v0.53.2) (2024-05-22) ### Bug Fixes * updated headers ([#381](https://github.com/juspay/hyperswitch-web/issues/381)) ([bd9d7e4](https://github.com/juspay/hyperswitch-web/commit/bd9d7e4f31b8c88e34c675c87655f2a51fe475f7)) ### Reverts * do not unmount preMountLoader iframe ([#382](https://github.com/juspay/hyperswitch-web/issues/382)) ([9d259c2](https://github.com/juspay/hyperswitch-web/commit/9d259c25ac88d142f910bff81895d10dabbd0dc1)) ## [0.53.1](https://github.com/juspay/hyperswitch-web/compare/v0.53.0...v0.53.1) (2024-05-17) ### Bug Fixes * openurl_if_required enhancement ([#371](https://github.com/juspay/hyperswitch-web/issues/371)) ([77fcdcf](https://github.com/juspay/hyperswitch-web/commit/77fcdcf09f2352b72908ffca770be6bdfd57932a)) # [0.53.0](https://github.com/juspay/hyperswitch-web/compare/v0.52.3...v0.53.0) (2024-05-17) ### Features * address collection for one click widgets ([#361](https://github.com/juspay/hyperswitch-web/issues/361)) ([48c48a3](https://github.com/juspay/hyperswitch-web/commit/48c48a31f931df615fc27fe492a9ce268d24fff7)) ## [0.52.3](https://github.com/juspay/hyperswitch-web/compare/v0.52.2...v0.52.3) (2024-05-16) ### Bug Fixes * rescript minor version upgrade ([#378](https://github.com/juspay/hyperswitch-web/issues/378)) ([a8d59bb](https://github.com/juspay/hyperswitch-web/commit/a8d59bb1254fb5c6fd51029158e5b6aff5d515c6)) ## [0.52.2](https://github.com/juspay/hyperswitch-web/compare/v0.52.1...v0.52.2) (2024-05-16) ### Bug Fixes * added utility function ([#368](https://github.com/juspay/hyperswitch-web/issues/368)) ([4c2c5a1](https://github.com/juspay/hyperswitch-web/commit/4c2c5a1b451cc3f80d73b002121055df6cb38c9b)) ## [0.52.1](https://github.com/juspay/hyperswitch-web/compare/v0.52.0...v0.52.1) (2024-05-14) ### Bug Fixes * do not unmount preMountLoader iframe ([#367](https://github.com/juspay/hyperswitch-web/issues/367)) ([ba47e5f](https://github.com/juspay/hyperswitch-web/commit/ba47e5f4faece8be2ec5a374bafd266da7d591e4)) # [0.52.0](https://github.com/juspay/hyperswitch-web/compare/v0.51.1...v0.52.0) (2024-05-14) ### Features * added content length ([#366](https://github.com/juspay/hyperswitch-web/issues/366)) ([2a1b42a](https://github.com/juspay/hyperswitch-web/commit/2a1b42ad2e62b6cd5461345516e5d0ddcaa0abeb)) ## [0.51.1](https://github.com/juspay/hyperswitch-web/compare/v0.51.0...v0.51.1) (2024-05-14) ### Bug Fixes * added display_voucher_information again ([#369](https://github.com/juspay/hyperswitch-web/issues/369)) ([91978a9](https://github.com/juspay/hyperswitch-web/commit/91978a9db150ea3f1ce4518fcbace4142ef28343)) # [0.51.0](https://github.com/juspay/hyperswitch-web/compare/v0.50.14...v0.51.0) (2024-05-10) ### Features * phone country dropdown added ([#270](https://github.com/juspay/hyperswitch-web/issues/270)) ([f6a945c](https://github.com/juspay/hyperswitch-web/commit/f6a945c238b28f69ded4062ff851170f5ee0a590)) ## [0.50.14](https://github.com/juspay/hyperswitch-web/compare/v0.50.13...v0.50.14) (2024-05-10) ### Bug Fixes * apple_pay sdk pay now button ([#365](https://github.com/juspay/hyperswitch-web/issues/365)) ([dd1bb0f](https://github.com/juspay/hyperswitch-web/commit/dd1bb0f4399db175f8140fd4236b8aa25a02737c)) ## [0.50.13](https://github.com/juspay/hyperswitch-web/compare/v0.50.12...v0.50.13) (2024-05-10) ### Bug Fixes * paynow button fix for required fields ([#364](https://github.com/juspay/hyperswitch-web/issues/364)) ([0d8f1f7](https://github.com/juspay/hyperswitch-web/commit/0d8f1f76cadd8030b15af38669e5a038d1ddfd3b)) ## [0.50.12](https://github.com/juspay/hyperswitch-web/compare/v0.50.11...v0.50.12) (2024-05-10) ### Bug Fixes * card brand configuration error added ([#362](https://github.com/juspay/hyperswitch-web/issues/362)) ([f14c591](https://github.com/juspay/hyperswitch-web/commit/f14c591e91717af35c4cda9db2e19bc0d180dd9d)) ## [0.50.11](https://github.com/juspay/hyperswitch-web/compare/v0.50.10...v0.50.11) (2024-05-10) ## [0.50.10](https://github.com/juspay/hyperswitch-web/compare/v0.50.9...v0.50.10) (2024-05-10) ### Bug Fixes * api-endpoint-url fix for custom backend url ([#357](https://github.com/juspay/hyperswitch-web/issues/357)) ([494a815](https://github.com/juspay/hyperswitch-web/commit/494a815fdf68b944e9fd3076163fbbacc3d3f2ed)) ## [0.50.9](https://github.com/juspay/hyperswitch-web/compare/v0.50.8...v0.50.9) (2024-05-08) ### Bug Fixes * isthirdpartyflow fix ([#360](https://github.com/juspay/hyperswitch-web/issues/360)) ([2b19175](https://github.com/juspay/hyperswitch-web/commit/2b19175d6680525d50d03a6e3b042804ce8b8953)) ## [0.50.8](https://github.com/juspay/hyperswitch-web/compare/v0.50.7...v0.50.8) (2024-05-08) ### Bug Fixes * dropdown error even when first option is selected ([#356](https://github.com/juspay/hyperswitch-web/issues/356)) ([3e7b007](https://github.com/juspay/hyperswitch-web/commit/3e7b0071b8db132c901cbc0a7fc44f6ef13349d8)) ## [0.50.6](https://github.com/juspay/hyperswitch-web/compare/v0.50.5...v0.50.6) (2024-05-07) ## [0.50.5](https://github.com/juspay/hyperswitch-web/compare/v0.50.4...v0.50.5) (2024-05-06) ### Bug Fixes * fixed Saveds Card Confirm Body Sending card details ([#352](https://github.com/juspay/hyperswitch-web/issues/352)) ([2925299](https://github.com/juspay/hyperswitch-web/commit/29252993dc8738549445c9f3c4ccee594674a89d)) ## [0.50.4](https://github.com/juspay/hyperswitch-web/compare/v0.50.3...v0.50.4) (2024-05-06) ### Bug Fixes * combined Dynamic Fields for credit and debit ([#351](https://github.com/juspay/hyperswitch-web/issues/351)) ([fceda3c](https://github.com/juspay/hyperswitch-web/commit/fceda3c4a4c49b528a564d4eabeb711504e2307a)) ## [0.50.3](https://github.com/juspay/hyperswitch-web/compare/v0.50.2...v0.50.3) (2024-05-06) ## [0.50.2](https://github.com/juspay/hyperswitch-web/compare/v0.50.1...v0.50.2) (2024-05-06) ## [0.50.1](https://github.com/juspay/hyperswitch-web/compare/v0.50.0...v0.50.1) (2024-05-06) # [0.50.0](https://github.com/juspay/hyperswitch-web/compare/v0.49.2...v0.50.0) (2024-05-06) ### Features * hideExpiredPaymentMethods prop added ([#350](https://github.com/juspay/hyperswitch-web/issues/350)) ([f2a8c42](https://github.com/juspay/hyperswitch-web/commit/f2a8c4295953e8743ad9d5f2c4d7df9c3eba6a96)) ## [0.49.2](https://github.com/juspay/hyperswitch-web/compare/v0.49.1...v0.49.2) (2024-05-06) ## [0.49.1](https://github.com/juspay/hyperswitch-web/compare/v0.49.0...v0.49.1) (2024-05-03) ### Bug Fixes * card holder name showing twice ([#349](https://github.com/juspay/hyperswitch-web/issues/349)) ([f72fb5a](https://github.com/juspay/hyperswitch-web/commit/f72fb5a4518e98205479801f74ec5cb2a5bca0fd)) # [0.49.0](https://github.com/juspay/hyperswitch-web/compare/v0.48.2...v0.49.0) (2024-05-03) ### Features * **\:** identifying in-app browsers from user agents ([#317](https://github.com/juspay/hyperswitch-web/issues/317)) ([0218221](https://github.com/juspay/hyperswitch-web/commit/02182211a40413fd2f764a7ff9efa9d1493e402a)) ## [0.48.2](https://github.com/juspay/hyperswitch-web/compare/v0.48.1...v0.48.2) (2024-05-03) ### Bug Fixes * remove expired saved cards ([#345](https://github.com/juspay/hyperswitch-web/issues/345)) ([97b66c7](https://github.com/juspay/hyperswitch-web/commit/97b66c74584853010b12443febebb53bb8876ac4)) ## [0.48.1](https://github.com/juspay/hyperswitch-web/compare/v0.48.0...v0.48.1) (2024-05-03) ### Bug Fixes * **states:** removed few states from the US list ([#348](https://github.com/juspay/hyperswitch-web/issues/348)) ([46ac3c4](https://github.com/juspay/hyperswitch-web/commit/46ac3c416ec0d5aa1288e8ecd87c8409c8cba0c8)) # [0.48.0](https://github.com/juspay/hyperswitch-web/compare/v0.47.1...v0.48.0) (2024-05-02) ### Features * compressed theme layout ([#320](https://github.com/juspay/hyperswitch-web/issues/320)) ([bdc1336](https://github.com/juspay/hyperswitch-web/commit/bdc1336a62c1916fd87c46749dc017d6832f1c15)) ## [0.47.1](https://github.com/juspay/hyperswitch-web/compare/v0.47.0...v0.47.1) (2024-05-02) ### Bug Fixes * **paymentutils:** fixed Maximum Depth Exceeded ([#343](https://github.com/juspay/hyperswitch-web/issues/343)) ([f8443c3](https://github.com/juspay/hyperswitch-web/commit/f8443c3a37874b33de6ec1ee83362aef99dc113c)) # [0.47.0](https://github.com/juspay/hyperswitch-web/compare/v0.46.5...v0.47.0) (2024-04-30) ### Bug Fixes * third party confirm url ([#342](https://github.com/juspay/hyperswitch-web/issues/342)) ([4ba7599](https://github.com/juspay/hyperswitch-web/commit/4ba7599c90dac4c990950eda9bcff49b9ef59e02)) ### Features * added one click widgets (applepay, googlepay, paypal) ([#271](https://github.com/juspay/hyperswitch-web/issues/271)) ([509829a](https://github.com/juspay/hyperswitch-web/commit/509829a0c24e10008eef22ede8f4462dfd9eca2d)) ## [0.46.6](https://github.com/juspay/hyperswitch-web/compare/v0.46.5...v0.46.6) (2024-04-30) ### Bug Fixes * third party confirm url ([#342](https://github.com/juspay/hyperswitch-web/issues/342)) ([4ba7599](https://github.com/juspay/hyperswitch-web/commit/4ba7599c90dac4c990950eda9bcff49b9ef59e02)) ## [0.46.5](https://github.com/juspay/hyperswitch-web/compare/v0.46.4...v0.46.5) (2024-04-30) ### Bug Fixes * cdn confirm endpoint ([#341](https://github.com/juspay/hyperswitch-web/issues/341)) ([664fd07](https://github.com/juspay/hyperswitch-web/commit/664fd07e227f49598f8ba83d1894abce0648dec6)) ## [0.46.4](https://github.com/juspay/hyperswitch-web/compare/v0.46.3...v0.46.4) (2024-04-30) ### Bug Fixes * cdn confirm endpoint ([#340](https://github.com/juspay/hyperswitch-web/issues/340)) ([6750ad0](https://github.com/juspay/hyperswitch-web/commit/6750ad014677a173de2c9874a9771f9bdf149557)) ## [0.46.3](https://github.com/juspay/hyperswitch-web/compare/v0.46.2...v0.46.3) (2024-04-30) ### Bug Fixes * cdn backend endpoint ([#339](https://github.com/juspay/hyperswitch-web/issues/339)) ([5aa7459](https://github.com/juspay/hyperswitch-web/commit/5aa74596c123a909f646ed767a694f741e1a2d4f)) ## [0.46.2](https://github.com/juspay/hyperswitch-web/compare/v0.46.1...v0.46.2) (2024-04-30) ### Bug Fixes * **webpack:** reverting back the CDN changes ([a524987](https://github.com/juspay/hyperswitch-web/commit/a524987f488fd57d775c671cec6dcf59f9db797c)) ## [0.46.1](https://github.com/juspay/hyperswitch-web/compare/v0.46.0...v0.46.1) (2024-04-29) ### Bug Fixes * move applepay thirdparty event listeners outside ([#336](https://github.com/juspay/hyperswitch-web/issues/336)) ([c08ec25](https://github.com/juspay/hyperswitch-web/commit/c08ec25e1211e3efdbe7af5c6db44d6a0b7cc03b)) # [0.46.0](https://github.com/juspay/hyperswitch-web/compare/v0.45.1...v0.46.0) (2024-04-26) ### Features * three_ds polling part2 ([#334](https://github.com/juspay/hyperswitch-web/issues/334)) ([b61bc3c](https://github.com/juspay/hyperswitch-web/commit/b61bc3cdd049a8b66bbfe38879367ecb22ec0659)) ## [0.45.1](https://github.com/juspay/hyperswitch-web/compare/v0.45.0...v0.45.1) (2024-04-24) ### Bug Fixes * priority array to include apple pay logs ([#332](https://github.com/juspay/hyperswitch-web/issues/332)) ([937248f](https://github.com/juspay/hyperswitch-web/commit/937248f8ff3507cd9b6ccef3fe56769456f6ccbe)) # [0.45.0](https://github.com/juspay/hyperswitch-web/compare/v0.44.1...v0.45.0) (2024-04-24) ### Features * polling status for 3ds flow Part 1 ([#329](https://github.com/juspay/hyperswitch-web/issues/329)) ([bd499b7](https://github.com/juspay/hyperswitch-web/commit/bd499b70af9c79012cbe87f15d953b837dcbfe18)) ## [0.44.1](https://github.com/juspay/hyperswitch-web/compare/v0.44.0...v0.44.1) (2024-04-19) ### Bug Fixes * whitelist 127.0.0.1 for local dev ([#316](https://github.com/juspay/hyperswitch-web/issues/316)) ([7212181](https://github.com/juspay/hyperswitch-web/commit/7212181ca57e1d49eca3feda1c6ba7a5746cebeb)) # [0.44.0](https://github.com/juspay/hyperswitch-web/compare/v0.43.5...v0.44.0) (2024-04-19) ### Features * normal mandate changes ([#314](https://github.com/juspay/hyperswitch-web/issues/314)) ([0ce1540](https://github.com/juspay/hyperswitch-web/commit/0ce1540623ddbb95c76cb12217e05eccd7ff537a)) ## [0.43.5](https://github.com/juspay/hyperswitch-web/compare/v0.43.4...v0.43.5) (2024-04-18) ### Bug Fixes * updated premountloader iframe src ([#311](https://github.com/juspay/hyperswitch-web/issues/311)) ([188ccf0](https://github.com/juspay/hyperswitch-web/commit/188ccf0f9d5cd59859590fa5870b61c569ce70fc)) ## [0.43.4](https://github.com/juspay/hyperswitch-web/compare/v0.43.3...v0.43.4) (2024-04-18) ## [0.43.3](https://github.com/juspay/hyperswitch-web/compare/v0.43.2...v0.43.3) (2024-04-18) ### Bug Fixes * block non https urls ([#295](https://github.com/juspay/hyperswitch-web/issues/295)) ([2c745eb](https://github.com/juspay/hyperswitch-web/commit/2c745ebf4b26703ad600cb0e5d04742d7eda79ee)) ## [0.43.2](https://github.com/juspay/hyperswitch-web/compare/v0.43.1...v0.43.2) (2024-04-18) ### Bug Fixes * Added envLoggingUrl in webpack ([#294](https://github.com/juspay/hyperswitch-web/issues/294)) ([88587ac](https://github.com/juspay/hyperswitch-web/commit/88587ac725c03fa1362e3ad79222a290f4d86cdb)) ## [0.43.1](https://github.com/juspay/hyperswitch-web/compare/v0.43.0...v0.43.1) (2024-04-18) ### Bug Fixes * **threedsmethod:** changed Three DS method API call to hidden Form Post ([#302](https://github.com/juspay/hyperswitch-web/issues/302)) ([e42a5a3](https://github.com/juspay/hyperswitch-web/commit/e42a5a3b0f68ba3264ffbe6d7afde41b1cc01d9d)) # [0.43.0](https://github.com/juspay/hyperswitch-web/compare/v0.42.6...v0.43.0) (2024-04-18) ### Features * mandate changes for Saved Card flow ([#309](https://github.com/juspay/hyperswitch-web/issues/309)) ([648ea87](https://github.com/juspay/hyperswitch-web/commit/648ea87d8e2b0c989edbe7949b43a2c1e70e70cc)) ## [0.42.6](https://github.com/juspay/hyperswitch-web/compare/v0.42.5...v0.42.6) (2024-04-17) ### Bug Fixes * mandate data pass hide checkbox ([#308](https://github.com/juspay/hyperswitch-web/issues/308)) ([51c98ab](https://github.com/juspay/hyperswitch-web/commit/51c98abc4da2438195cfbb7e418bf7f47f800008)) ## [0.42.5](https://github.com/juspay/hyperswitch-web/compare/v0.42.4...v0.42.5) (2024-04-17) ## [0.42.4](https://github.com/juspay/hyperswitch-web/compare/v0.42.3...v0.42.4) (2024-04-17) ### Bug Fixes * promise unresolved type error ([#298](https://github.com/juspay/hyperswitch-web/issues/298)) ([03da575](https://github.com/juspay/hyperswitch-web/commit/03da57557f70ae36dc155392a6ccae2b9cad573e)) ## [0.42.3](https://github.com/juspay/hyperswitch-web/compare/v0.42.2...v0.42.3) (2024-04-17) ### Bug Fixes * (paymenthelpers, paymentelement) promise being unresolved ([#297](https://github.com/juspay/hyperswitch-web/issues/297)) ([6494f51](https://github.com/juspay/hyperswitch-web/commit/6494f517a95321b4cb0911f772866deff055d878)) ## [0.42.2](https://github.com/juspay/hyperswitch-web/compare/v0.42.1...v0.42.2) (2024-04-17) ### Bug Fixes * changes card payment ([#306](https://github.com/juspay/hyperswitch-web/issues/306)) ([d9a5b61](https://github.com/juspay/hyperswitch-web/commit/d9a5b611dbb191f1e3f5a4504f3729249e60d73b)) ## [0.42.1](https://github.com/juspay/hyperswitch-web/compare/v0.42.0...v0.42.1) (2024-04-17) ### Bug Fixes * card payment changes ([#303](https://github.com/juspay/hyperswitch-web/issues/303)) ([25dc996](https://github.com/juspay/hyperswitch-web/commit/25dc996c82fd459a67cf4836c2652cdee91b1cca)) # [0.42.0](https://github.com/juspay/hyperswitch-web/compare/v0.41.0...v0.42.0) (2024-04-17) ### Features * (revert) mandate Changes for the Saved card screen & SDK Button Loader changes ([#301](https://github.com/juspay/hyperswitch-web/issues/301)) ([b490fed](https://github.com/juspay/hyperswitch-web/commit/b490fed4702306997a642041fdff56417822b7ca)) # [0.41.0](https://github.com/juspay/hyperswitch-web/compare/v0.40.0...v0.41.0) (2024-04-16) ### Bug Fixes * **hyper.res:** prefetch assets instead of preload ([#291](https://github.com/juspay/hyperswitch-web/issues/291)) ([703fd50](https://github.com/juspay/hyperswitch-web/commit/703fd505e686d9c897e82bb0109a280484fc1d6b)) ### Features * mandate Changes for the Saved card screen & SDK Button Loader changes ([#289](https://github.com/juspay/hyperswitch-web/issues/289)) ([0e5b5ab](https://github.com/juspay/hyperswitch-web/commit/0e5b5abd588732481bfbafb84080b3297bf993c5)) # [0.40.0](https://github.com/juspay/hyperswitch-web/compare/v0.39.4...v0.40.0) (2024-04-15) ### Features * added new redirection payment method local bank transfer ([#288](https://github.com/juspay/hyperswitch-web/issues/288)) ([390febd](https://github.com/juspay/hyperswitch-web/commit/390febd83e7180967e1112d8135ba9919f096851)) ## [0.39.4](https://github.com/juspay/hyperswitch-web/compare/v0.39.3...v0.39.4) (2024-04-15) ### Bug Fixes * paypal issue for Ideal Fix ([#290](https://github.com/juspay/hyperswitch-web/issues/290)) ([7678418](https://github.com/juspay/hyperswitch-web/commit/7678418b50c10aa8d9188a383846fb29878d7d14)) ## [0.39.3](https://github.com/juspay/hyperswitch-web/compare/v0.39.2...v0.39.3) (2024-04-12) ### Bug Fixes * payment data filled google pay ([#281](https://github.com/juspay/hyperswitch-web/issues/281)) ([c58c0a6](https://github.com/juspay/hyperswitch-web/commit/c58c0a6e70d4f6eb410e7d03865bfd1a44f62dab)) ## [0.39.2](https://github.com/juspay/hyperswitch-web/compare/v0.39.1...v0.39.2) (2024-04-12) ### Bug Fixes * **states:** moved states to UM (UnitedStatesMinorOutlyingIslands) ([#287](https://github.com/juspay/hyperswitch-web/issues/287)) ([f17270a](https://github.com/juspay/hyperswitch-web/commit/f17270a163b993afb1053165978ba2529615834a)) ## [0.39.1](https://github.com/juspay/hyperswitch-web/compare/v0.39.0...v0.39.1) (2024-04-10) ### Bug Fixes * added support for Customization for PaymentMethodHeaderText ([#283](https://github.com/juspay/hyperswitch-web/issues/283)) ([bdbd84a](https://github.com/juspay/hyperswitch-web/commit/bdbd84acc2477938640e4fb1628d66345da5e333)) # [0.39.0](https://github.com/juspay/hyperswitch-web/compare/v0.38.2...v0.39.0) (2024-04-08) ### Bug Fixes * build failing issue because of lower node version ([#280](https://github.com/juspay/hyperswitch-web/issues/280)) ([07002cf](https://github.com/juspay/hyperswitch-web/commit/07002cfe3f54c544801263c2798b3430a81a01ea)) ### Features * add GitHub Actions workflow for removing labels from PRs ([#278](https://github.com/juspay/hyperswitch-web/issues/278)) ([ce71d4b](https://github.com/juspay/hyperswitch-web/commit/ce71d4b83d61dbc988b0b36f8bc2d968a0dcf2d8)) ## [0.38.2](https://github.com/juspay/hyperswitch-web/compare/v0.38.1...v0.38.2) (2024-04-05) ## [0.38.1](https://github.com/juspay/hyperswitch-web/compare/v0.38.0...v0.38.1) (2024-04-04) ### Bug Fixes * disable sdk button changes ([#244](https://github.com/juspay/hyperswitch-web/issues/244)) ([164ffdb](https://github.com/juspay/hyperswitch-web/commit/164ffdb9f117c39b6b10a029eb26328e4fa8e7ee)) # [0.38.0](https://github.com/juspay/hyperswitch-web/compare/v0.37.0...v0.38.0) (2024-04-04) ### Features * locale-string added for rest locales ([#247](https://github.com/juspay/hyperswitch-web/issues/247)) ([3070e8f](https://github.com/juspay/hyperswitch-web/commit/3070e8f54d2d7850ee4b20e5ba62a77624896f33)) # [0.37.0](https://github.com/juspay/hyperswitch-web/compare/v0.36.2...v0.37.0) (2024-04-04) ### Bug Fixes * app rendered event latency calculation ([#273](https://github.com/juspay/hyperswitch-web/issues/273)) ([e3509f0](https://github.com/juspay/hyperswitch-web/commit/e3509f0b67b752c9a6a656e47372ad5e84026cf3)) ### Features * logging payment data filled ([#269](https://github.com/juspay/hyperswitch-web/issues/269)) ([e9d76ae](https://github.com/juspay/hyperswitch-web/commit/e9d76ae225f39ba963967161413c2a0422d4a4aa)) ## [0.36.2](https://github.com/juspay/hyperswitch-web/compare/v0.36.1...v0.36.2) (2024-04-04) ### Bug Fixes * **sentry:** reduced sentry tracesSampleRate from 1 to 0.1 ([#242](https://github.com/juspay/hyperswitch-web/issues/242)) ([9294c5f](https://github.com/juspay/hyperswitch-web/commit/9294c5f292bae8dcff2eaa395f8972ffa7e6110b)) ## [0.36.1](https://github.com/juspay/hyperswitch-web/compare/v0.36.0...v0.36.1) (2024-04-04) ### Bug Fixes * added Loader and Error Handling for TrustPay GooglePay ([#268](https://github.com/juspay/hyperswitch-web/issues/268)) ([1f082eb](https://github.com/juspay/hyperswitch-web/commit/1f082ebe2031a10129b24238f1c60fabd6f5e2e0)) # [0.36.0](https://github.com/juspay/hyperswitch-web/compare/v0.35.6...v0.36.0) (2024-04-04) ### Features * **3ds:** three DS SDK - adding logs to track milestone events ([#265](https://github.com/juspay/hyperswitch-web/issues/265)) ([ceab161](https://github.com/juspay/hyperswitch-web/commit/ceab1614e80d8cfb96ac3eea04486ebd509e0770)) * giropay dynamic fields added ([#267](https://github.com/juspay/hyperswitch-web/issues/267)) ([ad2fa63](https://github.com/juspay/hyperswitch-web/commit/ad2fa630c639c7b246176f1d2683050a58ad3e36)) ## [0.35.6](https://github.com/juspay/hyperswitch-web/compare/v0.35.5...v0.35.6) (2024-04-02) ### Bug Fixes * customer payment methods promise ([#266](https://github.com/juspay/hyperswitch-web/issues/266)) ([57ea1ed](https://github.com/juspay/hyperswitch-web/commit/57ea1ed0483776df98abbbd83b0958674be6490c)) ## [0.35.5](https://github.com/juspay/hyperswitch-web/compare/v0.35.4...v0.35.5) (2024-04-02) ### Bug Fixes * react hooks issue fix ([#233](https://github.com/juspay/hyperswitch-web/issues/233)) ([c9dcb63](https://github.com/juspay/hyperswitch-web/commit/c9dcb638a3da08fe0569c94864df46179c2834e8)) ## [0.35.4](https://github.com/juspay/hyperswitch-web/compare/v0.35.3...v0.35.4) (2024-04-01) ## [0.35.3](https://github.com/juspay/hyperswitch-web/compare/v0.35.2...v0.35.3) (2024-04-01) ## [0.35.2](https://github.com/juspay/hyperswitch-web/compare/v0.35.1...v0.35.2) (2024-04-01) ## [0.35.1](https://github.com/juspay/hyperswitch-web/compare/v0.35.0...v0.35.1) (2024-03-27) ### Bug Fixes * pk_dev added for development purpose ([#259](https://github.com/juspay/hyperswitch-web/issues/259)) ([7278237](https://github.com/juspay/hyperswitch-web/commit/72782370fcd12ec24c20d77295de00dbc956c28f)) # [0.35.0](https://github.com/juspay/hyperswitch-web/compare/v0.34.4...v0.35.0) (2024-03-27) ### Features * **logger:** calculate loading latency from iframe init to render ([#248](https://github.com/juspay/hyperswitch-web/issues/248)) ([38387ed](https://github.com/juspay/hyperswitch-web/commit/38387edeeb61601237fbde750aa1d1a8083d2a79)) ## [0.34.4](https://github.com/juspay/hyperswitch-web/compare/v0.34.3...v0.34.4) (2024-03-26) ### Bug Fixes * add saved payment methods throughout checkout ([#254](https://github.com/juspay/hyperswitch-web/issues/254)) ([75be834](https://github.com/juspay/hyperswitch-web/commit/75be8345bbfbb760db1c53aec81eef819f4701e6)) ## [0.34.3](https://github.com/juspay/hyperswitch-web/compare/v0.34.2...v0.34.3) (2024-03-26) ## [0.34.2](https://github.com/juspay/hyperswitch-web/compare/v0.34.1...v0.34.2) (2024-03-22) ### Bug Fixes * **3ds method iframe:** 3ds failing with no cors and color depth … ([#253](https://github.com/juspay/hyperswitch-web/issues/253)) ([88d955b](https://github.com/juspay/hyperswitch-web/commit/88d955b20be17cccc33803e3dbe3ca122d9868ef)) ## [0.34.1](https://github.com/juspay/hyperswitch-web/compare/v0.34.0...v0.34.1) (2024-03-22) ### Bug Fixes * applePay Dynamic Fields Error Handling and Dynamic Fields PostalCode Error ([#250](https://github.com/juspay/hyperswitch-web/issues/250)) ([d85aa2a](https://github.com/juspay/hyperswitch-web/commit/d85aa2a0ffaa2205a7c19d41455f2250c5c70ef3)) # [0.34.0](https://github.com/juspay/hyperswitch-web/compare/v0.33.12...v0.34.0) (2024-03-22) ### Features * 3DS without redirection ([#249](https://github.com/juspay/hyperswitch-web/issues/249)) ([70911e5](https://github.com/juspay/hyperswitch-web/commit/70911e5c5ce23ff6e8936cd8028e6bf037b96686)) ## [0.33.12](https://github.com/juspay/hyperswitch-web/compare/v0.33.11...v0.33.12) (2024-03-21) ### Bug Fixes * **savedcarditem:** fixed Dynamic Fields not rendering for some saved… ([#246](https://github.com/juspay/hyperswitch-web/issues/246)) ([25d8f67](https://github.com/juspay/hyperswitch-web/commit/25d8f67b3f5a86aa9416b86044eb15c466ac55e5)) ## [0.33.11](https://github.com/juspay/hyperswitch-web/compare/v0.33.10...v0.33.11) (2024-03-21) ### Bug Fixes * hotfix changes for postal code ([#245](https://github.com/juspay/hyperswitch-web/issues/245)) ([4ba7350](https://github.com/juspay/hyperswitch-web/commit/4ba7350d4bbfbfcb570bd8c56a51a14df06f4dae)) ## [0.33.10](https://github.com/juspay/hyperswitch-web/compare/v0.33.9...v0.33.10) (2024-03-20) ### Bug Fixes * saved Payment Method stuck in loading state and Card Holder Name for every saved card ([#241](https://github.com/juspay/hyperswitch-web/issues/241)) ([6b1bc56](https://github.com/juspay/hyperswitch-web/commit/6b1bc565f659d163297453c6b6f5cc602bee6ff5)) ## [0.33.9](https://github.com/juspay/hyperswitch-web/compare/v0.33.8...v0.33.9) (2024-03-19) ## [0.33.8](https://github.com/juspay/hyperswitch-web/compare/v0.33.7...v0.33.8) (2024-03-18) ### Bug Fixes * **applepay:** added logger instance for ApplePay intent calls ([#218](https://github.com/juspay/hyperswitch-web/issues/218)) ([1512f4f](https://github.com/juspay/hyperswitch-web/commit/1512f4f11790469bf2401fb01731c9c07b324aa3)) ## [0.33.7](https://github.com/juspay/hyperswitch-web/compare/v0.33.6...v0.33.7) (2024-03-14) ## [0.33.6](https://github.com/juspay/hyperswitch-web/compare/v0.33.5...v0.33.6) (2024-03-14) ## [0.33.5](https://github.com/juspay/hyperswitch-web/compare/v0.33.4...v0.33.5) (2024-03-14) ## [0.33.4](https://github.com/juspay/hyperswitch-web/compare/v0.33.3...v0.33.4) (2024-03-14) ### Bug Fixes * not require_cvc disable the pay now button ([#230](https://github.com/juspay/hyperswitch-web/issues/230)) ([c31db69](https://github.com/juspay/hyperswitch-web/commit/c31db694caca29aa78b59f284f9aba4e98aff93c)) * react hook errors ([#225](https://github.com/juspay/hyperswitch-web/issues/225)) ([60d8fc1](https://github.com/juspay/hyperswitch-web/commit/60d8fc1a751e26fb4253d15173b8660535b805c5)) ## [0.33.3](https://github.com/juspay/hyperswitch-web/compare/v0.33.2...v0.33.3) (2024-03-13) ### Bug Fixes * **PayNowButton:** update loader and disable states of pay now button after confirm ([#229](https://github.com/juspay/hyperswitch-web/issues/229)) ([83cd23d](https://github.com/juspay/hyperswitch-web/commit/83cd23db2a360b86baa580524e36b1ae4fd44ba2)) ## [0.33.2](https://github.com/juspay/hyperswitch-web/compare/v0.33.1...v0.33.2) (2024-03-13) ### Bug Fixes * added paymentType to be passed in the confirm body ([#228](https://github.com/juspay/hyperswitch-web/issues/228)) ([4f94264](https://github.com/juspay/hyperswitch-web/commit/4f9426480a7e23bf98268b59e957c913ce359bfc)) ## [0.33.1](https://github.com/juspay/hyperswitch-web/compare/v0.33.0...v0.33.1) (2024-03-13) ### Bug Fixes * **ideal:** bank name not being populated ([#227](https://github.com/juspay/hyperswitch-web/issues/227)) ([d264f32](https://github.com/juspay/hyperswitch-web/commit/d264f32870cdf6d4e8d99e0ed79bf8e73e6129fd)) # [0.33.0](https://github.com/juspay/hyperswitch-web/compare/v0.32.0...v0.33.0) (2024-03-13) ### Features * added prop for PaymentHeader Text ([#226](https://github.com/juspay/hyperswitch-web/issues/226)) ([8ff8933](https://github.com/juspay/hyperswitch-web/commit/8ff89334c662bb37bdff112b693a0f72d7194017)) # [0.32.0](https://github.com/juspay/hyperswitch-web/compare/v0.31.6...v0.32.0) (2024-03-13) ### Features * cvc nickname gpay ([#224](https://github.com/juspay/hyperswitch-web/issues/224)) ([f3f4047](https://github.com/juspay/hyperswitch-web/commit/f3f404733f7c13eb69589779ea2e2c8a6569259d)) ## [0.31.6](https://github.com/juspay/hyperswitch-web/compare/v0.31.5...v0.31.6) (2024-03-13) ### Bug Fixes * pay now button text & theme based changes ([#223](https://github.com/juspay/hyperswitch-web/issues/223)) ([993767f](https://github.com/juspay/hyperswitch-web/commit/993767f185a3059ea5cc0652aa4053304e66ba52)) ## [0.31.5](https://github.com/juspay/hyperswitch-web/compare/v0.31.4...v0.31.5) (2024-03-12) ### Bug Fixes * disable and enable Pay now button ([#221](https://github.com/juspay/hyperswitch-web/issues/221)) ([3d2e497](https://github.com/juspay/hyperswitch-web/commit/3d2e4971a20b8737820743c848496e4e8bb4a57b)) ## [0.31.4](https://github.com/juspay/hyperswitch-web/compare/v0.31.3...v0.31.4) (2024-03-12) ### Bug Fixes * added ordering for saved payment methods ([#222](https://github.com/juspay/hyperswitch-web/issues/222)) ([a7e9f6d](https://github.com/juspay/hyperswitch-web/commit/a7e9f6d48e83ae96395ac19365abf4d757229c9b)) ## [0.31.3](https://github.com/juspay/hyperswitch-web/compare/v0.31.2...v0.31.3) (2024-03-12) ## [0.31.2](https://github.com/juspay/hyperswitch-web/compare/v0.31.1...v0.31.2) (2024-03-12) ## [0.31.1](https://github.com/juspay/hyperswitch-web/compare/v0.31.0...v0.31.1) (2024-03-12) ### Bug Fixes * card payment customer_acceptance ([#220](https://github.com/juspay/hyperswitch-web/issues/220)) ([c2067e9](https://github.com/juspay/hyperswitch-web/commit/c2067e9c274727eda03686d5986c5071f2da17b2)) # [0.31.0](https://github.com/juspay/hyperswitch-web/compare/v0.30.0...v0.31.0) (2024-03-11) ### Features * Added Payment Session Headless ([#209](https://github.com/juspay/hyperswitch-web/issues/209)) ([67be317](https://github.com/juspay/hyperswitch-web/commit/67be317957ff4d267f20cf5b376277116b7e4861)) # [0.30.0](https://github.com/juspay/hyperswitch-web/compare/v0.29.1...v0.30.0) (2024-03-11) ### Features * Support to handle confirm button (E2E) ([#198](https://github.com/juspay/hyperswitch-web/issues/198)) ([a4ffecf](https://github.com/juspay/hyperswitch-web/commit/a4ffecf0cc31a3d094eb0f8c57d9d8260d06204b)) ## [0.29.1](https://github.com/juspay/hyperswitch-web/compare/v0.29.0...v0.29.1) (2024-03-11) ### Bug Fixes * added Wallets to Saved Payment Methods ([#213](https://github.com/juspay/hyperswitch-web/issues/213)) ([dc6a194](https://github.com/juspay/hyperswitch-web/commit/dc6a194512ac010cec55ae52451c98a017da5d7c)) # [0.29.0](https://github.com/juspay/hyperswitch-web/compare/v0.28.0...v0.29.0) (2024-03-11) ### Features * props divide disableSave cards to checkbox and api ([#206](https://github.com/juspay/hyperswitch-web/issues/206)) ([83426ab](https://github.com/juspay/hyperswitch-web/commit/83426ab9a11210ed1e7edb2341ef25ba4c8a4500)) # [0.28.0](https://github.com/juspay/hyperswitch-web/compare/v0.27.5...v0.28.0) (2024-03-08) ### Features * **PaymentElement:** moved SavedCards component outside card form ([#197](https://github.com/juspay/hyperswitch-web/issues/197)) ([8e11c40](https://github.com/juspay/hyperswitch-web/commit/8e11c4087773a0c36d82f3b63358c3e9f6a9917f)) ## [0.27.5](https://github.com/juspay/hyperswitch-web/compare/v0.27.4...v0.27.5) (2024-03-08) ## [0.27.4](https://github.com/juspay/hyperswitch-web/compare/v0.27.3...v0.27.4) (2024-03-08) ### Bug Fixes * workflow addition & commit time code compile removal ([#208](https://github.com/juspay/hyperswitch-web/issues/208)) ([66bb5a4](https://github.com/juspay/hyperswitch-web/commit/66bb5a48a49c96e2b5212d632ed7634698622144)) ## [0.27.3](https://github.com/juspay/hyperswitch-web/compare/v0.27.2...v0.27.3) (2024-03-08) ### Bug Fixes * **boleto:** boleto Icon fill color and size fix ([#210](https://github.com/juspay/hyperswitch-web/issues/210)) ([73ba2d8](https://github.com/juspay/hyperswitch-web/commit/73ba2d8a39edd9a9dc5cd09c62ef9c985fb252c5)) ## [0.27.2](https://github.com/juspay/hyperswitch-web/compare/v0.27.1...v0.27.2) (2024-03-06) ### Bug Fixes * **intentCall:** handling no response on confirm ([#203](https://github.com/juspay/hyperswitch-web/issues/203)) ([ba50f1c](https://github.com/juspay/hyperswitch-web/commit/ba50f1c5d998701a4fe89caf2576746fe0bb8ae8)) ## [0.27.1](https://github.com/juspay/hyperswitch-web/compare/v0.27.0...v0.27.1) (2024-03-05) ### Bug Fixes * **idealBanks:** updated ideal banks ([#201](https://github.com/juspay/hyperswitch-web/issues/201)) ([0101181](https://github.com/juspay/hyperswitch-web/commit/0101181e1675ccb1db0d1e961259657d12f524a3)) # [0.27.0](https://github.com/juspay/hyperswitch-web/compare/v0.26.4...v0.27.0) (2024-03-05) ### Features * **paymentmethods:** boleto Payment Method Integration ([#195](https://github.com/juspay/hyperswitch-web/issues/195)) ([f4fc04d](https://github.com/juspay/hyperswitch-web/commit/f4fc04d3e1d93b9c13260d61279f6af57619f393)) ## [0.26.4](https://github.com/juspay/hyperswitch-web/compare/v0.26.3...v0.26.4) (2024-02-28) ### Bug Fixes * **sdkHandleOneClickConfirmPayment:** properly handling redirection for one click payment methods ([#192](https://github.com/juspay/hyperswitch-web/issues/192)) ([0e70b4f](https://github.com/juspay/hyperswitch-web/commit/0e70b4f4fc3998ac3616adc124aa0ccf2c08ae2b)) ## [0.26.3](https://github.com/juspay/hyperswitch-web/compare/v0.26.2...v0.26.3) (2024-02-28) ### Bug Fixes * fixed ordering and removed duplicates from Country and States ([#188](https://github.com/juspay/hyperswitch-web/issues/188)) ([8f3c9de](https://github.com/juspay/hyperswitch-web/commit/8f3c9debd627ca7a4025e1fb1a5f3f12df2d7b0b)) ## [0.26.2](https://github.com/juspay/hyperswitch-web/compare/v0.26.1...v0.26.2) (2024-02-27) ### Bug Fixes * **animatedcheckbox:** Save Card Details checkbox changes ([#184](https://github.com/juspay/hyperswitch-web/issues/184)) ([8cf979c](https://github.com/juspay/hyperswitch-web/commit/8cf979c1a7943ffdb8c791286abec5e4465d5bfa)) ## [0.26.1](https://github.com/juspay/hyperswitch-web/compare/v0.26.0...v0.26.1) (2024-02-27) ### Bug Fixes * warnings removed ([#185](https://github.com/juspay/hyperswitch-web/issues/185)) ([7cf5603](https://github.com/juspay/hyperswitch-web/commit/7cf560357261c529380781928cbcabe9cfaca16c)) # [0.26.0](https://github.com/juspay/hyperswitch-web/compare/v0.25.0...v0.26.0) (2024-02-27) ### Features * added LOADER_CHANGED event on loader state update ([#178](https://github.com/juspay/hyperswitch-web/issues/178)) ([42abaf0](https://github.com/juspay/hyperswitch-web/commit/42abaf05baccc27141098410ecb1746c73b43e6a)) # [0.25.0](https://github.com/juspay/hyperswitch-web/compare/v0.24.0...v0.25.0) (2024-02-19) ### Features * HS-132: Language Support for Error Messages ([#173](https://github.com/juspay/hyperswitch-web/issues/173)) ([281279c](https://github.com/juspay/hyperswitch-web/commit/281279c773f757e3c361f8e068b4d24a24028e42)) * moved Issues from Jira to Github ([#138](https://github.com/juspay/hyperswitch-web/issues/138)) ([5b42603](https://github.com/juspay/hyperswitch-web/commit/5b426034ca13a75eafb282e4de09a402b5c91636)) # [0.24.0](https://github.com/juspay/hyperswitch-web/compare/v0.23.12...v0.24.0) (2024-02-19) ### Features * Logging framework revamped ([#167](https://github.com/juspay/hyperswitch-web/issues/167)) ([6ecbadd](https://github.com/juspay/hyperswitch-web/commit/6ecbaddad644b50d6225516f4dd5df5403e5d9ba)) ## [0.23.12](https://github.com/juspay/hyperswitch-web/compare/v0.23.11...v0.23.12) (2024-02-19) ### Bug Fixes * Handling error cases for payment methods list ([#164](https://github.com/juspay/hyperswitch-web/issues/164)) ([8df24df](https://github.com/juspay/hyperswitch-web/commit/8df24df92e9fa488ad81fb27709cbffe12a6bef6)) ## [0.23.11](https://github.com/juspay/hyperswitch-web/compare/v0.23.10...v0.23.11) (2024-02-16) ### Bug Fixes * HS-222: Address line2 optional in case of isUseBillingAddress ([#174](https://github.com/juspay/hyperswitch-web/issues/174)) ([d2fa10e](https://github.com/juspay/hyperswitch-web/commit/d2fa10e3c9e48bb8c9488cc3fcf044b7c05dd301)) ## [0.23.10](https://github.com/juspay/hyperswitch-web/compare/v0.23.9...v0.23.10) (2024-02-16) ### Bug Fixes * HS-148: Added Currency with surcharge amount ([#146](https://github.com/juspay/hyperswitch-web/issues/146)) ([ceadf3e](https://github.com/juspay/hyperswitch-web/commit/ceadf3e8bb1845058504884940c5d5573bda2dbf)) ## [0.23.9](https://github.com/juspay/hyperswitch-web/compare/v0.23.8...v0.23.9) (2024-02-16) ### Bug Fixes * HS-132: Error handling for Address Fields ([#171](https://github.com/juspay/hyperswitch-web/issues/171)) ([38f3a79](https://github.com/juspay/hyperswitch-web/commit/38f3a79552f10e6712d2402475d44a70aba46e41)) ## [0.23.8](https://github.com/juspay/hyperswitch-web/compare/v0.23.7...v0.23.8) (2024-02-15) ### Bug Fixes * HS-111: Added billing name to address element ([#145](https://github.com/juspay/hyperswitch-web/issues/145)) ([426415a](https://github.com/juspay/hyperswitch-web/commit/426415a8c88e56bd0e6b84da56982c1e40082c67)) ## [0.23.7](https://github.com/juspay/hyperswitch-web/compare/v0.23.6...v0.23.7) (2024-02-13) ### Bug Fixes * Payment Dropdown multiple render fix ([#166](https://github.com/juspay/hyperswitch-web/issues/166)) ([56e8cb3](https://github.com/juspay/hyperswitch-web/commit/56e8cb311301fb26d415e87af639b58cfa090080)) ## [0.23.6](https://github.com/juspay/hyperswitch-web/compare/v0.23.5...v0.23.6) (2024-02-13) ### Bug Fixes * HS-2222: Validation failing for Billing details ([#165](https://github.com/juspay/hyperswitch-web/issues/165)) ([2c1754d](https://github.com/juspay/hyperswitch-web/commit/2c1754df5cf90b37c897bf03de11b79d6eb3bb32)) ## [0.23.5](https://github.com/juspay/hyperswitch-web/compare/v0.23.4...v0.23.5) (2024-02-13) ### Bug Fixes * HS-202: ApplePay Dynamic Fields Error Handling ([#159](https://github.com/juspay/hyperswitch-web/issues/159)) ([ad97f2d](https://github.com/juspay/hyperswitch-web/commit/ad97f2da1bd83132f1a97590154f650a283f8aea)) ## [0.23.4](https://github.com/juspay/hyperswitch-web/compare/v0.23.3...v0.23.4) (2024-02-13) ### Bug Fixes * HS-1223: updated codeowners ([#142](https://github.com/juspay/hyperswitch-web/issues/142)) ([ff29a20](https://github.com/juspay/hyperswitch-web/commit/ff29a209958df1c27f4384652500c4e52cefb97c)) * HS-234: Added support for few more countries ([#160](https://github.com/juspay/hyperswitch-web/issues/160)) ([4bac3aa](https://github.com/juspay/hyperswitch-web/commit/4bac3aa238f5d986b730801cc117e8980c42e66f)) ## [0.23.3](https://github.com/juspay/hyperswitch-web/compare/v0.23.2...v0.23.3) (2024-02-13) ### Bug Fixes * HS-167: Changed name and icon for Open Banking Uk ([#156](https://github.com/juspay/hyperswitch-web/issues/156)) ([4b33231](https://github.com/juspay/hyperswitch-web/commit/4b33231c0ee1689f77da0c5e5e20f88f0ade5c37)) * HS-187: Improve UI qr code display for PIX ([#149](https://github.com/juspay/hyperswitch-web/issues/149)) ([1cf448b](https://github.com/juspay/hyperswitch-web/commit/1cf448b5e0e4d0124ff34aed818f44dfb75e9cf5)) ## [0.23.2](https://github.com/juspay/hyperswitch-web/compare/v0.23.1...v0.23.2) (2024-02-12) ### Bug Fixes * HS-1111: fixed addres state ([#151](https://github.com/juspay/hyperswitch-web/issues/151)) ([a91cfd9](https://github.com/juspay/hyperswitch-web/commit/a91cfd9ab2331760032221d732e92b02a4b40750)) ## [0.23.1](https://github.com/juspay/hyperswitch-web/compare/v0.23.0...v0.23.1) (2024-02-12) ### Bug Fixes * HS-2222: Missing Address state ([#150](https://github.com/juspay/hyperswitch-web/issues/150)) ([fd10795](https://github.com/juspay/hyperswitch-web/commit/fd107951beedc82d83a0688a1ae7df86c4bf7c12)) # [0.23.0](https://github.com/juspay/hyperswitch-web/compare/v0.22.5...v0.23.0) (2024-02-11) ### Features * Added masked payload for confirm calls ([#148](https://github.com/juspay/hyperswitch-web/issues/148)) ([e3fe10d](https://github.com/juspay/hyperswitch-web/commit/e3fe10d1d8b63d1b1ce2f4cdc8901384ba6cdb91)) ## [0.22.5](https://github.com/juspay/hyperswitch-web/compare/v0.22.4...v0.22.5) (2024-02-07) ### Bug Fixes * HS-132: Fixed multiple re render ([#144](https://github.com/juspay/hyperswitch-web/issues/144)) ([8ffa095](https://github.com/juspay/hyperswitch-web/commit/8ffa095b52e45fd3804b4b416f58e4706746cb45)) ## [0.22.4](https://github.com/juspay/hyperswitch-web/compare/v0.22.3...v0.22.4) (2024-02-05) ### Bug Fixes * HS-1111: invalid country options ([#141](https://github.com/juspay/hyperswitch-web/issues/141)) ([4198ace](https://github.com/juspay/hyperswitch-web/commit/4198ace098b32bfecb810e99db966f62833b2428)) ## [0.22.3](https://github.com/juspay/hyperswitch-web/compare/v0.22.2...v0.22.3) (2024-02-05) ### Bug Fixes * HS-111: Fix: Empty/Invalid Country Varient /confirm call ([#137](https://github.com/juspay/hyperswitch-web/issues/137)) ([ad0ef72](https://github.com/juspay/hyperswitch-web/commit/ad0ef72f3652375d1e255f44427e317ad1ea84e4)) * HS-132: Dynamic Fields fix for email ([#139](https://github.com/juspay/hyperswitch-web/issues/139)) ([10dc77a](https://github.com/juspay/hyperswitch-web/commit/10dc77a8eb72c437703ccfbdf60c8e99ec0c8df1)) ## [0.22.2](https://github.com/juspay/hyperswitch-web/compare/v0.22.1...v0.22.2) (2024-02-02) ### Bug Fixes * HS-111: Fix: Card cvc for saved cards empty (blocking confirm) ([#135](https://github.com/juspay/hyperswitch-web/issues/135)) ([d710cd7](https://github.com/juspay/hyperswitch-web/commit/d710cd787bc33b3233d7dcdae29cef32b8cba47f)) ## [0.22.1](https://github.com/juspay/hyperswitch-web/compare/v0.22.0...v0.22.1) (2024-02-01) ### Bug Fixes * HS-187: Added pix svg icon ([#134](https://github.com/juspay/hyperswitch-web/issues/134)) ([7b2e4c5](https://github.com/juspay/hyperswitch-web/commit/7b2e4c511ba831c9a15fa76092b7a431274d0bec)) # [0.22.0](https://github.com/juspay/hyperswitch-web/compare/v0.21.0...v0.22.0) (2024-02-01) ### Features * HS-187: Added Pix Bank Transfer ([#129](https://github.com/juspay/hyperswitch-web/issues/129)) ([3ea2e03](https://github.com/juspay/hyperswitch-web/commit/3ea2e0387fd34029308368ea8f068cf9d336a716)) # [0.21.0](https://github.com/juspay/hyperswitch-web/compare/v0.20.5...v0.21.0) (2024-02-01) ### Bug Fixes * HS-12344: Email fields empty for saved cards flow ([#127](https://github.com/juspay/hyperswitch-web/issues/127)) ([710f705](https://github.com/juspay/hyperswitch-web/commit/710f705f738a0c805847a3b596e83d449486d704)) ### Features * HS-2222: Dynamic fields support for IDeal, Sofort and Eps ([#125](https://github.com/juspay/hyperswitch-web/issues/125)) ([789ecb9](https://github.com/juspay/hyperswitch-web/commit/789ecb99ffff4c9ee9ffe55af501ba8953c667b7)) ## [0.20.5](https://github.com/juspay/hyperswitch-web/compare/v0.20.4...v0.20.5) (2024-01-24) ### Bug Fixes * HS-111: Bugfix: multiple country dropdown ([#119](https://github.com/juspay/hyperswitch-web/issues/119)) ([4af6d7b](https://github.com/juspay/hyperswitch-web/commit/4af6d7bdfe0e6171d17b275549d29246e9fff683)) ## [0.20.4](https://github.com/juspay/hyperswitch-web/compare/v0.20.3...v0.20.4) (2024-01-23) ### Bug Fixes * HS-167: Added Dynamic Fields for Open Banking Uk ([#117](https://github.com/juspay/hyperswitch-web/issues/117)) ([318272f](https://github.com/juspay/hyperswitch-web/commit/318272f4df31fe678f88c76610c71181fcdfeeaa)) ## [0.20.3](https://github.com/juspay/hyperswitch-web/compare/v0.20.2...v0.20.3) (2024-01-22) ### Bug Fixes * HS-168: Updated Payment Helpers ([#33](https://github.com/juspay/hyperswitch-web/issues/33)) ([d867859](https://github.com/juspay/hyperswitch-web/commit/d867859074a5b97f6eff04b2f0bf0c54eee67e8c)) ## [0.20.2](https://github.com/juspay/hyperswitch-web/compare/v0.20.1...v0.20.2) (2024-01-22) ### Bug Fixes * HS-166: New Elements fle without PreMountLoader ([#29](https://github.com/juspay/hyperswitch-web/issues/29)) ([8bd12bd](https://github.com/juspay/hyperswitch-web/commit/8bd12bd8ef976ad070c25d7509ff11c60a72e7da)) ## [0.20.1](https://github.com/juspay/hyperswitch-web/compare/v0.20.0...v0.20.1) (2024-01-22) ### Bug Fixes * HS-180: Added check on last name for Dynamic Fields ([#71](https://github.com/juspay/hyperswitch-web/issues/71)) ([4fee41f](https://github.com/juspay/hyperswitch-web/commit/4fee41f821fd06a63c577d34fe925b21de7de9d5)) # [0.20.0](https://github.com/juspay/hyperswitch-web/compare/v0.19.0...v0.20.0) (2024-01-22) ### Bug Fixes * HS-123: created separate iframe for full screen ([#111](https://github.com/juspay/hyperswitch-web/issues/111)) ([303ba00](https://github.com/juspay/hyperswitch-web/commit/303ba00dac09496850e5173f86048a6e46be0b34)) ### Features * HS-197: Added Address Element ([#109](https://github.com/juspay/hyperswitch-web/issues/109)) ([dd4a18a](https://github.com/juspay/hyperswitch-web/commit/dd4a18aa19a4490d95f070066f92ad35759733e1)) # [0.19.0](https://github.com/juspay/hyperswitch-web/compare/v0.18.1...v0.19.0) (2024-01-19) ### Features * HS-148: Added Surcharge for One Click Wallets ([#110](https://github.com/juspay/hyperswitch-web/issues/110)) ([ee72b3f](https://github.com/juspay/hyperswitch-web/commit/ee72b3f687d8c1778b602ee02072c600d3ed31ae)) ## [0.18.1](https://github.com/juspay/hyperswitch-web/compare/v0.18.0...v0.18.1) (2024-01-18) ### Bug Fixes * HS-111: FIxed the displayname of open banking uk ([#108](https://github.com/juspay/hyperswitch-web/issues/108)) ([07508a2](https://github.com/juspay/hyperswitch-web/commit/07508a252ce98e1b9aa0a9a50481047b4bba81f7)) # [0.18.0](https://github.com/juspay/hyperswitch-web/compare/v0.17.0...v0.18.0) (2024-01-16) ### Features * HS-181: Added support of Dynamic Fields For Bancontact ([#72](https://github.com/juspay/hyperswitch-web/issues/72)) ([0d13e7a](https://github.com/juspay/hyperswitch-web/commit/0d13e7ae5406f3ef555d49fc7509f77b023dfc5b)) # [0.17.0](https://github.com/juspay/hyperswitch-web/compare/v0.16.8...v0.17.0) (2024-01-11) ### Features * HS-188: Building before committing and added release rules ([#90](https://github.com/juspay/hyperswitch-web/issues/90)) ([7e8b23a](https://github.com/juspay/hyperswitch-web/commit/7e8b23a9246cbadf85283793cfc8b58f616e6e9f)) ## [0.16.8](https://github.com/juspay/hyperswitch-web/compare/v0.16.7...v0.16.8) (2024-01-11) ### Bug Fixes * HS-132: Fixed areRequiredFieldsValid for postal code ([#83](https://github.com/juspay/hyperswitch-web/issues/83)) ([bccd88c](https://github.com/juspay/hyperswitch-web/commit/bccd88cb98e53ac856764420478b578df5a3d5bf)) ## [0.16.7](https://github.com/juspay/hyperswitch-web/compare/v0.16.6...v0.16.7) (2023-12-27) ### Bug Fixes * HS-185: Or Pay using fix for GooglePay and ApplePay ([#85](https://github.com/juspay/hyperswitch-web/issues/85)) ([938793b](https://github.com/juspay/hyperswitch-web/commit/938793b2a9e8e4d0958df7bdc888ba901df94e05)) ## [0.16.6](https://github.com/juspay/hyperswitch-web/compare/v0.16.5...v0.16.6) (2023-12-26) ### Bug Fixes * HS-185: ApplePay button not rendering and orPayUsing not visible ([#84](https://github.com/juspay/hyperswitch-web/issues/84)) ([2a96ed7](https://github.com/juspay/hyperswitch-web/commit/2a96ed788d190deae5b31ab773dcc953db778e92)) ## [0.16.5](https://github.com/juspay/hyperswitch-web/compare/v0.16.4...v0.16.5) (2023-12-21) ### Bug Fixes * HS-132: Added RequiredFieldsBody in useEffect for eventListener ([#82](https://github.com/juspay/hyperswitch-web/issues/82)) ([5b107f9](https://github.com/juspay/hyperswitch-web/commit/5b107f9d12c704fdbe599d24614bb90f554b2a64)) ## [0.16.4](https://github.com/juspay/hyperswitch-web/compare/v0.16.3...v0.16.4) (2023-12-21) ### Bug Fixes * HS-132: Added all billing details if any is empty ([#80](https://github.com/juspay/hyperswitch-web/issues/80)) ([f7ce161](https://github.com/juspay/hyperswitch-web/commit/f7ce1618777f09fe8831a948712bc445df43f933)) ## [0.16.3](https://github.com/juspay/hyperswitch-web/compare/v0.16.2...v0.16.3) (2023-12-21) ### Bug Fixes * HS-183: ApplePay Payment Request to take client's country in case session sends null ([#78](https://github.com/juspay/hyperswitch-web/issues/78)) ([2ee7afc](https://github.com/juspay/hyperswitch-web/commit/2ee7afcf9aff6da3d6a92a6ff7624c07d7785814)) ## [0.16.2](https://github.com/juspay/hyperswitch-web/compare/v0.16.1...v0.16.2) (2023-12-20) ### Bug Fixes * HS:132: Removed card token object from confirm for saved cards ([#76](https://github.com/juspay/hyperswitch-web/issues/76)) ([22c7f3f](https://github.com/juspay/hyperswitch-web/commit/22c7f3f47fdc304a4a77cec1b347355ed80d0205)) ## [0.16.1](https://github.com/juspay/hyperswitch-web/compare/v0.16.0...v0.16.1) (2023-12-20) ### Bug Fixes * HS:132: reverting changes for cardholder name ([#74](https://github.com/juspay/hyperswitch-web/issues/74)) ([c11b32b](https://github.com/juspay/hyperswitch-web/commit/c11b32b03ae6d7bcc4aeb8dabbc9eb456bfbb4b3)) # [0.16.0](https://github.com/juspay/hyperswitch-web/compare/v0.15.10...v0.16.0) (2023-12-19) ### Features * HS-182: Added Evoucher Payment Method Type Redirection flow ([#73](https://github.com/juspay/hyperswitch-web/issues/73)) ([414ee37](https://github.com/juspay/hyperswitch-web/commit/414ee370dc18a33795802c89822d3da6d9e13133)) ## [0.15.10](https://github.com/juspay/hyperswitch-web/compare/v0.15.9...v0.15.10) (2023-12-14) ### Bug Fixes * HS-465: UI changes and Code refactor for billing address ([#60](https://github.com/juspay/hyperswitch-web/issues/60)) ([8209ec3](https://github.com/juspay/hyperswitch-web/commit/8209ec39827fac94a1b081daaeb0a6b014327526)) ## [0.15.9](https://github.com/juspay/hyperswitch-web/compare/v0.15.8...v0.15.9) (2023-12-13) ### Bug Fixes * HS:132: card holder name passed as non-empty value ([#70](https://github.com/juspay/hyperswitch-web/issues/70)) ([08d6db8](https://github.com/juspay/hyperswitch-web/commit/08d6db82cceca3f536fc5131589dc5e63480d5de)) ## [0.15.8](https://github.com/juspay/hyperswitch-web/compare/v0.15.7...v0.15.8) (2023-12-08) ### Bug Fixes * HS-333: removed immediate stringify ([#68](https://github.com/juspay/hyperswitch-web/issues/68)) ([ea35bda](https://github.com/juspay/hyperswitch-web/commit/ea35bda95178e1975262dfdf9a49e9473655dfeb)) ## [0.15.7](https://github.com/juspay/hyperswitch-web/compare/v0.15.6...v0.15.7) (2023-12-07) ### Bug Fixes * HS-179: Passing endpoint to loader controller ([#67](https://github.com/juspay/hyperswitch-web/issues/67)) ([b04cbc0](https://github.com/juspay/hyperswitch-web/commit/b04cbc0289adfaec93c32846e58c7d08d5c8566c)) ## [0.15.6](https://github.com/juspay/hyperswitch-web/compare/v0.15.5...v0.15.6) (2023-12-07) ### Bug Fixes * HS-178: Passing payment type in confirm call for all mandates ([#66](https://github.com/juspay/hyperswitch-web/issues/66)) ([a97c7a6](https://github.com/juspay/hyperswitch-web/commit/a97c7a6d002e16d12ec24005357e5ebe8b47b876)) ## [0.15.5](https://github.com/juspay/hyperswitch-web/compare/v0.15.4...v0.15.5) (2023-12-07) ### Bug Fixes * HS-177: GooglePay submitCallback fix ([#65](https://github.com/juspay/hyperswitch-web/issues/65)) ([31777ca](https://github.com/juspay/hyperswitch-web/commit/31777cacf7c9051d05148000f698c38d25ff6c77)) ## [0.15.4](https://github.com/juspay/hyperswitch-web/compare/v0.15.3...v0.15.4) (2023-12-07) ### Bug Fixes * HS-123: Removed self client url from prompt ([#62](https://github.com/juspay/hyperswitch-web/issues/62)) ([5d05f5f](https://github.com/juspay/hyperswitch-web/commit/5d05f5f032705fb9b3af4e8f4fce82733ecf111b)) * HS-148: Changed Flow for Surcharge ([#51](https://github.com/juspay/hyperswitch-web/issues/51)) ([5f5cff9](https://github.com/juspay/hyperswitch-web/commit/5f5cff91736076b8bf88a9cce67c545e0badd34f)) * HS-175: Added external services and brought parity to setup ([#56](https://github.com/juspay/hyperswitch-web/issues/56)) ([5d62d5c](https://github.com/juspay/hyperswitch-web/commit/5d62d5c384cc509f96e55a309980b9b8ef3f9db9)) ## [0.15.3](https://github.com/juspay/hyperswitch-web/compare/v0.15.2...v0.15.3) (2023-12-07) ### Bug Fixes * HS-132: Fixed Required Fields default value ([#64](https://github.com/juspay/hyperswitch-web/issues/64)) ([cb97557](https://github.com/juspay/hyperswitch-web/commit/cb97557042b5bb4c5f9dee8c83fc7255a4983679)) ## [0.15.2](https://github.com/juspay/hyperswitch-web/compare/v0.15.1...v0.15.2) (2023-12-07) ### Bug Fixes * HS-132: Fixed Card Holder Name ([#61](https://github.com/juspay/hyperswitch-web/issues/61)) ([a0694da](https://github.com/juspay/hyperswitch-web/commit/a0694da7f91c071c7d31250f59278f35c2f88074)) ## [0.15.1](https://github.com/juspay/hyperswitch-web/compare/v0.15.0...v0.15.1) (2023-12-07) ### Bug Fixes * HS-222: Google pay dynamic fields body going as empty ([#63](https://github.com/juspay/hyperswitch-web/issues/63)) ([05fadf5](https://github.com/juspay/hyperswitch-web/commit/05fadf5b9ae55a62dc6046a0e786ce74d18f1f6d)) # [0.15.0](https://github.com/juspay/hyperswitch-web/compare/v0.14.1...v0.15.0) (2023-12-06) ### Features * HS-454: Support for Google pay (Bank of america) ([#57](https://github.com/juspay/hyperswitch-web/issues/57)) ([6602c71](https://github.com/juspay/hyperswitch-web/commit/6602c71c262c456387af8f18935d3cd0d1983aff)) ## [0.14.1](https://github.com/juspay/hyperswitch-web/compare/v0.14.0...v0.14.1) (2023-12-05) ### Bug Fixes * HS-132: Removing Dynamic Fields from rendering on SDK ([#58](https://github.com/juspay/hyperswitch-web/issues/58)) ([b9eee72](https://github.com/juspay/hyperswitch-web/commit/b9eee72567838d19d9dfa41f1c2a8038fccfb3a6)) # [0.14.0](https://github.com/juspay/hyperswitch-web/compare/v0.13.2...v0.14.0) (2023-12-04) ### Features * HS-169: AWS Prod Deployment Script ([#55](https://github.com/juspay/hyperswitch-web/issues/55)) ([7578307](https://github.com/juspay/hyperswitch-web/commit/7578307ce869fa2d126bd1b359f113aca9cd6aa8)) ## [0.13.2](https://github.com/juspay/hyperswitch-web/compare/v0.13.1...v0.13.2) (2023-11-30) ### Bug Fixes * HS-175: Improved prompts and endpoint fix ([#52](https://github.com/juspay/hyperswitch-web/issues/52)) ([28b7d5f](https://github.com/juspay/hyperswitch-web/commit/28b7d5f7dd2c41570f8bc8c856eabae6f44c95c4)) ## [0.13.1](https://github.com/juspay/hyperswitch-web/compare/v0.13.0...v0.13.1) (2023-11-30) ### Bug Fixes * HS-132: Dropdown Bank requiredFieldsValid fix ([#53](https://github.com/juspay/hyperswitch-web/issues/53)) ([b3630a3](https://github.com/juspay/hyperswitch-web/commit/b3630a39590f9bcab4ba4ff9fa63f313fed3d5b0)) # [0.13.0](https://github.com/juspay/hyperswitch-web/compare/v0.12.5...v0.13.0) (2023-11-29) ### Features * HS-132: Passing Card Holder Name in Saved Cards Flow ([#50](https://github.com/juspay/hyperswitch-web/issues/50)) ([62812a4](https://github.com/juspay/hyperswitch-web/commit/62812a48ee9a01dae05315b0e784551a450e58b8)) ## [0.12.5](https://github.com/juspay/hyperswitch-web/compare/v0.12.4...v0.12.5) (2023-11-29) ### Bug Fixes * HS-333: Fix : fixed endpoint for local development ([#49](https://github.com/juspay/hyperswitch-web/issues/49)) ([a4a70e6](https://github.com/juspay/hyperswitch-web/commit/a4a70e60c6ccf6467f1a16cbd4d5d62452b7bea6)) ## [0.12.4](https://github.com/juspay/hyperswitch-web/compare/v0.12.3...v0.12.4) (2023-11-29) ### Bug Fixes * HS-174: Removed console warning for using link with document and Batcher error for Recoil ([#48](https://github.com/juspay/hyperswitch-web/issues/48)) ([2c8eef3](https://github.com/juspay/hyperswitch-web/commit/2c8eef3a230ebd4303583ce2640bcf16abf82ba5)) ## [0.12.3](https://github.com/juspay/hyperswitch-web/compare/v0.12.2...v0.12.3) (2023-11-28) ### Bug Fixes * HS-132: Country fix ([#47](https://github.com/juspay/hyperswitch-web/issues/47)) ([797db9f](https://github.com/juspay/hyperswitch-web/commit/797db9f310a8d2743e0dd044817b9b4298073474)) * HS-444: Updated prompt script ([#45](https://github.com/juspay/hyperswitch-web/issues/45)) ([8be15ad](https://github.com/juspay/hyperswitch-web/commit/8be15ade745dba942b95cfb979f6af104208c62b)) ## [0.12.2](https://github.com/juspay/hyperswitch-web/compare/v0.12.1...v0.12.2) (2023-11-24) ### Bug Fixes * HS-132: Currency Fix and other small Fixes ([#42](https://github.com/juspay/hyperswitch-web/issues/42)) ([e0051f0](https://github.com/juspay/hyperswitch-web/commit/e0051f073626408e5a34094c5ebdd0e5b91e743c)) ## [0.12.1](https://github.com/juspay/hyperswitch-web/compare/v0.12.0...v0.12.1) (2023-11-24) ### Bug Fixes * HS-132: Fixes for Dynamic Fields ([#41](https://github.com/juspay/hyperswitch-web/issues/41)) ([6e1895a](https://github.com/juspay/hyperswitch-web/commit/6e1895abfbf4ec6c594e4b092bd4075be3c1b551)) # [0.12.0](https://github.com/juspay/hyperswitch-web/compare/v0.11.0...v0.12.0) (2023-11-24) ### Features * HS-145: New Design for playground | Bug fixes ([#44](https://github.com/juspay/hyperswitch-web/issues/44)) ([c357019](https://github.com/juspay/hyperswitch-web/commit/c35701972850900111efad8c10a526873bb3b1a0)) # [0.11.0](https://github.com/juspay/hyperswitch-web/compare/v0.10.0...v0.11.0) (2023-11-24) ### Features * HS-172: Conditional log push based on loggingLevel ([#43](https://github.com/juspay/hyperswitch-web/issues/43)) ([5ee2f78](https://github.com/juspay/hyperswitch-web/commit/5ee2f78adf88dff693ae253db3ec7ee7b2390dff)) # [0.10.0](https://github.com/juspay/hyperswitch-web/compare/v0.9.0...v0.10.0) (2023-11-23) ### Features * HS-167: Added Open Banking UK Payment Method ([#30](https://github.com/juspay/hyperswitch-web/issues/30)) ([05888e5](https://github.com/juspay/hyperswitch-web/commit/05888e55490ae25bfcc7fba38006e7f25a14330e)) # [0.9.0](https://github.com/juspay/hyperswitch-web/compare/v0.8.1...v0.9.0) (2023-11-23) ### Features * HS-172: Added feature flag for logging ([#40](https://github.com/juspay/hyperswitch-web/issues/40)) ([aa8a2ef](https://github.com/juspay/hyperswitch-web/commit/aa8a2ef5a52c1e1df83314dd853552fbd310ba79)) ## [0.8.1](https://github.com/juspay/hyperswitch-web/compare/v0.8.0...v0.8.1) (2023-11-22) ### Bug Fixes * HS-132: Fixes for Dynamic Fields ([#39](https://github.com/juspay/hyperswitch-web/issues/39)) ([151f01e](https://github.com/juspay/hyperswitch-web/commit/151f01eb01158641f28f56d5410945b9857f0f66)) # [0.8.0](https://github.com/juspay/hyperswitch-web/compare/v0.7.0...v0.8.0) (2023-11-22) ### Features * HS-170: Added Card Redirect Payment Method Type ([#36](https://github.com/juspay/hyperswitch-web/issues/36)) ([e9c310b](https://github.com/juspay/hyperswitch-web/commit/e9c310be7275233fba775290208bb9fbeba3a1f5)) # [0.7.0](https://github.com/juspay/hyperswitch-web/compare/v0.6.0...v0.7.0) (2023-11-21) ### Features * HS-132: Added Dynamic Fields for Cards and Blik ([#25](https://github.com/juspay/hyperswitch-web/issues/25)) ([d7efc5b](https://github.com/juspay/hyperswitch-web/commit/d7efc5bd5b7afe682bd577b4dc2da0ea48fe41eb)) # [0.6.0](https://github.com/juspay/hyperswitch-web/compare/v0.5.7...v0.6.0) (2023-11-21) ### Features * HS-169: Script added for setup and clean up on AWS standalone deployment ([#35](https://github.com/juspay/hyperswitch-web/issues/35)) ([e3a7985](https://github.com/juspay/hyperswitch-web/commit/e3a79851d47c693599c05a25bdd8a47b4bd31205)) ## [0.5.7](https://github.com/juspay/hyperswitch-web/compare/v0.5.6...v0.5.7) (2023-11-21) ### Bug Fixes * HS-148: Added Surcharge support for rate ([#13](https://github.com/juspay/hyperswitch-web/issues/13)) ([21d862c](https://github.com/juspay/hyperswitch-web/commit/21d862cf9d907f5ef235c4a3fee4673463bc5424)) ## [0.5.6](https://github.com/juspay/hyperswitch-web/compare/v0.5.5...v0.5.6) (2023-11-21) ### Bug Fixes * HS-165: Endpoint changes to non CDN ([#38](https://github.com/juspay/hyperswitch-web/issues/38)) ([73a8f98](https://github.com/juspay/hyperswitch-web/commit/73a8f9851e0991a79c4e7fc52a72ce9b66bd62ff)) ## [0.5.5](https://github.com/juspay/hyperswitch-web/compare/v0.5.4...v0.5.5) (2023-11-21) ### Bug Fixes * HS-154: reverting ApplePay file to older version for AB testing ([#37](https://github.com/juspay/hyperswitch-web/issues/37)) ([c998bbf](https://github.com/juspay/hyperswitch-web/commit/c998bbfbe67444f463ec5427af8255a09b994d34)) ## [0.5.4](https://github.com/juspay/hyperswitch-web/compare/v0.5.3...v0.5.4) (2023-11-20) ### Bug Fixes * HS-1222: Added redirects file ([#34](https://github.com/juspay/hyperswitch-web/issues/34)) ([bc5b26a](https://github.com/juspay/hyperswitch-web/commit/bc5b26adee429543623228fdfe3309cf0b867f7f)) ## [0.5.3](https://github.com/juspay/hyperswitch-web/compare/v0.5.2...v0.5.3) (2023-11-20) ### Bug Fixes * HS-136: LoadHyper bugfix ([#31](https://github.com/juspay/hyperswitch-web/issues/31)) ([4d2ac97](https://github.com/juspay/hyperswitch-web/commit/4d2ac977a3648a353a73688e84c2ee1bd65c808d)) ## [0.5.2](https://github.com/juspay/hyperswitch-web/compare/v0.5.1...v0.5.2) (2023-11-17) ### Bug Fixes * HS-154: Added loggerState for ApplePay intent and sync ([#26](https://github.com/juspay/hyperswitch-web/issues/26)) ([ed4b09e](https://github.com/juspay/hyperswitch-web/commit/ed4b09e32b0178aa7a02cab8dd316fd7805bbe54)) ## [0.5.1](https://github.com/juspay/hyperswitch-web/compare/v0.5.0...v0.5.1) (2023-11-17) ### Bug Fixes * HS-165: custom backend url fix with prelim check on sentry url ([#27](https://github.com/juspay/hyperswitch-web/issues/27)) ([e0a420b](https://github.com/juspay/hyperswitch-web/commit/e0a420b3ddc9de5e94affa7327f1e7b4804244b6)) # [0.5.0](https://github.com/juspay/hyperswitch-web/compare/v0.4.4...v0.5.0) (2023-11-16) ### Bug Fixes * HS-158: Updated the ApplePay file on main ([#23](https://github.com/juspay/hyperswitch-web/issues/23)) ([90b211d](https://github.com/juspay/hyperswitch-web/commit/90b211dc71dd2a7115546cf4b0d3cfae8750205e)) ### Features * HS-162: Added Custom CashToCode svg ([#16](https://github.com/juspay/hyperswitch-web/issues/16)) ([fff1a54](https://github.com/juspay/hyperswitch-web/commit/fff1a546f887111bb60138d8d00ab8e752b1822e)) ## [0.4.4](https://github.com/juspay/hyperswitch-web/compare/v0.4.3...v0.4.4) (2023-11-13) ### Bug Fixes * HS-154: OrcaLogger setTimeout intervals changed ([#21](https://github.com/juspay/hyperswitch-web/issues/21)) ([346cde3](https://github.com/juspay/hyperswitch-web/commit/346cde3685a9943860079b2000a3e137852e3bfb)) ## [0.4.3](https://github.com/juspay/hyperswitch-web/compare/v0.4.2...v0.4.3) (2023-11-13) ### Bug Fixes * HS-158:minor refactor in ApplePay file ([#20](https://github.com/juspay/hyperswitch-web/issues/20)) ([3da29ab](https://github.com/juspay/hyperswitch-web/commit/3da29abd1c2c5dd8496c47ec87531b1e3713f359)) ## [0.4.2](https://github.com/juspay/hyperswitch-web/compare/v0.4.1...v0.4.2) (2023-11-11) ### Bug Fixes * HS-158: ApplePay build trigger ([#19](https://github.com/juspay/hyperswitch-web/issues/19)) ([afa65f8](https://github.com/juspay/hyperswitch-web/commit/afa65f8dd141f1ade0fab828817e85a79921849b)) ## [0.4.1](https://github.com/juspay/hyperswitch-web/compare/v0.4.0...v0.4.1) (2023-11-11) ### Bug Fixes * HS-158: AB testing for third party ApplePay ([#17](https://github.com/juspay/hyperswitch-web/issues/17)) ([4853f2a](https://github.com/juspay/hyperswitch-web/commit/4853f2aff7b8e78832809b383f276699c578d2f0)) # [0.4.0](https://github.com/juspay/hyperswitch-web/compare/v0.3.1...v0.4.0) (2023-11-09) ### Features * HS-154: Added debug logs for apple pay ([#14](https://github.com/juspay/hyperswitch-web/issues/14)) ([ce7eef9](https://github.com/juspay/hyperswitch-web/commit/ce7eef971f7e19d5f7f07bb24eb2044a05d4182c)) ## [0.3.1](https://github.com/juspay/hyperswitch-web/compare/v0.3.0...v0.3.1) (2023-11-08) ### Bug Fixes * HS-158: TrustPay ApplePay user gesture fix for MWeb ([#12](https://github.com/juspay/hyperswitch-web/issues/12)) ([6d1bbc4](https://github.com/juspay/hyperswitch-web/commit/6d1bbc45428d25b45bbdc62da99748b3b275da51)) # [0.3.0](https://github.com/juspay/hyperswitch-web/compare/v0.2.1...v0.3.0) (2023-11-08) ### Features * HS-154: Made max length of accordion items customizable ([#11](https://github.com/juspay/hyperswitch-web/issues/11)) ([7d9c32f](https://github.com/juspay/hyperswitch-web/commit/7d9c32fab182836650d6ebd4286942155143cafe)) ## [0.2.1](https://github.com/juspay/hyperswitch-web/compare/v0.2.0...v0.2.1) (2023-11-07) ### Bug Fixes * Added token for semantic release ([#10](https://github.com/juspay/hyperswitch-web/issues/10)) ([fa19a69](https://github.com/juspay/hyperswitch-web/commit/fa19a6972ddb5faddec8a74ad162a55e54d85fe9)) * HS-154: Log redirects in case of confirm error, remove extra logs ([#6](https://github.com/juspay/hyperswitch-web/issues/6)) ([2f57f01](https://github.com/juspay/hyperswitch-web/commit/2f57f01094fe275b60b680fc35fcf47ea4b20a3d)) # [0.2.0](https://github.com/juspay/hyperswitch-web/compare/v0.1.0...v0.2.0) (2023-11-02) ### Features * updated Readme ([427f8fd](https://github.com/juspay/hyperswitch-web/commit/427f8fd91be58fc63b0fa4ab326d562a4caaabab))
68,030
10,223
hyperswitch-web
postcss.config.js
.js
module.exports = { plugins: { tailwindcss: {}, autoprefixer: {}, }, }
22
10,224
hyperswitch-web
SECURITY.md
.md
# Security Policy ## Reporting a security issue The hyperswitch project team welcomes security reports and is committed to providing prompt attention to security issues. Security issues should be reported privately via the [advisories page on GitHub][report-vulnerability] or by email at [hyperswitch@juspay.in](mailto:hyperswitch@juspay.in). Security issues should not be reported via the public GitHub Issue tracker. [report-vulnerability]: https://github.com/juspay/hyperswitch-web/security/advisories/new
117
10,225
hyperswitch-web
LICENSE
none
Apache License Version 2.0, January 2004 http://www.apache.org/licenses/ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION 1. Definitions. "License" shall mean the terms and conditions for use, reproduction, and distribution as defined by Sections 1 through 9 of this document. "Licensor" shall mean the copyright owner or entity authorized by the copyright owner that is granting the License. "Legal Entity" shall mean the union of the acting entity and all other entities that control, are controlled by, or are under common control with that entity. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. "You" (or "Your") shall mean an individual or Legal Entity exercising permissions granted by this License. "Source" form shall mean the preferred form for making modifications, including but not limited to software source code, documentation source, and configuration files. "Object" form shall mean any form resulting from mechanical transformation or translation of a Source form, including but not limited to compiled object code, generated documentation, and conversions to other media types. "Work" shall mean the work of authorship, whether in Source or Object form, made available under the License, as indicated by a copyright notice that is included in or attached to the work (an example is provided in the Appendix below). "Derivative Works" shall mean any work, whether in Source or Object form, that is based on (or derived from) the Work and for which the editorial revisions, annotations, elaborations, or other modifications represent, as a whole, an original work of authorship. For the purposes of this License, Derivative Works shall not include works that remain separable from, or merely link (or bind by name) to the interfaces of, the Work and Derivative Works thereof. "Contribution" shall mean any work of authorship, including the original version of the Work and any modifications or additions to that Work or Derivative Works thereof, that is intentionally submitted to Licensor for inclusion in the Work by the copyright owner or by an individual or Legal Entity authorized to submit on behalf of the copyright owner. For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to the Licensor or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, the Licensor for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by the copyright owner as "Not a Contribution." "Contributor" shall mean Licensor and any individual or Legal Entity on behalf of whom a Contribution has been received by Licensor and subsequently incorporated within the Work. 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form. 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed. 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions: (a) You must give any other recipients of the Work or Derivative Works a copy of this License; and (b) You must cause any modified files to carry prominent notices stating that You changed the files; and (c) You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work, excluding those notices that do not pertain to any part of the Derivative Works; and (d) If the Work includes a "NOTICE" text file as part of its distribution, then any Derivative Works that You distribute must include a readable copy of the attribution notices contained within such NOTICE file, excluding those notices that do not pertain to any part of the Derivative Works, in at least one of the following places: within a NOTICE text file distributed as part of the Derivative Works; within the Source form or documentation, if provided along with the Derivative Works; or, within a display generated by the Derivative Works, if and wherever such third-party notices normally appear. The contents of the NOTICE file are for informational purposes only and do not modify the License. You may add Your own attribution notices within Derivative Works that You distribute, alongside or as an addendum to the NOTICE text from the Work, provided that such additional attribution notices cannot be construed as modifying the License. You may add Your own copyright statement to Your modifications and may provide additional or different license terms and conditions for use, reproduction, or distribution of Your modifications, or for any such Derivative Works as a whole, provided Your use, reproduction, and distribution of the Work otherwise complies with the conditions stated in this License. 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions. 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file. 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License. 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages. 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability. END OF TERMS AND CONDITIONS APPENDIX: How to apply the Apache License to your work. To apply the Apache License to your work, attach the following boilerplate notice, with the fields enclosed by brackets "[]" replaced with your own identifying information. (Don't include the brackets!) The text should be enclosed in the appropriate comment syntax for the file format. We also recommend that a file or class name and description of purpose be included on the same "printed page" as the copyright notice for easier identification within third-party archives. Copyright [yyyy] [name of copyright owner] Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.
2,272
10,226
hyperswitch-web
rescript.json
.json
{ "$schema": "https://raw.githubusercontent.com/rescript-lang/rescript-compiler/master/docs/docson/build-schema.json", "name": "orca-payment-page", "jsx": { "version": 4, "mode": "classic" }, "bsc-flags": ["-bs-super-errors", "-open RescriptCore"], "sources": { "dir": "src", "subdirs": true }, "suffix": ".bs.js", "namespace": true, "ppx-flags": [], "package-specs": { "module": "esmodule", "in-source": true }, "bs-dependencies": [ "@rescript/react", "@rescript/core", "@glennsl/rescript-fetch" ] }
174
10,227
hyperswitch-web
webpack.dev.js
.js
const path = require("path"); require("dotenv").config(); const { merge } = require("webpack-merge"); const common = require("./webpack.common.js"); const sdkEnv = process.env.sdkEnv ?? "local"; const endpointMap = { prod: "https://api.hyperswitch.io/payments", sandbox: "https://sandbox.hyperswitch.io/payments", integ: "https://integ.hyperswitch.io/api/payments", local: "https://sandbox.hyperswitch.io/payments", // Default or local environment endpoint }; const backendEndPoint = endpointMap[sdkEnv] || endpointMap.local; const devServer = { static: { directory: path.join(__dirname, "dist"), }, hot: true, host: "0.0.0.0", port: 9050, historyApiFallback: true, proxy: [ { context: ["/payments"], target: backendEndPoint, changeOrigin: true, secure: true, pathRewrite: { "^/payments": "" }, }, // Uncomment the following if needed for 3DS method proxying // { // context: ["/3dsmethod"], // target: "https://acs40.sandbox.3dsecure.io", // changeOrigin: true, // secure: false, // }, ], headers: { "Cache-Control": "must-revalidate", }, }; module.exports = merge(common(), { mode: "development", devServer, });
338
10,228
hyperswitch-web
webpack.common.js
.js
const webpack = require("webpack"); const path = require("path"); const dotenv = require("dotenv").config(); const tailwindcss = require("tailwindcss"); const MiniCssExtractPlugin = require("mini-css-extract-plugin"); const CopyPlugin = require("copy-webpack-plugin"); const HtmlWebpackPlugin = require("html-webpack-plugin"); const TerserPlugin = require("terser-webpack-plugin"); const { BundleAnalyzerPlugin } = require("webpack-bundle-analyzer"); const { sentryWebpackPlugin } = require("@sentry/webpack-plugin"); const AddReactDisplayNamePlugin = require("babel-plugin-add-react-displayname"); // Helper function to get environment variables with fallback const getEnvVariable = (variable, defaultValue) => process.env[variable] ?? defaultValue; const sdkEnv = getEnvVariable("sdkEnv", "local"); const ENABLE_LOGGING = getEnvVariable("ENABLE_LOGGING", "false") === "true"; const envSdkUrl = getEnvVariable("ENV_SDK_URL", ""); const envBackendUrl = getEnvVariable("ENV_BACKEND_URL", ""); const envLoggingUrl = getEnvVariable("ENV_LOGGING_URL", ""); /* * SDK Version Compatibility: * v0: Compatible with API v1 * v1: Compatible with API v1 * v2: Compatible with API v2 * The default SDK version is "v1". */ const sdkVersion = getEnvVariable("SDK_VERSION", "v1"); // Repository info const repoVersion = require("./package.json").version; const repoName = require("./package.json").name; const repoPublicPath = sdkEnv === "local" ? "" : `/web/${repoVersion}/${sdkVersion}`; // Helper function to get SDK URL based on environment const getSdkUrl = (env, customUrl) => { if (customUrl) return customUrl; const urls = { prod: "https://checkout.hyperswitch.io", sandbox: "https://beta.hyperswitch.io", integ: "https://dev.hyperswitch.io", local: "http://localhost:9050", }; return urls[env] || urls.local; }; // Determine SDK URL const sdkUrl = getSdkUrl(sdkEnv, envSdkUrl); // Helper function to determine environment domains const getEnvironmentDomain = (prodDomain, integDomain, defaultDomain) => { switch (sdkEnv) { case "prod": return prodDomain; case "integ": return integDomain; default: return defaultDomain; } }; // Environment endpoints const backendDomain = getEnvironmentDomain("checkout", "dev", "beta"); const confirmDomain = getEnvironmentDomain("live", "integ", "app"); // Backend and confirm endpoints const backendEndPoint = envBackendUrl || `https://${backendDomain}.hyperswitch.io/api`; const confirmEndPoint = envBackendUrl || `https://${confirmDomain}.hyperswitch.io/api`; const logEndpoint = envLoggingUrl; const loggingLevel = "DEBUG"; const maxLogsPushedPerEventName = 100; // Function to determine the current environment type const getEnvironmentType = (env) => { const envType = { isLocal: env === "local", isIntegrationEnv: env === "integ", isProductionEnv: env === "prod", isSandboxEnv: env === "sandbox" || env === "local", }; return envType; }; const { isLocal, isIntegrationEnv, isProductionEnv, isSandboxEnv } = getEnvironmentType(sdkEnv); module.exports = (publicPath = "auto") => { const entries = { app: "./index.js", HyperLoader: "./src/hyper-loader/HyperLoader.bs.js", }; const definePluginValues = { repoName: JSON.stringify(repoName), repoVersion: JSON.stringify(repoVersion), publicPath: JSON.stringify(repoPublicPath), sdkUrl: JSON.stringify(sdkUrl), backendEndPoint: JSON.stringify(backendEndPoint), confirmEndPoint: JSON.stringify(confirmEndPoint), logEndpoint: JSON.stringify(logEndpoint), sentryDSN: JSON.stringify(process.env.SENTRY_DSN), sentryScriptUrl: JSON.stringify(process.env.SENTRY_SCRIPT_URL), enableLogging: ENABLE_LOGGING, loggingLevel: JSON.stringify(loggingLevel), maxLogsPushedPerEventName: JSON.stringify(maxLogsPushedPerEventName), sdkVersion: JSON.stringify(sdkVersion), isIntegrationEnv, isSandboxEnv, isProductionEnv, }; const plugins = [ new MiniCssExtractPlugin(), new CopyPlugin({ patterns: [{ from: "public" }], }), new webpack.DefinePlugin(definePluginValues), new HtmlWebpackPlugin({ inject: false, template: "./public/build.html", }), new HtmlWebpackPlugin({ // Also generate a test.html inject: false, filename: "fullscreenIndex.html", template: "./public/fullscreenIndexTemplate.html", }), ]; if (process.env.NODE_ENV === "production") { plugins.push( new BundleAnalyzerPlugin({ analyzerMode: "static", reportFilename: "bundle-report.html", openAnalyzer: false, }) ); } if ( process.env.SENTRY_AUTH_TOKEN && process.env.IS_SENTRY_ENABLED === "true" ) { plugins.push( sentryWebpackPlugin({ org: "hyperswitch", project: "hyperswitch-web-react", authToken: process.env.SENTRY_AUTH_TOKEN, url: process.env.SENTRY_URL, release: { name: "0.3", uploadLegacySourcemaps: { paths: ["dist"], }, }, }) ); } return { mode: isLocal ? "development" : "production", devtool: isLocal ? "eval-source-map" : "source-map", output: { path: isLocal ? path.resolve(__dirname, "dist") : path.resolve(__dirname, "dist", sdkEnv, sdkVersion), crossOriginLoading: "anonymous", clean: true, publicPath: `${repoPublicPath}/`, }, optimization: isLocal ? {} : { sideEffects: true, minimize: true, minimizer: [ new TerserPlugin({ terserOptions: { compress: { drop_console: false, }, mangle: { keep_fnames: true, // Prevent function names from being mangled keep_classnames: true, // Prevent class names from being mangled }, }, }), ], }, plugins, module: { rules: [ { test: /\.css$/i, use: [ MiniCssExtractPlugin.loader, "css-loader", { loader: "postcss-loader", options: { postcssOptions: { plugins: [[tailwindcss("./tailwind.config.js")]], }, }, }, ], }, { test: /\.jsx?$/, // Matches both .js and .jsx files exclude: /node_modules/, use: { loader: "babel-loader", options: { presets: ["@babel/preset-env", "@babel/preset-react"], plugins: [AddReactDisplayNamePlugin], }, }, }, ], }, entry: entries, resolve: { extensions: [".js", ".jsx"], }, }; };
1,592
10,229
hyperswitch-web
tailwind.config.js
.js
const plugin = require("tailwindcss/plugin"); const defaultTheme = require("tailwindcss/defaultTheme"); module.exports = { darkMode: "class", content: ["./src/**/*.js"], theme: { fontFamily: { "ibm-plex": '"IBM Plex Sans"', "ibm-plex-mono": '"IBM Plex Mono"', "fira-code": '"Fira Code"', }, screens: { xs: "420px", ...defaultTheme.screens, }, extend: { keyframes: { wiggle: { "0%, 100%": { transform: "rotate(-3deg)" }, "50%": { transform: "rotate(3deg)" }, }, wobble: { "0%": { transform: "translateX(0%)" }, "15%": { transform: "translateX(-10%) rotate(-5deg)", }, "30%": { transform: "translateX(10%) rotate(3deg) " }, "45%": { transform: "translateX(-8%) rotate(-3deg)", }, "60%": { transform: "translateX(8%) rotate(2deg)" }, "75%": { transform: "translateX(-5%) rotate(-1deg)", }, "100%": { transform: "translateX(0%)" }, }, slideInFromLeft: { "0%": { transform: "translateX(100%)", opacity: "0", }, "100%": { transform: "translateX(-0%)", opacity: "1", }, }, slideInFromRight: { "0%": { transform: "translateX(-200%)", }, "100%": { transform: "translateX(0%)", }, }, shimmer: { "100%": { transform: "translateX(100%)" }, }, load: { "0%": { transform: "scale(1)" }, "50%": { transform: "scale(0)", backgroundColor: "#1865ff" }, "100%": { transform: "scale(1)" }, }, slowShow: { "0%": { opacity: "0", }, "100%": { opacity: "1", }, }, zoomIn: { "0%": { opacity: "0", transform: "scale(1.1)", }, "100%": { opacity: "1", transform: "scale(1)", }, }, zoomOut: { "0%": { opacity: "1", transform: "scale(1)", }, "100%": { opacity: "0", transform: "scale(0.9)", }, }, slowFade: { "0%": { opacity: "1", }, "100%": { opacity: "0", }, }, }, fontSize: { body: "1rem", small: "0.85rem", }, animation: { "spin-slow": "spin 3s linear infinite", wobble: "wobble 0.2s ease-in-out", slideLeft: "slideInFromLeft 0.2s ease-out 0s 1", slideRight: "slideInFromRight 0.3s ease-out 0s 1", load: "load 1.6s ease infinite", slowShow: "slowShow 0.4s ease-in", slowShowInf: "slowShow 1s ease-in infinite", slowFade: "slowFade 0.4s ease-out", zoomIn: "zoomIn 0.4s ease-in", zoomOut: "zoomOut 0.4s ease-out", }, colors: { blue: { 50: "#F2FAFF", 100: "#E6F5FF", 200: "#CCEBFF", 300: "#B3E0FF", 400: "#99D6FF", 500: "#80CCFF", 550: "#F5F7FC", 600: "#66C2FF", 650: "#0099ff", 700: "#4DB8FF", 750: "#0585DA", 800: "#0099FF", 850: "#0585DA", 900: "#0B79C3", 950: "#4581E5", table_green: "#CDEBEB", table_blue: "#CECFE1", table_yellow: "#F5DFB4", table_red: "#EDB0B0", table_gray: "#DDDDDD", table_orange: "#EDBE93", border: "#0099FF", }, "status-green": "#36AF47", "status-blue": "#0585DD", "status-yellow": "#F7981C", "status-gray": "#5B5F62", "table-violet": "#3D5BF00F", "table-border": "#EBEEFE", "progress-bar-red": "#ef6969", "progress-bar-blue": "#72b4f9", "progress-bar-orange": "#f7981c", "progress-bar-green": "#36af47", "security-tab-light-gray": "#d6d6ce", "security-tab-dark-gray": "#39373b", "jp-gray": { 50: "#FAFBFD", 100: "#F7F8FA", 200: "#F1F5FA", 250: "#FDFEFF", 300: "#E7EAF1", 350: "#F1F5FA", 400: "#D1D4D8", 450: "#FDFEFF", 500: "#D8DDE9", 600: "#CCCFD4", 700: "#9A9FA8", 800: "#67707D", 850: "#31333A", 900: "#354052", 950: "#202124", 960: "#2C2D2F", 970: "#1B1B1D", 920: "#282A2F", 930: "#989AA5", 940: "#CCD2E2", 980: "#ACADB8", disabled_border: "#262626", table_hover: "#F9FBFF", darkgray_background: "#0F1011", lightgray_background: "#191A1A", text_darktheme: "#F6F8F9", lightmode_steelgray: "#CCD2E2", tooltip_bg_dark: "#F7F7FA", tooltip_bg_light: "#23211D", disable_heading_color: "#ACADB8", dark_disable_border_color: "#8d8f9a", light_table_border_color: "#CDD4EB", dark_background_hover: "#F8FAFC", no_data_border: "#6E727A", border_gray: "#354052", conflicts_light: "#f5f7fc", }, "infra-gray": { 300: "#CCCCCC", 700: "#3F3447", 800: "#28212D", 900: "#1A141F", }, "infra-indigo": { 50: "#E4E8FC10", 100: "#E4E8FC15", 200: "#E4E8FC47", 300: "#E4E8FC64", 400: "#E4E8FC87", 500: "#E4E8FC", 800: "#758AF0", }, "infra-red": { 600: "#FAABA6", 900: "#F97F77", }, "infra-amber": { 600: "#F8D2A2", 900: "#F9C077", }, brown: { 600: "#77612a", }, green: { 50: "#F3FBF4", 100: "#E7F7E9", 200: "#CFEFD3", 300: "#B7E7BE", 400: "#9FDFA8", 500: "#86D792", 600: "#6ED07C", 700: "#56C866", 800: "#0EB025", 900: "#20792C", 950: "#36AF47", }, red: { 950: "#F04849", 960: "#EF6969", 970: "#FF0000", }, orange: { 600: "#ffb03b", 950: "#F7981C", 960: "#E89519", }, }, fontSize: { "fs-10": "10px", "fs-11": "11px", "fs-13": "13px", "fs-14": "14px", "fs-16": "16px", "fs-18": "18px", "fs-20": "20px", "fs-24": "24px", }, opacity: { 3: "0.03", }, borderWidth: { 3: "3px", }, boxShadow: { generic_shadow: "0 2px 5px 0 rgba(0, 0, 0, 0.12)", generic_shadow_dark: "0px 2px 5px 0 rgba(0, 0, 0, 0.78)", side_shadow: "0 4px 4px rgba(0, 0, 0, 0.25)", }, margin: { "20vh": "20vh", }, width: { "1/10": "10%", "2/10": "20%", "3/10": "30%", "4/10": "40%", "5/10": "50%", "6/10": "60%", "7/10": "70%", "8/10": "80%", "9/10": "90%", }, height: { "min-content": "min-content", }, }, }, variants: {}, plugins: [ plugin(function ({ addUtilities }) { const newUtilities = { ".no-scrollbar::-webkit-scrollbar": { display: "none", }, "*": { scrollbarWidth: "none", // firefox }, ".show-scrollbar::-webkit-scrollbar": { overflow: "scroll", height: "4px", width: "4px", }, ".show-scrollbar::-webkit-scrollbar-thumb": { borderRadius: "2px", backgroundColor: "#9A9FA8", }, }; addUtilities(newUtilities); }), ], };
2,784
10,230
hyperswitch-web
README.md
.md
<p align="center"> <img src="./docs/imgs/hyperswitch-logo-dark.svg#gh-dark-mode-only" alt="Hyperswitch-Logo" width="40%" /> <img src="./docs/imgs/hyperswitch-logo-light.svg#gh-light-mode-only" alt="Hyperswitch-Logo" width="40%" /> </p> <h1 align="center">Hyperswitch Unified Checkout</h1> <div align="center" > <i>Accept payments from around the globe with a secure, Unified Checkout that gives your customers the best in class payment experience</i> <br/><br/> Web unified checkout SDK is an inclusive, consistent and blended payment experience optimized for the best conversion rates. <br/><br/> <strong>Inclusive</strong>: A variety of global payment methods including cards, buy now pay later and digital wallets are supported by the Unified Checkout, with adaptation to local preferences and ability to local language customization. <strong>Consistent</strong>: With a diverse set of payment methods supported, the Unified Checkout provides a singular consistent payment experience across platforms (web, android and ios) powered by smart payment forms, minimal redirections and intelligent retries. <strong>Blended</strong>: The Unified Checkout includes 40+ styling APIs, which could be tweaked to make the payment experience blend with your product. Your users will get a fully native and embedded payment experience within your app or website </div> <p align="center"> <a href="#%EF%B8%8F-quick-start-guide">Quick Start Guide</a> • <a href="#%EF%B8%8F-try-it-in-local">Local Setup Instructions</a> • <a href="#-backend-server">Backend Server</a> • <a href="#-faqs">FAQs</a> <br> <a href="#-join-us-in-building-hyperswitch">Join us in building HyperSwitch</a> • <a href="#community">Community</a> • <a href="#bugs-and-feature-requests">Bugs and feature requests</a> • <a href="#-copyright-and-license">Copyright and License</a> </p> <p align="center"> <a href="https://github.com/juspay/hyperswitch-web/blob/main/LICENSE"> <img src="https://img.shields.io/github/license/juspay/hyperswitch-web" /> </a> <a href="https://github.com/juspay/hyperswitch-web/blob/main/LICENSE"> <img src="https://img.shields.io/badge/Made_with-Rescript-blue" /> </a> </p> <img src="./docs/imgs/switch.png" /> While the Unified Checkout is pre-optimized for maximum conversions, it does not restrict you to stick to a one-size-fits-all approach. Using the SDK APIs, you get complete control over modifying the payment experience by, - 📝 **Including new fields to the payment form** on a single processor like Stripe or Braintree - 💳 **Prioritizing payment methods** by 90% to add & maintain integrations - 🎨 **Switching themes and layouts of checkout page** with full visibility and control ## ⚡️ Quick Start Guide Ways to get started with Hyperswitch: ### Try it in our Sandbox Environment: Fast and easy to start. &nbsp; &nbsp; To integrate Hyperswitch into your project, follow these steps: 1. **Register**: Begin by registering at [Hyperswitch](https://app.hyperswitch.io/register) to gain access to your dashboard. 1. **Access Your Dashboard**: Once logged in, navigate to your dashboard's home page. 1. **Find Your Keys**: In the sidebar, you can find your [API Keys](https://app.hyperswitch.io/developer-api-keys). Here, you can also generate your API Key. Additionally, your Publishable Key is available within the same section. 1. **Integration**: After obtaining your Keys add them to your project's environment variables or configuration file for seamless integration. ### 🛠️ Try it in Local &nbsp; &nbsp; You will need to understand and configure a few configurations before starting the local setup. - - #### Env Configs for Demo App - **`HYPERSWITCH_PUBLISHABLE_KEY`:** The publishable key of your Hyperswitch account. This key will start with `pk_dev_` for local development, `pk_snd_` for sandbox, and `pk_prd_` for production. - **`HYPERSWITCH_SECRET_KEY`:** The API key of your Hyperswitch account that is used to authenticate API requests from your merchant server. - **`HYPERSWITCH_SERVER_URL`:** The URL of the Hyperswitch backend server. You may use our Sandbox URL (https://sandbox.hyperswitch.io). To do this, go to the Hyperswitch Dashboard, find the "Developers" section, then click on [API Keys](https://app.hyperswitch.io/dashboard/developer-api-keys). Here you can generate an API key (`HYPERSWITCH_SECRET_KEY`) and copy your publishable key (`HYPERSWITCH_PUBLISHABLE_KEY`).<br> Alternatively, you can specify that your backend is running locally (e.g. http://localhost:8080). In this case, you will need to create the API key and publishable key locally. Read this [hyperswitch docs](https://github.com/juspay/hyperswitch/blob/main/docs/try_local_system.md) on how to do this. - **`HYPERSWITCH_CLIENT_URL`:** The URL of your hosted Hyperswitch SDK (e.g. http://localhost:9050). You may also use our Sandbox URL (https://beta.hyperswitch.io/v1). - **`SELF_SERVER_URL`:** The URL of the hosted server file for generating client-secret and for fetching urls & configs (eg: http://localhost:5252). - #### Env Configs for SDK - **`ENV_BACKEND_URL`:** Sets the endpoint for all the APIs used within the SDK to interact with the backend service. If you are running your own backend service, you can configure and specify its endpoint here for local setups. - **`ENV_LOGGING_URL`:** Specifies a custom logging endpoint where logs generated by the SDK can be sent. This allows you to view and manage logs according to your requirements. ### Setup Node Check if your machine has node already installed by running the below command on your local machine. ```bash node -v ``` If your machine does not have node installed in it, you can install it from [here](https://nodejs.org/en/download) <h3>Clone the repo</h3> Clone the repository from Bitbucket and save in your folder. ```bash git clone https://github.com/juspay/hyperswitch-web.git cd hyperswitch-web ``` ### Setup the repo 1. First install all the node modules by running the following command. ```bash npm install ``` 2. Once the installation is successful, you can open two terminals.<br> - On the first terminal run the following command for generating the build: ```bash npm run re:start ``` - On the second terminal, run the following command for starting the SDK server (by default on http://localhost:9050). ```bash npm run start ``` Upon success, you should see a message _Compiled successfully_ message on both of your terminals. 3. Now that the build is generated successfully, on a third terminal, launch the playground. ```bash cd Hyperswitch-React-Demo-App npm install npm run start ``` Now you can launch the demo app on http://localhost:5252/ where you can test your payments.<br> If you encounter any problems, please refer to the troubleshooting section of the [Hyperswitch-React-Demo-App Readme](./Hyperswitch-React-Demo-App/README.md#troubleshooting). > 💡 Alternatively, you can update `.env` file and use the commands > above ## ⛁ Backend Server There are two ways to set up the backend: - ### Local Setup - Install in your local system: Configurations and setup required in your system. Suitable if you like to customise the core offering, [learn more](https://github.com/juspay/hyperswitch/blob/main/docs/try_local_system.md) - If you are running our backend locally, you can use our [Postman Collection](https://github.com/juspay/hyperswitch/blob/main/docs/try_local_system.md#try-out-our-apis) for generating the API Key and Publishable Key. - ### Custom Backend For configuring `customBackendUrl`, when calling Hyper function you can pass the customBackendUrl in props In Payment.js file - ```javascript window.Hyper(publishableKey, { customBackendUrl: `CUSTOM_BACKEND_URL`, }); ``` **Warning:** Please maintain API compatibility of your server and web app. If any API contracts are manually changed without the corresponding handling in the SDK, there is a possibility of the application not working as expected. Please ensure that you use the compatible versions. The latest [releases](https://github.com/juspay/hyperswitch/releases) will have the additional details of the compatible versions of the app server, web app, and the control center. ## 📊 Custom Logging Logging from the payment checkout web client is crucial for tracking and monitoring the flow of payments. It provides a transparent record of events, errors, and user interactions, aiding developers and support teams in identifying issues, debugging, and ensuring the security and reliability of payment processes. Well-implemented logging enhances traceability and facilitates a more efficient resolution of potential problems in the payment checkout experience. Logs are sent to the server via non-blocking Beacon API requests. This means that even if the logging endpoint configured is incorrect, it would not affect the core payment functionalities. You can find more about the structure of logging request payload in the `beaconApiCall` function in the [`OrcaLogger.res`](./src/orca-log-catcher/OrcaLogger.res#L423C7-L423C20) file. If you want to collect logs, you can do so by setting up an endpoint on your server to receive, process and persist logs. In the [`webpack.common.js`](./webpack.common.js) file, you would have to enable the logging flag, and configure the logging endpoint and log level. ```javascipt let logEndpoint = sdkEnv === "prod" ? "<YOUR_PRODUCTION_LOGGING_ENDPOINT>" : "<YOUR_SANDBOX_LOGGING_ENDPOINT>"; // Set this to true to enable logging let ENABLE_LOGGING = true; // Choose from DEBUG, INFO, WARNING, ERROR, SILENT let loggingLevel = "DEBUG"; ``` <br> <div style="display: flex; align-items: center; flex-direction: column;"> <img src="./docs/imgs/logging_levels.png" /> <i>Understanding Logging Levels</i> </div> <br> Now let's test the integration by making a payment from your web client! ## 🔌 Integrate Hyperswitch on your App Now that the project is up and running, integrating Hyperswitch on your web-app is fast & easy. Follow the instructions detailed on our [documentation page][hyperswitch-docs]. [dashboard]: https://app.hyperswitch.io/register [hyperswitch-docs]: https://hyperswitch.io/docs/sdkIntegrations/unifiedCheckoutWeb/ ## 🤔 FAQs Got more questions? Please refer to our [FAQs page][faqs]. [faqs]: https://hyperswitch.io/docs/devSupport ### External Services - Braintree - Trustpay - Sentry - ApplePay - GooglePay - Klarna ## 💪 Join us in building Hyperswitch ### 🤝 Our Belief > Payments should be open, fast, reliable and affordable to serve > the billions of people at scale. Globally payment diversity has been growing at a rapid pace. There are hundreds of payment processors and new payment methods like BNPL, RTP etc. Businesses need to embrace this diversity to increase conversion, reduce cost and improve control. But integrating and maintaining multiple processors needs a lot of dev effort. Why should devs across companies repeat the same work? Why can't it be unified and reused? Hence, Hyperswitch was born to create that reusable core and let companies build and customise it as per their specific requirements. ### ✨ Our Values 1. Embrace Payments Diversity: It will drive innovation in the ecosystem in multiple ways. 2. Make it Open Source: Increases trust; Improves the quality and reusability of software. 3. Be community driven: It enables participatory design and development. 4. Build it like Systems Software: This sets a high bar for Reliability, Security and Performance SLAs. 5. Maximise Value Creation: For developers, customers & partners. ### 🤍 Contributing This project is being created and maintained by [Juspay](https://juspay.in), South Asia's largest payments orchestrator/switch, processing more than 50 Million transactions per day. The solution has 1Mn+ lines of Haskell code built over ten years. Hyperswitch Web leverages our experience in building large-scale, enterprise-grade & frictionless payment solutions. It is built afresh for the global markets as an open-source product in Rescript. We are long-term committed to building and making it useful for the community. The product roadmap is open for the community's feedback. We shall evolve a prioritisation process that is open and community-driven. We welcome contributions from the community. ## Community Get updates on Hyperswitch development and chat with the community: - Read and subscribe to [the official Hyperswitch blog][blog]. - Join our [Discord server][discord]. - Join our [Slack workspace][slack]. [blog]: https://hyperswitch.io/blog [discord]: https://discord.gg/wJZ7DVW8mm [slack]: https://join.slack.com/t/hyperswitch-io/shared_invite/zt-2awm23agh-p_G5xNpziv6yAiedTkkqLg [github-discussions]: https://github.com/juspay/hyperswitch-web/discussions <div style="display: flex; justify-content: center;"> <div style="margin-right:10px"> <a href="https://www.producthunt.com/posts/hyperswitch-2?utm_source=badge-top-post-badge&utm_medium=badge&utm_souce=badge-hyperswitch&#0045;2"> <img src="https://api.producthunt.com/widgets/embed-image/v1/top-post-badge.svg?post_id=375220&theme=light&period=weekly" alt="Hyperswitch - Fast, reliable, and affordable open source payments switch | Product Hunt" style="width: 250px; height: 54px;" width="250" height="54" /> </a> </div> <div style="margin-right:10px"> <a href="https://www.producthunt.com/posts/hyperswitch-2?utm_source=badge-top-post-topic-badge&utm_medium=badge&utm_souce=badge-hyperswitch&#0045;2"> <img src="https://api.producthunt.com/widgets/embed-image/v1/top-post-topic-badge.svg?post_id=375220&theme=light&period=weekly&topic_id=267" alt="Hyperswitch - Fast, reliable, and affordable open source payments switch | Product Hunt" style="width: 250px; height: 54px;" width="250" height="54" /> </a> </div> <div style="margin-right:10px"> <a href="https://www.producthunt.com/posts/hyperswitch-2?utm_source=badge-top-post-topic-badge&utm_medium=badge&utm_souce=badge-hyperswitch&#0045;2"> <img src="https://api.producthunt.com/widgets/embed-image/v1/top-post-topic-badge.svg?post_id=375220&theme=light&period=weekly&topic_id=93" alt="Hyperswitch - Fast, reliable, and affordable open source payments switch | Product Hunt" style="width: 250px; height: 54px;" width="250" height="54" /> </a> </div> </div> ## Bugs and feature requests Please read the issue guidelines and search for [existing and closed issues]. If your problem or idea is not addressed yet, please [open a new issue]. [existing and closed issues]: https://github.com/juspay/hyperswitch-web/issues [open a new issue]: https://github.com/juspay/hyperswitch-web/issues/new/choose ## © Copyright and License This product is licensed under the [Apache 2.0 License](LICENSE). ## Thanks to all contributors Thank you for your support in hyperswitch's growth. Keep up the great work! 🥂 <a href="https://github.com/juspay/hyperswitch-web/graphs/contributors"> <img src="https://contributors-img.web.app/image?repo=juspay/hyperswitch-web" alt="Contributors"/> </a>
3,825
10,231
hyperswitch-web
index.js
.js
export { app as default } from "./src/Index.bs";
12
10,232
hyperswitch-web
package-lock.json
.json
{ "name": "orca-payment-page", "version": "0.121.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "orca-payment-page", "version": "0.121.2", "hasInstallScript": true, "dependencies": { "@glennsl/rescript-fetch": "^0.2.0", "@rescript/core": "^0.7.0", "@rescript/react": "^0.12.1", "@sentry/react": "^9.9.0", "@sentry/webpack-plugin": "^3.2.2", "react": "^18.2.0", "react-datepicker": "^6.9.0", "react-dom": "^18.2.0", "recoil": "^0.1.2", "webpack-merge": "^5.9.0" }, "devDependencies": { "@babel/core": "^7.25.2", "@babel/preset-env": "^7.25.3", "@babel/preset-react": "^7.24.7", "@commitlint/cli": "^17.0.3", "@commitlint/config-conventional": "^17.0.3", "@semantic-release/changelog": "^6.0.3", "@semantic-release/commit-analyzer": "^13.0.0", "@semantic-release/git": "^10.0.1", "@semantic-release/npm": "^12.0.1", "@semantic-release/release-notes-generator": "^14.0.1", "autoprefixer": "^10.4.8", "babel-loader": "^9.1.3", "babel-plugin-add-react-displayname": "^0.0.5", "copy-webpack-plugin": "^11.0.0", "cross-env": "^7.0.3", "css-loader": "^6.7.1", "cz-conventional-changelog": "^3.3.0", "eslint": "^8.57.0", "eslint-plugin-promise": "^7.2.1", "eslint-plugin-react-hooks": "^4.6.0", "html-webpack-plugin": "^5.6.0", "husky": "^8.0.3", "mini-css-extract-plugin": "^1.3.1", "postcss": "^8.4.16", "postcss-loader": "^7.0.1", "rescript": "^11.1.0", "semantic-release": "^24.0.0", "tailwindcss": "^3.1.8", "terser-webpack-plugin": "^5.3.10", "webpack": "^5.94.0", "webpack-bundle-analyzer": "^4.10.2", "webpack-cli": "^5.1.4", "webpack-dev-server": "^5.1.0" } }, "node_modules/@alloc/quick-lru": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/@alloc/quick-lru/-/quick-lru-5.2.0.tgz", "integrity": "sha512-UrcABB+4bUrFABwbluTIBErXwvbsU/V7TZWfmbgJfbkwiBuziS9gxdODUyuiecfdGQ85jglMW6juS3+z5TsKLw==", "dev": true, "license": "MIT", "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/@ampproject/remapping": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.3.0.tgz", "integrity": "sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==", "license": "Apache-2.0", "dependencies": { "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.24" }, "engines": { "node": ">=6.0.0" } }, "node_modules/@babel/code-frame": { "version": "7.26.2", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.26.2.tgz", "integrity": "sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==", "license": "MIT", "dependencies": { "@babel/helper-validator-identifier": "^7.25.9", "js-tokens": "^4.0.0", "picocolors": "^1.0.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/compat-data": { "version": "7.26.5", "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.26.5.tgz", "integrity": "sha512-XvcZi1KWf88RVbF9wn8MN6tYFloU5qX8KjuF3E1PVBmJ9eypXfs4GRiJwLuTZL0iSnJUKn1BFPa5BPZZJyFzPg==", "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/core": { "version": "7.26.0", "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.26.0.tgz", "integrity": "sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==", "license": "MIT", "dependencies": { "@ampproject/remapping": "^2.2.0", "@babel/code-frame": "^7.26.0", "@babel/generator": "^7.26.0", "@babel/helper-compilation-targets": "^7.25.9", "@babel/helper-module-transforms": "^7.26.0", "@babel/helpers": "^7.26.0", "@babel/parser": "^7.26.0", "@babel/template": "^7.25.9", "@babel/traverse": "^7.25.9", "@babel/types": "^7.26.0", "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", "json5": "^2.2.3", "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/babel" } }, "node_modules/@babel/generator": { "version": "7.26.5", "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.26.5.tgz", "integrity": "sha512-2caSP6fN9I7HOe6nqhtft7V4g7/V/gfDsC3Ag4W7kEzzvRGKqiv0pu0HogPiZ3KaVSoNDhUws6IJjDjpfmYIXw==", "license": "MIT", "dependencies": { "@babel/parser": "^7.26.5", "@babel/types": "^7.26.5", "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^3.0.2" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-annotate-as-pure": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.25.9.tgz", "integrity": "sha512-gv7320KBUFJz1RnylIg5WWYPRXKZ884AGkYpgpWW02TH66Dl+HaC1t1CKd0z3R4b6hdYEcmrNZHUmfCP+1u3/g==", "dev": true, "license": "MIT", "dependencies": { "@babel/types": "^7.25.9" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-compilation-targets": { "version": "7.26.5", "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.26.5.tgz", "integrity": "sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA==", "license": "MIT", "dependencies": { "@babel/compat-data": "^7.26.5", "@babel/helper-validator-option": "^7.25.9", "browserslist": "^4.24.0", "lru-cache": "^5.1.1", "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-create-class-features-plugin": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.25.9.tgz", "integrity": "sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.25.9", "@babel/helper-member-expression-to-functions": "^7.25.9", "@babel/helper-optimise-call-expression": "^7.25.9", "@babel/helper-replace-supers": "^7.25.9", "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", "@babel/traverse": "^7.25.9", "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "node_modules/@babel/helper-create-regexp-features-plugin": { "version": "7.26.3", "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.26.3.tgz", "integrity": "sha512-G7ZRb40uUgdKOQqPLjfD12ZmGA54PzqDFUv2BKImnC9QIfGhIHKvVML0oN8IUiDq4iRqpq74ABpvOaerfWdong==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.25.9", "regexpu-core": "^6.2.0", "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "node_modules/@babel/helper-define-polyfill-provider": { "version": "0.6.3", "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.3.tgz", "integrity": "sha512-HK7Bi+Hj6H+VTHA3ZvBis7V/6hu9QuTrnMXNybfUf2iiuU/N97I8VjB+KbhFF8Rld/Lx5MzoCwPCpPjfK+n8Cg==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-compilation-targets": "^7.22.6", "@babel/helper-plugin-utils": "^7.22.5", "debug": "^4.1.1", "lodash.debounce": "^4.0.8", "resolve": "^1.14.2" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "node_modules/@babel/helper-member-expression-to-functions": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.25.9.tgz", "integrity": "sha512-wbfdZ9w5vk0C0oyHqAJbc62+vet5prjj01jjJ8sKn3j9h3MQQlflEdXYvuqRWjHnM12coDEqiC1IRCi0U/EKwQ==", "dev": true, "license": "MIT", "dependencies": { "@babel/traverse": "^7.25.9", "@babel/types": "^7.25.9" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-imports": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.25.9.tgz", "integrity": "sha512-tnUA4RsrmflIM6W6RFTLFSXITtl0wKjgpnLgXyowocVPrbYrLUXSBXDgTs8BlbmIzIdlBySRQjINYs2BAkiLtw==", "license": "MIT", "dependencies": { "@babel/traverse": "^7.25.9", "@babel/types": "^7.25.9" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-transforms": { "version": "7.26.0", "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.26.0.tgz", "integrity": "sha512-xO+xu6B5K2czEnQye6BHA7DolFFmS3LB7stHZFaOLb1pAwO1HWLS8fXA+eh0A2yIvltPVmx3eNNDBJA2SLHXFw==", "license": "MIT", "dependencies": { "@babel/helper-module-imports": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9", "@babel/traverse": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "node_modules/@babel/helper-optimise-call-expression": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.25.9.tgz", "integrity": "sha512-FIpuNaz5ow8VyrYcnXQTDRGvV6tTjkNtCK/RYNDXGSLlUD6cBuQTSw43CShGxjvfBTfcUA/r6UhUCbtYqkhcuQ==", "dev": true, "license": "MIT", "dependencies": { "@babel/types": "^7.25.9" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-plugin-utils": { "version": "7.26.5", "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.26.5.tgz", "integrity": "sha512-RS+jZcRdZdRFzMyr+wcsaqOmld1/EqTghfaBGQQd/WnRdzdlvSZ//kF7U8VQTxf1ynZ4cjUcYgjVGx13ewNPMg==", "dev": true, "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-remap-async-to-generator": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.25.9.tgz", "integrity": "sha512-IZtukuUeBbhgOcaW2s06OXTzVNJR0ybm4W5xC1opWFFJMZbwRj5LCk+ByYH7WdZPZTt8KnFwA8pvjN2yqcPlgw==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.25.9", "@babel/helper-wrap-function": "^7.25.9", "@babel/traverse": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "node_modules/@babel/helper-replace-supers": { "version": "7.26.5", "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.26.5.tgz", "integrity": "sha512-bJ6iIVdYX1YooY2X7w1q6VITt+LnUILtNk7zT78ykuwStx8BauCzxvFqFaHjOpW1bVnSUM1PN1f0p5P21wHxvg==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-member-expression-to-functions": "^7.25.9", "@babel/helper-optimise-call-expression": "^7.25.9", "@babel/traverse": "^7.26.5" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "node_modules/@babel/helper-skip-transparent-expression-wrappers": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.25.9.tgz", "integrity": "sha512-K4Du3BFa3gvyhzgPcntrkDgZzQaq6uozzcpGbOO1OEJaI+EJdqWIMTLgFgQf6lrfiDFo5FU+BxKepI9RmZqahA==", "dev": true, "license": "MIT", "dependencies": { "@babel/traverse": "^7.25.9", "@babel/types": "^7.25.9" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-string-parser": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.25.9.tgz", "integrity": "sha512-4A/SCr/2KLd5jrtOMFzaKjVtAei3+2r/NChoBNoZ3EyP/+GlhoaEGoWOZUmFmoITP7zOJyHIMm+DYRd8o3PvHA==", "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-identifier": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.25.9.tgz", "integrity": "sha512-Ed61U6XJc3CVRfkERJWDz4dJwKe7iLmmJsbOGu9wSloNSFttHV0I8g6UAgb7qnK5ly5bGLPd4oXZlxCdANBOWQ==", "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-option": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.25.9.tgz", "integrity": "sha512-e/zv1co8pp55dNdEcCynfj9X7nyUKUXoUEwfXqaZt0omVOmDe9oOTdKStH4GmAw6zxMFs50ZayuMfHDKlO7Tfw==", "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-wrap-function": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.25.9.tgz", "integrity": "sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==", "dev": true, "license": "MIT", "dependencies": { "@babel/template": "^7.25.9", "@babel/traverse": "^7.25.9", "@babel/types": "^7.25.9" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helpers": { "version": "7.27.0", "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.27.0.tgz", "integrity": "sha512-U5eyP/CTFPuNE3qk+WZMxFkp/4zUzdceQlfzf7DdGdhp+Fezd7HD+i8Y24ZuTMKX3wQBld449jijbGq6OdGNQg==", "license": "MIT", "dependencies": { "@babel/template": "^7.27.0", "@babel/types": "^7.27.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/parser": { "version": "7.27.0", "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.27.0.tgz", "integrity": "sha512-iaepho73/2Pz7w2eMS0Q5f83+0RKI7i4xmiYeBmDzfRVbQtTOG7Ts0S4HzJVsTMGI9keU8rNfuZr8DKfSt7Yyg==", "license": "MIT", "dependencies": { "@babel/types": "^7.27.0" }, "bin": { "parser": "bin/babel-parser.js" }, "engines": { "node": ">=6.0.0" } }, "node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.25.9.tgz", "integrity": "sha512-ZkRyVkThtxQ/J6nv3JFYv1RYY+JT5BvU0y3k5bWrmuG4woXypRa4PXmm9RhOwodRkYFWqC0C0cqcJ4OqR7kW+g==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.25.9", "@babel/traverse": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "node_modules/@babel/plugin-bugfix-safari-class-field-initializer-scope": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-class-field-initializer-scope/-/plugin-bugfix-safari-class-field-initializer-scope-7.25.9.tgz", "integrity": "sha512-MrGRLZxLD/Zjj0gdU15dfs+HH/OXvnw/U4jJD8vpcP2CJQapPEv1IWwjc/qMg7ItBlPwSv1hRBbb7LeuANdcnw==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.25.9.tgz", "integrity": "sha512-2qUwwfAFpJLZqxd02YW9btUCZHl+RFvdDkNfZwaIJrvB8Tesjsk8pEQkTvGwZXLqXUx/2oyY3ySRhm6HOXuCug==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.25.9.tgz", "integrity": "sha512-6xWgLZTJXwilVjlnV7ospI3xi+sl8lN8rXXbBD6vYn3UYDlGsag8wrZkKcSI8G6KgqKP7vNFaDgeDnfAABq61g==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.25.9", "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9", "@babel/plugin-transform-optional-chaining": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.13.0" } }, "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.25.9.tgz", "integrity": "sha512-aLnMXYPnzwwqhYSCyXfKkIkYgJ8zv9RK+roo9DkTXz38ynIhd9XCbN08s3MGvqL2MYGVUGdRQLL/JqBIeJhJBg==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.25.9", "@babel/traverse": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "node_modules/@babel/plugin-proposal-private-property-in-object": { "version": "7.21.0-placeholder-for-preset-env.2", "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", "dev": true, "license": "MIT", "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-import-assertions": { "version": "7.26.0", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.26.0.tgz", "integrity": "sha512-QCWT5Hh830hK5EQa7XzuqIkQU9tT/whqbDz7kuaZMHFl1inRRg7JnuAEOQ0Ur0QUl0NufCk1msK2BeY79Aj/eg==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-import-attributes": { "version": "7.26.0", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.26.0.tgz", "integrity": "sha512-e2dttdsJ1ZTpi3B9UYGLw41hifAubg19AtCu/2I/F1QNVclOBr1dYpTdmdyZ84Xiz43BS/tCUkMAZNLv12Pi+A==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-jsx": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.25.9.tgz", "integrity": "sha512-ld6oezHQMZsZfp6pWtbjaNDF2tiiCYYDqQszHt5VV437lewP9aSi2Of99CK0D0XB21k7FLgnLcmQKyKzynfeAA==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-syntax-unicode-sets-regex": { "version": "7.18.6", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.18.6", "@babel/helper-plugin-utils": "^7.18.6" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "node_modules/@babel/plugin-transform-arrow-functions": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.25.9.tgz", "integrity": "sha512-6jmooXYIwn9ca5/RylZADJ+EnSxVUS5sjeJ9UPk6RWRzXCmOJCy6dqItPJFpw2cuCangPK4OYr5uhGKcmrm5Qg==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-async-generator-functions": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.25.9.tgz", "integrity": "sha512-RXV6QAzTBbhDMO9fWwOmwwTuYaiPbggWQ9INdZqAYeSHyG7FzQ+nOZaUUjNwKv9pV3aE4WFqFm1Hnbci5tBCAw==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.25.9", "@babel/helper-remap-async-to-generator": "^7.25.9", "@babel/traverse": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-async-to-generator": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.25.9.tgz", "integrity": "sha512-NT7Ejn7Z/LjUH0Gv5KsBCxh7BH3fbLTV0ptHvpeMvrt3cPThHfJfst9Wrb7S8EvJ7vRTFI7z+VAvFVEQn/m5zQ==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-module-imports": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9", "@babel/helper-remap-async-to-generator": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-block-scoped-functions": { "version": "7.26.5", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.26.5.tgz", "integrity": "sha512-chuTSY+hq09+/f5lMj8ZSYgCFpppV2CbYrhNFJ1BFoXpiWPnnAb7R0MqrafCpN8E1+YRrtM1MXZHJdIx8B6rMQ==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.26.5" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-block-scoping": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.25.9.tgz", "integrity": "sha512-1F05O7AYjymAtqbsFETboN1NvBdcnzMerO+zlMyJBEz6WkMdejvGWw9p05iTSjC85RLlBseHHQpYaM4gzJkBGg==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-class-properties": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.25.9.tgz", "integrity": "sha512-bbMAII8GRSkcd0h0b4X+36GksxuheLFjP65ul9w6C3KgAamI3JqErNgSrosX6ZPj+Mpim5VvEbawXxJCyEUV3Q==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-create-class-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-class-static-block": { "version": "7.26.0", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.26.0.tgz", "integrity": "sha512-6J2APTs7BDDm+UMqP1useWqhcRAXo0WIoVj26N7kPFB6S73Lgvyka4KTZYIxtgYXiN5HTyRObA72N2iu628iTQ==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-create-class-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.12.0" } }, "node_modules/@babel/plugin-transform-classes": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.25.9.tgz", "integrity": "sha512-mD8APIXmseE7oZvZgGABDyM34GUmK45Um2TXiBUt7PnuAxrgoSVf123qUzPxEr/+/BHrRn5NMZCdE2m/1F8DGg==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.25.9", "@babel/helper-compilation-targets": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9", "@babel/helper-replace-supers": "^7.25.9", "@babel/traverse": "^7.25.9", "globals": "^11.1.0" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-computed-properties": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.25.9.tgz", "integrity": "sha512-HnBegGqXZR12xbcTHlJ9HGxw1OniltT26J5YpfruGqtUHlz/xKf/G2ak9e+t0rVqrjXa9WOhvYPz1ERfMj23AA==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.25.9", "@babel/template": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-destructuring": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.25.9.tgz", "integrity": "sha512-WkCGb/3ZxXepmMiX101nnGiU+1CAdut8oHyEOHxkKuS1qKpU2SMXE2uSvfz8PBuLd49V6LEsbtyPhWC7fnkgvQ==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-dotall-regex": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.25.9.tgz", "integrity": "sha512-t7ZQ7g5trIgSRYhI9pIJtRl64KHotutUJsh4Eze5l7olJv+mRSg4/MmbZ0tv1eeqRbdvo/+trvJD/Oc5DmW2cA==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-duplicate-keys": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.25.9.tgz", "integrity": "sha512-LZxhJ6dvBb/f3x8xwWIuyiAHy56nrRG3PeYTpBkkzkYRRQ6tJLu68lEF5VIqMUZiAV7a8+Tb78nEoMCMcqjXBw==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-duplicate-named-capturing-groups-regex": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-named-capturing-groups-regex/-/plugin-transform-duplicate-named-capturing-groups-regex-7.25.9.tgz", "integrity": "sha512-0UfuJS0EsXbRvKnwcLjFtJy/Sxc5J5jhLHnFhy7u4zih97Hz6tJkLU+O+FMMrNZrosUPxDi6sYxJ/EA8jDiAog==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "node_modules/@babel/plugin-transform-dynamic-import": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.25.9.tgz", "integrity": "sha512-GCggjexbmSLaFhqsojeugBpeaRIgWNTcgKVq/0qIteFEqY2A+b9QidYadrWlnbWQUrW5fn+mCvf3tr7OeBFTyg==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-exponentiation-operator": { "version": "7.26.3", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.26.3.tgz", "integrity": "sha512-7CAHcQ58z2chuXPWblnn1K6rLDnDWieghSOEmqQsrBenH0P9InCUtOJYD89pvngljmZlJcz3fcmgYsXFNGa1ZQ==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-export-namespace-from": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.25.9.tgz", "integrity": "sha512-2NsEz+CxzJIVOPx2o9UsW1rXLqtChtLoVnwYHHiB04wS5sgn7mrV45fWMBX0Kk+ub9uXytVYfNP2HjbVbCB3Ww==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-for-of": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.25.9.tgz", "integrity": "sha512-LqHxduHoaGELJl2uhImHwRQudhCM50pT46rIBNvtT/Oql3nqiS3wOwP+5ten7NpYSXrrVLgtZU3DZmPtWZo16A==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.25.9", "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-function-name": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.25.9.tgz", "integrity": "sha512-8lP+Yxjv14Vc5MuWBpJsoUCd3hD6V9DgBon2FVYL4jJgbnVQ9fTgYmonchzZJOVNgzEgbxp4OwAf6xz6M/14XA==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-compilation-targets": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9", "@babel/traverse": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-json-strings": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.25.9.tgz", "integrity": "sha512-xoTMk0WXceiiIvsaquQQUaLLXSW1KJ159KP87VilruQm0LNNGxWzahxSS6T6i4Zg3ezp4vA4zuwiNUR53qmQAw==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-literals": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.25.9.tgz", "integrity": "sha512-9N7+2lFziW8W9pBl2TzaNht3+pgMIRP74zizeCSrtnSKVdUl8mAjjOP2OOVQAfZ881P2cNjDj1uAMEdeD50nuQ==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-logical-assignment-operators": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.25.9.tgz", "integrity": "sha512-wI4wRAzGko551Y8eVf6iOY9EouIDTtPb0ByZx+ktDGHwv6bHFimrgJM/2T021txPZ2s4c7bqvHbd+vXG6K948Q==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-member-expression-literals": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.25.9.tgz", "integrity": "sha512-PYazBVfofCQkkMzh2P6IdIUaCEWni3iYEerAsRWuVd8+jlM1S9S9cz1dF9hIzyoZ8IA3+OwVYIp9v9e+GbgZhA==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-modules-amd": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.25.9.tgz", "integrity": "sha512-g5T11tnI36jVClQlMlt4qKDLlWnG5pP9CSM4GhdRciTNMRgkfpo5cR6b4rGIOYPgRRuFAvwjPQ/Yk+ql4dyhbw==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-module-transforms": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-modules-commonjs": { "version": "7.26.3", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.26.3.tgz", "integrity": "sha512-MgR55l4q9KddUDITEzEFYn5ZsGDXMSsU9E+kh7fjRXTIC3RHqfCo8RPRbyReYJh44HQ/yomFkqbOFohXvDCiIQ==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-module-transforms": "^7.26.0", "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-modules-systemjs": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.25.9.tgz", "integrity": "sha512-hyss7iIlH/zLHaehT+xwiymtPOpsiwIIRlCAOwBB04ta5Tt+lNItADdlXw3jAWZ96VJ2jlhl/c+PNIQPKNfvcA==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-module-transforms": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9", "@babel/traverse": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-modules-umd": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.25.9.tgz", "integrity": "sha512-bS9MVObUgE7ww36HEfwe6g9WakQ0KF07mQF74uuXdkoziUPfKyu/nIm663kz//e5O1nPInPFx36z7WJmJ4yNEw==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-module-transforms": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.25.9.tgz", "integrity": "sha512-oqB6WHdKTGl3q/ItQhpLSnWWOpjUJLsOCLVyeFgeTktkBSCiurvPOsyt93gibI9CmuKvTUEtWmG5VhZD+5T/KA==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "node_modules/@babel/plugin-transform-new-target": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.25.9.tgz", "integrity": "sha512-U/3p8X1yCSoKyUj2eOBIx3FOn6pElFOKvAAGf8HTtItuPyB+ZeOqfn+mvTtg9ZlOAjsPdK3ayQEjqHjU/yLeVQ==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { "version": "7.26.6", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.26.6.tgz", "integrity": "sha512-CKW8Vu+uUZneQCPtXmSBUC6NCAUdya26hWCElAWh5mVSlSRsmiCPUUDKb3Z0szng1hiAJa098Hkhg9o4SE35Qw==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.26.5" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-numeric-separator": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.25.9.tgz", "integrity": "sha512-TlprrJ1GBZ3r6s96Yq8gEQv82s8/5HnCVHtEJScUj90thHQbwe+E5MLhi2bbNHBEJuzrvltXSru+BUxHDoog7Q==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-object-rest-spread": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.25.9.tgz", "integrity": "sha512-fSaXafEE9CVHPweLYw4J0emp1t8zYTXyzN3UuG+lylqkvYd7RMrsOQ8TYx5RF231be0vqtFC6jnx3UmpJmKBYg==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-compilation-targets": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9", "@babel/plugin-transform-parameters": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-object-super": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.25.9.tgz", "integrity": "sha512-Kj/Gh+Rw2RNLbCK1VAWj2U48yxxqL2x0k10nPtSdRa0O2xnHXalD0s+o1A6a0W43gJ00ANo38jxkQreckOzv5A==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.25.9", "@babel/helper-replace-supers": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-optional-catch-binding": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.25.9.tgz", "integrity": "sha512-qM/6m6hQZzDcZF3onzIhZeDHDO43bkNNlOX0i8n3lR6zLbu0GN2d8qfM/IERJZYauhAHSLHy39NF0Ctdvcid7g==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-optional-chaining": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.25.9.tgz", "integrity": "sha512-6AvV0FsLULbpnXeBjrY4dmWF8F7gf8QnvTEoO/wX/5xm/xE1Xo8oPuD3MPS+KS9f9XBEAWN7X1aWr4z9HdOr7A==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.25.9", "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-parameters": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.25.9.tgz", "integrity": "sha512-wzz6MKwpnshBAiRmn4jR8LYz/g8Ksg0o80XmwZDlordjwEk9SxBzTWC7F5ef1jhbrbOW2DJ5J6ayRukrJmnr0g==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-private-methods": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.25.9.tgz", "integrity": "sha512-D/JUozNpQLAPUVusvqMxyvjzllRaF8/nSrP1s2YGQT/W4LHK4xxsMcHjhOGTS01mp9Hda8nswb+FblLdJornQw==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-create-class-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-private-property-in-object": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.25.9.tgz", "integrity": "sha512-Evf3kcMqzXA3xfYJmZ9Pg1OvKdtqsDMSWBDzZOPLvHiTt36E75jLDQo5w1gtRU95Q4E5PDttrTf25Fw8d/uWLw==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.25.9", "@babel/helper-create-class-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-property-literals": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.25.9.tgz", "integrity": "sha512-IvIUeV5KrS/VPavfSM/Iu+RE6llrHrYIKY1yfCzyO/lMXHQ+p7uGhonmGVisv6tSBSVgWzMBohTcvkC9vQcQFA==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-react-display-name": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.25.9.tgz", "integrity": "sha512-KJfMlYIUxQB1CJfO3e0+h0ZHWOTLCPP115Awhaz8U0Zpq36Gl/cXlpoyMRnUWlhNUBAzldnCiAZNvCDj7CrKxQ==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-react-jsx": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.25.9.tgz", "integrity": "sha512-s5XwpQYCqGerXl+Pu6VDL3x0j2d82eiV77UJ8a2mDHAW7j9SWRqQ2y1fNo1Z74CdcYipl5Z41zvjj4Nfzq36rw==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.25.9", "@babel/helper-module-imports": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9", "@babel/plugin-syntax-jsx": "^7.25.9", "@babel/types": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-react-jsx-development": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.25.9.tgz", "integrity": "sha512-9mj6rm7XVYs4mdLIpbZnHOYdpW42uoiBCTVowg7sP1thUOiANgMb4UtpRivR0pp5iL+ocvUv7X4mZgFRpJEzGw==", "dev": true, "license": "MIT", "dependencies": { "@babel/plugin-transform-react-jsx": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-react-pure-annotations": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.25.9.tgz", "integrity": "sha512-KQ/Takk3T8Qzj5TppkS1be588lkbTp5uj7w6a0LeQaTMSckU/wK0oJ/pih+T690tkgI5jfmg2TqDJvd41Sj1Cg==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-annotate-as-pure": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-regenerator": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.25.9.tgz", "integrity": "sha512-vwDcDNsgMPDGP0nMqzahDWE5/MLcX8sv96+wfX7as7LoF/kr97Bo/7fI00lXY4wUXYfVmwIIyG80fGZ1uvt2qg==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.25.9", "regenerator-transform": "^0.15.2" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-regexp-modifiers": { "version": "7.26.0", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regexp-modifiers/-/plugin-transform-regexp-modifiers-7.26.0.tgz", "integrity": "sha512-vN6saax7lrA2yA/Pak3sCxuD6F5InBjn9IcrIKQPjpsLvuHYLVroTxjdlVRHjjBWxKOqIwpTXDkOssYT4BFdRw==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "node_modules/@babel/plugin-transform-reserved-words": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.25.9.tgz", "integrity": "sha512-7DL7DKYjn5Su++4RXu8puKZm2XBPHyjWLUidaPEkCUBbE7IPcsrkRHggAOOKydH1dASWdcUBxrkOGNxUv5P3Jg==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-shorthand-properties": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.25.9.tgz", "integrity": "sha512-MUv6t0FhO5qHnS/W8XCbHmiRWOphNufpE1IVxhK5kuN3Td9FT1x4rx4K42s3RYdMXCXpfWkGSbCSd0Z64xA7Ng==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-spread": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.25.9.tgz", "integrity": "sha512-oNknIB0TbURU5pqJFVbOOFspVlrpVwo2H1+HUIsVDvp5VauGGDP1ZEvO8Nn5xyMEs3dakajOxlmkNW7kNgSm6A==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.25.9", "@babel/helper-skip-transparent-expression-wrappers": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-sticky-regex": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.25.9.tgz", "integrity": "sha512-WqBUSgeVwucYDP9U/xNRQam7xV8W5Zf+6Eo7T2SRVUFlhRiMNFdFz58u0KZmCVVqs2i7SHgpRnAhzRNmKfi2uA==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-template-literals": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.25.9.tgz", "integrity": "sha512-o97AE4syN71M/lxrCtQByzphAdlYluKPDBzDVzMmfCobUjjhAryZV0AIpRPrxN0eAkxXO6ZLEScmt+PNhj2OTw==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-typeof-symbol": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.25.9.tgz", "integrity": "sha512-v61XqUMiueJROUv66BVIOi0Fv/CUuZuZMl5NkRoCVxLAnMexZ0A3kMe7vvZ0nulxMuMp0Mk6S5hNh48yki08ZA==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-unicode-escapes": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.25.9.tgz", "integrity": "sha512-s5EDrE6bW97LtxOcGj1Khcx5AaXwiMmi4toFWRDP9/y0Woo6pXC+iyPu/KuhKtfSrNFd7jJB+/fkOtZy6aIC6Q==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-unicode-property-regex": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.25.9.tgz", "integrity": "sha512-Jt2d8Ga+QwRluxRQ307Vlxa6dMrYEMZCgGxoPR8V52rxPyldHu3hdlHspxaqYmE7oID5+kB+UKUB/eWS+DkkWg==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-unicode-regex": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.25.9.tgz", "integrity": "sha512-yoxstj7Rg9dlNn9UQxzk4fcNivwv4nUYz7fYXBaKxvw/lnmPuOm/ikoELygbYq68Bls3D/D+NBPHiLwZdZZ4HA==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/plugin-transform-unicode-sets-regex": { "version": "7.25.9", "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.25.9.tgz", "integrity": "sha512-8BYqO3GeVNHtx69fdPshN3fnzUNLrWdHhk/icSwigksJGczKSizZ+Z6SBCxTs723Fr5VSNorTIK7a+R2tISvwQ==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-create-regexp-features-plugin": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0" } }, "node_modules/@babel/preset-env": { "version": "7.26.0", "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.26.0.tgz", "integrity": "sha512-H84Fxq0CQJNdPFT2DrfnylZ3cf5K43rGfWK4LJGPpjKHiZlk0/RzwEus3PDDZZg+/Er7lCA03MVacueUuXdzfw==", "dev": true, "license": "MIT", "dependencies": { "@babel/compat-data": "^7.26.0", "@babel/helper-compilation-targets": "^7.25.9", "@babel/helper-plugin-utils": "^7.25.9", "@babel/helper-validator-option": "^7.25.9", "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.25.9", "@babel/plugin-bugfix-safari-class-field-initializer-scope": "^7.25.9", "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.25.9", "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.25.9", "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.25.9", "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", "@babel/plugin-syntax-import-assertions": "^7.26.0", "@babel/plugin-syntax-import-attributes": "^7.26.0", "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", "@babel/plugin-transform-arrow-functions": "^7.25.9", "@babel/plugin-transform-async-generator-functions": "^7.25.9", "@babel/plugin-transform-async-to-generator": "^7.25.9", "@babel/plugin-transform-block-scoped-functions": "^7.25.9", "@babel/plugin-transform-block-scoping": "^7.25.9", "@babel/plugin-transform-class-properties": "^7.25.9", "@babel/plugin-transform-class-static-block": "^7.26.0", "@babel/plugin-transform-classes": "^7.25.9", "@babel/plugin-transform-computed-properties": "^7.25.9", "@babel/plugin-transform-destructuring": "^7.25.9", "@babel/plugin-transform-dotall-regex": "^7.25.9", "@babel/plugin-transform-duplicate-keys": "^7.25.9", "@babel/plugin-transform-duplicate-named-capturing-groups-regex": "^7.25.9", "@babel/plugin-transform-dynamic-import": "^7.25.9", "@babel/plugin-transform-exponentiation-operator": "^7.25.9", "@babel/plugin-transform-export-namespace-from": "^7.25.9", "@babel/plugin-transform-for-of": "^7.25.9", "@babel/plugin-transform-function-name": "^7.25.9", "@babel/plugin-transform-json-strings": "^7.25.9", "@babel/plugin-transform-literals": "^7.25.9", "@babel/plugin-transform-logical-assignment-operators": "^7.25.9", "@babel/plugin-transform-member-expression-literals": "^7.25.9", "@babel/plugin-transform-modules-amd": "^7.25.9", "@babel/plugin-transform-modules-commonjs": "^7.25.9", "@babel/plugin-transform-modules-systemjs": "^7.25.9", "@babel/plugin-transform-modules-umd": "^7.25.9", "@babel/plugin-transform-named-capturing-groups-regex": "^7.25.9", "@babel/plugin-transform-new-target": "^7.25.9", "@babel/plugin-transform-nullish-coalescing-operator": "^7.25.9", "@babel/plugin-transform-numeric-separator": "^7.25.9", "@babel/plugin-transform-object-rest-spread": "^7.25.9", "@babel/plugin-transform-object-super": "^7.25.9", "@babel/plugin-transform-optional-catch-binding": "^7.25.9", "@babel/plugin-transform-optional-chaining": "^7.25.9", "@babel/plugin-transform-parameters": "^7.25.9", "@babel/plugin-transform-private-methods": "^7.25.9", "@babel/plugin-transform-private-property-in-object": "^7.25.9", "@babel/plugin-transform-property-literals": "^7.25.9", "@babel/plugin-transform-regenerator": "^7.25.9", "@babel/plugin-transform-regexp-modifiers": "^7.26.0", "@babel/plugin-transform-reserved-words": "^7.25.9", "@babel/plugin-transform-shorthand-properties": "^7.25.9", "@babel/plugin-transform-spread": "^7.25.9", "@babel/plugin-transform-sticky-regex": "^7.25.9", "@babel/plugin-transform-template-literals": "^7.25.9", "@babel/plugin-transform-typeof-symbol": "^7.25.9", "@babel/plugin-transform-unicode-escapes": "^7.25.9", "@babel/plugin-transform-unicode-property-regex": "^7.25.9", "@babel/plugin-transform-unicode-regex": "^7.25.9", "@babel/plugin-transform-unicode-sets-regex": "^7.25.9", "@babel/preset-modules": "0.1.6-no-external-plugins", "babel-plugin-polyfill-corejs2": "^0.4.10", "babel-plugin-polyfill-corejs3": "^0.10.6", "babel-plugin-polyfill-regenerator": "^0.6.1", "core-js-compat": "^3.38.1", "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/preset-modules": { "version": "0.1.6-no-external-plugins", "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.0.0", "@babel/types": "^7.4.4", "esutils": "^2.0.2" }, "peerDependencies": { "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" } }, "node_modules/@babel/preset-react": { "version": "7.26.3", "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.26.3.tgz", "integrity": "sha512-Nl03d6T9ky516DGK2YMxrTqvnpUW63TnJMOMonj+Zae0JiPC5BC9xPMSL6L8fiSpA5vP88qfygavVQvnLp+6Cw==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-plugin-utils": "^7.25.9", "@babel/helper-validator-option": "^7.25.9", "@babel/plugin-transform-react-display-name": "^7.25.9", "@babel/plugin-transform-react-jsx": "^7.25.9", "@babel/plugin-transform-react-jsx-development": "^7.25.9", "@babel/plugin-transform-react-pure-annotations": "^7.25.9" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, "node_modules/@babel/runtime": { "version": "7.26.0", "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.26.0.tgz", "integrity": "sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==", "dev": true, "license": "MIT", "dependencies": { "regenerator-runtime": "^0.14.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/template": { "version": "7.27.0", "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.27.0.tgz", "integrity": "sha512-2ncevenBqXI6qRMukPlXwHKHchC7RyMuu4xv5JBXRfOGVcTy1mXCD12qrp7Jsoxll1EV3+9sE4GugBVRjT2jFA==", "license": "MIT", "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/parser": "^7.27.0", "@babel/types": "^7.27.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/traverse": { "version": "7.26.5", "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.26.5.tgz", "integrity": "sha512-rkOSPOw+AXbgtwUga3U4u8RpoK9FEFWBNAlTpcnkLFjL5CT+oyHNuUUC/xx6XefEJ16r38r8Bc/lfp6rYuHeJQ==", "license": "MIT", "dependencies": { "@babel/code-frame": "^7.26.2", "@babel/generator": "^7.26.5", "@babel/parser": "^7.26.5", "@babel/template": "^7.25.9", "@babel/types": "^7.26.5", "debug": "^4.3.1", "globals": "^11.1.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/types": { "version": "7.27.0", "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.27.0.tgz", "integrity": "sha512-H45s8fVLYjbhFH62dIJ3WtmJ6RSPt/3DRO0ZcT2SUiYiQyz3BLVb9ADEnLl91m74aQPS3AzzeajZHYOalWe3bg==", "license": "MIT", "dependencies": { "@babel/helper-string-parser": "^7.25.9", "@babel/helper-validator-identifier": "^7.25.9" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@colors/colors": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/@colors/colors/-/colors-1.5.0.tgz", "integrity": "sha512-ooWCrlZP11i8GImSjTHYHLkvFDP48nS4+204nGb1RiX/WXYHmJA2III9/e2DWVabCESdW7hBAEzHRqUn9OUVvQ==", "dev": true, "license": "MIT", "optional": true, "engines": { "node": ">=0.1.90" } }, "node_modules/@commitlint/cli": { "version": "17.8.1", "resolved": "https://registry.npmjs.org/@commitlint/cli/-/cli-17.8.1.tgz", "integrity": "sha512-ay+WbzQesE0Rv4EQKfNbSMiJJ12KdKTDzIt0tcK4k11FdsWmtwP0Kp1NWMOUswfIWo6Eb7p7Ln721Nx9FLNBjg==", "dev": true, "license": "MIT", "dependencies": { "@commitlint/format": "^17.8.1", "@commitlint/lint": "^17.8.1", "@commitlint/load": "^17.8.1", "@commitlint/read": "^17.8.1", "@commitlint/types": "^17.8.1", "execa": "^5.0.0", "lodash.isfunction": "^3.0.9", "resolve-from": "5.0.0", "resolve-global": "1.0.0", "yargs": "^17.0.0" }, "bin": { "commitlint": "cli.js" }, "engines": { "node": ">=v14" } }, "node_modules/@commitlint/config-conventional": { "version": "17.8.1", "resolved": "https://registry.npmjs.org/@commitlint/config-conventional/-/config-conventional-17.8.1.tgz", "integrity": "sha512-NxCOHx1kgneig3VLauWJcDWS40DVjg7nKOpBEEK9E5fjJpQqLCilcnKkIIjdBH98kEO1q3NpE5NSrZ2kl/QGJg==", "dev": true, "license": "MIT", "dependencies": { "conventional-changelog-conventionalcommits": "^6.1.0" }, "engines": { "node": ">=v14" } }, "node_modules/@commitlint/config-validator": { "version": "17.8.1", "resolved": "https://registry.npmjs.org/@commitlint/config-validator/-/config-validator-17.8.1.tgz", "integrity": "sha512-UUgUC+sNiiMwkyiuIFR7JG2cfd9t/7MV8VB4TZ+q02ZFkHoduUS4tJGsCBWvBOGD9Btev6IecPMvlWUfJorkEA==", "dev": true, "license": "MIT", "dependencies": { "@commitlint/types": "^17.8.1", "ajv": "^8.11.0" }, "engines": { "node": ">=v14" } }, "node_modules/@commitlint/ensure": { "version": "17.8.1", "resolved": "https://registry.npmjs.org/@commitlint/ensure/-/ensure-17.8.1.tgz", "integrity": "sha512-xjafwKxid8s1K23NFpL8JNo6JnY/ysetKo8kegVM7c8vs+kWLP8VrQq+NbhgVlmCojhEDbzQKp4eRXSjVOGsow==", "dev": true, "license": "MIT", "dependencies": { "@commitlint/types": "^17.8.1", "lodash.camelcase": "^4.3.0", "lodash.kebabcase": "^4.1.1", "lodash.snakecase": "^4.1.1", "lodash.startcase": "^4.4.0", "lodash.upperfirst": "^4.3.1" }, "engines": { "node": ">=v14" } }, "node_modules/@commitlint/execute-rule": { "version": "17.8.1", "resolved": "https://registry.npmjs.org/@commitlint/execute-rule/-/execute-rule-17.8.1.tgz", "integrity": "sha512-JHVupQeSdNI6xzA9SqMF+p/JjrHTcrJdI02PwesQIDCIGUrv04hicJgCcws5nzaoZbROapPs0s6zeVHoxpMwFQ==", "dev": true, "license": "MIT", "engines": { "node": ">=v14" } }, "node_modules/@commitlint/format": { "version": "17.8.1", "resolved": "https://registry.npmjs.org/@commitlint/format/-/format-17.8.1.tgz", "integrity": "sha512-f3oMTyZ84M9ht7fb93wbCKmWxO5/kKSbwuYvS867duVomoOsgrgljkGGIztmT/srZnaiGbaK8+Wf8Ik2tSr5eg==", "dev": true, "license": "MIT", "dependencies": { "@commitlint/types": "^17.8.1", "chalk": "^4.1.0" }, "engines": { "node": ">=v14" } }, "node_modules/@commitlint/is-ignored": { "version": "17.8.1", "resolved": "https://registry.npmjs.org/@commitlint/is-ignored/-/is-ignored-17.8.1.tgz", "integrity": "sha512-UshMi4Ltb4ZlNn4F7WtSEugFDZmctzFpmbqvpyxD3la510J+PLcnyhf9chs7EryaRFJMdAKwsEKfNK0jL/QM4g==", "dev": true, "license": "MIT", "dependencies": { "@commitlint/types": "^17.8.1", "semver": "7.5.4" }, "engines": { "node": ">=v14" } }, "node_modules/@commitlint/is-ignored/node_modules/lru-cache": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, "license": "ISC", "dependencies": { "yallist": "^4.0.0" }, "engines": { "node": ">=10" } }, "node_modules/@commitlint/is-ignored/node_modules/semver": { "version": "7.5.4", "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", "dev": true, "license": "ISC", "dependencies": { "lru-cache": "^6.0.0" }, "bin": { "semver": "bin/semver.js" }, "engines": { "node": ">=10" } }, "node_modules/@commitlint/is-ignored/node_modules/yallist": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true, "license": "ISC" }, "node_modules/@commitlint/lint": { "version": "17.8.1", "resolved": "https://registry.npmjs.org/@commitlint/lint/-/lint-17.8.1.tgz", "integrity": "sha512-aQUlwIR1/VMv2D4GXSk7PfL5hIaFSfy6hSHV94O8Y27T5q+DlDEgd/cZ4KmVI+MWKzFfCTiTuWqjfRSfdRllCA==", "dev": true, "license": "MIT", "dependencies": { "@commitlint/is-ignored": "^17.8.1", "@commitlint/parse": "^17.8.1", "@commitlint/rules": "^17.8.1", "@commitlint/types": "^17.8.1" }, "engines": { "node": ">=v14" } }, "node_modules/@commitlint/load": { "version": "17.8.1", "resolved": "https://registry.npmjs.org/@commitlint/load/-/load-17.8.1.tgz", "integrity": "sha512-iF4CL7KDFstP1kpVUkT8K2Wl17h2yx9VaR1ztTc8vzByWWcbO/WaKwxsnCOqow9tVAlzPfo1ywk9m2oJ9ucMqA==", "dev": true, "license": "MIT", "dependencies": { "@commitlint/config-validator": "^17.8.1", "@commitlint/execute-rule": "^17.8.1", "@commitlint/resolve-extends": "^17.8.1", "@commitlint/types": "^17.8.1", "@types/node": "20.5.1", "chalk": "^4.1.0", "cosmiconfig": "^8.0.0", "cosmiconfig-typescript-loader": "^4.0.0", "lodash.isplainobject": "^4.0.6", "lodash.merge": "^4.6.2", "lodash.uniq": "^4.5.0", "resolve-from": "^5.0.0", "ts-node": "^10.8.1", "typescript": "^4.6.4 || ^5.2.2" }, "engines": { "node": ">=v14" } }, "node_modules/@commitlint/message": { "version": "17.8.1", "resolved": "https://registry.npmjs.org/@commitlint/message/-/message-17.8.1.tgz", "integrity": "sha512-6bYL1GUQsD6bLhTH3QQty8pVFoETfFQlMn2Nzmz3AOLqRVfNNtXBaSY0dhZ0dM6A2MEq4+2d7L/2LP8TjqGRkA==", "dev": true, "license": "MIT", "engines": { "node": ">=v14" } }, "node_modules/@commitlint/parse": { "version": "17.8.1", "resolved": "https://registry.npmjs.org/@commitlint/parse/-/parse-17.8.1.tgz", "integrity": "sha512-/wLUickTo0rNpQgWwLPavTm7WbwkZoBy3X8PpkUmlSmQJyWQTj0m6bDjiykMaDt41qcUbfeFfaCvXfiR4EGnfw==", "dev": true, "license": "MIT", "dependencies": { "@commitlint/types": "^17.8.1", "conventional-changelog-angular": "^6.0.0", "conventional-commits-parser": "^4.0.0" }, "engines": { "node": ">=v14" } }, "node_modules/@commitlint/read": { "version": "17.8.1", "resolved": "https://registry.npmjs.org/@commitlint/read/-/read-17.8.1.tgz", "integrity": "sha512-Fd55Oaz9irzBESPCdMd8vWWgxsW3OWR99wOntBDHgf9h7Y6OOHjWEdS9Xzen1GFndqgyoaFplQS5y7KZe0kO2w==", "dev": true, "license": "MIT", "dependencies": { "@commitlint/top-level": "^17.8.1", "@commitlint/types": "^17.8.1", "fs-extra": "^11.0.0", "git-raw-commits": "^2.0.11", "minimist": "^1.2.6" }, "engines": { "node": ">=v14" } }, "node_modules/@commitlint/resolve-extends": { "version": "17.8.1", "resolved": "https://registry.npmjs.org/@commitlint/resolve-extends/-/resolve-extends-17.8.1.tgz", "integrity": "sha512-W/ryRoQ0TSVXqJrx5SGkaYuAaE/BUontL1j1HsKckvM6e5ZaG0M9126zcwL6peKSuIetJi7E87PRQF8O86EW0Q==", "dev": true, "license": "MIT", "dependencies": { "@commitlint/config-validator": "^17.8.1", "@commitlint/types": "^17.8.1", "import-fresh": "^3.0.0", "lodash.mergewith": "^4.6.2", "resolve-from": "^5.0.0", "resolve-global": "^1.0.0" }, "engines": { "node": ">=v14" } }, "node_modules/@commitlint/rules": { "version": "17.8.1", "resolved": "https://registry.npmjs.org/@commitlint/rules/-/rules-17.8.1.tgz", "integrity": "sha512-2b7OdVbN7MTAt9U0vKOYKCDsOvESVXxQmrvuVUZ0rGFMCrCPJWWP1GJ7f0lAypbDAhaGb8zqtdOr47192LBrIA==", "dev": true, "license": "MIT", "dependencies": { "@commitlint/ensure": "^17.8.1", "@commitlint/message": "^17.8.1", "@commitlint/to-lines": "^17.8.1", "@commitlint/types": "^17.8.1", "execa": "^5.0.0" }, "engines": { "node": ">=v14" } }, "node_modules/@commitlint/to-lines": { "version": "17.8.1", "resolved": "https://registry.npmjs.org/@commitlint/to-lines/-/to-lines-17.8.1.tgz", "integrity": "sha512-LE0jb8CuR/mj6xJyrIk8VLz03OEzXFgLdivBytoooKO5xLt5yalc8Ma5guTWobw998sbR3ogDd+2jed03CFmJA==", "dev": true, "license": "MIT", "engines": { "node": ">=v14" } }, "node_modules/@commitlint/top-level": { "version": "17.8.1", "resolved": "https://registry.npmjs.org/@commitlint/top-level/-/top-level-17.8.1.tgz", "integrity": "sha512-l6+Z6rrNf5p333SHfEte6r+WkOxGlWK4bLuZKbtf/2TXRN+qhrvn1XE63VhD8Oe9oIHQ7F7W1nG2k/TJFhx2yA==", "dev": true, "license": "MIT", "dependencies": { "find-up": "^5.0.0" }, "engines": { "node": ">=v14" } }, "node_modules/@commitlint/types": { "version": "17.8.1", "resolved": "https://registry.npmjs.org/@commitlint/types/-/types-17.8.1.tgz", "integrity": "sha512-PXDQXkAmiMEG162Bqdh9ChML/GJZo6vU+7F03ALKDK8zYc6SuAr47LjG7hGYRqUOz+WK0dU7bQ0xzuqFMdxzeQ==", "dev": true, "license": "MIT", "dependencies": { "chalk": "^4.1.0" }, "engines": { "node": ">=v14" } }, "node_modules/@cspotcode/source-map-support": { "version": "0.8.1", "resolved": "https://registry.npmjs.org/@cspotcode/source-map-support/-/source-map-support-0.8.1.tgz", "integrity": "sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==", "dev": true, "license": "MIT", "dependencies": { "@jridgewell/trace-mapping": "0.3.9" }, "engines": { "node": ">=12" } }, "node_modules/@cspotcode/source-map-support/node_modules/@jridgewell/trace-mapping": { "version": "0.3.9", "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.9.tgz", "integrity": "sha512-3Belt6tdc8bPgAtbcmdtNJlirVoTmEb5e2gC94PnkwEW9jI6CAHUeoG85tjWP5WquqfavoMtMwiG4P926ZKKuQ==", "dev": true, "license": "MIT", "dependencies": { "@jridgewell/resolve-uri": "^3.0.3", "@jridgewell/sourcemap-codec": "^1.4.10" } }, "node_modules/@discoveryjs/json-ext": { "version": "0.5.7", "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==", "dev": true, "license": "MIT", "engines": { "node": ">=10.0.0" } }, "node_modules/@eslint-community/eslint-utils": { "version": "4.4.1", "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.1.tgz", "integrity": "sha512-s3O3waFUrMV8P/XaF/+ZTp1X9XBZW1a4B97ZnjQF2KYWaFD2A8KyFBsrsfSjEmjn3RGWAIuvlneuZm3CUK3jbA==", "dev": true, "license": "MIT", "dependencies": { "eslint-visitor-keys": "^3.4.3" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "url": "https://opencollective.com/eslint" }, "peerDependencies": { "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" } }, "node_modules/@eslint-community/regexpp": { "version": "4.12.1", "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.12.1.tgz", "integrity": "sha512-CCZCDJuduB9OUkFkY2IgppNZMi2lBQgD2qzwXkEia16cge2pijY/aXi96CJMquDMn3nJdlPV1A5KrJEXwfLNzQ==", "dev": true, "license": "MIT", "engines": { "node": "^12.0.0 || ^14.0.0 || >=16.0.0" } }, "node_modules/@eslint/eslintrc": { "version": "2.1.4", "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.4.tgz", "integrity": "sha512-269Z39MS6wVJtsoUl10L60WdkhJVdPG24Q4eZTH3nnF6lpvSShEK3wQjDX9JRWAUPvPh7COouPpU9IrqaZFvtQ==", "dev": true, "license": "MIT", "dependencies": { "ajv": "^6.12.4", "debug": "^4.3.2", "espree": "^9.6.0", "globals": "^13.19.0", "ignore": "^5.2.0", "import-fresh": "^3.2.1", "js-yaml": "^4.1.0", "minimatch": "^3.1.2", "strip-json-comments": "^3.1.1" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "url": "https://opencollective.com/eslint" } }, "node_modules/@eslint/eslintrc/node_modules/ajv": { "version": "6.12.6", "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", "json-schema-traverse": "^0.4.1", "uri-js": "^4.2.2" }, "funding": { "type": "github", "url": "https://github.com/sponsors/epoberezkin" } }, "node_modules/@eslint/eslintrc/node_modules/globals": { "version": "13.24.0", "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", "dev": true, "license": "MIT", "dependencies": { "type-fest": "^0.20.2" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/@eslint/eslintrc/node_modules/json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "dev": true, "license": "MIT" }, "node_modules/@eslint/eslintrc/node_modules/type-fest": { "version": "0.20.2", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", "dev": true, "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/@eslint/js": { "version": "8.57.1", "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.57.1.tgz", "integrity": "sha512-d9zaMRSTIKDLhctzH12MtXvJKSSUhaHcjV+2Z+GK+EEY7XKpP5yR4x+N3TAcHTcu963nIr+TMcCb4DBCYX1z6Q==", "dev": true, "license": "MIT", "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" } }, "node_modules/@floating-ui/core": { "version": "1.6.9", "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.6.9.tgz", "integrity": "sha512-uMXCuQ3BItDUbAMhIXw7UPXRfAlOAvZzdK9BWpE60MCn+Svt3aLn9jsPTi/WNGlRUu2uI0v5S7JiIUsbsvh3fw==", "license": "MIT", "dependencies": { "@floating-ui/utils": "^0.2.9" } }, "node_modules/@floating-ui/dom": { "version": "1.6.13", "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.6.13.tgz", "integrity": "sha512-umqzocjDgNRGTuO7Q8CU32dkHkECqI8ZdMZ5Swb6QAM0t5rnlrN3lGo1hdpscRd3WS8T6DKYK4ephgIH9iRh3w==", "license": "MIT", "dependencies": { "@floating-ui/core": "^1.6.0", "@floating-ui/utils": "^0.2.9" } }, "node_modules/@floating-ui/react": { "version": "0.26.28", "resolved": "https://registry.npmjs.org/@floating-ui/react/-/react-0.26.28.tgz", "integrity": "sha512-yORQuuAtVpiRjpMhdc0wJj06b9JFjrYF4qp96j++v2NBpbi6SEGF7donUJ3TMieerQ6qVkAv1tgr7L4r5roTqw==", "license": "MIT", "dependencies": { "@floating-ui/react-dom": "^2.1.2", "@floating-ui/utils": "^0.2.8", "tabbable": "^6.0.0" }, "peerDependencies": { "react": ">=16.8.0", "react-dom": ">=16.8.0" } }, "node_modules/@floating-ui/react-dom": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-2.1.2.tgz", "integrity": "sha512-06okr5cgPzMNBy+Ycse2A6udMi4bqwW/zgBF/rwjcNqWkyr82Mcg8b0vjX8OJpZFy/FKjJmw6wV7t44kK6kW7A==", "license": "MIT", "dependencies": { "@floating-ui/dom": "^1.0.0" }, "peerDependencies": { "react": ">=16.8.0", "react-dom": ">=16.8.0" } }, "node_modules/@floating-ui/utils": { "version": "0.2.9", "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.9.tgz", "integrity": "sha512-MDWhGtE+eHw5JW7lq4qhc5yRLS11ERl1c7Z6Xd0a58DozHES6EnNNwUWbMiG4J9Cgj053Bhk8zvlhFYKVhULwg==", "license": "MIT" }, "node_modules/@glennsl/rescript-fetch": { "version": "0.2.3", "resolved": "https://registry.npmjs.org/@glennsl/rescript-fetch/-/rescript-fetch-0.2.3.tgz", "integrity": "sha512-0MuaXeJHGii0/SKzR4ASB1Wal+ogdnNsD1K6HSTFUVc+TQzAZY+V8Nb7Z8K4OUqMJzmurIgVXNmirx3DC1Huyg==", "license": "MIT" }, "node_modules/@humanwhocodes/config-array": { "version": "0.13.0", "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.13.0.tgz", "integrity": "sha512-DZLEEqFWQFiyK6h5YIeynKx7JlvCYWL0cImfSRXZ9l4Sg2efkFGTuFf6vzXjK1cq6IYkU+Eg/JizXw+TD2vRNw==", "deprecated": "Use @eslint/config-array instead", "dev": true, "license": "Apache-2.0", "dependencies": { "@humanwhocodes/object-schema": "^2.0.3", "debug": "^4.3.1", "minimatch": "^3.0.5" }, "engines": { "node": ">=10.10.0" } }, "node_modules/@humanwhocodes/module-importer": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", "dev": true, "license": "Apache-2.0", "engines": { "node": ">=12.22" }, "funding": { "type": "github", "url": "https://github.com/sponsors/nzakas" } }, "node_modules/@humanwhocodes/object-schema": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz", "integrity": "sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==", "deprecated": "Use @eslint/object-schema instead", "dev": true, "license": "BSD-3-Clause" }, "node_modules/@isaacs/cliui": { "version": "8.0.2", "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", "dev": true, "license": "ISC", "dependencies": { "string-width": "^5.1.2", "string-width-cjs": "npm:string-width@^4.2.0", "strip-ansi": "^7.0.1", "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", "wrap-ansi": "^8.1.0", "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" }, "engines": { "node": ">=12" } }, "node_modules/@isaacs/cliui/node_modules/ansi-styles": { "version": "6.2.1", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", "dev": true, "license": "MIT", "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, "node_modules/@isaacs/cliui/node_modules/emoji-regex": { "version": "9.2.2", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", "dev": true, "license": "MIT" }, "node_modules/@isaacs/cliui/node_modules/string-width": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", "dev": true, "license": "MIT", "dependencies": { "eastasianwidth": "^0.2.0", "emoji-regex": "^9.2.2", "strip-ansi": "^7.0.1" }, "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/@isaacs/cliui/node_modules/strip-ansi": { "version": "7.1.0", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", "dev": true, "license": "MIT", "dependencies": { "ansi-regex": "^6.0.1" }, "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/chalk/strip-ansi?sponsor=1" } }, "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { "version": "8.1.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", "dev": true, "license": "MIT", "dependencies": { "ansi-styles": "^6.1.0", "string-width": "^5.0.1", "strip-ansi": "^7.0.1" }, "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, "node_modules/@jridgewell/gen-mapping": { "version": "0.3.8", "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.8.tgz", "integrity": "sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==", "license": "MIT", "dependencies": { "@jridgewell/set-array": "^1.2.1", "@jridgewell/sourcemap-codec": "^1.4.10", "@jridgewell/trace-mapping": "^0.3.24" }, "engines": { "node": ">=6.0.0" } }, "node_modules/@jridgewell/resolve-uri": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.2.tgz", "integrity": "sha512-bRISgCIjP20/tbWSPWMEi54QVPRZExkuD9lJL+UIxUKtwVJA8wW1Trb1jMs1RFXo1CBTNZ/5hpC9QvmKWdopKw==", "license": "MIT", "engines": { "node": ">=6.0.0" } }, "node_modules/@jridgewell/set-array": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", "license": "MIT", "engines": { "node": ">=6.0.0" } }, "node_modules/@jridgewell/source-map": { "version": "0.3.6", "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.6.tgz", "integrity": "sha512-1ZJTZebgqllO79ue2bm3rIGud/bOe0pP5BjSRCRxxYkEZS8STV7zN84UBbiYu7jy+eCKSnVIUgoWWE/tt+shMQ==", "license": "MIT", "dependencies": { "@jridgewell/gen-mapping": "^0.3.5", "@jridgewell/trace-mapping": "^0.3.25" } }, "node_modules/@jridgewell/sourcemap-codec": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.5.0.tgz", "integrity": "sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==", "license": "MIT" }, "node_modules/@jridgewell/trace-mapping": { "version": "0.3.25", "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", "license": "MIT", "dependencies": { "@jridgewell/resolve-uri": "^3.1.0", "@jridgewell/sourcemap-codec": "^1.4.14" } }, "node_modules/@jsonjoy.com/base64": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/@jsonjoy.com/base64/-/base64-1.1.2.tgz", "integrity": "sha512-q6XAnWQDIMA3+FTiOYajoYqySkO+JSat0ytXGSuRdq9uXE7o92gzuQwQM14xaCRlBLGq3v5miDGC4vkVTn54xA==", "dev": true, "license": "Apache-2.0", "engines": { "node": ">=10.0" }, "funding": { "type": "github", "url": "https://github.com/sponsors/streamich" }, "peerDependencies": { "tslib": "2" } }, "node_modules/@jsonjoy.com/json-pack": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/@jsonjoy.com/json-pack/-/json-pack-1.1.1.tgz", "integrity": "sha512-osjeBqMJ2lb/j/M8NCPjs1ylqWIcTRTycIhVB5pt6LgzgeRSb0YRZ7j9RfA8wIUrsr/medIuhVyonXRZWLyfdw==", "dev": true, "license": "Apache-2.0", "dependencies": { "@jsonjoy.com/base64": "^1.1.1", "@jsonjoy.com/util": "^1.1.2", "hyperdyperid": "^1.2.0", "thingies": "^1.20.0" }, "engines": { "node": ">=10.0" }, "funding": { "type": "github", "url": "https://github.com/sponsors/streamich" }, "peerDependencies": { "tslib": "2" } }, "node_modules/@jsonjoy.com/util": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/@jsonjoy.com/util/-/util-1.5.0.tgz", "integrity": "sha512-ojoNsrIuPI9g6o8UxhraZQSyF2ByJanAY4cTFbc8Mf2AXEF4aQRGY1dJxyJpuyav8r9FGflEt/Ff3u5Nt6YMPA==", "dev": true, "license": "Apache-2.0", "engines": { "node": ">=10.0" }, "funding": { "type": "github", "url": "https://github.com/sponsors/streamich" }, "peerDependencies": { "tslib": "2" } }, "node_modules/@leichtgewicht/ip-codec": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/@leichtgewicht/ip-codec/-/ip-codec-2.0.5.tgz", "integrity": "sha512-Vo+PSpZG2/fmgmiNzYK9qWRh8h/CHrwD0mo1h1DzL4yzHNSfWYujGTYsWGreD000gcgmZ7K4Ys6Tx9TxtsKdDw==", "dev": true, "license": "MIT" }, "node_modules/@nodelib/fs.scandir": { "version": "2.1.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", "dev": true, "license": "MIT", "dependencies": { "@nodelib/fs.stat": "2.0.5", "run-parallel": "^1.1.9" }, "engines": { "node": ">= 8" } }, "node_modules/@nodelib/fs.stat": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", "dev": true, "license": "MIT", "engines": { "node": ">= 8" } }, "node_modules/@nodelib/fs.walk": { "version": "1.2.8", "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", "dev": true, "license": "MIT", "dependencies": { "@nodelib/fs.scandir": "2.1.5", "fastq": "^1.6.0" }, "engines": { "node": ">= 8" } }, "node_modules/@octokit/auth-token": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/@octokit/auth-token/-/auth-token-5.1.1.tgz", "integrity": "sha512-rh3G3wDO8J9wSjfI436JUKzHIxq8NaiL0tVeB2aXmG6p/9859aUOAjA9pmSPNGGZxfwmaJ9ozOJImuNVJdpvbA==", "dev": true, "license": "MIT", "engines": { "node": ">= 18" } }, "node_modules/@octokit/core": { "version": "6.1.3", "resolved": "https://registry.npmjs.org/@octokit/core/-/core-6.1.3.tgz", "integrity": "sha512-z+j7DixNnfpdToYsOutStDgeRzJSMnbj8T1C/oQjB6Aa+kRfNjs/Fn7W6c8bmlt6mfy3FkgeKBRnDjxQow5dow==", "dev": true, "license": "MIT", "dependencies": { "@octokit/auth-token": "^5.0.0", "@octokit/graphql": "^8.1.2", "@octokit/request": "^9.1.4", "@octokit/request-error": "^6.1.6", "@octokit/types": "^13.6.2", "before-after-hook": "^3.0.2", "universal-user-agent": "^7.0.0" }, "engines": { "node": ">= 18" } }, "node_modules/@octokit/endpoint": { "version": "10.1.2", "resolved": "https://registry.npmjs.org/@octokit/endpoint/-/endpoint-10.1.2.tgz", "integrity": "sha512-XybpFv9Ms4hX5OCHMZqyODYqGTZ3H6K6Vva+M9LR7ib/xr1y1ZnlChYv9H680y77Vd/i/k+thXApeRASBQkzhA==", "dev": true, "license": "MIT", "dependencies": { "@octokit/types": "^13.6.2", "universal-user-agent": "^7.0.2" }, "engines": { "node": ">= 18" } }, "node_modules/@octokit/graphql": { "version": "8.1.2", "resolved": "https://registry.npmjs.org/@octokit/graphql/-/graphql-8.1.2.tgz", "integrity": "sha512-bdlj/CJVjpaz06NBpfHhp4kGJaRZfz7AzC+6EwUImRtrwIw8dIgJ63Xg0OzV9pRn3rIzrt5c2sa++BL0JJ8GLw==", "dev": true, "license": "MIT", "dependencies": { "@octokit/request": "^9.1.4", "@octokit/types": "^13.6.2", "universal-user-agent": "^7.0.0" }, "engines": { "node": ">= 18" } }, "node_modules/@octokit/openapi-types": { "version": "23.0.1", "resolved": "https://registry.npmjs.org/@octokit/openapi-types/-/openapi-types-23.0.1.tgz", "integrity": "sha512-izFjMJ1sir0jn0ldEKhZ7xegCTj/ObmEDlEfpFrx4k/JyZSMRHbO3/rBwgE7f3m2DHt+RrNGIVw4wSmwnm3t/g==", "dev": true, "license": "MIT" }, "node_modules/@octokit/plugin-paginate-rest": { "version": "11.4.0", "resolved": "https://registry.npmjs.org/@octokit/plugin-paginate-rest/-/plugin-paginate-rest-11.4.0.tgz", "integrity": "sha512-ttpGck5AYWkwMkMazNCZMqxKqIq1fJBNxBfsFwwfyYKTf914jKkLF0POMS3YkPBwp5g1c2Y4L79gDz01GhSr1g==", "dev": true, "license": "MIT", "dependencies": { "@octokit/types": "^13.7.0" }, "engines": { "node": ">= 18" }, "peerDependencies": { "@octokit/core": ">=6" } }, "node_modules/@octokit/plugin-retry": { "version": "7.1.3", "resolved": "https://registry.npmjs.org/@octokit/plugin-retry/-/plugin-retry-7.1.3.tgz", "integrity": "sha512-8nKOXvYWnzv89gSyIvgFHmCBAxfQAOPRlkacUHL9r5oWtp5Whxl8Skb2n3ACZd+X6cYijD6uvmrQuPH/UCL5zQ==", "dev": true, "license": "MIT", "dependencies": { "@octokit/request-error": "^6.1.6", "@octokit/types": "^13.6.2", "bottleneck": "^2.15.3" }, "engines": { "node": ">= 18" }, "peerDependencies": { "@octokit/core": ">=6" } }, "node_modules/@octokit/plugin-throttling": { "version": "9.4.0", "resolved": "https://registry.npmjs.org/@octokit/plugin-throttling/-/plugin-throttling-9.4.0.tgz", "integrity": "sha512-IOlXxXhZA4Z3m0EEYtrrACkuHiArHLZ3CvqWwOez/pURNqRuwfoFlTPbN5Muf28pzFuztxPyiUiNwz8KctdZaQ==", "dev": true, "license": "MIT", "dependencies": { "@octokit/types": "^13.7.0", "bottleneck": "^2.15.3" }, "engines": { "node": ">= 18" }, "peerDependencies": { "@octokit/core": "^6.1.3" } }, "node_modules/@octokit/request": { "version": "9.2.0", "resolved": "https://registry.npmjs.org/@octokit/request/-/request-9.2.0.tgz", "integrity": "sha512-kXLfcxhC4ozCnAXy2ff+cSxpcF0A1UqxjvYMqNuPIeOAzJbVWQ+dy5G2fTylofB/gTbObT8O6JORab+5XtA1Kw==", "dev": true, "license": "MIT", "dependencies": { "@octokit/endpoint": "^10.0.0", "@octokit/request-error": "^6.0.1", "@octokit/types": "^13.6.2", "fast-content-type-parse": "^2.0.0", "universal-user-agent": "^7.0.2" }, "engines": { "node": ">= 18" } }, "node_modules/@octokit/request-error": { "version": "6.1.6", "resolved": "https://registry.npmjs.org/@octokit/request-error/-/request-error-6.1.6.tgz", "integrity": "sha512-pqnVKYo/at0NuOjinrgcQYpEbv4snvP3bKMRqHaD9kIsk9u1LCpb2smHZi8/qJfgeNqLo5hNW4Z7FezNdEo0xg==", "dev": true, "license": "MIT", "dependencies": { "@octokit/types": "^13.6.2" }, "engines": { "node": ">= 18" } }, "node_modules/@octokit/types": { "version": "13.7.0", "resolved": "https://registry.npmjs.org/@octokit/types/-/types-13.7.0.tgz", "integrity": "sha512-BXfRP+3P3IN6fd4uF3SniaHKOO4UXWBfkdR3vA8mIvaoO/wLjGN5qivUtW0QRitBHHMcfC41SLhNVYIZZE+wkA==", "dev": true, "license": "MIT", "dependencies": { "@octokit/openapi-types": "^23.0.1" } }, "node_modules/@pkgjs/parseargs": { "version": "0.11.0", "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", "dev": true, "license": "MIT", "optional": true, "engines": { "node": ">=14" } }, "node_modules/@pnpm/config.env-replace": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@pnpm/config.env-replace/-/config.env-replace-1.1.0.tgz", "integrity": "sha512-htyl8TWnKL7K/ESFa1oW2UB5lVDxuF5DpM7tBi6Hu2LNL3mWkIzNLG6N4zoCUP1lCKNxWy/3iu8mS8MvToGd6w==", "dev": true, "license": "MIT", "engines": { "node": ">=12.22.0" } }, "node_modules/@pnpm/network.ca-file": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/@pnpm/network.ca-file/-/network.ca-file-1.0.2.tgz", "integrity": "sha512-YcPQ8a0jwYU9bTdJDpXjMi7Brhkr1mXsXrUJvjqM2mQDgkRiz8jFaQGOdaLxgjtUfQgZhKy/O3cG/YwmgKaxLA==", "dev": true, "license": "MIT", "dependencies": { "graceful-fs": "4.2.10" }, "engines": { "node": ">=12.22.0" } }, "node_modules/@pnpm/network.ca-file/node_modules/graceful-fs": { "version": "4.2.10", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==", "dev": true, "license": "ISC" }, "node_modules/@pnpm/npm-conf": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/@pnpm/npm-conf/-/npm-conf-2.3.1.tgz", "integrity": "sha512-c83qWb22rNRuB0UaVCI0uRPNRr8Z0FWnEIvT47jiHAmOIUHbBOg5XvV7pM5x+rKn9HRpjxquDbXYSXr3fAKFcw==", "dev": true, "license": "MIT", "dependencies": { "@pnpm/config.env-replace": "^1.1.0", "@pnpm/network.ca-file": "^1.0.1", "config-chain": "^1.1.11" }, "engines": { "node": ">=12" } }, "node_modules/@polka/url": { "version": "1.0.0-next.28", "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.28.tgz", "integrity": "sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw==", "dev": true, "license": "MIT" }, "node_modules/@rescript/core": { "version": "0.7.0", "resolved": "https://registry.npmjs.org/@rescript/core/-/core-0.7.0.tgz", "integrity": "sha512-5arTnw1EVPvssqq4v+XHkigROoWXYm/3pD+ZyOSeJgnbzMccRibGWb4L6Ss3QBoEkpuCodX06RnLx8Vqa3kECQ==", "license": "MIT", "peerDependencies": { "rescript": "^10.1.0 || ^11.0.0" } }, "node_modules/@rescript/react": { "version": "0.12.2", "resolved": "https://registry.npmjs.org/@rescript/react/-/react-0.12.2.tgz", "integrity": "sha512-EOF19dLTG4Y9K59JqMjG5yfvIsrMZqfxGC2J/oe9gGgrMiUrzZh3KH9khTcR1Z3Ih0lRViSh0/iYnJz20gGoag==", "license": "MIT", "peerDependencies": { "react": ">=18.0.0", "react-dom": ">=18.0.0" } }, "node_modules/@sec-ant/readable-stream": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/@sec-ant/readable-stream/-/readable-stream-0.4.1.tgz", "integrity": "sha512-831qok9r2t8AlxLko40y2ebgSDhenenCatLVeW/uBtnHPyhHOvG0C7TvfgecV+wHzIm5KUICgzmVpWS+IMEAeg==", "dev": true, "license": "MIT" }, "node_modules/@semantic-release/changelog": { "version": "6.0.3", "resolved": "https://registry.npmjs.org/@semantic-release/changelog/-/changelog-6.0.3.tgz", "integrity": "sha512-dZuR5qByyfe3Y03TpmCvAxCyTnp7r5XwtHRf/8vD9EAn4ZWbavUX8adMtXYzE86EVh0gyLA7lm5yW4IV30XUag==", "dev": true, "license": "MIT", "dependencies": { "@semantic-release/error": "^3.0.0", "aggregate-error": "^3.0.0", "fs-extra": "^11.0.0", "lodash": "^4.17.4" }, "engines": { "node": ">=14.17" }, "peerDependencies": { "semantic-release": ">=18.0.0" } }, "node_modules/@semantic-release/commit-analyzer": { "version": "13.0.1", "resolved": "https://registry.npmjs.org/@semantic-release/commit-analyzer/-/commit-analyzer-13.0.1.tgz", "integrity": "sha512-wdnBPHKkr9HhNhXOhZD5a2LNl91+hs8CC2vsAVYxtZH3y0dV3wKn+uZSN61rdJQZ8EGxzWB3inWocBHV9+u/CQ==", "dev": true, "license": "MIT", "dependencies": { "conventional-changelog-angular": "^8.0.0", "conventional-changelog-writer": "^8.0.0", "conventional-commits-filter": "^5.0.0", "conventional-commits-parser": "^6.0.0", "debug": "^4.0.0", "import-from-esm": "^2.0.0", "lodash-es": "^4.17.21", "micromatch": "^4.0.2" }, "engines": { "node": ">=20.8.1" }, "peerDependencies": { "semantic-release": ">=20.1.0" } }, "node_modules/@semantic-release/commit-analyzer/node_modules/conventional-changelog-angular": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-8.0.0.tgz", "integrity": "sha512-CLf+zr6St0wIxos4bmaKHRXWAcsCXrJU6F4VdNDrGRK3B8LDLKoX3zuMV5GhtbGkVR/LohZ6MT6im43vZLSjmA==", "dev": true, "license": "ISC", "dependencies": { "compare-func": "^2.0.0" }, "engines": { "node": ">=18" } }, "node_modules/@semantic-release/commit-analyzer/node_modules/conventional-commits-parser": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-6.0.0.tgz", "integrity": "sha512-TbsINLp48XeMXR8EvGjTnKGsZqBemisPoyWESlpRyR8lif0lcwzqz+NMtYSj1ooF/WYjSuu7wX0CtdeeMEQAmA==", "dev": true, "license": "MIT", "dependencies": { "meow": "^13.0.0" }, "bin": { "conventional-commits-parser": "dist/cli/index.js" }, "engines": { "node": ">=18" } }, "node_modules/@semantic-release/error": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/@semantic-release/error/-/error-3.0.0.tgz", "integrity": "sha512-5hiM4Un+tpl4cKw3lV4UgzJj+SmfNIDCLLw0TepzQxz9ZGV5ixnqkzIVF+3tp0ZHgcMKE+VNGHJjEeyFG2dcSw==", "dev": true, "license": "MIT", "engines": { "node": ">=14.17" } }, "node_modules/@semantic-release/git": { "version": "10.0.1", "resolved": "https://registry.npmjs.org/@semantic-release/git/-/git-10.0.1.tgz", "integrity": "sha512-eWrx5KguUcU2wUPaO6sfvZI0wPafUKAMNC18aXY4EnNcrZL86dEmpNVnC9uMpGZkmZJ9EfCVJBQx4pV4EMGT1w==", "dev": true, "license": "MIT", "dependencies": { "@semantic-release/error": "^3.0.0", "aggregate-error": "^3.0.0", "debug": "^4.0.0", "dir-glob": "^3.0.0", "execa": "^5.0.0", "lodash": "^4.17.4", "micromatch": "^4.0.0", "p-reduce": "^2.0.0" }, "engines": { "node": ">=14.17" }, "peerDependencies": { "semantic-release": ">=18.0.0" } }, "node_modules/@semantic-release/github": { "version": "11.0.1", "resolved": "https://registry.npmjs.org/@semantic-release/github/-/github-11.0.1.tgz", "integrity": "sha512-Z9cr0LgU/zgucbT9cksH0/pX9zmVda9hkDPcgIE0uvjMQ8w/mElDivGjx1w1pEQ+MuQJ5CBq3VCF16S6G4VH3A==", "dev": true, "license": "MIT", "dependencies": { "@octokit/core": "^6.0.0", "@octokit/plugin-paginate-rest": "^11.0.0", "@octokit/plugin-retry": "^7.0.0", "@octokit/plugin-throttling": "^9.0.0", "@semantic-release/error": "^4.0.0", "aggregate-error": "^5.0.0", "debug": "^4.3.4", "dir-glob": "^3.0.1", "globby": "^14.0.0", "http-proxy-agent": "^7.0.0", "https-proxy-agent": "^7.0.0", "issue-parser": "^7.0.0", "lodash-es": "^4.17.21", "mime": "^4.0.0", "p-filter": "^4.0.0", "url-join": "^5.0.0" }, "engines": { "node": ">=20.8.1" }, "peerDependencies": { "semantic-release": ">=24.1.0" } }, "node_modules/@semantic-release/github/node_modules/@semantic-release/error": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/@semantic-release/error/-/error-4.0.0.tgz", "integrity": "sha512-mgdxrHTLOjOddRVYIYDo0fR3/v61GNN1YGkfbrjuIKg/uMgCd+Qzo3UAXJ+woLQQpos4pl5Esuw5A7AoNlzjUQ==", "dev": true, "license": "MIT", "engines": { "node": ">=18" } }, "node_modules/@semantic-release/github/node_modules/agent-base": { "version": "7.1.3", "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.3.tgz", "integrity": "sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==", "dev": true, "license": "MIT", "engines": { "node": ">= 14" } }, "node_modules/@semantic-release/github/node_modules/aggregate-error": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-5.0.0.tgz", "integrity": "sha512-gOsf2YwSlleG6IjRYG2A7k0HmBMEo6qVNk9Bp/EaLgAJT5ngH6PXbqa4ItvnEwCm/velL5jAnQgsHsWnjhGmvw==", "dev": true, "license": "MIT", "dependencies": { "clean-stack": "^5.2.0", "indent-string": "^5.0.0" }, "engines": { "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/@semantic-release/github/node_modules/clean-stack": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-5.2.0.tgz", "integrity": "sha512-TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ==", "dev": true, "license": "MIT", "dependencies": { "escape-string-regexp": "5.0.0" }, "engines": { "node": ">=14.16" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/@semantic-release/github/node_modules/escape-string-regexp": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", "dev": true, "license": "MIT", "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/@semantic-release/github/node_modules/globby": { "version": "14.0.2", "resolved": "https://registry.npmjs.org/globby/-/globby-14.0.2.tgz", "integrity": "sha512-s3Fq41ZVh7vbbe2PN3nrW7yC7U7MFVc5c98/iTl9c2GawNMKx/J648KQRW6WKkuU8GIbbh2IXfIRQjOZnXcTnw==", "dev": true, "license": "MIT", "dependencies": { "@sindresorhus/merge-streams": "^2.1.0", "fast-glob": "^3.3.2", "ignore": "^5.2.4", "path-type": "^5.0.0", "slash": "^5.1.0", "unicorn-magic": "^0.1.0" }, "engines": { "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/@semantic-release/github/node_modules/https-proxy-agent": { "version": "7.0.6", "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz", "integrity": "sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==", "dev": true, "license": "MIT", "dependencies": { "agent-base": "^7.1.2", "debug": "4" }, "engines": { "node": ">= 14" } }, "node_modules/@semantic-release/github/node_modules/indent-string": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", "dev": true, "license": "MIT", "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/@semantic-release/github/node_modules/path-type": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/path-type/-/path-type-5.0.0.tgz", "integrity": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==", "dev": true, "license": "MIT", "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/@semantic-release/github/node_modules/slash": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", "dev": true, "license": "MIT", "engines": { "node": ">=14.16" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/@semantic-release/npm": { "version": "12.0.1", "resolved": "https://registry.npmjs.org/@semantic-release/npm/-/npm-12.0.1.tgz", "integrity": "sha512-/6nntGSUGK2aTOI0rHPwY3ZjgY9FkXmEHbW9Kr+62NVOsyqpKKeP0lrCH+tphv+EsNdJNmqqwijTEnVWUMQ2Nw==", "dev": true, "license": "MIT", "dependencies": { "@semantic-release/error": "^4.0.0", "aggregate-error": "^5.0.0", "execa": "^9.0.0", "fs-extra": "^11.0.0", "lodash-es": "^4.17.21", "nerf-dart": "^1.0.0", "normalize-url": "^8.0.0", "npm": "^10.5.0", "rc": "^1.2.8", "read-pkg": "^9.0.0", "registry-auth-token": "^5.0.0", "semver": "^7.1.2", "tempy": "^3.0.0" }, "engines": { "node": ">=20.8.1" }, "peerDependencies": { "semantic-release": ">=20.1.0" } }, "node_modules/@semantic-release/npm/node_modules/@semantic-release/error": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/@semantic-release/error/-/error-4.0.0.tgz", "integrity": "sha512-mgdxrHTLOjOddRVYIYDo0fR3/v61GNN1YGkfbrjuIKg/uMgCd+Qzo3UAXJ+woLQQpos4pl5Esuw5A7AoNlzjUQ==", "dev": true, "license": "MIT", "engines": { "node": ">=18" } }, "node_modules/@semantic-release/npm/node_modules/@sindresorhus/merge-streams": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-4.0.0.tgz", "integrity": "sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==", "dev": true, "license": "MIT", "engines": { "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/@semantic-release/npm/node_modules/aggregate-error": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-5.0.0.tgz", "integrity": "sha512-gOsf2YwSlleG6IjRYG2A7k0HmBMEo6qVNk9Bp/EaLgAJT5ngH6PXbqa4ItvnEwCm/velL5jAnQgsHsWnjhGmvw==", "dev": true, "license": "MIT", "dependencies": { "clean-stack": "^5.2.0", "indent-string": "^5.0.0" }, "engines": { "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/@semantic-release/npm/node_modules/clean-stack": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-5.2.0.tgz", "integrity": "sha512-TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ==", "dev": true, "license": "MIT", "dependencies": { "escape-string-regexp": "5.0.0" }, "engines": { "node": ">=14.16" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/@semantic-release/npm/node_modules/escape-string-regexp": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", "dev": true, "license": "MIT", "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/@semantic-release/npm/node_modules/execa": { "version": "9.5.2", "resolved": "https://registry.npmjs.org/execa/-/execa-9.5.2.tgz", "integrity": "sha512-EHlpxMCpHWSAh1dgS6bVeoLAXGnJNdR93aabr4QCGbzOM73o5XmRfM/e5FUqsw3aagP8S8XEWUWFAxnRBnAF0Q==", "dev": true, "license": "MIT", "dependencies": { "@sindresorhus/merge-streams": "^4.0.0", "cross-spawn": "^7.0.3", "figures": "^6.1.0", "get-stream": "^9.0.0", "human-signals": "^8.0.0", "is-plain-obj": "^4.1.0", "is-stream": "^4.0.1", "npm-run-path": "^6.0.0", "pretty-ms": "^9.0.0", "signal-exit": "^4.1.0", "strip-final-newline": "^4.0.0", "yoctocolors": "^2.0.0" }, "engines": { "node": "^18.19.0 || >=20.5.0" }, "funding": { "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, "node_modules/@semantic-release/npm/node_modules/figures": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/figures/-/figures-6.1.0.tgz", "integrity": "sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==", "dev": true, "license": "MIT", "dependencies": { "is-unicode-supported": "^2.0.0" }, "engines": { "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/@semantic-release/npm/node_modules/get-stream": { "version": "9.0.1", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-9.0.1.tgz", "integrity": "sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==", "dev": true, "license": "MIT", "dependencies": { "@sec-ant/readable-stream": "^0.4.1", "is-stream": "^4.0.1" }, "engines": { "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/@semantic-release/npm/node_modules/human-signals": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-8.0.0.tgz", "integrity": "sha512-/1/GPCpDUCCYwlERiYjxoczfP0zfvZMU/OWgQPMya9AbAE24vseigFdhAMObpc8Q4lc/kjutPfUddDYyAmejnA==", "dev": true, "license": "Apache-2.0", "engines": { "node": ">=18.18.0" } }, "node_modules/@semantic-release/npm/node_modules/indent-string": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", "dev": true, "license": "MIT", "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/@semantic-release/npm/node_modules/is-plain-obj": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", "dev": true, "license": "MIT", "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/@semantic-release/npm/node_modules/is-stream": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-4.0.1.tgz", "integrity": "sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==", "dev": true, "license": "MIT", "engines": { "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/@semantic-release/npm/node_modules/is-unicode-supported": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-2.1.0.tgz", "integrity": "sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==", "dev": true, "license": "MIT", "engines": { "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/@semantic-release/npm/node_modules/npm-run-path": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-6.0.0.tgz", "integrity": "sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==", "dev": true, "license": "MIT", "dependencies": { "path-key": "^4.0.0", "unicorn-magic": "^0.3.0" }, "engines": { "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/@semantic-release/npm/node_modules/path-key": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", "dev": true, "license": "MIT", "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/@semantic-release/npm/node_modules/semver": { "version": "7.6.3", "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", "dev": true, "license": "ISC", "bin": { "semver": "bin/semver.js" }, "engines": { "node": ">=10" } }, "node_modules/@semantic-release/npm/node_modules/signal-exit": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", "dev": true, "license": "ISC", "engines": { "node": ">=14" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/@semantic-release/npm/node_modules/strip-final-newline": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-4.0.0.tgz", "integrity": "sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw==", "dev": true, "license": "MIT", "engines": { "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/@semantic-release/npm/node_modules/unicorn-magic": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.3.0.tgz", "integrity": "sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==", "dev": true, "license": "MIT", "engines": { "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/@semantic-release/release-notes-generator": { "version": "14.0.3", "resolved": "https://registry.npmjs.org/@semantic-release/release-notes-generator/-/release-notes-generator-14.0.3.tgz", "integrity": "sha512-XxAZRPWGwO5JwJtS83bRdoIhCiYIx8Vhr+u231pQAsdFIAbm19rSVJLdnBN+Avvk7CKvNQE/nJ4y7uqKH6WTiw==", "dev": true, "license": "MIT", "dependencies": { "conventional-changelog-angular": "^8.0.0", "conventional-changelog-writer": "^8.0.0", "conventional-commits-filter": "^5.0.0", "conventional-commits-parser": "^6.0.0", "debug": "^4.0.0", "get-stream": "^7.0.0", "import-from-esm": "^2.0.0", "into-stream": "^7.0.0", "lodash-es": "^4.17.21", "read-package-up": "^11.0.0" }, "engines": { "node": ">=20.8.1" }, "peerDependencies": { "semantic-release": ">=20.1.0" } }, "node_modules/@semantic-release/release-notes-generator/node_modules/conventional-changelog-angular": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-8.0.0.tgz", "integrity": "sha512-CLf+zr6St0wIxos4bmaKHRXWAcsCXrJU6F4VdNDrGRK3B8LDLKoX3zuMV5GhtbGkVR/LohZ6MT6im43vZLSjmA==", "dev": true, "license": "ISC", "dependencies": { "compare-func": "^2.0.0" }, "engines": { "node": ">=18" } }, "node_modules/@semantic-release/release-notes-generator/node_modules/conventional-commits-parser": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-6.0.0.tgz", "integrity": "sha512-TbsINLp48XeMXR8EvGjTnKGsZqBemisPoyWESlpRyR8lif0lcwzqz+NMtYSj1ooF/WYjSuu7wX0CtdeeMEQAmA==", "dev": true, "license": "MIT", "dependencies": { "meow": "^13.0.0" }, "bin": { "conventional-commits-parser": "dist/cli/index.js" }, "engines": { "node": ">=18" } }, "node_modules/@sentry-internal/browser-utils": { "version": "9.9.0", "resolved": "https://registry.npmjs.org/@sentry-internal/browser-utils/-/browser-utils-9.9.0.tgz", "integrity": "sha512-V/YhKLis98JFkqBGZaEBlDNFpJHJjoCvNb05raAYXdITfDIl37Kxqj0zX+IzyRhqnswkQ+DBTyoEoci09IR2bQ==", "license": "MIT", "dependencies": { "@sentry/core": "9.9.0" }, "engines": { "node": ">=18" } }, "node_modules/@sentry-internal/feedback": { "version": "9.9.0", "resolved": "https://registry.npmjs.org/@sentry-internal/feedback/-/feedback-9.9.0.tgz", "integrity": "sha512-hrxuOLm0Xsnx75hTNt3eLgNNjER3egrHZShdRzlMiakfKpA9f2X10z75vlZmT5ZUygDQnp9UVUnu28cDuVb9Zw==", "license": "MIT", "dependencies": { "@sentry/core": "9.9.0" }, "engines": { "node": ">=18" } }, "node_modules/@sentry-internal/replay": { "version": "9.9.0", "resolved": "https://registry.npmjs.org/@sentry-internal/replay/-/replay-9.9.0.tgz", "integrity": "sha512-EWczKMu3qiZ0SUUWU3zkGod+AWD/VQCLiQw+tw+PEpdHbRZIdYKsEptengZCFKthrwe2QmYpVCTSRxGvujJ/6g==", "license": "MIT", "dependencies": { "@sentry-internal/browser-utils": "9.9.0", "@sentry/core": "9.9.0" }, "engines": { "node": ">=18" } }, "node_modules/@sentry-internal/replay-canvas": { "version": "9.9.0", "resolved": "https://registry.npmjs.org/@sentry-internal/replay-canvas/-/replay-canvas-9.9.0.tgz", "integrity": "sha512-YK0ixGjquahGpNsQskCEVwycdHlwNBLCx9XJr1BmGnlOw6fUCmpyVetaGg/ZyhkzKGNXAGoTa4s7FUFnAG4bKg==", "license": "MIT", "dependencies": { "@sentry-internal/replay": "9.9.0", "@sentry/core": "9.9.0" }, "engines": { "node": ">=18" } }, "node_modules/@sentry/babel-plugin-component-annotate": { "version": "3.2.2", "resolved": "https://registry.npmjs.org/@sentry/babel-plugin-component-annotate/-/babel-plugin-component-annotate-3.2.2.tgz", "integrity": "sha512-D+SKQ266ra/wo87s9+UI/rKQi3qhGPCR8eSCDe0VJudhjHsqyNU+JJ5lnIGCgmZaWFTXgdBP/gdr1Iz1zqGs4Q==", "engines": { "node": ">= 14" } }, "node_modules/@sentry/browser": { "version": "9.9.0", "resolved": "https://registry.npmjs.org/@sentry/browser/-/browser-9.9.0.tgz", "integrity": "sha512-pIMdkOC+iggZefBs6ck5fL1mBhbLzjdw/8K99iqSeDh+lLvmlHVZajAhPlmw50xfH8CyQ1s22dhcL+zXbg3NKw==", "license": "MIT", "dependencies": { "@sentry-internal/browser-utils": "9.9.0", "@sentry-internal/feedback": "9.9.0", "@sentry-internal/replay": "9.9.0", "@sentry-internal/replay-canvas": "9.9.0", "@sentry/core": "9.9.0" }, "engines": { "node": ">=18" } }, "node_modules/@sentry/bundler-plugin-core": { "version": "3.2.2", "resolved": "https://registry.npmjs.org/@sentry/bundler-plugin-core/-/bundler-plugin-core-3.2.2.tgz", "integrity": "sha512-YGrtmqQ2jMixccX2slVG/Lw7pCGJL3DGB3clmY9mO8QBEBIN3/gEANiHJVWwRidpUOS/0b7yVVGAdwZ87oPwTg==", "dependencies": { "@babel/core": "^7.18.5", "@sentry/babel-plugin-component-annotate": "3.2.2", "@sentry/cli": "2.42.2", "dotenv": "^16.3.1", "find-up": "^5.0.0", "glob": "^9.3.2", "magic-string": "0.30.8", "unplugin": "1.0.1" }, "engines": { "node": ">= 14" } }, "node_modules/@sentry/cli": { "version": "2.42.2", "resolved": "https://registry.npmjs.org/@sentry/cli/-/cli-2.42.2.tgz", "integrity": "sha512-spb7S/RUumCGyiSTg8DlrCX4bivCNmU/A1hcfkwuciTFGu8l5CDc2I6jJWWZw8/0enDGxuj5XujgXvU5tr4bxg==", "hasInstallScript": true, "dependencies": { "https-proxy-agent": "^5.0.0", "node-fetch": "^2.6.7", "progress": "^2.0.3", "proxy-from-env": "^1.1.0", "which": "^2.0.2" }, "bin": { "sentry-cli": "bin/sentry-cli" }, "engines": { "node": ">= 10" }, "optionalDependencies": { "@sentry/cli-darwin": "2.42.2", "@sentry/cli-linux-arm": "2.42.2", "@sentry/cli-linux-arm64": "2.42.2", "@sentry/cli-linux-i686": "2.42.2", "@sentry/cli-linux-x64": "2.42.2", "@sentry/cli-win32-i686": "2.42.2", "@sentry/cli-win32-x64": "2.42.2" } }, "node_modules/@sentry/cli-darwin": { "version": "2.42.2", "resolved": "https://registry.npmjs.org/@sentry/cli-darwin/-/cli-darwin-2.42.2.tgz", "integrity": "sha512-GtJSuxER7Vrp1IpxdUyRZzcckzMnb4N5KTW7sbTwUiwqARRo+wxS+gczYrS8tdgtmXs5XYhzhs+t4d52ITHMIg==", "optional": true, "os": [ "darwin" ], "engines": { "node": ">=10" } }, "node_modules/@sentry/cli-linux-arm": { "version": "2.42.2", "resolved": "https://registry.npmjs.org/@sentry/cli-linux-arm/-/cli-linux-arm-2.42.2.tgz", "integrity": "sha512-7udCw+YL9lwq+9eL3WLspvnuG+k5Icg92YE7zsteTzWLwgPVzaxeZD2f8hwhsu+wmL+jNqbpCRmktPteh3i2mg==", "cpu": [ "arm" ], "optional": true, "os": [ "linux", "freebsd" ], "engines": { "node": ">=10" } }, "node_modules/@sentry/cli-linux-arm64": { "version": "2.42.2", "resolved": "https://registry.npmjs.org/@sentry/cli-linux-arm64/-/cli-linux-arm64-2.42.2.tgz", "integrity": "sha512-BOxzI7sgEU5Dhq3o4SblFXdE9zScpz6EXc5Zwr1UDZvzgXZGosUtKVc7d1LmkrHP8Q2o18HcDWtF3WvJRb5Zpw==", "cpu": [ "arm64" ], "optional": true, "os": [ "linux", "freebsd" ], "engines": { "node": ">=10" } }, "node_modules/@sentry/cli-linux-i686": { "version": "2.42.2", "resolved": "https://registry.npmjs.org/@sentry/cli-linux-i686/-/cli-linux-i686-2.42.2.tgz", "integrity": "sha512-Sw/dQp5ZPvKnq3/y7wIJyxTUJYPGoTX/YeMbDs8BzDlu9to2LWV3K3r7hE7W1Lpbaw4tSquUHiQjP5QHCOS7aQ==", "cpu": [ "x86", "ia32" ], "optional": true, "os": [ "linux", "freebsd" ], "engines": { "node": ">=10" } }, "node_modules/@sentry/cli-linux-x64": { "version": "2.42.2", "resolved": "https://registry.npmjs.org/@sentry/cli-linux-x64/-/cli-linux-x64-2.42.2.tgz", "integrity": "sha512-mU4zUspAal6TIwlNLBV5oq6yYqiENnCWSxtSQVzWs0Jyq97wtqGNG9U+QrnwjJZ+ta/hvye9fvL2X25D/RxHQw==", "cpu": [ "x64" ], "optional": true, "os": [ "linux", "freebsd" ], "engines": { "node": ">=10" } }, "node_modules/@sentry/cli-win32-i686": { "version": "2.42.2", "resolved": "https://registry.npmjs.org/@sentry/cli-win32-i686/-/cli-win32-i686-2.42.2.tgz", "integrity": "sha512-iHvFHPGqgJMNqXJoQpqttfsv2GI3cGodeTq4aoVLU/BT3+hXzbV0x1VpvvEhncJkDgDicJpFLM8sEPHb3b8abw==", "cpu": [ "x86", "ia32" ], "optional": true, "os": [ "win32" ], "engines": { "node": ">=10" } }, "node_modules/@sentry/cli-win32-x64": { "version": "2.42.2", "resolved": "https://registry.npmjs.org/@sentry/cli-win32-x64/-/cli-win32-x64-2.42.2.tgz", "integrity": "sha512-vPPGHjYoaGmfrU7xhfFxG7qlTBacroz5NdT+0FmDn6692D8IvpNXl1K+eV3Kag44ipJBBeR8g1HRJyx/F/9ACw==", "cpu": [ "x64" ], "optional": true, "os": [ "win32" ], "engines": { "node": ">=10" } }, "node_modules/@sentry/core": { "version": "9.9.0", "resolved": "https://registry.npmjs.org/@sentry/core/-/core-9.9.0.tgz", "integrity": "sha512-GxKvx8PSgoWhLLS+/WBGIXy7rsFcnJBPDqFXIfcAGy89k2j06d9IP0kiIc63qBGStSUkh5FFJLPTakZ5RXiFXA==", "license": "MIT", "engines": { "node": ">=18" } }, "node_modules/@sentry/react": { "version": "9.9.0", "resolved": "https://registry.npmjs.org/@sentry/react/-/react-9.9.0.tgz", "integrity": "sha512-7BE2Lx5CNtHtlNSS7Z9HxKquohC0xhdFceO3NlMXlx+dZuVCMoQmLISB8SQEcHw+2VO24MvtP3LPEzdeNbkIfg==", "license": "MIT", "dependencies": { "@sentry/browser": "9.9.0", "@sentry/core": "9.9.0", "hoist-non-react-statics": "^3.3.2" }, "engines": { "node": ">=18" }, "peerDependencies": { "react": "^16.14.0 || 17.x || 18.x || 19.x" } }, "node_modules/@sentry/webpack-plugin": { "version": "3.2.2", "resolved": "https://registry.npmjs.org/@sentry/webpack-plugin/-/webpack-plugin-3.2.2.tgz", "integrity": "sha512-6OkVKNOjKk8P9j7oh6svZ+kEP1i9YIHBC2aGWL2XsgeZTIrMBxJAXtOf+qSrfMAxEtibSroGVOMQc/y3WJTQtg==", "license": "MIT", "dependencies": { "@sentry/bundler-plugin-core": "3.2.2", "unplugin": "1.0.1", "uuid": "^9.0.0" }, "engines": { "node": ">= 14" }, "peerDependencies": { "webpack": ">=4.40.0" } }, "node_modules/@sindresorhus/is": { "version": "4.6.0", "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-4.6.0.tgz", "integrity": "sha512-t09vSN3MdfsyCHoFcTRCH/iUtG7OJ0CsjzB8cjAmKc/va/kIgeDI/TxsigdncE/4be734m0cvIYwNaV4i2XqAw==", "dev": true, "license": "MIT", "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sindresorhus/is?sponsor=1" } }, "node_modules/@sindresorhus/merge-streams": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-2.3.0.tgz", "integrity": "sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==", "dev": true, "license": "MIT", "engines": { "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/@tsconfig/node10": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.11.tgz", "integrity": "sha512-DcRjDCujK/kCk/cUe8Xz8ZSpm8mS3mNNpta+jGCA6USEDfktlNvm1+IuZ9eTcDbNk41BHwpHHeW+N1lKCz4zOw==", "dev": true, "license": "MIT" }, "node_modules/@tsconfig/node12": { "version": "1.0.11", "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", "dev": true, "license": "MIT" }, "node_modules/@tsconfig/node14": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", "dev": true, "license": "MIT" }, "node_modules/@tsconfig/node16": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", "dev": true, "license": "MIT" }, "node_modules/@types/body-parser": { "version": "1.19.5", "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.5.tgz", "integrity": "sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==", "dev": true, "license": "MIT", "dependencies": { "@types/connect": "*", "@types/node": "*" } }, "node_modules/@types/bonjour": { "version": "3.5.13", "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.13.tgz", "integrity": "sha512-z9fJ5Im06zvUL548KvYNecEVlA7cVDkGUi6kZusb04mpyEFKCIZJvloCcmpmLaIahDpOQGHaHmG6imtPMmPXGQ==", "dev": true, "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@types/connect": { "version": "3.4.38", "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.38.tgz", "integrity": "sha512-K6uROf1LD88uDQqJCktA4yzL1YYAK6NgfsI0v/mTgyPKWsX1CnJ0XPSDhViejru1GcRkLWb8RlzFYJRqGUbaug==", "dev": true, "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@types/connect-history-api-fallback": { "version": "1.5.4", "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.5.4.tgz", "integrity": "sha512-n6Cr2xS1h4uAulPRdlw6Jl6s1oG8KrVilPN2yUITEs+K48EzMJJ3W1xy8K5eWuFvjp3R74AOIGSmp2UfBJ8HFw==", "dev": true, "license": "MIT", "dependencies": { "@types/express-serve-static-core": "*", "@types/node": "*" } }, "node_modules/@types/eslint": { "version": "9.6.1", "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-9.6.1.tgz", "integrity": "sha512-FXx2pKgId/WyYo2jXw63kk7/+TY7u7AziEJxJAnSFzHlqTAS3Ync6SvgYAN/k4/PQpnnVuzoMuVnByKK2qp0ag==", "license": "MIT", "dependencies": { "@types/estree": "*", "@types/json-schema": "*" } }, "node_modules/@types/eslint-scope": { "version": "3.7.7", "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.7.tgz", "integrity": "sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==", "license": "MIT", "dependencies": { "@types/eslint": "*", "@types/estree": "*" } }, "node_modules/@types/estree": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.6.tgz", "integrity": "sha512-AYnb1nQyY49te+VRAVgmzfcgjYS91mY5P0TKUDCLEM+gNnA+3T6rWITXRLYCpahpqSQbN5cE+gHpnPyXjHWxcw==", "license": "MIT" }, "node_modules/@types/express": { "version": "4.17.21", "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.21.tgz", "integrity": "sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==", "dev": true, "license": "MIT", "dependencies": { "@types/body-parser": "*", "@types/express-serve-static-core": "^4.17.33", "@types/qs": "*", "@types/serve-static": "*" } }, "node_modules/@types/express-serve-static-core": { "version": "5.0.5", "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-5.0.5.tgz", "integrity": "sha512-GLZPrd9ckqEBFMcVM/qRFAP0Hg3qiVEojgEFsx/N/zKXsBzbGF6z5FBDpZ0+Xhp1xr+qRZYjfGr1cWHB9oFHSA==", "dev": true, "license": "MIT", "dependencies": { "@types/node": "*", "@types/qs": "*", "@types/range-parser": "*", "@types/send": "*" } }, "node_modules/@types/express/node_modules/@types/express-serve-static-core": { "version": "4.19.6", "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.19.6.tgz", "integrity": "sha512-N4LZ2xG7DatVqhCZzOGb1Yi5lMbXSZcmdLDe9EzSndPV2HpWYWzRbaerl2n27irrm94EPpprqa8KpskPT085+A==", "dev": true, "license": "MIT", "dependencies": { "@types/node": "*", "@types/qs": "*", "@types/range-parser": "*", "@types/send": "*" } }, "node_modules/@types/html-minifier-terser": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==", "dev": true, "license": "MIT" }, "node_modules/@types/http-errors": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/@types/http-errors/-/http-errors-2.0.4.tgz", "integrity": "sha512-D0CFMMtydbJAegzOyHjtiKPLlvnm3iTZyZRSZoLq2mRhDdmLfIWOCYPfQJ4cu2erKghU++QvjcUjp/5h7hESpA==", "dev": true, "license": "MIT" }, "node_modules/@types/http-proxy": { "version": "1.17.15", "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.15.tgz", "integrity": "sha512-25g5atgiVNTIv0LBDTg1H74Hvayx0ajtJPLLcYE3whFv75J0pWNtOBzaXJQgDTmrX1bx5U9YC2w/n65BN1HwRQ==", "dev": true, "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@types/json-schema": { "version": "7.0.15", "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", "license": "MIT" }, "node_modules/@types/mime": { "version": "1.3.5", "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.5.tgz", "integrity": "sha512-/pyBZWSLD2n0dcHE3hq8s8ZvcETHtEuF+3E7XVt0Ig2nvsVQXdghHVcEkIWjy9A0wKfTn97a/PSDYohKIlnP/w==", "dev": true, "license": "MIT" }, "node_modules/@types/minimist": { "version": "1.2.5", "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.5.tgz", "integrity": "sha512-hov8bUuiLiyFPGyFPE1lwWhmzYbirOXQNNo40+y3zow8aFVTeyn3VWL0VFFfdNddA8S4Vf0Tc062rzyNr7Paag==", "dev": true, "license": "MIT" }, "node_modules/@types/node": { "version": "20.5.1", "resolved": "https://registry.npmjs.org/@types/node/-/node-20.5.1.tgz", "integrity": "sha512-4tT2UrL5LBqDwoed9wZ6N3umC4Yhz3W3FloMmiiG4JwmUJWpie0c7lcnUNd4gtMKuDEO4wRVS8B6Xa0uMRsMKg==", "license": "MIT" }, "node_modules/@types/node-forge": { "version": "1.3.11", "resolved": "https://registry.npmjs.org/@types/node-forge/-/node-forge-1.3.11.tgz", "integrity": "sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==", "dev": true, "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@types/normalize-package-data": { "version": "2.4.4", "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.4.tgz", "integrity": "sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==", "dev": true, "license": "MIT" }, "node_modules/@types/qs": { "version": "6.9.18", "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.18.tgz", "integrity": "sha512-kK7dgTYDyGqS+e2Q4aK9X3D7q234CIZ1Bv0q/7Z5IwRDoADNU81xXJK/YVyLbLTZCoIwUoDoffFeF+p/eIklAA==", "dev": true, "license": "MIT" }, "node_modules/@types/range-parser": { "version": "1.2.7", "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.7.tgz", "integrity": "sha512-hKormJbkJqzQGhziax5PItDUTMAM9uE2XXQmM37dyd4hVM+5aVl7oVxMVUiVQn2oCQFN/LKCZdvSM0pFRqbSmQ==", "dev": true, "license": "MIT" }, "node_modules/@types/retry": { "version": "0.12.2", "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.2.tgz", "integrity": "sha512-XISRgDJ2Tc5q4TRqvgJtzsRkFYNJzZrhTdtMoGVBttwzzQJkPnS3WWTFc7kuDRoPtPakl+T+OfdEUjYJj7Jbow==", "dev": true, "license": "MIT" }, "node_modules/@types/semver": { "version": "7.5.8", "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.8.tgz", "integrity": "sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==", "dev": true, "license": "MIT" }, "node_modules/@types/send": { "version": "0.17.4", "resolved": "https://registry.npmjs.org/@types/send/-/send-0.17.4.tgz", "integrity": "sha512-x2EM6TJOybec7c52BX0ZspPodMsQUd5L6PRwOunVyVUhXiBSKf3AezDL8Dgvgt5o0UfKNfuA0eMLr2wLT4AiBA==", "dev": true, "license": "MIT", "dependencies": { "@types/mime": "^1", "@types/node": "*" } }, "node_modules/@types/serve-index": { "version": "1.9.4", "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.4.tgz", "integrity": "sha512-qLpGZ/c2fhSs5gnYsQxtDEq3Oy8SXPClIXkW5ghvAvsNuVSA8k+gCONcUCS/UjLEYvYps+e8uBtfgXgvhwfNug==", "dev": true, "license": "MIT", "dependencies": { "@types/express": "*" } }, "node_modules/@types/serve-static": { "version": "1.15.7", "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.15.7.tgz", "integrity": "sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==", "dev": true, "license": "MIT", "dependencies": { "@types/http-errors": "*", "@types/node": "*", "@types/send": "*" } }, "node_modules/@types/sockjs": { "version": "0.3.36", "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.36.tgz", "integrity": "sha512-MK9V6NzAS1+Ud7JV9lJLFqW85VbC9dq3LmwZCuBe4wBDgKC0Kj/jd8Xl+nSviU+Qc3+m7umHHyHg//2KSa0a0Q==", "dev": true, "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@types/ws": { "version": "8.5.13", "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.13.tgz", "integrity": "sha512-osM/gWBTPKgHV8XkTunnegTRIsvF6owmf5w+JtAfOw472dptdm0dlGv4xCt6GwQRcC2XVOvvRE/0bAoQcL2QkA==", "dev": true, "license": "MIT", "dependencies": { "@types/node": "*" } }, "node_modules/@ungap/structured-clone": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.1.tgz", "integrity": "sha512-fEzPV3hSkSMltkw152tJKNARhOupqbH96MZWyRjNaYZOMIzbrTeQDG+MTc6Mr2pgzFQzFxAfmhGDNP5QK++2ZA==", "dev": true, "license": "ISC" }, "node_modules/@webassemblyjs/ast": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.14.1.tgz", "integrity": "sha512-nuBEDgQfm1ccRp/8bCQrx1frohyufl4JlbMMZ4P1wpeOfDhF6FQkxZJ1b/e+PLwr6X1Nhw6OLme5usuBWYBvuQ==", "license": "MIT", "dependencies": { "@webassemblyjs/helper-numbers": "1.13.2", "@webassemblyjs/helper-wasm-bytecode": "1.13.2" } }, "node_modules/@webassemblyjs/floating-point-hex-parser": { "version": "1.13.2", "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.13.2.tgz", "integrity": "sha512-6oXyTOzbKxGH4steLbLNOu71Oj+C8Lg34n6CqRvqfS2O71BxY6ByfMDRhBytzknj9yGUPVJ1qIKhRlAwO1AovA==", "license": "MIT" }, "node_modules/@webassemblyjs/helper-api-error": { "version": "1.13.2", "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.13.2.tgz", "integrity": "sha512-U56GMYxy4ZQCbDZd6JuvvNV/WFildOjsaWD3Tzzvmw/mas3cXzRJPMjP83JqEsgSbyrmaGjBfDtV7KDXV9UzFQ==", "license": "MIT" }, "node_modules/@webassemblyjs/helper-buffer": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.14.1.tgz", "integrity": "sha512-jyH7wtcHiKssDtFPRB+iQdxlDf96m0E39yb0k5uJVhFGleZFoNw1c4aeIcVUPPbXUVJ94wwnMOAqUHyzoEPVMA==", "license": "MIT" }, "node_modules/@webassemblyjs/helper-numbers": { "version": "1.13.2", "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.13.2.tgz", "integrity": "sha512-FE8aCmS5Q6eQYcV3gI35O4J789wlQA+7JrqTTpJqn5emA4U2hvwJmvFRC0HODS+3Ye6WioDklgd6scJ3+PLnEA==", "license": "MIT", "dependencies": { "@webassemblyjs/floating-point-hex-parser": "1.13.2", "@webassemblyjs/helper-api-error": "1.13.2", "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/helper-wasm-bytecode": { "version": "1.13.2", "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.13.2.tgz", "integrity": "sha512-3QbLKy93F0EAIXLh0ogEVR6rOubA9AoZ+WRYhNbFyuB70j3dRdwH9g+qXhLAO0kiYGlg3TxDV+I4rQTr/YNXkA==", "license": "MIT" }, "node_modules/@webassemblyjs/helper-wasm-section": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.14.1.tgz", "integrity": "sha512-ds5mXEqTJ6oxRoqjhWDU83OgzAYjwsCV8Lo/N+oRsNDmx/ZDpqalmrtgOMkHwxsG0iI//3BwWAErYRHtgn0dZw==", "license": "MIT", "dependencies": { "@webassemblyjs/ast": "1.14.1", "@webassemblyjs/helper-buffer": "1.14.1", "@webassemblyjs/helper-wasm-bytecode": "1.13.2", "@webassemblyjs/wasm-gen": "1.14.1" } }, "node_modules/@webassemblyjs/ieee754": { "version": "1.13.2", "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.13.2.tgz", "integrity": "sha512-4LtOzh58S/5lX4ITKxnAK2USuNEvpdVV9AlgGQb8rJDHaLeHciwG4zlGr0j/SNWlr7x3vO1lDEsuePvtcDNCkw==", "license": "MIT", "dependencies": { "@xtuc/ieee754": "^1.2.0" } }, "node_modules/@webassemblyjs/leb128": { "version": "1.13.2", "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.13.2.tgz", "integrity": "sha512-Lde1oNoIdzVzdkNEAWZ1dZ5orIbff80YPdHx20mrHwHrVNNTjNr8E3xz9BdpcGqRQbAEa+fkrCb+fRFTl/6sQw==", "license": "Apache-2.0", "dependencies": { "@xtuc/long": "4.2.2" } }, "node_modules/@webassemblyjs/utf8": { "version": "1.13.2", "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.13.2.tgz", "integrity": "sha512-3NQWGjKTASY1xV5m7Hr0iPeXD9+RDobLll3T9d2AO+g3my8xy5peVyjSag4I50mR1bBSN/Ct12lo+R9tJk0NZQ==", "license": "MIT" }, "node_modules/@webassemblyjs/wasm-edit": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.14.1.tgz", "integrity": "sha512-RNJUIQH/J8iA/1NzlE4N7KtyZNHi3w7at7hDjvRNm5rcUXa00z1vRz3glZoULfJ5mpvYhLybmVcwcjGrC1pRrQ==", "license": "MIT", "dependencies": { "@webassemblyjs/ast": "1.14.1", "@webassemblyjs/helper-buffer": "1.14.1", "@webassemblyjs/helper-wasm-bytecode": "1.13.2", "@webassemblyjs/helper-wasm-section": "1.14.1", "@webassemblyjs/wasm-gen": "1.14.1", "@webassemblyjs/wasm-opt": "1.14.1", "@webassemblyjs/wasm-parser": "1.14.1", "@webassemblyjs/wast-printer": "1.14.1" } }, "node_modules/@webassemblyjs/wasm-gen": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.14.1.tgz", "integrity": "sha512-AmomSIjP8ZbfGQhumkNvgC33AY7qtMCXnN6bL2u2Js4gVCg8fp735aEiMSBbDR7UQIj90n4wKAFUSEd0QN2Ukg==", "license": "MIT", "dependencies": { "@webassemblyjs/ast": "1.14.1", "@webassemblyjs/helper-wasm-bytecode": "1.13.2", "@webassemblyjs/ieee754": "1.13.2", "@webassemblyjs/leb128": "1.13.2", "@webassemblyjs/utf8": "1.13.2" } }, "node_modules/@webassemblyjs/wasm-opt": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.14.1.tgz", "integrity": "sha512-PTcKLUNvBqnY2U6E5bdOQcSM+oVP/PmrDY9NzowJjislEjwP/C4an2303MCVS2Mg9d3AJpIGdUFIQQWbPds0Sw==", "license": "MIT", "dependencies": { "@webassemblyjs/ast": "1.14.1", "@webassemblyjs/helper-buffer": "1.14.1", "@webassemblyjs/wasm-gen": "1.14.1", "@webassemblyjs/wasm-parser": "1.14.1" } }, "node_modules/@webassemblyjs/wasm-parser": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.14.1.tgz", "integrity": "sha512-JLBl+KZ0R5qB7mCnud/yyX08jWFw5MsoalJ1pQ4EdFlgj9VdXKGuENGsiCIjegI1W7p91rUlcB/LB5yRJKNTcQ==", "license": "MIT", "dependencies": { "@webassemblyjs/ast": "1.14.1", "@webassemblyjs/helper-api-error": "1.13.2", "@webassemblyjs/helper-wasm-bytecode": "1.13.2", "@webassemblyjs/ieee754": "1.13.2", "@webassemblyjs/leb128": "1.13.2", "@webassemblyjs/utf8": "1.13.2" } }, "node_modules/@webassemblyjs/wast-printer": { "version": "1.14.1", "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.14.1.tgz", "integrity": "sha512-kPSSXE6De1XOR820C90RIo2ogvZG+c3KiHzqUoO/F34Y2shGzesfqv7o57xrxovZJH/MetF5UjroJ/R/3isoiw==", "license": "MIT", "dependencies": { "@webassemblyjs/ast": "1.14.1", "@xtuc/long": "4.2.2" } }, "node_modules/@webpack-cli/configtest": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-2.1.1.tgz", "integrity": "sha512-wy0mglZpDSiSS0XHrVR+BAdId2+yxPSoJW8fsna3ZpYSlufjvxnP4YbKTCBZnNIcGN4r6ZPXV55X4mYExOfLmw==", "dev": true, "license": "MIT", "engines": { "node": ">=14.15.0" }, "peerDependencies": { "webpack": "5.x.x", "webpack-cli": "5.x.x" } }, "node_modules/@webpack-cli/info": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-2.0.2.tgz", "integrity": "sha512-zLHQdI/Qs1UyT5UBdWNqsARasIA+AaF8t+4u2aS2nEpBQh2mWIVb8qAklq0eUENnC5mOItrIB4LiS9xMtph18A==", "dev": true, "license": "MIT", "engines": { "node": ">=14.15.0" }, "peerDependencies": { "webpack": "5.x.x", "webpack-cli": "5.x.x" } }, "node_modules/@webpack-cli/serve": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-2.0.5.tgz", "integrity": "sha512-lqaoKnRYBdo1UgDX8uF24AfGMifWK19TxPmM5FHc2vAGxrJ/qtyUyFBWoY1tISZdelsQ5fBcOusifo5o5wSJxQ==", "dev": true, "license": "MIT", "engines": { "node": ">=14.15.0" }, "peerDependencies": { "webpack": "5.x.x", "webpack-cli": "5.x.x" }, "peerDependenciesMeta": { "webpack-dev-server": { "optional": true } } }, "node_modules/@xtuc/ieee754": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", "license": "BSD-3-Clause" }, "node_modules/@xtuc/long": { "version": "4.2.2", "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", "license": "Apache-2.0" }, "node_modules/accepts": { "version": "1.3.8", "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", "dev": true, "license": "MIT", "dependencies": { "mime-types": "~2.1.34", "negotiator": "0.6.3" }, "engines": { "node": ">= 0.6" } }, "node_modules/accepts/node_modules/negotiator": { "version": "0.6.3", "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", "dev": true, "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/acorn": { "version": "8.14.0", "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.14.0.tgz", "integrity": "sha512-cl669nCJTZBsL97OF4kUQm5g5hC2uihk0NxY3WENAC0TYdILVkAyHymAntgxGkl7K+t0cXIrH5siy5S4XkFycA==", "license": "MIT", "bin": { "acorn": "bin/acorn" }, "engines": { "node": ">=0.4.0" } }, "node_modules/acorn-jsx": { "version": "5.3.2", "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", "dev": true, "license": "MIT", "peerDependencies": { "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, "node_modules/acorn-walk": { "version": "8.3.4", "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.4.tgz", "integrity": "sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==", "dev": true, "license": "MIT", "dependencies": { "acorn": "^8.11.0" }, "engines": { "node": ">=0.4.0" } }, "node_modules/agent-base": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", "dependencies": { "debug": "4" }, "engines": { "node": ">= 6.0.0" } }, "node_modules/aggregate-error": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", "dev": true, "license": "MIT", "dependencies": { "clean-stack": "^2.0.0", "indent-string": "^4.0.0" }, "engines": { "node": ">=8" } }, "node_modules/ajv": { "version": "8.17.1", "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.17.1.tgz", "integrity": "sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==", "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.3", "fast-uri": "^3.0.1", "json-schema-traverse": "^1.0.0", "require-from-string": "^2.0.2" }, "funding": { "type": "github", "url": "https://github.com/sponsors/epoberezkin" } }, "node_modules/ajv-formats": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", "license": "MIT", "dependencies": { "ajv": "^8.0.0" }, "peerDependencies": { "ajv": "^8.0.0" }, "peerDependenciesMeta": { "ajv": { "optional": true } } }, "node_modules/ajv-keywords": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.3" }, "peerDependencies": { "ajv": "^8.8.2" } }, "node_modules/ansi-escapes": { "version": "4.3.2", "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", "dev": true, "license": "MIT", "dependencies": { "type-fest": "^0.21.3" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/ansi-html-community": { "version": "0.0.8", "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", "dev": true, "engines": [ "node >= 0.8.0" ], "license": "Apache-2.0", "bin": { "ansi-html": "bin/ansi-html" } }, "node_modules/ansi-regex": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.1.0.tgz", "integrity": "sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==", "dev": true, "license": "MIT", "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/chalk/ansi-regex?sponsor=1" } }, "node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, "node_modules/any-promise": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/any-promise/-/any-promise-1.3.0.tgz", "integrity": "sha512-7UvmKalWRt1wgjL1RrGxoSJW/0QZFIegpeGvZG9kjp8vrRu55XTHbwnqq2GpXm9uLbcuhxm3IqX9OB4MZR1b2A==", "dev": true, "license": "MIT" }, "node_modules/anymatch": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", "license": "ISC", "dependencies": { "normalize-path": "^3.0.0", "picomatch": "^2.0.4" }, "engines": { "node": ">= 8" } }, "node_modules/arg": { "version": "5.0.2", "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==", "dev": true, "license": "MIT" }, "node_modules/argparse": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "dev": true, "license": "Python-2.0" }, "node_modules/argv-formatter": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/argv-formatter/-/argv-formatter-1.0.0.tgz", "integrity": "sha512-F2+Hkm9xFaRg+GkaNnbwXNDV5O6pnCFEmqyhvfC/Ic5LbgOWjJh3L+mN/s91rxVL3znE7DYVpW0GJFT+4YBgWw==", "dev": true, "license": "MIT" }, "node_modules/array-flatten": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", "dev": true, "license": "MIT" }, "node_modules/array-ify": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/array-ify/-/array-ify-1.0.0.tgz", "integrity": "sha512-c5AMf34bKdvPhQ7tBGhqkgKNUzMr4WUs+WDtC2ZUGOUncbxKMTvqxYctiseW3+L4bA8ec+GcZ6/A/FW4m8ukng==", "dev": true, "license": "MIT" }, "node_modules/arrify": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/at-least-node": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/at-least-node/-/at-least-node-1.0.0.tgz", "integrity": "sha512-+q/t7Ekv1EDY2l6Gda6LLiX14rU9TV20Wa3ofeQmwPFZbOMo9DXrLbOjFaaclkXKWidIaopwAObQDqwWtGUjqg==", "dev": true, "license": "ISC", "engines": { "node": ">= 4.0.0" } }, "node_modules/autoprefixer": { "version": "10.4.20", "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.20.tgz", "integrity": "sha512-XY25y5xSv/wEoqzDyXXME4AFfkZI0P23z6Fs3YgymDnKJkCGOnkL0iTxCa85UTqaSgfcqyf3UA6+c7wUvx/16g==", "dev": true, "funding": [ { "type": "opencollective", "url": "https://opencollective.com/postcss/" }, { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/autoprefixer" }, { "type": "github", "url": "https://github.com/sponsors/ai" } ], "license": "MIT", "dependencies": { "browserslist": "^4.23.3", "caniuse-lite": "^1.0.30001646", "fraction.js": "^4.3.7", "normalize-range": "^0.1.2", "picocolors": "^1.0.1", "postcss-value-parser": "^4.2.0" }, "bin": { "autoprefixer": "bin/autoprefixer" }, "engines": { "node": "^10 || ^12 || >=14" }, "peerDependencies": { "postcss": "^8.1.0" } }, "node_modules/babel-loader": { "version": "9.2.1", "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-9.2.1.tgz", "integrity": "sha512-fqe8naHt46e0yIdkjUZYqddSXfej3AHajX+CSO5X7oy0EmPc6o5Xh+RClNoHjnieWz9AW4kZxW9yyFMhVB1QLA==", "dev": true, "license": "MIT", "dependencies": { "find-cache-dir": "^4.0.0", "schema-utils": "^4.0.0" }, "engines": { "node": ">= 14.15.0" }, "peerDependencies": { "@babel/core": "^7.12.0", "webpack": ">=5" } }, "node_modules/babel-plugin-add-react-displayname": { "version": "0.0.5", "resolved": "https://registry.npmjs.org/babel-plugin-add-react-displayname/-/babel-plugin-add-react-displayname-0.0.5.tgz", "integrity": "sha512-LY3+Y0XVDYcShHHorshrDbt4KFWL4bSeniCtl4SYZbask+Syngk1uMPCeN9+nSiZo6zX5s0RTq/J9Pnaaf/KHw==", "dev": true, "license": "MIT" }, "node_modules/babel-plugin-polyfill-corejs2": { "version": "0.4.12", "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.12.tgz", "integrity": "sha512-CPWT6BwvhrTO2d8QVorhTCQw9Y43zOu7G9HigcfxvepOU6b8o3tcWad6oVgZIsZCTt42FFv97aA7ZJsbM4+8og==", "dev": true, "license": "MIT", "dependencies": { "@babel/compat-data": "^7.22.6", "@babel/helper-define-polyfill-provider": "^0.6.3", "semver": "^6.3.1" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "node_modules/babel-plugin-polyfill-corejs3": { "version": "0.10.6", "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.6.tgz", "integrity": "sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-define-polyfill-provider": "^0.6.2", "core-js-compat": "^3.38.0" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "node_modules/babel-plugin-polyfill-regenerator": { "version": "0.6.3", "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.3.tgz", "integrity": "sha512-LiWSbl4CRSIa5x/JAU6jZiG9eit9w6mz+yVMFwDE83LAWvt0AfGBoZ7HS/mkhrKuh2ZlzfVZYKoLjXdqw6Yt7Q==", "dev": true, "license": "MIT", "dependencies": { "@babel/helper-define-polyfill-provider": "^0.6.3" }, "peerDependencies": { "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "node_modules/balanced-match": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", "license": "MIT" }, "node_modules/base64-js": { "version": "1.5.1", "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", "dev": true, "funding": [ { "type": "github", "url": "https://github.com/sponsors/feross" }, { "type": "patreon", "url": "https://www.patreon.com/feross" }, { "type": "consulting", "url": "https://feross.org/support" } ], "license": "MIT" }, "node_modules/batch": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", "dev": true, "license": "MIT" }, "node_modules/before-after-hook": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-3.0.2.tgz", "integrity": "sha512-Nik3Sc0ncrMK4UUdXQmAnRtzmNQTAAXmXIopizwZ1W1t8QmfJj+zL4OA2I7XPTPW5z5TDqv4hRo/JzouDJnX3A==", "dev": true, "license": "Apache-2.0" }, "node_modules/big.js": { "version": "5.2.2", "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", "dev": true, "license": "MIT", "engines": { "node": "*" } }, "node_modules/binary-extensions": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.3.0.tgz", "integrity": "sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==", "license": "MIT", "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/bl": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", "dev": true, "license": "MIT", "dependencies": { "buffer": "^5.5.0", "inherits": "^2.0.4", "readable-stream": "^3.4.0" } }, "node_modules/bl/node_modules/readable-stream": { "version": "3.6.2", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "dev": true, "license": "MIT", "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", "util-deprecate": "^1.0.1" }, "engines": { "node": ">= 6" } }, "node_modules/body-parser": { "version": "1.20.3", "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.3.tgz", "integrity": "sha512-7rAxByjUMqQ3/bHJy7D6OGXvx/MMc4IqBn/X0fcM1QUcAItpZrBEYhWGem+tzXH90c+G01ypMcYJBO9Y30203g==", "dev": true, "license": "MIT", "dependencies": { "bytes": "3.1.2", "content-type": "~1.0.5", "debug": "2.6.9", "depd": "2.0.0", "destroy": "1.2.0", "http-errors": "2.0.0", "iconv-lite": "0.4.24", "on-finished": "2.4.1", "qs": "6.13.0", "raw-body": "2.5.2", "type-is": "~1.6.18", "unpipe": "1.0.0" }, "engines": { "node": ">= 0.8", "npm": "1.2.8000 || >= 1.4.16" } }, "node_modules/body-parser/node_modules/debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, "license": "MIT", "dependencies": { "ms": "2.0.0" } }, "node_modules/body-parser/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true, "license": "MIT" }, "node_modules/bonjour-service": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.3.0.tgz", "integrity": "sha512-3YuAUiSkWykd+2Azjgyxei8OWf8thdn8AITIog2M4UICzoqfjlqr64WIjEXZllf/W6vK1goqleSR6brGomxQqA==", "dev": true, "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.3", "multicast-dns": "^7.2.5" } }, "node_modules/boolbase": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", "dev": true, "license": "ISC" }, "node_modules/bottleneck": { "version": "2.19.5", "resolved": "https://registry.npmjs.org/bottleneck/-/bottleneck-2.19.5.tgz", "integrity": "sha512-VHiNCbI1lKdl44tGrhNfU3lup0Tj/ZBMJB5/2ZbNXRCPuRCO7ed2mgcK4r17y+KB2EfuYuRaVlwNbAeaWGSpbw==", "dev": true, "license": "MIT" }, "node_modules/brace-expansion": { "version": "1.1.11", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "dev": true, "license": "MIT", "dependencies": { "balanced-match": "^1.0.0", "concat-map": "0.0.1" } }, "node_modules/braces": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.3.tgz", "integrity": "sha512-yQbXgO/OSZVD2IsiLlro+7Hf6Q18EJrKSEsdoMzKePKXct3gvD8oLcOQdIzGupr5Fj+EDe8gO/lxc1BzfMpxvA==", "license": "MIT", "dependencies": { "fill-range": "^7.1.1" }, "engines": { "node": ">=8" } }, "node_modules/browserslist": { "version": "4.24.4", "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.24.4.tgz", "integrity": "sha512-KDi1Ny1gSePi1vm0q4oxSF8b4DR44GF4BbmS2YdhPLOEqd8pDviZOGH/GsmRwoWJ2+5Lr085X7naowMwKHDG1A==", "funding": [ { "type": "opencollective", "url": "https://opencollective.com/browserslist" }, { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/browserslist" }, { "type": "github", "url": "https://github.com/sponsors/ai" } ], "license": "MIT", "dependencies": { "caniuse-lite": "^1.0.30001688", "electron-to-chromium": "^1.5.73", "node-releases": "^2.0.19", "update-browserslist-db": "^1.1.1" }, "bin": { "browserslist": "cli.js" }, "engines": { "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" } }, "node_modules/buffer": { "version": "5.7.1", "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", "dev": true, "funding": [ { "type": "github", "url": "https://github.com/sponsors/feross" }, { "type": "patreon", "url": "https://www.patreon.com/feross" }, { "type": "consulting", "url": "https://feross.org/support" } ], "license": "MIT", "dependencies": { "base64-js": "^1.3.1", "ieee754": "^1.1.13" } }, "node_modules/buffer-from": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", "license": "MIT" }, "node_modules/bundle-name": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-4.1.0.tgz", "integrity": "sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==", "dev": true, "license": "MIT", "dependencies": { "run-applescript": "^7.0.0" }, "engines": { "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/bytes": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", "dev": true, "license": "MIT", "engines": { "node": ">= 0.8" } }, "node_modules/cachedir": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/cachedir/-/cachedir-2.3.0.tgz", "integrity": "sha512-A+Fezp4zxnit6FanDmv9EqXNAi3vt9DWp51/71UEhXukb7QUuvtv9344h91dyAxuTLoSYJFU299qzR3tzwPAhw==", "dev": true, "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/call-bind-apply-helpers": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/call-bind-apply-helpers/-/call-bind-apply-helpers-1.0.1.tgz", "integrity": "sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==", "dev": true, "license": "MIT", "dependencies": { "es-errors": "^1.3.0", "function-bind": "^1.1.2" }, "engines": { "node": ">= 0.4" } }, "node_modules/call-bound": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/call-bound/-/call-bound-1.0.3.tgz", "integrity": "sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==", "dev": true, "license": "MIT", "dependencies": { "call-bind-apply-helpers": "^1.0.1", "get-intrinsic": "^1.2.6" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/callsites": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", "dev": true, "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/camel-case": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", "dev": true, "license": "MIT", "dependencies": { "pascal-case": "^3.1.2", "tslib": "^2.0.3" } }, "node_modules/camelcase": { "version": "5.3.1", "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", "dev": true, "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/camelcase-css": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", "integrity": "sha512-QOSvevhslijgYwRx6Rv7zKdMF8lbRmx+uQGx2+vDc+KI/eBnsy9kit5aj23AgGu3pa4t9AgwbnXWqS+iOY+2aA==", "dev": true, "license": "MIT", "engines": { "node": ">= 6" } }, "node_modules/camelcase-keys": { "version": "6.2.2", "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz", "integrity": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==", "dev": true, "license": "MIT", "dependencies": { "camelcase": "^5.3.1", "map-obj": "^4.0.0", "quick-lru": "^4.0.1" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/caniuse-lite": { "version": "1.0.30001692", "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001692.tgz", "integrity": "sha512-A95VKan0kdtrsnMubMKxEKUKImOPSuCpYgxSQBo036P5YYgVIcOYJEgt/txJWqObiRQeISNCfef9nvlQ0vbV7A==", "funding": [ { "type": "opencollective", "url": "https://opencollective.com/browserslist" }, { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/caniuse-lite" }, { "type": "github", "url": "https://github.com/sponsors/ai" } ], "license": "CC-BY-4.0" }, "node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/char-regex": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", "dev": true, "license": "MIT", "engines": { "node": ">=10" } }, "node_modules/chardet": { "version": "0.7.0", "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", "dev": true, "license": "MIT" }, "node_modules/chokidar": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", "license": "MIT", "dependencies": { "anymatch": "~3.1.2", "braces": "~3.0.2", "glob-parent": "~5.1.2", "is-binary-path": "~2.1.0", "is-glob": "~4.0.1", "normalize-path": "~3.0.0", "readdirp": "~3.6.0" }, "engines": { "node": ">= 8.10.0" }, "funding": { "url": "https://paulmillr.com/funding/" }, "optionalDependencies": { "fsevents": "~2.3.2" } }, "node_modules/chokidar/node_modules/glob-parent": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "license": "ISC", "dependencies": { "is-glob": "^4.0.1" }, "engines": { "node": ">= 6" } }, "node_modules/chrome-trace-event": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.4.tgz", "integrity": "sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==", "license": "MIT", "engines": { "node": ">=6.0" } }, "node_modules/clean-css": { "version": "5.3.3", "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.3.tgz", "integrity": "sha512-D5J+kHaVb/wKSFcyyV75uCn8fiY4sV38XJoe4CUyGQ+mOU/fMVYUdH1hJC+CJQ5uY3EnW27SbJYS4X8BiLrAFg==", "dev": true, "license": "MIT", "dependencies": { "source-map": "~0.6.0" }, "engines": { "node": ">= 10.0" } }, "node_modules/clean-stack": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", "dev": true, "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/cli-cursor": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", "dev": true, "license": "MIT", "dependencies": { "restore-cursor": "^3.1.0" }, "engines": { "node": ">=8" } }, "node_modules/cli-highlight": { "version": "2.1.11", "resolved": "https://registry.npmjs.org/cli-highlight/-/cli-highlight-2.1.11.tgz", "integrity": "sha512-9KDcoEVwyUXrjcJNvHD0NFc/hiwe/WPVYIleQh2O1N2Zro5gWJZ/K+3DGn8w8P/F6FxOgzyC5bxDyHIgCSPhGg==", "dev": true, "license": "ISC", "dependencies": { "chalk": "^4.0.0", "highlight.js": "^10.7.1", "mz": "^2.4.0", "parse5": "^5.1.1", "parse5-htmlparser2-tree-adapter": "^6.0.0", "yargs": "^16.0.0" }, "bin": { "highlight": "bin/highlight" }, "engines": { "node": ">=8.0.0", "npm": ">=5.0.0" } }, "node_modules/cli-highlight/node_modules/cliui": { "version": "7.0.4", "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", "dev": true, "license": "ISC", "dependencies": { "string-width": "^4.2.0", "strip-ansi": "^6.0.0", "wrap-ansi": "^7.0.0" } }, "node_modules/cli-highlight/node_modules/yargs": { "version": "16.2.0", "resolved": "https://registry.npmjs.org/yargs/-/yargs-16.2.0.tgz", "integrity": "sha512-D1mvvtDG0L5ft/jGWkLpG1+m0eQxOfaBvTNELraWj22wSVUMWxZUvYgJYcKh6jGGIkJFhH4IZPQhR4TKpc8mBw==", "dev": true, "license": "MIT", "dependencies": { "cliui": "^7.0.2", "escalade": "^3.1.1", "get-caller-file": "^2.0.5", "require-directory": "^2.1.1", "string-width": "^4.2.0", "y18n": "^5.0.5", "yargs-parser": "^20.2.2" }, "engines": { "node": ">=10" } }, "node_modules/cli-highlight/node_modules/yargs-parser": { "version": "20.2.9", "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", "dev": true, "license": "ISC", "engines": { "node": ">=10" } }, "node_modules/cli-spinners": { "version": "2.9.2", "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz", "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==", "dev": true, "license": "MIT", "engines": { "node": ">=6" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/cli-table3": { "version": "0.6.5", "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.5.tgz", "integrity": "sha512-+W/5efTR7y5HRD7gACw9yQjqMVvEMLBHmboM/kPWam+H+Hmyrgjh6YncVKK122YZkXrLudzTuAukUw9FnMf7IQ==", "dev": true, "license": "MIT", "dependencies": { "string-width": "^4.2.0" }, "engines": { "node": "10.* || >= 12.*" }, "optionalDependencies": { "@colors/colors": "1.5.0" } }, "node_modules/cli-width": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", "dev": true, "license": "ISC", "engines": { "node": ">= 10" } }, "node_modules/cliui": { "version": "8.0.1", "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", "dev": true, "license": "ISC", "dependencies": { "string-width": "^4.2.0", "strip-ansi": "^6.0.1", "wrap-ansi": "^7.0.0" }, "engines": { "node": ">=12" } }, "node_modules/clone": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", "dev": true, "license": "MIT", "engines": { "node": ">=0.8" } }, "node_modules/clone-deep": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", "license": "MIT", "dependencies": { "is-plain-object": "^2.0.4", "kind-of": "^6.0.2", "shallow-clone": "^3.0.0" }, "engines": { "node": ">=6" } }, "node_modules/clsx": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz", "integrity": "sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==", "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/color-convert": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", "dev": true, "license": "MIT", "dependencies": { "color-name": "~1.1.4" }, "engines": { "node": ">=7.0.0" } }, "node_modules/color-name": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", "dev": true, "license": "MIT" }, "node_modules/colorette": { "version": "2.0.20", "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", "dev": true, "license": "MIT" }, "node_modules/commander": { "version": "8.3.0", "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", "dev": true, "license": "MIT", "engines": { "node": ">= 12" } }, "node_modules/commitizen": { "version": "4.3.1", "resolved": "https://registry.npmjs.org/commitizen/-/commitizen-4.3.1.tgz", "integrity": "sha512-gwAPAVTy/j5YcOOebcCRIijn+mSjWJC+IYKivTu6aG8Ei/scoXgfsMRnuAk6b0GRste2J4NGxVdMN3ZpfNaVaw==", "dev": true, "license": "MIT", "dependencies": { "cachedir": "2.3.0", "cz-conventional-changelog": "3.3.0", "dedent": "0.7.0", "detect-indent": "6.1.0", "find-node-modules": "^2.1.2", "find-root": "1.1.0", "fs-extra": "9.1.0", "glob": "7.2.3", "inquirer": "8.2.5", "is-utf8": "^0.2.1", "lodash": "4.17.21", "minimist": "1.2.7", "strip-bom": "4.0.0", "strip-json-comments": "3.1.1" }, "bin": { "commitizen": "bin/commitizen", "cz": "bin/git-cz", "git-cz": "bin/git-cz" }, "engines": { "node": ">= 12" } }, "node_modules/commitizen/node_modules/fs-extra": { "version": "9.1.0", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-9.1.0.tgz", "integrity": "sha512-hcg3ZmepS30/7BSFqRvoo3DOMQu7IjqxO5nCDt+zM9XWjb33Wg7ziNT+Qvqbuc3+gWpzO02JubVyk2G4Zvo1OQ==", "dev": true, "license": "MIT", "dependencies": { "at-least-node": "^1.0.0", "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", "universalify": "^2.0.0" }, "engines": { "node": ">=10" } }, "node_modules/commitizen/node_modules/glob": { "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "deprecated": "Glob versions prior to v9 are no longer supported", "dev": true, "license": "ISC", "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.1.1", "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, "engines": { "node": "*" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/commitizen/node_modules/minimist": { "version": "1.2.7", "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.7.tgz", "integrity": "sha512-bzfL1YUZsP41gmu/qjrEk0Q6i2ix/cVeAhbCbqH9u3zYutS1cLg00qhrD0M2MVdCcx4Sc0UpP2eBWo9rotpq6g==", "dev": true, "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/common-path-prefix": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz", "integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==", "dev": true, "license": "ISC" }, "node_modules/compare-func": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/compare-func/-/compare-func-2.0.0.tgz", "integrity": "sha512-zHig5N+tPWARooBnb0Zx1MFcdfpyJrfTJ3Y5L+IFvUm8rM74hHz66z0gw0x4tijh5CorKkKUCnW82R2vmpeCRA==", "dev": true, "license": "MIT", "dependencies": { "array-ify": "^1.0.0", "dot-prop": "^5.1.0" } }, "node_modules/compressible": { "version": "2.0.18", "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", "dev": true, "license": "MIT", "dependencies": { "mime-db": ">= 1.43.0 < 2" }, "engines": { "node": ">= 0.6" } }, "node_modules/compression": { "version": "1.7.5", "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.5.tgz", "integrity": "sha512-bQJ0YRck5ak3LgtnpKkiabX5pNF7tMUh1BSy2ZBOTh0Dim0BUu6aPPwByIns6/A5Prh8PufSPerMDUklpzes2Q==", "dev": true, "license": "MIT", "dependencies": { "bytes": "3.1.2", "compressible": "~2.0.18", "debug": "2.6.9", "negotiator": "~0.6.4", "on-headers": "~1.0.2", "safe-buffer": "5.2.1", "vary": "~1.1.2" }, "engines": { "node": ">= 0.8.0" } }, "node_modules/compression/node_modules/debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, "license": "MIT", "dependencies": { "ms": "2.0.0" } }, "node_modules/compression/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true, "license": "MIT" }, "node_modules/compression/node_modules/safe-buffer": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", "dev": true, "funding": [ { "type": "github", "url": "https://github.com/sponsors/feross" }, { "type": "patreon", "url": "https://www.patreon.com/feross" }, { "type": "consulting", "url": "https://feross.org/support" } ], "license": "MIT" }, "node_modules/concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", "dev": true, "license": "MIT" }, "node_modules/config-chain": { "version": "1.1.13", "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", "dev": true, "license": "MIT", "dependencies": { "ini": "^1.3.4", "proto-list": "~1.2.1" } }, "node_modules/connect-history-api-fallback": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-2.0.0.tgz", "integrity": "sha512-U73+6lQFmfiNPrYbXqr6kZ1i1wiRqXnp2nhMsINseWXO8lDau0LGEffJ8kQi4EjLZympVgRdvqjAgiZ1tgzDDA==", "dev": true, "license": "MIT", "engines": { "node": ">=0.8" } }, "node_modules/content-disposition": { "version": "0.5.4", "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", "dev": true, "license": "MIT", "dependencies": { "safe-buffer": "5.2.1" }, "engines": { "node": ">= 0.6" } }, "node_modules/content-disposition/node_modules/safe-buffer": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", "dev": true, "funding": [ { "type": "github", "url": "https://github.com/sponsors/feross" }, { "type": "patreon", "url": "https://www.patreon.com/feross" }, { "type": "consulting", "url": "https://feross.org/support" } ], "license": "MIT" }, "node_modules/content-type": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz", "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==", "dev": true, "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/conventional-changelog-angular": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/conventional-changelog-angular/-/conventional-changelog-angular-6.0.0.tgz", "integrity": "sha512-6qLgrBF4gueoC7AFVHu51nHL9pF9FRjXrH+ceVf7WmAfH3gs+gEYOkvxhjMPjZu57I4AGUGoNTY8V7Hrgf1uqg==", "dev": true, "license": "ISC", "dependencies": { "compare-func": "^2.0.0" }, "engines": { "node": ">=14" } }, "node_modules/conventional-changelog-conventionalcommits": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/conventional-changelog-conventionalcommits/-/conventional-changelog-conventionalcommits-6.1.0.tgz", "integrity": "sha512-3cS3GEtR78zTfMzk0AizXKKIdN4OvSh7ibNz6/DPbhWWQu7LqE/8+/GqSodV+sywUR2gpJAdP/1JFf4XtN7Zpw==", "dev": true, "license": "ISC", "dependencies": { "compare-func": "^2.0.0" }, "engines": { "node": ">=14" } }, "node_modules/conventional-changelog-writer": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/conventional-changelog-writer/-/conventional-changelog-writer-8.0.0.tgz", "integrity": "sha512-TQcoYGRatlAnT2qEWDON/XSfnVG38JzA7E0wcGScu7RElQBkg9WWgZd1peCWFcWDh1xfb2CfsrcvOn1bbSzztA==", "dev": true, "license": "MIT", "dependencies": { "@types/semver": "^7.5.5", "conventional-commits-filter": "^5.0.0", "handlebars": "^4.7.7", "meow": "^13.0.0", "semver": "^7.5.2" }, "bin": { "conventional-changelog-writer": "dist/cli/index.js" }, "engines": { "node": ">=18" } }, "node_modules/conventional-changelog-writer/node_modules/semver": { "version": "7.6.3", "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", "dev": true, "license": "ISC", "bin": { "semver": "bin/semver.js" }, "engines": { "node": ">=10" } }, "node_modules/conventional-commit-types": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/conventional-commit-types/-/conventional-commit-types-3.0.0.tgz", "integrity": "sha512-SmmCYnOniSsAa9GqWOeLqc179lfr5TRu5b4QFDkbsrJ5TZjPJx85wtOr3zn+1dbeNiXDKGPbZ72IKbPhLXh/Lg==", "dev": true, "license": "ISC" }, "node_modules/conventional-commits-filter": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/conventional-commits-filter/-/conventional-commits-filter-5.0.0.tgz", "integrity": "sha512-tQMagCOC59EVgNZcC5zl7XqO30Wki9i9J3acbUvkaosCT6JX3EeFwJD7Qqp4MCikRnzS18WXV3BLIQ66ytu6+Q==", "dev": true, "license": "MIT", "engines": { "node": ">=18" } }, "node_modules/conventional-commits-parser": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/conventional-commits-parser/-/conventional-commits-parser-4.0.0.tgz", "integrity": "sha512-WRv5j1FsVM5FISJkoYMR6tPk07fkKT0UodruX4je86V4owk451yjXAKzKAPOs9l7y59E2viHUS9eQ+dfUA9NSg==", "dev": true, "license": "MIT", "dependencies": { "is-text-path": "^1.0.1", "JSONStream": "^1.3.5", "meow": "^8.1.2", "split2": "^3.2.2" }, "bin": { "conventional-commits-parser": "cli.js" }, "engines": { "node": ">=14" } }, "node_modules/conventional-commits-parser/node_modules/hosted-git-info": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", "dev": true, "license": "ISC", "dependencies": { "lru-cache": "^6.0.0" }, "engines": { "node": ">=10" } }, "node_modules/conventional-commits-parser/node_modules/lru-cache": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, "license": "ISC", "dependencies": { "yallist": "^4.0.0" }, "engines": { "node": ">=10" } }, "node_modules/conventional-commits-parser/node_modules/meow": { "version": "8.1.2", "resolved": "https://registry.npmjs.org/meow/-/meow-8.1.2.tgz", "integrity": "sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==", "dev": true, "license": "MIT", "dependencies": { "@types/minimist": "^1.2.0", "camelcase-keys": "^6.2.2", "decamelize-keys": "^1.1.0", "hard-rejection": "^2.1.0", "minimist-options": "4.1.0", "normalize-package-data": "^3.0.0", "read-pkg-up": "^7.0.1", "redent": "^3.0.0", "trim-newlines": "^3.0.0", "type-fest": "^0.18.0", "yargs-parser": "^20.2.3" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/conventional-commits-parser/node_modules/normalize-package-data": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", "dev": true, "license": "BSD-2-Clause", "dependencies": { "hosted-git-info": "^4.0.1", "is-core-module": "^2.5.0", "semver": "^7.3.4", "validate-npm-package-license": "^3.0.1" }, "engines": { "node": ">=10" } }, "node_modules/conventional-commits-parser/node_modules/semver": { "version": "7.6.3", "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", "dev": true, "license": "ISC", "bin": { "semver": "bin/semver.js" }, "engines": { "node": ">=10" } }, "node_modules/conventional-commits-parser/node_modules/type-fest": { "version": "0.18.1", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", "dev": true, "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/conventional-commits-parser/node_modules/yallist": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true, "license": "ISC" }, "node_modules/conventional-commits-parser/node_modules/yargs-parser": { "version": "20.2.9", "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", "dev": true, "license": "ISC", "engines": { "node": ">=10" } }, "node_modules/convert-hrtime": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/convert-hrtime/-/convert-hrtime-5.0.0.tgz", "integrity": "sha512-lOETlkIeYSJWcbbcvjRKGxVMXJR+8+OQb/mTPbA4ObPMytYIsUbuOE0Jzy60hjARYszq1id0j8KgVhC+WGZVTg==", "dev": true, "license": "MIT", "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/convert-source-map": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", "license": "MIT" }, "node_modules/cookie": { "version": "0.7.1", "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.7.1.tgz", "integrity": "sha512-6DnInpx7SJ2AK3+CTUE/ZM0vWTUboZCegxhC2xiIydHR9jNuTAASBrfEpHhiGOZw/nX51bHt6YQl8jsGo4y/0w==", "dev": true, "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/cookie-signature": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", "dev": true, "license": "MIT" }, "node_modules/copy-webpack-plugin": { "version": "11.0.0", "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-11.0.0.tgz", "integrity": "sha512-fX2MWpamkW0hZxMEg0+mYnA40LTosOSa5TqZ9GYIBzyJa9C3QUaMPSE2xAi/buNr8u89SfD9wHSQVBzrRa/SOQ==", "dev": true, "license": "MIT", "dependencies": { "fast-glob": "^3.2.11", "glob-parent": "^6.0.1", "globby": "^13.1.1", "normalize-path": "^3.0.0", "schema-utils": "^4.0.0", "serialize-javascript": "^6.0.0" }, "engines": { "node": ">= 14.15.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" }, "peerDependencies": { "webpack": "^5.1.0" } }, "node_modules/core-js-compat": { "version": "3.40.0", "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.40.0.tgz", "integrity": "sha512-0XEDpr5y5mijvw8Lbc6E5AkjrHfp7eEoPlu36SWeAbcL8fn1G1ANe8DBlo2XoNN89oVpxWwOjYIPVzR4ZvsKCQ==", "dev": true, "license": "MIT", "dependencies": { "browserslist": "^4.24.3" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/core-js" } }, "node_modules/core-util-is": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", "dev": true, "license": "MIT" }, "node_modules/cosmiconfig": { "version": "8.3.6", "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz", "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==", "dev": true, "license": "MIT", "dependencies": { "import-fresh": "^3.3.0", "js-yaml": "^4.1.0", "parse-json": "^5.2.0", "path-type": "^4.0.0" }, "engines": { "node": ">=14" }, "funding": { "url": "https://github.com/sponsors/d-fischer" }, "peerDependencies": { "typescript": ">=4.9.5" }, "peerDependenciesMeta": { "typescript": { "optional": true } } }, "node_modules/cosmiconfig-typescript-loader": { "version": "4.4.0", "resolved": "https://registry.npmjs.org/cosmiconfig-typescript-loader/-/cosmiconfig-typescript-loader-4.4.0.tgz", "integrity": "sha512-BabizFdC3wBHhbI4kJh0VkQP9GkBfoHPydD0COMce1nJ1kJAB3F2TmJ/I7diULBKtmEWSwEbuN/KDtgnmUUVmw==", "dev": true, "license": "MIT", "engines": { "node": ">=v14.21.3" }, "peerDependencies": { "@types/node": "*", "cosmiconfig": ">=7", "ts-node": ">=10", "typescript": ">=4" } }, "node_modules/create-require": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", "dev": true, "license": "MIT" }, "node_modules/cross-env": { "version": "7.0.3", "resolved": "https://registry.npmjs.org/cross-env/-/cross-env-7.0.3.tgz", "integrity": "sha512-+/HKd6EgcQCJGh2PSjZuUitQBQynKor4wrFbRg4DtAgS1aWO+gU52xpH7M9ScGgXSYmAVS9bIJ8EzuaGw0oNAw==", "dev": true, "license": "MIT", "dependencies": { "cross-spawn": "^7.0.1" }, "bin": { "cross-env": "src/bin/cross-env.js", "cross-env-shell": "src/bin/cross-env-shell.js" }, "engines": { "node": ">=10.14", "npm": ">=6", "yarn": ">=1" } }, "node_modules/cross-spawn": { "version": "7.0.6", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.6.tgz", "integrity": "sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==", "dev": true, "license": "MIT", "dependencies": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", "which": "^2.0.1" }, "engines": { "node": ">= 8" } }, "node_modules/crypto-random-string": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-4.0.0.tgz", "integrity": "sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==", "dev": true, "license": "MIT", "dependencies": { "type-fest": "^1.0.1" }, "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/crypto-random-string/node_modules/type-fest": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", "dev": true, "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/css-loader": { "version": "6.11.0", "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.11.0.tgz", "integrity": "sha512-CTJ+AEQJjq5NzLga5pE39qdiSV56F8ywCIsqNIRF0r7BDgWsN25aazToqAFg7ZrtA/U016xudB3ffgweORxX7g==", "dev": true, "license": "MIT", "dependencies": { "icss-utils": "^5.1.0", "postcss": "^8.4.33", "postcss-modules-extract-imports": "^3.1.0", "postcss-modules-local-by-default": "^4.0.5", "postcss-modules-scope": "^3.2.0", "postcss-modules-values": "^4.0.0", "postcss-value-parser": "^4.2.0", "semver": "^7.5.4" }, "engines": { "node": ">= 12.13.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" }, "peerDependencies": { "@rspack/core": "0.x || 1.x", "webpack": "^5.0.0" }, "peerDependenciesMeta": { "@rspack/core": { "optional": true }, "webpack": { "optional": true } } }, "node_modules/css-loader/node_modules/semver": { "version": "7.6.3", "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", "dev": true, "license": "ISC", "bin": { "semver": "bin/semver.js" }, "engines": { "node": ">=10" } }, "node_modules/css-select": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", "dev": true, "license": "BSD-2-Clause", "dependencies": { "boolbase": "^1.0.0", "css-what": "^6.0.1", "domhandler": "^4.3.1", "domutils": "^2.8.0", "nth-check": "^2.0.1" }, "funding": { "url": "https://github.com/sponsors/fb55" } }, "node_modules/css-what": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", "dev": true, "license": "BSD-2-Clause", "engines": { "node": ">= 6" }, "funding": { "url": "https://github.com/sponsors/fb55" } }, "node_modules/cssesc": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", "dev": true, "license": "MIT", "bin": { "cssesc": "bin/cssesc" }, "engines": { "node": ">=4" } }, "node_modules/cz-conventional-changelog": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/cz-conventional-changelog/-/cz-conventional-changelog-3.3.0.tgz", "integrity": "sha512-U466fIzU5U22eES5lTNiNbZ+d8dfcHcssH4o7QsdWaCcRs/feIPCxKYSWkYBNs5mny7MvEfwpTLWjvbm94hecw==", "dev": true, "license": "MIT", "dependencies": { "chalk": "^2.4.1", "commitizen": "^4.0.3", "conventional-commit-types": "^3.0.0", "lodash.map": "^4.5.1", "longest": "^2.0.1", "word-wrap": "^1.0.3" }, "engines": { "node": ">= 10" }, "optionalDependencies": { "@commitlint/load": ">6.1.1" } }, "node_modules/cz-conventional-changelog/node_modules/ansi-styles": { "version": "3.2.1", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, "license": "MIT", "dependencies": { "color-convert": "^1.9.0" }, "engines": { "node": ">=4" } }, "node_modules/cz-conventional-changelog/node_modules/chalk": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, "license": "MIT", "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", "supports-color": "^5.3.0" }, "engines": { "node": ">=4" } }, "node_modules/cz-conventional-changelog/node_modules/color-convert": { "version": "1.9.3", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "dev": true, "license": "MIT", "dependencies": { "color-name": "1.1.3" } }, "node_modules/cz-conventional-changelog/node_modules/color-name": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", "dev": true, "license": "MIT" }, "node_modules/cz-conventional-changelog/node_modules/escape-string-regexp": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "dev": true, "license": "MIT", "engines": { "node": ">=0.8.0" } }, "node_modules/cz-conventional-changelog/node_modules/has-flag": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", "dev": true, "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/cz-conventional-changelog/node_modules/supports-color": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "dev": true, "license": "MIT", "dependencies": { "has-flag": "^3.0.0" }, "engines": { "node": ">=4" } }, "node_modules/dargs": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/dargs/-/dargs-7.0.0.tgz", "integrity": "sha512-2iy1EkLdlBzQGvbweYRFxmFath8+K7+AKB0TlhHWkNuH+TmovaMH/Wp7V7R4u7f4SnX3OgLsU9t1NI9ioDnUpg==", "dev": true, "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/date-fns": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/date-fns/-/date-fns-3.6.0.tgz", "integrity": "sha512-fRHTG8g/Gif+kSh50gaGEdToemgfj74aRX3swtiouboip5JDLAyDE9F11nHMIcvOaXeOC6D7SpNhi7uFyB7Uww==", "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/kossnocorp" } }, "node_modules/debounce": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/debounce/-/debounce-1.2.1.tgz", "integrity": "sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==", "dev": true, "license": "MIT" }, "node_modules/debug": { "version": "4.4.0", "resolved": "https://registry.npmjs.org/debug/-/debug-4.4.0.tgz", "integrity": "sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==", "license": "MIT", "dependencies": { "ms": "^2.1.3" }, "engines": { "node": ">=6.0" }, "peerDependenciesMeta": { "supports-color": { "optional": true } } }, "node_modules/decamelize": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/decamelize-keys": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.1.tgz", "integrity": "sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==", "dev": true, "license": "MIT", "dependencies": { "decamelize": "^1.1.0", "map-obj": "^1.0.0" }, "engines": { "node": ">=0.10.0" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/decamelize-keys/node_modules/map-obj": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", "integrity": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==", "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/dedent": { "version": "0.7.0", "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", "dev": true, "license": "MIT" }, "node_modules/deep-extend": { "version": "0.6.0", "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", "dev": true, "license": "MIT", "engines": { "node": ">=4.0.0" } }, "node_modules/deep-is": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", "dev": true, "license": "MIT" }, "node_modules/default-browser": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-5.2.1.tgz", "integrity": "sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==", "dev": true, "license": "MIT", "dependencies": { "bundle-name": "^4.1.0", "default-browser-id": "^5.0.0" }, "engines": { "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/default-browser-id": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-5.0.0.tgz", "integrity": "sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==", "dev": true, "license": "MIT", "engines": { "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/defaults": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.4.tgz", "integrity": "sha512-eFuaLoy/Rxalv2kr+lqMlUnrDWV+3j4pljOIJgLIhI058IQfWJ7vXhyEIHu+HtC738klGALYxOKDO0bQP3tg8A==", "dev": true, "license": "MIT", "dependencies": { "clone": "^1.0.2" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/define-lazy-prop": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==", "dev": true, "license": "MIT", "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/depd": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", "dev": true, "license": "MIT", "engines": { "node": ">= 0.8" } }, "node_modules/destroy": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", "dev": true, "license": "MIT", "engines": { "node": ">= 0.8", "npm": "1.2.8000 || >= 1.4.16" } }, "node_modules/detect-file": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz", "integrity": "sha512-DtCOLG98P007x7wiiOmfI0fi3eIKyWiLTGJ2MDnVi/E04lWGbf+JzrRHMm0rgIIZJGtHpKpbVgLWHrv8xXpc3Q==", "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/detect-indent": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz", "integrity": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==", "dev": true, "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/detect-node": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", "dev": true, "license": "MIT" }, "node_modules/didyoumean": { "version": "1.2.2", "resolved": "https://registry.npmjs.org/didyoumean/-/didyoumean-1.2.2.tgz", "integrity": "sha512-gxtyfqMg7GKyhQmb056K7M3xszy/myH8w+B4RT+QXBQsvAOdc3XymqDDPHx1BgPgsdAA5SIifona89YtRATDzw==", "dev": true, "license": "Apache-2.0" }, "node_modules/diff": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", "dev": true, "license": "BSD-3-Clause", "engines": { "node": ">=0.3.1" } }, "node_modules/dir-glob": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", "dev": true, "license": "MIT", "dependencies": { "path-type": "^4.0.0" }, "engines": { "node": ">=8" } }, "node_modules/dlv": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", "dev": true, "license": "MIT" }, "node_modules/dns-packet": { "version": "5.6.1", "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.6.1.tgz", "integrity": "sha512-l4gcSouhcgIKRvyy99RNVOgxXiicE+2jZoNmaNmZ6JXiGajBOJAesk1OBlJuM5k2c+eudGdLxDqXuPCKIj6kpw==", "dev": true, "license": "MIT", "dependencies": { "@leichtgewicht/ip-codec": "^2.0.1" }, "engines": { "node": ">=6" } }, "node_modules/doctrine": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", "dev": true, "license": "Apache-2.0", "dependencies": { "esutils": "^2.0.2" }, "engines": { "node": ">=6.0.0" } }, "node_modules/dom-converter": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", "dev": true, "license": "MIT", "dependencies": { "utila": "~0.4" } }, "node_modules/dom-serializer": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", "dev": true, "license": "MIT", "dependencies": { "domelementtype": "^2.0.1", "domhandler": "^4.2.0", "entities": "^2.0.0" }, "funding": { "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" } }, "node_modules/domelementtype": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", "dev": true, "funding": [ { "type": "github", "url": "https://github.com/sponsors/fb55" } ], "license": "BSD-2-Clause" }, "node_modules/domhandler": { "version": "4.3.1", "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", "dev": true, "license": "BSD-2-Clause", "dependencies": { "domelementtype": "^2.2.0" }, "engines": { "node": ">= 4" }, "funding": { "url": "https://github.com/fb55/domhandler?sponsor=1" } }, "node_modules/domutils": { "version": "2.8.0", "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", "dev": true, "license": "BSD-2-Clause", "dependencies": { "dom-serializer": "^1.0.1", "domelementtype": "^2.2.0", "domhandler": "^4.2.0" }, "funding": { "url": "https://github.com/fb55/domutils?sponsor=1" } }, "node_modules/dot-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", "dev": true, "license": "MIT", "dependencies": { "no-case": "^3.0.4", "tslib": "^2.0.3" } }, "node_modules/dot-prop": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-5.3.0.tgz", "integrity": "sha512-QM8q3zDe58hqUqjraQOmzZ1LIH9SWQJTlEKCH4kJ2oQvLZk7RbQXvtDM2XEq3fwkV9CCvvH4LA0AV+ogFsBM2Q==", "dev": true, "license": "MIT", "dependencies": { "is-obj": "^2.0.0" }, "engines": { "node": ">=8" } }, "node_modules/dotenv": { "version": "16.4.7", "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.4.7.tgz", "integrity": "sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==", "engines": { "node": ">=12" }, "funding": { "url": "https://dotenvx.com" } }, "node_modules/dunder-proto": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/dunder-proto/-/dunder-proto-1.0.1.tgz", "integrity": "sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==", "dev": true, "license": "MIT", "dependencies": { "call-bind-apply-helpers": "^1.0.1", "es-errors": "^1.3.0", "gopd": "^1.2.0" }, "engines": { "node": ">= 0.4" } }, "node_modules/duplexer": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", "dev": true, "license": "MIT" }, "node_modules/duplexer2": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/duplexer2/-/duplexer2-0.1.4.tgz", "integrity": "sha512-asLFVfWWtJ90ZyOUHMqk7/S2w2guQKxUI2itj3d92ADHhxUSbCMGi1f1cBcJ7xM1To+pE/Khbwo1yuNbMEPKeA==", "dev": true, "license": "BSD-3-Clause", "dependencies": { "readable-stream": "^2.0.2" } }, "node_modules/eastasianwidth": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", "dev": true, "license": "MIT" }, "node_modules/ee-first": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", "dev": true, "license": "MIT" }, "node_modules/electron-to-chromium": { "version": "1.5.83", "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.5.83.tgz", "integrity": "sha512-LcUDPqSt+V0QmI47XLzZrz5OqILSMGsPFkDYus22rIbgorSvBYEFqq854ltTmUdHkY92FSdAAvsh4jWEULMdfQ==", "license": "ISC" }, "node_modules/emoji-regex": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", "dev": true, "license": "MIT" }, "node_modules/emojilib": { "version": "2.4.0", "resolved": "https://registry.npmjs.org/emojilib/-/emojilib-2.4.0.tgz", "integrity": "sha512-5U0rVMU5Y2n2+ykNLQqMoqklN9ICBT/KsvC1Gz6vqHbz2AXXGkG+Pm5rMWk/8Vjrr/mY9985Hi8DYzn1F09Nyw==", "dev": true, "license": "MIT" }, "node_modules/emojis-list": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", "dev": true, "license": "MIT", "engines": { "node": ">= 4" } }, "node_modules/encodeurl": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-2.0.0.tgz", "integrity": "sha512-Q0n9HRi4m6JuGIV1eFlmvJB7ZEVxu93IrMyiMsGC0lrMJMWzRgx6WGquyfQgZVb31vhGgXnfmPNNXmxnOkRBrg==", "dev": true, "license": "MIT", "engines": { "node": ">= 0.8" } }, "node_modules/enhanced-resolve": { "version": "5.18.0", "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.18.0.tgz", "integrity": "sha512-0/r0MySGYG8YqlayBZ6MuCfECmHFdJ5qyPh8s8wa5Hnm6SaFLSK1VYCbj+NKp090Nm1caZhD+QTnmxO7esYGyQ==", "license": "MIT", "dependencies": { "graceful-fs": "^4.2.4", "tapable": "^2.2.0" }, "engines": { "node": ">=10.13.0" } }, "node_modules/entities": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", "dev": true, "license": "BSD-2-Clause", "funding": { "url": "https://github.com/fb55/entities?sponsor=1" } }, "node_modules/env-ci": { "version": "11.1.0", "resolved": "https://registry.npmjs.org/env-ci/-/env-ci-11.1.0.tgz", "integrity": "sha512-Z8dnwSDbV1XYM9SBF2J0GcNVvmfmfh3a49qddGIROhBoVro6MZVTji15z/sJbQ2ko2ei8n988EU1wzoLU/tF+g==", "dev": true, "license": "MIT", "dependencies": { "execa": "^8.0.0", "java-properties": "^1.0.2" }, "engines": { "node": "^18.17 || >=20.6.1" } }, "node_modules/env-ci/node_modules/execa": { "version": "8.0.1", "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", "dev": true, "license": "MIT", "dependencies": { "cross-spawn": "^7.0.3", "get-stream": "^8.0.1", "human-signals": "^5.0.0", "is-stream": "^3.0.0", "merge-stream": "^2.0.0", "npm-run-path": "^5.1.0", "onetime": "^6.0.0", "signal-exit": "^4.1.0", "strip-final-newline": "^3.0.0" }, "engines": { "node": ">=16.17" }, "funding": { "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, "node_modules/env-ci/node_modules/get-stream": { "version": "8.0.1", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", "dev": true, "license": "MIT", "engines": { "node": ">=16" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/env-ci/node_modules/human-signals": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", "dev": true, "license": "Apache-2.0", "engines": { "node": ">=16.17.0" } }, "node_modules/env-ci/node_modules/is-stream": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", "dev": true, "license": "MIT", "engines": { "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/env-ci/node_modules/mimic-fn": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", "dev": true, "license": "MIT", "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/env-ci/node_modules/npm-run-path": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz", "integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==", "dev": true, "license": "MIT", "dependencies": { "path-key": "^4.0.0" }, "engines": { "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/env-ci/node_modules/onetime": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", "dev": true, "license": "MIT", "dependencies": { "mimic-fn": "^4.0.0" }, "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/env-ci/node_modules/path-key": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", "dev": true, "license": "MIT", "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/env-ci/node_modules/signal-exit": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", "dev": true, "license": "ISC", "engines": { "node": ">=14" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/env-ci/node_modules/strip-final-newline": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", "dev": true, "license": "MIT", "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/env-paths": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", "dev": true, "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/envinfo": { "version": "7.14.0", "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.14.0.tgz", "integrity": "sha512-CO40UI41xDQzhLB1hWyqUKgFhs250pNcGbyGKe1l/e4FSaI/+YE4IMG76GDt0In67WLPACIITC+sOi08x4wIvg==", "dev": true, "license": "MIT", "bin": { "envinfo": "dist/cli.js" }, "engines": { "node": ">=4" } }, "node_modules/environment": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/environment/-/environment-1.1.0.tgz", "integrity": "sha512-xUtoPkMggbz0MPyPiIWr1Kp4aeWJjDZ6SMvURhimjdZgsRuDplF5/s9hcgGhyXMhs+6vpnuoiZ2kFiu3FMnS8Q==", "dev": true, "license": "MIT", "engines": { "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/error-ex": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", "dev": true, "license": "MIT", "dependencies": { "is-arrayish": "^0.2.1" } }, "node_modules/es-define-property": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.1.tgz", "integrity": "sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==", "dev": true, "license": "MIT", "engines": { "node": ">= 0.4" } }, "node_modules/es-errors": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", "dev": true, "license": "MIT", "engines": { "node": ">= 0.4" } }, "node_modules/es-module-lexer": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.6.0.tgz", "integrity": "sha512-qqnD1yMU6tk/jnaMosogGySTZP8YtUgAffA9nMN+E/rjxcfRQ6IEk7IiozUjgxKoFHBGjTLnrHB/YC45r/59EQ==", "license": "MIT" }, "node_modules/es-object-atoms": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.1.1.tgz", "integrity": "sha512-FGgH2h8zKNim9ljj7dankFPcICIK9Cp5bm+c2gQSYePhpaG5+esrLODihIorn+Pe6FGJzWhXQotPv73jTaldXA==", "dev": true, "license": "MIT", "dependencies": { "es-errors": "^1.3.0" }, "engines": { "node": ">= 0.4" } }, "node_modules/escalade": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.2.0.tgz", "integrity": "sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==", "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/escape-html": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", "dev": true, "license": "MIT" }, "node_modules/escape-string-regexp": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "dev": true, "license": "MIT", "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/eslint": { "version": "8.57.1", "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.1.tgz", "integrity": "sha512-ypowyDxpVSYpkXr9WPv2PAZCtNip1Mv5KTW0SCurXv/9iOpcrH9PaqUElksqEB6pChqHGDRCFTyrZlGhnLNGiA==", "deprecated": "This version is no longer supported. Please see https://eslint.org/version-support for other options.", "dev": true, "license": "MIT", "dependencies": { "@eslint-community/eslint-utils": "^4.2.0", "@eslint-community/regexpp": "^4.6.1", "@eslint/eslintrc": "^2.1.4", "@eslint/js": "8.57.1", "@humanwhocodes/config-array": "^0.13.0", "@humanwhocodes/module-importer": "^1.0.1", "@nodelib/fs.walk": "^1.2.8", "@ungap/structured-clone": "^1.2.0", "ajv": "^6.12.4", "chalk": "^4.0.0", "cross-spawn": "^7.0.2", "debug": "^4.3.2", "doctrine": "^3.0.0", "escape-string-regexp": "^4.0.0", "eslint-scope": "^7.2.2", "eslint-visitor-keys": "^3.4.3", "espree": "^9.6.1", "esquery": "^1.4.2", "esutils": "^2.0.2", "fast-deep-equal": "^3.1.3", "file-entry-cache": "^6.0.1", "find-up": "^5.0.0", "glob-parent": "^6.0.2", "globals": "^13.19.0", "graphemer": "^1.4.0", "ignore": "^5.2.0", "imurmurhash": "^0.1.4", "is-glob": "^4.0.0", "is-path-inside": "^3.0.3", "js-yaml": "^4.1.0", "json-stable-stringify-without-jsonify": "^1.0.1", "levn": "^0.4.1", "lodash.merge": "^4.6.2", "minimatch": "^3.1.2", "natural-compare": "^1.4.0", "optionator": "^0.9.3", "strip-ansi": "^6.0.1", "text-table": "^0.2.0" }, "bin": { "eslint": "bin/eslint.js" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "url": "https://opencollective.com/eslint" } }, "node_modules/eslint-plugin-promise": { "version": "7.2.1", "resolved": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-7.2.1.tgz", "integrity": "sha512-SWKjd+EuvWkYaS+uN2csvj0KoP43YTu7+phKQ5v+xw6+A0gutVX2yqCeCkC3uLCJFiPfR2dD8Es5L7yUsmvEaA==", "dev": true, "license": "ISC", "dependencies": { "@eslint-community/eslint-utils": "^4.4.0" }, "engines": { "node": "^18.18.0 || ^20.9.0 || >=21.1.0" }, "funding": { "url": "https://opencollective.com/eslint" }, "peerDependencies": { "eslint": "^7.0.0 || ^8.0.0 || ^9.0.0" } }, "node_modules/eslint-plugin-react-hooks": { "version": "4.6.2", "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.2.tgz", "integrity": "sha512-QzliNJq4GinDBcD8gPB5v0wh6g8q3SUi6EFF0x8N/BL9PoVs0atuGc47ozMRyOWAKdwaZ5OnbOEa3WR+dSGKuQ==", "dev": true, "license": "MIT", "engines": { "node": ">=10" }, "peerDependencies": { "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" } }, "node_modules/eslint-scope": { "version": "7.2.2", "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", "dev": true, "license": "BSD-2-Clause", "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^5.2.0" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "url": "https://opencollective.com/eslint" } }, "node_modules/eslint-visitor-keys": { "version": "3.4.3", "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", "dev": true, "license": "Apache-2.0", "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "url": "https://opencollective.com/eslint" } }, "node_modules/eslint/node_modules/ajv": { "version": "6.12.6", "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", "json-schema-traverse": "^0.4.1", "uri-js": "^4.2.2" }, "funding": { "type": "github", "url": "https://github.com/sponsors/epoberezkin" } }, "node_modules/eslint/node_modules/globals": { "version": "13.24.0", "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", "dev": true, "license": "MIT", "dependencies": { "type-fest": "^0.20.2" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/eslint/node_modules/json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "dev": true, "license": "MIT" }, "node_modules/eslint/node_modules/type-fest": { "version": "0.20.2", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", "dev": true, "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/espree": { "version": "9.6.1", "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", "dev": true, "license": "BSD-2-Clause", "dependencies": { "acorn": "^8.9.0", "acorn-jsx": "^5.3.2", "eslint-visitor-keys": "^3.4.1" }, "engines": { "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { "url": "https://opencollective.com/eslint" } }, "node_modules/esquery": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.6.0.tgz", "integrity": "sha512-ca9pw9fomFcKPvFLXhBKUK90ZvGibiGOvRJNbjljY7s7uq/5YO4BOzcYtJqExdx99rF6aAcnRxHmcUHcz6sQsg==", "dev": true, "license": "BSD-3-Clause", "dependencies": { "estraverse": "^5.1.0" }, "engines": { "node": ">=0.10" } }, "node_modules/esrecurse": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", "license": "BSD-2-Clause", "dependencies": { "estraverse": "^5.2.0" }, "engines": { "node": ">=4.0" } }, "node_modules/estraverse": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "license": "BSD-2-Clause", "engines": { "node": ">=4.0" } }, "node_modules/esutils": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", "dev": true, "license": "BSD-2-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/etag": { "version": "1.8.1", "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", "dev": true, "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/eventemitter3": { "version": "4.0.7", "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==", "dev": true, "license": "MIT" }, "node_modules/events": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", "license": "MIT", "engines": { "node": ">=0.8.x" } }, "node_modules/execa": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "dev": true, "license": "MIT", "dependencies": { "cross-spawn": "^7.0.3", "get-stream": "^6.0.0", "human-signals": "^2.1.0", "is-stream": "^2.0.0", "merge-stream": "^2.0.0", "npm-run-path": "^4.0.1", "onetime": "^5.1.2", "signal-exit": "^3.0.3", "strip-final-newline": "^2.0.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, "node_modules/execa/node_modules/get-stream": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "dev": true, "license": "MIT", "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/expand-tilde": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", "integrity": "sha512-A5EmesHW6rfnZ9ysHQjPdJRni0SRar0tjtG5MNtm9n5TUvsYU8oozprtRD4AqHxcZWWlVuAmQo2nWKfN9oyjTw==", "dev": true, "license": "MIT", "dependencies": { "homedir-polyfill": "^1.0.1" }, "engines": { "node": ">=0.10.0" } }, "node_modules/express": { "version": "4.21.2", "resolved": "https://registry.npmjs.org/express/-/express-4.21.2.tgz", "integrity": "sha512-28HqgMZAmih1Czt9ny7qr6ek2qddF4FclbMzwhCREB6OFfH+rXAnuNCwo1/wFvrtbgsQDb4kSbX9de9lFbrXnA==", "dev": true, "license": "MIT", "dependencies": { "accepts": "~1.3.8", "array-flatten": "1.1.1", "body-parser": "1.20.3", "content-disposition": "0.5.4", "content-type": "~1.0.4", "cookie": "0.7.1", "cookie-signature": "1.0.6", "debug": "2.6.9", "depd": "2.0.0", "encodeurl": "~2.0.0", "escape-html": "~1.0.3", "etag": "~1.8.1", "finalhandler": "1.3.1", "fresh": "0.5.2", "http-errors": "2.0.0", "merge-descriptors": "1.0.3", "methods": "~1.1.2", "on-finished": "2.4.1", "parseurl": "~1.3.3", "path-to-regexp": "0.1.12", "proxy-addr": "~2.0.7", "qs": "6.13.0", "range-parser": "~1.2.1", "safe-buffer": "5.2.1", "send": "0.19.0", "serve-static": "1.16.2", "setprototypeof": "1.2.0", "statuses": "2.0.1", "type-is": "~1.6.18", "utils-merge": "1.0.1", "vary": "~1.1.2" }, "engines": { "node": ">= 0.10.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/express" } }, "node_modules/express/node_modules/debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, "license": "MIT", "dependencies": { "ms": "2.0.0" } }, "node_modules/express/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true, "license": "MIT" }, "node_modules/express/node_modules/safe-buffer": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", "dev": true, "funding": [ { "type": "github", "url": "https://github.com/sponsors/feross" }, { "type": "patreon", "url": "https://www.patreon.com/feross" }, { "type": "consulting", "url": "https://feross.org/support" } ], "license": "MIT" }, "node_modules/external-editor": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", "dev": true, "license": "MIT", "dependencies": { "chardet": "^0.7.0", "iconv-lite": "^0.4.24", "tmp": "^0.0.33" }, "engines": { "node": ">=4" } }, "node_modules/fast-content-type-parse": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/fast-content-type-parse/-/fast-content-type-parse-2.0.1.tgz", "integrity": "sha512-nGqtvLrj5w0naR6tDPfB4cUmYCqouzyQiz6C5y/LtcDllJdrcc6WaWW6iXyIIOErTa/XRybj28aasdn4LkVk6Q==", "dev": true, "funding": [ { "type": "github", "url": "https://github.com/sponsors/fastify" }, { "type": "opencollective", "url": "https://opencollective.com/fastify" } ], "license": "MIT" }, "node_modules/fast-deep-equal": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", "license": "MIT" }, "node_modules/fast-glob": { "version": "3.3.3", "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.3.tgz", "integrity": "sha512-7MptL8U0cqcFdzIzwOTHoilX9x5BrNqye7Z/LuC7kCMRio1EMSyqRK3BEAUD7sXRq4iT4AzTVuZdhgQ2TCvYLg==", "dev": true, "license": "MIT", "dependencies": { "@nodelib/fs.stat": "^2.0.2", "@nodelib/fs.walk": "^1.2.3", "glob-parent": "^5.1.2", "merge2": "^1.3.0", "micromatch": "^4.0.8" }, "engines": { "node": ">=8.6.0" } }, "node_modules/fast-glob/node_modules/glob-parent": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, "license": "ISC", "dependencies": { "is-glob": "^4.0.1" }, "engines": { "node": ">= 6" } }, "node_modules/fast-json-stable-stringify": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", "license": "MIT" }, "node_modules/fast-levenshtein": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", "dev": true, "license": "MIT" }, "node_modules/fast-uri": { "version": "3.0.5", "resolved": "https://registry.npmjs.org/fast-uri/-/fast-uri-3.0.5.tgz", "integrity": "sha512-5JnBCWpFlMo0a3ciDy/JckMzzv1U9coZrIhedq+HXxxUfDTAiS0LA8OKVao4G9BxmCVck/jtA5r3KAtRWEyD8Q==", "funding": [ { "type": "github", "url": "https://github.com/sponsors/fastify" }, { "type": "opencollective", "url": "https://opencollective.com/fastify" } ], "license": "BSD-3-Clause" }, "node_modules/fastest-levenshtein": { "version": "1.0.16", "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.16.tgz", "integrity": "sha512-eRnCtTTtGZFpQCwhJiUOuxPQWRXVKYDn0b2PeHfXL6/Zi53SLAzAHfVhVWK2AryC/WH05kGfxhFIPvTF0SXQzg==", "dev": true, "license": "MIT", "engines": { "node": ">= 4.9.1" } }, "node_modules/fastq": { "version": "1.18.0", "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.18.0.tgz", "integrity": "sha512-QKHXPW0hD8g4UET03SdOdunzSouc9N4AuHdsX8XNcTsuz+yYFILVNIX4l9yHABMhiEI9Db0JTTIpu0wB+Y1QQw==", "dev": true, "license": "ISC", "dependencies": { "reusify": "^1.0.4" } }, "node_modules/faye-websocket": { "version": "0.11.4", "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", "dev": true, "license": "Apache-2.0", "dependencies": { "websocket-driver": ">=0.5.1" }, "engines": { "node": ">=0.8.0" } }, "node_modules/figures": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", "dev": true, "license": "MIT", "dependencies": { "escape-string-regexp": "^1.0.5" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/figures/node_modules/escape-string-regexp": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "dev": true, "license": "MIT", "engines": { "node": ">=0.8.0" } }, "node_modules/file-entry-cache": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", "dev": true, "license": "MIT", "dependencies": { "flat-cache": "^3.0.4" }, "engines": { "node": "^10.12.0 || >=12.0.0" } }, "node_modules/fill-range": { "version": "7.1.1", "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.1.1.tgz", "integrity": "sha512-YsGpe3WHLK8ZYi4tWDg2Jy3ebRz2rXowDxnld4bkQB00cc/1Zw9AWnC0i9ztDJitivtQvaI9KaLyKrc+hBW0yg==", "license": "MIT", "dependencies": { "to-regex-range": "^5.0.1" }, "engines": { "node": ">=8" } }, "node_modules/finalhandler": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.3.1.tgz", "integrity": "sha512-6BN9trH7bp3qvnrRyzsBz+g3lZxTNZTbVO2EV1CS0WIcDbawYVdYvGflME/9QP0h0pYlCDBCTjYa9nZzMDpyxQ==", "dev": true, "license": "MIT", "dependencies": { "debug": "2.6.9", "encodeurl": "~2.0.0", "escape-html": "~1.0.3", "on-finished": "2.4.1", "parseurl": "~1.3.3", "statuses": "2.0.1", "unpipe": "~1.0.0" }, "engines": { "node": ">= 0.8" } }, "node_modules/finalhandler/node_modules/debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, "license": "MIT", "dependencies": { "ms": "2.0.0" } }, "node_modules/finalhandler/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true, "license": "MIT" }, "node_modules/find-cache-dir": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-4.0.0.tgz", "integrity": "sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==", "dev": true, "license": "MIT", "dependencies": { "common-path-prefix": "^3.0.0", "pkg-dir": "^7.0.0" }, "engines": { "node": ">=14.16" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/find-node-modules": { "version": "2.1.3", "resolved": "https://registry.npmjs.org/find-node-modules/-/find-node-modules-2.1.3.tgz", "integrity": "sha512-UC2I2+nx1ZuOBclWVNdcnbDR5dlrOdVb7xNjmT/lHE+LsgztWks3dG7boJ37yTS/venXw84B/mAW9uHVoC5QRg==", "dev": true, "license": "MIT", "dependencies": { "findup-sync": "^4.0.0", "merge": "^2.1.1" } }, "node_modules/find-root": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/find-root/-/find-root-1.1.0.tgz", "integrity": "sha512-NKfW6bec6GfKc0SGx1e07QZY9PE99u0Bft/0rzSD5k3sO/vwkVUpDUKVm5Gpp5Ue3YfShPFTX2070tDs5kB9Ng==", "dev": true, "license": "MIT" }, "node_modules/find-up": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", "license": "MIT", "dependencies": { "locate-path": "^6.0.0", "path-exists": "^4.0.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/find-up-simple": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/find-up-simple/-/find-up-simple-1.0.0.tgz", "integrity": "sha512-q7Us7kcjj2VMePAa02hDAF6d+MzsdsAWEwYyOpwUtlerRBkOEPBCRZrAV4XfcSN8fHAgaD0hP7miwoay6DCprw==", "dev": true, "license": "MIT", "engines": { "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/find-versions": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/find-versions/-/find-versions-6.0.0.tgz", "integrity": "sha512-2kCCtc+JvcZ86IGAz3Z2Y0A1baIz9fL31pH/0S1IqZr9Iwnjq8izfPtrCyQKO6TLMPELLsQMre7VDqeIKCsHkA==", "dev": true, "license": "MIT", "dependencies": { "semver-regex": "^4.0.5", "super-regex": "^1.0.0" }, "engines": { "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/findup-sync": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-4.0.0.tgz", "integrity": "sha512-6jvvn/12IC4quLBL1KNokxC7wWTvYncaVUYSoxWw7YykPLuRrnv4qdHcSOywOI5RpkOVGeQRtWM8/q+G6W6qfQ==", "dev": true, "license": "MIT", "dependencies": { "detect-file": "^1.0.0", "is-glob": "^4.0.0", "micromatch": "^4.0.2", "resolve-dir": "^1.0.1" }, "engines": { "node": ">= 8" } }, "node_modules/flat": { "version": "5.0.2", "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", "license": "BSD-3-Clause", "bin": { "flat": "cli.js" } }, "node_modules/flat-cache": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.2.0.tgz", "integrity": "sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==", "dev": true, "license": "MIT", "dependencies": { "flatted": "^3.2.9", "keyv": "^4.5.3", "rimraf": "^3.0.2" }, "engines": { "node": "^10.12.0 || >=12.0.0" } }, "node_modules/flatted": { "version": "3.3.2", "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.3.2.tgz", "integrity": "sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==", "dev": true, "license": "ISC" }, "node_modules/follow-redirects": { "version": "1.15.9", "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.9.tgz", "integrity": "sha512-gew4GsXizNgdoRyqmyfMHyAmXsZDk6mHkSxZFCzW9gwlbtOW44CDtYavM+y+72qD/Vq2l550kMF52DT8fOLJqQ==", "dev": true, "funding": [ { "type": "individual", "url": "https://github.com/sponsors/RubenVerborgh" } ], "license": "MIT", "engines": { "node": ">=4.0" }, "peerDependenciesMeta": { "debug": { "optional": true } } }, "node_modules/foreground-child": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.3.0.tgz", "integrity": "sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==", "dev": true, "license": "ISC", "dependencies": { "cross-spawn": "^7.0.0", "signal-exit": "^4.0.1" }, "engines": { "node": ">=14" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/foreground-child/node_modules/signal-exit": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", "dev": true, "license": "ISC", "engines": { "node": ">=14" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/forwarded": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", "dev": true, "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/fraction.js": { "version": "4.3.7", "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", "dev": true, "license": "MIT", "engines": { "node": "*" }, "funding": { "type": "patreon", "url": "https://github.com/sponsors/rawify" } }, "node_modules/fresh": { "version": "0.5.2", "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", "dev": true, "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/from2": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", "integrity": "sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==", "dev": true, "license": "MIT", "dependencies": { "inherits": "^2.0.1", "readable-stream": "^2.0.0" } }, "node_modules/fs-extra": { "version": "11.3.0", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.0.tgz", "integrity": "sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew==", "dev": true, "license": "MIT", "dependencies": { "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", "universalify": "^2.0.0" }, "engines": { "node": ">=14.14" } }, "node_modules/fs.realpath": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", "license": "ISC" }, "node_modules/fsevents": { "version": "2.3.3", "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", "hasInstallScript": true, "license": "MIT", "optional": true, "os": [ "darwin" ], "engines": { "node": "^8.16.0 || ^10.6.0 || >=11.0.0" } }, "node_modules/function-bind": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", "dev": true, "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/function-timeout": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/function-timeout/-/function-timeout-1.0.2.tgz", "integrity": "sha512-939eZS4gJ3htTHAldmyyuzlrD58P03fHG49v2JfFXbV6OhvZKRC9j2yAtdHw/zrp2zXHuv05zMIy40F0ge7spA==", "dev": true, "license": "MIT", "engines": { "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/gensync": { "version": "1.0.0-beta.2", "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", "license": "MIT", "engines": { "node": ">=6.9.0" } }, "node_modules/get-caller-file": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", "dev": true, "license": "ISC", "engines": { "node": "6.* || 8.* || >= 10.*" } }, "node_modules/get-intrinsic": { "version": "1.2.7", "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.7.tgz", "integrity": "sha512-VW6Pxhsrk0KAOqs3WEd0klDiF/+V7gQOpAvY1jVU/LHmaD/kQO4523aiJuikX/QAKYiW6x8Jh+RJej1almdtCA==", "dev": true, "license": "MIT", "dependencies": { "call-bind-apply-helpers": "^1.0.1", "es-define-property": "^1.0.1", "es-errors": "^1.3.0", "es-object-atoms": "^1.0.0", "function-bind": "^1.1.2", "get-proto": "^1.0.0", "gopd": "^1.2.0", "has-symbols": "^1.1.0", "hasown": "^2.0.2", "math-intrinsics": "^1.1.0" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/get-proto": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/get-proto/-/get-proto-1.0.1.tgz", "integrity": "sha512-sTSfBjoXBp89JvIKIefqw7U2CCebsc74kiY6awiGogKtoSGbgjYE/G/+l9sF3MWFPNc9IcoOC4ODfKHfxFmp0g==", "dev": true, "license": "MIT", "dependencies": { "dunder-proto": "^1.0.1", "es-object-atoms": "^1.0.0" }, "engines": { "node": ">= 0.4" } }, "node_modules/get-stream": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-7.0.1.tgz", "integrity": "sha512-3M8C1EOFN6r8AMUhwUAACIoXZJEOufDU5+0gFFN5uNs6XYOralD2Pqkl7m046va6x77FwposWXbAhPPIOus7mQ==", "dev": true, "license": "MIT", "engines": { "node": ">=16" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/git-log-parser": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/git-log-parser/-/git-log-parser-1.2.1.tgz", "integrity": "sha512-PI+sPDvHXNPl5WNOErAK05s3j0lgwUzMN6o8cyQrDaKfT3qd7TmNJKeXX+SknI5I0QhG5fVPAEwSY4tRGDtYoQ==", "dev": true, "license": "MIT", "dependencies": { "argv-formatter": "~1.0.0", "spawn-error-forwarder": "~1.0.0", "split2": "~1.0.0", "stream-combiner2": "~1.1.1", "through2": "~2.0.0", "traverse": "0.6.8" } }, "node_modules/git-log-parser/node_modules/split2": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/split2/-/split2-1.0.0.tgz", "integrity": "sha512-NKywug4u4pX/AZBB1FCPzZ6/7O+Xhz1qMVbzTvvKvikjO99oPN87SkK08mEY9P63/5lWjK+wgOOgApnTg5r6qg==", "dev": true, "license": "ISC", "dependencies": { "through2": "~2.0.0" } }, "node_modules/git-log-parser/node_modules/through2": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", "dev": true, "license": "MIT", "dependencies": { "readable-stream": "~2.3.6", "xtend": "~4.0.1" } }, "node_modules/git-raw-commits": { "version": "2.0.11", "resolved": "https://registry.npmjs.org/git-raw-commits/-/git-raw-commits-2.0.11.tgz", "integrity": "sha512-VnctFhw+xfj8Va1xtfEqCUD2XDrbAPSJx+hSrE5K7fGdjZruW7XV+QOrN7LF/RJyvspRiD2I0asWsxFp0ya26A==", "dev": true, "license": "MIT", "dependencies": { "dargs": "^7.0.0", "lodash": "^4.17.15", "meow": "^8.0.0", "split2": "^3.0.0", "through2": "^4.0.0" }, "bin": { "git-raw-commits": "cli.js" }, "engines": { "node": ">=10" } }, "node_modules/git-raw-commits/node_modules/hosted-git-info": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", "dev": true, "license": "ISC", "dependencies": { "lru-cache": "^6.0.0" }, "engines": { "node": ">=10" } }, "node_modules/git-raw-commits/node_modules/lru-cache": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dev": true, "license": "ISC", "dependencies": { "yallist": "^4.0.0" }, "engines": { "node": ">=10" } }, "node_modules/git-raw-commits/node_modules/meow": { "version": "8.1.2", "resolved": "https://registry.npmjs.org/meow/-/meow-8.1.2.tgz", "integrity": "sha512-r85E3NdZ+mpYk1C6RjPFEMSE+s1iZMuHtsHAqY0DT3jZczl0diWUZ8g6oU7h0M9cD2EL+PzaYghhCLzR0ZNn5Q==", "dev": true, "license": "MIT", "dependencies": { "@types/minimist": "^1.2.0", "camelcase-keys": "^6.2.2", "decamelize-keys": "^1.1.0", "hard-rejection": "^2.1.0", "minimist-options": "4.1.0", "normalize-package-data": "^3.0.0", "read-pkg-up": "^7.0.1", "redent": "^3.0.0", "trim-newlines": "^3.0.0", "type-fest": "^0.18.0", "yargs-parser": "^20.2.3" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/git-raw-commits/node_modules/normalize-package-data": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", "dev": true, "license": "BSD-2-Clause", "dependencies": { "hosted-git-info": "^4.0.1", "is-core-module": "^2.5.0", "semver": "^7.3.4", "validate-npm-package-license": "^3.0.1" }, "engines": { "node": ">=10" } }, "node_modules/git-raw-commits/node_modules/semver": { "version": "7.6.3", "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", "dev": true, "license": "ISC", "bin": { "semver": "bin/semver.js" }, "engines": { "node": ">=10" } }, "node_modules/git-raw-commits/node_modules/type-fest": { "version": "0.18.1", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", "dev": true, "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/git-raw-commits/node_modules/yallist": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true, "license": "ISC" }, "node_modules/git-raw-commits/node_modules/yargs-parser": { "version": "20.2.9", "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", "dev": true, "license": "ISC", "engines": { "node": ">=10" } }, "node_modules/glob": { "version": "9.3.5", "resolved": "https://registry.npmjs.org/glob/-/glob-9.3.5.tgz", "integrity": "sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==", "dependencies": { "fs.realpath": "^1.0.0", "minimatch": "^8.0.2", "minipass": "^4.2.4", "path-scurry": "^1.6.1" }, "engines": { "node": ">=16 || 14 >=14.17" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/glob-parent": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", "dev": true, "license": "ISC", "dependencies": { "is-glob": "^4.0.3" }, "engines": { "node": ">=10.13.0" } }, "node_modules/glob-to-regexp": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", "license": "BSD-2-Clause" }, "node_modules/glob/node_modules/brace-expansion": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "dependencies": { "balanced-match": "^1.0.0" } }, "node_modules/glob/node_modules/minimatch": { "version": "8.0.4", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-8.0.4.tgz", "integrity": "sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==", "dependencies": { "brace-expansion": "^2.0.1" }, "engines": { "node": ">=16 || 14 >=14.17" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/global-dirs": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-0.1.1.tgz", "integrity": "sha512-NknMLn7F2J7aflwFOlGdNIuCDpN3VGoSoB+aap3KABFWbHVn1TCgFC+np23J8W2BiZbjfEw3BFBycSMv1AFblg==", "dev": true, "license": "MIT", "dependencies": { "ini": "^1.3.4" }, "engines": { "node": ">=4" } }, "node_modules/global-modules": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", "dev": true, "license": "MIT", "dependencies": { "global-prefix": "^1.0.1", "is-windows": "^1.0.1", "resolve-dir": "^1.0.0" }, "engines": { "node": ">=0.10.0" } }, "node_modules/global-prefix": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", "integrity": "sha512-5lsx1NUDHtSjfg0eHlmYvZKv8/nVqX4ckFbM+FrGcQ+04KWcWFo9P5MxPZYSzUvyzmdTbI7Eix8Q4IbELDqzKg==", "dev": true, "license": "MIT", "dependencies": { "expand-tilde": "^2.0.2", "homedir-polyfill": "^1.0.1", "ini": "^1.3.4", "is-windows": "^1.0.1", "which": "^1.2.14" }, "engines": { "node": ">=0.10.0" } }, "node_modules/global-prefix/node_modules/which": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", "dev": true, "license": "ISC", "dependencies": { "isexe": "^2.0.0" }, "bin": { "which": "bin/which" } }, "node_modules/globals": { "version": "11.12.0", "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/globby": { "version": "13.2.2", "resolved": "https://registry.npmjs.org/globby/-/globby-13.2.2.tgz", "integrity": "sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==", "dev": true, "license": "MIT", "dependencies": { "dir-glob": "^3.0.1", "fast-glob": "^3.3.0", "ignore": "^5.2.4", "merge2": "^1.4.1", "slash": "^4.0.0" }, "engines": { "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/gopd": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.2.0.tgz", "integrity": "sha512-ZUKRh6/kUFoAiTAtTYPZJ3hw9wNxx+BIBOijnlG9PnrJsCcSjs1wyyD6vJpaYtgnzDrKYRSqf3OO6Rfa93xsRg==", "dev": true, "license": "MIT", "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/graceful-fs": { "version": "4.2.11", "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", "license": "ISC" }, "node_modules/graphemer": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", "dev": true, "license": "MIT" }, "node_modules/gzip-size": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz", "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==", "dev": true, "license": "MIT", "dependencies": { "duplexer": "^0.1.2" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/handle-thing": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", "dev": true, "license": "MIT" }, "node_modules/handlebars": { "version": "4.7.8", "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.8.tgz", "integrity": "sha512-vafaFqs8MZkRrSX7sFVUdo3ap/eNiLnb4IakshzvP56X5Nr1iGKAIqdX6tMlm6HcNRIkr6AxO5jFEoJzzpT8aQ==", "dev": true, "license": "MIT", "dependencies": { "minimist": "^1.2.5", "neo-async": "^2.6.2", "source-map": "^0.6.1", "wordwrap": "^1.0.0" }, "bin": { "handlebars": "bin/handlebars" }, "engines": { "node": ">=0.4.7" }, "optionalDependencies": { "uglify-js": "^3.1.4" } }, "node_modules/hard-rejection": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz", "integrity": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==", "dev": true, "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/has-symbols": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.1.0.tgz", "integrity": "sha512-1cDNdwJ2Jaohmb3sg4OmKaMBwuC48sYni5HUw2DvsC8LjGTLK9h+eb1X6RyuOHe4hT0ULCW68iomhjUoKUqlPQ==", "dev": true, "license": "MIT", "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/hasown": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", "dev": true, "license": "MIT", "dependencies": { "function-bind": "^1.1.2" }, "engines": { "node": ">= 0.4" } }, "node_modules/he": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", "dev": true, "license": "MIT", "bin": { "he": "bin/he" } }, "node_modules/highlight.js": { "version": "10.7.3", "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-10.7.3.tgz", "integrity": "sha512-tzcUFauisWKNHaRkN4Wjl/ZA07gENAjFl3J/c480dprkGTg5EQstgaNFqBfUqCq54kZRIEcreTsAgF/m2quD7A==", "dev": true, "license": "BSD-3-Clause", "engines": { "node": "*" } }, "node_modules/hoist-non-react-statics": { "version": "3.3.2", "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.2.tgz", "integrity": "sha512-/gGivxi8JPKWNm/W0jSmzcMPpfpPLc3dY/6GxhX2hQ9iGj3aDfklV4ET7NjKpSinLpJ5vafa9iiGIEZg10SfBw==", "license": "BSD-3-Clause", "dependencies": { "react-is": "^16.7.0" } }, "node_modules/homedir-polyfill": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", "dev": true, "license": "MIT", "dependencies": { "parse-passwd": "^1.0.0" }, "engines": { "node": ">=0.10.0" } }, "node_modules/hook-std": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/hook-std/-/hook-std-3.0.0.tgz", "integrity": "sha512-jHRQzjSDzMtFy34AGj1DN+vq54WVuhSvKgrHf0OMiFQTwDD4L/qqofVEWjLOBMTn5+lCD3fPg32W9yOfnEJTTw==", "dev": true, "license": "MIT", "engines": { "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/hosted-git-info": { "version": "7.0.2", "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.2.tgz", "integrity": "sha512-puUZAUKT5m8Zzvs72XWy3HtvVbTWljRE66cP60bxJzAqf2DgICo7lYTY2IHUmLnNpjYvw5bvmoHvPc0QO2a62w==", "dev": true, "license": "ISC", "dependencies": { "lru-cache": "^10.0.1" }, "engines": { "node": "^16.14.0 || >=18.0.0" } }, "node_modules/hosted-git-info/node_modules/lru-cache": { "version": "10.4.3", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", "dev": true, "license": "ISC" }, "node_modules/hpack.js": { "version": "2.1.6", "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", "dev": true, "license": "MIT", "dependencies": { "inherits": "^2.0.1", "obuf": "^1.0.0", "readable-stream": "^2.0.1", "wbuf": "^1.1.0" } }, "node_modules/html-escaper": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", "dev": true, "license": "MIT" }, "node_modules/html-minifier-terser": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", "integrity": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==", "dev": true, "license": "MIT", "dependencies": { "camel-case": "^4.1.2", "clean-css": "^5.2.2", "commander": "^8.3.0", "he": "^1.2.0", "param-case": "^3.0.4", "relateurl": "^0.2.7", "terser": "^5.10.0" }, "bin": { "html-minifier-terser": "cli.js" }, "engines": { "node": ">=12" } }, "node_modules/html-webpack-plugin": { "version": "5.6.3", "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.6.3.tgz", "integrity": "sha512-QSf1yjtSAsmf7rYBV7XX86uua4W/vkhIt0xNXKbsi2foEeW7vjJQz4bhnpL3xH+l1ryl1680uNv968Z+X6jSYg==", "dev": true, "license": "MIT", "dependencies": { "@types/html-minifier-terser": "^6.0.0", "html-minifier-terser": "^6.0.2", "lodash": "^4.17.21", "pretty-error": "^4.0.0", "tapable": "^2.0.0" }, "engines": { "node": ">=10.13.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/html-webpack-plugin" }, "peerDependencies": { "@rspack/core": "0.x || 1.x", "webpack": "^5.20.0" }, "peerDependenciesMeta": { "@rspack/core": { "optional": true }, "webpack": { "optional": true } } }, "node_modules/htmlparser2": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", "dev": true, "funding": [ "https://github.com/fb55/htmlparser2?sponsor=1", { "type": "github", "url": "https://github.com/sponsors/fb55" } ], "license": "MIT", "dependencies": { "domelementtype": "^2.0.1", "domhandler": "^4.0.0", "domutils": "^2.5.2", "entities": "^2.0.0" } }, "node_modules/http-deceiver": { "version": "1.2.7", "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==", "dev": true, "license": "MIT" }, "node_modules/http-errors": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", "dev": true, "license": "MIT", "dependencies": { "depd": "2.0.0", "inherits": "2.0.4", "setprototypeof": "1.2.0", "statuses": "2.0.1", "toidentifier": "1.0.1" }, "engines": { "node": ">= 0.8" } }, "node_modules/http-parser-js": { "version": "0.5.9", "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.9.tgz", "integrity": "sha512-n1XsPy3rXVxlqxVioEWdC+0+M+SQw0DpJynwtOPo1X+ZlvdzTLtDBIJJlDQTnwZIFJrZSzSGmIOUdP8tu+SgLw==", "dev": true, "license": "MIT" }, "node_modules/http-proxy": { "version": "1.18.1", "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", "dev": true, "license": "MIT", "dependencies": { "eventemitter3": "^4.0.0", "follow-redirects": "^1.0.0", "requires-port": "^1.0.0" }, "engines": { "node": ">=8.0.0" } }, "node_modules/http-proxy-agent": { "version": "7.0.2", "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz", "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==", "dev": true, "license": "MIT", "dependencies": { "agent-base": "^7.1.0", "debug": "^4.3.4" }, "engines": { "node": ">= 14" } }, "node_modules/http-proxy-agent/node_modules/agent-base": { "version": "7.1.3", "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.3.tgz", "integrity": "sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==", "dev": true, "license": "MIT", "engines": { "node": ">= 14" } }, "node_modules/http-proxy-middleware": { "version": "2.0.7", "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.7.tgz", "integrity": "sha512-fgVY8AV7qU7z/MmXJ/rxwbrtQH4jBQ9m7kp3llF0liB7glmFeVZFBepQb32T3y8n8k2+AEYuMPCpinYW+/CuRA==", "dev": true, "license": "MIT", "dependencies": { "@types/http-proxy": "^1.17.8", "http-proxy": "^1.18.1", "is-glob": "^4.0.1", "is-plain-obj": "^3.0.0", "micromatch": "^4.0.2" }, "engines": { "node": ">=12.0.0" }, "peerDependencies": { "@types/express": "^4.17.13" }, "peerDependenciesMeta": { "@types/express": { "optional": true } } }, "node_modules/https-proxy-agent": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", "dependencies": { "agent-base": "6", "debug": "4" }, "engines": { "node": ">= 6" } }, "node_modules/human-signals": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", "dev": true, "license": "Apache-2.0", "engines": { "node": ">=10.17.0" } }, "node_modules/husky": { "version": "8.0.3", "resolved": "https://registry.npmjs.org/husky/-/husky-8.0.3.tgz", "integrity": "sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==", "dev": true, "license": "MIT", "bin": { "husky": "lib/bin.js" }, "engines": { "node": ">=14" }, "funding": { "url": "https://github.com/sponsors/typicode" } }, "node_modules/hyperdyperid": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/hyperdyperid/-/hyperdyperid-1.2.0.tgz", "integrity": "sha512-Y93lCzHYgGWdrJ66yIktxiaGULYc6oGiABxhcO5AufBeOyoIdZF7bIfLaOrbM0iGIOXQQgxxRrFEnb+Y6w1n4A==", "dev": true, "license": "MIT", "engines": { "node": ">=10.18" } }, "node_modules/iconv-lite": { "version": "0.4.24", "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", "dev": true, "license": "MIT", "dependencies": { "safer-buffer": ">= 2.1.2 < 3" }, "engines": { "node": ">=0.10.0" } }, "node_modules/icss-utils": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", "dev": true, "license": "ISC", "engines": { "node": "^10 || ^12 || >= 14" }, "peerDependencies": { "postcss": "^8.1.0" } }, "node_modules/ieee754": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", "dev": true, "funding": [ { "type": "github", "url": "https://github.com/sponsors/feross" }, { "type": "patreon", "url": "https://www.patreon.com/feross" }, { "type": "consulting", "url": "https://feross.org/support" } ], "license": "BSD-3-Clause" }, "node_modules/ignore": { "version": "5.3.2", "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.2.tgz", "integrity": "sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==", "dev": true, "license": "MIT", "engines": { "node": ">= 4" } }, "node_modules/import-fresh": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", "dev": true, "license": "MIT", "dependencies": { "parent-module": "^1.0.0", "resolve-from": "^4.0.0" }, "engines": { "node": ">=6" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/import-fresh/node_modules/resolve-from": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", "dev": true, "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/import-from-esm": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/import-from-esm/-/import-from-esm-2.0.0.tgz", "integrity": "sha512-YVt14UZCgsX1vZQ3gKjkWVdBdHQ6eu3MPU1TBgL1H5orXe2+jWD006WCPPtOuwlQm10NuzOW5WawiF1Q9veW8g==", "dev": true, "license": "MIT", "dependencies": { "debug": "^4.3.4", "import-meta-resolve": "^4.0.0" }, "engines": { "node": ">=18.20" } }, "node_modules/import-local": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.2.0.tgz", "integrity": "sha512-2SPlun1JUPWoM6t3F0dw0FkCF/jWY8kttcY4f599GLTSjh2OCuuhdTkJQsEcZzBqbXZGKMK2OqW1oZsjtf/gQA==", "dev": true, "license": "MIT", "dependencies": { "pkg-dir": "^4.2.0", "resolve-cwd": "^3.0.0" }, "bin": { "import-local-fixture": "fixtures/cli.js" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/import-local/node_modules/find-up": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", "dev": true, "license": "MIT", "dependencies": { "locate-path": "^5.0.0", "path-exists": "^4.0.0" }, "engines": { "node": ">=8" } }, "node_modules/import-local/node_modules/locate-path": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "dev": true, "license": "MIT", "dependencies": { "p-locate": "^4.1.0" }, "engines": { "node": ">=8" } }, "node_modules/import-local/node_modules/p-limit": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, "license": "MIT", "dependencies": { "p-try": "^2.0.0" }, "engines": { "node": ">=6" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/import-local/node_modules/p-locate": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "dev": true, "license": "MIT", "dependencies": { "p-limit": "^2.2.0" }, "engines": { "node": ">=8" } }, "node_modules/import-local/node_modules/pkg-dir": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", "dev": true, "license": "MIT", "dependencies": { "find-up": "^4.0.0" }, "engines": { "node": ">=8" } }, "node_modules/import-meta-resolve": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/import-meta-resolve/-/import-meta-resolve-4.1.0.tgz", "integrity": "sha512-I6fiaX09Xivtk+THaMfAwnA3MVA5Big1WHF1Dfx9hFuvNIWpXnorlkzhcQf6ehrqQiiZECRt1poOAkPmer3ruw==", "dev": true, "license": "MIT", "funding": { "type": "github", "url": "https://github.com/sponsors/wooorm" } }, "node_modules/imurmurhash": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", "dev": true, "license": "MIT", "engines": { "node": ">=0.8.19" } }, "node_modules/indent-string": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", "dev": true, "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/index-to-position": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/index-to-position/-/index-to-position-0.1.2.tgz", "integrity": "sha512-MWDKS3AS1bGCHLBA2VLImJz42f7bJh8wQsTGCzI3j519/CASStoDONUBVz2I/VID0MpiX3SGSnbOD2xUalbE5g==", "dev": true, "license": "MIT", "engines": { "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/inflight": { "version": "1.0.6", "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", "deprecated": "This module is not supported, and leaks memory. Do not use it. Check out lru-cache if you want a good and tested way to coalesce async requests by a key value, which is much more comprehensive and powerful.", "dev": true, "license": "ISC", "dependencies": { "once": "^1.3.0", "wrappy": "1" } }, "node_modules/inherits": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", "dev": true, "license": "ISC" }, "node_modules/ini": { "version": "1.3.8", "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", "dev": true, "license": "ISC" }, "node_modules/inquirer": { "version": "8.2.5", "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-8.2.5.tgz", "integrity": "sha512-QAgPDQMEgrDssk1XiwwHoOGYF9BAbUcc1+j+FhEvaOt8/cKRqyLn0U5qA6F74fGhTMGxf92pOvPBeh29jQJDTQ==", "dev": true, "license": "MIT", "dependencies": { "ansi-escapes": "^4.2.1", "chalk": "^4.1.1", "cli-cursor": "^3.1.0", "cli-width": "^3.0.0", "external-editor": "^3.0.3", "figures": "^3.0.0", "lodash": "^4.17.21", "mute-stream": "0.0.8", "ora": "^5.4.1", "run-async": "^2.4.0", "rxjs": "^7.5.5", "string-width": "^4.1.0", "strip-ansi": "^6.0.0", "through": "^2.3.6", "wrap-ansi": "^7.0.0" }, "engines": { "node": ">=12.0.0" } }, "node_modules/interpret": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/interpret/-/interpret-3.1.1.tgz", "integrity": "sha512-6xwYfHbajpoF0xLW+iwLkhwgvLoZDfjYfoFNu8ftMoXINzwuymNLd9u/KmwtdT2GbR+/Cz66otEGEVVUHX9QLQ==", "dev": true, "license": "MIT", "engines": { "node": ">=10.13.0" } }, "node_modules/into-stream": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/into-stream/-/into-stream-7.0.0.tgz", "integrity": "sha512-2dYz766i9HprMBasCMvHMuazJ7u4WzhJwo5kb3iPSiW/iRYV6uPari3zHoqZlnuaR7V1bEiNMxikhp37rdBXbw==", "dev": true, "license": "MIT", "dependencies": { "from2": "^2.3.0", "p-is-promise": "^3.0.0" }, "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/ipaddr.js": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.2.0.tgz", "integrity": "sha512-Ag3wB2o37wslZS19hZqorUnrnzSkpOVy+IiiDEiTqNubEYpYuHWIf6K4psgN2ZWKExS4xhVCrRVfb/wfW8fWJA==", "dev": true, "license": "MIT", "engines": { "node": ">= 10" } }, "node_modules/is-arrayish": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", "dev": true, "license": "MIT" }, "node_modules/is-binary-path": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", "license": "MIT", "dependencies": { "binary-extensions": "^2.0.0" }, "engines": { "node": ">=8" } }, "node_modules/is-core-module": { "version": "2.16.1", "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.16.1.tgz", "integrity": "sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==", "dev": true, "license": "MIT", "dependencies": { "hasown": "^2.0.2" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/is-docker": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", "dev": true, "license": "MIT", "bin": { "is-docker": "cli.js" }, "engines": { "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/is-extglob": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/is-fullwidth-code-point": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "dev": true, "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/is-glob": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "license": "MIT", "dependencies": { "is-extglob": "^2.1.1" }, "engines": { "node": ">=0.10.0" } }, "node_modules/is-inside-container": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", "dev": true, "license": "MIT", "dependencies": { "is-docker": "^3.0.0" }, "bin": { "is-inside-container": "cli.js" }, "engines": { "node": ">=14.16" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/is-interactive": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", "dev": true, "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/is-network-error": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/is-network-error/-/is-network-error-1.1.0.tgz", "integrity": "sha512-tUdRRAnhT+OtCZR/LxZelH/C7QtjtFrTu5tXCA8pl55eTUElUHT+GPYV8MBMBvea/j+NxQqVt3LbWMRir7Gx9g==", "dev": true, "license": "MIT", "engines": { "node": ">=16" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/is-number": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", "license": "MIT", "engines": { "node": ">=0.12.0" } }, "node_modules/is-obj": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", "dev": true, "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/is-path-inside": { "version": "3.0.3", "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", "dev": true, "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/is-plain-obj": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", "dev": true, "license": "MIT", "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/is-plain-object": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", "license": "MIT", "dependencies": { "isobject": "^3.0.1" }, "engines": { "node": ">=0.10.0" } }, "node_modules/is-stream": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", "dev": true, "license": "MIT", "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/is-text-path": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/is-text-path/-/is-text-path-1.0.1.tgz", "integrity": "sha512-xFuJpne9oFz5qDaodwmmG08e3CawH/2ZV8Qqza1Ko7Sk8POWbkRdwIoAWVhqvq0XeUzANEhKo2n0IXUGBm7A/w==", "dev": true, "license": "MIT", "dependencies": { "text-extensions": "^1.0.0" }, "engines": { "node": ">=0.10.0" } }, "node_modules/is-unicode-supported": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", "dev": true, "license": "MIT", "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/is-utf8": { "version": "0.2.1", "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", "integrity": "sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==", "dev": true, "license": "MIT" }, "node_modules/is-windows": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/is-wsl": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.0.tgz", "integrity": "sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==", "dev": true, "license": "MIT", "dependencies": { "is-inside-container": "^1.0.0" }, "engines": { "node": ">=16" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/isarray": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", "dev": true, "license": "MIT" }, "node_modules/isexe": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", "license": "ISC" }, "node_modules/isobject": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/issue-parser": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/issue-parser/-/issue-parser-7.0.1.tgz", "integrity": "sha512-3YZcUUR2Wt1WsapF+S/WiA2WmlW0cWAoPccMqne7AxEBhCdFeTPjfv/Axb8V2gyCgY3nRw+ksZ3xSUX+R47iAg==", "dev": true, "license": "MIT", "dependencies": { "lodash.capitalize": "^4.2.1", "lodash.escaperegexp": "^4.1.2", "lodash.isplainobject": "^4.0.6", "lodash.isstring": "^4.0.1", "lodash.uniqby": "^4.7.0" }, "engines": { "node": "^18.17 || >=20.6.1" } }, "node_modules/jackspeak": { "version": "3.4.3", "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-3.4.3.tgz", "integrity": "sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==", "dev": true, "license": "BlueOak-1.0.0", "dependencies": { "@isaacs/cliui": "^8.0.2" }, "funding": { "url": "https://github.com/sponsors/isaacs" }, "optionalDependencies": { "@pkgjs/parseargs": "^0.11.0" } }, "node_modules/java-properties": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/java-properties/-/java-properties-1.0.2.tgz", "integrity": "sha512-qjdpeo2yKlYTH7nFdK0vbZWuTCesk4o63v5iVOlhMQPfuIZQfW/HI35SjfhA+4qpg36rnFSvUK5b1m+ckIblQQ==", "dev": true, "license": "MIT", "engines": { "node": ">= 0.6.0" } }, "node_modules/jest-worker": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", "license": "MIT", "dependencies": { "@types/node": "*", "merge-stream": "^2.0.0", "supports-color": "^8.0.0" }, "engines": { "node": ">= 10.13.0" } }, "node_modules/jest-worker/node_modules/supports-color": { "version": "8.1.1", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/supports-color?sponsor=1" } }, "node_modules/jiti": { "version": "1.21.7", "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.7.tgz", "integrity": "sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==", "dev": true, "license": "MIT", "bin": { "jiti": "bin/jiti.js" } }, "node_modules/js-tokens": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", "license": "MIT" }, "node_modules/js-yaml": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, "license": "MIT", "dependencies": { "argparse": "^2.0.1" }, "bin": { "js-yaml": "bin/js-yaml.js" } }, "node_modules/jsesc": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.1.0.tgz", "integrity": "sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==", "license": "MIT", "bin": { "jsesc": "bin/jsesc" }, "engines": { "node": ">=6" } }, "node_modules/json-buffer": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", "dev": true, "license": "MIT" }, "node_modules/json-parse-better-errors": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", "dev": true, "license": "MIT" }, "node_modules/json-parse-even-better-errors": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", "license": "MIT" }, "node_modules/json-schema-traverse": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", "license": "MIT" }, "node_modules/json-stable-stringify-without-jsonify": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", "dev": true, "license": "MIT" }, "node_modules/json5": { "version": "2.2.3", "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", "license": "MIT", "bin": { "json5": "lib/cli.js" }, "engines": { "node": ">=6" } }, "node_modules/jsonfile": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", "dev": true, "license": "MIT", "dependencies": { "universalify": "^2.0.0" }, "optionalDependencies": { "graceful-fs": "^4.1.6" } }, "node_modules/jsonparse": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", "integrity": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==", "dev": true, "engines": [ "node >= 0.2.0" ], "license": "MIT" }, "node_modules/JSONStream": { "version": "1.3.5", "resolved": "https://registry.npmjs.org/JSONStream/-/JSONStream-1.3.5.tgz", "integrity": "sha512-E+iruNOY8VV9s4JEbe1aNEm6MiszPRr/UfcHMz0TQh1BXSxHK+ASV1R6W4HpjBhSeS+54PIsAMCBmwD06LLsqQ==", "dev": true, "license": "(MIT OR Apache-2.0)", "dependencies": { "jsonparse": "^1.2.0", "through": ">=2.2.7 <3" }, "bin": { "JSONStream": "bin.js" }, "engines": { "node": "*" } }, "node_modules/keyv": { "version": "4.5.4", "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", "dev": true, "license": "MIT", "dependencies": { "json-buffer": "3.0.1" } }, "node_modules/kind-of": { "version": "6.0.3", "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/launch-editor": { "version": "2.9.1", "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.9.1.tgz", "integrity": "sha512-Gcnl4Bd+hRO9P9icCP/RVVT2o8SFlPXofuCxvA2SaZuH45whSvf5p8x5oih5ftLiVhEI4sp5xDY+R+b3zJBh5w==", "dev": true, "license": "MIT", "dependencies": { "picocolors": "^1.0.0", "shell-quote": "^1.8.1" } }, "node_modules/levn": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", "dev": true, "license": "MIT", "dependencies": { "prelude-ls": "^1.2.1", "type-check": "~0.4.0" }, "engines": { "node": ">= 0.8.0" } }, "node_modules/lilconfig": { "version": "3.1.3", "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.3.tgz", "integrity": "sha512-/vlFKAoH5Cgt3Ie+JLhRbwOsCQePABiU3tJ1egGvyQ+33R/vcwM2Zl2QR/LzjsBeItPt3oSVXapn+m4nQDvpzw==", "dev": true, "license": "MIT", "engines": { "node": ">=14" }, "funding": { "url": "https://github.com/sponsors/antonk52" } }, "node_modules/lines-and-columns": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", "dev": true, "license": "MIT" }, "node_modules/load-json-file": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", "integrity": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==", "dev": true, "license": "MIT", "dependencies": { "graceful-fs": "^4.1.2", "parse-json": "^4.0.0", "pify": "^3.0.0", "strip-bom": "^3.0.0" }, "engines": { "node": ">=4" } }, "node_modules/load-json-file/node_modules/parse-json": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", "dev": true, "license": "MIT", "dependencies": { "error-ex": "^1.3.1", "json-parse-better-errors": "^1.0.1" }, "engines": { "node": ">=4" } }, "node_modules/load-json-file/node_modules/strip-bom": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", "dev": true, "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/loader-runner": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", "license": "MIT", "engines": { "node": ">=6.11.5" } }, "node_modules/loader-utils": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", "dev": true, "license": "MIT", "dependencies": { "big.js": "^5.2.2", "emojis-list": "^3.0.0", "json5": "^2.1.2" }, "engines": { "node": ">=8.9.0" } }, "node_modules/locate-path": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", "license": "MIT", "dependencies": { "p-locate": "^5.0.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/lodash": { "version": "4.17.21", "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", "dev": true, "license": "MIT" }, "node_modules/lodash-es": { "version": "4.17.21", "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==", "dev": true, "license": "MIT" }, "node_modules/lodash.camelcase": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", "dev": true, "license": "MIT" }, "node_modules/lodash.capitalize": { "version": "4.2.1", "resolved": "https://registry.npmjs.org/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz", "integrity": "sha512-kZzYOKspf8XVX5AvmQF94gQW0lejFVgb80G85bU4ZWzoJ6C03PQg3coYAUpSTpQWelrZELd3XWgHzw4Ck5kaIw==", "dev": true, "license": "MIT" }, "node_modules/lodash.debounce": { "version": "4.0.8", "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", "dev": true, "license": "MIT" }, "node_modules/lodash.escaperegexp": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/lodash.escaperegexp/-/lodash.escaperegexp-4.1.2.tgz", "integrity": "sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw==", "dev": true, "license": "MIT" }, "node_modules/lodash.isfunction": { "version": "3.0.9", "resolved": "https://registry.npmjs.org/lodash.isfunction/-/lodash.isfunction-3.0.9.tgz", "integrity": "sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw==", "dev": true, "license": "MIT" }, "node_modules/lodash.isplainobject": { "version": "4.0.6", "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==", "dev": true, "license": "MIT" }, "node_modules/lodash.isstring": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", "integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==", "dev": true, "license": "MIT" }, "node_modules/lodash.kebabcase": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz", "integrity": "sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==", "dev": true, "license": "MIT" }, "node_modules/lodash.map": { "version": "4.6.0", "resolved": "https://registry.npmjs.org/lodash.map/-/lodash.map-4.6.0.tgz", "integrity": "sha512-worNHGKLDetmcEYDvh2stPCrrQRkP20E4l0iIS7F8EvzMqBBi7ltvFN5m1HvTf1P7Jk1txKhvFcmYsCr8O2F1Q==", "dev": true, "license": "MIT" }, "node_modules/lodash.merge": { "version": "4.6.2", "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", "dev": true, "license": "MIT" }, "node_modules/lodash.mergewith": { "version": "4.6.2", "resolved": "https://registry.npmjs.org/lodash.mergewith/-/lodash.mergewith-4.6.2.tgz", "integrity": "sha512-GK3g5RPZWTRSeLSpgP8Xhra+pnjBC56q9FZYe1d5RN3TJ35dbkGy3YqBSMbyCrlbi+CM9Z3Jk5yTL7RCsqboyQ==", "dev": true, "license": "MIT" }, "node_modules/lodash.snakecase": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/lodash.snakecase/-/lodash.snakecase-4.1.1.tgz", "integrity": "sha512-QZ1d4xoBHYUeuouhEq3lk3Uq7ldgyFXGBhg04+oRLnIz8o9T65Eh+8YdroUwn846zchkA9yDsDl5CVVaV2nqYw==", "dev": true, "license": "MIT" }, "node_modules/lodash.startcase": { "version": "4.4.0", "resolved": "https://registry.npmjs.org/lodash.startcase/-/lodash.startcase-4.4.0.tgz", "integrity": "sha512-+WKqsK294HMSc2jEbNgpHpd0JfIBhp7rEV4aqXWqFr6AlXov+SlcgB1Fv01y2kGe3Gc8nMW7VA0SrGuSkRfIEg==", "dev": true, "license": "MIT" }, "node_modules/lodash.uniq": { "version": "4.5.0", "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", "dev": true, "license": "MIT" }, "node_modules/lodash.uniqby": { "version": "4.7.0", "resolved": "https://registry.npmjs.org/lodash.uniqby/-/lodash.uniqby-4.7.0.tgz", "integrity": "sha512-e/zcLx6CSbmaEgFHCA7BnoQKyCtKMxnuWrJygbwPs/AIn+IMKl66L8/s+wBUn5LRw2pZx3bUHibiV1b6aTWIww==", "dev": true, "license": "MIT" }, "node_modules/lodash.upperfirst": { "version": "4.3.1", "resolved": "https://registry.npmjs.org/lodash.upperfirst/-/lodash.upperfirst-4.3.1.tgz", "integrity": "sha512-sReKOYJIJf74dhJONhU4e0/shzi1trVbSWDOhKYE5XV2O+H7Sb2Dihwuc7xWxVl+DgFPyTqIN3zMfT9cq5iWDg==", "dev": true, "license": "MIT" }, "node_modules/log-symbols": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", "dev": true, "license": "MIT", "dependencies": { "chalk": "^4.1.0", "is-unicode-supported": "^0.1.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/longest": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/longest/-/longest-2.0.1.tgz", "integrity": "sha512-Ajzxb8CM6WAnFjgiloPsI3bF+WCxcvhdIG3KNA2KN962+tdBsHcuQ4k4qX/EcS/2CRkcc0iAkR956Nib6aXU/Q==", "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/loose-envify": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", "license": "MIT", "dependencies": { "js-tokens": "^3.0.0 || ^4.0.0" }, "bin": { "loose-envify": "cli.js" } }, "node_modules/lower-case": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", "dev": true, "license": "MIT", "dependencies": { "tslib": "^2.0.3" } }, "node_modules/lru-cache": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", "license": "ISC", "dependencies": { "yallist": "^3.0.2" } }, "node_modules/magic-string": { "version": "0.30.8", "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.8.tgz", "integrity": "sha512-ISQTe55T2ao7XtlAStud6qwYPZjE4GK1S/BeVPus4jrq6JuOnQ00YKQC581RWhR122W7msZV263KzVeLoqidyQ==", "dependencies": { "@jridgewell/sourcemap-codec": "^1.4.15" }, "engines": { "node": ">=12" } }, "node_modules/make-error": { "version": "1.3.6", "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", "dev": true, "license": "ISC" }, "node_modules/map-obj": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz", "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", "dev": true, "license": "MIT", "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/marked": { "version": "12.0.2", "resolved": "https://registry.npmjs.org/marked/-/marked-12.0.2.tgz", "integrity": "sha512-qXUm7e/YKFoqFPYPa3Ukg9xlI5cyAtGmyEIzMfW//m6kXwCy2Ps9DYf5ioijFKQ8qyuscrHoY04iJGctu2Kg0Q==", "dev": true, "license": "MIT", "bin": { "marked": "bin/marked.js" }, "engines": { "node": ">= 18" } }, "node_modules/marked-terminal": { "version": "7.2.1", "resolved": "https://registry.npmjs.org/marked-terminal/-/marked-terminal-7.2.1.tgz", "integrity": "sha512-rQ1MoMFXZICWNsKMiiHwP/Z+92PLKskTPXj+e7uwXmuMPkNn7iTqC+IvDekVm1MPeC9wYQeLxeFaOvudRR/XbQ==", "dev": true, "license": "MIT", "dependencies": { "ansi-escapes": "^7.0.0", "ansi-regex": "^6.1.0", "chalk": "^5.3.0", "cli-highlight": "^2.1.11", "cli-table3": "^0.6.5", "node-emoji": "^2.1.3", "supports-hyperlinks": "^3.1.0" }, "engines": { "node": ">=16.0.0" }, "peerDependencies": { "marked": ">=1 <15" } }, "node_modules/marked-terminal/node_modules/ansi-escapes": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-7.0.0.tgz", "integrity": "sha512-GdYO7a61mR0fOlAsvC9/rIHf7L96sBc6dEWzeOu+KAea5bZyQRPIpojrVoI4AXGJS/ycu/fBTdLrUkA4ODrvjw==", "dev": true, "license": "MIT", "dependencies": { "environment": "^1.0.0" }, "engines": { "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/marked-terminal/node_modules/chalk": { "version": "5.4.1", "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.4.1.tgz", "integrity": "sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==", "dev": true, "license": "MIT", "engines": { "node": "^12.17.0 || ^14.13 || >=16.0.0" }, "funding": { "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/math-intrinsics": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/math-intrinsics/-/math-intrinsics-1.1.0.tgz", "integrity": "sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==", "dev": true, "license": "MIT", "engines": { "node": ">= 0.4" } }, "node_modules/media-typer": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", "dev": true, "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/memfs": { "version": "4.17.0", "resolved": "https://registry.npmjs.org/memfs/-/memfs-4.17.0.tgz", "integrity": "sha512-4eirfZ7thblFmqFjywlTmuWVSvccHAJbn1r8qQLzmTO11qcqpohOjmY2mFce6x7x7WtskzRqApPD0hv+Oa74jg==", "dev": true, "license": "Apache-2.0", "dependencies": { "@jsonjoy.com/json-pack": "^1.0.3", "@jsonjoy.com/util": "^1.3.0", "tree-dump": "^1.0.1", "tslib": "^2.0.0" }, "engines": { "node": ">= 4.0.0" }, "funding": { "type": "github", "url": "https://github.com/sponsors/streamich" } }, "node_modules/meow": { "version": "13.2.0", "resolved": "https://registry.npmjs.org/meow/-/meow-13.2.0.tgz", "integrity": "sha512-pxQJQzB6djGPXh08dacEloMFopsOqGVRKFPYvPOt9XDZ1HasbgDZA74CJGreSU4G3Ak7EFJGoiH2auq+yXISgA==", "dev": true, "license": "MIT", "engines": { "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/merge": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/merge/-/merge-2.1.1.tgz", "integrity": "sha512-jz+Cfrg9GWOZbQAnDQ4hlVnQky+341Yk5ru8bZSe6sIDTCIg8n9i/u7hSQGSVOF3C7lH6mGtqjkiT9G4wFLL0w==", "dev": true, "license": "MIT" }, "node_modules/merge-descriptors": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.3.tgz", "integrity": "sha512-gaNvAS7TZ897/rVaZ0nMtAyxNyi/pdbjbAwUpFQpN70GqnVfOiXpeUUMKRBmzXaSQ8DdTX4/0ms62r2K+hE6mQ==", "dev": true, "license": "MIT", "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/merge-stream": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", "license": "MIT" }, "node_modules/merge2": { "version": "1.4.1", "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", "dev": true, "license": "MIT", "engines": { "node": ">= 8" } }, "node_modules/methods": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", "dev": true, "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/micromatch": { "version": "4.0.8", "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.8.tgz", "integrity": "sha512-PXwfBhYu0hBCPw8Dn0E+WDYb7af3dSLVWKi3HGv84IdF4TyFoC0ysxFd0Goxw7nSv4T/PzEJQxsYsEiFCKo2BA==", "dev": true, "license": "MIT", "dependencies": { "braces": "^3.0.3", "picomatch": "^2.3.1" }, "engines": { "node": ">=8.6" } }, "node_modules/mime": { "version": "4.0.6", "resolved": "https://registry.npmjs.org/mime/-/mime-4.0.6.tgz", "integrity": "sha512-4rGt7rvQHBbaSOF9POGkk1ocRP16Md1x36Xma8sz8h8/vfCUI2OtEIeCqe4Ofes853x4xDoPiFLIT47J5fI/7A==", "dev": true, "funding": [ "https://github.com/sponsors/broofa" ], "license": "MIT", "bin": { "mime": "bin/cli.js" }, "engines": { "node": ">=16" } }, "node_modules/mime-db": { "version": "1.52.0", "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/mime-types": { "version": "2.1.35", "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", "license": "MIT", "dependencies": { "mime-db": "1.52.0" }, "engines": { "node": ">= 0.6" } }, "node_modules/mimic-fn": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", "dev": true, "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/min-indent": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", "dev": true, "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/mini-css-extract-plugin": { "version": "1.6.2", "resolved": "https://registry.npmjs.org/mini-css-extract-plugin/-/mini-css-extract-plugin-1.6.2.tgz", "integrity": "sha512-WhDvO3SjGm40oV5y26GjMJYjd2UMqrLAGKy5YS2/3QKJy2F7jgynuHTir/tgUUOiNQu5saXHdc8reo7YuhhT4Q==", "dev": true, "license": "MIT", "dependencies": { "loader-utils": "^2.0.0", "schema-utils": "^3.0.0", "webpack-sources": "^1.1.0" }, "engines": { "node": ">= 10.13.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" }, "peerDependencies": { "webpack": "^4.4.0 || ^5.0.0" } }, "node_modules/mini-css-extract-plugin/node_modules/ajv": { "version": "6.12.6", "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", "json-schema-traverse": "^0.4.1", "uri-js": "^4.2.2" }, "funding": { "type": "github", "url": "https://github.com/sponsors/epoberezkin" } }, "node_modules/mini-css-extract-plugin/node_modules/ajv-keywords": { "version": "3.5.2", "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", "dev": true, "license": "MIT", "peerDependencies": { "ajv": "^6.9.1" } }, "node_modules/mini-css-extract-plugin/node_modules/json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "dev": true, "license": "MIT" }, "node_modules/mini-css-extract-plugin/node_modules/schema-utils": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", "dev": true, "license": "MIT", "dependencies": { "@types/json-schema": "^7.0.8", "ajv": "^6.12.5", "ajv-keywords": "^3.5.2" }, "engines": { "node": ">= 10.13.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" } }, "node_modules/minimalistic-assert": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", "dev": true, "license": "ISC" }, "node_modules/minimatch": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "license": "ISC", "dependencies": { "brace-expansion": "^1.1.7" }, "engines": { "node": "*" } }, "node_modules/minimist": { "version": "1.2.8", "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", "dev": true, "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/minimist-options": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz", "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", "dev": true, "license": "MIT", "dependencies": { "arrify": "^1.0.1", "is-plain-obj": "^1.1.0", "kind-of": "^6.0.3" }, "engines": { "node": ">= 6" } }, "node_modules/minimist-options/node_modules/is-plain-obj": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/minipass": { "version": "4.2.8", "resolved": "https://registry.npmjs.org/minipass/-/minipass-4.2.8.tgz", "integrity": "sha512-fNzuVyifolSLFL4NzpF+wEF4qrgqaaKX0haXPQEdQ7NKAN+WecoKMHV09YcuL/DHxrUsYQOK3MiuDf7Ip2OXfQ==", "engines": { "node": ">=8" } }, "node_modules/mrmime": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-2.0.0.tgz", "integrity": "sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==", "dev": true, "license": "MIT", "engines": { "node": ">=10" } }, "node_modules/ms": { "version": "2.1.3", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", "license": "MIT" }, "node_modules/multicast-dns": { "version": "7.2.5", "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", "dev": true, "license": "MIT", "dependencies": { "dns-packet": "^5.2.2", "thunky": "^1.0.2" }, "bin": { "multicast-dns": "cli.js" } }, "node_modules/mute-stream": { "version": "0.0.8", "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==", "dev": true, "license": "ISC" }, "node_modules/mz": { "version": "2.7.0", "resolved": "https://registry.npmjs.org/mz/-/mz-2.7.0.tgz", "integrity": "sha512-z81GNO7nnYMEhrGh9LeymoE4+Yr0Wn5McHIZMK5cfQCl+NDX08sCZgUc9/6MHni9IWuFLm1Z3HTCXu2z9fN62Q==", "dev": true, "license": "MIT", "dependencies": { "any-promise": "^1.0.0", "object-assign": "^4.0.1", "thenify-all": "^1.0.0" } }, "node_modules/nanoid": { "version": "3.3.8", "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.8.tgz", "integrity": "sha512-WNLf5Sd8oZxOm+TzppcYk8gVOgP+l58xNy58D0nbUnOxOWRWvlcCV4kUF7ltmI6PsrLl/BgKEyS4mqsGChFN0w==", "dev": true, "funding": [ { "type": "github", "url": "https://github.com/sponsors/ai" } ], "license": "MIT", "bin": { "nanoid": "bin/nanoid.cjs" }, "engines": { "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" } }, "node_modules/natural-compare": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", "dev": true, "license": "MIT" }, "node_modules/negotiator": { "version": "0.6.4", "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.4.tgz", "integrity": "sha512-myRT3DiWPHqho5PrJaIRyaMv2kgYf0mUVgBNOYMuCH5Ki1yEiQaf/ZJuQ62nvpc44wL5WDbTX7yGJi1Neevw8w==", "dev": true, "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/neo-async": { "version": "2.6.2", "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", "license": "MIT" }, "node_modules/nerf-dart": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/nerf-dart/-/nerf-dart-1.0.0.tgz", "integrity": "sha512-EZSPZB70jiVsivaBLYDCyntd5eH8NTSMOn3rB+HxwdmKThGELLdYv8qVIMWvZEFy9w8ZZpW9h9OB32l1rGtj7g==", "dev": true, "license": "MIT" }, "node_modules/no-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", "dev": true, "license": "MIT", "dependencies": { "lower-case": "^2.0.2", "tslib": "^2.0.3" } }, "node_modules/node-emoji": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/node-emoji/-/node-emoji-2.2.0.tgz", "integrity": "sha512-Z3lTE9pLaJF47NyMhd4ww1yFTAP8YhYI8SleJiHzM46Fgpm5cnNzSl9XfzFNqbaz+VlJrIj3fXQ4DeN1Rjm6cw==", "dev": true, "license": "MIT", "dependencies": { "@sindresorhus/is": "^4.6.0", "char-regex": "^1.0.2", "emojilib": "^2.4.0", "skin-tone": "^2.0.0" }, "engines": { "node": ">=18" } }, "node_modules/node-fetch": { "version": "2.7.0", "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", "dependencies": { "whatwg-url": "^5.0.0" }, "engines": { "node": "4.x || >=6.0.0" }, "peerDependencies": { "encoding": "^0.1.0" }, "peerDependenciesMeta": { "encoding": { "optional": true } } }, "node_modules/node-forge": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", "dev": true, "license": "(BSD-3-Clause OR GPL-2.0)", "engines": { "node": ">= 6.13.0" } }, "node_modules/node-releases": { "version": "2.0.19", "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.19.tgz", "integrity": "sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==", "license": "MIT" }, "node_modules/normalize-package-data": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-6.0.2.tgz", "integrity": "sha512-V6gygoYb/5EmNI+MEGrWkC+e6+Rr7mTmfHrxDbLzxQogBkgzo76rkok0Am6thgSF7Mv2nLOajAJj5vDJZEFn7g==", "dev": true, "license": "BSD-2-Clause", "dependencies": { "hosted-git-info": "^7.0.0", "semver": "^7.3.5", "validate-npm-package-license": "^3.0.4" }, "engines": { "node": "^16.14.0 || >=18.0.0" } }, "node_modules/normalize-package-data/node_modules/semver": { "version": "7.6.3", "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", "dev": true, "license": "ISC", "bin": { "semver": "bin/semver.js" }, "engines": { "node": ">=10" } }, "node_modules/normalize-path": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/normalize-range": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/normalize-url": { "version": "8.0.1", "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-8.0.1.tgz", "integrity": "sha512-IO9QvjUMWxPQQhs60oOu10CRkWCiZzSUkzbXGGV9pviYl1fXYcvkzQ5jV9z8Y6un8ARoVRl4EtC6v6jNqbaJ/w==", "dev": true, "license": "MIT", "engines": { "node": ">=14.16" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/npm": { "version": "10.9.2", "resolved": "https://registry.npmjs.org/npm/-/npm-10.9.2.tgz", "integrity": "sha512-iriPEPIkoMYUy3F6f3wwSZAU93E0Eg6cHwIR6jzzOXWSy+SD/rOODEs74cVONHKSx2obXtuUoyidVEhISrisgQ==", "bundleDependencies": [ "@isaacs/string-locale-compare", "@npmcli/arborist", "@npmcli/config", "@npmcli/fs", "@npmcli/map-workspaces", "@npmcli/package-json", "@npmcli/promise-spawn", "@npmcli/redact", "@npmcli/run-script", "@sigstore/tuf", "abbrev", "archy", "cacache", "chalk", "ci-info", "cli-columns", "fastest-levenshtein", "fs-minipass", "glob", "graceful-fs", "hosted-git-info", "ini", "init-package-json", "is-cidr", "json-parse-even-better-errors", "libnpmaccess", "libnpmdiff", "libnpmexec", "libnpmfund", "libnpmhook", "libnpmorg", "libnpmpack", "libnpmpublish", "libnpmsearch", "libnpmteam", "libnpmversion", "make-fetch-happen", "minimatch", "minipass", "minipass-pipeline", "ms", "node-gyp", "nopt", "normalize-package-data", "npm-audit-report", "npm-install-checks", "npm-package-arg", "npm-pick-manifest", "npm-profile", "npm-registry-fetch", "npm-user-validate", "p-map", "pacote", "parse-conflict-json", "proc-log", "qrcode-terminal", "read", "semver", "spdx-expression-parse", "ssri", "supports-color", "tar", "text-table", "tiny-relative-date", "treeverse", "validate-npm-package-name", "which", "write-file-atomic" ], "dev": true, "license": "Artistic-2.0", "workspaces": [ "docs", "smoke-tests", "mock-globals", "mock-registry", "workspaces/*" ], "dependencies": { "@isaacs/string-locale-compare": "^1.1.0", "@npmcli/arborist": "^8.0.0", "@npmcli/config": "^9.0.0", "@npmcli/fs": "^4.0.0", "@npmcli/map-workspaces": "^4.0.2", "@npmcli/package-json": "^6.1.0", "@npmcli/promise-spawn": "^8.0.2", "@npmcli/redact": "^3.0.0", "@npmcli/run-script": "^9.0.1", "@sigstore/tuf": "^3.0.0", "abbrev": "^3.0.0", "archy": "~1.0.0", "cacache": "^19.0.1", "chalk": "^5.3.0", "ci-info": "^4.1.0", "cli-columns": "^4.0.0", "fastest-levenshtein": "^1.0.16", "fs-minipass": "^3.0.3", "glob": "^10.4.5", "graceful-fs": "^4.2.11", "hosted-git-info": "^8.0.2", "ini": "^5.0.0", "init-package-json": "^7.0.2", "is-cidr": "^5.1.0", "json-parse-even-better-errors": "^4.0.0", "libnpmaccess": "^9.0.0", "libnpmdiff": "^7.0.0", "libnpmexec": "^9.0.0", "libnpmfund": "^6.0.0", "libnpmhook": "^11.0.0", "libnpmorg": "^7.0.0", "libnpmpack": "^8.0.0", "libnpmpublish": "^10.0.1", "libnpmsearch": "^8.0.0", "libnpmteam": "^7.0.0", "libnpmversion": "^7.0.0", "make-fetch-happen": "^14.0.3", "minimatch": "^9.0.5", "minipass": "^7.1.1", "minipass-pipeline": "^1.2.4", "ms": "^2.1.2", "node-gyp": "^11.0.0", "nopt": "^8.0.0", "normalize-package-data": "^7.0.0", "npm-audit-report": "^6.0.0", "npm-install-checks": "^7.1.1", "npm-package-arg": "^12.0.0", "npm-pick-manifest": "^10.0.0", "npm-profile": "^11.0.1", "npm-registry-fetch": "^18.0.2", "npm-user-validate": "^3.0.0", "p-map": "^4.0.0", "pacote": "^19.0.1", "parse-conflict-json": "^4.0.0", "proc-log": "^5.0.0", "qrcode-terminal": "^0.12.0", "read": "^4.0.0", "semver": "^7.6.3", "spdx-expression-parse": "^4.0.0", "ssri": "^12.0.0", "supports-color": "^9.4.0", "tar": "^6.2.1", "text-table": "~0.2.0", "tiny-relative-date": "^1.3.0", "treeverse": "^3.0.0", "validate-npm-package-name": "^6.0.0", "which": "^5.0.0", "write-file-atomic": "^6.0.0" }, "bin": { "npm": "bin/npm-cli.js", "npx": "bin/npx-cli.js" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm-run-path": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", "dev": true, "license": "MIT", "dependencies": { "path-key": "^3.0.0" }, "engines": { "node": ">=8" } }, "node_modules/npm/node_modules/@isaacs/cliui": { "version": "8.0.2", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "string-width": "^5.1.2", "string-width-cjs": "npm:string-width@^4.2.0", "strip-ansi": "^7.0.1", "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", "wrap-ansi": "^8.1.0", "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" }, "engines": { "node": ">=12" } }, "node_modules/npm/node_modules/@isaacs/cliui/node_modules/ansi-regex": { "version": "6.1.0", "dev": true, "inBundle": true, "license": "MIT", "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/chalk/ansi-regex?sponsor=1" } }, "node_modules/npm/node_modules/@isaacs/cliui/node_modules/emoji-regex": { "version": "9.2.2", "dev": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/@isaacs/cliui/node_modules/string-width": { "version": "5.1.2", "dev": true, "inBundle": true, "license": "MIT", "dependencies": { "eastasianwidth": "^0.2.0", "emoji-regex": "^9.2.2", "strip-ansi": "^7.0.1" }, "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/npm/node_modules/@isaacs/cliui/node_modules/strip-ansi": { "version": "7.1.0", "dev": true, "inBundle": true, "license": "MIT", "dependencies": { "ansi-regex": "^6.0.1" }, "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/chalk/strip-ansi?sponsor=1" } }, "node_modules/npm/node_modules/@isaacs/fs-minipass": { "version": "4.0.1", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "minipass": "^7.0.4" }, "engines": { "node": ">=18.0.0" } }, "node_modules/npm/node_modules/@isaacs/string-locale-compare": { "version": "1.1.0", "dev": true, "inBundle": true, "license": "ISC" }, "node_modules/npm/node_modules/@npmcli/agent": { "version": "3.0.0", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "agent-base": "^7.1.0", "http-proxy-agent": "^7.0.0", "https-proxy-agent": "^7.0.1", "lru-cache": "^10.0.1", "socks-proxy-agent": "^8.0.3" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/@npmcli/arborist": { "version": "8.0.0", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "@isaacs/string-locale-compare": "^1.1.0", "@npmcli/fs": "^4.0.0", "@npmcli/installed-package-contents": "^3.0.0", "@npmcli/map-workspaces": "^4.0.1", "@npmcli/metavuln-calculator": "^8.0.0", "@npmcli/name-from-folder": "^3.0.0", "@npmcli/node-gyp": "^4.0.0", "@npmcli/package-json": "^6.0.1", "@npmcli/query": "^4.0.0", "@npmcli/redact": "^3.0.0", "@npmcli/run-script": "^9.0.1", "bin-links": "^5.0.0", "cacache": "^19.0.1", "common-ancestor-path": "^1.0.1", "hosted-git-info": "^8.0.0", "json-parse-even-better-errors": "^4.0.0", "json-stringify-nice": "^1.1.4", "lru-cache": "^10.2.2", "minimatch": "^9.0.4", "nopt": "^8.0.0", "npm-install-checks": "^7.1.0", "npm-package-arg": "^12.0.0", "npm-pick-manifest": "^10.0.0", "npm-registry-fetch": "^18.0.1", "pacote": "^19.0.0", "parse-conflict-json": "^4.0.0", "proc-log": "^5.0.0", "proggy": "^3.0.0", "promise-all-reject-late": "^1.0.0", "promise-call-limit": "^3.0.1", "read-package-json-fast": "^4.0.0", "semver": "^7.3.7", "ssri": "^12.0.0", "treeverse": "^3.0.0", "walk-up-path": "^3.0.1" }, "bin": { "arborist": "bin/index.js" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/@npmcli/config": { "version": "9.0.0", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "@npmcli/map-workspaces": "^4.0.1", "@npmcli/package-json": "^6.0.1", "ci-info": "^4.0.0", "ini": "^5.0.0", "nopt": "^8.0.0", "proc-log": "^5.0.0", "semver": "^7.3.5", "walk-up-path": "^3.0.1" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/@npmcli/fs": { "version": "4.0.0", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "semver": "^7.3.5" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/@npmcli/git": { "version": "6.0.1", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "@npmcli/promise-spawn": "^8.0.0", "ini": "^5.0.0", "lru-cache": "^10.0.1", "npm-pick-manifest": "^10.0.0", "proc-log": "^5.0.0", "promise-inflight": "^1.0.1", "promise-retry": "^2.0.1", "semver": "^7.3.5", "which": "^5.0.0" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/@npmcli/installed-package-contents": { "version": "3.0.0", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "npm-bundled": "^4.0.0", "npm-normalize-package-bin": "^4.0.0" }, "bin": { "installed-package-contents": "bin/index.js" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/@npmcli/map-workspaces": { "version": "4.0.2", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "@npmcli/name-from-folder": "^3.0.0", "@npmcli/package-json": "^6.0.0", "glob": "^10.2.2", "minimatch": "^9.0.0" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/@npmcli/metavuln-calculator": { "version": "8.0.1", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "cacache": "^19.0.0", "json-parse-even-better-errors": "^4.0.0", "pacote": "^20.0.0", "proc-log": "^5.0.0", "semver": "^7.3.5" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/@npmcli/metavuln-calculator/node_modules/pacote": { "version": "20.0.0", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "@npmcli/git": "^6.0.0", "@npmcli/installed-package-contents": "^3.0.0", "@npmcli/package-json": "^6.0.0", "@npmcli/promise-spawn": "^8.0.0", "@npmcli/run-script": "^9.0.0", "cacache": "^19.0.0", "fs-minipass": "^3.0.0", "minipass": "^7.0.2", "npm-package-arg": "^12.0.0", "npm-packlist": "^9.0.0", "npm-pick-manifest": "^10.0.0", "npm-registry-fetch": "^18.0.0", "proc-log": "^5.0.0", "promise-retry": "^2.0.1", "sigstore": "^3.0.0", "ssri": "^12.0.0", "tar": "^6.1.11" }, "bin": { "pacote": "bin/index.js" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/@npmcli/name-from-folder": { "version": "3.0.0", "dev": true, "inBundle": true, "license": "ISC", "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/@npmcli/node-gyp": { "version": "4.0.0", "dev": true, "inBundle": true, "license": "ISC", "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/@npmcli/package-json": { "version": "6.1.0", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "@npmcli/git": "^6.0.0", "glob": "^10.2.2", "hosted-git-info": "^8.0.0", "json-parse-even-better-errors": "^4.0.0", "normalize-package-data": "^7.0.0", "proc-log": "^5.0.0", "semver": "^7.5.3" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/@npmcli/promise-spawn": { "version": "8.0.2", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "which": "^5.0.0" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/@npmcli/query": { "version": "4.0.0", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "postcss-selector-parser": "^6.1.2" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/@npmcli/redact": { "version": "3.0.0", "dev": true, "inBundle": true, "license": "ISC", "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/@npmcli/run-script": { "version": "9.0.2", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "@npmcli/node-gyp": "^4.0.0", "@npmcli/package-json": "^6.0.0", "@npmcli/promise-spawn": "^8.0.0", "node-gyp": "^11.0.0", "proc-log": "^5.0.0", "which": "^5.0.0" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/@pkgjs/parseargs": { "version": "0.11.0", "dev": true, "inBundle": true, "license": "MIT", "optional": true, "engines": { "node": ">=14" } }, "node_modules/npm/node_modules/@sigstore/protobuf-specs": { "version": "0.3.2", "dev": true, "inBundle": true, "license": "Apache-2.0", "engines": { "node": "^16.14.0 || >=18.0.0" } }, "node_modules/npm/node_modules/@sigstore/tuf": { "version": "3.0.0", "dev": true, "inBundle": true, "license": "Apache-2.0", "dependencies": { "@sigstore/protobuf-specs": "^0.3.2", "tuf-js": "^3.0.1" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/@tufjs/canonical-json": { "version": "2.0.0", "dev": true, "inBundle": true, "license": "MIT", "engines": { "node": "^16.14.0 || >=18.0.0" } }, "node_modules/npm/node_modules/abbrev": { "version": "3.0.0", "dev": true, "inBundle": true, "license": "ISC", "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/agent-base": { "version": "7.1.1", "dev": true, "inBundle": true, "license": "MIT", "dependencies": { "debug": "^4.3.4" }, "engines": { "node": ">= 14" } }, "node_modules/npm/node_modules/aggregate-error": { "version": "3.1.0", "dev": true, "inBundle": true, "license": "MIT", "dependencies": { "clean-stack": "^2.0.0", "indent-string": "^4.0.0" }, "engines": { "node": ">=8" } }, "node_modules/npm/node_modules/ansi-regex": { "version": "5.0.1", "dev": true, "inBundle": true, "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/npm/node_modules/ansi-styles": { "version": "6.2.1", "dev": true, "inBundle": true, "license": "MIT", "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, "node_modules/npm/node_modules/aproba": { "version": "2.0.0", "dev": true, "inBundle": true, "license": "ISC" }, "node_modules/npm/node_modules/archy": { "version": "1.0.0", "dev": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/balanced-match": { "version": "1.0.2", "dev": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/bin-links": { "version": "5.0.0", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "cmd-shim": "^7.0.0", "npm-normalize-package-bin": "^4.0.0", "proc-log": "^5.0.0", "read-cmd-shim": "^5.0.0", "write-file-atomic": "^6.0.0" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/binary-extensions": { "version": "2.3.0", "dev": true, "inBundle": true, "license": "MIT", "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/npm/node_modules/brace-expansion": { "version": "2.0.1", "dev": true, "inBundle": true, "license": "MIT", "dependencies": { "balanced-match": "^1.0.0" } }, "node_modules/npm/node_modules/cacache": { "version": "19.0.1", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "@npmcli/fs": "^4.0.0", "fs-minipass": "^3.0.0", "glob": "^10.2.2", "lru-cache": "^10.0.1", "minipass": "^7.0.3", "minipass-collect": "^2.0.1", "minipass-flush": "^1.0.5", "minipass-pipeline": "^1.2.4", "p-map": "^7.0.2", "ssri": "^12.0.0", "tar": "^7.4.3", "unique-filename": "^4.0.0" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/cacache/node_modules/chownr": { "version": "3.0.0", "dev": true, "inBundle": true, "license": "BlueOak-1.0.0", "engines": { "node": ">=18" } }, "node_modules/npm/node_modules/cacache/node_modules/minizlib": { "version": "3.0.1", "dev": true, "inBundle": true, "license": "MIT", "dependencies": { "minipass": "^7.0.4", "rimraf": "^5.0.5" }, "engines": { "node": ">= 18" } }, "node_modules/npm/node_modules/cacache/node_modules/mkdirp": { "version": "3.0.1", "dev": true, "inBundle": true, "license": "MIT", "bin": { "mkdirp": "dist/cjs/src/bin.js" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/npm/node_modules/cacache/node_modules/p-map": { "version": "7.0.2", "dev": true, "inBundle": true, "license": "MIT", "engines": { "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/npm/node_modules/cacache/node_modules/tar": { "version": "7.4.3", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "@isaacs/fs-minipass": "^4.0.0", "chownr": "^3.0.0", "minipass": "^7.1.2", "minizlib": "^3.0.1", "mkdirp": "^3.0.1", "yallist": "^5.0.0" }, "engines": { "node": ">=18" } }, "node_modules/npm/node_modules/cacache/node_modules/yallist": { "version": "5.0.0", "dev": true, "inBundle": true, "license": "BlueOak-1.0.0", "engines": { "node": ">=18" } }, "node_modules/npm/node_modules/chalk": { "version": "5.3.0", "dev": true, "inBundle": true, "license": "MIT", "engines": { "node": "^12.17.0 || ^14.13 || >=16.0.0" }, "funding": { "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/npm/node_modules/chownr": { "version": "2.0.0", "dev": true, "inBundle": true, "license": "ISC", "engines": { "node": ">=10" } }, "node_modules/npm/node_modules/ci-info": { "version": "4.1.0", "dev": true, "funding": [ { "type": "github", "url": "https://github.com/sponsors/sibiraj-s" } ], "inBundle": true, "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/npm/node_modules/cidr-regex": { "version": "4.1.1", "dev": true, "inBundle": true, "license": "BSD-2-Clause", "dependencies": { "ip-regex": "^5.0.0" }, "engines": { "node": ">=14" } }, "node_modules/npm/node_modules/clean-stack": { "version": "2.2.0", "dev": true, "inBundle": true, "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/npm/node_modules/cli-columns": { "version": "4.0.0", "dev": true, "inBundle": true, "license": "MIT", "dependencies": { "string-width": "^4.2.3", "strip-ansi": "^6.0.1" }, "engines": { "node": ">= 10" } }, "node_modules/npm/node_modules/cmd-shim": { "version": "7.0.0", "dev": true, "inBundle": true, "license": "ISC", "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/color-convert": { "version": "2.0.1", "dev": true, "inBundle": true, "license": "MIT", "dependencies": { "color-name": "~1.1.4" }, "engines": { "node": ">=7.0.0" } }, "node_modules/npm/node_modules/color-name": { "version": "1.1.4", "dev": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/common-ancestor-path": { "version": "1.0.1", "dev": true, "inBundle": true, "license": "ISC" }, "node_modules/npm/node_modules/cross-spawn": { "version": "7.0.6", "dev": true, "inBundle": true, "license": "MIT", "dependencies": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", "which": "^2.0.1" }, "engines": { "node": ">= 8" } }, "node_modules/npm/node_modules/cross-spawn/node_modules/which": { "version": "2.0.2", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "isexe": "^2.0.0" }, "bin": { "node-which": "bin/node-which" }, "engines": { "node": ">= 8" } }, "node_modules/npm/node_modules/cssesc": { "version": "3.0.0", "dev": true, "inBundle": true, "license": "MIT", "bin": { "cssesc": "bin/cssesc" }, "engines": { "node": ">=4" } }, "node_modules/npm/node_modules/debug": { "version": "4.3.7", "dev": true, "inBundle": true, "license": "MIT", "dependencies": { "ms": "^2.1.3" }, "engines": { "node": ">=6.0" }, "peerDependenciesMeta": { "supports-color": { "optional": true } } }, "node_modules/npm/node_modules/diff": { "version": "5.2.0", "dev": true, "inBundle": true, "license": "BSD-3-Clause", "engines": { "node": ">=0.3.1" } }, "node_modules/npm/node_modules/eastasianwidth": { "version": "0.2.0", "dev": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/emoji-regex": { "version": "8.0.0", "dev": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/encoding": { "version": "0.1.13", "dev": true, "inBundle": true, "license": "MIT", "optional": true, "dependencies": { "iconv-lite": "^0.6.2" } }, "node_modules/npm/node_modules/env-paths": { "version": "2.2.1", "dev": true, "inBundle": true, "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/npm/node_modules/err-code": { "version": "2.0.3", "dev": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/exponential-backoff": { "version": "3.1.1", "dev": true, "inBundle": true, "license": "Apache-2.0" }, "node_modules/npm/node_modules/fastest-levenshtein": { "version": "1.0.16", "dev": true, "inBundle": true, "license": "MIT", "engines": { "node": ">= 4.9.1" } }, "node_modules/npm/node_modules/foreground-child": { "version": "3.3.0", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "cross-spawn": "^7.0.0", "signal-exit": "^4.0.1" }, "engines": { "node": ">=14" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/npm/node_modules/fs-minipass": { "version": "3.0.3", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "minipass": "^7.0.3" }, "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, "node_modules/npm/node_modules/glob": { "version": "10.4.5", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "foreground-child": "^3.1.0", "jackspeak": "^3.1.2", "minimatch": "^9.0.4", "minipass": "^7.1.2", "package-json-from-dist": "^1.0.0", "path-scurry": "^1.11.1" }, "bin": { "glob": "dist/esm/bin.mjs" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/npm/node_modules/graceful-fs": { "version": "4.2.11", "dev": true, "inBundle": true, "license": "ISC" }, "node_modules/npm/node_modules/hosted-git-info": { "version": "8.0.2", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "lru-cache": "^10.0.1" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/http-cache-semantics": { "version": "4.1.1", "dev": true, "inBundle": true, "license": "BSD-2-Clause" }, "node_modules/npm/node_modules/http-proxy-agent": { "version": "7.0.2", "dev": true, "inBundle": true, "license": "MIT", "dependencies": { "agent-base": "^7.1.0", "debug": "^4.3.4" }, "engines": { "node": ">= 14" } }, "node_modules/npm/node_modules/https-proxy-agent": { "version": "7.0.5", "dev": true, "inBundle": true, "license": "MIT", "dependencies": { "agent-base": "^7.0.2", "debug": "4" }, "engines": { "node": ">= 14" } }, "node_modules/npm/node_modules/iconv-lite": { "version": "0.6.3", "dev": true, "inBundle": true, "license": "MIT", "optional": true, "dependencies": { "safer-buffer": ">= 2.1.2 < 3.0.0" }, "engines": { "node": ">=0.10.0" } }, "node_modules/npm/node_modules/ignore-walk": { "version": "7.0.0", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "minimatch": "^9.0.0" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/imurmurhash": { "version": "0.1.4", "dev": true, "inBundle": true, "license": "MIT", "engines": { "node": ">=0.8.19" } }, "node_modules/npm/node_modules/indent-string": { "version": "4.0.0", "dev": true, "inBundle": true, "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/npm/node_modules/ini": { "version": "5.0.0", "dev": true, "inBundle": true, "license": "ISC", "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/init-package-json": { "version": "7.0.2", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "@npmcli/package-json": "^6.0.0", "npm-package-arg": "^12.0.0", "promzard": "^2.0.0", "read": "^4.0.0", "semver": "^7.3.5", "validate-npm-package-license": "^3.0.4", "validate-npm-package-name": "^6.0.0" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/ip-address": { "version": "9.0.5", "dev": true, "inBundle": true, "license": "MIT", "dependencies": { "jsbn": "1.1.0", "sprintf-js": "^1.1.3" }, "engines": { "node": ">= 12" } }, "node_modules/npm/node_modules/ip-regex": { "version": "5.0.0", "dev": true, "inBundle": true, "license": "MIT", "engines": { "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/npm/node_modules/is-cidr": { "version": "5.1.0", "dev": true, "inBundle": true, "license": "BSD-2-Clause", "dependencies": { "cidr-regex": "^4.1.1" }, "engines": { "node": ">=14" } }, "node_modules/npm/node_modules/is-fullwidth-code-point": { "version": "3.0.0", "dev": true, "inBundle": true, "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/npm/node_modules/isexe": { "version": "2.0.0", "dev": true, "inBundle": true, "license": "ISC" }, "node_modules/npm/node_modules/jackspeak": { "version": "3.4.3", "dev": true, "inBundle": true, "license": "BlueOak-1.0.0", "dependencies": { "@isaacs/cliui": "^8.0.2" }, "funding": { "url": "https://github.com/sponsors/isaacs" }, "optionalDependencies": { "@pkgjs/parseargs": "^0.11.0" } }, "node_modules/npm/node_modules/jsbn": { "version": "1.1.0", "dev": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/json-parse-even-better-errors": { "version": "4.0.0", "dev": true, "inBundle": true, "license": "MIT", "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/json-stringify-nice": { "version": "1.1.4", "dev": true, "inBundle": true, "license": "ISC", "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/npm/node_modules/jsonparse": { "version": "1.3.1", "dev": true, "engines": [ "node >= 0.2.0" ], "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/just-diff": { "version": "6.0.2", "dev": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/just-diff-apply": { "version": "5.5.0", "dev": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/libnpmaccess": { "version": "9.0.0", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "npm-package-arg": "^12.0.0", "npm-registry-fetch": "^18.0.1" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/libnpmdiff": { "version": "7.0.0", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "@npmcli/arborist": "^8.0.0", "@npmcli/installed-package-contents": "^3.0.0", "binary-extensions": "^2.3.0", "diff": "^5.1.0", "minimatch": "^9.0.4", "npm-package-arg": "^12.0.0", "pacote": "^19.0.0", "tar": "^6.2.1" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/libnpmexec": { "version": "9.0.0", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "@npmcli/arborist": "^8.0.0", "@npmcli/run-script": "^9.0.1", "ci-info": "^4.0.0", "npm-package-arg": "^12.0.0", "pacote": "^19.0.0", "proc-log": "^5.0.0", "read": "^4.0.0", "read-package-json-fast": "^4.0.0", "semver": "^7.3.7", "walk-up-path": "^3.0.1" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/libnpmfund": { "version": "6.0.0", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "@npmcli/arborist": "^8.0.0" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/libnpmhook": { "version": "11.0.0", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "aproba": "^2.0.0", "npm-registry-fetch": "^18.0.1" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/libnpmorg": { "version": "7.0.0", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "aproba": "^2.0.0", "npm-registry-fetch": "^18.0.1" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/libnpmpack": { "version": "8.0.0", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "@npmcli/arborist": "^8.0.0", "@npmcli/run-script": "^9.0.1", "npm-package-arg": "^12.0.0", "pacote": "^19.0.0" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/libnpmpublish": { "version": "10.0.1", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "ci-info": "^4.0.0", "normalize-package-data": "^7.0.0", "npm-package-arg": "^12.0.0", "npm-registry-fetch": "^18.0.1", "proc-log": "^5.0.0", "semver": "^7.3.7", "sigstore": "^3.0.0", "ssri": "^12.0.0" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/libnpmsearch": { "version": "8.0.0", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "npm-registry-fetch": "^18.0.1" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/libnpmteam": { "version": "7.0.0", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "aproba": "^2.0.0", "npm-registry-fetch": "^18.0.1" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/libnpmversion": { "version": "7.0.0", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "@npmcli/git": "^6.0.1", "@npmcli/run-script": "^9.0.1", "json-parse-even-better-errors": "^4.0.0", "proc-log": "^5.0.0", "semver": "^7.3.7" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/lru-cache": { "version": "10.4.3", "dev": true, "inBundle": true, "license": "ISC" }, "node_modules/npm/node_modules/make-fetch-happen": { "version": "14.0.3", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "@npmcli/agent": "^3.0.0", "cacache": "^19.0.1", "http-cache-semantics": "^4.1.1", "minipass": "^7.0.2", "minipass-fetch": "^4.0.0", "minipass-flush": "^1.0.5", "minipass-pipeline": "^1.2.4", "negotiator": "^1.0.0", "proc-log": "^5.0.0", "promise-retry": "^2.0.1", "ssri": "^12.0.0" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/make-fetch-happen/node_modules/negotiator": { "version": "1.0.0", "dev": true, "inBundle": true, "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/npm/node_modules/minimatch": { "version": "9.0.5", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "brace-expansion": "^2.0.1" }, "engines": { "node": ">=16 || 14 >=14.17" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/npm/node_modules/minipass": { "version": "7.1.2", "dev": true, "inBundle": true, "license": "ISC", "engines": { "node": ">=16 || 14 >=14.17" } }, "node_modules/npm/node_modules/minipass-collect": { "version": "2.0.1", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "minipass": "^7.0.3" }, "engines": { "node": ">=16 || 14 >=14.17" } }, "node_modules/npm/node_modules/minipass-fetch": { "version": "4.0.0", "dev": true, "inBundle": true, "license": "MIT", "dependencies": { "minipass": "^7.0.3", "minipass-sized": "^1.0.3", "minizlib": "^3.0.1" }, "engines": { "node": "^18.17.0 || >=20.5.0" }, "optionalDependencies": { "encoding": "^0.1.13" } }, "node_modules/npm/node_modules/minipass-fetch/node_modules/minizlib": { "version": "3.0.1", "dev": true, "inBundle": true, "license": "MIT", "dependencies": { "minipass": "^7.0.4", "rimraf": "^5.0.5" }, "engines": { "node": ">= 18" } }, "node_modules/npm/node_modules/minipass-flush": { "version": "1.0.5", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "minipass": "^3.0.0" }, "engines": { "node": ">= 8" } }, "node_modules/npm/node_modules/minipass-flush/node_modules/minipass": { "version": "3.3.6", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "yallist": "^4.0.0" }, "engines": { "node": ">=8" } }, "node_modules/npm/node_modules/minipass-pipeline": { "version": "1.2.4", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "minipass": "^3.0.0" }, "engines": { "node": ">=8" } }, "node_modules/npm/node_modules/minipass-pipeline/node_modules/minipass": { "version": "3.3.6", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "yallist": "^4.0.0" }, "engines": { "node": ">=8" } }, "node_modules/npm/node_modules/minipass-sized": { "version": "1.0.3", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "minipass": "^3.0.0" }, "engines": { "node": ">=8" } }, "node_modules/npm/node_modules/minipass-sized/node_modules/minipass": { "version": "3.3.6", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "yallist": "^4.0.0" }, "engines": { "node": ">=8" } }, "node_modules/npm/node_modules/minizlib": { "version": "2.1.2", "dev": true, "inBundle": true, "license": "MIT", "dependencies": { "minipass": "^3.0.0", "yallist": "^4.0.0" }, "engines": { "node": ">= 8" } }, "node_modules/npm/node_modules/minizlib/node_modules/minipass": { "version": "3.3.6", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "yallist": "^4.0.0" }, "engines": { "node": ">=8" } }, "node_modules/npm/node_modules/mkdirp": { "version": "1.0.4", "dev": true, "inBundle": true, "license": "MIT", "bin": { "mkdirp": "bin/cmd.js" }, "engines": { "node": ">=10" } }, "node_modules/npm/node_modules/ms": { "version": "2.1.3", "dev": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/mute-stream": { "version": "2.0.0", "dev": true, "inBundle": true, "license": "ISC", "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/node-gyp": { "version": "11.0.0", "dev": true, "inBundle": true, "license": "MIT", "dependencies": { "env-paths": "^2.2.0", "exponential-backoff": "^3.1.1", "glob": "^10.3.10", "graceful-fs": "^4.2.6", "make-fetch-happen": "^14.0.3", "nopt": "^8.0.0", "proc-log": "^5.0.0", "semver": "^7.3.5", "tar": "^7.4.3", "which": "^5.0.0" }, "bin": { "node-gyp": "bin/node-gyp.js" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/node-gyp/node_modules/chownr": { "version": "3.0.0", "dev": true, "inBundle": true, "license": "BlueOak-1.0.0", "engines": { "node": ">=18" } }, "node_modules/npm/node_modules/node-gyp/node_modules/minizlib": { "version": "3.0.1", "dev": true, "inBundle": true, "license": "MIT", "dependencies": { "minipass": "^7.0.4", "rimraf": "^5.0.5" }, "engines": { "node": ">= 18" } }, "node_modules/npm/node_modules/node-gyp/node_modules/mkdirp": { "version": "3.0.1", "dev": true, "inBundle": true, "license": "MIT", "bin": { "mkdirp": "dist/cjs/src/bin.js" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/npm/node_modules/node-gyp/node_modules/tar": { "version": "7.4.3", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "@isaacs/fs-minipass": "^4.0.0", "chownr": "^3.0.0", "minipass": "^7.1.2", "minizlib": "^3.0.1", "mkdirp": "^3.0.1", "yallist": "^5.0.0" }, "engines": { "node": ">=18" } }, "node_modules/npm/node_modules/node-gyp/node_modules/yallist": { "version": "5.0.0", "dev": true, "inBundle": true, "license": "BlueOak-1.0.0", "engines": { "node": ">=18" } }, "node_modules/npm/node_modules/nopt": { "version": "8.0.0", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "abbrev": "^2.0.0" }, "bin": { "nopt": "bin/nopt.js" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/nopt/node_modules/abbrev": { "version": "2.0.0", "dev": true, "inBundle": true, "license": "ISC", "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, "node_modules/npm/node_modules/normalize-package-data": { "version": "7.0.0", "dev": true, "inBundle": true, "license": "BSD-2-Clause", "dependencies": { "hosted-git-info": "^8.0.0", "semver": "^7.3.5", "validate-npm-package-license": "^3.0.4" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/npm-audit-report": { "version": "6.0.0", "dev": true, "inBundle": true, "license": "ISC", "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/npm-bundled": { "version": "4.0.0", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "npm-normalize-package-bin": "^4.0.0" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/npm-install-checks": { "version": "7.1.1", "dev": true, "inBundle": true, "license": "BSD-2-Clause", "dependencies": { "semver": "^7.1.1" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/npm-normalize-package-bin": { "version": "4.0.0", "dev": true, "inBundle": true, "license": "ISC", "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/npm-package-arg": { "version": "12.0.0", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "hosted-git-info": "^8.0.0", "proc-log": "^5.0.0", "semver": "^7.3.5", "validate-npm-package-name": "^6.0.0" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/npm-packlist": { "version": "9.0.0", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "ignore-walk": "^7.0.0" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/npm-pick-manifest": { "version": "10.0.0", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "npm-install-checks": "^7.1.0", "npm-normalize-package-bin": "^4.0.0", "npm-package-arg": "^12.0.0", "semver": "^7.3.5" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/npm-profile": { "version": "11.0.1", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "npm-registry-fetch": "^18.0.0", "proc-log": "^5.0.0" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/npm-registry-fetch": { "version": "18.0.2", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "@npmcli/redact": "^3.0.0", "jsonparse": "^1.3.1", "make-fetch-happen": "^14.0.0", "minipass": "^7.0.2", "minipass-fetch": "^4.0.0", "minizlib": "^3.0.1", "npm-package-arg": "^12.0.0", "proc-log": "^5.0.0" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/npm-registry-fetch/node_modules/minizlib": { "version": "3.0.1", "dev": true, "inBundle": true, "license": "MIT", "dependencies": { "minipass": "^7.0.4", "rimraf": "^5.0.5" }, "engines": { "node": ">= 18" } }, "node_modules/npm/node_modules/npm-user-validate": { "version": "3.0.0", "dev": true, "inBundle": true, "license": "BSD-2-Clause", "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/p-map": { "version": "4.0.0", "dev": true, "inBundle": true, "license": "MIT", "dependencies": { "aggregate-error": "^3.0.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/npm/node_modules/package-json-from-dist": { "version": "1.0.1", "dev": true, "inBundle": true, "license": "BlueOak-1.0.0" }, "node_modules/npm/node_modules/pacote": { "version": "19.0.1", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "@npmcli/git": "^6.0.0", "@npmcli/installed-package-contents": "^3.0.0", "@npmcli/package-json": "^6.0.0", "@npmcli/promise-spawn": "^8.0.0", "@npmcli/run-script": "^9.0.0", "cacache": "^19.0.0", "fs-minipass": "^3.0.0", "minipass": "^7.0.2", "npm-package-arg": "^12.0.0", "npm-packlist": "^9.0.0", "npm-pick-manifest": "^10.0.0", "npm-registry-fetch": "^18.0.0", "proc-log": "^5.0.0", "promise-retry": "^2.0.1", "sigstore": "^3.0.0", "ssri": "^12.0.0", "tar": "^6.1.11" }, "bin": { "pacote": "bin/index.js" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/parse-conflict-json": { "version": "4.0.0", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "json-parse-even-better-errors": "^4.0.0", "just-diff": "^6.0.0", "just-diff-apply": "^5.2.0" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/path-key": { "version": "3.1.1", "dev": true, "inBundle": true, "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/npm/node_modules/path-scurry": { "version": "1.11.1", "dev": true, "inBundle": true, "license": "BlueOak-1.0.0", "dependencies": { "lru-cache": "^10.2.0", "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" }, "engines": { "node": ">=16 || 14 >=14.18" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/npm/node_modules/postcss-selector-parser": { "version": "6.1.2", "dev": true, "inBundle": true, "license": "MIT", "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" }, "engines": { "node": ">=4" } }, "node_modules/npm/node_modules/proc-log": { "version": "5.0.0", "dev": true, "inBundle": true, "license": "ISC", "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/proggy": { "version": "3.0.0", "dev": true, "inBundle": true, "license": "ISC", "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/promise-all-reject-late": { "version": "1.0.1", "dev": true, "inBundle": true, "license": "ISC", "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/npm/node_modules/promise-call-limit": { "version": "3.0.2", "dev": true, "inBundle": true, "license": "ISC", "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/npm/node_modules/promise-inflight": { "version": "1.0.1", "dev": true, "inBundle": true, "license": "ISC" }, "node_modules/npm/node_modules/promise-retry": { "version": "2.0.1", "dev": true, "inBundle": true, "license": "MIT", "dependencies": { "err-code": "^2.0.2", "retry": "^0.12.0" }, "engines": { "node": ">=10" } }, "node_modules/npm/node_modules/promzard": { "version": "2.0.0", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "read": "^4.0.0" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/qrcode-terminal": { "version": "0.12.0", "dev": true, "inBundle": true, "bin": { "qrcode-terminal": "bin/qrcode-terminal.js" } }, "node_modules/npm/node_modules/read": { "version": "4.0.0", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "mute-stream": "^2.0.0" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/read-cmd-shim": { "version": "5.0.0", "dev": true, "inBundle": true, "license": "ISC", "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/read-package-json-fast": { "version": "4.0.0", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "json-parse-even-better-errors": "^4.0.0", "npm-normalize-package-bin": "^4.0.0" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/retry": { "version": "0.12.0", "dev": true, "inBundle": true, "license": "MIT", "engines": { "node": ">= 4" } }, "node_modules/npm/node_modules/rimraf": { "version": "5.0.10", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "glob": "^10.3.7" }, "bin": { "rimraf": "dist/esm/bin.mjs" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/npm/node_modules/safer-buffer": { "version": "2.1.2", "dev": true, "inBundle": true, "license": "MIT", "optional": true }, "node_modules/npm/node_modules/semver": { "version": "7.6.3", "dev": true, "inBundle": true, "license": "ISC", "bin": { "semver": "bin/semver.js" }, "engines": { "node": ">=10" } }, "node_modules/npm/node_modules/shebang-command": { "version": "2.0.0", "dev": true, "inBundle": true, "license": "MIT", "dependencies": { "shebang-regex": "^3.0.0" }, "engines": { "node": ">=8" } }, "node_modules/npm/node_modules/shebang-regex": { "version": "3.0.0", "dev": true, "inBundle": true, "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/npm/node_modules/signal-exit": { "version": "4.1.0", "dev": true, "inBundle": true, "license": "ISC", "engines": { "node": ">=14" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/npm/node_modules/sigstore": { "version": "3.0.0", "dev": true, "inBundle": true, "license": "Apache-2.0", "dependencies": { "@sigstore/bundle": "^3.0.0", "@sigstore/core": "^2.0.0", "@sigstore/protobuf-specs": "^0.3.2", "@sigstore/sign": "^3.0.0", "@sigstore/tuf": "^3.0.0", "@sigstore/verify": "^2.0.0" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/sigstore/node_modules/@sigstore/bundle": { "version": "3.0.0", "dev": true, "inBundle": true, "license": "Apache-2.0", "dependencies": { "@sigstore/protobuf-specs": "^0.3.2" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/sigstore/node_modules/@sigstore/core": { "version": "2.0.0", "dev": true, "inBundle": true, "license": "Apache-2.0", "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/sigstore/node_modules/@sigstore/sign": { "version": "3.0.0", "dev": true, "inBundle": true, "license": "Apache-2.0", "dependencies": { "@sigstore/bundle": "^3.0.0", "@sigstore/core": "^2.0.0", "@sigstore/protobuf-specs": "^0.3.2", "make-fetch-happen": "^14.0.1", "proc-log": "^5.0.0", "promise-retry": "^2.0.1" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/sigstore/node_modules/@sigstore/verify": { "version": "2.0.0", "dev": true, "inBundle": true, "license": "Apache-2.0", "dependencies": { "@sigstore/bundle": "^3.0.0", "@sigstore/core": "^2.0.0", "@sigstore/protobuf-specs": "^0.3.2" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/smart-buffer": { "version": "4.2.0", "dev": true, "inBundle": true, "license": "MIT", "engines": { "node": ">= 6.0.0", "npm": ">= 3.0.0" } }, "node_modules/npm/node_modules/socks": { "version": "2.8.3", "dev": true, "inBundle": true, "license": "MIT", "dependencies": { "ip-address": "^9.0.5", "smart-buffer": "^4.2.0" }, "engines": { "node": ">= 10.0.0", "npm": ">= 3.0.0" } }, "node_modules/npm/node_modules/socks-proxy-agent": { "version": "8.0.4", "dev": true, "inBundle": true, "license": "MIT", "dependencies": { "agent-base": "^7.1.1", "debug": "^4.3.4", "socks": "^2.8.3" }, "engines": { "node": ">= 14" } }, "node_modules/npm/node_modules/spdx-correct": { "version": "3.2.0", "dev": true, "inBundle": true, "license": "Apache-2.0", "dependencies": { "spdx-expression-parse": "^3.0.0", "spdx-license-ids": "^3.0.0" } }, "node_modules/npm/node_modules/spdx-correct/node_modules/spdx-expression-parse": { "version": "3.0.1", "dev": true, "inBundle": true, "license": "MIT", "dependencies": { "spdx-exceptions": "^2.1.0", "spdx-license-ids": "^3.0.0" } }, "node_modules/npm/node_modules/spdx-exceptions": { "version": "2.5.0", "dev": true, "inBundle": true, "license": "CC-BY-3.0" }, "node_modules/npm/node_modules/spdx-expression-parse": { "version": "4.0.0", "dev": true, "inBundle": true, "license": "MIT", "dependencies": { "spdx-exceptions": "^2.1.0", "spdx-license-ids": "^3.0.0" } }, "node_modules/npm/node_modules/spdx-license-ids": { "version": "3.0.20", "dev": true, "inBundle": true, "license": "CC0-1.0" }, "node_modules/npm/node_modules/sprintf-js": { "version": "1.1.3", "dev": true, "inBundle": true, "license": "BSD-3-Clause" }, "node_modules/npm/node_modules/ssri": { "version": "12.0.0", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "minipass": "^7.0.3" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/string-width": { "version": "4.2.3", "dev": true, "inBundle": true, "license": "MIT", "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" }, "engines": { "node": ">=8" } }, "node_modules/npm/node_modules/string-width-cjs": { "name": "string-width", "version": "4.2.3", "dev": true, "inBundle": true, "license": "MIT", "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" }, "engines": { "node": ">=8" } }, "node_modules/npm/node_modules/strip-ansi": { "version": "6.0.1", "dev": true, "inBundle": true, "license": "MIT", "dependencies": { "ansi-regex": "^5.0.1" }, "engines": { "node": ">=8" } }, "node_modules/npm/node_modules/strip-ansi-cjs": { "name": "strip-ansi", "version": "6.0.1", "dev": true, "inBundle": true, "license": "MIT", "dependencies": { "ansi-regex": "^5.0.1" }, "engines": { "node": ">=8" } }, "node_modules/npm/node_modules/supports-color": { "version": "9.4.0", "dev": true, "inBundle": true, "license": "MIT", "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/chalk/supports-color?sponsor=1" } }, "node_modules/npm/node_modules/tar": { "version": "6.2.1", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "chownr": "^2.0.0", "fs-minipass": "^2.0.0", "minipass": "^5.0.0", "minizlib": "^2.1.1", "mkdirp": "^1.0.3", "yallist": "^4.0.0" }, "engines": { "node": ">=10" } }, "node_modules/npm/node_modules/tar/node_modules/fs-minipass": { "version": "2.1.0", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "minipass": "^3.0.0" }, "engines": { "node": ">= 8" } }, "node_modules/npm/node_modules/tar/node_modules/fs-minipass/node_modules/minipass": { "version": "3.3.6", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "yallist": "^4.0.0" }, "engines": { "node": ">=8" } }, "node_modules/npm/node_modules/tar/node_modules/minipass": { "version": "5.0.0", "dev": true, "inBundle": true, "license": "ISC", "engines": { "node": ">=8" } }, "node_modules/npm/node_modules/text-table": { "version": "0.2.0", "dev": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/tiny-relative-date": { "version": "1.3.0", "dev": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/treeverse": { "version": "3.0.0", "dev": true, "inBundle": true, "license": "ISC", "engines": { "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, "node_modules/npm/node_modules/tuf-js": { "version": "3.0.1", "dev": true, "inBundle": true, "license": "MIT", "dependencies": { "@tufjs/models": "3.0.1", "debug": "^4.3.6", "make-fetch-happen": "^14.0.1" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/tuf-js/node_modules/@tufjs/models": { "version": "3.0.1", "dev": true, "inBundle": true, "license": "MIT", "dependencies": { "@tufjs/canonical-json": "2.0.0", "minimatch": "^9.0.5" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/unique-filename": { "version": "4.0.0", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "unique-slug": "^5.0.0" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/unique-slug": { "version": "5.0.0", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "imurmurhash": "^0.1.4" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/util-deprecate": { "version": "1.0.2", "dev": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/validate-npm-package-license": { "version": "3.0.4", "dev": true, "inBundle": true, "license": "Apache-2.0", "dependencies": { "spdx-correct": "^3.0.0", "spdx-expression-parse": "^3.0.0" } }, "node_modules/npm/node_modules/validate-npm-package-license/node_modules/spdx-expression-parse": { "version": "3.0.1", "dev": true, "inBundle": true, "license": "MIT", "dependencies": { "spdx-exceptions": "^2.1.0", "spdx-license-ids": "^3.0.0" } }, "node_modules/npm/node_modules/validate-npm-package-name": { "version": "6.0.0", "dev": true, "inBundle": true, "license": "ISC", "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/walk-up-path": { "version": "3.0.1", "dev": true, "inBundle": true, "license": "ISC" }, "node_modules/npm/node_modules/which": { "version": "5.0.0", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "isexe": "^3.1.1" }, "bin": { "node-which": "bin/which.js" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/which/node_modules/isexe": { "version": "3.1.1", "dev": true, "inBundle": true, "license": "ISC", "engines": { "node": ">=16" } }, "node_modules/npm/node_modules/wrap-ansi": { "version": "8.1.0", "dev": true, "inBundle": true, "license": "MIT", "dependencies": { "ansi-styles": "^6.1.0", "string-width": "^5.0.1", "strip-ansi": "^7.0.1" }, "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, "node_modules/npm/node_modules/wrap-ansi-cjs": { "name": "wrap-ansi", "version": "7.0.0", "dev": true, "inBundle": true, "license": "MIT", "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, "node_modules/npm/node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { "version": "4.3.0", "dev": true, "inBundle": true, "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, "node_modules/npm/node_modules/wrap-ansi/node_modules/ansi-regex": { "version": "6.1.0", "dev": true, "inBundle": true, "license": "MIT", "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/chalk/ansi-regex?sponsor=1" } }, "node_modules/npm/node_modules/wrap-ansi/node_modules/emoji-regex": { "version": "9.2.2", "dev": true, "inBundle": true, "license": "MIT" }, "node_modules/npm/node_modules/wrap-ansi/node_modules/string-width": { "version": "5.1.2", "dev": true, "inBundle": true, "license": "MIT", "dependencies": { "eastasianwidth": "^0.2.0", "emoji-regex": "^9.2.2", "strip-ansi": "^7.0.1" }, "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/npm/node_modules/wrap-ansi/node_modules/strip-ansi": { "version": "7.1.0", "dev": true, "inBundle": true, "license": "MIT", "dependencies": { "ansi-regex": "^6.0.1" }, "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/chalk/strip-ansi?sponsor=1" } }, "node_modules/npm/node_modules/write-file-atomic": { "version": "6.0.0", "dev": true, "inBundle": true, "license": "ISC", "dependencies": { "imurmurhash": "^0.1.4", "signal-exit": "^4.0.1" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/npm/node_modules/yallist": { "version": "4.0.0", "dev": true, "inBundle": true, "license": "ISC" }, "node_modules/nth-check": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", "dev": true, "license": "BSD-2-Clause", "dependencies": { "boolbase": "^1.0.0" }, "funding": { "url": "https://github.com/fb55/nth-check?sponsor=1" } }, "node_modules/object-assign": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/object-hash": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/object-hash/-/object-hash-3.0.0.tgz", "integrity": "sha512-RSn9F68PjH9HqtltsSnqYC1XXoWe9Bju5+213R98cNGttag9q9yAOTzdbsqvIa7aNm5WffBZFpWYr2aWrklWAw==", "dev": true, "license": "MIT", "engines": { "node": ">= 6" } }, "node_modules/object-inspect": { "version": "1.13.3", "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.3.tgz", "integrity": "sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==", "dev": true, "license": "MIT", "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/obuf": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", "dev": true, "license": "MIT" }, "node_modules/on-finished": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", "dev": true, "license": "MIT", "dependencies": { "ee-first": "1.1.1" }, "engines": { "node": ">= 0.8" } }, "node_modules/on-headers": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", "dev": true, "license": "MIT", "engines": { "node": ">= 0.8" } }, "node_modules/once": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", "dev": true, "license": "ISC", "dependencies": { "wrappy": "1" } }, "node_modules/onetime": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", "dev": true, "license": "MIT", "dependencies": { "mimic-fn": "^2.1.0" }, "engines": { "node": ">=6" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/open": { "version": "10.1.0", "resolved": "https://registry.npmjs.org/open/-/open-10.1.0.tgz", "integrity": "sha512-mnkeQ1qP5Ue2wd+aivTD3NHd/lZ96Lu0jgf0pwktLPtx6cTZiH7tyeGRRHs0zX0rbrahXPnXlUnbeXyaBBuIaw==", "dev": true, "license": "MIT", "dependencies": { "default-browser": "^5.2.1", "define-lazy-prop": "^3.0.0", "is-inside-container": "^1.0.0", "is-wsl": "^3.1.0" }, "engines": { "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/opener": { "version": "1.5.2", "resolved": "https://registry.npmjs.org/opener/-/opener-1.5.2.tgz", "integrity": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==", "dev": true, "license": "(WTFPL OR MIT)", "bin": { "opener": "bin/opener-bin.js" } }, "node_modules/optionator": { "version": "0.9.4", "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.4.tgz", "integrity": "sha512-6IpQ7mKUxRcZNLIObR0hz7lxsapSSIYNZJwXPGeF0mTVqGKFIXj1DQcMoT22S3ROcLyY/rz0PWaWZ9ayWmad9g==", "dev": true, "license": "MIT", "dependencies": { "deep-is": "^0.1.3", "fast-levenshtein": "^2.0.6", "levn": "^0.4.1", "prelude-ls": "^1.2.1", "type-check": "^0.4.0", "word-wrap": "^1.2.5" }, "engines": { "node": ">= 0.8.0" } }, "node_modules/ora": { "version": "5.4.1", "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", "dev": true, "license": "MIT", "dependencies": { "bl": "^4.1.0", "chalk": "^4.1.0", "cli-cursor": "^3.1.0", "cli-spinners": "^2.5.0", "is-interactive": "^1.0.0", "is-unicode-supported": "^0.1.0", "log-symbols": "^4.1.0", "strip-ansi": "^6.0.0", "wcwidth": "^1.0.1" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/os-tmpdir": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/p-each-series": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/p-each-series/-/p-each-series-3.0.0.tgz", "integrity": "sha512-lastgtAdoH9YaLyDa5i5z64q+kzOcQHsQ5SsZJD3q0VEyI8mq872S3geuNbRUQLVAE9siMfgKrpj7MloKFHruw==", "dev": true, "license": "MIT", "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/p-filter": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/p-filter/-/p-filter-4.1.0.tgz", "integrity": "sha512-37/tPdZ3oJwHaS3gNJdenCDB3Tz26i9sjhnguBtvN0vYlRIiDNnvTWkuh+0hETV9rLPdJ3rlL3yVOYPIAnM8rw==", "dev": true, "license": "MIT", "dependencies": { "p-map": "^7.0.1" }, "engines": { "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/p-is-promise": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-3.0.0.tgz", "integrity": "sha512-Wo8VsW4IRQSKVXsJCn7TomUaVtyfjVDn3nUP7kE967BQk0CwFpdbZs0X0uk5sW9mkBa9eNM7hCMaG93WUAwxYQ==", "dev": true, "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/p-limit": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "license": "MIT", "dependencies": { "yocto-queue": "^0.1.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/p-locate": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", "license": "MIT", "dependencies": { "p-limit": "^3.0.2" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/p-map": { "version": "7.0.3", "resolved": "https://registry.npmjs.org/p-map/-/p-map-7.0.3.tgz", "integrity": "sha512-VkndIv2fIB99swvQoA65bm+fsmt6UNdGeIB0oxBs+WhAhdh08QA04JXpI7rbB9r08/nkbysKoya9rtDERYOYMA==", "dev": true, "license": "MIT", "engines": { "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/p-reduce": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-2.1.0.tgz", "integrity": "sha512-2USApvnsutq8uoxZBGbbWM0JIYLiEMJ9RlaN7fAzVNb9OZN0SHjjTTfIcb667XynS5Y1VhwDJVDa72TnPzAYWw==", "dev": true, "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/p-retry": { "version": "6.2.1", "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-6.2.1.tgz", "integrity": "sha512-hEt02O4hUct5wtwg4H4KcWgDdm+l1bOaEy/hWzd8xtXB9BqxTWBBhb+2ImAtH4Cv4rPjV76xN3Zumqk3k3AhhQ==", "dev": true, "license": "MIT", "dependencies": { "@types/retry": "0.12.2", "is-network-error": "^1.0.0", "retry": "^0.13.1" }, "engines": { "node": ">=16.17" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/p-try": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", "dev": true, "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/package-json-from-dist": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/package-json-from-dist/-/package-json-from-dist-1.0.1.tgz", "integrity": "sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==", "dev": true, "license": "BlueOak-1.0.0" }, "node_modules/param-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", "dev": true, "license": "MIT", "dependencies": { "dot-case": "^3.0.4", "tslib": "^2.0.3" } }, "node_modules/parent-module": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", "dev": true, "license": "MIT", "dependencies": { "callsites": "^3.0.0" }, "engines": { "node": ">=6" } }, "node_modules/parse-json": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", "dev": true, "license": "MIT", "dependencies": { "@babel/code-frame": "^7.0.0", "error-ex": "^1.3.1", "json-parse-even-better-errors": "^2.3.0", "lines-and-columns": "^1.1.6" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/parse-ms": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/parse-ms/-/parse-ms-4.0.0.tgz", "integrity": "sha512-TXfryirbmq34y8QBwgqCVLi+8oA3oWx2eAnSn62ITyEhEYaWRlVZ2DvMM9eZbMs/RfxPu/PK/aBLyGj4IrqMHw==", "dev": true, "license": "MIT", "engines": { "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/parse-passwd": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", "integrity": "sha512-1Y1A//QUXEZK7YKz+rD9WydcE1+EuPr6ZBgKecAB8tmoW6UFv0NREVJe1p+jRxtThkcbbKkfwIbWJe/IeE6m2Q==", "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/parse5": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/parse5/-/parse5-5.1.1.tgz", "integrity": "sha512-ugq4DFI0Ptb+WWjAdOK16+u/nHfiIrcE+sh8kZMaM0WllQKLI9rOUq6c2b7cwPkXdzfQESqvoqK6ug7U/Yyzug==", "dev": true, "license": "MIT" }, "node_modules/parse5-htmlparser2-tree-adapter": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/parse5-htmlparser2-tree-adapter/-/parse5-htmlparser2-tree-adapter-6.0.1.tgz", "integrity": "sha512-qPuWvbLgvDGilKc5BoicRovlT4MtYT6JfJyBOMDsKoiT+GiuP5qyrPCnR9HcPECIJJmZh5jRndyNThnhhb/vlA==", "dev": true, "license": "MIT", "dependencies": { "parse5": "^6.0.1" } }, "node_modules/parse5-htmlparser2-tree-adapter/node_modules/parse5": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", "dev": true, "license": "MIT" }, "node_modules/parseurl": { "version": "1.3.3", "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", "dev": true, "license": "MIT", "engines": { "node": ">= 0.8" } }, "node_modules/pascal-case": { "version": "3.1.2", "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", "dev": true, "license": "MIT", "dependencies": { "no-case": "^3.0.4", "tslib": "^2.0.3" } }, "node_modules/path-exists": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/path-is-absolute": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/path-key": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", "dev": true, "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/path-parse": { "version": "1.0.7", "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", "dev": true, "license": "MIT" }, "node_modules/path-scurry": { "version": "1.11.1", "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.11.1.tgz", "integrity": "sha512-Xa4Nw17FS9ApQFJ9umLiJS4orGjm7ZzwUrwamcGQuHSzDyth9boKDaycYdDcZDuqYATXw4HFXgaqWTctW/v1HA==", "license": "BlueOak-1.0.0", "dependencies": { "lru-cache": "^10.2.0", "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" }, "engines": { "node": ">=16 || 14 >=14.18" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/path-scurry/node_modules/lru-cache": { "version": "10.4.3", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", "license": "ISC" }, "node_modules/path-scurry/node_modules/minipass": { "version": "7.1.2", "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", "license": "ISC", "engines": { "node": ">=16 || 14 >=14.17" } }, "node_modules/path-to-regexp": { "version": "0.1.12", "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.12.tgz", "integrity": "sha512-RA1GjUVMnvYFxuqovrEqZoxxW5NUZqbwKtYz/Tt7nXerk0LbLblQmrsgdeOxV5SFHf0UDggjS/bSeOZwt1pmEQ==", "dev": true, "license": "MIT" }, "node_modules/path-type": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", "dev": true, "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/picocolors": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", "integrity": "sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==", "license": "ISC" }, "node_modules/picomatch": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", "license": "MIT", "engines": { "node": ">=8.6" }, "funding": { "url": "https://github.com/sponsors/jonschlinkert" } }, "node_modules/pify": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", "dev": true, "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/pirates": { "version": "4.0.6", "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", "dev": true, "license": "MIT", "engines": { "node": ">= 6" } }, "node_modules/pkg-conf": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/pkg-conf/-/pkg-conf-2.1.0.tgz", "integrity": "sha512-C+VUP+8jis7EsQZIhDYmS5qlNtjv2yP4SNtjXK9AP1ZcTRlnSfuumaTnRfYZnYgUUYVIKqL0fRvmUGDV2fmp6g==", "dev": true, "license": "MIT", "dependencies": { "find-up": "^2.0.0", "load-json-file": "^4.0.0" }, "engines": { "node": ">=4" } }, "node_modules/pkg-conf/node_modules/find-up": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-2.1.0.tgz", "integrity": "sha512-NWzkk0jSJtTt08+FBFMvXoeZnOJD+jTtsRmBYbAIzJdX6l7dLgR7CTubCM5/eDdPUBvLCeVasP1brfVR/9/EZQ==", "dev": true, "license": "MIT", "dependencies": { "locate-path": "^2.0.0" }, "engines": { "node": ">=4" } }, "node_modules/pkg-conf/node_modules/locate-path": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-2.0.0.tgz", "integrity": "sha512-NCI2kiDkyR7VeEKm27Kda/iQHyKJe1Bu0FlTbYp3CqJu+9IFe9bLyAjMxf5ZDDbEg+iMPzB5zYyUTSm8wVTKmA==", "dev": true, "license": "MIT", "dependencies": { "p-locate": "^2.0.0", "path-exists": "^3.0.0" }, "engines": { "node": ">=4" } }, "node_modules/pkg-conf/node_modules/p-limit": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-1.3.0.tgz", "integrity": "sha512-vvcXsLAJ9Dr5rQOPk7toZQZJApBl2K4J6dANSsEuh6QI41JYcsS/qhTGa9ErIUUgK3WNQoJYvylxvjqmiqEA9Q==", "dev": true, "license": "MIT", "dependencies": { "p-try": "^1.0.0" }, "engines": { "node": ">=4" } }, "node_modules/pkg-conf/node_modules/p-locate": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-2.0.0.tgz", "integrity": "sha512-nQja7m7gSKuewoVRen45CtVfODR3crN3goVQ0DDZ9N3yHxgpkuBhZqsaiotSQRrADUrne346peY7kT3TSACykg==", "dev": true, "license": "MIT", "dependencies": { "p-limit": "^1.1.0" }, "engines": { "node": ">=4" } }, "node_modules/pkg-conf/node_modules/p-try": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/p-try/-/p-try-1.0.0.tgz", "integrity": "sha512-U1etNYuMJoIz3ZXSrrySFjsXQTWOx2/jdi86L+2pRvph/qMKL6sbcCYdH23fqsbm8TH2Gn0OybpT4eSFlCVHww==", "dev": true, "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/pkg-conf/node_modules/path-exists": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", "dev": true, "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/pkg-dir": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-7.0.0.tgz", "integrity": "sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==", "dev": true, "license": "MIT", "dependencies": { "find-up": "^6.3.0" }, "engines": { "node": ">=14.16" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/pkg-dir/node_modules/find-up": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-6.3.0.tgz", "integrity": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==", "dev": true, "license": "MIT", "dependencies": { "locate-path": "^7.1.0", "path-exists": "^5.0.0" }, "engines": { "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/pkg-dir/node_modules/locate-path": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-7.2.0.tgz", "integrity": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==", "dev": true, "license": "MIT", "dependencies": { "p-locate": "^6.0.0" }, "engines": { "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/pkg-dir/node_modules/p-limit": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz", "integrity": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==", "dev": true, "license": "MIT", "dependencies": { "yocto-queue": "^1.0.0" }, "engines": { "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/pkg-dir/node_modules/p-locate": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-6.0.0.tgz", "integrity": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==", "dev": true, "license": "MIT", "dependencies": { "p-limit": "^4.0.0" }, "engines": { "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/pkg-dir/node_modules/path-exists": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-5.0.0.tgz", "integrity": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==", "dev": true, "license": "MIT", "engines": { "node": "^12.20.0 || ^14.13.1 || >=16.0.0" } }, "node_modules/pkg-dir/node_modules/yocto-queue": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.1.1.tgz", "integrity": "sha512-b4JR1PFR10y1mKjhHY9LaGo6tmrgjit7hxVIeAmyMw3jegXR4dhYqLaQF5zMXZxY7tLpMyJeLjr1C4rLmkVe8g==", "dev": true, "license": "MIT", "engines": { "node": ">=12.20" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/postcss": { "version": "8.5.1", "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.1.tgz", "integrity": "sha512-6oz2beyjc5VMn/KV1pPw8fliQkhBXrVn1Z3TVyqZxU8kZpzEKhBdmCFqI6ZbmGtamQvQGuU1sgPTk8ZrXDD7jQ==", "dev": true, "funding": [ { "type": "opencollective", "url": "https://opencollective.com/postcss/" }, { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/postcss" }, { "type": "github", "url": "https://github.com/sponsors/ai" } ], "license": "MIT", "dependencies": { "nanoid": "^3.3.8", "picocolors": "^1.1.1", "source-map-js": "^1.2.1" }, "engines": { "node": "^10 || ^12 || >=14" } }, "node_modules/postcss-import": { "version": "15.1.0", "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", "dev": true, "license": "MIT", "dependencies": { "postcss-value-parser": "^4.0.0", "read-cache": "^1.0.0", "resolve": "^1.1.7" }, "engines": { "node": ">=14.0.0" }, "peerDependencies": { "postcss": "^8.0.0" } }, "node_modules/postcss-js": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/postcss-js/-/postcss-js-4.0.1.tgz", "integrity": "sha512-dDLF8pEO191hJMtlHFPRa8xsizHaM82MLfNkUHdUtVEV3tgTp5oj+8qbEqYM57SLfc74KSbw//4SeJma2LRVIw==", "dev": true, "license": "MIT", "dependencies": { "camelcase-css": "^2.0.1" }, "engines": { "node": "^12 || ^14 || >= 16" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/postcss/" }, "peerDependencies": { "postcss": "^8.4.21" } }, "node_modules/postcss-load-config": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.2.tgz", "integrity": "sha512-bSVhyJGL00wMVoPUzAVAnbEoWyqRxkjv64tUl427SKnPrENtq6hJwUojroMz2VB+Q1edmi4IfrAPpami5VVgMQ==", "dev": true, "funding": [ { "type": "opencollective", "url": "https://opencollective.com/postcss/" }, { "type": "github", "url": "https://github.com/sponsors/ai" } ], "license": "MIT", "dependencies": { "lilconfig": "^3.0.0", "yaml": "^2.3.4" }, "engines": { "node": ">= 14" }, "peerDependencies": { "postcss": ">=8.0.9", "ts-node": ">=9.0.0" }, "peerDependenciesMeta": { "postcss": { "optional": true }, "ts-node": { "optional": true } } }, "node_modules/postcss-loader": { "version": "7.3.4", "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-7.3.4.tgz", "integrity": "sha512-iW5WTTBSC5BfsBJ9daFMPVrLT36MrNiC6fqOZTTaHjBNX6Pfd5p+hSBqe/fEeNd7pc13QiAyGt7VdGMw4eRC4A==", "dev": true, "license": "MIT", "dependencies": { "cosmiconfig": "^8.3.5", "jiti": "^1.20.0", "semver": "^7.5.4" }, "engines": { "node": ">= 14.15.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" }, "peerDependencies": { "postcss": "^7.0.0 || ^8.0.1", "webpack": "^5.0.0" } }, "node_modules/postcss-loader/node_modules/semver": { "version": "7.6.3", "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", "dev": true, "license": "ISC", "bin": { "semver": "bin/semver.js" }, "engines": { "node": ">=10" } }, "node_modules/postcss-modules-extract-imports": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.1.0.tgz", "integrity": "sha512-k3kNe0aNFQDAZGbin48pL2VNidTF0w4/eASDsxlyspobzU3wZQLOGj7L9gfRe0Jo9/4uud09DsjFNH7winGv8Q==", "dev": true, "license": "ISC", "engines": { "node": "^10 || ^12 || >= 14" }, "peerDependencies": { "postcss": "^8.1.0" } }, "node_modules/postcss-modules-local-by-default": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.2.0.tgz", "integrity": "sha512-5kcJm/zk+GJDSfw+V/42fJ5fhjL5YbFDl8nVdXkJPLLW+Vf9mTD5Xe0wqIaDnLuL2U6cDNpTr+UQ+v2HWIBhzw==", "dev": true, "license": "MIT", "dependencies": { "icss-utils": "^5.0.0", "postcss-selector-parser": "^7.0.0", "postcss-value-parser": "^4.1.0" }, "engines": { "node": "^10 || ^12 || >= 14" }, "peerDependencies": { "postcss": "^8.1.0" } }, "node_modules/postcss-modules-scope": { "version": "3.2.1", "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.2.1.tgz", "integrity": "sha512-m9jZstCVaqGjTAuny8MdgE88scJnCiQSlSrOWcTQgM2t32UBe+MUmFSO5t7VMSfAf/FJKImAxBav8ooCHJXCJA==", "dev": true, "license": "ISC", "dependencies": { "postcss-selector-parser": "^7.0.0" }, "engines": { "node": "^10 || ^12 || >= 14" }, "peerDependencies": { "postcss": "^8.1.0" } }, "node_modules/postcss-modules-values": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", "dev": true, "license": "ISC", "dependencies": { "icss-utils": "^5.0.0" }, "engines": { "node": "^10 || ^12 || >= 14" }, "peerDependencies": { "postcss": "^8.1.0" } }, "node_modules/postcss-nested": { "version": "6.2.0", "resolved": "https://registry.npmjs.org/postcss-nested/-/postcss-nested-6.2.0.tgz", "integrity": "sha512-HQbt28KulC5AJzG+cZtj9kvKB93CFCdLvog1WFLf1D+xmMvPGlBstkpTEZfK5+AN9hfJocyBFCNiqyS48bpgzQ==", "dev": true, "funding": [ { "type": "opencollective", "url": "https://opencollective.com/postcss/" }, { "type": "github", "url": "https://github.com/sponsors/ai" } ], "license": "MIT", "dependencies": { "postcss-selector-parser": "^6.1.1" }, "engines": { "node": ">=12.0" }, "peerDependencies": { "postcss": "^8.2.14" } }, "node_modules/postcss-nested/node_modules/postcss-selector-parser": { "version": "6.1.2", "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==", "dev": true, "license": "MIT", "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" }, "engines": { "node": ">=4" } }, "node_modules/postcss-selector-parser": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-7.0.0.tgz", "integrity": "sha512-9RbEr1Y7FFfptd/1eEdntyjMwLeghW1bHX9GWjXo19vx4ytPQhANltvVxDggzJl7mnWM+dX28kb6cyS/4iQjlQ==", "dev": true, "license": "MIT", "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" }, "engines": { "node": ">=4" } }, "node_modules/postcss-value-parser": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", "dev": true, "license": "MIT" }, "node_modules/prelude-ls": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", "dev": true, "license": "MIT", "engines": { "node": ">= 0.8.0" } }, "node_modules/pretty-error": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz", "integrity": "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==", "dev": true, "license": "MIT", "dependencies": { "lodash": "^4.17.20", "renderkid": "^3.0.0" } }, "node_modules/pretty-ms": { "version": "9.2.0", "resolved": "https://registry.npmjs.org/pretty-ms/-/pretty-ms-9.2.0.tgz", "integrity": "sha512-4yf0QO/sllf/1zbZWYnvWw3NxCQwLXKzIj0G849LSufP15BXKM0rbD2Z3wVnkMfjdn/CB0Dpp444gYAACdsplg==", "dev": true, "license": "MIT", "dependencies": { "parse-ms": "^4.0.0" }, "engines": { "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/process-nextick-args": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", "dev": true, "license": "MIT" }, "node_modules/progress": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", "engines": { "node": ">=0.4.0" } }, "node_modules/prop-types": { "version": "15.8.1", "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", "license": "MIT", "dependencies": { "loose-envify": "^1.4.0", "object-assign": "^4.1.1", "react-is": "^16.13.1" } }, "node_modules/proto-list": { "version": "1.2.4", "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", "integrity": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==", "dev": true, "license": "ISC" }, "node_modules/proxy-addr": { "version": "2.0.7", "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", "dev": true, "license": "MIT", "dependencies": { "forwarded": "0.2.0", "ipaddr.js": "1.9.1" }, "engines": { "node": ">= 0.10" } }, "node_modules/proxy-addr/node_modules/ipaddr.js": { "version": "1.9.1", "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", "dev": true, "license": "MIT", "engines": { "node": ">= 0.10" } }, "node_modules/proxy-from-env": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==" }, "node_modules/punycode": { "version": "2.3.1", "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/qs": { "version": "6.13.0", "resolved": "https://registry.npmjs.org/qs/-/qs-6.13.0.tgz", "integrity": "sha512-+38qI9SOr8tfZ4QmJNplMUxqjbe7LKvvZgWdExBOmd+egZTtjLB67Gu0HRX3u/XOq7UU2Nx6nsjvS16Z9uwfpg==", "dev": true, "license": "BSD-3-Clause", "dependencies": { "side-channel": "^1.0.6" }, "engines": { "node": ">=0.6" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/queue-microtask": { "version": "1.2.3", "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", "dev": true, "funding": [ { "type": "github", "url": "https://github.com/sponsors/feross" }, { "type": "patreon", "url": "https://www.patreon.com/feross" }, { "type": "consulting", "url": "https://feross.org/support" } ], "license": "MIT" }, "node_modules/quick-lru": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz", "integrity": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==", "dev": true, "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/randombytes": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", "license": "MIT", "dependencies": { "safe-buffer": "^5.1.0" } }, "node_modules/range-parser": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", "dev": true, "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/raw-body": { "version": "2.5.2", "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", "dev": true, "license": "MIT", "dependencies": { "bytes": "3.1.2", "http-errors": "2.0.0", "iconv-lite": "0.4.24", "unpipe": "1.0.0" }, "engines": { "node": ">= 0.8" } }, "node_modules/rc": { "version": "1.2.8", "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", "dev": true, "license": "(BSD-2-Clause OR MIT OR Apache-2.0)", "dependencies": { "deep-extend": "^0.6.0", "ini": "~1.3.0", "minimist": "^1.2.0", "strip-json-comments": "~2.0.1" }, "bin": { "rc": "cli.js" } }, "node_modules/rc/node_modules/strip-json-comments": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/react": { "version": "18.3.1", "resolved": "https://registry.npmjs.org/react/-/react-18.3.1.tgz", "integrity": "sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==", "license": "MIT", "dependencies": { "loose-envify": "^1.1.0" }, "engines": { "node": ">=0.10.0" } }, "node_modules/react-datepicker": { "version": "6.9.0", "resolved": "https://registry.npmjs.org/react-datepicker/-/react-datepicker-6.9.0.tgz", "integrity": "sha512-QTxuzeem7BUfVFWv+g5WuvzT0c5BPo+XTCNbMTZKSZQLU+cMMwSUHwspaxuIcDlwNcOH0tiJ+bh1fJ2yxOGYWA==", "license": "MIT", "dependencies": { "@floating-ui/react": "^0.26.2", "clsx": "^2.1.0", "date-fns": "^3.3.1", "prop-types": "^15.7.2", "react-onclickoutside": "^6.13.0" }, "peerDependencies": { "react": "^16.9.0 || ^17 || ^18", "react-dom": "^16.9.0 || ^17 || ^18" } }, "node_modules/react-dom": { "version": "18.3.1", "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.3.1.tgz", "integrity": "sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==", "license": "MIT", "dependencies": { "loose-envify": "^1.1.0", "scheduler": "^0.23.2" }, "peerDependencies": { "react": "^18.3.1" } }, "node_modules/react-is": { "version": "16.13.1", "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", "license": "MIT" }, "node_modules/react-onclickoutside": { "version": "6.13.1", "resolved": "https://registry.npmjs.org/react-onclickoutside/-/react-onclickoutside-6.13.1.tgz", "integrity": "sha512-LdrrxK/Yh9zbBQdFbMTXPp3dTSN9B+9YJQucdDu3JNKRrbdU+H+/TVONJoWtOwy4II8Sqf1y/DTI6w/vGPYW0w==", "license": "MIT", "funding": { "type": "individual", "url": "https://github.com/Pomax/react-onclickoutside/blob/master/FUNDING.md" }, "peerDependencies": { "react": "^15.5.x || ^16.x || ^17.x || ^18.x", "react-dom": "^15.5.x || ^16.x || ^17.x || ^18.x" } }, "node_modules/read-cache": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", "dev": true, "license": "MIT", "dependencies": { "pify": "^2.3.0" } }, "node_modules/read-cache/node_modules/pify": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/read-package-up": { "version": "11.0.0", "resolved": "https://registry.npmjs.org/read-package-up/-/read-package-up-11.0.0.tgz", "integrity": "sha512-MbgfoNPANMdb4oRBNg5eqLbB2t2r+o5Ua1pNt8BqGp4I0FJZhuVSOj3PaBPni4azWuSzEdNn2evevzVmEk1ohQ==", "dev": true, "license": "MIT", "dependencies": { "find-up-simple": "^1.0.0", "read-pkg": "^9.0.0", "type-fest": "^4.6.0" }, "engines": { "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/read-package-up/node_modules/type-fest": { "version": "4.32.0", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.32.0.tgz", "integrity": "sha512-rfgpoi08xagF3JSdtJlCwMq9DGNDE0IMh3Mkpc1wUypg9vPi786AiqeBBKcqvIkq42azsBM85N490fyZjeUftw==", "dev": true, "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=16" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/read-pkg": { "version": "9.0.1", "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-9.0.1.tgz", "integrity": "sha512-9viLL4/n1BJUCT1NXVTdS1jtm80yDEgR5T4yCelII49Mbj0v1rZdKqj7zCiYdbB0CuCgdrvHcNogAKTFPBocFA==", "dev": true, "license": "MIT", "dependencies": { "@types/normalize-package-data": "^2.4.3", "normalize-package-data": "^6.0.0", "parse-json": "^8.0.0", "type-fest": "^4.6.0", "unicorn-magic": "^0.1.0" }, "engines": { "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/read-pkg-up": { "version": "7.0.1", "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", "dev": true, "license": "MIT", "dependencies": { "find-up": "^4.1.0", "read-pkg": "^5.2.0", "type-fest": "^0.8.1" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/read-pkg-up/node_modules/find-up": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", "dev": true, "license": "MIT", "dependencies": { "locate-path": "^5.0.0", "path-exists": "^4.0.0" }, "engines": { "node": ">=8" } }, "node_modules/read-pkg-up/node_modules/hosted-git-info": { "version": "2.8.9", "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", "dev": true, "license": "ISC" }, "node_modules/read-pkg-up/node_modules/locate-path": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "dev": true, "license": "MIT", "dependencies": { "p-locate": "^4.1.0" }, "engines": { "node": ">=8" } }, "node_modules/read-pkg-up/node_modules/normalize-package-data": { "version": "2.5.0", "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", "dev": true, "license": "BSD-2-Clause", "dependencies": { "hosted-git-info": "^2.1.4", "resolve": "^1.10.0", "semver": "2 || 3 || 4 || 5", "validate-npm-package-license": "^3.0.1" } }, "node_modules/read-pkg-up/node_modules/p-limit": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, "license": "MIT", "dependencies": { "p-try": "^2.0.0" }, "engines": { "node": ">=6" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/read-pkg-up/node_modules/p-locate": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", "dev": true, "license": "MIT", "dependencies": { "p-limit": "^2.2.0" }, "engines": { "node": ">=8" } }, "node_modules/read-pkg-up/node_modules/read-pkg": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", "dev": true, "license": "MIT", "dependencies": { "@types/normalize-package-data": "^2.4.0", "normalize-package-data": "^2.5.0", "parse-json": "^5.0.0", "type-fest": "^0.6.0" }, "engines": { "node": ">=8" } }, "node_modules/read-pkg-up/node_modules/read-pkg/node_modules/type-fest": { "version": "0.6.0", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", "dev": true, "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=8" } }, "node_modules/read-pkg-up/node_modules/semver": { "version": "5.7.2", "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", "dev": true, "license": "ISC", "bin": { "semver": "bin/semver" } }, "node_modules/read-pkg-up/node_modules/type-fest": { "version": "0.8.1", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", "dev": true, "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=8" } }, "node_modules/read-pkg/node_modules/parse-json": { "version": "8.1.0", "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-8.1.0.tgz", "integrity": "sha512-rum1bPifK5SSar35Z6EKZuYPJx85pkNaFrxBK3mwdfSJ1/WKbYrjoW/zTPSjRRamfmVX1ACBIdFAO0VRErW/EA==", "dev": true, "license": "MIT", "dependencies": { "@babel/code-frame": "^7.22.13", "index-to-position": "^0.1.2", "type-fest": "^4.7.1" }, "engines": { "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/read-pkg/node_modules/type-fest": { "version": "4.32.0", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-4.32.0.tgz", "integrity": "sha512-rfgpoi08xagF3JSdtJlCwMq9DGNDE0IMh3Mkpc1wUypg9vPi786AiqeBBKcqvIkq42azsBM85N490fyZjeUftw==", "dev": true, "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=16" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/readable-stream": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", "dev": true, "license": "MIT", "dependencies": { "core-util-is": "~1.0.0", "inherits": "~2.0.3", "isarray": "~1.0.0", "process-nextick-args": "~2.0.0", "safe-buffer": "~5.1.1", "string_decoder": "~1.1.1", "util-deprecate": "~1.0.1" } }, "node_modules/readdirp": { "version": "3.6.0", "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", "license": "MIT", "dependencies": { "picomatch": "^2.2.1" }, "engines": { "node": ">=8.10.0" } }, "node_modules/rechoir": { "version": "0.8.0", "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.8.0.tgz", "integrity": "sha512-/vxpCXddiX8NGfGO/mTafwjq4aFa/71pvamip0++IQk3zG8cbCj0fifNPrjjF1XMXUne91jL9OoxmdykoEtifQ==", "dev": true, "license": "MIT", "dependencies": { "resolve": "^1.20.0" }, "engines": { "node": ">= 10.13.0" } }, "node_modules/recoil": { "version": "0.1.3", "resolved": "https://registry.npmjs.org/recoil/-/recoil-0.1.3.tgz", "integrity": "sha512-/Rm7wN7jqCjhtFK1TgtK0V115SUXNu6d4QYvwxWNLydib0QChSmpB6U8CaHoRPS0MFWtAIsD/IFjpbfk/OYm7Q==", "license": "MIT", "peerDependencies": { "react": ">=16.13.1" }, "peerDependenciesMeta": { "react-dom": { "optional": true }, "react-native": { "optional": true } } }, "node_modules/redent": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", "dev": true, "license": "MIT", "dependencies": { "indent-string": "^4.0.0", "strip-indent": "^3.0.0" }, "engines": { "node": ">=8" } }, "node_modules/regenerate": { "version": "1.4.2", "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", "dev": true, "license": "MIT" }, "node_modules/regenerate-unicode-properties": { "version": "10.2.0", "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.2.0.tgz", "integrity": "sha512-DqHn3DwbmmPVzeKj9woBadqmXxLvQoQIwu7nopMc72ztvxVmVk2SBhSnx67zuye5TP+lJsb/TBQsjLKhnDf3MA==", "dev": true, "license": "MIT", "dependencies": { "regenerate": "^1.4.2" }, "engines": { "node": ">=4" } }, "node_modules/regenerator-runtime": { "version": "0.14.1", "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==", "dev": true, "license": "MIT" }, "node_modules/regenerator-transform": { "version": "0.15.2", "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==", "dev": true, "license": "MIT", "dependencies": { "@babel/runtime": "^7.8.4" } }, "node_modules/regexpu-core": { "version": "6.2.0", "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-6.2.0.tgz", "integrity": "sha512-H66BPQMrv+V16t8xtmq+UC0CBpiTBA60V8ibS1QVReIp8T1z8hwFxqcGzm9K6lgsN7sB5edVH8a+ze6Fqm4weA==", "dev": true, "license": "MIT", "dependencies": { "regenerate": "^1.4.2", "regenerate-unicode-properties": "^10.2.0", "regjsgen": "^0.8.0", "regjsparser": "^0.12.0", "unicode-match-property-ecmascript": "^2.0.0", "unicode-match-property-value-ecmascript": "^2.1.0" }, "engines": { "node": ">=4" } }, "node_modules/registry-auth-token": { "version": "5.0.3", "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-5.0.3.tgz", "integrity": "sha512-1bpc9IyC+e+CNFRaWyn77tk4xGG4PPUyfakSmA6F6cvUDjrm58dfyJ3II+9yb10EDkHoy1LaPSmHaWLOH3m6HA==", "dev": true, "license": "MIT", "dependencies": { "@pnpm/npm-conf": "^2.1.0" }, "engines": { "node": ">=14" } }, "node_modules/regjsgen": { "version": "0.8.0", "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.8.0.tgz", "integrity": "sha512-RvwtGe3d7LvWiDQXeQw8p5asZUmfU1G/l6WbUXeHta7Y2PEIvBTwH6E2EfmYUK8pxcxEdEmaomqyp0vZZ7C+3Q==", "dev": true, "license": "MIT" }, "node_modules/regjsparser": { "version": "0.12.0", "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.12.0.tgz", "integrity": "sha512-cnE+y8bz4NhMjISKbgeVJtqNbtf5QpjZP+Bslo+UqkIt9QPnX9q095eiRRASJG1/tz6dlNr6Z5NsBiWYokp6EQ==", "dev": true, "license": "BSD-2-Clause", "dependencies": { "jsesc": "~3.0.2" }, "bin": { "regjsparser": "bin/parser" } }, "node_modules/regjsparser/node_modules/jsesc": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-3.0.2.tgz", "integrity": "sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==", "dev": true, "license": "MIT", "bin": { "jsesc": "bin/jsesc" }, "engines": { "node": ">=6" } }, "node_modules/relateurl": { "version": "0.2.7", "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==", "dev": true, "license": "MIT", "engines": { "node": ">= 0.10" } }, "node_modules/renderkid": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-3.0.0.tgz", "integrity": "sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==", "dev": true, "license": "MIT", "dependencies": { "css-select": "^4.1.3", "dom-converter": "^0.2.0", "htmlparser2": "^6.1.0", "lodash": "^4.17.21", "strip-ansi": "^6.0.1" } }, "node_modules/require-directory": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/require-from-string": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/requires-port": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==", "dev": true, "license": "MIT" }, "node_modules/rescript": { "version": "11.1.4", "resolved": "https://registry.npmjs.org/rescript/-/rescript-11.1.4.tgz", "integrity": "sha512-0bGU0bocihjSC6MsE3TMjHjY0EUpchyrREquLS8VsZ3ohSMD+VHUEwimEfB3kpBI1vYkw3UFZ3WD8R28guz/Vw==", "hasInstallScript": true, "license": "SEE LICENSE IN LICENSE", "bin": { "bsc": "bsc", "bstracing": "lib/bstracing", "rescript": "rescript" }, "engines": { "node": ">=10" } }, "node_modules/resolve": { "version": "1.22.10", "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.10.tgz", "integrity": "sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==", "dev": true, "license": "MIT", "dependencies": { "is-core-module": "^2.16.0", "path-parse": "^1.0.7", "supports-preserve-symlinks-flag": "^1.0.0" }, "bin": { "resolve": "bin/resolve" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/resolve-cwd": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", "dev": true, "license": "MIT", "dependencies": { "resolve-from": "^5.0.0" }, "engines": { "node": ">=8" } }, "node_modules/resolve-dir": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz", "integrity": "sha512-R7uiTjECzvOsWSfdM0QKFNBVFcK27aHOUwdvK53BcW8zqnGdYp0Fbj82cy54+2A4P2tFM22J5kRfe1R+lM/1yg==", "dev": true, "license": "MIT", "dependencies": { "expand-tilde": "^2.0.0", "global-modules": "^1.0.0" }, "engines": { "node": ">=0.10.0" } }, "node_modules/resolve-from": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", "dev": true, "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/resolve-global": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/resolve-global/-/resolve-global-1.0.0.tgz", "integrity": "sha512-zFa12V4OLtT5XUX/Q4VLvTfBf+Ok0SPc1FNGM/z9ctUdiU618qwKpWnd0CHs3+RqROfyEg/DhuHbMWYqcgljEw==", "dev": true, "license": "MIT", "dependencies": { "global-dirs": "^0.1.1" }, "engines": { "node": ">=8" } }, "node_modules/restore-cursor": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", "dev": true, "license": "MIT", "dependencies": { "onetime": "^5.1.0", "signal-exit": "^3.0.2" }, "engines": { "node": ">=8" } }, "node_modules/retry": { "version": "0.13.1", "resolved": "https://registry.npmjs.org/retry/-/retry-0.13.1.tgz", "integrity": "sha512-XQBQ3I8W1Cge0Seh+6gjj03LbmRFWuoszgK9ooCpwYIrhhoO80pfq4cUkU5DkknwfOfFteRwlZ56PYOGYyFWdg==", "dev": true, "license": "MIT", "engines": { "node": ">= 4" } }, "node_modules/reusify": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", "dev": true, "license": "MIT", "engines": { "iojs": ">=1.0.0", "node": ">=0.10.0" } }, "node_modules/rimraf": { "version": "3.0.2", "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", "deprecated": "Rimraf versions prior to v4 are no longer supported", "dev": true, "license": "ISC", "dependencies": { "glob": "^7.1.3" }, "bin": { "rimraf": "bin.js" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/rimraf/node_modules/glob": { "version": "7.2.3", "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "deprecated": "Glob versions prior to v9 are no longer supported", "dev": true, "license": "ISC", "dependencies": { "fs.realpath": "^1.0.0", "inflight": "^1.0.4", "inherits": "2", "minimatch": "^3.1.1", "once": "^1.3.0", "path-is-absolute": "^1.0.0" }, "engines": { "node": "*" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/run-applescript": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-7.0.0.tgz", "integrity": "sha512-9by4Ij99JUr/MCFBUkDKLWK3G9HVXmabKz9U5MlIAIuvuzkiOicRYs8XJLxX+xahD+mLiiCYDqF9dKAgtzKP1A==", "dev": true, "license": "MIT", "engines": { "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/run-async": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", "dev": true, "license": "MIT", "engines": { "node": ">=0.12.0" } }, "node_modules/run-parallel": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", "dev": true, "funding": [ { "type": "github", "url": "https://github.com/sponsors/feross" }, { "type": "patreon", "url": "https://www.patreon.com/feross" }, { "type": "consulting", "url": "https://feross.org/support" } ], "license": "MIT", "dependencies": { "queue-microtask": "^1.2.2" } }, "node_modules/rxjs": { "version": "7.8.1", "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-7.8.1.tgz", "integrity": "sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==", "dev": true, "license": "Apache-2.0", "dependencies": { "tslib": "^2.1.0" } }, "node_modules/safe-buffer": { "version": "5.1.2", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", "license": "MIT" }, "node_modules/safer-buffer": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", "dev": true, "license": "MIT" }, "node_modules/scheduler": { "version": "0.23.2", "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.23.2.tgz", "integrity": "sha512-UOShsPwz7NrMUqhR6t0hWjFduvOzbtv7toDH1/hIrfRNIDBnnBWd0CwJTGvTpngVlmwGCdP9/Zl/tVrDqcuYzQ==", "license": "MIT", "dependencies": { "loose-envify": "^1.1.0" } }, "node_modules/schema-utils": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.3.0.tgz", "integrity": "sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==", "license": "MIT", "dependencies": { "@types/json-schema": "^7.0.9", "ajv": "^8.9.0", "ajv-formats": "^2.1.1", "ajv-keywords": "^5.1.0" }, "engines": { "node": ">= 10.13.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" } }, "node_modules/select-hose": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", "integrity": "sha512-mEugaLK+YfkijB4fx0e6kImuJdCIt2LxCRcbEYPqRGCs4F2ogyfZU5IAZRdjCP8JPq2AtdNoC/Dux63d9Kiryg==", "dev": true, "license": "MIT" }, "node_modules/selfsigned": { "version": "2.4.1", "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-2.4.1.tgz", "integrity": "sha512-th5B4L2U+eGLq1TVh7zNRGBapioSORUeymIydxgFpwww9d2qyKvtuPU2jJuHvYAwwqi2Y596QBL3eEqcPEYL8Q==", "dev": true, "license": "MIT", "dependencies": { "@types/node-forge": "^1.3.0", "node-forge": "^1" }, "engines": { "node": ">=10" } }, "node_modules/semantic-release": { "version": "24.2.1", "resolved": "https://registry.npmjs.org/semantic-release/-/semantic-release-24.2.1.tgz", "integrity": "sha512-z0/3cutKNkLQ4Oy0HTi3lubnjTsdjjgOqmxdPjeYWe6lhFqUPfwslZxRHv3HDZlN4MhnZitb9SLihDkZNxOXfQ==", "dev": true, "license": "MIT", "dependencies": { "@semantic-release/commit-analyzer": "^13.0.0-beta.1", "@semantic-release/error": "^4.0.0", "@semantic-release/github": "^11.0.0", "@semantic-release/npm": "^12.0.0", "@semantic-release/release-notes-generator": "^14.0.0-beta.1", "aggregate-error": "^5.0.0", "cosmiconfig": "^9.0.0", "debug": "^4.0.0", "env-ci": "^11.0.0", "execa": "^9.0.0", "figures": "^6.0.0", "find-versions": "^6.0.0", "get-stream": "^6.0.0", "git-log-parser": "^1.2.0", "hook-std": "^3.0.0", "hosted-git-info": "^8.0.0", "import-from-esm": "^2.0.0", "lodash-es": "^4.17.21", "marked": "^12.0.0", "marked-terminal": "^7.0.0", "micromatch": "^4.0.2", "p-each-series": "^3.0.0", "p-reduce": "^3.0.0", "read-package-up": "^11.0.0", "resolve-from": "^5.0.0", "semver": "^7.3.2", "semver-diff": "^4.0.0", "signale": "^1.2.1", "yargs": "^17.5.1" }, "bin": { "semantic-release": "bin/semantic-release.js" }, "engines": { "node": ">=20.8.1" } }, "node_modules/semantic-release/node_modules/@semantic-release/error": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/@semantic-release/error/-/error-4.0.0.tgz", "integrity": "sha512-mgdxrHTLOjOddRVYIYDo0fR3/v61GNN1YGkfbrjuIKg/uMgCd+Qzo3UAXJ+woLQQpos4pl5Esuw5A7AoNlzjUQ==", "dev": true, "license": "MIT", "engines": { "node": ">=18" } }, "node_modules/semantic-release/node_modules/@sindresorhus/merge-streams": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-4.0.0.tgz", "integrity": "sha512-tlqY9xq5ukxTUZBmoOp+m61cqwQD5pHJtFY3Mn8CA8ps6yghLH/Hw8UPdqg4OLmFW3IFlcXnQNmo/dh8HzXYIQ==", "dev": true, "license": "MIT", "engines": { "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/semantic-release/node_modules/aggregate-error": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-5.0.0.tgz", "integrity": "sha512-gOsf2YwSlleG6IjRYG2A7k0HmBMEo6qVNk9Bp/EaLgAJT5ngH6PXbqa4ItvnEwCm/velL5jAnQgsHsWnjhGmvw==", "dev": true, "license": "MIT", "dependencies": { "clean-stack": "^5.2.0", "indent-string": "^5.0.0" }, "engines": { "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/semantic-release/node_modules/clean-stack": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-5.2.0.tgz", "integrity": "sha512-TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ==", "dev": true, "license": "MIT", "dependencies": { "escape-string-regexp": "5.0.0" }, "engines": { "node": ">=14.16" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/semantic-release/node_modules/cosmiconfig": { "version": "9.0.0", "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-9.0.0.tgz", "integrity": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==", "dev": true, "license": "MIT", "dependencies": { "env-paths": "^2.2.1", "import-fresh": "^3.3.0", "js-yaml": "^4.1.0", "parse-json": "^5.2.0" }, "engines": { "node": ">=14" }, "funding": { "url": "https://github.com/sponsors/d-fischer" }, "peerDependencies": { "typescript": ">=4.9.5" }, "peerDependenciesMeta": { "typescript": { "optional": true } } }, "node_modules/semantic-release/node_modules/escape-string-regexp": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", "dev": true, "license": "MIT", "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/semantic-release/node_modules/execa": { "version": "9.5.2", "resolved": "https://registry.npmjs.org/execa/-/execa-9.5.2.tgz", "integrity": "sha512-EHlpxMCpHWSAh1dgS6bVeoLAXGnJNdR93aabr4QCGbzOM73o5XmRfM/e5FUqsw3aagP8S8XEWUWFAxnRBnAF0Q==", "dev": true, "license": "MIT", "dependencies": { "@sindresorhus/merge-streams": "^4.0.0", "cross-spawn": "^7.0.3", "figures": "^6.1.0", "get-stream": "^9.0.0", "human-signals": "^8.0.0", "is-plain-obj": "^4.1.0", "is-stream": "^4.0.1", "npm-run-path": "^6.0.0", "pretty-ms": "^9.0.0", "signal-exit": "^4.1.0", "strip-final-newline": "^4.0.0", "yoctocolors": "^2.0.0" }, "engines": { "node": "^18.19.0 || >=20.5.0" }, "funding": { "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, "node_modules/semantic-release/node_modules/execa/node_modules/get-stream": { "version": "9.0.1", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-9.0.1.tgz", "integrity": "sha512-kVCxPF3vQM/N0B1PmoqVUqgHP+EeVjmZSQn+1oCRPxd2P21P2F19lIgbR3HBosbB1PUhOAoctJnfEn2GbN2eZA==", "dev": true, "license": "MIT", "dependencies": { "@sec-ant/readable-stream": "^0.4.1", "is-stream": "^4.0.1" }, "engines": { "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/semantic-release/node_modules/figures": { "version": "6.1.0", "resolved": "https://registry.npmjs.org/figures/-/figures-6.1.0.tgz", "integrity": "sha512-d+l3qxjSesT4V7v2fh+QnmFnUWv9lSpjarhShNTgBOfA0ttejbQUAlHLitbjkoRiDulW0OPoQPYIGhIC8ohejg==", "dev": true, "license": "MIT", "dependencies": { "is-unicode-supported": "^2.0.0" }, "engines": { "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/semantic-release/node_modules/get-stream": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "dev": true, "license": "MIT", "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/semantic-release/node_modules/hosted-git-info": { "version": "8.0.2", "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-8.0.2.tgz", "integrity": "sha512-sYKnA7eGln5ov8T8gnYlkSOxFJvywzEx9BueN6xo/GKO8PGiI6uK6xx+DIGe45T3bdVjLAQDQW1aicT8z8JwQg==", "dev": true, "license": "ISC", "dependencies": { "lru-cache": "^10.0.1" }, "engines": { "node": "^18.17.0 || >=20.5.0" } }, "node_modules/semantic-release/node_modules/human-signals": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-8.0.0.tgz", "integrity": "sha512-/1/GPCpDUCCYwlERiYjxoczfP0zfvZMU/OWgQPMya9AbAE24vseigFdhAMObpc8Q4lc/kjutPfUddDYyAmejnA==", "dev": true, "license": "Apache-2.0", "engines": { "node": ">=18.18.0" } }, "node_modules/semantic-release/node_modules/indent-string": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-5.0.0.tgz", "integrity": "sha512-m6FAo/spmsW2Ab2fU35JTYwtOKa2yAwXSwgjSv1TJzh4Mh7mC3lzAOVLBprb72XsTrgkEIsl7YrFNAiDiRhIGg==", "dev": true, "license": "MIT", "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/semantic-release/node_modules/is-plain-obj": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-4.1.0.tgz", "integrity": "sha512-+Pgi+vMuUNkJyExiMBt5IlFoMyKnr5zhJ4Uspz58WOhBF5QoIZkFyNHIbBAtHwzVAgk5RtndVNsDRN61/mmDqg==", "dev": true, "license": "MIT", "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/semantic-release/node_modules/is-stream": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-4.0.1.tgz", "integrity": "sha512-Dnz92NInDqYckGEUJv689RbRiTSEHCQ7wOVeALbkOz999YpqT46yMRIGtSNl2iCL1waAZSx40+h59NV/EwzV/A==", "dev": true, "license": "MIT", "engines": { "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/semantic-release/node_modules/is-unicode-supported": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-2.1.0.tgz", "integrity": "sha512-mE00Gnza5EEB3Ds0HfMyllZzbBrmLOX3vfWoj9A9PEnTfratQ/BcaJOuMhnkhjXvb2+FkY3VuHqtAGpTPmglFQ==", "dev": true, "license": "MIT", "engines": { "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/semantic-release/node_modules/lru-cache": { "version": "10.4.3", "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.4.3.tgz", "integrity": "sha512-JNAzZcXrCt42VGLuYz0zfAzDfAvJWW6AfYlDBQyDV5DClI2m5sAmK+OIO7s59XfsRsWHp02jAJrRadPRGTt6SQ==", "dev": true, "license": "ISC" }, "node_modules/semantic-release/node_modules/npm-run-path": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-6.0.0.tgz", "integrity": "sha512-9qny7Z9DsQU8Ou39ERsPU4OZQlSTP47ShQzuKZ6PRXpYLtIFgl/DEBYEXKlvcEa+9tHVcK8CF81Y2V72qaZhWA==", "dev": true, "license": "MIT", "dependencies": { "path-key": "^4.0.0", "unicorn-magic": "^0.3.0" }, "engines": { "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/semantic-release/node_modules/p-reduce": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-3.0.0.tgz", "integrity": "sha512-xsrIUgI0Kn6iyDYm9StOpOeK29XM1aboGji26+QEortiFST1hGZaUQOLhtEbqHErPpGW/aSz6allwK2qcptp0Q==", "dev": true, "license": "MIT", "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/semantic-release/node_modules/path-key": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", "dev": true, "license": "MIT", "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/semantic-release/node_modules/semver": { "version": "7.6.3", "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", "dev": true, "license": "ISC", "bin": { "semver": "bin/semver.js" }, "engines": { "node": ">=10" } }, "node_modules/semantic-release/node_modules/signal-exit": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", "dev": true, "license": "ISC", "engines": { "node": ">=14" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/semantic-release/node_modules/strip-final-newline": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-4.0.0.tgz", "integrity": "sha512-aulFJcD6YK8V1G7iRB5tigAP4TsHBZZrOV8pjV++zdUwmeV8uzbY7yn6h9MswN62adStNZFuCIx4haBnRuMDaw==", "dev": true, "license": "MIT", "engines": { "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/semantic-release/node_modules/unicorn-magic": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.3.0.tgz", "integrity": "sha512-+QBBXBCvifc56fsbuxZQ6Sic3wqqc3WWaqxs58gvJrcOuN83HGTCwz3oS5phzU9LthRNE9VrJCFCLUgHeeFnfA==", "dev": true, "license": "MIT", "engines": { "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/semver": { "version": "6.3.1", "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "license": "ISC", "bin": { "semver": "bin/semver.js" } }, "node_modules/semver-diff": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/semver-diff/-/semver-diff-4.0.0.tgz", "integrity": "sha512-0Ju4+6A8iOnpL/Thra7dZsSlOHYAHIeMxfhWQRI1/VLcT3WDBZKKtQt/QkBOsiIN9ZpuvHE6cGZ0x4glCMmfiA==", "dev": true, "license": "MIT", "dependencies": { "semver": "^7.3.5" }, "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/semver-diff/node_modules/semver": { "version": "7.6.3", "resolved": "https://registry.npmjs.org/semver/-/semver-7.6.3.tgz", "integrity": "sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==", "dev": true, "license": "ISC", "bin": { "semver": "bin/semver.js" }, "engines": { "node": ">=10" } }, "node_modules/semver-regex": { "version": "4.0.5", "resolved": "https://registry.npmjs.org/semver-regex/-/semver-regex-4.0.5.tgz", "integrity": "sha512-hunMQrEy1T6Jr2uEVjrAIqjwWcQTgOAcIM52C8MY1EZSD3DDNft04XzvYKPqjED65bNVVko0YI38nYeEHCX3yw==", "dev": true, "license": "MIT", "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/send": { "version": "0.19.0", "resolved": "https://registry.npmjs.org/send/-/send-0.19.0.tgz", "integrity": "sha512-dW41u5VfLXu8SJh5bwRmyYUbAoSB3c9uQh6L8h/KtsFREPWpbX1lrljJo186Jc4nmci/sGUZ9a0a0J2zgfq2hw==", "dev": true, "license": "MIT", "dependencies": { "debug": "2.6.9", "depd": "2.0.0", "destroy": "1.2.0", "encodeurl": "~1.0.2", "escape-html": "~1.0.3", "etag": "~1.8.1", "fresh": "0.5.2", "http-errors": "2.0.0", "mime": "1.6.0", "ms": "2.1.3", "on-finished": "2.4.1", "range-parser": "~1.2.1", "statuses": "2.0.1" }, "engines": { "node": ">= 0.8.0" } }, "node_modules/send/node_modules/debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, "license": "MIT", "dependencies": { "ms": "2.0.0" } }, "node_modules/send/node_modules/debug/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true, "license": "MIT" }, "node_modules/send/node_modules/encodeurl": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", "dev": true, "license": "MIT", "engines": { "node": ">= 0.8" } }, "node_modules/send/node_modules/mime": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", "dev": true, "license": "MIT", "bin": { "mime": "cli.js" }, "engines": { "node": ">=4" } }, "node_modules/serialize-javascript": { "version": "6.0.2", "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.2.tgz", "integrity": "sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==", "license": "BSD-3-Clause", "dependencies": { "randombytes": "^2.1.0" } }, "node_modules/serve-index": { "version": "1.9.1", "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", "integrity": "sha512-pXHfKNP4qujrtteMrSBb0rc8HJ9Ms/GrXwcUtUtD5s4ewDJI8bT3Cz2zTVRMKtri49pLx2e0Ya8ziP5Ya2pZZw==", "dev": true, "license": "MIT", "dependencies": { "accepts": "~1.3.4", "batch": "0.6.1", "debug": "2.6.9", "escape-html": "~1.0.3", "http-errors": "~1.6.2", "mime-types": "~2.1.17", "parseurl": "~1.3.2" }, "engines": { "node": ">= 0.8.0" } }, "node_modules/serve-index/node_modules/debug": { "version": "2.6.9", "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, "license": "MIT", "dependencies": { "ms": "2.0.0" } }, "node_modules/serve-index/node_modules/depd": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", "dev": true, "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/serve-index/node_modules/http-errors": { "version": "1.6.3", "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", "integrity": "sha512-lks+lVC8dgGyh97jxvxeYTWQFvh4uw4yC12gVl63Cg30sjPX4wuGcdkICVXDAESr6OJGjqGA8Iz5mkeN6zlD7A==", "dev": true, "license": "MIT", "dependencies": { "depd": "~1.1.2", "inherits": "2.0.3", "setprototypeof": "1.1.0", "statuses": ">= 1.4.0 < 2" }, "engines": { "node": ">= 0.6" } }, "node_modules/serve-index/node_modules/inherits": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==", "dev": true, "license": "ISC" }, "node_modules/serve-index/node_modules/ms": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", "dev": true, "license": "MIT" }, "node_modules/serve-index/node_modules/setprototypeof": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", "dev": true, "license": "ISC" }, "node_modules/serve-index/node_modules/statuses": { "version": "1.5.0", "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", "dev": true, "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/serve-static": { "version": "1.16.2", "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.16.2.tgz", "integrity": "sha512-VqpjJZKadQB/PEbEwvFdO43Ax5dFBZ2UECszz8bQ7pi7wt//PWe1P6MN7eCnjsatYtBT6EuiClbjSWP2WrIoTw==", "dev": true, "license": "MIT", "dependencies": { "encodeurl": "~2.0.0", "escape-html": "~1.0.3", "parseurl": "~1.3.3", "send": "0.19.0" }, "engines": { "node": ">= 0.8.0" } }, "node_modules/setprototypeof": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", "dev": true, "license": "ISC" }, "node_modules/shallow-clone": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-3.0.1.tgz", "integrity": "sha512-/6KqX+GVUdqPuPPd2LxDDxzX6CAbjJehAAOKlNpqqUpAqPM6HeL8f+o3a+JsyGjn2lv0WY8UsTgUJjU9Ok55NA==", "license": "MIT", "dependencies": { "kind-of": "^6.0.2" }, "engines": { "node": ">=8" } }, "node_modules/shebang-command": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", "dev": true, "license": "MIT", "dependencies": { "shebang-regex": "^3.0.0" }, "engines": { "node": ">=8" } }, "node_modules/shebang-regex": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", "dev": true, "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/shell-quote": { "version": "1.8.2", "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.2.tgz", "integrity": "sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA==", "dev": true, "license": "MIT", "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/side-channel": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.1.0.tgz", "integrity": "sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==", "dev": true, "license": "MIT", "dependencies": { "es-errors": "^1.3.0", "object-inspect": "^1.13.3", "side-channel-list": "^1.0.0", "side-channel-map": "^1.0.1", "side-channel-weakmap": "^1.0.2" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/side-channel-list": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/side-channel-list/-/side-channel-list-1.0.0.tgz", "integrity": "sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==", "dev": true, "license": "MIT", "dependencies": { "es-errors": "^1.3.0", "object-inspect": "^1.13.3" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/side-channel-map": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/side-channel-map/-/side-channel-map-1.0.1.tgz", "integrity": "sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==", "dev": true, "license": "MIT", "dependencies": { "call-bound": "^1.0.2", "es-errors": "^1.3.0", "get-intrinsic": "^1.2.5", "object-inspect": "^1.13.3" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/side-channel-weakmap": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/side-channel-weakmap/-/side-channel-weakmap-1.0.2.tgz", "integrity": "sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==", "dev": true, "license": "MIT", "dependencies": { "call-bound": "^1.0.2", "es-errors": "^1.3.0", "get-intrinsic": "^1.2.5", "object-inspect": "^1.13.3", "side-channel-map": "^1.0.1" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/signal-exit": { "version": "3.0.7", "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", "dev": true, "license": "ISC" }, "node_modules/signale": { "version": "1.4.0", "resolved": "https://registry.npmjs.org/signale/-/signale-1.4.0.tgz", "integrity": "sha512-iuh+gPf28RkltuJC7W5MRi6XAjTDCAPC/prJUpQoG4vIP3MJZ+GTydVnodXA7pwvTKb2cA0m9OFZW/cdWy/I/w==", "dev": true, "license": "MIT", "dependencies": { "chalk": "^2.3.2", "figures": "^2.0.0", "pkg-conf": "^2.1.0" }, "engines": { "node": ">=6" } }, "node_modules/signale/node_modules/ansi-styles": { "version": "3.2.1", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, "license": "MIT", "dependencies": { "color-convert": "^1.9.0" }, "engines": { "node": ">=4" } }, "node_modules/signale/node_modules/chalk": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, "license": "MIT", "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", "supports-color": "^5.3.0" }, "engines": { "node": ">=4" } }, "node_modules/signale/node_modules/color-convert": { "version": "1.9.3", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", "dev": true, "license": "MIT", "dependencies": { "color-name": "1.1.3" } }, "node_modules/signale/node_modules/color-name": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", "dev": true, "license": "MIT" }, "node_modules/signale/node_modules/escape-string-regexp": { "version": "1.0.5", "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "dev": true, "license": "MIT", "engines": { "node": ">=0.8.0" } }, "node_modules/signale/node_modules/figures": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", "integrity": "sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==", "dev": true, "license": "MIT", "dependencies": { "escape-string-regexp": "^1.0.5" }, "engines": { "node": ">=4" } }, "node_modules/signale/node_modules/has-flag": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", "dev": true, "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/signale/node_modules/supports-color": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", "dev": true, "license": "MIT", "dependencies": { "has-flag": "^3.0.0" }, "engines": { "node": ">=4" } }, "node_modules/sirv": { "version": "2.0.4", "resolved": "https://registry.npmjs.org/sirv/-/sirv-2.0.4.tgz", "integrity": "sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==", "dev": true, "license": "MIT", "dependencies": { "@polka/url": "^1.0.0-next.24", "mrmime": "^2.0.0", "totalist": "^3.0.0" }, "engines": { "node": ">= 10" } }, "node_modules/skin-tone": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/skin-tone/-/skin-tone-2.0.0.tgz", "integrity": "sha512-kUMbT1oBJCpgrnKoSr0o6wPtvRWT9W9UKvGLwfJYO2WuahZRHOpEyL1ckyMGgMWh0UdpmaoFqKKD29WTomNEGA==", "dev": true, "license": "MIT", "dependencies": { "unicode-emoji-modifier-base": "^1.0.0" }, "engines": { "node": ">=8" } }, "node_modules/slash": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", "dev": true, "license": "MIT", "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/sockjs": { "version": "0.3.24", "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.24.tgz", "integrity": "sha512-GJgLTZ7vYb/JtPSSZ10hsOYIvEYsjbNU+zPdIHcUaWVNUEPivzxku31865sSSud0Da0W4lEeOPlmw93zLQchuQ==", "dev": true, "license": "MIT", "dependencies": { "faye-websocket": "^0.11.3", "uuid": "^8.3.2", "websocket-driver": "^0.7.4" } }, "node_modules/sockjs/node_modules/uuid": { "version": "8.3.2", "resolved": "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz", "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", "dev": true, "license": "MIT", "bin": { "uuid": "dist/bin/uuid" } }, "node_modules/source-list-map": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==", "dev": true, "license": "MIT" }, "node_modules/source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/source-map-js": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.2.1.tgz", "integrity": "sha512-UXWMKhLOwVKb728IUtQPXxfYU+usdybtUrK/8uGE8CQMvrhOpwvzDBwj0QhSL7MQc7vIsISBG8VQ8+IDQxpfQA==", "dev": true, "license": "BSD-3-Clause", "engines": { "node": ">=0.10.0" } }, "node_modules/source-map-support": { "version": "0.5.21", "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", "license": "MIT", "dependencies": { "buffer-from": "^1.0.0", "source-map": "^0.6.0" } }, "node_modules/spawn-error-forwarder": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/spawn-error-forwarder/-/spawn-error-forwarder-1.0.0.tgz", "integrity": "sha512-gRjMgK5uFjbCvdibeGJuy3I5OYz6VLoVdsOJdA6wV0WlfQVLFueoqMxwwYD9RODdgb6oUIvlRlsyFSiQkMKu0g==", "dev": true, "license": "MIT" }, "node_modules/spdx-correct": { "version": "3.2.0", "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", "dev": true, "license": "Apache-2.0", "dependencies": { "spdx-expression-parse": "^3.0.0", "spdx-license-ids": "^3.0.0" } }, "node_modules/spdx-exceptions": { "version": "2.5.0", "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.5.0.tgz", "integrity": "sha512-PiU42r+xO4UbUS1buo3LPJkjlO7430Xn5SVAhdpzzsPHsjbYVflnnFdATgabnLude+Cqu25p6N+g2lw/PFsa4w==", "dev": true, "license": "CC-BY-3.0" }, "node_modules/spdx-expression-parse": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", "dev": true, "license": "MIT", "dependencies": { "spdx-exceptions": "^2.1.0", "spdx-license-ids": "^3.0.0" } }, "node_modules/spdx-license-ids": { "version": "3.0.21", "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.21.tgz", "integrity": "sha512-Bvg/8F5XephndSK3JffaRqdT+gyhfqIPwDHpX80tJrF8QQRYMo8sNMeaZ2Dp5+jhwKnUmIOyFFQfHRkjJm5nXg==", "dev": true, "license": "CC0-1.0" }, "node_modules/spdy": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.2.tgz", "integrity": "sha512-r46gZQZQV+Kl9oItvl1JZZqJKGr+oEkB08A6BzkiR7593/7IbtuncXHd2YoYeTsG4157ZssMu9KYvUHLcjcDoA==", "dev": true, "license": "MIT", "dependencies": { "debug": "^4.1.0", "handle-thing": "^2.0.0", "http-deceiver": "^1.2.7", "select-hose": "^2.0.0", "spdy-transport": "^3.0.0" }, "engines": { "node": ">=6.0.0" } }, "node_modules/spdy-transport": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", "dev": true, "license": "MIT", "dependencies": { "debug": "^4.1.0", "detect-node": "^2.0.4", "hpack.js": "^2.1.6", "obuf": "^1.1.2", "readable-stream": "^3.0.6", "wbuf": "^1.7.3" } }, "node_modules/spdy-transport/node_modules/readable-stream": { "version": "3.6.2", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "dev": true, "license": "MIT", "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", "util-deprecate": "^1.0.1" }, "engines": { "node": ">= 6" } }, "node_modules/split2": { "version": "3.2.2", "resolved": "https://registry.npmjs.org/split2/-/split2-3.2.2.tgz", "integrity": "sha512-9NThjpgZnifTkJpzTZ7Eue85S49QwpNhZTq6GRJwObb6jnLFNGB7Qm73V5HewTROPyxD0C29xqmaI68bQtV+hg==", "dev": true, "license": "ISC", "dependencies": { "readable-stream": "^3.0.0" } }, "node_modules/split2/node_modules/readable-stream": { "version": "3.6.2", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "dev": true, "license": "MIT", "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", "util-deprecate": "^1.0.1" }, "engines": { "node": ">= 6" } }, "node_modules/statuses": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", "dev": true, "license": "MIT", "engines": { "node": ">= 0.8" } }, "node_modules/stream-combiner2": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/stream-combiner2/-/stream-combiner2-1.1.1.tgz", "integrity": "sha512-3PnJbYgS56AeWgtKF5jtJRT6uFJe56Z0Hc5Ngg/6sI6rIt8iiMBTa9cvdyFfpMQjaVHr8dusbNeFGIIonxOvKw==", "dev": true, "license": "MIT", "dependencies": { "duplexer2": "~0.1.0", "readable-stream": "^2.0.2" } }, "node_modules/string_decoder": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "dev": true, "license": "MIT", "dependencies": { "safe-buffer": "~5.1.0" } }, "node_modules/string-width": { "version": "4.2.3", "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, "license": "MIT", "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" }, "engines": { "node": ">=8" } }, "node_modules/string-width-cjs": { "name": "string-width", "version": "4.2.3", "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", "dev": true, "license": "MIT", "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" }, "engines": { "node": ">=8" } }, "node_modules/strip-ansi": { "version": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, "license": "MIT", "dependencies": { "ansi-regex": "^5.0.1" }, "engines": { "node": ">=8" } }, "node_modules/strip-ansi-cjs": { "name": "strip-ansi", "version": "6.0.1", "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", "dev": true, "license": "MIT", "dependencies": { "ansi-regex": "^5.0.1" }, "engines": { "node": ">=8" } }, "node_modules/strip-ansi-cjs/node_modules/ansi-regex": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "dev": true, "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/strip-ansi/node_modules/ansi-regex": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "dev": true, "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/strip-bom": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", "dev": true, "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/strip-final-newline": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", "dev": true, "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/strip-indent": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", "dev": true, "license": "MIT", "dependencies": { "min-indent": "^1.0.0" }, "engines": { "node": ">=8" } }, "node_modules/strip-json-comments": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", "dev": true, "license": "MIT", "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/sucrase": { "version": "3.35.0", "resolved": "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz", "integrity": "sha512-8EbVDiu9iN/nESwxeSxDKe0dunta1GOlHufmSSXxMD2z2/tMZpDMpvXQGsc+ajGo8y2uYUmixaSRUc/QPoQ0GA==", "dev": true, "license": "MIT", "dependencies": { "@jridgewell/gen-mapping": "^0.3.2", "commander": "^4.0.0", "glob": "^10.3.10", "lines-and-columns": "^1.1.6", "mz": "^2.7.0", "pirates": "^4.0.1", "ts-interface-checker": "^0.1.9" }, "bin": { "sucrase": "bin/sucrase", "sucrase-node": "bin/sucrase-node" }, "engines": { "node": ">=16 || 14 >=14.17" } }, "node_modules/sucrase/node_modules/brace-expansion": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "dev": true, "license": "MIT", "dependencies": { "balanced-match": "^1.0.0" } }, "node_modules/sucrase/node_modules/commander": { "version": "4.1.1", "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", "dev": true, "license": "MIT", "engines": { "node": ">= 6" } }, "node_modules/sucrase/node_modules/glob": { "version": "10.4.5", "resolved": "https://registry.npmjs.org/glob/-/glob-10.4.5.tgz", "integrity": "sha512-7Bv8RF0k6xjo7d4A/PxYLbUCfb6c+Vpd2/mB2yRDlew7Jb5hEXiCD9ibfO7wpk8i4sevK6DFny9h7EYbM3/sHg==", "dev": true, "license": "ISC", "dependencies": { "foreground-child": "^3.1.0", "jackspeak": "^3.1.2", "minimatch": "^9.0.4", "minipass": "^7.1.2", "package-json-from-dist": "^1.0.0", "path-scurry": "^1.11.1" }, "bin": { "glob": "dist/esm/bin.mjs" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/sucrase/node_modules/minimatch": { "version": "9.0.5", "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz", "integrity": "sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==", "dev": true, "license": "ISC", "dependencies": { "brace-expansion": "^2.0.1" }, "engines": { "node": ">=16 || 14 >=14.17" }, "funding": { "url": "https://github.com/sponsors/isaacs" } }, "node_modules/sucrase/node_modules/minipass": { "version": "7.1.2", "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.1.2.tgz", "integrity": "sha512-qOOzS1cBTWYF4BH8fVePDBOO9iptMnGUEZwNc/cMWnTV2nVLZ7VoNWEPHkYczZA0pdoA7dl6e7FL659nX9S2aw==", "dev": true, "license": "ISC", "engines": { "node": ">=16 || 14 >=14.17" } }, "node_modules/super-regex": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/super-regex/-/super-regex-1.0.0.tgz", "integrity": "sha512-CY8u7DtbvucKuquCmOFEKhr9Besln7n9uN8eFbwcoGYWXOMW07u2o8njWaiXt11ylS3qoGF55pILjRmPlbodyg==", "dev": true, "license": "MIT", "dependencies": { "function-timeout": "^1.0.1", "time-span": "^5.1.0" }, "engines": { "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, "engines": { "node": ">=8" } }, "node_modules/supports-hyperlinks": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-3.1.0.tgz", "integrity": "sha512-2rn0BZ+/f7puLOHZm1HOJfwBggfaHXUpPUSSG/SWM4TWp5KCfmNYwnC3hruy2rZlMnmWZ+QAGpZfchu3f3695A==", "dev": true, "license": "MIT", "dependencies": { "has-flag": "^4.0.0", "supports-color": "^7.0.0" }, "engines": { "node": ">=14.18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/supports-preserve-symlinks-flag": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", "dev": true, "license": "MIT", "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/tabbable": { "version": "6.2.0", "resolved": "https://registry.npmjs.org/tabbable/-/tabbable-6.2.0.tgz", "integrity": "sha512-Cat63mxsVJlzYvN51JmVXIgNoUokrIaT2zLclCXjRd8boZ0004U4KCs/sToJ75C6sdlByWxpYnb5Boif1VSFew==", "license": "MIT" }, "node_modules/tailwindcss": { "version": "3.4.17", "resolved": "https://registry.npmjs.org/tailwindcss/-/tailwindcss-3.4.17.tgz", "integrity": "sha512-w33E2aCvSDP0tW9RZuNXadXlkHXqFzSkQew/aIa2i/Sj8fThxwovwlXHSPXTbAHwEIhBFXAedUhP2tueAKP8Og==", "dev": true, "license": "MIT", "dependencies": { "@alloc/quick-lru": "^5.2.0", "arg": "^5.0.2", "chokidar": "^3.6.0", "didyoumean": "^1.2.2", "dlv": "^1.1.3", "fast-glob": "^3.3.2", "glob-parent": "^6.0.2", "is-glob": "^4.0.3", "jiti": "^1.21.6", "lilconfig": "^3.1.3", "micromatch": "^4.0.8", "normalize-path": "^3.0.0", "object-hash": "^3.0.0", "picocolors": "^1.1.1", "postcss": "^8.4.47", "postcss-import": "^15.1.0", "postcss-js": "^4.0.1", "postcss-load-config": "^4.0.2", "postcss-nested": "^6.2.0", "postcss-selector-parser": "^6.1.2", "resolve": "^1.22.8", "sucrase": "^3.35.0" }, "bin": { "tailwind": "lib/cli.js", "tailwindcss": "lib/cli.js" }, "engines": { "node": ">=14.0.0" } }, "node_modules/tailwindcss/node_modules/postcss-selector-parser": { "version": "6.1.2", "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz", "integrity": "sha512-Q8qQfPiZ+THO/3ZrOrO0cJJKfpYCagtMUkXbnEfmgUjwXg6z/WBeOyS9APBBPCTSiDV+s4SwQGu8yFsiMRIudg==", "dev": true, "license": "MIT", "dependencies": { "cssesc": "^3.0.0", "util-deprecate": "^1.0.2" }, "engines": { "node": ">=4" } }, "node_modules/tapable": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/temp-dir": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/temp-dir/-/temp-dir-3.0.0.tgz", "integrity": "sha512-nHc6S/bwIilKHNRgK/3jlhDoIHcp45YgyiwcAk46Tr0LfEqGBVpmiAyuiuxeVE44m3mXnEeVhaipLOEWmH+Njw==", "dev": true, "license": "MIT", "engines": { "node": ">=14.16" } }, "node_modules/tempy": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/tempy/-/tempy-3.1.0.tgz", "integrity": "sha512-7jDLIdD2Zp0bDe5r3D2qtkd1QOCacylBuL7oa4udvN6v2pqr4+LcCr67C8DR1zkpaZ8XosF5m1yQSabKAW6f2g==", "dev": true, "license": "MIT", "dependencies": { "is-stream": "^3.0.0", "temp-dir": "^3.0.0", "type-fest": "^2.12.2", "unique-string": "^3.0.0" }, "engines": { "node": ">=14.16" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/tempy/node_modules/is-stream": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", "dev": true, "license": "MIT", "engines": { "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/tempy/node_modules/type-fest": { "version": "2.19.0", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", "dev": true, "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=12.20" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/terser": { "version": "5.37.0", "resolved": "https://registry.npmjs.org/terser/-/terser-5.37.0.tgz", "integrity": "sha512-B8wRRkmre4ERucLM/uXx4MOV5cbnOlVAqUst+1+iLKPI0dOgFO28f84ptoQt9HEI537PMzfYa/d+GEPKTRXmYA==", "license": "BSD-2-Clause", "dependencies": { "@jridgewell/source-map": "^0.3.3", "acorn": "^8.8.2", "commander": "^2.20.0", "source-map-support": "~0.5.20" }, "bin": { "terser": "bin/terser" }, "engines": { "node": ">=10" } }, "node_modules/terser-webpack-plugin": { "version": "5.3.11", "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.11.tgz", "integrity": "sha512-RVCsMfuD0+cTt3EwX8hSl2Ks56EbFHWmhluwcqoPKtBnfjiT6olaq7PRIRfhyU8nnC2MrnDrBLfrD/RGE+cVXQ==", "license": "MIT", "dependencies": { "@jridgewell/trace-mapping": "^0.3.25", "jest-worker": "^27.4.5", "schema-utils": "^4.3.0", "serialize-javascript": "^6.0.2", "terser": "^5.31.1" }, "engines": { "node": ">= 10.13.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" }, "peerDependencies": { "webpack": "^5.1.0" }, "peerDependenciesMeta": { "@swc/core": { "optional": true }, "esbuild": { "optional": true }, "uglify-js": { "optional": true } } }, "node_modules/terser/node_modules/commander": { "version": "2.20.3", "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", "license": "MIT" }, "node_modules/text-extensions": { "version": "1.9.0", "resolved": "https://registry.npmjs.org/text-extensions/-/text-extensions-1.9.0.tgz", "integrity": "sha512-wiBrwC1EhBelW12Zy26JeOUkQ5mRu+5o8rpsJk5+2t+Y5vE7e842qtZDQ2g1NpX/29HdyFeJ4nSIhI47ENSxlQ==", "dev": true, "license": "MIT", "engines": { "node": ">=0.10" } }, "node_modules/text-table": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", "dev": true, "license": "MIT" }, "node_modules/thenify": { "version": "3.3.1", "resolved": "https://registry.npmjs.org/thenify/-/thenify-3.3.1.tgz", "integrity": "sha512-RVZSIV5IG10Hk3enotrhvz0T9em6cyHBLkH/YAZuKqd8hRkKhSfCGIcP2KUY0EPxndzANBmNllzWPwak+bheSw==", "dev": true, "license": "MIT", "dependencies": { "any-promise": "^1.0.0" } }, "node_modules/thenify-all": { "version": "1.6.0", "resolved": "https://registry.npmjs.org/thenify-all/-/thenify-all-1.6.0.tgz", "integrity": "sha512-RNxQH/qI8/t3thXJDwcstUO4zeqo64+Uy/+sNVRBx4Xn2OX+OZ9oP+iJnNFqplFra2ZUVeKCSa2oVWi3T4uVmA==", "dev": true, "license": "MIT", "dependencies": { "thenify": ">= 3.1.0 < 4" }, "engines": { "node": ">=0.8" } }, "node_modules/thingies": { "version": "1.21.0", "resolved": "https://registry.npmjs.org/thingies/-/thingies-1.21.0.tgz", "integrity": "sha512-hsqsJsFMsV+aD4s3CWKk85ep/3I9XzYV/IXaSouJMYIoDlgyi11cBhsqYe9/geRfB0YIikBQg6raRaM+nIMP9g==", "dev": true, "license": "Unlicense", "engines": { "node": ">=10.18" }, "peerDependencies": { "tslib": "^2" } }, "node_modules/through": { "version": "2.3.8", "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==", "dev": true, "license": "MIT" }, "node_modules/through2": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/through2/-/through2-4.0.2.tgz", "integrity": "sha512-iOqSav00cVxEEICeD7TjLB1sueEL+81Wpzp2bY17uZjZN0pWZPuo4suZ/61VujxmqSGFfgOcNuTZ85QJwNZQpw==", "dev": true, "license": "MIT", "dependencies": { "readable-stream": "3" } }, "node_modules/through2/node_modules/readable-stream": { "version": "3.6.2", "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", "dev": true, "license": "MIT", "dependencies": { "inherits": "^2.0.3", "string_decoder": "^1.1.1", "util-deprecate": "^1.0.1" }, "engines": { "node": ">= 6" } }, "node_modules/thunky": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.1.0.tgz", "integrity": "sha512-eHY7nBftgThBqOyHGVN+l8gF0BucP09fMo0oO/Lb0w1OF80dJv+lDVpXG60WMQvkcxAkNybKsrEIE3ZtKGmPrA==", "dev": true, "license": "MIT" }, "node_modules/time-span": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/time-span/-/time-span-5.1.0.tgz", "integrity": "sha512-75voc/9G4rDIJleOo4jPvN4/YC4GRZrY8yy1uU4lwrB3XEQbWve8zXoO5No4eFrGcTAMYyoY67p8jRQdtA1HbA==", "dev": true, "license": "MIT", "dependencies": { "convert-hrtime": "^5.0.0" }, "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/tmp": { "version": "0.0.33", "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", "dev": true, "license": "MIT", "dependencies": { "os-tmpdir": "~1.0.2" }, "engines": { "node": ">=0.6.0" } }, "node_modules/to-regex-range": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "license": "MIT", "dependencies": { "is-number": "^7.0.0" }, "engines": { "node": ">=8.0" } }, "node_modules/toidentifier": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", "dev": true, "license": "MIT", "engines": { "node": ">=0.6" } }, "node_modules/totalist": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/totalist/-/totalist-3.0.1.tgz", "integrity": "sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==", "dev": true, "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/tr46": { "version": "0.0.3", "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" }, "node_modules/traverse": { "version": "0.6.8", "resolved": "https://registry.npmjs.org/traverse/-/traverse-0.6.8.tgz", "integrity": "sha512-aXJDbk6SnumuaZSANd21XAo15ucCDE38H4fkqiGsc3MhCK+wOlZvLP9cB/TvpHT0mOyWgC4Z8EwRlzqYSUzdsA==", "dev": true, "license": "MIT", "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/tree-dump": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/tree-dump/-/tree-dump-1.0.2.tgz", "integrity": "sha512-dpev9ABuLWdEubk+cIaI9cHwRNNDjkBBLXTwI4UCUFdQ5xXKqNXoK4FEciw/vxf+NQ7Cb7sGUyeUtORvHIdRXQ==", "dev": true, "license": "Apache-2.0", "engines": { "node": ">=10.0" }, "funding": { "type": "github", "url": "https://github.com/sponsors/streamich" }, "peerDependencies": { "tslib": "2" } }, "node_modules/trim-newlines": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz", "integrity": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==", "dev": true, "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/ts-interface-checker": { "version": "0.1.13", "resolved": "https://registry.npmjs.org/ts-interface-checker/-/ts-interface-checker-0.1.13.tgz", "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", "dev": true, "license": "Apache-2.0" }, "node_modules/ts-node": { "version": "10.9.2", "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-10.9.2.tgz", "integrity": "sha512-f0FFpIdcHgn8zcPSbf1dRevwt047YMnaiJM3u2w2RewrB+fob/zePZcrOyQoLMMO7aBIddLcQIEK5dYjkLnGrQ==", "dev": true, "license": "MIT", "dependencies": { "@cspotcode/source-map-support": "^0.8.0", "@tsconfig/node10": "^1.0.7", "@tsconfig/node12": "^1.0.7", "@tsconfig/node14": "^1.0.0", "@tsconfig/node16": "^1.0.2", "acorn": "^8.4.1", "acorn-walk": "^8.1.1", "arg": "^4.1.0", "create-require": "^1.1.0", "diff": "^4.0.1", "make-error": "^1.1.1", "v8-compile-cache-lib": "^3.0.1", "yn": "3.1.1" }, "bin": { "ts-node": "dist/bin.js", "ts-node-cwd": "dist/bin-cwd.js", "ts-node-esm": "dist/bin-esm.js", "ts-node-script": "dist/bin-script.js", "ts-node-transpile-only": "dist/bin-transpile.js", "ts-script": "dist/bin-script-deprecated.js" }, "peerDependencies": { "@swc/core": ">=1.2.50", "@swc/wasm": ">=1.2.50", "@types/node": "*", "typescript": ">=2.7" }, "peerDependenciesMeta": { "@swc/core": { "optional": true }, "@swc/wasm": { "optional": true } } }, "node_modules/ts-node/node_modules/arg": { "version": "4.1.3", "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", "dev": true, "license": "MIT" }, "node_modules/tslib": { "version": "2.8.1", "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz", "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==", "dev": true, "license": "0BSD" }, "node_modules/type-check": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", "dev": true, "license": "MIT", "dependencies": { "prelude-ls": "^1.2.1" }, "engines": { "node": ">= 0.8.0" } }, "node_modules/type-fest": { "version": "0.21.3", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", "dev": true, "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/type-is": { "version": "1.6.18", "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", "dev": true, "license": "MIT", "dependencies": { "media-typer": "0.3.0", "mime-types": "~2.1.24" }, "engines": { "node": ">= 0.6" } }, "node_modules/typescript": { "version": "5.7.3", "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.7.3.tgz", "integrity": "sha512-84MVSjMEHP+FQRPy3pX9sTVV/INIex71s9TL2Gm5FG/WG1SqXeKyZ0k7/blY/4FdOzI12CBy1vGc4og/eus0fw==", "dev": true, "license": "Apache-2.0", "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" }, "engines": { "node": ">=14.17" } }, "node_modules/uglify-js": { "version": "3.19.3", "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.19.3.tgz", "integrity": "sha512-v3Xu+yuwBXisp6QYTcH4UbH+xYJXqnq2m/LtQVWKWzYc1iehYnLixoQDN9FH6/j9/oybfd6W9Ghwkl8+UMKTKQ==", "dev": true, "license": "BSD-2-Clause", "optional": true, "bin": { "uglifyjs": "bin/uglifyjs" }, "engines": { "node": ">=0.8.0" } }, "node_modules/unicode-canonical-property-names-ecmascript": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.1.tgz", "integrity": "sha512-dA8WbNeb2a6oQzAQ55YlT5vQAWGV9WXOsi3SskE3bcCdM0P4SDd+24zS/OCacdRq5BkdsRj9q3Pg6YyQoxIGqg==", "dev": true, "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/unicode-emoji-modifier-base": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/unicode-emoji-modifier-base/-/unicode-emoji-modifier-base-1.0.0.tgz", "integrity": "sha512-yLSH4py7oFH3oG/9K+XWrz1pSi3dfUrWEnInbxMfArOfc1+33BlGPQtLsOYwvdMy11AwUBetYuaRxSPqgkq+8g==", "dev": true, "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/unicode-match-property-ecmascript": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", "dev": true, "license": "MIT", "dependencies": { "unicode-canonical-property-names-ecmascript": "^2.0.0", "unicode-property-aliases-ecmascript": "^2.0.0" }, "engines": { "node": ">=4" } }, "node_modules/unicode-match-property-value-ecmascript": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.2.0.tgz", "integrity": "sha512-4IehN3V/+kkr5YeSSDDQG8QLqO26XpL2XP3GQtqwlT/QYSECAwFztxVHjlbh0+gjJ3XmNLS0zDsbgs9jWKExLg==", "dev": true, "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/unicode-property-aliases-ecmascript": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", "dev": true, "license": "MIT", "engines": { "node": ">=4" } }, "node_modules/unicorn-magic": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.1.0.tgz", "integrity": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==", "dev": true, "license": "MIT", "engines": { "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/unique-string": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-3.0.0.tgz", "integrity": "sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==", "dev": true, "license": "MIT", "dependencies": { "crypto-random-string": "^4.0.0" }, "engines": { "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/universal-user-agent": { "version": "7.0.2", "resolved": "https://registry.npmjs.org/universal-user-agent/-/universal-user-agent-7.0.2.tgz", "integrity": "sha512-0JCqzSKnStlRRQfCdowvqy3cy0Dvtlb8xecj/H8JFZuCze4rwjPZQOgvFvn0Ws/usCHQFGpyr+pB9adaGwXn4Q==", "dev": true, "license": "ISC" }, "node_modules/universalify": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", "dev": true, "license": "MIT", "engines": { "node": ">= 10.0.0" } }, "node_modules/unpipe": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", "dev": true, "license": "MIT", "engines": { "node": ">= 0.8" } }, "node_modules/unplugin": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/unplugin/-/unplugin-1.0.1.tgz", "integrity": "sha512-aqrHaVBWW1JVKBHmGo33T5TxeL0qWzfvjWokObHA9bYmN7eNDkwOxmLjhioHl9878qDFMAaT51XNroRyuz7WxA==", "dependencies": { "acorn": "^8.8.1", "chokidar": "^3.5.3", "webpack-sources": "^3.2.3", "webpack-virtual-modules": "^0.5.0" } }, "node_modules/unplugin/node_modules/webpack-sources": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", "engines": { "node": ">=10.13.0" } }, "node_modules/update-browserslist-db": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.1.2.tgz", "integrity": "sha512-PPypAm5qvlD7XMZC3BujecnaOxwhrtoFR+Dqkk5Aa/6DssiH0ibKoketaj9w8LP7Bont1rYeoV5plxD7RTEPRg==", "funding": [ { "type": "opencollective", "url": "https://opencollective.com/browserslist" }, { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/browserslist" }, { "type": "github", "url": "https://github.com/sponsors/ai" } ], "license": "MIT", "dependencies": { "escalade": "^3.2.0", "picocolors": "^1.1.1" }, "bin": { "update-browserslist-db": "cli.js" }, "peerDependencies": { "browserslist": ">= 4.21.0" } }, "node_modules/uri-js": { "version": "4.4.1", "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", "license": "BSD-2-Clause", "dependencies": { "punycode": "^2.1.0" } }, "node_modules/url-join": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/url-join/-/url-join-5.0.0.tgz", "integrity": "sha512-n2huDr9h9yzd6exQVnH/jU5mr+Pfx08LRXXZhkLLetAMESRj+anQsTAh940iMrIetKAmry9coFuZQ2jY8/p3WA==", "dev": true, "license": "MIT", "engines": { "node": "^12.20.0 || ^14.13.1 || >=16.0.0" } }, "node_modules/util-deprecate": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", "dev": true, "license": "MIT" }, "node_modules/utila": { "version": "0.4.0", "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", "integrity": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==", "dev": true, "license": "MIT" }, "node_modules/utils-merge": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", "dev": true, "license": "MIT", "engines": { "node": ">= 0.4.0" } }, "node_modules/uuid": { "version": "9.0.1", "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz", "integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==", "funding": [ "https://github.com/sponsors/broofa", "https://github.com/sponsors/ctavan" ], "bin": { "uuid": "dist/bin/uuid" } }, "node_modules/v8-compile-cache-lib": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", "integrity": "sha512-wa7YjyUGfNZngI/vtK0UHAN+lgDCxBPCylVXGp0zu59Fz5aiGtNXaq3DhIov063MorB+VfufLh3JlF2KdTK3xg==", "dev": true, "license": "MIT" }, "node_modules/validate-npm-package-license": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", "dev": true, "license": "Apache-2.0", "dependencies": { "spdx-correct": "^3.0.0", "spdx-expression-parse": "^3.0.0" } }, "node_modules/vary": { "version": "1.1.2", "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", "dev": true, "license": "MIT", "engines": { "node": ">= 0.8" } }, "node_modules/watchpack": { "version": "2.4.2", "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.2.tgz", "integrity": "sha512-TnbFSbcOCcDgjZ4piURLCbJ3nJhznVh9kw6F6iokjiFPl8ONxe9A6nMDVXDiNbrSfLILs6vB07F7wLBrwPYzJw==", "license": "MIT", "dependencies": { "glob-to-regexp": "^0.4.1", "graceful-fs": "^4.1.2" }, "engines": { "node": ">=10.13.0" } }, "node_modules/wbuf": { "version": "1.7.3", "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", "dev": true, "license": "MIT", "dependencies": { "minimalistic-assert": "^1.0.0" } }, "node_modules/wcwidth": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz", "integrity": "sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==", "dev": true, "license": "MIT", "dependencies": { "defaults": "^1.0.3" } }, "node_modules/webidl-conversions": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" }, "node_modules/webpack": { "version": "5.97.1", "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.97.1.tgz", "integrity": "sha512-EksG6gFY3L1eFMROS/7Wzgrii5mBAFe4rIr3r2BTfo7bcc+DWwFZ4OJ/miOuHJO/A85HwyI4eQ0F6IKXesO7Fg==", "license": "MIT", "dependencies": { "@types/eslint-scope": "^3.7.7", "@types/estree": "^1.0.6", "@webassemblyjs/ast": "^1.14.1", "@webassemblyjs/wasm-edit": "^1.14.1", "@webassemblyjs/wasm-parser": "^1.14.1", "acorn": "^8.14.0", "browserslist": "^4.24.0", "chrome-trace-event": "^1.0.2", "enhanced-resolve": "^5.17.1", "es-module-lexer": "^1.2.1", "eslint-scope": "5.1.1", "events": "^3.2.0", "glob-to-regexp": "^0.4.1", "graceful-fs": "^4.2.11", "json-parse-even-better-errors": "^2.3.1", "loader-runner": "^4.2.0", "mime-types": "^2.1.27", "neo-async": "^2.6.2", "schema-utils": "^3.2.0", "tapable": "^2.1.1", "terser-webpack-plugin": "^5.3.10", "watchpack": "^2.4.1", "webpack-sources": "^3.2.3" }, "bin": { "webpack": "bin/webpack.js" }, "engines": { "node": ">=10.13.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" }, "peerDependenciesMeta": { "webpack-cli": { "optional": true } } }, "node_modules/webpack-bundle-analyzer": { "version": "4.10.2", "resolved": "https://registry.npmjs.org/webpack-bundle-analyzer/-/webpack-bundle-analyzer-4.10.2.tgz", "integrity": "sha512-vJptkMm9pk5si4Bv922ZbKLV8UTT4zib4FPgXMhgzUny0bfDDkLXAVQs3ly3fS4/TN9ROFtb0NFrm04UXFE/Vw==", "dev": true, "license": "MIT", "dependencies": { "@discoveryjs/json-ext": "0.5.7", "acorn": "^8.0.4", "acorn-walk": "^8.0.0", "commander": "^7.2.0", "debounce": "^1.2.1", "escape-string-regexp": "^4.0.0", "gzip-size": "^6.0.0", "html-escaper": "^2.0.2", "opener": "^1.5.2", "picocolors": "^1.0.0", "sirv": "^2.0.3", "ws": "^7.3.1" }, "bin": { "webpack-bundle-analyzer": "lib/bin/analyzer.js" }, "engines": { "node": ">= 10.13.0" } }, "node_modules/webpack-bundle-analyzer/node_modules/commander": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", "dev": true, "license": "MIT", "engines": { "node": ">= 10" } }, "node_modules/webpack-cli": { "version": "5.1.4", "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-5.1.4.tgz", "integrity": "sha512-pIDJHIEI9LR0yxHXQ+Qh95k2EvXpWzZ5l+d+jIo+RdSm9MiHfzazIxwwni/p7+x4eJZuvG1AJwgC4TNQ7NRgsg==", "dev": true, "license": "MIT", "dependencies": { "@discoveryjs/json-ext": "^0.5.0", "@webpack-cli/configtest": "^2.1.1", "@webpack-cli/info": "^2.0.2", "@webpack-cli/serve": "^2.0.5", "colorette": "^2.0.14", "commander": "^10.0.1", "cross-spawn": "^7.0.3", "envinfo": "^7.7.3", "fastest-levenshtein": "^1.0.12", "import-local": "^3.0.2", "interpret": "^3.1.1", "rechoir": "^0.8.0", "webpack-merge": "^5.7.3" }, "bin": { "webpack-cli": "bin/cli.js" }, "engines": { "node": ">=14.15.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" }, "peerDependencies": { "webpack": "5.x.x" }, "peerDependenciesMeta": { "@webpack-cli/generators": { "optional": true }, "webpack-bundle-analyzer": { "optional": true }, "webpack-dev-server": { "optional": true } } }, "node_modules/webpack-cli/node_modules/commander": { "version": "10.0.1", "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", "dev": true, "license": "MIT", "engines": { "node": ">=14" } }, "node_modules/webpack-dev-middleware": { "version": "7.4.2", "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-7.4.2.tgz", "integrity": "sha512-xOO8n6eggxnwYpy1NlzUKpvrjfJTvae5/D6WOK0S2LSo7vjmo5gCM1DbLUmFqrMTJP+W/0YZNctm7jasWvLuBA==", "dev": true, "license": "MIT", "dependencies": { "colorette": "^2.0.10", "memfs": "^4.6.0", "mime-types": "^2.1.31", "on-finished": "^2.4.1", "range-parser": "^1.2.1", "schema-utils": "^4.0.0" }, "engines": { "node": ">= 18.12.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" }, "peerDependencies": { "webpack": "^5.0.0" }, "peerDependenciesMeta": { "webpack": { "optional": true } } }, "node_modules/webpack-dev-server": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-5.2.0.tgz", "integrity": "sha512-90SqqYXA2SK36KcT6o1bvwvZfJFcmoamqeJY7+boioffX9g9C0wjjJRGUrQIuh43pb0ttX7+ssavmj/WN2RHtA==", "dev": true, "license": "MIT", "dependencies": { "@types/bonjour": "^3.5.13", "@types/connect-history-api-fallback": "^1.5.4", "@types/express": "^4.17.21", "@types/serve-index": "^1.9.4", "@types/serve-static": "^1.15.5", "@types/sockjs": "^0.3.36", "@types/ws": "^8.5.10", "ansi-html-community": "^0.0.8", "bonjour-service": "^1.2.1", "chokidar": "^3.6.0", "colorette": "^2.0.10", "compression": "^1.7.4", "connect-history-api-fallback": "^2.0.0", "express": "^4.21.2", "graceful-fs": "^4.2.6", "http-proxy-middleware": "^2.0.7", "ipaddr.js": "^2.1.0", "launch-editor": "^2.6.1", "open": "^10.0.3", "p-retry": "^6.2.0", "schema-utils": "^4.2.0", "selfsigned": "^2.4.1", "serve-index": "^1.9.1", "sockjs": "^0.3.24", "spdy": "^4.0.2", "webpack-dev-middleware": "^7.4.2", "ws": "^8.18.0" }, "bin": { "webpack-dev-server": "bin/webpack-dev-server.js" }, "engines": { "node": ">= 18.12.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" }, "peerDependencies": { "webpack": "^5.0.0" }, "peerDependenciesMeta": { "webpack": { "optional": true }, "webpack-cli": { "optional": true } } }, "node_modules/webpack-dev-server/node_modules/ws": { "version": "8.18.0", "resolved": "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz", "integrity": "sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==", "dev": true, "license": "MIT", "engines": { "node": ">=10.0.0" }, "peerDependencies": { "bufferutil": "^4.0.1", "utf-8-validate": ">=5.0.2" }, "peerDependenciesMeta": { "bufferutil": { "optional": true }, "utf-8-validate": { "optional": true } } }, "node_modules/webpack-merge": { "version": "5.10.0", "resolved": "https://registry.npmjs.org/webpack-merge/-/webpack-merge-5.10.0.tgz", "integrity": "sha512-+4zXKdx7UnO+1jaN4l2lHVD+mFvnlZQP/6ljaJVb4SZiwIKeUnrT5l0gkT8z+n4hKpC+jpOv6O9R+gLtag7pSA==", "license": "MIT", "dependencies": { "clone-deep": "^4.0.1", "flat": "^5.0.2", "wildcard": "^2.0.0" }, "engines": { "node": ">=10.0.0" } }, "node_modules/webpack-sources": { "version": "1.4.3", "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", "dev": true, "license": "MIT", "dependencies": { "source-list-map": "^2.0.0", "source-map": "~0.6.1" } }, "node_modules/webpack-virtual-modules": { "version": "0.5.0", "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.5.0.tgz", "integrity": "sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==" }, "node_modules/webpack/node_modules/ajv": { "version": "6.12.6", "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "license": "MIT", "dependencies": { "fast-deep-equal": "^3.1.1", "fast-json-stable-stringify": "^2.0.0", "json-schema-traverse": "^0.4.1", "uri-js": "^4.2.2" }, "funding": { "type": "github", "url": "https://github.com/sponsors/epoberezkin" } }, "node_modules/webpack/node_modules/ajv-keywords": { "version": "3.5.2", "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", "license": "MIT", "peerDependencies": { "ajv": "^6.9.1" } }, "node_modules/webpack/node_modules/eslint-scope": { "version": "5.1.1", "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", "license": "BSD-2-Clause", "dependencies": { "esrecurse": "^4.3.0", "estraverse": "^4.1.1" }, "engines": { "node": ">=8.0.0" } }, "node_modules/webpack/node_modules/estraverse": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", "license": "BSD-2-Clause", "engines": { "node": ">=4.0" } }, "node_modules/webpack/node_modules/json-schema-traverse": { "version": "0.4.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "license": "MIT" }, "node_modules/webpack/node_modules/schema-utils": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", "license": "MIT", "dependencies": { "@types/json-schema": "^7.0.8", "ajv": "^6.12.5", "ajv-keywords": "^3.5.2" }, "engines": { "node": ">= 10.13.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/webpack" } }, "node_modules/webpack/node_modules/webpack-sources": { "version": "3.2.3", "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", "license": "MIT", "engines": { "node": ">=10.13.0" } }, "node_modules/websocket-driver": { "version": "0.7.4", "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.4.tgz", "integrity": "sha512-b17KeDIQVjvb0ssuSDF2cYXSg2iztliJ4B9WdsuB6J952qCPKmnVq4DyW5motImXHDC1cBT/1UezrJVsKw5zjg==", "dev": true, "license": "Apache-2.0", "dependencies": { "http-parser-js": ">=0.5.1", "safe-buffer": ">=5.1.0", "websocket-extensions": ">=0.1.1" }, "engines": { "node": ">=0.8.0" } }, "node_modules/websocket-extensions": { "version": "0.1.4", "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.4.tgz", "integrity": "sha512-OqedPIGOfsDlo31UNwYbCFMSaO9m9G/0faIHj5/dZFDMFqPTcx6UwqyOy3COEaEOg/9VsGIpdqn62W5KhoKSpg==", "dev": true, "license": "Apache-2.0", "engines": { "node": ">=0.8.0" } }, "node_modules/whatwg-url": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", "dependencies": { "tr46": "~0.0.3", "webidl-conversions": "^3.0.0" } }, "node_modules/which": { "version": "2.0.2", "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", "license": "ISC", "dependencies": { "isexe": "^2.0.0" }, "bin": { "node-which": "bin/node-which" }, "engines": { "node": ">= 8" } }, "node_modules/wildcard": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.1.tgz", "integrity": "sha512-CC1bOL87PIWSBhDcTrdeLo6eGT7mCFtrg0uIJtqJUFyK+eJnzl8A1niH56uu7KMa5XFrtiV+AQuHO3n7DsHnLQ==", "license": "MIT" }, "node_modules/word-wrap": { "version": "1.2.5", "resolved": "https://registry.npmjs.org/word-wrap/-/word-wrap-1.2.5.tgz", "integrity": "sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==", "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/wordwrap": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", "integrity": "sha512-gvVzJFlPycKc5dZN4yPkP8w7Dc37BtP1yczEneOb4uq34pXZcvrtRTmWV8W+Ume+XCxKgbjM+nevkyFPMybd4Q==", "dev": true, "license": "MIT" }, "node_modules/wrap-ansi": { "version": "7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "dev": true, "license": "MIT", "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, "node_modules/wrap-ansi-cjs": { "name": "wrap-ansi", "version": "7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", "dev": true, "license": "MIT", "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", "dev": true, "license": "ISC" }, "node_modules/ws": { "version": "7.5.10", "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz", "integrity": "sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==", "dev": true, "license": "MIT", "engines": { "node": ">=8.3.0" }, "peerDependencies": { "bufferutil": "^4.0.1", "utf-8-validate": "^5.0.2" }, "peerDependenciesMeta": { "bufferutil": { "optional": true }, "utf-8-validate": { "optional": true } } }, "node_modules/xtend": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", "dev": true, "license": "MIT", "engines": { "node": ">=0.4" } }, "node_modules/y18n": { "version": "5.0.8", "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", "dev": true, "license": "ISC", "engines": { "node": ">=10" } }, "node_modules/yallist": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", "license": "ISC" }, "node_modules/yaml": { "version": "2.7.0", "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.7.0.tgz", "integrity": "sha512-+hSoy/QHluxmC9kCIJyL/uyFmLmc+e5CFR5Wa+bpIhIj85LVb9ZH2nVnqrHoSvKogwODv0ClqZkmiSSaIH5LTA==", "dev": true, "license": "ISC", "bin": { "yaml": "bin.mjs" }, "engines": { "node": ">= 14" } }, "node_modules/yargs": { "version": "17.7.2", "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", "dev": true, "license": "MIT", "dependencies": { "cliui": "^8.0.1", "escalade": "^3.1.1", "get-caller-file": "^2.0.5", "require-directory": "^2.1.1", "string-width": "^4.2.3", "y18n": "^5.0.5", "yargs-parser": "^21.1.1" }, "engines": { "node": ">=12" } }, "node_modules/yargs-parser": { "version": "21.1.1", "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", "dev": true, "license": "ISC", "engines": { "node": ">=12" } }, "node_modules/yn": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", "dev": true, "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/yocto-queue": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", "license": "MIT", "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/yoctocolors": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/yoctocolors/-/yoctocolors-2.1.1.tgz", "integrity": "sha512-GQHQqAopRhwU8Kt1DDM8NjibDXHC8eoh1erhGAJPEyveY9qqVeXvVikNKrDz69sHowPMorbPUrH/mx8c50eiBQ==", "dev": true, "license": "MIT", "engines": { "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } } } }
244,239
10,233
hyperswitch-web
Hyperswitch-React-Demo-App/Dockerfile
none
FROM node:18-alpine WORKDIR /usr/src/app COPY package*.json ./ COPY . . RUN yarn install RUN yarn build CMD [ "yarn" ,"start-server" ]
45
10,234
hyperswitch-web
Hyperswitch-React-Demo-App/promptScript.js
.js
const fs = require("fs"); const prompt = require("prompt-sync")({ sigint: true }); const envPath = "./.env"; const obj = { HYPERSWITCH_PUBLISHABLE_KEY: "Publishable Key", HYPERSWITCH_SECRET_KEY: "Secret Key", HYPERSWITCH_SERVER_URL: "Self-hosted Hyperswitch Server URL (URL of your Hyperswitch Backend)", HYPERSWITCH_CLIENT_URL: "Self-hosted Hyperswitch Client URL (URL of your Hyperswitch SDK)", }; function initializeValues(filePath, keyValuePairs) { try { let data = fs.readFileSync(filePath, "utf8"); // Split the content by newline to operate on individual lines let lines = data.split("\n"); // Process each key-value pair Object.entries(keyValuePairs).forEach(([key, value]) => { // Find if the key already exists in the .env file let index = lines.findIndex((line) => line.startsWith(`${key}=`)); if (index !== -1) { if (lines[index] === `${key}=` || lines[index] === `${key}=""`) { const promptVal = prompt(`${value} : `); // If the key exists, and has not been updated once, update its value lines[index] = `${key}="${promptVal}"`; } } else { const promptVal = prompt(`${value} : `); // If the key doesn't exist, add a new line with the key-value pair lines.push(`${key}="${promptVal}"`); } }); // Join the lines back together data = lines.join("\n"); // Write the updated content back to the file fs.writeFileSync(filePath, data); console.log("Initialization of values successful."); } catch (error) { console.error(`Error: ${error.message}`); } } initializeValues(envPath, obj);
415
10,235
hyperswitch-web
Hyperswitch-React-Demo-App/package.json
.json
{ "name": "react-cra", "version": "0.1.0", "private": true, "dependencies": { "@juspay-tech/hyper-js": "^1.6.0", "@juspay-tech/react-hyper-js": "^1.0.2", "@testing-library/jest-dom": "^5.16.5", "@testing-library/react": "^12.1.5", "@testing-library/user-event": "^14.4.2", "body-parser": "^1.20.3", "dotenv": "^10.0.0", "express": "^4.17.1", "node-fetch": "2.7.0", "patch-package": "^8.0.0", "prompt": "^1.3.0", "prompt-sync": "^4.2.0", "react": "^17.0.2", "react-dom": "^17.0.2", "react-router-dom": "^6.3.0", "web-vitals": "^2.1.4" }, "scripts": { "start": " webpack --config webpack.dev.js && concurrently \"npm run start-client\" \"npm run start-server\"", "start-client": "webpack serve --config webpack.dev.js", "start-server": "node dist/server.js", "build": "webpack --config webpack.common.js", "format": "prettier --write \"**/*.{js,jsx}\"" }, "eslintConfig": { "extends": [ "react-app", "react-app/jest" ] }, "browserslist": { "production": [ ">0.2%", "not dead", "not op_mini all" ], "development": [ "last 1 chrome version", "last 1 firefox version", "last 1 safari version" ] }, "proxy": "http://localhost:5252", "devDependencies": { "@babel/core": "^7.23.3", "@babel/preset-env": "^7.23.3", "@babel/preset-react": "^7.23.3", "babel-loader": "^9.1.3", "concurrently": "4.1.2", "prettier": "^2.7.1", "copy-webpack-plugin": "^11.0.0", "terser-webpack-plugin": "^5.3.10", "webpack": "^5.93.0", "webpack-bundle-analyzer": "^4.10.2", "webpack-cli": "^5.1.4", "webpack-dev-server": "^5.0.4" } }
614
10,236
hyperswitch-web
Hyperswitch-React-Demo-App/server.js
.js
const fetch = require("node-fetch"); const express = require("express"); const { resolve } = require("path"); const dotenv = require("dotenv"); dotenv.config({ path: "./.env" }); const app = express(); const PORT = 5252; function getUrl(envVar, selfHostedValue) { return process.env[envVar] === selfHostedValue ? "" : process.env[envVar]; } const SERVER_URL = getUrl("HYPERSWITCH_SERVER_URL", "SELF_HOSTED_SERVER_URL"); const CLIENT_URL = getUrl("HYPERSWITCH_CLIENT_URL", "SELF_HOSTED_CLIENT_URL"); app.use(express.static("./dist")); app.get("/", (req, res) => { const path = resolve("./dist/index.html"); res.sendFile(path); }); app.get("/completion", (req, res) => { const path = resolve("./dist/index.html"); res.sendFile(path); }); app.get("/config", (req, res) => { res.send({ publishableKey: process.env.HYPERSWITCH_PUBLISHABLE_KEY, }); }); app.get("/urls", (req, res) => { res.send({ serverUrl: SERVER_URL, clientUrl: CLIENT_URL, }); }); const paymentData = { currency: "USD", amount: 2999, order_details: [ { product_name: "Apple iPhone 15", quantity: 1, amount: 2999, }, ], confirm: false, capture_method: "automatic", authentication_type: "three_ds", customer_id: "hyperswitch_sdk_demo_id", email: "hyperswitch_sdk_demo_id@gmail.com", request_external_three_ds_authentication: false, description: "Hello this is description", shipping: { address: { line1: "1467", line2: "Harrison Street", line3: "Harrison Street", city: "San Fransico", state: "California", zip: "94122", country: "US", first_name: "joseph", last_name: "Doe", }, phone: { number: "8056594427", country_code: "+91", }, }, metadata: { udf1: "value1", new_customer: "true", login_date: "2019-09-10T10:11:12Z", }, billing: { address: { line1: "1467", line2: "Harrison Street", line3: "Harrison Street", city: "San Fransico", state: "California", zip: "94122", country: "US", first_name: "joseph", last_name: "Doe", }, phone: { number: "8056594427", country_code: "+91", }, }, }; const profileId = process.env.PROFILE_ID; if (profileId) { paymentData.profile_id = profileId; } function createPaymentRequest() { return paymentData; } app.get("/create-payment-intent", async (_, res) => { try { const paymentRequest = createPaymentRequest(); const paymentIntent = await createPaymentIntent(paymentRequest); res.send({ clientSecret: paymentIntent.client_secret, }); } catch (err) { res.status(400).send({ error: { message: err.message }, }); } }); async function createPaymentIntent(request) { const url = process.env.HYPERSWITCH_SERVER_URL_FOR_DEMO_APP || process.env.HYPERSWITCH_SERVER_URL; const apiResponse = await fetch(`${url}/payments`, { method: "POST", headers: { "Content-Type": "application/json", Accept: "application/json", "api-key": process.env.HYPERSWITCH_SECRET_KEY, }, body: JSON.stringify(request), }); const paymentIntent = await apiResponse.json(); if (paymentIntent.error) { console.error("Error - ", paymentIntent.error); throw new Error(paymentIntent?.error?.message ?? "Something went wrong."); } return paymentIntent; } app.listen(PORT, () => { console.log(`Node server listening at http://localhost:${PORT}`); });
964
10,237
hyperswitch-web
Hyperswitch-React-Demo-App/webpack.dev.js
.js
const path = require("path"); const { merge } = require("webpack-merge"); const common = require("./webpack.common.js"); const devServer = { static: { directory: path.join(__dirname, "dist"), }, hot: true, host: "0.0.0.0", port: 9060, historyApiFallback: true, proxy: [ { context: ["/payments"], target: "http://localhost:5252", changeOrigin: true, secure: true, pathRewrite: { "^/payments": "" }, }, ], headers: { "Cache-Control": "must-revalidate", }, }; module.exports = merge(common("/payments"), { mode: "development", devServer, });
172
10,238
hyperswitch-web
Hyperswitch-React-Demo-App/webpack.common.js
.js
const path = require("path"); const webpack = require("webpack"); const MiniCssExtractPlugin = require("mini-css-extract-plugin"); const CopyPlugin = require("copy-webpack-plugin"); const HtmlWebpackPlugin = require("html-webpack-plugin"); const TerserPlugin = require("terser-webpack-plugin"); const { BundleAnalyzerPlugin } = require("webpack-bundle-analyzer"); require("dotenv").config({ path: "./.env" }); module.exports = (endpoint, publicPath = "auto") => { const entries = { app: "./src/index.js", }; return { mode: "development", devtool: "source-map", output: { path: path.resolve(__dirname, "dist"), clean: true, }, optimization: { sideEffects: true, minimize: true, minimizer: [ new TerserPlugin({ terserOptions: { compress: { drop_console: false, }, }, }), ], }, plugins: [ new MiniCssExtractPlugin(), new CopyPlugin({ patterns: [ { from: "public" }, { from: path.resolve(__dirname, "server.js") }, ], }), new HtmlWebpackPlugin({ inject: false, template: "./public/playgroundIndex.html", }), new webpack.DefinePlugin({ ENDPOINT: JSON.stringify(endpoint), SCRIPT_SRC: JSON.stringify(process.env.HYPERSWITCH_CLIENT_URL), SELF_SERVER_URL: JSON.stringify(process.env.SELF_SERVER_URL ?? ""), }), new BundleAnalyzerPlugin({ analyzerMode: "static", reportFilename: "bundle-report.html", openAnalyzer: false, }), ], module: { rules: [ { test: /\.?js$/, exclude: /node_modules/, use: { loader: "babel-loader", options: { presets: ["@babel/preset-env", "@babel/preset-react"], }, }, }, { test: /\.(jpe?g|png|gif|svg)$/i, loader: "file-loader", options: { name: "/public/assets/[name].[ext]", }, }, { test: /\.css$/i, use: ["style-loader", "css-loader"], }, ], }, entry: entries, }; };
498
10,239
hyperswitch-web
Hyperswitch-React-Demo-App/README.md
.md
# Accept a payment examples in React for Payment Element ## How to run locally This is the React client for the sample and runs independently of the server. Running a backend server is a requirement and a dependency for this React front-end to work. See the README in the root of the project for more details. To run the React client locally: 1. Install dependencies From this directory run: ```sh npm install ``` 2. Start the react app ```sh npm start ``` This will start the react server running on localhost:5252. API requests to your backend are proxied by the create-react-app server using the `proxy` setting in `./package.json`. ## Example config using our Sandbox URL ``` STATIC_DIR=./dist HYPERSWITCH_PUBLISHABLE_KEY=pk_snd_*** # Replace with your publishable key HYPERSWITCH_SECRET_KEY=snd_*** # Replace with your API key HYPERSWITCH_SERVER_URL=https://sandbox.hyperswitch.io # Our Sandbox server is used HYPERSWITCH_CLIENT_URL=http://localhost:9050 # Your local running SDK SELF_SERVER_URL=http://localhost:5252 # Your local running demo server PROFILE_ID="" ``` ## Troubleshooting If your demo application is not working, you can check the following to hopefully find the issue. - Make sure you have configured the [.env](.env) file correctly. - Publishable Key `HYPERSWITCH_PUBLISHABLE_KEY` and API Key `HYPERSWITCH_SECRET_KEY` belong to the server `HYPERSWITCH_SERVER_URL`. If you use our Sandbox URL, use publishable key and API key from the hyperswitch website. If you are using your self-hosted backend, use your locally created publishable key and API Key. - The URL's must not have a slash at the end. - Check that you have opened the demo application on the correct port. The default should be [localhost:5252](http://localhost:5252). Check the [webpack.dev.js](./webpack.dev.js) file to see if it is different. - Make sure you have three terminal windows open and running. If you are running your local backend, it has to be one more. - Open your browser's development tools (F12 in most browsers) and check the network tab for failed rest calls and the console for errors.
519
10,240
hyperswitch-web
Hyperswitch-React-Demo-App/Makefile
none
NS ?= juspaydotin VERSION ?= v1.0.4 IMAGE_NAME ?= hyperswitch-web BRANCH_NAME ?= $(shell git rev-parse --abbrev-ref HEAD) CONTAINER_NAME ?= hyperswitch-web CONTAINER_INSTANCE ?= default SOURCE_COMMIT := $(shell git rev-parse HEAD) RUN_TEST ?= false .PHONY: build push shell run start stop rm release build: Dockerfile $(info Building $(NS)/$(IMAGE_NAME):$(VERSION) / git-head: $(SOURCE_COMMIT)) $(info git branch is $(BRANCH_NAME)) # cp -R ~/.ssh . docker build --platform=linux/amd64 -t $(IMAGE_NAME):$(VERSION) -f Dockerfile . # aws-auth: # aws ecr get-login-password --region $(REGION) | docker login --username AWS --password-stdin $(ACCOUNT_ID).dkr.ecr.$(REGION).amazonaws.com push: docker tag $(IMAGE_NAME):$(VERSION) $(NS)/$(IMAGE_NAME):$(VERSION) docker push $(NS)/$(IMAGE_NAME):$(VERSION)
236
10,241
hyperswitch-web
Hyperswitch-React-Demo-App/public/_redirects
none
/* /index.html 200
10
10,242
hyperswitch-web
Hyperswitch-React-Demo-App/public/playgroundIndex.html
.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <!-- <link rel="icon" href="/orca/elements/favicon.ico" /> --> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" /> <meta name="theme-color" content="#000000" /> <link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;600;700;800&display=swap" rel="stylesheet" /> <link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Qwitcher+Grypen:wght@400;700&display=swap" rel="stylesheet" /> <!-- <link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" /> --> <!-- manifest.json provides metadata used when your web app is installed on a user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/ --> <!-- <link rel="manifest" href="%PUBLIC_URL%/manifest.json" /> --> <!-- Notice the use of %PUBLIC_URL% in the tags above. It will be replaced with the URL of the `public` folder during the build. Only files inside the `public` folder can be referenced from the HTML. Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will work correctly both with client-side routing and a non-root public URL. Learn how to configure a non-root public URL by running `npm run build`. --> <title>React Hyperswitch Payment Element</title> </head> <body> <!-- <script src="<%= SCRIPT_SRC%>/HyperLoader.js" difer></script> --> <noscript>You need to enable JavaScript to run this app.</noscript> <div id="app"></div> <script src="/app.js"></script> <!-- This HTML file is a template. If you open it directly in the browser, you will see an empty page. You can add webfonts, meta tags, or analytics to this file. The build step will place the bundled scripts into the <body> tag. To begin the development, run `npm start` or `yarn start`. To create a production bundle, use `npm run build` or `yarn build`. --> </body> </html>
562
10,243
hyperswitch-web
Hyperswitch-React-Demo-App/public/manifest.json
.json
{ "short_name": "React App", "name": "Create React App Sample", "icons": [ { "src": "favicon.ico", "sizes": "64x64 32x32 24x24 16x16", "type": "image/x-icon" }, { "src": "logo192.png", "type": "image/png", "sizes": "192x192" }, { "src": "logo512.png", "type": "image/png", "sizes": "512x512" } ], "start_url": ".", "display": "standalone", "theme_color": "#000000", "background_color": "#ffffff" }
186
10,244
hyperswitch-web
Hyperswitch-React-Demo-App/src/App.css
.css
@import url('https://fonts.googleapis.com/css?family=Raleway&display=swap'); :root { --light-grey: #F6F9FC; --dark-terminal-color: #0A2540; --accent-color: #635BFF; --radius: 3px; } body { padding: 20px; font-family: 'Raleway'; display: flex; justify-content: center; font-size: 1.2em; color: var(--dark-terminal-color); } form > * { margin: 10px 0; } button { background-color: var(--accent-color); width: 100%; } button { background: #006DF9; border-radius: var(--radius); color: white; border: 0; padding: 12px 16px; margin-top: 16px; font-weight: 600; cursor: pointer; transition: all 0.2s ease; display: block; } button:hover { filter: contrast(115%); } button:active { transform: translateY(0px) scale(0.98); filter: brightness(0.9); } button:disabled { opacity: 0.5; cursor: none; } input, select { display: block; font-size: 1.1em; width: 100%; margin-bottom: 10px; } label { display: block; } a { color: var(--accent-color); font-weight: 900; } small { font-size: .6em; } fieldset, input, select { border: 1px solid #efefef; } #payment-form { width: 450px; } #messages { font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New'; display: none; /* hide initially, then show once the first message arrives */ background-color: #0A253C; color: #00D924; padding: 20px; margin: 20px 0; border-radius: var(--radius); font-size:0.7em; }
505
10,247
hyperswitch-web
Hyperswitch-React-Demo-App/src/Cart.js
.js
import React from "react"; import logo from "../public/assets/hyperswitchLogo.svg"; import shirt from "../public/assets/shirt.png"; import cap from "../public/assets/cap.png"; function Cart() { return ( <> <div className="cart"> <div className="titleContainer"> <div className="title"> {" "} <img className="logoImg" width="28px" src={logo} alt="" />{" "} Hyperswitch Playground App </div> <div className="testMode">Test Mode</div> </div> <div className="ordersummary">Order Summary(2) </div> <div className="items"> <div className="Item"> <div className="ItemContainer"> <div className="itemImg"> <img src={shirt} alt="" /> </div> <div className="itemDetails"> <div className="name">HS Tshirt</div> <div className="props"> Size: <span className="value">37 &nbsp;&nbsp;&nbsp;</span> Qty:<span className="value">1 </span> </div> <div className="props"> Color: <span className="value">Black</span> </div> </div> </div> <div> 100.00</div> </div> <div className="Item"> <div className="ItemContainer"> <div className="itemImg"> <img src={cap} alt="" /> </div> <div className="itemDetails"> <div className="name">HS Cap</div> <div className="props"> Size: <span className="value">2 &nbsp;&nbsp;&nbsp;</span> Qty:<span className="value">1 </span> </div> <div className="props"> Color: <span className="value">Black</span> </div> </div> </div> <div> 100.00</div> </div> <div className="ItemTotal"> <div className="total">Total Amount</div> <div> 200.00</div> </div> </div> </div> </> ); } export default Cart;
503
10,248
hyperswitch-web
Hyperswitch-React-Demo-App/src/Completion.js
.js
import React from "react"; import "./index.css"; import "./App.css"; import success from "../public/assets/Successsuccess.svg"; function Completion(props) { return ( <> <div className="ConfirmContainer"> <div> <img src={success} width="150px" height="110px" /> </div> <div className="ConfirmText">Thanks for your order!</div> <div className="ConfirmDes"> Yayyy! You successfully made a payment with Hyperswitch. If its a real store, your items would have been on their way. </div> <div> <a className="returnLink" href="/"> Try hyperswitch Playground again </a> </div> </div> </> ); } export default Completion;
175
10,249
hyperswitch-web
Hyperswitch-React-Demo-App/src/CheckoutForm.js
.js
import { PaymentElement } from "@juspay-tech/react-hyper-js"; import Cart from "./Cart"; import { useState, useEffect } from "react"; import { useHyper, useElements } from "@juspay-tech/react-hyper-js"; import { useNavigate } from "react-router-dom"; import React from "react"; import Completion from "./Completion"; import "./App.css"; export default function CheckoutForm() { const hyper = useHyper(); const elements = useElements(); const navigate = useNavigate(); const [isSuccess, setSuccess] = useState(false); const [message, setMessage] = useState(null); const [isProcessing, setIsProcessing] = useState(false); function handlePaymentStatus(status) { switch (status) { case "succeeded": setMessage("Payment successful"); setSuccess(true); break; case "processing": setMessage("Your payment is processing."); break; case "requires_payment_method": setMessage("Your payment was not successful, please try again."); break; case "requires_capture": setMessage("Payment processing! Requires manual capture"); break; case "requires_customer_action": setMessage("Customer needs to take action to confirm this payment"); break; case "failed": setMessage("Payment Failed!"); break; default: setMessage(`Something went wrong. (Status: ${status})`); break; } } const handleSubmit = async (e) => { e.preventDefault(); if (!hyper || !elements) { // Hyper.js has not yet loaded. // Make sure to disable form submission until Hyper.js has loaded. return; } setIsProcessing(true); try { const { error, status } = await hyper.confirmPayment({ elements, confirmParams: { // Make sure to change this to your payment completion page return_url: `${window.location.origin}`, }, }); if (error) { setMessage(error.message); } else { setMessage("Unexpected Error"); } if (status) { console.log("-status", status); handlePaymentStatus(status); } } catch (error) { setMessage("Error confirming payment: " + error.message); } finally { setIsProcessing(false); } }; useEffect(() => { if (!hyper) { return; } const clientSecret = new URLSearchParams(window.location.search).get( "payment_intent_client_secret" ); if (!clientSecret) { return; } hyper.retrievePaymentIntent(clientSecret).then(({ paymentIntent }) => { console.log("-retrieve called", paymentIntent?.status); handlePaymentStatus(paymentIntent?.status); }); }, [hyper, navigate]); const options = { wallets: { walletReturnUrl: `${window.location.origin}`, applePay: "auto", googlePay: "auto", style: { theme: "dark", type: "default", height: 55, }, }, }; return ( <div className="browser"> <div className="toolbar"> <div className="controls"> <div className="btn close"></div> <div className="btn min"></div> <div className="btn max"></div> </div> </div> <div className="tabbar"> <div className="input"> <div className="info"> &#8505;</div> <div> http://localhost:9060</div> </div> </div> <div className="viewport"> {!isSuccess ? ( <> <Cart /> <div className="payment-form"> <form id="payment-form" onSubmit={handleSubmit}> <div className="paymentElement"> <PaymentElement id="payment-element" options={options} /> </div> <button disabled={isProcessing || !hyper || !elements} id="submit" > <span id="button-text"> {isProcessing ? "Processing..." : "Pay now"} </span> </button> {/* Show any error or success messages */} {message && <div id="payment-message">{message}</div>} </form> </div> </> ) : ( <Completion /> )} </div> </div> ); }
925
10,250
hyperswitch-web
Hyperswitch-React-Demo-App/src/Payment.js
.js
/* eslint-disable no-undef */ import { useEffect, useState } from "react"; import React from "react"; import { HyperElements } from "@juspay-tech/react-hyper-js"; import CheckoutForm from "./CheckoutForm"; function Payment() { const [hyperPromise, setHyperPromise] = useState(null); const [clientSecret, setClientSecret] = useState(""); const queryParams = new URLSearchParams(window.location.search); const isCypressTestMode = queryParams.get("isCypressTestMode"); const publishableKeyQueryParam = queryParams.get("publishableKey"); const clientSecretQueryParam = queryParams.get("clientSecret"); const url = SELF_SERVER_URL === "" ? ENDPOINT : SELF_SERVER_URL; const getPaymentData = async () => { try { const [configResponse, urlsResponse] = await Promise.all([ fetch(`${url}/config`), fetch(`${url}/urls`), ]); const paymentIntentResponse = isCypressTestMode ? { clientSecret: clientSecretQueryParam } : await fetch(`${url}/create-payment-intent`).then((res) => res.json()); if (!configResponse.ok || !urlsResponse.ok) { throw new Error("Network response was not ok"); } const paymentDataArray = await Promise.all([ configResponse.json(), urlsResponse.json(), ]); return [...paymentDataArray, paymentIntentResponse]; } catch (error) { console.error("Error fetching data:", error); } }; useEffect(() => { const fetchData = async () => { try { const [configData, urlsData, paymentIntentData] = await getPaymentData( url ); const { publishableKey } = configData; const { serverUrl, clientUrl } = urlsData; const { clientSecret } = paymentIntentData; setClientSecret(clientSecret); const script = document.createElement("script"); script.src = `${clientUrl}/HyperLoader.js`; document.head.appendChild(script); script.onload = () => { setHyperPromise( new Promise((resolve) => { resolve( window.Hyper( isCypressTestMode ? publishableKeyQueryParam : publishableKey, { customBackendUrl: serverUrl, } ) ); }) ); }; script.onerror = () => { setHyperPromise( new Promise((_, reject) => { reject("Script could not be loaded"); }) ); }; return () => { document.head.removeChild(script); }; } catch (error) { console.error("Error fetching data:", error); } }; fetchData(); }, []); return ( <div className="mainContainer"> <div className="heading"> <h2>Hyperswitch Unified Checkout</h2> </div> {clientSecret && hyperPromise && ( <HyperElements hyper={hyperPromise} options={{ clientSecret: isCypressTestMode ? clientSecretQueryParam : clientSecret, appearance: { labels: "floating", }, }} > <CheckoutForm /> </HyperElements> )} </div> ); } export default Payment;
684
10,251
hyperswitch-web
Hyperswitch-React-Demo-App/src/index.js
.js
import React from "react"; import ReactDOM from "react-dom"; import "./index.css"; import App from "./App"; ReactDOM.render( <React.StrictMode> <App /> </React.StrictMode>, document.getElementById("app") );
50
10,253
hyperswitch-web
Hyperswitch-React-Demo-App/src/App.js
.js
import "./App.css"; import Payment from "./Payment"; import Completion from "./Completion"; import React from "react"; import { BrowserRouter, Routes, Route } from "react-router-dom"; function App() { return ( <main> <BrowserRouter> <Routes> <Route path="/" element={<Payment />} /> </Routes> </BrowserRouter> </main> ); } export default App;
85
10,254
hyperswitch-web
Hyperswitch-React-Demo-App/src/index.css
.css
@import url("https://fonts.googleapis.com/css?family=Raleway&display=swap"); body { font-family: "Raleway"; display: flex; justify-content: center; font-size: 1.2em; color: var(--dark-terminal-color); } main{ display: flex; flex-direction: column; justify-content: center; } .heading{ color:#454141ab; display: flex; font-weight:bolder; font-family:sans-serif ; justify-content: center; } .mainContainer{ gap: 1em; padding: 1em; } .browser { border-radius: 5px ; box-shadow: 0px 20px 25px 10px rgba(0, 0, 0, .4); margin: auto } .toolbar { background-color: #f3f3f3;; width: auto; height: 23px; border-radius: 5px 5px 0 0; } .tab { border-bottom: 15px solid #E6E6E6; border-left: 10px solid transparent; border-right: 10px solid transparent; border-radius: 5px 5px 0 0; height: 9px; width: 110px; display: inline-block; } .tabbar { display: flex; justify-content: center; background-color: #fcfeff; align-items: center; width: auto; height: 23px; } .btn { width: 10px; height: 10px; border-radius: 5px; float: left; margin: 8px 5px 0 0; box-shadow: 0px 2px 2px 1px rgba(0, 0, 0, .05); } .btn:first-of-type { margin-left: 10px; } .close { background-color: #E06752; } .titleContainer{ gap: 0.5em; display: flex; width: max-content; flex-direction: column; padding-bottom: 2em; } .logoImg{ width: 32px } .title{ font-size: 25px; font-weight: 900; } .testMode{ display: flex; text-align: center; align-items: center; justify-content: center; border-radius: 5px; width: 100px; font-weight: 600; background-color: rgb(255,222,146); color: rgb(187,85,4); } #payment-message{ color: red; } .min { background-color: #ecc343; } .max { background-color: #57d08d; } .ordersummary{ font-weight: bolder; } .info{ border-radius: 50%; border: 1px solid #6b7a94; width:10px; display: flex; height:10px; justify-content: center; align-items: center; } .input{ width:40%; display: flex; align-items: center; gap:0.5em; height: 60%; border-radius: 10px; font-family: sans-serif; /* border: 1px solid #cbcbcb; */ background: #f5f9fc; margin: auto; font-size: x-small; font-weight: 600; color: #6b7a94; padding-left: 5px; } .cart { display: flex; flex-direction: column; padding: 2em; padding-left: 5em; padding-right: 5em; padding-top: 3em; width: 50%; } .viewport { background-color: white; width: auto; display: flex; flex-direction: row; gap: 1em; height: 700px; border-top: 1px solid #CBCBCB; justify-content: center; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; } .ConfirmContainer{ padding: 5%; margin-bottom:5%; display: flex; flex-direction: column; gap: 10px; width: 50%; justify-content: center; align-items: center; } .returnLink{ font-weight: 400; font-size: 16px; color: #4285F4; } .ConfirmText{ font-weight: 700; font-size: 26px; color: #000000; } .ConfirmDes{ text-align: center; width: 100%; font-weight: 400; font-size: 16px; color: #000000; opacity: 0.4; } .payment-form{ padding: 2em; width: 50%; display: flex; overflow-y: scroll; justify-content: center; box-shadow: -5px 0px 10px 1px #f0efef; } .img{ display: flex; flex-direction: row; justify-content: center; align-items: center; width: 30%; float: left; } .Item { display: flex; flex-direction: row; justify-content: space-between; height: auto; padding: 10px; border-bottom: 1px solid #f0eded; } .ItemTotal { display: flex; flex-direction: row; justify-content: space-between; height: auto; padding: 10px; } .ItemContainer{ display: flex; flex-direction: row; width: 35%; } .itemDetails{ padding: 8px; } .itemImg{ width: auto; } .name { display: flex; font-style: normal; font-weight: 600; font-size: 16.3902px; padding-bottom: 10px; color: #212529; } .total{ font-weight: 400; font-size: 16px; color: #000000; opacity: 0.9; } .value{ color: #212121; } .props{ text-align: initial; display: flex; flex-direction: row; padding-bottom: 10px; color: #868E96; font-size: 15px; } .items { display: flex; width: 100%; flex-direction: column; } @media only screen and (max-width: 1200px){ .viewport{ flex-direction: column; overflow-y: scroll; justify-content: flex-start; } .payment-form{ width: auto; box-shadow: none; overflow-y: visible; } .ConfirmContainer{ width: 90%; } } @media only screen and (max-width: 650px){ .browser{ width: 370px; display: inline; } .cart{ padding: 2em; padding-left: auto; padding-right: auto; width: auto; } .title{ font-size: 20px; } .mainContainer{ display: flex; flex-direction: column; justify-content: center; align-items: center; } }
1,731
10,255
hyperswitch-web
docs/SECURITY.md
.md
# Security Policy ## Reporting a security issue The hyperswitch project team welcomes security reports and is committed to providing prompt attention to security issues. Security issues should be reported privately via the [advisories page on GitHub][report-vulnerability] or by email at [hyperswitch@juspay.in](mailto:hyperswitch@juspay.in). Security issues should not be reported via the public GitHub Issue tracker. [report-vulnerability]: https://github.com/juspay/hyperswitch/security/advisories/new
116
10,256
hyperswitch-web
docs/CODE_OF_CONDUCT.md
.md
# Code of Conduct This project adheres to React Code of Conduct [React Code of Conduct](https://github.com/facebook/react/blob/main/CODE_OF_CONDUCT.md). ## Our Pledge In the interest of fostering an open and welcoming environment, we as contributors and maintainers pledge to make participation in our project and our community a harassment-free experience for everyone, regardless of age, body size, disability, ethnicity, sex characteristics, gender identity and expression, level of experience, education, socio-economic status, nationality, personal appearance, race, religion, or sexual identity and orientation. ## Our Standards Examples of behavior that contributes to creating a positive environment include: - Using welcoming and inclusive language - Being respectful of differing viewpoints and experiences - Gracefully accepting constructive criticism - Focusing on what is best for the community - Showing empathy towards other community members - Examples of unacceptable behavior by participants include: - The use of sexualized language or imagery and unwelcome sexual attention or advances - Trolling, insulting/derogatory comments, and personal or political attacks - Public or private harassment - Publishing others' private information, such as a physical or electronic address, without explicit permission - Other conduct which could reasonably be considered inappropriate in a professional setting ## Our Responsibilities Project maintainers are responsible for clarifying the standards of acceptable behavior and are expected to take appropriate and fair corrective action in response to any instances of unacceptable behavior. Project maintainers have the right and responsibility to remove, edit, or reject comments, commits, code, wiki edits, issues, and other contributions that are not aligned to this Code of Conduct, or to ban temporarily or permanently any contributor for other behaviors that they deem inappropriate, threatening, offensive, or harmful. ## Scope This Code of Conduct applies within all project spaces, and it also applies when an individual is representing the project or its community in public spaces. Examples of representing a project or community include using an official project e-mail address, posting via an official social media account, or acting as an appointed representative at an online or offline event. Representation of a project may be further defined and clarified by project maintainers. This Code of Conduct also applies outside the project spaces when there is a reasonable belief that an individual's behavior may have a negative impact on the project or its community. ## Enforcement Instances of abusive, harassing, or otherwise unacceptable behavior may be reported by contacting the project team at hyperswitch@juspay.in. All complaints will be reviewed and investigated and will result in a response that is deemed necessary and appropriate to the circumstances. The project team is obligated to maintain confidentiality with regard to the reporter of an incident. Further details of specific enforcement policies may be posted separately. Project maintainers who do not follow or enforce the Code of Conduct in good faith may face temporary or permanent repercussions as determined by other members of the project's leadership. ## Attribution This Code of Conduct is adapted from the Contributor Covenant, version 1.4, available at Contributor Covenant: For answers to common questions about this code of conduct, see Contributor Covenant: Frequently Asked Questions about Contributor Covenant
640
10,257
hyperswitch-web
docs/CONTRIBUTOR_LICENSE_AGREEMENT.md
.md
# Contributor License Agreement You accept and agree to the following terms and conditions for Your present and future Contributions submitted to Juspay Technologies Private Limited, Except for the license granted herein to Juspay Technologies Private Limited and recipients of software distributed by Juspay Technologies Private Limited, You reserve all right, title, and interest in and to Your Contributions. 1. **Definitions:** 1. "You" (or "Your") shall mean the copyright owner or legal entity authorized by the copyright owner that is making this Agreement with Juspay Technologies Private Limited. For legal entities, the entity making a Contribution and all other entities that control, are controlled by, or are under common control with that entity are considered to be a single Contributor. For the purposes of this definition, "control" means (i) the power, direct or indirect, to cause the direction or management of such entity, whether by contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the outstanding shares, or (iii) beneficial ownership of such entity. 2. "Contribution" shall mean the code, documentation or other original work of authorship, including any modifications or additions to an existing work, that is intentionally submitted by You to Juspay Technologies Private Limited for inclusion in, or documentation of, any of the products owned or managed by Juspay Technologies Private Limited (the "Work"). For the purposes of this definition, "submitted" means any form of electronic, verbal, or written communication sent to Juspay Technologies Private Limited or its representatives, including but not limited to communication on electronic mailing lists, source code control systems, and issue tracking systems that are managed by, or on behalf of, Juspay Technologies Private Limited for the purpose of discussing and improving the Work, but excluding communication that is conspicuously marked or otherwise designated in writing by You as "Not a Contribution." 2. **Grant of Copyright License:** Subject to the terms and conditions of this Agreement, You hereby grant to Juspay Technologies Private Limited and to recipients of software distributed by Juspay Technologies Private Limited a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare derivative works of, publicly display, publicly perform, sublicense, and distribute Your Contributions and such derivative works. 3. **Grant of Patent License:** Subject to the terms and conditions of this Agreement, You hereby grant to Juspay Technologies Private Limited and to recipients of software distributed by Juspay Technologies Private Limited a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by You that are necessarily infringed by Your Contribution(s) alone or by combination of Your Contribution(s) with the Work to which such Contribution(s) was submitted. If any entity institutes patent litigation against You or any other entity (including a cross-claim or counterclaim in a lawsuit) alleging that your Contribution, or the Work to which you have contributed, constitutes direct or contributory patent infringement, then any patent licenses granted to that entity under this Agreement for that Contribution or Work shall terminate as of the date such litigation is filed. 4. You represent that You are legally entitled to grant the above license. You represent further that each of Your employees is authorized to submit Contributions on Your behalf, but excluding employees that are designated in writing by You as "Not authorized to submit Contributions on behalf of [name of Your corporation here]." Such designations of exclusion for unauthorized employees are to be submitted via email to Juspay Technologies Private Limited. In case of Individual, if your employer(s) has rights to intellectual property that you create that includes your Contributions, you represent that you have received permission to make Contributions on behalf of that employer, that your employer has waived such rights for your Contributions to Juspay Technologies Private Limited, or that your employer has executed a separate Corporate CLA with Juspay Technologies Private Limited. 5. You represent that each of Your Contributions is Your original creation (see section 7 for submissions on behalf of others). You represent that Your Contribution submissions include complete details of any third-party license or other restriction (including, but not limited to, related patents and trademarks) of which you are personally aware and which are associated with any part of Your Contributions. 6. You are not expected to provide support for Your Contributions, except to the extent You desire to provide support. You may provide support for free, for a fee, or not at all. Unless required by applicable law or agreed to in writing, You provide Your Contributions on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON- INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. 7. Should You wish to submit work that is not Your original creation, You may submit it to Juspay Technologies Private Limited separately from any Contribution, identifying the complete details of its source and of any license or other restriction (including, but not limited to, related patents, trademarks, and license agreements) of which you are personally aware, and conspicuously marking the work as "Submitted on behalf of a third-party: [Juspay Technologies Private Limited]". You agree to notify Juspay Technologies Private Limited of any facts or circumstances of which you become aware that would make these representations inaccurate in any respect. It is Your responsibility to notify Juspay Technologies Private Limited when any change is required to the list of designated employees excluded from submitting Contributions on Your behalf. Such notification should be sent via email to Juspay Technologies Private Limited. This text is licensed to Juspay Technologies Private Limited and the original source is the [Juspay license](/LICENSE).
1,363
10,258
hyperswitch-web
cypress-tests/readme.md
.md
<h1 align="center">Hyperswitch SDK Web Testing</h1> ## Quick Start Locally Steps to get started with Hyperswitch-web sdk testing locally: 1. Set up hyperswitch web following the [Docs](https://github.com/juspay/hyperswitch-web?tab=readme-ov-file#hyperswitch-unified-checkout). 2. Now that you have three terminals open, spin up a fourth terminal and do `cd cypress-tests && npm start` in the main repo terminal (hyperswitch-web) (Note: In case Cypress is running for the first time, and cypress script runs into an error, uninstall and re install cypress as a dev module inside the cypress-tests folder) 3. Cypress should open the window to test separate flows. 4. To run cypress in headless mode, put publishable key and secret key to be used for tests in `cypress.env.json` and then spin a terminal window and run `npm run test` 💡 Note: Incase you are setting cypress for the first time and run into a cypress error, try to uninstall and re-install cypress inside cypress-tests folder by running the following commands : ``` npm uninstall cypress npm install cypress --save-dev ``` ## Adding test cases: 1. Test cases to be written in [Typescript](https://www.typescriptlang.org/) and type-safety to be used in all cases.<br/> 💡 Note: Try to avoid using `any` keyword as much as possible 2. In order to add test-ids to the components follow the following cases: 1. Create a new key in `hyperswitch-web/src/Utilities/TestUtils.res` 2. Add the key in: `dataTestId={TestUtils.paymentMethodListTestId}` as the property for the tag to be tested. 💡 Note: Either run the `re:build` command or keep the `re:start` command server running to generate the necessary js code
423
10,262
hyperswitch-web
cypress-tests/tsconfig.json
.json
{ "compilerOptions": { "baseUrl": ".", "target": "ES2022", "lib": ["ES2015", "dom"], "types": ["cypress", "node"] }, "include": ["**/*.ts", "./cypress.d.ts"] }
67
10,263
hyperswitch-web
cypress-tests/package.json
.json
{ "name": "cypress-tests", "version": "1.0.0", "description": "Test cases in cypress", "main": "cypress.config.js", "scripts": { "lint": "./node_modules/.bin/tslint -c tslint.json -p cypress/**/*.ts -t stylish", "start": "cypress open", "test": "cypress run" }, "repository": { "type": "git", "url": "https://github.com/juspay/hyperswitch-web/cypress-tests" }, "author": "juspay/hyperswitch-web-sdk", "license": "ISC", "devDependencies": { "cypress": "^13.13.2", "cypress-iframe": "^1.0.1", "typescript": "^5.5.4" } }
197
10,264
hyperswitch-web
cypress-tests/cypress.config.js
.js
const { defineConfig } = require("cypress"); module.exports = defineConfig({ projectId: "6r9ayw", chromeWebSecurity: false, e2e: { baseUrl: "http://localhost:9050", }, retries: { runMode: 1, openMode: 1 }, });
72
10,265
hyperswitch-web
cypress-tests/cypress.env.json
.json
{ "HYPERSWITCH_PUBLISHABLE_KEY": "", "HYPERSWITCH_SECRET_KEY": "" }
26
10,266
hyperswitch-web
cypress-tests/package-lock.json
.json
{ "name": "cypress-tests", "version": "1.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "cypress-tests", "version": "1.0.0", "license": "ISC", "devDependencies": { "cypress": "^13.13.2", "cypress-iframe": "^1.0.1", "typescript": "^5.5.4" } }, "node_modules/@colors/colors": { "version": "1.5.0", "dev": true, "license": "MIT", "optional": true, "engines": { "node": ">=0.1.90" } }, "node_modules/@cypress/request": { "version": "3.0.1", "dev": true, "license": "Apache-2.0", "dependencies": { "aws-sign2": "~0.7.0", "aws4": "^1.8.0", "caseless": "~0.12.0", "combined-stream": "~1.0.6", "extend": "~3.0.2", "forever-agent": "~0.6.1", "form-data": "~2.3.2", "http-signature": "~1.3.6", "is-typedarray": "~1.0.0", "isstream": "~0.1.2", "json-stringify-safe": "~5.0.1", "mime-types": "~2.1.19", "performance-now": "^2.1.0", "qs": "6.10.4", "safe-buffer": "^5.1.2", "tough-cookie": "^4.1.3", "tunnel-agent": "^0.6.0", "uuid": "^8.3.2" }, "engines": { "node": ">= 6" } }, "node_modules/@cypress/xvfb": { "version": "1.2.4", "dev": true, "license": "MIT", "dependencies": { "debug": "^3.1.0", "lodash.once": "^4.1.1" } }, "node_modules/@cypress/xvfb/node_modules/debug": { "version": "3.2.7", "dev": true, "license": "MIT", "dependencies": { "ms": "^2.1.1" } }, "node_modules/@types/cypress": { "version": "1.1.3", "dev": true, "license": "MIT", "peer": true, "dependencies": { "cypress": "*" } }, "node_modules/@types/node": { "version": "22.1.0", "dev": true, "license": "MIT", "optional": true, "dependencies": { "undici-types": "~6.13.0" } }, "node_modules/@types/sinonjs__fake-timers": { "version": "8.1.1", "dev": true, "license": "MIT" }, "node_modules/@types/sizzle": { "version": "2.3.8", "dev": true, "license": "MIT" }, "node_modules/@types/yauzl": { "version": "2.10.3", "dev": true, "license": "MIT", "optional": true, "dependencies": { "@types/node": "*" } }, "node_modules/aggregate-error": { "version": "3.1.0", "dev": true, "license": "MIT", "dependencies": { "clean-stack": "^2.0.0", "indent-string": "^4.0.0" }, "engines": { "node": ">=8" } }, "node_modules/ansi-colors": { "version": "4.1.3", "dev": true, "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/ansi-escapes": { "version": "4.3.2", "dev": true, "license": "MIT", "dependencies": { "type-fest": "^0.21.3" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/ansi-regex": { "version": "5.0.1", "dev": true, "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/ansi-styles": { "version": "4.3.0", "dev": true, "license": "MIT", "dependencies": { "color-convert": "^2.0.1" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, "node_modules/arch": { "version": "2.2.0", "dev": true, "funding": [ { "type": "github", "url": "https://github.com/sponsors/feross" }, { "type": "patreon", "url": "https://www.patreon.com/feross" }, { "type": "consulting", "url": "https://feross.org/support" } ], "license": "MIT" }, "node_modules/asn1": { "version": "0.2.6", "dev": true, "license": "MIT", "dependencies": { "safer-buffer": "~2.1.0" } }, "node_modules/assert-plus": { "version": "1.0.0", "dev": true, "license": "MIT", "engines": { "node": ">=0.8" } }, "node_modules/astral-regex": { "version": "2.0.0", "dev": true, "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/async": { "version": "3.2.5", "dev": true, "license": "MIT" }, "node_modules/asynckit": { "version": "0.4.0", "dev": true, "license": "MIT" }, "node_modules/at-least-node": { "version": "1.0.0", "dev": true, "license": "ISC", "engines": { "node": ">= 4.0.0" } }, "node_modules/aws-sign2": { "version": "0.7.0", "dev": true, "license": "Apache-2.0", "engines": { "node": "*" } }, "node_modules/aws4": { "version": "1.13.1", "dev": true, "license": "MIT" }, "node_modules/base64-js": { "version": "1.5.1", "dev": true, "funding": [ { "type": "github", "url": "https://github.com/sponsors/feross" }, { "type": "patreon", "url": "https://www.patreon.com/feross" }, { "type": "consulting", "url": "https://feross.org/support" } ], "license": "MIT" }, "node_modules/bcrypt-pbkdf": { "version": "1.0.2", "dev": true, "license": "BSD-3-Clause", "dependencies": { "tweetnacl": "^0.14.3" } }, "node_modules/blob-util": { "version": "2.0.2", "dev": true, "license": "Apache-2.0" }, "node_modules/bluebird": { "version": "3.7.2", "dev": true, "license": "MIT" }, "node_modules/buffer": { "version": "5.7.1", "dev": true, "funding": [ { "type": "github", "url": "https://github.com/sponsors/feross" }, { "type": "patreon", "url": "https://www.patreon.com/feross" }, { "type": "consulting", "url": "https://feross.org/support" } ], "license": "MIT", "dependencies": { "base64-js": "^1.3.1", "ieee754": "^1.1.13" } }, "node_modules/buffer-crc32": { "version": "0.2.13", "dev": true, "license": "MIT", "engines": { "node": "*" } }, "node_modules/cachedir": { "version": "2.4.0", "dev": true, "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/call-bind": { "version": "1.0.7", "dev": true, "license": "MIT", "dependencies": { "es-define-property": "^1.0.0", "es-errors": "^1.3.0", "function-bind": "^1.1.2", "get-intrinsic": "^1.2.4", "set-function-length": "^1.2.1" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/caseless": { "version": "0.12.0", "dev": true, "license": "Apache-2.0" }, "node_modules/chalk": { "version": "4.1.2", "dev": true, "license": "MIT", "dependencies": { "ansi-styles": "^4.1.0", "supports-color": "^7.1.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/chalk?sponsor=1" } }, "node_modules/chalk/node_modules/supports-color": { "version": "7.2.0", "dev": true, "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, "engines": { "node": ">=8" } }, "node_modules/check-more-types": { "version": "2.24.0", "dev": true, "license": "MIT", "engines": { "node": ">= 0.8.0" } }, "node_modules/ci-info": { "version": "3.9.0", "dev": true, "funding": [ { "type": "github", "url": "https://github.com/sponsors/sibiraj-s" } ], "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/clean-stack": { "version": "2.2.0", "dev": true, "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/cli-cursor": { "version": "3.1.0", "dev": true, "license": "MIT", "dependencies": { "restore-cursor": "^3.1.0" }, "engines": { "node": ">=8" } }, "node_modules/cli-table3": { "version": "0.6.5", "dev": true, "license": "MIT", "dependencies": { "string-width": "^4.2.0" }, "engines": { "node": "10.* || >= 12.*" }, "optionalDependencies": { "@colors/colors": "1.5.0" } }, "node_modules/cli-truncate": { "version": "2.1.0", "dev": true, "license": "MIT", "dependencies": { "slice-ansi": "^3.0.0", "string-width": "^4.2.0" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/color-convert": { "version": "2.0.1", "dev": true, "license": "MIT", "dependencies": { "color-name": "~1.1.4" }, "engines": { "node": ">=7.0.0" } }, "node_modules/color-name": { "version": "1.1.4", "dev": true, "license": "MIT" }, "node_modules/colorette": { "version": "2.0.20", "dev": true, "license": "MIT" }, "node_modules/combined-stream": { "version": "1.0.8", "dev": true, "license": "MIT", "dependencies": { "delayed-stream": "~1.0.0" }, "engines": { "node": ">= 0.8" } }, "node_modules/commander": { "version": "6.2.1", "dev": true, "license": "MIT", "engines": { "node": ">= 6" } }, "node_modules/common-tags": { "version": "1.8.2", "dev": true, "license": "MIT", "engines": { "node": ">=4.0.0" } }, "node_modules/core-util-is": { "version": "1.0.2", "dev": true, "license": "MIT" }, "node_modules/cross-spawn": { "version": "7.0.3", "dev": true, "license": "MIT", "dependencies": { "path-key": "^3.1.0", "shebang-command": "^2.0.0", "which": "^2.0.1" }, "engines": { "node": ">= 8" } }, "node_modules/cypress": { "version": "13.13.2", "dev": true, "hasInstallScript": true, "license": "MIT", "dependencies": { "@cypress/request": "^3.0.1", "@cypress/xvfb": "^1.2.4", "@types/sinonjs__fake-timers": "8.1.1", "@types/sizzle": "^2.3.2", "arch": "^2.2.0", "blob-util": "^2.0.2", "bluebird": "^3.7.2", "buffer": "^5.7.1", "cachedir": "^2.3.0", "chalk": "^4.1.0", "check-more-types": "^2.24.0", "cli-cursor": "^3.1.0", "cli-table3": "~0.6.1", "commander": "^6.2.1", "common-tags": "^1.8.0", "dayjs": "^1.10.4", "debug": "^4.3.4", "enquirer": "^2.3.6", "eventemitter2": "6.4.7", "execa": "4.1.0", "executable": "^4.1.1", "extract-zip": "2.0.1", "figures": "^3.2.0", "fs-extra": "^9.1.0", "getos": "^3.2.1", "is-ci": "^3.0.1", "is-installed-globally": "~0.4.0", "lazy-ass": "^1.6.0", "listr2": "^3.8.3", "lodash": "^4.17.21", "log-symbols": "^4.0.0", "minimist": "^1.2.8", "ospath": "^1.2.2", "pretty-bytes": "^5.6.0", "process": "^0.11.10", "proxy-from-env": "1.0.0", "request-progress": "^3.0.0", "semver": "^7.5.3", "supports-color": "^8.1.1", "tmp": "~0.2.3", "untildify": "^4.0.0", "yauzl": "^2.10.0" }, "bin": { "cypress": "bin/cypress" }, "engines": { "node": "^16.0.0 || ^18.0.0 || >=20.0.0" } }, "node_modules/cypress-iframe": { "version": "1.0.1", "dev": true, "license": "MIT", "peerDependencies": { "@types/cypress": "^1.1.0" } }, "node_modules/dashdash": { "version": "1.14.1", "dev": true, "license": "MIT", "dependencies": { "assert-plus": "^1.0.0" }, "engines": { "node": ">=0.10" } }, "node_modules/dayjs": { "version": "1.11.12", "dev": true, "license": "MIT" }, "node_modules/debug": { "version": "4.3.6", "dev": true, "license": "MIT", "dependencies": { "ms": "2.1.2" }, "engines": { "node": ">=6.0" }, "peerDependenciesMeta": { "supports-color": { "optional": true } } }, "node_modules/define-data-property": { "version": "1.1.4", "dev": true, "license": "MIT", "dependencies": { "es-define-property": "^1.0.0", "es-errors": "^1.3.0", "gopd": "^1.0.1" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/delayed-stream": { "version": "1.0.0", "dev": true, "license": "MIT", "engines": { "node": ">=0.4.0" } }, "node_modules/ecc-jsbn": { "version": "0.1.2", "dev": true, "license": "MIT", "dependencies": { "jsbn": "~0.1.0", "safer-buffer": "^2.1.0" } }, "node_modules/emoji-regex": { "version": "8.0.0", "dev": true, "license": "MIT" }, "node_modules/end-of-stream": { "version": "1.4.4", "dev": true, "license": "MIT", "dependencies": { "once": "^1.4.0" } }, "node_modules/enquirer": { "version": "2.4.1", "dev": true, "license": "MIT", "dependencies": { "ansi-colors": "^4.1.1", "strip-ansi": "^6.0.1" }, "engines": { "node": ">=8.6" } }, "node_modules/es-define-property": { "version": "1.0.0", "dev": true, "license": "MIT", "dependencies": { "get-intrinsic": "^1.2.4" }, "engines": { "node": ">= 0.4" } }, "node_modules/es-errors": { "version": "1.3.0", "dev": true, "license": "MIT", "engines": { "node": ">= 0.4" } }, "node_modules/escape-string-regexp": { "version": "1.0.5", "dev": true, "license": "MIT", "engines": { "node": ">=0.8.0" } }, "node_modules/eventemitter2": { "version": "6.4.7", "dev": true, "license": "MIT" }, "node_modules/execa": { "version": "4.1.0", "dev": true, "license": "MIT", "dependencies": { "cross-spawn": "^7.0.0", "get-stream": "^5.0.0", "human-signals": "^1.1.1", "is-stream": "^2.0.0", "merge-stream": "^2.0.0", "npm-run-path": "^4.0.0", "onetime": "^5.1.0", "signal-exit": "^3.0.2", "strip-final-newline": "^2.0.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, "node_modules/executable": { "version": "4.1.1", "dev": true, "license": "MIT", "dependencies": { "pify": "^2.2.0" }, "engines": { "node": ">=4" } }, "node_modules/extend": { "version": "3.0.2", "dev": true, "license": "MIT" }, "node_modules/extract-zip": { "version": "2.0.1", "dev": true, "license": "BSD-2-Clause", "dependencies": { "debug": "^4.1.1", "get-stream": "^5.1.0", "yauzl": "^2.10.0" }, "bin": { "extract-zip": "cli.js" }, "engines": { "node": ">= 10.17.0" }, "optionalDependencies": { "@types/yauzl": "^2.9.1" } }, "node_modules/extsprintf": { "version": "1.3.0", "dev": true, "engines": [ "node >=0.6.0" ], "license": "MIT" }, "node_modules/fd-slicer": { "version": "1.1.0", "dev": true, "license": "MIT", "dependencies": { "pend": "~1.2.0" } }, "node_modules/figures": { "version": "3.2.0", "dev": true, "license": "MIT", "dependencies": { "escape-string-regexp": "^1.0.5" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/forever-agent": { "version": "0.6.1", "dev": true, "license": "Apache-2.0", "engines": { "node": "*" } }, "node_modules/form-data": { "version": "2.3.3", "dev": true, "license": "MIT", "dependencies": { "asynckit": "^0.4.0", "combined-stream": "^1.0.6", "mime-types": "^2.1.12" }, "engines": { "node": ">= 0.12" } }, "node_modules/fs-extra": { "version": "9.1.0", "dev": true, "license": "MIT", "dependencies": { "at-least-node": "^1.0.0", "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", "universalify": "^2.0.0" }, "engines": { "node": ">=10" } }, "node_modules/function-bind": { "version": "1.1.2", "dev": true, "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/get-intrinsic": { "version": "1.2.4", "dev": true, "license": "MIT", "dependencies": { "es-errors": "^1.3.0", "function-bind": "^1.1.2", "has-proto": "^1.0.1", "has-symbols": "^1.0.3", "hasown": "^2.0.0" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/get-stream": { "version": "5.2.0", "dev": true, "license": "MIT", "dependencies": { "pump": "^3.0.0" }, "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/getos": { "version": "3.2.1", "dev": true, "license": "MIT", "dependencies": { "async": "^3.2.0" } }, "node_modules/getpass": { "version": "0.1.7", "dev": true, "license": "MIT", "dependencies": { "assert-plus": "^1.0.0" } }, "node_modules/global-dirs": { "version": "3.0.1", "dev": true, "license": "MIT", "dependencies": { "ini": "2.0.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/gopd": { "version": "1.0.1", "dev": true, "license": "MIT", "dependencies": { "get-intrinsic": "^1.1.3" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/graceful-fs": { "version": "4.2.11", "dev": true, "license": "ISC" }, "node_modules/has-flag": { "version": "4.0.0", "dev": true, "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/has-property-descriptors": { "version": "1.0.2", "dev": true, "license": "MIT", "dependencies": { "es-define-property": "^1.0.0" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/has-proto": { "version": "1.0.3", "dev": true, "license": "MIT", "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/has-symbols": { "version": "1.0.3", "dev": true, "license": "MIT", "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/hasown": { "version": "2.0.2", "dev": true, "license": "MIT", "dependencies": { "function-bind": "^1.1.2" }, "engines": { "node": ">= 0.4" } }, "node_modules/http-signature": { "version": "1.3.6", "dev": true, "license": "MIT", "dependencies": { "assert-plus": "^1.0.0", "jsprim": "^2.0.2", "sshpk": "^1.14.1" }, "engines": { "node": ">=0.10" } }, "node_modules/human-signals": { "version": "1.1.1", "dev": true, "license": "Apache-2.0", "engines": { "node": ">=8.12.0" } }, "node_modules/ieee754": { "version": "1.2.1", "dev": true, "funding": [ { "type": "github", "url": "https://github.com/sponsors/feross" }, { "type": "patreon", "url": "https://www.patreon.com/feross" }, { "type": "consulting", "url": "https://feross.org/support" } ], "license": "BSD-3-Clause" }, "node_modules/indent-string": { "version": "4.0.0", "dev": true, "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/ini": { "version": "2.0.0", "dev": true, "license": "ISC", "engines": { "node": ">=10" } }, "node_modules/is-ci": { "version": "3.0.1", "dev": true, "license": "MIT", "dependencies": { "ci-info": "^3.2.0" }, "bin": { "is-ci": "bin.js" } }, "node_modules/is-fullwidth-code-point": { "version": "3.0.0", "dev": true, "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/is-installed-globally": { "version": "0.4.0", "dev": true, "license": "MIT", "dependencies": { "global-dirs": "^3.0.0", "is-path-inside": "^3.0.2" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/is-path-inside": { "version": "3.0.3", "dev": true, "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/is-stream": { "version": "2.0.1", "dev": true, "license": "MIT", "engines": { "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/is-typedarray": { "version": "1.0.0", "dev": true, "license": "MIT" }, "node_modules/is-unicode-supported": { "version": "0.1.0", "dev": true, "license": "MIT", "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/isexe": { "version": "2.0.0", "dev": true, "license": "ISC" }, "node_modules/isstream": { "version": "0.1.2", "dev": true, "license": "MIT" }, "node_modules/jsbn": { "version": "0.1.1", "dev": true, "license": "MIT" }, "node_modules/json-schema": { "version": "0.4.0", "dev": true, "license": "(AFL-2.1 OR BSD-3-Clause)" }, "node_modules/json-stringify-safe": { "version": "5.0.1", "dev": true, "license": "ISC" }, "node_modules/jsonfile": { "version": "6.1.0", "dev": true, "license": "MIT", "dependencies": { "universalify": "^2.0.0" }, "optionalDependencies": { "graceful-fs": "^4.1.6" } }, "node_modules/jsprim": { "version": "2.0.2", "dev": true, "engines": [ "node >=0.6.0" ], "license": "MIT", "dependencies": { "assert-plus": "1.0.0", "extsprintf": "1.3.0", "json-schema": "0.4.0", "verror": "1.10.0" } }, "node_modules/lazy-ass": { "version": "1.6.0", "dev": true, "license": "MIT", "engines": { "node": "> 0.8" } }, "node_modules/listr2": { "version": "3.14.0", "dev": true, "license": "MIT", "dependencies": { "cli-truncate": "^2.1.0", "colorette": "^2.0.16", "log-update": "^4.0.0", "p-map": "^4.0.0", "rfdc": "^1.3.0", "rxjs": "^7.5.1", "through": "^2.3.8", "wrap-ansi": "^7.0.0" }, "engines": { "node": ">=10.0.0" }, "peerDependencies": { "enquirer": ">= 2.3.0 < 3" }, "peerDependenciesMeta": { "enquirer": { "optional": true } } }, "node_modules/lodash": { "version": "4.17.21", "dev": true, "license": "MIT" }, "node_modules/lodash.once": { "version": "4.1.1", "dev": true, "license": "MIT" }, "node_modules/log-symbols": { "version": "4.1.0", "dev": true, "license": "MIT", "dependencies": { "chalk": "^4.1.0", "is-unicode-supported": "^0.1.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/log-update": { "version": "4.0.0", "dev": true, "license": "MIT", "dependencies": { "ansi-escapes": "^4.3.0", "cli-cursor": "^3.1.0", "slice-ansi": "^4.0.0", "wrap-ansi": "^6.2.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/log-update/node_modules/slice-ansi": { "version": "4.0.0", "dev": true, "license": "MIT", "dependencies": { "ansi-styles": "^4.0.0", "astral-regex": "^2.0.0", "is-fullwidth-code-point": "^3.0.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/slice-ansi?sponsor=1" } }, "node_modules/log-update/node_modules/wrap-ansi": { "version": "6.2.0", "dev": true, "license": "MIT", "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" }, "engines": { "node": ">=8" } }, "node_modules/merge-stream": { "version": "2.0.0", "dev": true, "license": "MIT" }, "node_modules/mime-db": { "version": "1.52.0", "dev": true, "license": "MIT", "engines": { "node": ">= 0.6" } }, "node_modules/mime-types": { "version": "2.1.35", "dev": true, "license": "MIT", "dependencies": { "mime-db": "1.52.0" }, "engines": { "node": ">= 0.6" } }, "node_modules/mimic-fn": { "version": "2.1.0", "dev": true, "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/minimist": { "version": "1.2.8", "dev": true, "license": "MIT", "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/ms": { "version": "2.1.2", "dev": true, "license": "MIT" }, "node_modules/npm-run-path": { "version": "4.0.1", "dev": true, "license": "MIT", "dependencies": { "path-key": "^3.0.0" }, "engines": { "node": ">=8" } }, "node_modules/object-inspect": { "version": "1.13.2", "dev": true, "license": "MIT", "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/once": { "version": "1.4.0", "dev": true, "license": "ISC", "dependencies": { "wrappy": "1" } }, "node_modules/onetime": { "version": "5.1.2", "dev": true, "license": "MIT", "dependencies": { "mimic-fn": "^2.1.0" }, "engines": { "node": ">=6" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/ospath": { "version": "1.2.2", "dev": true, "license": "MIT" }, "node_modules/p-map": { "version": "4.0.0", "dev": true, "license": "MIT", "dependencies": { "aggregate-error": "^3.0.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/path-key": { "version": "3.1.1", "dev": true, "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/pend": { "version": "1.2.0", "dev": true, "license": "MIT" }, "node_modules/performance-now": { "version": "2.1.0", "dev": true, "license": "MIT" }, "node_modules/pify": { "version": "2.3.0", "dev": true, "license": "MIT", "engines": { "node": ">=0.10.0" } }, "node_modules/pretty-bytes": { "version": "5.6.0", "dev": true, "license": "MIT", "engines": { "node": ">=6" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/process": { "version": "0.11.10", "dev": true, "license": "MIT", "engines": { "node": ">= 0.6.0" } }, "node_modules/proxy-from-env": { "version": "1.0.0", "dev": true, "license": "MIT" }, "node_modules/psl": { "version": "1.9.0", "dev": true, "license": "MIT" }, "node_modules/pump": { "version": "3.0.0", "dev": true, "license": "MIT", "dependencies": { "end-of-stream": "^1.1.0", "once": "^1.3.1" } }, "node_modules/punycode": { "version": "2.3.1", "dev": true, "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/qs": { "version": "6.10.4", "dev": true, "license": "BSD-3-Clause", "dependencies": { "side-channel": "^1.0.4" }, "engines": { "node": ">=0.6" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/querystringify": { "version": "2.2.0", "dev": true, "license": "MIT" }, "node_modules/request-progress": { "version": "3.0.0", "dev": true, "license": "MIT", "dependencies": { "throttleit": "^1.0.0" } }, "node_modules/requires-port": { "version": "1.0.0", "dev": true, "license": "MIT" }, "node_modules/restore-cursor": { "version": "3.1.0", "dev": true, "license": "MIT", "dependencies": { "onetime": "^5.1.0", "signal-exit": "^3.0.2" }, "engines": { "node": ">=8" } }, "node_modules/rfdc": { "version": "1.4.1", "dev": true, "license": "MIT" }, "node_modules/rxjs": { "version": "7.8.1", "dev": true, "license": "Apache-2.0", "dependencies": { "tslib": "^2.1.0" } }, "node_modules/safe-buffer": { "version": "5.2.1", "dev": true, "funding": [ { "type": "github", "url": "https://github.com/sponsors/feross" }, { "type": "patreon", "url": "https://www.patreon.com/feross" }, { "type": "consulting", "url": "https://feross.org/support" } ], "license": "MIT" }, "node_modules/safer-buffer": { "version": "2.1.2", "dev": true, "license": "MIT" }, "node_modules/semver": { "version": "7.6.3", "dev": true, "license": "ISC", "bin": { "semver": "bin/semver.js" }, "engines": { "node": ">=10" } }, "node_modules/set-function-length": { "version": "1.2.2", "dev": true, "license": "MIT", "dependencies": { "define-data-property": "^1.1.4", "es-errors": "^1.3.0", "function-bind": "^1.1.2", "get-intrinsic": "^1.2.4", "gopd": "^1.0.1", "has-property-descriptors": "^1.0.2" }, "engines": { "node": ">= 0.4" } }, "node_modules/shebang-command": { "version": "2.0.0", "dev": true, "license": "MIT", "dependencies": { "shebang-regex": "^3.0.0" }, "engines": { "node": ">=8" } }, "node_modules/shebang-regex": { "version": "3.0.0", "dev": true, "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/side-channel": { "version": "1.0.6", "dev": true, "license": "MIT", "dependencies": { "call-bind": "^1.0.7", "es-errors": "^1.3.0", "get-intrinsic": "^1.2.4", "object-inspect": "^1.13.1" }, "engines": { "node": ">= 0.4" }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, "node_modules/signal-exit": { "version": "3.0.7", "dev": true, "license": "ISC" }, "node_modules/slice-ansi": { "version": "3.0.0", "dev": true, "license": "MIT", "dependencies": { "ansi-styles": "^4.0.0", "astral-regex": "^2.0.0", "is-fullwidth-code-point": "^3.0.0" }, "engines": { "node": ">=8" } }, "node_modules/sshpk": { "version": "1.18.0", "dev": true, "license": "MIT", "dependencies": { "asn1": "~0.2.3", "assert-plus": "^1.0.0", "bcrypt-pbkdf": "^1.0.0", "dashdash": "^1.12.0", "ecc-jsbn": "~0.1.1", "getpass": "^0.1.1", "jsbn": "~0.1.0", "safer-buffer": "^2.0.2", "tweetnacl": "~0.14.0" }, "bin": { "sshpk-conv": "bin/sshpk-conv", "sshpk-sign": "bin/sshpk-sign", "sshpk-verify": "bin/sshpk-verify" }, "engines": { "node": ">=0.10.0" } }, "node_modules/string-width": { "version": "4.2.3", "dev": true, "license": "MIT", "dependencies": { "emoji-regex": "^8.0.0", "is-fullwidth-code-point": "^3.0.0", "strip-ansi": "^6.0.1" }, "engines": { "node": ">=8" } }, "node_modules/strip-ansi": { "version": "6.0.1", "dev": true, "license": "MIT", "dependencies": { "ansi-regex": "^5.0.1" }, "engines": { "node": ">=8" } }, "node_modules/strip-final-newline": { "version": "2.0.0", "dev": true, "license": "MIT", "engines": { "node": ">=6" } }, "node_modules/supports-color": { "version": "8.1.1", "dev": true, "license": "MIT", "dependencies": { "has-flag": "^4.0.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/supports-color?sponsor=1" } }, "node_modules/throttleit": { "version": "1.0.1", "dev": true, "license": "MIT", "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/through": { "version": "2.3.8", "dev": true, "license": "MIT" }, "node_modules/tmp": { "version": "0.2.3", "dev": true, "license": "MIT", "engines": { "node": ">=14.14" } }, "node_modules/tough-cookie": { "version": "4.1.4", "dev": true, "license": "BSD-3-Clause", "dependencies": { "psl": "^1.1.33", "punycode": "^2.1.1", "universalify": "^0.2.0", "url-parse": "^1.5.3" }, "engines": { "node": ">=6" } }, "node_modules/tough-cookie/node_modules/universalify": { "version": "0.2.0", "dev": true, "license": "MIT", "engines": { "node": ">= 4.0.0" } }, "node_modules/tslib": { "version": "2.6.3", "dev": true, "license": "0BSD" }, "node_modules/tunnel-agent": { "version": "0.6.0", "dev": true, "license": "Apache-2.0", "dependencies": { "safe-buffer": "^5.0.1" }, "engines": { "node": "*" } }, "node_modules/tweetnacl": { "version": "0.14.5", "dev": true, "license": "Unlicense" }, "node_modules/type-fest": { "version": "0.21.3", "dev": true, "license": "(MIT OR CC0-1.0)", "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, "node_modules/typescript": { "version": "5.5.4", "dev": true, "license": "Apache-2.0", "bin": { "tsc": "bin/tsc", "tsserver": "bin/tsserver" }, "engines": { "node": ">=14.17" } }, "node_modules/undici-types": { "version": "6.13.0", "dev": true, "license": "MIT", "optional": true }, "node_modules/universalify": { "version": "2.0.1", "dev": true, "license": "MIT", "engines": { "node": ">= 10.0.0" } }, "node_modules/untildify": { "version": "4.0.0", "dev": true, "license": "MIT", "engines": { "node": ">=8" } }, "node_modules/url-parse": { "version": "1.5.10", "dev": true, "license": "MIT", "dependencies": { "querystringify": "^2.1.1", "requires-port": "^1.0.0" } }, "node_modules/uuid": { "version": "8.3.2", "dev": true, "license": "MIT", "bin": { "uuid": "dist/bin/uuid" } }, "node_modules/verror": { "version": "1.10.0", "dev": true, "engines": [ "node >=0.6.0" ], "license": "MIT", "dependencies": { "assert-plus": "^1.0.0", "core-util-is": "1.0.2", "extsprintf": "^1.2.0" } }, "node_modules/which": { "version": "2.0.2", "dev": true, "license": "ISC", "dependencies": { "isexe": "^2.0.0" }, "bin": { "node-which": "bin/node-which" }, "engines": { "node": ">= 8" } }, "node_modules/wrap-ansi": { "version": "7.0.0", "dev": true, "license": "MIT", "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", "strip-ansi": "^6.0.0" }, "engines": { "node": ">=10" }, "funding": { "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, "node_modules/wrappy": { "version": "1.0.2", "dev": true, "license": "ISC" }, "node_modules/yauzl": { "version": "2.10.0", "dev": true, "license": "MIT", "dependencies": { "buffer-crc32": "~0.2.3", "fd-slicer": "~1.1.0" } } } }
13,289
10,267
hyperswitch-web
cypress-tests/cypress/js-e2e-test-cases-to-refer/weChatPay-flow-e2e-test.cy.js
.js
// NOTE: this test is for we chat QR flow, please ensure we chat is enabled in stripe connector on dashboard describe("We Chat payment flow test", () => { let customerData; let paymentMethodsData; beforeEach(() => { cy.visit("http://localhost:9060"); cy.wrap( Cypress.automation("remote:debugger:protocol", { command: "Network.clearBrowserCache", }) ); cy.fixture("testCustomer").then((customer) => { customerData = customer; }); cy.fixture("paymentMethods").then((paymentMethods) => { paymentMethodsData = paymentMethods; }); }); it("page loaded successfully", () => { cy.visit("http://localhost:9060"); }); it("title rendered correctly", () => { cy.contains("Hyperswitch Unified Checkout").should("be.visible"); }); it("orca-payment-element iframe loaded", () => { cy.get( "#orca-payment-element-iframeRef-orca-elements-payment-element-payment-element" ) .should("be.visible") .its("0.contentDocument") .its("body"); }); it("WeChat pay payment flow successful", () => { let iframeSelector = "#orca-payment-element-iframeRef-orca-elements-payment-element-payment-element"; cy.frameLoaded(iframeSelector); cy.wait(2000); cy.iframe(iframeSelector) .find("[data-testid=paymentMethodsSelect]") .should("be.visible") .select(paymentMethodsData.weChatPay); cy.get("#submit").click(); cy.wait(4000); cy.iframe("#orca-fullscreen").contains("QR Code").should("be.visible"); cy.iframe("#orca-fullscreen").contains("TEST DATA").should("be.visible"); // cy.url().should("include", "sandbox.hyperswitch"); }); });
412
10,268
hyperswitch-web
cypress-tests/cypress/js-e2e-test-cases-to-refer/affirm-flow-e2e-test.cy.js
.js
import * as testIds from "../../src/Utilities/TestUtils.bs"; describe("affirm payment flow test", () => { let customerData; let paymentMethodsData; beforeEach(() => { cy.visit("http://localhost:9060"); cy.wrap( Cypress.automation("remote:debugger:protocol", { command: "Network.clearBrowserCache", }) ); cy.fixture("testCustomer").then((customer) => { customerData = customer; }); cy.fixture("paymentMethods").then((paymentMethods) => { paymentMethodsData = paymentMethods; }); }); it("page loaded successfully", () => { cy.visit("http://localhost:9060"); }); it("title rendered correctly", () => { cy.contains("Hyperswitch Unified Checkout").should("be.visible"); }); it("orca-payment-element iframe loaded", () => { cy.get( "#orca-payment-element-iframeRef-orca-elements-payment-element-payment-element" ) .should("be.visible") .its("0.contentDocument") .its("body"); }); it("affirm payment flow successful", () => { let iframeSelector = "#orca-payment-element-iframeRef-orca-elements-payment-element-payment-element"; cy.frameLoaded(iframeSelector); cy.wait(2000); cy.iframe(iframeSelector) .find(`[data-testid=${testIds.paymentMethodListTestId}]`) .should("be.visible") .contains(paymentMethodsData.affirm) .click(); cy.get("#submit").click(); cy.url().should("include", "sandbox.hyperswitch"); }); });
362
10,269
hyperswitch-web
cypress-tests/cypress/js-e2e-test-cases-to-refer/bluesnap-3DS-test.cy.js
.js
//pay_gpmsaQ9AIL3MH78HN7gJ_secret_xlVSaOqXCtqRy4QjUKpY const request = { currency: "USD", amount: 6500, authentication_type: "three_ds", description: "Joseph First Crypto", email: "hyperswitch_sdk_demo_id@gmail.com", connector_metadata: { noon: { order_category: "applepay", }, }, metadata: { udf1: "value1", new_customer: "true", login_date: "2019-09-10T10:11:12Z", }, // customer_id: "hyperswitch_sdk_demo_test_id", business_country: "US", business_label: "default", }; const stripeTestCard = "4000000000003220"; const adyenTestCard = "4917610000000000"; const bluesnapTestCard = "4000000000001091"; const confirmBody = { client_secret: "", return_url: "http://localhost:9060/completion", payment_method: "card", payment_method_data: { card: { card_number: "4000000000001091", card_exp_month: "01", card_exp_year: "28", card_holder_name: "", card_cvc: "424", card_issuer: "", card_network: "Visa", }, }, billing: { address: { state: "New York", city: "New York", country: "US", first_name: "John", last_name: "Doe", zip: "10001", line1: "123 Main Street Apt 4B", }, }, email: "hyperswitch_sdk_demo_id@gmail.com", browser_info: { user_agent: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36", accept_header: "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8", language: "en-US", color_depth: 30, screen_height: 1117, screen_width: 1728, time_zone: -330, java_enabled: true, java_script_enabled: true, }, }; let clientSecret; let publishableKey = "pk_snd_3b33cd9404234113804aa1accaabe22f"; describe("Card payment flow test", () => { // it("fethcing cl", () => { // cy.createPaymentIntent(); // }); // it("kaam chalu", () => { // const k = cy.getGlobalState("clientSecret"); // cy.log(k); // }); it("create-payment-intent-call-test", () => { cy.request({ method: "POST", url: "https://sandbox.hyperswitch.io/payments", headers: { "Content-Type": "application/json", Accept: "application/json", "api-key": "snd_c691ade6995743bd88c166ba509ff5da", }, body: JSON.stringify(request), }).then((response) => { expect(response.headers["content-type"]).to.include("application/json"); expect(response.body).to.have.property("client_secret"); clientSecret = response.body.client_secret; cy.log(clientSecret); cy.log(response); }); }); it("payment_methods-call-test", () => { cy.request({ method: "GET", url: `https://sandbox.hyperswitch.io/account/payment_methods?client_secret=${clientSecret}`, headers: { "Content-Type": "application/json", "api-key": publishableKey, }, body: JSON.stringify(request), }).then((response) => { expect(response.headers["content-type"]).to.include("application/json"); expect(response.body).to.have.property("redirect_url"); expect(response.body).to.have.property("payment_methods"); console.log("cl-------------->" + clientSecret); cy.log(response); }); }); it("confirm-call-test", () => { let paymentIntentID = clientSecret.split("_secret_")[0]; confirmBody["client_secret"] = clientSecret; console.log("paymentIntentID--------->" + paymentIntentID); cy.request({ method: "POST", url: `https://sandbox.hyperswitch.io/payments/${paymentIntentID}/confirm`, headers: { "Content-Type": "application/json", "api-key": publishableKey, }, body: confirmBody, }).then((response) => { expect(response.headers["content-type"]).to.include("application/json"); expect(response.body).to.have.property("next_action"); // expect(response.body).to.have.property("redirect_to_url"); // clientSecret = response.body.client_secret; const nextActionUrl = response.body.next_action.redirect_to_url; cy.log(nextActionUrl); cy.visit(nextActionUrl); }); }); });
1,228
10,270
hyperswitch-web
cypress-tests/cypress/js-e2e-test-cases-to-refer/saved-card-3DS-test.cy.js
.js
/* import * as testIds from "../../src/Utilities/TestUtils.bs"; describe("Card payment flow test", () => { let customerData; let publishableKey = "pk_snd_3b33cd9404234113804aa1accaabe22f"; beforeEach(() => { cy.visit("http://localhost:9060"); cy.hardReload(); cy.fixture("testCustomer").then((customer) => { customerData = customer; }); }); it("page loaded successfully", () => { cy.visit("http://localhost:9060"); }); it("title rendered correctly", () => { cy.contains("Hyperswitch Unified Checkout").should("be.visible"); }); it("orca-payment-element iframe loaded", () => { cy.get( "#orca-payment-element-iframeRef-orca-elements-payment-element-payment-element" ) .should("be.visible") .its("0.contentDocument") .its("body"); }); it("card payment flow successful", () => { let iframeSelector = "#orca-payment-element-iframeRef-orca-elements-payment-element-payment-element"; // cy.wait(1000); // cy.frameLoaded(iframeSelector); // cy.wait(1000); cy.visit("http://localhost:9060"); // cy.wait(1000); // cy.frameLoaded(iframeSelector); // cy.iframe(iframeSelector) // .find(`[data-testid=${testIds.addNewCardIcon}]`) // .should("be.visible") // .click(); cy.iframe(iframeSelector) .find(`[data-testid=card-1]`) .should("be.visible") .click(); // cy.wait(5000); const mapping = { [testIds.cardNoInputTestId]: customerData.cardNo, [testIds.expiryInputTestId]: customerData.cardExpiry, [testIds.cardCVVInputTestId]: customerData.cardCVV, [testIds.fullNameInputTestId]: customerData.cardHolderName, [testIds.cardHolderNameInputTestId]: customerData.cardHolderName, [testIds.emailInputTestId]: customerData.email, [testIds.addressLine1InputTestId]: customerData.address, [testIds.cityInputTestId]: customerData.city, [testIds.countryDropDownTestId]: customerData.country, [testIds.stateDropDownTestId]: customerData.state, [testIds.postalCodeInputTestId]: customerData.postalCode, }; let clientSecret; cy.request({ method: "GET", url: "http://localhost:5252/create-payment-intent", }).then((response) => { clientSecret = response.body.clientSecret; cy.request({ method: "GET", url: `https://sandbox.hyperswitch.io/account/payment_methods?client_secret=${clientSecret}`, headers: { "Content-Type": "application/json", "api-key": publishableKey, }, // Replace with your API endpoint }).then((response) => { // Check the response status console.warn(response.body.payment_methods); let paymentMethods = response.body.payment_methods; const foundElement = paymentMethods.find( (element) => element.payment_method === "card" ); const ele = foundElement.payment_method_types.find( (element) => element.payment_method_type === "debit" ); console.log(ele.required_fields); let requiredFieldsArr = ele.required_fields; let idArr = []; for (const key in requiredFieldsArr) { idArr.push(testIds.fieldTestIdMapping[key]); } let stringsToRemove = ["expiryInput", "cardNoInput", "email"]; idArr = idArr.filter((item) => !stringsToRemove.includes(item)); const countryIndex = idArr.indexOf("Country"); const stateIndex = idArr.indexOf("State"); // Move "State" after "Country" if ( countryIndex !== -1 && stateIndex !== -1 && stateIndex < countryIndex ) { idArr.splice(stateIndex, 1); idArr.splice(countryIndex, 0, "State"); } console.warn(idArr); expect(response.status).to.eq(200); idArr.forEach((ele) => { cy.iframe(iframeSelector) .find(`[data-testid=${ele}]`) .should("be.visible") .type(mapping[ele], { force: true }); if (ele === "Country" || ele === "State") { cy.iframe(iframeSelector) .find(`[data-testid=${ele}]`) .should("be.visible") .select(mapping[ele]); } }); }); }); cy.get("#submit").click(); // cy.url().should("include", "sandbox.hyperswitch"); cy.iframe(`#challengeFrame`) .find(`id=test-source-authorize-3ds`) .should("be.visible") .click(); cy.wait(20000); cy.contains("Thanks for your order!").should("be.visible"); }); }); */
1,127
10,271
hyperswitch-web
cypress-tests/cypress/js-e2e-test-cases-to-refer/api-call-test.cy.js
.js
const request = { currency: "USD", amount: 6500, authentication_type: "three_ds", description: "Joseph First Crypto", email: "hyperswitch_sdk_demo_id@gmail.com", connector_metadata: { noon: { order_category: "applepay", }, }, metadata: { udf1: "value1", new_customer: "true", login_date: "2019-09-10T10:11:12Z", }, // customer_id: "hyperswitch_sdk_demo_test_id", business_country: "US", business_label: "default", }; const stripeTestCard = "4000000000003220"; const adyenTestCard = "4917610000000000"; const bluesnapTestCard = "4000000000001091"; const confirmBody = { client_secret: "", return_url: "http://localhost:9060/completion", payment_method: "card", payment_method_data: { card: { card_number: "4000000000001091", card_exp_month: "01", card_exp_year: "28", card_holder_name: "", card_cvc: "424", card_issuer: "", card_network: "Visa", }, }, billing: { address: { state: "New York", city: "New York", country: "US", first_name: "John", last_name: "Doe", zip: "10001", line1: "123 Main Street Apt 4B", }, }, email: "hyperswitch_sdk_demo_id@gmail.com", browser_info: { user_agent: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36", accept_header: "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8", language: "en-US", color_depth: 30, screen_height: 1117, screen_width: 1728, time_zone: -330, java_enabled: true, java_script_enabled: true, }, }; let clientSecret; let publishableKey = "pk_snd_3b33cd9404234113804aa1accaabe22f"; describe("Card payment flow test", () => { // it("fethcing cl", () => { // cy.createPaymentIntent(); // }); // it("kaam chalu", () => { // const k = cy.getGlobalState("clientSecret"); // cy.log(k); // }); it("create-payment-intent-call-test", () => { cy.request({ method: "POST", url: "https://sandbox.hyperswitch.io/payments", headers: { "Content-Type": "application/json", Accept: "application/json", "api-key": "snd_c691ade6995743bd88c166ba509ff5da", }, body: JSON.stringify(request), }).then((response) => { expect(response.headers["content-type"]).to.include("application/json"); expect(response.body).to.have.property("client_secret"); clientSecret = response.body.client_secret; cy.log(clientSecret); cy.log(response); }); }); it("payment_methods-call-test", () => { cy.request({ method: "GET", url: `https://sandbox.hyperswitch.io/account/payment_methods?client_secret=${clientSecret}`, headers: { "Content-Type": "application/json", "api-key": publishableKey, }, body: JSON.stringify(request), }).then((response) => { expect(response.headers["content-type"]).to.include("application/json"); expect(response.body).to.have.property("redirect_url"); expect(response.body).to.have.property("payment_methods"); console.log("cl-------------->" + clientSecret); cy.log(response); }); }); it("confirm-call-test", () => { let paymentIntentID = clientSecret.split("_secret_")[0]; confirmBody["client_secret"] = clientSecret; console.log("paymentIntentID--------->" + paymentIntentID); cy.request({ method: "POST", url: `https://sandbox.hyperswitch.io/payments/${paymentIntentID}/confirm`, headers: { "Content-Type": "application/json", "api-key": publishableKey, }, body: confirmBody, }).then((response) => { expect(response.headers["content-type"]).to.include("application/json"); expect(response.body).to.have.property("next_action"); // expect(response.body).to.have.property("redirect_to_url"); // clientSecret = response.body.client_secret; const nextActionUrl = response.body.next_action.redirect_to_url; cy.log(nextActionUrl); cy.visit(nextActionUrl); }); }); });
1,193
10,272
hyperswitch-web
cypress-tests/cypress/js-e2e-test-cases-to-refer/stripe-3DS-test.cy.js
.js
//pay_gpmsaQ9AIL3MH78HN7gJ_secret_xlVSaOqXCtqRy4QjUKpY const request = { currency: "USD", amount: 6500, authentication_type: "three_ds", description: "Joseph First Crypto", email: "hyperswitch_sdk_demo_id@gmail.com", connector_metadata: { noon: { order_category: "applepay", }, }, metadata: { udf1: "value1", new_customer: "true", login_date: "2019-09-10T10:11:12Z", }, // customer_id: "hyperswitch_sdk_demo_test_id", business_country: "US", business_label: "default", }; const stripeTestCard = "4000000000003220"; const adyenTestCard = "4917610000000000"; const bluesnapTestCard = "4000000000001091"; const confirmBody = { client_secret: "", return_url: "http://localhost:9060/completion", payment_method: "card", payment_method_data: { card: { card_number: stripeTestCard, card_exp_month: "01", card_exp_year: "28", card_holder_name: "", card_cvc: "424", card_issuer: "", card_network: "Visa", }, }, billing: { address: { state: "New York", city: "New York", country: "US", first_name: "John", last_name: "Doe", zip: "10001", line1: "123 Main Street Apt 4B", }, }, email: "hyperswitch_sdk_demo_id@gmail.com", browser_info: { user_agent: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36", accept_header: "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8", language: "en-US", color_depth: 30, screen_height: 1117, screen_width: 1728, time_zone: -330, java_enabled: true, java_script_enabled: true, }, }; let clientSecret; describe("Card payment flow test", () => { it("create payment can be written like this", () => { cy.createPaymentIntent(); }); it("Why to do duplicate stuff?", () => { const k = cy.getGlobalState("clientSecret"); cy.log(k); }); it("create-payment-intent-call-test", () => { cy.request({ method: "POST", url: "https://sandbox.hyperswitch.io/payments", headers: { "Content-Type": "application/json", Accept: "application/json", "api-key": "snd_c691ade6995743bd88c166ba509ff5da", }, body: JSON.stringify(request), }).then((response) => { expect(response.headers["content-type"]).to.include("application/json"); expect(response.body).to.have.property("client_secret"); clientSecret = response.body.client_secret; cy.log(clientSecret); cy.log(response); }); }); it("payment_methods-call-test", () => { cy.request({ method: "GET", url: `https://sandbox.hyperswitch.io/account/payment_methods?client_secret=${clientSecret}`, headers: { "Content-Type": "application/json", "api-key": publishableKey, }, body: JSON.stringify(request), }).then((response) => { expect(response.headers["content-type"]).to.include("application/json"); expect(response.body).to.have.property("redirect_url"); expect(response.body).to.have.property("payment_methods"); console.log("cl-------------->" + clientSecret); cy.log(response); }); }); it("confirm-call-test", () => { let paymentIntentID = clientSecret.split("_secret_")[0]; confirmBody["client_secret"] = clientSecret; console.log("paymentIntentID--------->" + paymentIntentID); cy.request({ method: "POST", url: `https://sandbox.hyperswitch.io/payments/${paymentIntentID}/confirm`, headers: { "Content-Type": "application/json", "api-key": publishableKey, }, body: confirmBody, }).then((response) => { expect(response.headers["content-type"]).to.include("application/json"); expect(response.body).to.have.property("next_action"); // expect(response.body).to.have.property("redirect_to_url"); // clientSecret = response.body.client_secret; const nextActionUrl = response.body.next_action.redirect_to_url; cy.log(nextActionUrl); cy.visit(nextActionUrl); }); }); });
1,172
10,273
hyperswitch-web
cypress-tests/cypress/js-e2e-test-cases-to-refer/card-3DS-flow-e2e-test.cy.js
.js
import * as testIds from "../../src/Utilities/TestUtils.bs"; describe("Card payment flow test", () => { let customerData; let publishableKey = "pk_snd_3b33cd9404234113804aa1accaabe22f"; beforeEach(() => { cy.visit("http://localhost:9060"); cy.hardReload(); cy.fixture("testCustomer").then((customer) => { customerData = customer; }); }); it("page loaded successfully", () => { cy.visit("http://localhost:9060"); }); it("title rendered correctly", () => { cy.contains("Hyperswitch Unified Checkout").should("be.visible"); }); it("orca-payment-element iframe loaded", () => { cy.get( "#orca-payment-element-iframeRef-orca-elements-payment-element-payment-element" ) .should("be.visible") .its("0.contentDocument") .its("body"); }); it("card payment flow successful", () => { let iframeSelector = "#orca-payment-element-iframeRef-orca-elements-payment-element-payment-element"; // cy.wait(1000); // cy.frameLoaded(iframeSelector); // cy.wait(1000); cy.visit("http://localhost:9060"); cy.frameLoaded(iframeSelector); cy.wait(4000); cy.iframe(iframeSelector) .find(`[data-testid=${testIds.addNewCardIcon}]`) .should("be.visible") .click(); cy.testDynamicFields(customerData, ["email"], true); cy.get("#submit").click(); // it("orca-payment-element iframe loaded", () => { // cy.get( // "#__privateStripeFrame7904" // ) // .should("be.visible") // .its("0.contentDocument") // .its("body"); // }); // cy.contains("Thanks for your order!").should("be.visible"); }); });
456
10,274
hyperswitch-web
cypress-tests/cypress/js-e2e-test-cases-to-refer/saved-card-flow-e2e-test.cy.js
.js
describe("Card Payment Flow Test", () => { let customerData; const iframeSelector = "#orca-payment-element-iframeRef-orca-elements-payment-element-payment-element"; const thankYouMessage = "Thanks for your order!"; beforeEach(() => { cy.visit("http://localhost:9060"); cy.hardReload(); cy.fixture("testCustomer").then((customer) => { customerData = customer; }); }); it("should load the page successfully", () => { // Page load is validated by the presence of subsequent elements cy.url().should('eq', 'http://localhost:9060'); }); it("should render the title correctly", () => { cy.contains("Hyperswitch Unified Checkout").should("be.visible"); }); it("should load the Orca payment element iframe", () => { cy.get(iframeSelector) .should("be.visible") .then(iframe => { // Check iframe content document loaded cy.wrap(iframe.contents().find('body')).should('be.visible'); }); }); it("should complete card payment flow successfully", () => { cy.iframe(iframeSelector) .find(`[data-testid=${testIds.addNewCardIcon}]`) .should("be.visible") .click(); // Fill in the card details cy.testDynamicFields(customerData, ["expiryInput", "cardNoInput", "email"]); // Submit the payment form cy.get("#submit").click(); // Validate success message cy.contains(thankYouMessage).should("be.visible"); }); });
347
10,275
hyperswitch-web
cypress-tests/cypress/js-e2e-test-cases-to-refer/confirm_payload.json
.json
{ "client_secret": "pay_nTQ5NfqEVxwKC0GNPgE5_secret_00PSTueBCTVNWmJo3hG1", "return_url": "http://localhost:9060/completion", "payment_method": "card", "payment_method_data": { "card": { "card_number": "4000000000003220", "card_exp_month": "04", "card_exp_year": "2024", "card_holder_name": "", "card_cvc": "424", "card_issuer": "", "card_network": "Visa" } }, "billing": { "address": { "state": "New York", "city": "New York", "country": "US", "first_name": "John", "last_name": "Doe", "zip": "10001", "line1": "123 Main Street Apt 4B" } }, "email": "sa@gmail.com", "browser_info": { "user_agent": "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36", "accept_header": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8", "language": "en-US", "color_depth": 30, "screen_height": 1117, "screen_width": 1728, "time_zone": -330, "java_enabled": true, "java_script_enabled": true } }
419
10,276
hyperswitch-web
cypress-tests/cypress/js-e2e-test-cases-to-refer/alipay-flow-e2e-test.cy.js
.js
import * as testIds from "../../src/Utilities/TestUtils.bs"; describe("Ali Pay payment flow test", () => { let customerData; let paymentMethodsData; beforeEach(() => { // cy.visit("http://localhost:9060", { cache: false }); cy.visit("http://localhost:9060"); cy.wrap( Cypress.automation("remote:debugger:protocol", { command: "Network.clearBrowserCache", }) ); cy.fixture("testCustomer").then((customer) => { customerData = customer; }); cy.fixture("paymentMethods").then((paymentMethods) => { paymentMethodsData = paymentMethods; }); }); it("page loaded successfully", () => { cy.visit("http://localhost:9060"); }); it("title rendered correctly", () => { cy.contains("Hyperswitch Unified Checkout").should("be.visible"); }); it("orca-payment-element iframe loaded", () => { cy.get( "#orca-payment-element-iframeRef-orca-elements-payment-element-payment-element" ) .should("be.visible") .its("0.contentDocument") .its("body"); }); it("ali pay payment flow successful", () => { let iframeSelector = "#orca-payment-element-iframeRef-orca-elements-payment-element-payment-element"; cy.frameLoaded(iframeSelector); cy.wait(2000); cy.iframe(iframeSelector) .find(`[data-testid=${testIds.paymentMethodDropDownTestId}]`) .should("be.visible") .select(paymentMethodsData.aliPay); cy.get("#submit").click(); cy.url().should("include", "sandbox.hyperswitch"); }); });
376
10,277
hyperswitch-web
cypress-tests/cypress/js-e2e-test-cases-to-refer/xxx..cy.js
.js
const enterValueInIframeIfExsist = (selector, value) => { // cy.iframe(iframeSelector) // .find(selector) // .then(($input) => { // if ($input.length > 0) { // cy.wrap($input).type(value); // // You can continue with other actions or assertions here // } else { // cy.log( // `Element with selector ${selector} does not exist in the iframe` // ); // // You can choose to take additional actions or assertions here if needed // } // }); // // cy.iframe(iframeSelector).find(selector).should("be.visible").type(value); cy.iframe(iframeSelector).find(selector).should("be.visible").type(value); // cy.on("uncaught:exception", (err, runnable) => { // // expect(err.message).to.include("something about the error"); // cy.log("failed------------->"); // cy.get("#submit").click(); // done(); // return false; // }); cy.on("fail", (err, runnable) => { // expect(err.message).to.include("something about the error"); console.warn(`here-----?> ${err}`); cy.iframe(iframeSelector).find("#submit").click(); console.log("Sanskar"); return true; }); // cy.iframe(iframeSelector) // .find(selector) // .then(($input) => { // if ($input.length > 0) { // cy.log("11111"); // } else { // cy.log("22222"); // } // }); };
386
10,278
hyperswitch-web
cypress-tests/cypress/js-e2e-test-cases-to-refer/card-backup.cy.js
.js
/*import * as testIds from "../../src/Utilities/TestUtils.bs"; describe("Card payment flow test", () => { let customerData; let publishableKey = "pk_snd_3b33cd9404234113804aa1accaabe22f"; beforeEach(() => { cy.visit("http://localhost:9060"); cy.hardReload(); cy.fixture("testCustomer").then((customer) => { customerData = customer; }); }); it("page loaded successfully", () => { cy.visit("http://localhost:9060"); }); it("title rendered correctly", () => { cy.contains("Hyperswitch Unified Checkout").should("be.visible"); }); it("orca-payment-element iframe loaded", () => { cy.get( "#orca-payment-element-iframeRef-orca-elements-payment-element-payment-element" ) .should("be.visible") .its("0.contentDocument") .its("body"); }); it("card payment flow successful", () => { let iframeSelector = "#orca-payment-element-iframeRef-orca-elements-payment-element-payment-element"; // cy.wait(1000); // cy.frameLoaded(iframeSelector); // cy.wait(1000); cy.visit("http://localhost:9060"); // cy.wait(1000); // cy.frameLoaded(iframeSelector); cy.wait(5000); const myfunc = (id, customerData) => { switch (id) { case testIds.cardNoInputTestId: return customerData.cardNo; case testIds.expiryInputTestId: return customerData.cardExpiry; case testIds.cardCVVInputTestId: return customerData.cardCVV; case testIds.fullNameInputTestId: return customerData.cardHolderName; case testIds.emailInputTestId: return customerData.email; case testIds.addressLine1InputTestId: return customerData.address; case testIds.cityInputTestId: return customerData.city; case testIds.countryDropDownTestId: return customerData.country; case testIds.stateDropDownTestId: return customerData.state; case testIds.postalCodeInputTestId: return customerData.postalCode; } }; const mapping = { [testIds.cardNoInputTestId]: customerData.cardNo, [testIds.expiryInputTestId]: "424", [testIds.cardCVVInputTestId]: customerData.cardCVV, [testIds.fullNameInputTestId]: customerData.cardHolderName, [testIds.cardHolderNameInputTestId]: customerData.cardHolderName, [testIds.emailInputTestId]: customerData.email, [testIds.addressLine1InputTestId]: customerData.address, [testIds.cityInputTestId]: customerData.city, [testIds.countryDropDownTestId]: customerData.country, [testIds.stateDropDownTestId]: customerData.state, [testIds.postalCodeInputTestId]: customerData.postalCode, }; let clientSecret; cy.request({ method: "GET", url: "http://localhost:5252/create-payment-intent", }).then((response) => { clientSecret = response.body.clientSecret; cy.request({ method: "GET", url: `https://sandbox.hyperswitch.io/account/payment_methods?client_secret=${clientSecret}`, headers: { "Content-Type": "application/json", "api-key": publishableKey, }, // Replace with your API endpoint }).then((response) => { // Check the response status console.warn(response.body.payment_methods); let paymentMethods = response.body.payment_methods; const foundElement = paymentMethods.find( (element) => element.payment_method === "card" ); const ele = foundElement.payment_method_types.find( (element) => element.payment_method_type === "debit" ); console.log(ele.required_fields); let requiredFieldsArr = ele.required_fields; let idArr = []; for (const key in requiredFieldsArr) { idArr.push(testIds.fieldTestIdMapping[key]); } const countryIndex = idArr.indexOf("Country"); const stateIndex = idArr.indexOf("State"); // Move "State" after "Country" if ( countryIndex !== -1 && stateIndex !== -1 && stateIndex < countryIndex ) { idArr.splice(stateIndex, 1); idArr.splice(countryIndex, 0, "State"); } console.warn(idArr); expect(response.status).to.eq(200); idArr.forEach((ele) => { // cy.enterValueInIframe(ele, customerData.cardNo); cy.iframe(iframeSelector) .find(`[data-testid=${ele}]`) .should("be.visible") .type(mapping[ele]); if (ele === "Country" || ele === "State") { cy.iframe(iframeSelector) .find(`[data-testid=${ele}]`) .should("be.visible") .select(mapping[ele]); } }); }); }); // cy.enterValueInIframe(testIds.cardNoInputTestId, customerData.cardNo); // cy.enterValueInIframe(testIds.expiryInputTestId, customerData.cardExpiry); // cy.enterValueInIframe(testIds.cardCVVInputTestId, customerData.cardCVV); // cy.enterValueInIframe( // testIds.fullNameInputTestId, // customerData.cardHolderName // ); // cy.enterValueInIframe( // testIds.cardHolderNameInputTestId, // customerData.billingName // ); // cy.enterValueInIframe(testIds.emailInputTestId, customerData.email); // cy.enterValueInIframe( // testIds.addressLine1InputTestId, // customerData.address // ); // cy.enterValueInIframe(testIds.cityInputTestId, customerData.city); // cy.selectValueInIframe(testIds.countryDropDownTestId, customerData.country); // cy.selectValueInIframe(testIds.stateDropDownTestId, customerData.state); // cy.enterValueInIframe( // testIds.postalCodeInputTestId, // customerData.postalCode // ); cy.get("#submit").click(); cy.contains("Payment successful").should("be.visible"); }); }); */
1,404
10,279
hyperswitch-web
cypress-tests/cypress/js-e2e-test-cases-to-refer/klarna-flow-e2e-test.cy.js
.js
import * as testIds from "../../src/Utilities/TestUtils.bs"; describe("klarna payment flow test", () => { let customerData; let paymentMethodsData; beforeEach(() => { cy.visit("http://localhost:9060"); cy.wrap( Cypress.automation("remote:debugger:protocol", { command: "Network.clearBrowserCache", }) ); cy.fixture("testCustomer").then((customer) => { customerData = customer; }); cy.fixture("paymentMethods").then((paymentMethods) => { paymentMethodsData = paymentMethods; }); }); it("page loaded successfully", () => { cy.visit("http://localhost:9060"); }); it("title rendered correctly", () => { cy.contains("Hyperswitch Unified Checkout").should("be.visible"); }); it("orca-payment-element iframe loaded", () => { cy.get( "#orca-payment-element-iframeRef-orca-elements-payment-element-payment-element" ) .should("be.visible") .its("0.contentDocument") .its("body"); }); it("klarna payment flow successful", () => { let iframeSelector = "#orca-payment-element-iframeRef-orca-elements-payment-element-payment-element"; cy.reload(true); cy.frameLoaded(iframeSelector); cy.wait(2000); cy.iframe(iframeSelector) .find("[data-testid=paymentList]") .should("be.visible") .contains(paymentMethodsData.klarna) .click(); const enterValueInIframe = (selector, value) => { cy.iframe(iframeSelector).find(selector).should("be.visible").type(value); }; const selectValueInIframe = (selector, value) => { cy.iframe(iframeSelector) .find(selector) .should("be.visible") .select(value); }; enterValueInIframe( `[data-testid=${testIds.fullNameInputTestId}]`, customerData.cardHolderName ); // enterValueInIframe( // `[data-testid=${testIds.emailInputTestId}]`, // customerData.email // ); selectValueInIframe( `[data-testid=${testIds.countryDropDownTestId}]`, customerData.country ); cy.get("#submit").click(); cy.url().should("include", "sandbox.hyperswitch"); }); });
525
10,280
hyperswitch-web
cypress-tests/cypress/e2e/card-number-validation-test.cy.ts
.ts
import * as testIds from "../../../src/Utilities/TestUtils.bs"; import { getClientURL } from "../support/utils"; import { createPaymentBody } from "../support/utils"; import { changeObjectKeyValue } from "../support/utils"; import { stripeCards } from "cypress/support/cards"; describe("Card number validation test", () => { const publishableKey = Cypress.env('HYPERSWITCH_PUBLISHABLE_KEY') const secretKey = Cypress.env('HYPERSWITCH_SECRET_KEY') let getIframeBody: () => Cypress.Chainable<JQuery<HTMLBodyElement>>; let iframeSelector = "#orca-payment-element-iframeRef-orca-elements-payment-element-payment-element"; // changeObjectKeyValue(createPaymentBody,"profile_id","YOUR_PROFILE_ID") changeObjectKeyValue(createPaymentBody,"customer_id","new_user") beforeEach(() => { getIframeBody = () => cy.iframe(iframeSelector); cy.createPaymentIntent(secretKey, createPaymentBody).then(() => { cy.getGlobalState("clientSecret").then((clientSecret) => { cy.visit(getClientURL(clientSecret, publishableKey)); }); }) }); it("should fail with an undetectable card brand and invalid card number", () => { const { card_exp_month, card_exp_year, cvc } = stripeCards.successCard; getIframeBody().find(`[data-testid=${testIds.cardNoInputTestId}]`).type("111111"); getIframeBody().find(`[data-testid=${testIds.expiryInputTestId}]`).type(card_exp_month); getIframeBody().find(`[data-testid=${testIds.expiryInputTestId}]`).type(card_exp_year); getIframeBody().find(`[data-testid=${testIds.cardCVVInputTestId}]`).type(cvc); getIframeBody().get("#submit").click(); getIframeBody().find('.Error.pt-1').should('be.visible') .and('contain.text', "Please enter a valid card number."); getIframeBody().find(`[data-testid=${testIds.cardNoInputTestId}]`).click(); getIframeBody().find('.Error.pt-1').should('not.exist'); }); it("should fail with a detectable but invalid card number", () => { const { card_exp_month, card_exp_year, cvc } = stripeCards.successCard; getIframeBody().find(`[data-testid=${testIds.cardNoInputTestId}]`).type("424242"); getIframeBody().find(`[data-testid=${testIds.expiryInputTestId}]`).type(card_exp_month); getIframeBody().find(`[data-testid=${testIds.expiryInputTestId}]`).type(card_exp_year); getIframeBody().find(`[data-testid=${testIds.cardCVVInputTestId}]`).type(cvc); getIframeBody().get("#submit").click(); getIframeBody().find('.Error.pt-1').should('be.visible') .and('contain.text', "Card number is invalid."); getIframeBody().find(`[data-testid=${testIds.cardNoInputTestId}]`).click(); getIframeBody().find('.Error.pt-1').should('not.exist'); }); it("should fail with an unsupported card brand (RuPay)", () => { const { card_exp_month, card_exp_year, cvc } = stripeCards.successCard; getIframeBody().find(`[data-testid=${testIds.cardNoInputTestId}]`).type("6082015309577308"); getIframeBody().find(`[data-testid=${testIds.expiryInputTestId}]`).type(card_exp_month); getIframeBody().find(`[data-testid=${testIds.expiryInputTestId}]`).type(card_exp_year); getIframeBody().find(`[data-testid=${testIds.cardCVVInputTestId}]`).type(cvc); getIframeBody().get("#submit").click(); getIframeBody().find('.Error.pt-1').should('be.visible') .and('contain.text', "RuPay is not supported at the moment."); getIframeBody().find(`[data-testid=${testIds.cardNoInputTestId}]`).click(); getIframeBody().find('.Error.pt-1').should('not.exist'); }); it("should fail with an empty card number", () => { const { card_exp_month, card_exp_year, cvc } = stripeCards.successCard; getIframeBody().find(`[data-testid=${testIds.expiryInputTestId}]`).type(card_exp_month); getIframeBody().find(`[data-testid=${testIds.expiryInputTestId}]`).type(card_exp_year); getIframeBody().find(`[data-testid=${testIds.cardCVVInputTestId}]`).type(cvc); getIframeBody().get("#submit").click(); getIframeBody().find('.Error.pt-1').should('be.visible') .and('contain.text', "Card Number cannot be empty"); }); it("19 digit unionpay card", () => { const { cardNo, card_exp_month, card_exp_year, cvc } = stripeCards.unionPay19; getIframeBody().find(`[data-testid=${testIds.cardNoInputTestId}]`).type(cardNo); getIframeBody().find(`[data-testid=${testIds.expiryInputTestId}]`).type(card_exp_month); getIframeBody().find(`[data-testid=${testIds.expiryInputTestId}]`).type(card_exp_year); getIframeBody().find(`[data-testid=${testIds.cardCVVInputTestId}]`).type(cvc); cy.wait(2000); getIframeBody().get("#submit").click(); cy.contains("Thanks for your order!").should("be.visible"); }); it("16 digit master card", () => { const { cardNo, card_exp_month, card_exp_year, cvc } = stripeCards.masterCard16; getIframeBody().find(`[data-testid=${testIds.cardNoInputTestId}]`).type(cardNo); getIframeBody().find(`[data-testid=${testIds.expiryInputTestId}]`).type(card_exp_month); getIframeBody().find(`[data-testid=${testIds.expiryInputTestId}]`).type(card_exp_year); getIframeBody().find(`[data-testid=${testIds.cardCVVInputTestId}]`).type(cvc); getIframeBody().get("#submit").click(); cy.contains("Thanks for your order!").should("be.visible"); }); it("15 digit american express card", () => { const { cardNo, card_exp_month, card_exp_year, cvc } = stripeCards.amexCard15; getIframeBody().find(`[data-testid=${testIds.cardNoInputTestId}]`).type(cardNo); getIframeBody().find(`[data-testid=${testIds.expiryInputTestId}]`).type(card_exp_month); getIframeBody().find(`[data-testid=${testIds.expiryInputTestId}]`).type(card_exp_year); getIframeBody().find(`[data-testid=${testIds.cardCVVInputTestId}]`).type(cvc); getIframeBody().get("#submit").click(); cy.contains("Thanks for your order!").should("be.visible"); }); it("14 digit diners club card", () => { const { cardNo, card_exp_month, card_exp_year, cvc } = stripeCards.dinersClubCard14; getIframeBody().find(`[data-testid=${testIds.cardNoInputTestId}]`).type(cardNo); getIframeBody().find(`[data-testid=${testIds.expiryInputTestId}]`).type(card_exp_month); getIframeBody().find(`[data-testid=${testIds.expiryInputTestId}]`).type(card_exp_year); getIframeBody().find(`[data-testid=${testIds.cardCVVInputTestId}]`).type(cvc); getIframeBody().get("#submit").click(); cy.contains("Thanks for your order!").should("be.visible"); }); });
1,826
10,281
hyperswitch-web
cypress-tests/cypress/e2e/saved-card-flow-e2e-test.cy.ts
.ts
import * as testIds from "../../../src/Utilities/TestUtils.bs"; import { getClientURL } from "../support/utils"; import { createPaymentBody } from "../support/utils"; import { changeObjectKeyValue } from "../support/utils"; describe("Card payment flow test", () => { const publishableKey = Cypress.env('HYPERSWITCH_PUBLISHABLE_KEY') const secretKey = Cypress.env('HYPERSWITCH_SECRET_KEY') let getIframeBody: () => Cypress.Chainable<JQuery<HTMLBodyElement>>; let iframeSelector = "#orca-payment-element-iframeRef-orca-elements-payment-element-payment-element"; changeObjectKeyValue(createPaymentBody,"customer_id","hyperswitch_sdk_demo_id") beforeEach(() => { getIframeBody = () => cy.iframe(iframeSelector); cy.createPaymentIntent(secretKey, createPaymentBody).then(() => { cy.getGlobalState("clientSecret").then((clientSecret) => { cy.visit(getClientURL(clientSecret, publishableKey)); }); }) }); it("title rendered correctly", () => { cy.contains("Hyperswitch Unified Checkout").should("be.visible"); }); it("orca-payment-element iframe loaded", () => { cy.get( "#orca-payment-element-iframeRef-orca-elements-payment-element-payment-element" ) .should("be.visible") .its("0.contentDocument") .its("body"); }); it('should check if cards are saved', () => { // Visit the page where the test will be performed getIframeBody().find(`[data-testid=${testIds.addNewCardIcon}]`) .then($element => { if ($element.length > 0) { getIframeBody().find('[data-testid=cvvInput]').type('123'); getIframeBody().get("#submit").click(); cy.wait(2000); cy.contains("Thanks for your order!").should("be.visible"); } else { cy.log(' new card card flow'); } }); }); });
442
10,282
hyperswitch-web
cypress-tests/cypress/e2e/stripe-3DS-card-flow-e2e-test.cy.ts
.ts
import * as testIds from "../../../src/Utilities/TestUtils.bs"; import { getClientURL } from "../support/utils"; import { createPaymentBody } from "../support/utils"; import { changeObjectKeyValue } from "../support/utils"; import { stripeCards } from "cypress/support/cards"; describe("Card payment flow test", () => { const publishableKey = Cypress.env('HYPERSWITCH_PUBLISHABLE_KEY') const secretKey = Cypress.env('HYPERSWITCH_SECRET_KEY') let getIframeBody: () => Cypress.Chainable<JQuery<HTMLBodyElement>>; let iframeSelector = "#orca-payment-element-iframeRef-orca-elements-payment-element-payment-element"; changeObjectKeyValue(createPaymentBody,"authentication_type","three_ds") changeObjectKeyValue(createPaymentBody,"customer_id","new_user") beforeEach(() => { getIframeBody = () => cy.iframe(iframeSelector); cy.createPaymentIntent(secretKey, createPaymentBody).then(() => { cy.getGlobalState("clientSecret").then((clientSecret) => { cy.visit(getClientURL(clientSecret, publishableKey)); }); }) }); it("title rendered correctly", () => { cy.contains("Hyperswitch Unified Checkout").should("be.visible"); }); it("orca-payment-element iframe loaded", () => { cy.get(iframeSelector) .should("be.visible") .its("0.contentDocument") .its("body"); }); it("should complete the card payment successfully", () => { const{ cardNo,cvc, card_exp_month, card_exp_year}=stripeCards.threeDSCard getIframeBody().find('[data-testid=cardNoInput]').type(cardNo); getIframeBody().find('[data-testid=expiryInput]').type(card_exp_month); getIframeBody().find('[data-testid=expiryInput]').type(card_exp_year); getIframeBody().find('[data-testid=cvvInput]').type(cvc); getIframeBody().get("#submit").click().then(() => { cy.url().should('include', 'hooks.stripe.com/3d_secure_2'); }); }); });
469
10,283
hyperswitch-web
cypress-tests/cypress/e2e/stripe-manual-capture-card-flow-e2e-test.cy.ts
.ts
import * as testIds from "../../../src/Utilities/TestUtils.bs"; import { getClientURL } from "../support/utils"; import { createPaymentBody } from "../support/utils"; import { changeObjectKeyValue } from "../support/utils"; import { stripeCards } from "cypress/support/cards"; describe("Card payment flow test", () => { const publishableKey = Cypress.env('HYPERSWITCH_PUBLISHABLE_KEY') const secretKey = Cypress.env('HYPERSWITCH_SECRET_KEY') let getIframeBody: () => Cypress.Chainable<JQuery<HTMLBodyElement>>; let iframeSelector = "#orca-payment-element-iframeRef-orca-elements-payment-element-payment-element"; changeObjectKeyValue(createPaymentBody,"capture_method","manual") changeObjectKeyValue(createPaymentBody,"customer_id","new_user") beforeEach(() => { getIframeBody = () => cy.iframe(iframeSelector); cy.createPaymentIntent(secretKey, createPaymentBody).then(() => { cy.getGlobalState("clientSecret").then((clientSecret) => { cy.visit(getClientURL(clientSecret, publishableKey)); }); }) }); it("should complete the card payment successfully", () => { const { cardNo, card_exp_month, card_exp_year, cvc } = stripeCards.successCard; getIframeBody().find('[data-testid=cardNoInput]').type(cardNo); getIframeBody().find('[data-testid=expiryInput]').type(card_exp_month); getIframeBody().find('[data-testid=expiryInput]').type(card_exp_year); getIframeBody().find('[data-testid=cvvInput]').type(cvc); getIframeBody().get("#submit").click(); cy.wait(3000); cy.contains('Payment processing! Requires manual capture') .should('be.visible'); }); });
395
10,284
hyperswitch-web
cypress-tests/cypress/e2e/stripe-no-3DS-card-flow-e2e-test.cy.ts
.ts
import * as testIds from "../../../src/Utilities/TestUtils.bs"; import { getClientURL } from "../support/utils"; import { createPaymentBody } from "../support/utils"; import { changeObjectKeyValue } from "../support/utils"; import { stripeCards } from "cypress/support/cards"; describe("Card payment flow test", () => { const publishableKey = Cypress.env('HYPERSWITCH_PUBLISHABLE_KEY') const secretKey = Cypress.env('HYPERSWITCH_SECRET_KEY') let getIframeBody: () => Cypress.Chainable<JQuery<HTMLBodyElement>>; let iframeSelector = "#orca-payment-element-iframeRef-orca-elements-payment-element-payment-element"; // changeObjectKeyValue(createPaymentBody,"profile_id","YOUR_PROFILE_ID") changeObjectKeyValue(createPaymentBody,"customer_id","new_user") beforeEach(() => { getIframeBody = () => cy.iframe(iframeSelector); cy.createPaymentIntent(secretKey, createPaymentBody).then(() => { cy.getGlobalState("clientSecret").then((clientSecret) => { cy.visit(getClientURL(clientSecret, publishableKey)); }); }) }); it("should complete the card payment successfully", () => { const { cardNo, card_exp_month, card_exp_year, cvc } = stripeCards.successCard; getIframeBody().find('[data-testid=cardNoInput]').type(cardNo); getIframeBody().find('[data-testid=expiryInput]').type(card_exp_month); getIframeBody().find('[data-testid=expiryInput]').type(card_exp_year); getIframeBody().find('[data-testid=cvvInput]').type(cvc); getIframeBody().get("#submit").click(); cy.wait(3000); cy.contains("Thanks for your order!").should("be.visible"); }); it("should fail with an invalid card number", () => { const { cardNo, card_exp_month, card_exp_year, cvc } = stripeCards.invalidCard; getIframeBody().find('[data-testid=cardNoInput]').type(cardNo); getIframeBody().find('[data-testid=expiryInput]').type(card_exp_month); getIframeBody().find('[data-testid=expiryInput]').type(card_exp_year); getIframeBody().find('[data-testid=cvvInput]').type(cvc); getIframeBody().get("#submit").click(); cy.wait(3000); cy.contains("Please enter valid details").should("be.visible"); }); it("should show error for expired card year", () => { const { cardNo, card_exp_month, card_exp_year, cvc } = stripeCards.successCard; getIframeBody().find('[data-testid=cardNoInput]').type(cardNo); getIframeBody().find('[data-testid=expiryInput]').type(card_exp_month); getIframeBody().find('[data-testid=expiryInput]').type("10"); getIframeBody().find('[data-testid=cvvInput]').type(cvc); getIframeBody().get("#submit").click(); cy.wait(3000); getIframeBody().find('.Error.pt-1').should('be.visible') .and('contain.text', "Your card's expiration year is in the past."); }); it("should show error for incomplete card CVV", () => { const{ cardNo, card_exp_month , card_exp_year ,cvc}=stripeCards.successCard; getIframeBody().find('[data-testid=cardNoInput]').type(cardNo); getIframeBody().find('[data-testid=expiryInput]').type(card_exp_month); getIframeBody().find('[data-testid=expiryInput]').type(card_exp_year); getIframeBody().find('[data-testid=cvvInput]').type("1"); getIframeBody().get("#submit").click(); cy.wait(3000); getIframeBody().find('.Error.pt-1').should('be.visible') .and('contain.text', "Your card's security code is incomplete."); }); });
900
10,285
hyperswitch-web
cypress-tests/cypress/e2e/external-3DS-netcetera-e2e-test.cy.ts
.ts
import * as testIds from "../../../src/Utilities/TestUtils.bs"; import { getClientURL, netceteraChallengeTestCard, createPaymentBody, changeObjectKeyValue, connectorProfileIdMapping, connectorEnum } from "../support/utils"; describe("External 3DS using Netcetera Checks", () => { let getIframeBody: () => Cypress.Chainable<JQuery<HTMLBodyElement>>; const publishableKey = Cypress.env('HYPERSWITCH_PUBLISHABLE_KEY') const secretKey = Cypress.env('HYPERSWITCH_SECRET_KEY') changeObjectKeyValue(createPaymentBody, "profile_id", connectorProfileIdMapping.get(connectorEnum.NETCETERA)) changeObjectKeyValue(createPaymentBody, "request_external_three_ds_authentication", true) changeObjectKeyValue(createPaymentBody, "authentication_type", "three_ds") let iframeSelector = "#orca-payment-element-iframeRef-orca-elements-payment-element-payment-element"; beforeEach(() => { getIframeBody = () => cy.iframe(iframeSelector); cy.createPaymentIntent(secretKey, createPaymentBody).then(() => { cy.getGlobalState("clientSecret").then((clientSecret) => { cy.visit(getClientURL(clientSecret, publishableKey)); }); }) }); it("title rendered correctly", () => { cy.contains("Hyperswitch Unified Checkout").should("be.visible"); }); it("orca-payment-element iframe loaded", () => { cy.get( "#orca-payment-element-iframeRef-orca-elements-payment-element-payment-element" ) .should("be.visible") .its("0.contentDocument") .its("body"); }); it('If the user completes the challenge, the payment should be successful.', () => { cy.wait(2000) getIframeBody().find(`[data-testid=${testIds.addNewCardIcon}]`).click() getIframeBody().find(`[data-testid=${testIds.cardNoInputTestId}]`).type(netceteraChallengeTestCard) getIframeBody().find(`[data-testid=${testIds.expiryInputTestId}]`).type("0444") cy.wait(1000) getIframeBody().find(`[data-testid=${testIds.cardCVVInputTestId}]`).type("1234") getIframeBody().get("#submit").click(); cy.wait(4000) cy.nestedIFrame("#threeDsAuthFrame", ($body) => { cy.wrap($body).find('#otp') .type('1234') cy.wrap($body).find('#sendOtp') .click() cy.contains("Thanks for your order!").should("be.visible"); }) }) it('If the user closes the challenge, the payment should fail.', () => { cy.wait(2000) getIframeBody().find(`[data-testid=${testIds.addNewCardIcon}]`).click() getIframeBody().find(`[data-testid=${testIds.cardNoInputTestId}]`).type(netceteraChallengeTestCard) getIframeBody().find(`[data-testid=${testIds.expiryInputTestId}]`).type("0444") cy.wait(1000) getIframeBody().find(`[data-testid=${testIds.cardCVVInputTestId}]`).type("1234") getIframeBody().get("#submit").click(); cy.wait(4000) cy.nestedIFrame("#threeDsAuthFrame", ($body) => { cy.wrap($body) .find('#cancel') .click() cy.contains("Payment Failed!").should("be.visible"); }) }) })
802
10,286
hyperswitch-web
cypress-tests/cypress/e2e/cvc-checks-e2e-test.cy.ts
.ts
import * as testIds from "../../../src/Utilities/TestUtils.bs"; import { getClientURL, amexTestCard, visaTestCard, createPaymentBody } from "../support/utils"; describe("Card CVC Checks", () => { let getIframeBody: () => Cypress.Chainable<JQuery<HTMLBodyElement>>; const publishableKey = Cypress.env('HYPERSWITCH_PUBLISHABLE_KEY') const secretKey = Cypress.env('HYPERSWITCH_SECRET_KEY') let iframeSelector = "#orca-payment-element-iframeRef-orca-elements-payment-element-payment-element"; beforeEach(() => { getIframeBody = () => cy.iframe(iframeSelector); cy.createPaymentIntent(secretKey, createPaymentBody).then(() => { cy.getGlobalState("clientSecret").then((clientSecret) => { cy.visit(getClientURL(clientSecret, publishableKey)); }); }) }); it("title rendered correctly", () => { cy.contains("Hyperswitch Unified Checkout").should("be.visible"); }); it("orca-payment-element iframe loaded", () => { cy.get( "#orca-payment-element-iframeRef-orca-elements-payment-element-payment-element" ) .should("be.visible") .its("0.contentDocument") .its("body"); }); it('user can enter 4 digit cvc in card form', () => { cy.wait(2000) getIframeBody().find(`[data-testid=${testIds.addNewCardIcon}]`).click() getIframeBody().find(`[data-testid=${testIds.cardNoInputTestId}]`).type(amexTestCard) getIframeBody().find(`[data-testid=${testIds.expiryInputTestId}]`).type("0444") getIframeBody().find(`[data-testid=${testIds.cardCVVInputTestId}]`).type("1234").then(() => { getIframeBody().find(`[data-testid=${testIds.cardCVVInputTestId}]`).should('have.value', '1234'); }) }) it('removing cvc and expiry on card brand change or after clearing card number', () => { cy.wait(2000) getIframeBody().find(`[data-testid=${testIds.addNewCardIcon}]`).click() getIframeBody().find(`[data-testid=${testIds.cardNoInputTestId}]`).type(amexTestCard) getIframeBody().find(`[data-testid=${testIds.expiryInputTestId}]`).type("0444") getIframeBody().find(`[data-testid=${testIds.cardCVVInputTestId}]`).type("2412") getIframeBody().find(`[data-testid=${testIds.cardNoInputTestId}]`).clear() getIframeBody().find(`[data-testid=${testIds.cardCVVInputTestId}]`).should('have.value', ''); getIframeBody().find(`[data-testid=${testIds.expiryInputTestId}]`).should('have.value', ''); }) it('user can enter 3 digit cvc on saved payment methods screen', () => { getIframeBody().find(`[data-testid=${testIds.cardCVVInputTestId}]`).type('123').then(() => { getIframeBody().find(`[data-testid=${testIds.cardCVVInputTestId}]`).should('have.value', '123'); }) }) it('user can enter 3 digit cvc in card form', () => { cy.wait(2000) getIframeBody().find(`[data-testid=${testIds.addNewCardIcon}]`).click() getIframeBody().find(`[data-testid=${testIds.cardNoInputTestId}]`).type(visaTestCard) getIframeBody().find(`[data-testid=${testIds.expiryInputTestId}]`).type("0444") getIframeBody().find(`[data-testid=${testIds.cardCVVInputTestId}]`).type("123").then(() => { getIframeBody().find(`[data-testid=${testIds.cardCVVInputTestId}]`).should('have.value', '123'); }) }) it('user can enter 4 digit cvc on saved payment methods screen', () => { cy.wait(2000) getIframeBody() .contains('div', '4 digit cvc test card') .should('exist') .trigger('click') cy.wait(1000) getIframeBody().find(`[data-testid=${testIds.cardCVVInputTestId}]`).type("1234").then(() => { getIframeBody().find(`[data-testid=${testIds.cardCVVInputTestId}]`).should('have.value', '1234'); }) }) })
1,054
10,287
hyperswitch-web
cypress-tests/cypress/support/utils.ts
.ts
export const CLIENT_BASE_URL = "http://localhost:9060" export const getClientURL = (clientSecret, publishableKey) => { return `${CLIENT_BASE_URL}?isCypressTestMode=true&clientSecret=${clientSecret}&publishableKey=${publishableKey}`; } export const enum connectorEnum { TRUSTPAY, ADYEN, STRIPE, NETCETERA } export const connectorProfileIdMapping = new Map<connectorEnum, string>([ [connectorEnum.TRUSTPAY, "pro_eP323T9e4ApKpilWBfPA"], [connectorEnum.ADYEN, "pro_Kvqzu8WqBZsT1OjHlCj4"], [connectorEnum.STRIPE, "pro_5fVcCxU8MFTYozgtf0P8"], [connectorEnum.NETCETERA, "pro_h9VHXnJx8s6W4KSZfSUL"] ]); export const createPaymentBody = { currency: "USD", amount: 2999, order_details: [ { product_name: "Apple iPhone 15", quantity: 1, amount: 2999, }, ], confirm: false, capture_method: "automatic", authentication_type: "no_three_ds", customer_id: "hyperswitch_sdk_demo_id", email: "hyperswitch_sdk_demo_id@gmail.com", request_external_three_ds_authentication: false, description: "Hello this is description", shipping: { address: { line1: "1467", line2: "Harrison Street", line3: "Harrison Street", city: "San Fransico", state: "California", zip: "94122", country: "US", first_name: "joseph", last_name: "Doe", }, phone: { number: "8056594427", country_code: "+91", }, }, metadata: { udf1: "value1", new_customer: "true", login_date: "2019-09-10T10:11:12Z", }, profile_id: "pro_5fVcCxU8MFTYozgtf0P8", billing: { email: "hyperswitch_sdk_demo_id@gmail.com", address: { line1: "1467", line2: "Harrison Street", line3: "Harrison Street", city: "San Fransico", state: "California", zip: "94122", country: "US", first_name: "joseph", last_name: "Doe", }, phone: { number: "8056594427", country_code: "+91", }, }, } export const changeObjectKeyValue = (object: Record<string, any>, key: string, value: boolean | string) => { object[key] = value } export const confirmBody = { client_secret: "", return_url: "http://localhost:9060/completion", payment_method: "card", payment_method_data: { card: { card_number: "4000000000001091", card_exp_month: "01", card_exp_year: "28", card_holder_name: "", card_cvc: "424", card_issuer: "", card_network: "Visa", }, }, billing: { address: { state: "New York", city: "New York", country: "US", first_name: "John", last_name: "Doe", zip: "10001", line1: "123 Main Street Apt 4B", }, }, email: "hyperswitch_sdk_demo_id@gmail.com", browser_info: { user_agent: "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/120.0.0.0 Safari/537.36", accept_header: "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,*/*;q=0.8", language: "en-US", color_depth: 30, screen_height: 1117, screen_width: 1728, time_zone: -330, java_enabled: true, java_script_enabled: true, }, }; export const stripeTestCard = "4000000000003220"; export const adyenTestCard = "4917610000000000"; export const bluesnapTestCard = "4000000000001091"; export const amexTestCard = "378282246310005" export const visaTestCard = "4242424242424242"; export const netceteraChallengeTestCard = "348638267931507";
1,208
10,288
hyperswitch-web
cypress-tests/cypress/support/cards.ts
.ts
export type cardDetails = { cardNo: string, cardScheme: string, cvc: string, card_exp_month: string, card_exp_year: string, } type connectorCard = { successCard: cardDetails threeDSCard: cardDetails invalidCard: cardDetails } export const stripeCards = { successCard: { cardNo: "4242424242424242", cardScheme: "Visa", cvc: "123", card_exp_month:"12", card_exp_year:"30", }, invalidCard: { cardNo: "400000000000000", cardScheme: "Visa", cvc: "123", card_exp_month:"12", card_exp_year:"30", }, threeDSCard: { cardNo: "4000000000003220", cardScheme: "Visa", cvc: "123", card_exp_month:"13", card_exp_year:"30", }, unionPay19: { cardNo: "6205500000000000004", cardScheme: "UnionPay", cvc: "123", card_exp_month: "12", card_exp_year: "30", }, masterCard16: { cardNo: "5555555555554444", cardScheme: "MasterCard", cvc: "123", card_exp_month: "12", card_exp_year: "30", }, amexCard15: { cardNo: "378282246310005", cardScheme: "American Express", cvc: "1234", card_exp_month: "12", card_exp_year: "30", }, dinersClubCard14: { cardNo: "36227206271667", cardScheme: "Diners Club", cvc: "123", card_exp_month: "12", card_exp_year: "30", }, }
533
10,289
hyperswitch-web
cypress-tests/cypress/support/e2e.ts
.ts
// *********************************************************** // This example support/e2e.js is processed and // loaded automatically before your test files. // // This is a great place to put global configuration and // behavior that modifies Cypress. // // You can change the location of this file or turn off // automatically serving support files with the // 'supportFile' configuration option. // // You can read more here: // https://on.cypress.io/configuration // *********************************************************** // Import commands.js using ES2015 syntax: import "./commands"; // Alternatively you can use CommonJS syntax: // require('./commands')
122
10,290
hyperswitch-web
cypress-tests/cypress/support/commands.ts
.ts
// *********************************************** // This example commands.js shows you how to // create various custom commands and overwrite // existing commands. // // For more comprehensive examples of custom // commands please read more here: // https://on.cypress.io/custom-commands // *********************************************** // // // -- This is a parent command -- // Cypress.Commands.add('login', (email, password) => { ... }) // // // -- This is a child command -- // Cypress.Commands.add('drag', { prevSubject: 'element'}, (subject, options) => { ... }) // // // -- This is a dual command -- // Cypress.Commands.add('dismiss', { prevSubject: 'optional'}, (subject, options) => { ... }) // // // -- This will overwrite an existing command -- // Cypress.Commands.overwrite('visit', (originalFn, url, options) => { ... }) import "cypress-iframe"; import { createPaymentBody } from "./utils" import * as testIds from "../../../src/Utilities/TestUtils.bs"; // commands.js or your custom support file const iframeSelector = "#orca-payment-element-iframeRef-orca-elements-payment-element-payment-element"; let globalState = {}; Cypress.Commands.add("enterValueInIframe", (selector, value) => { cy.iframe(iframeSelector) .find(`[data-testid=${selector}]`) .should("be.visible") .type(value); }); Cypress.Commands.add("selectValueInIframe", (selector, value) => { cy.iframe(iframeSelector) .find(`[data-testid=${selector}]`) .should("be.visible") .select(value); }); Cypress.Commands.add("hardReload", () => { cy.wrap( Cypress.automation("remote:debugger:protocol", { command: "Network.clearBrowserCache", }) ); }); Cypress.Commands.add( "testDynamicFields", (customerData, testIdsToRemoveArr = [], isThreeDSEnabled = false, publishableKey) => { const mapping = { [testIds.cardNoInputTestId]: customerData.cardNo, [testIds.expiryInputTestId]: customerData.cardExpiry, [testIds.cardCVVInputTestId]: customerData.cardCVV, [testIds.fullNameInputTestId]: customerData.cardHolderName, [testIds.cardHolderNameInputTestId]: customerData.cardHolderName, [testIds.emailInputTestId]: customerData.email, [testIds.addressLine1InputTestId]: customerData.address, [testIds.cityInputTestId]: customerData.city, [testIds.countryDropDownTestId]: customerData.country, [testIds.stateDropDownTestId]: customerData.state, [testIds.postalCodeInputTestId]: customerData.postalCode, }; if (isThreeDSEnabled) { mapping[testIds.cardNoInputTestId] = customerData.threeDSCardNo; } let clientSecret: string; cy.request({ method: "GET", url: "http://localhost:5252/create-payment-intent", }).then((response: { body: { clientSecret: string } }) => { clientSecret = response.body.clientSecret; cy.request({ method: "GET", url: `https://sandbox.hyperswitch.io/account/payment_methods?client_secret=${clientSecret}`, headers: { "Content-Type": "application/json", "api-key": publishableKey, }, // Replace with your API endpoint }).then((response) => { // Check the response status console.warn(response.body.payment_methods); let paymentMethods = response.body.payment_methods; const foundElement = paymentMethods.find( (element) => element.payment_method === "card" ); const ele = foundElement.payment_method_types.find( (element) => element.payment_method_type === "debit" ); console.log(ele.required_fields); let requiredFieldsArr = ele.required_fields; let idArr = []; for (const key in requiredFieldsArr) { idArr.push(testIds.fieldTestIdMapping[key]); } const countryIndex = idArr.indexOf("Country"); const stateIndex = idArr.indexOf("State"); // Move "State" after "Country" if ( countryIndex !== -1 && stateIndex !== -1 && stateIndex < countryIndex ) { idArr.splice(stateIndex, 1); idArr.splice(countryIndex, 0, "State"); } console.warn(idArr); expect(response.status).to.eq(200); idArr = idArr.filter((item) => !testIdsToRemoveArr.includes(item)); idArr.forEach((ele) => { cy.iframe(iframeSelector) .find(`[data-testid=${ele}]`) .should("be.visible") .type(mapping[ele], { force: true }); if (ele === "Country" || ele === "State") { cy.iframe(iframeSelector) .find(`[data-testid=${ele}]`) .should("be.visible") .select(mapping[ele]); } }); }); }); } ); Cypress.Commands.add("createPaymentIntent", (secretKey: string, createPaymentBody: any) => { return cy .request({ method: "POST", url: "https://sandbox.hyperswitch.io/payments", headers: { "Content-Type": "application/json", Accept: "application/json", "api-key": secretKey, }, body: JSON.stringify(createPaymentBody), }) .then((response) => { expect(response.headers["content-type"]).to.include("application/json"); expect(response.body).to.have.property("client_secret"); const clientSecret = response.body.client_secret; cy.log(clientSecret); cy.log(response.toString()); globalState["clientSecret"] = clientSecret; }); }); Cypress.Commands.add("getGlobalState", (key: any) => { return globalState[key]; }); Cypress.Commands.add("nestedIFrame", (selector, callback) => { cy.iframe("#orca-fullscreen").find(selector).should("exist").should("be.visible").then(($ele) => { const $body = $ele.contents().find('body') callback($body); }) });
1,345
10,291
hyperswitch-web
cypress-tests/cypress/support/types.ts
.ts
export { }; // indicate that file is a module export type CustomerData = { cardNo: string cardExpiry: string cardCVV: string cardHolderName: string email: string address: string city: string country: string state: string postalCode: string threeDSCardNo: string } declare global { namespace Cypress { interface Chainable { enterValueInIframe(selector: string, value: string): Chainable<JQuery<HTMLElement>> selectValueInIframe(selector: string, value: string): Chainable<JQuery<HTMLElement>> hardReload(): Chainable<JQuery<HTMLElement>> testDynamicFields( customerData: CustomerData, testIdsToRemoveArr: string[], isThreeDSEnabled: boolean, publishableKey: string ): Chainable<JQuery<HTMLElement>> createPaymentIntent(secretKey: string, createPaymentBody: Record<string, any>): Chainable<Response<any>> getGlobalState(key: string): Chainable<Response<any>> nestedIFrame(selector: string, callback: (body: Chainable<JQuery<HTMLElement>>) => void): Chainable<void>; } } }
262
10,292
hyperswitch-web
cypress-tests/cypress/fixtures/paymentMethods.json
.json
{ "card":"Card", "klarna":"Klarna", "affirm":"Affirm", "aliPay":"Ali Pay", "weChatPay":"WeChat" }
44
10,293
hyperswitch-web
cypress-tests/cypress/fixtures/testCustomer.json
.json
{ "cardNo": "4242 4242 4242 4242", "threeDSCardNo": "4000000000003220", "cardExpiry": "04/24", "cardCVV": "424", "billingName": "John Doe", "cardHolderName": "John Doe", "email": "arun@gmail.com", "address": "123 Main Street Apt 4B", "city": "New York", "country": "United States", "state": "New York", "postalCode": "10001", "paymentSuccessfulText": "Payment successful" }
168
10,294
hyperswitch-web
public/fullscreenIndexTemplate.html
.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <!-- <link rel="icon" href="/orca/elements/favicon.ico" /> --> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=5, user-scalable=yes" /> <meta name="theme-color" content="#000000" /> <!-- <link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;600;700;800&display=swap" rel="stylesheet" /> <link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Qwitcher+Grypen:wght@400;700&display=swap" rel="stylesheet" /> --> <link href="<%= publicPath%>/app.css" rel="stylesheet" /> <!-- <link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" /> --> <!-- manifest.json provides metadata used when your web app is installed on a user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/ --> <link rel="manifest" href="%PUBLIC_URL%/manifest.json" /> <!-- Notice the use of %PUBLIC_URL% in the tags above. It will be replaced with the URL of the `public` folder during the build. Only files inside the `public` folder can be referenced from the HTML. Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will work correctly both with client-side routing and a non-root public URL. Learn how to configure a non-root public URL by running `npm run build`. --> <title>Hyperswitch</title> </head> <body> <noscript>You need to enable JavaScript to run this app.</noscript> <div id="app"></div> <script src="<%= publicPath%>/app.js"></script> <!-- This HTML file is a template. If you open it directly in the browser, you will see an empty page. You can add webfonts, meta tags, or analytics to this file. The build step will place the bundled scripts into the <body> tag. To begin the development, run `npm start` or `yarn start`. To create a production bundle, use `npm run build` or `yarn build`. --> </body> </html>
580
10,295
hyperswitch-web
public/build.html
.html
<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8" /> <!-- <link rel="icon" href="/orca/elements/favicon.ico" /> --> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=5, user-scalable=yes" /> <meta name="theme-color" content="#000000" /> <link href="https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:wght@400;600;700;800&display=swap" rel="stylesheet" /> <link href="https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&family=Qwitcher+Grypen:wght@400;700&display=swap" rel="stylesheet" /> <link href="<%= publicPath%>/app.css" rel="stylesheet" /> <!-- <link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" /> --> <!-- manifest.json provides metadata used when your web app is installed on a user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/ --> <!-- <link rel="manifest" href="%PUBLIC_URL%/manifest.json" /> --> <!-- Notice the use of %PUBLIC_URL% in the tags above. It will be replaced with the URL of the `public` folder during the build. Only files inside the `public` folder can be referenced from the HTML. Unlike "/favicon.ico" or "favicon.ico", "%PUBLIC_URL%/favicon.ico" will work correctly both with client-side routing and a non-root public URL. Learn how to configure a non-root public URL by running `npm run build`. --> <title>Hyperswitch</title> <script id="braintree-checkout" src="https://js.braintreegateway.com/web/3.88.4/js/paypal-checkout.min.js" defer="defer" integrity="sha384-br3+jeRHrfWTL4E/2zND0Na4xW1F7XK+/5zXnmqvVt1Av5dB8gm7liox7hdUNdT0" crossorigin="anonymous" ></script> <script id="braintree-client" src="https://js.braintreegateway.com/web/3.88.4/js/client.min.js" defer="defer" integrity="sha384-J3DO+DkN81i36SLGc0y7/uCQxcamo8n6yvf22eqih0LVaPwkSgmEKHT5epRi+guK" crossorigin="anonymous" ></script> </head> <body> <noscript>You need to enable JavaScript to run this app.</noscript> <img referrerpolicy="no-referrer-when-downgrade" src="https://static.scarf.sh/a.png?x-pxid=7cdc8831-68f6-49d8-b7f8-cede711681b2" /> <div id="app"></div> <script src="<%= publicPath%>/app.js"></script> <!-- This HTML file is a template. If you open it directly in the browser, you will see an empty page. You can add webfonts, meta tags, or analytics to this file. The build step will place the bundled scripts into the <body> tag. To begin the development, run `npm start` or `yarn start`. To create a production bundle, use `npm run build` or `yarn build`. --> </body> </html>
861
10,296
hyperswitch-web
aws/hyperswitch_web_aws_cleanup_setup.sh
.sh
#!/bin/bash command_discovery() { type $1 > /dev/null 2> /dev/null if [[ $? != 0 ]]; then echo "\`$1\` command not found" exit 1 fi } yes_or_no() { read response < /dev/tty case $response in [Yy]* ) return 0 ;; [Nn]* ) return 1 ;; * ) return 1 ;; esac } command_discovery aws command_discovery jq echo -n "Please enter the AWS region (us-east-2): " read REGION < /dev/tty if [ -z "$REGION" ]; then echo "Using default region: us-east-2" REGION="us-east-2" fi export ALL_KEY_PAIRS=($(aws ec2 describe-key-pairs \ --filters "Name=tag:ManagedBy,Values=hyperswitch-web" \ --region $REGION \ --query 'KeyPairs[*].KeyPairId' --output text)) echo -n "Deleting ( $ALL_KEY_PAIRS ) key pairs? (Y/n)?" if yes_or_no; then for KEY_ID in $ALL_KEY_PAIRS; do echo `aws ec2 delete-key-pair --key-pair-id $KEY_ID --region $REGION` done fi export ALL_INSTANCES=$(aws ec2 describe-instances \ --filters 'Name=tag:ManagedBy,Values=hyperswitch-web' 'Name=instance-state-name,Values=running' \ --region $REGION \ --query 'Reservations[*].Instances[*].InstanceId' --output text) export ALL_EBS=$(aws ec2 describe-instances \ --filters 'Name=tag:ManagedBy,Values=hyperswitch-web' \ --region $REGION \ --query 'Reservations[*].Instances[*].BlockDeviceMappings[*].Ebs.VolumeId' \ --output text) echo -n "Terminating ( $ALL_INSTANCES ) instances? (Y/n)?" if yes_or_no; then for INSTANCE_ID in $ALL_INSTANCES; do echo `aws ec2 terminate-instances --instance-ids $INSTANCE_ID --region $REGION` done fi export ALL_SECURITY_GROUPS=$(aws ec2 describe-security-groups \ --filters 'Name=tag:ManagedBy,Values=hyperswitch-web' \ --region $REGION \ --query 'SecurityGroups[*].GroupId' --output json | jq .[] --raw-output) echo -n "Deleting ( $ALL_SECURITY_GROUPS ) security groups? (Y/n)?" if yes_or_no; then export do_it=true while $do_it; do export do_it=false for GROUP_ID in $ALL_SECURITY_GROUPS; do aws ec2 delete-security-group --group-id $GROUP_ID --region $REGION if [[ $? != 0 ]]; then export do_it=true fi done if $do_it; then echo -n "Retry deleting the security group (Y/n)? " if yes_or_no; then export do_it=true else export do_it=false fi fi done fi
694
10,299
hyperswitch-web
aws/hyperswitch_web_aws_setup.sh
.sh
#!/bin/bash command_discovery() { type $1 > /dev/null 2> /dev/null if [[ $? != 0 ]]; then echo "\`$1\` command not found" exit 1 fi } command_discovery curl command_discovery aws echo "Please enter the URL where you have hosted Hyperswitch Backend (https://beta.hyperswitch.io/api) " read HYPERSWITCH_SERVER_URL < /dev/tty if [ -z "$HYPERSWITCH_SERVER_URL" ]; then echo "Using default api url: https://beta.hyperswitch.io/api" HYPERSWITCH_SERVER_URL="https://beta.hyperswitch.io/api" fi # echo "Please enter the api url (https://beta.hyperswitch.io/api) " # read apiBaseUrl < /dev/tty # if [ -z "$apiBaseUrl" ]; then # echo "Using default api url: https://beta.hyperswitch.io/api" # apiBaseUrl="https://beta.hyperswitch.io/api" # fi echo "Please enter the URL where you have hosted Hyperswitch Client SDK (https://beta.hyperswitch.io/v1) " read HYPERSWITCH_CLIENT_URL < /dev/tty if [ -z "$HYPERSWITCH_CLIENT_URL" ]; then echo "Using default api url: https://beta.hyperswitch.io/v1" HYPERSWITCH_CLIENT_URL="https://beta.hyperswitch.io/v1" fi echo "Please enter the Publishable Key for your account (pk_*************). Can be found in Hyperswitch Control Center.(https://app.hyperswitch.io) " read PUBLISHABLE_KEY < /dev/tty if [ -z "$PUBLISHABLE_KEY" ]; then echo "Cannot proceed without a Publishable Key, please create a merchant account to generate a Publishable Key via Hyperswitch API or Control Center" exit 1 fi echo "Please enter the Secret Key for your account (snd_*************). Can be found in Hyperswitch Control Center.(https://app.hyperswitch.io) " read SECRET_KEY < /dev/tty if [ -z "$SECRET_KEY" ]; then echo "Cannot proceed without a Secret Key, please create a merchant account to generate a Secret Key via Hyperswitch API or Control Center" exit 1 fi echo "Please enter the AWS region (us-east-2): " read REGION < /dev/tty if [ -z "$REGION" ]; then echo "Using default region: us-east-2" REGION="us-east-2" fi ############# APPLICATION ################## # CREATE SECURITY GROUP FOR APPLICATION echo "Creating Security Group for Application..." export EC2_SG="application-sg" echo `(aws ec2 create-security-group \ --region $REGION \ --group-name $EC2_SG \ --description "Security Group for Hyperswitch EC2 instance" \ --tag-specifications "ResourceType=security-group,Tags=[{Key=ManagedBy,Value=hyperswitch-web}]" \ )` export APP_SG_ID=$(aws ec2 describe-security-groups --group-names $EC2_SG --region $REGION --output text --query 'SecurityGroups[0].GroupId') echo "Security Group for Application CREATED.\n" echo "Creating Security Group ingress for port 80..." echo `aws ec2 authorize-security-group-ingress \ --group-id $APP_SG_ID \ --protocol tcp \ --port 80 \ --cidr 0.0.0.0/0 \ --region $REGION` echo "Security Group ingress for port 80 CREATED.\n" echo "Creating Security Group ingress for port 22..." echo `aws ec2 authorize-security-group-ingress \ --group-id $APP_SG_ID \ --protocol tcp \ --port 22 \ --cidr 0.0.0.0/0 \ --region $REGION` echo "Security Group ingress for port 22 CREATED.\n" cat << EOF > user_data.sh #!/bin/bash sudo yum update -y sudo amazon-linux-extras install docker sudo service docker start sudo usermod -a -G docker ec2-user docker pull juspaydotin/hyperswitch-web:v1.0.0 docker run -p 80:5252 -e HYPERSWITCH_SERVER_URL=${HYPERSWITCH_SERVER_URL} -e SELF_SERVER_URL=http://localhost:9000/ -e HYPERSWITCH_CLIENT_URL=${HYPERSWITCH_CLIENT_URL} -e HYPERSWITCH_PUBLISHABLE_KEY=${PUBLISHABLE_KEY} -e HYPERSWITCH_SECRET_KEY=${SECRET_KEY} juspaydotin/hyperswitch-web:v1.0.0 EOF # echo "docker run -p 80:9000 -e apiBaseUrl=${apiBaseUrl} -e sdkBaseUrl=${sdkBaseUrl} juspaydotin/hyperswitch-control-center:v1.0.0" >> user_data.sh export AWS_AMI_ID=$(aws ec2 describe-images --owners amazon --filters "Name=name,Values=amzn2-ami-hvm-2.0.*" --query 'sort_by(Images, &CreationDate)[-1].ImageId' --output text --region $REGION) echo "AWS AMI ID retrieved.\n" echo "Creating EC2 Keypair..." rm -rf hyperswitch-keypair.pem aws ec2 create-key-pair \ --key-name hyperswitch-ec2-keypair \ --query 'KeyMaterial' \ --tag-specifications "ResourceType=key-pair,Tags=[{Key=ManagedBy,Value=hyperswitch-web}]" \ --region $REGION \ --output text > hyperswitch-keypair.pem echo "Keypair created and saved to hyperswitch-keypair.pem.\n" chmod 400 hyperswitch-keypair.pem echo "Launching EC2 Instance..." export HYPERSWITCH_INSTANCE_ID=$(aws ec2 run-instances \ --image-id $AWS_AMI_ID \ --instance-type t3.medium \ --key-name hyperswitch-ec2-keypair \ --monitoring "Enabled=false" \ --security-group-ids $APP_SG_ID \ --user-data file://./user_data.sh \ --query 'Instances[0].InstanceId' \ --output text \ --region $REGION) echo "EC2 instance launched.\n" echo "Add Tags to EC2 instance..." echo `aws ec2 create-tags \ --resources $HYPERSWITCH_INSTANCE_ID \ --tags "Key=Name,Value=hyperswitch-web" \ --region $REGION` echo "Tag added to EC2 instance.\n" echo `aws ec2 create-tags \ --resources $HYPERSWITCH_INSTANCE_ID \ --tags "Key=ManagedBy,Value=hyperswitch-web" \ --region $REGION` echo "ManagedBy tag added to EC2 instance.\n" echo "Retrieving the Public IP of Hyperswitch EC2 Instance..." export PUBLIC_HYPERSWITCH_IP=$(aws ec2 describe-instances \ --instance-ids $HYPERSWITCH_INSTANCE_ID \ --query "Reservations[*].Instances[*].PublicIpAddress" \ --output=text \ --region $REGION) echo "Hurray! You can try using Hyperswitch Web Client at http://$PUBLIC_HYPERSWITCH_IP"
1,608
10,300
hyperswitch-web
aws/hyperswitch_web_aws_production_deployment.sh
.sh
#!/bin/bash command_discovery() { type $1 >/dev/null 2>/dev/null if [[ $? != 0 ]]; then echo "\`$1\` command not found" exit 1 fi } command_discovery curl command_discovery aws echo "Installing Node Modules" echo $( (npm install --force)) echo $( (npm run re:build)) echo "Starting AWS S3 Configurations" echo "Please enter your AWS Region" read AWS_REGION </dev/tty if [ -z "$AWS_REGION" ]; then echo "Using us-east-2 by default" AWS_REGION="us-east-2" fi echo "Do you wish to create a new bucket on AWS S3? Ensure you have CreateBucket access on AWS (Y/N)" read CREATE_BUCKET_BOOL </dev/tty if [[ "$CREATE_BUCKET_BOOL" == "Y" ]] || [[ "$CREATE_BUCKET_BOOL" == "y" ]]; then echo "Creating a bucket on AWS" echo "Please enter a name for your bucket:" read MY_AWS_S3_BUCKET_NAME </dev/tty echo "Creating Bucket on AWS S3" export AWS_BUCKET_LOCATION=$( aws s3api create-bucket \ --region $AWS_REGION \ --bucket $MY_AWS_S3_BUCKET_NAME \ --query 'Location' \ --output text \ --create-bucket-configuration LocationConstraint=$AWS_REGION ) echo "Bucket created at the location: $AWS_BUCKET_LOCATION" fi echo "Building the distributable bundle for the application" if [ -z "$AWS_BUCKET_LOCATION" ]; then echo "Enter the AWS S3 bucket location where you wish to store the Hyperswitch Client (my-bucket.s3.us-east-2.amazonaws.com)" read AWS_BUCKET_LOCATION </dev/tty fi echo "Setting bucket as public" echo $( ( aws s3api put-public-access-block \ --bucket $MY_AWS_S3_BUCKET_NAME \ --public-access-block-configuration "BlockPublicAcls=false,IgnorePublicAcls=false,BlockPublicPolicy=false,RestrictPublicBuckets=false" )) echo "Adding bucket policy to make it public" AWS_BUCKET_POLICY='{ "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Principal": "*", "Action": "s3:GetObject", "Resource": "arn:aws:s3:::'$MY_AWS_S3_BUCKET_NAME'/*" } ] }' echo "Displaying the policy to be added $AWS_BUCKET_POLICY" echo $( (aws s3api put-bucket-policy --bucket $MY_AWS_S3_BUCKET_NAME --policy "$AWS_BUCKET_POLICY")) echo "Bucket configuration updated" echo "Enter the backend endpoint your Hyperswitch Client will hit (hosted Hyperswitch Backend, https://beta.hyperswitch.io/api is taken by default):" read AWS_BACKEND_URL </dev/tty if [ -z $AWS_BACKEND_URL ]; then echo "Setting backend URL value to https://beta.hyperswitch.io/api by default" AWS_BACKEND_URL="https://beta.hyperswitch.io/api" fi export envSdkUrl="${AWS_BUCKET_LOCATION%?}" export envBackendUrl=$AWS_BACKEND_URL npm run build echo "Inititating file upload to S3" echo "Enter the folder name you want to push the assets to" read AWS_DESTINATION_KEY </dev/tty echo "Uploading files to S3" echo $( (aws s3 cp "./dist" "s3://$MY_AWS_S3_BUCKET_NAME/$AWS_DESTINATION_KEY" --recursive)) echo "Uploaded files " echo "Hurray! You now have hosted your Hyperswitch Web to S3! You can use this URL for your integrations : $AWS_BUCKET_LOCATION$AWS_DESTINATION_KEY/HyperLoader.js"
831
10,301
hyperswitch-web
src/Payment.res
.res
open CardUtils open CardThemeType open CardTheme open LoggerUtils open RecoilAtoms let setUserError = message => { Utils.postFailedSubmitResponse(~errortype="validation_error", ~message) } @react.component let make = (~paymentMode, ~integrateError, ~logger) => { let {localeString} = Recoil.useRecoilValueFromAtom(configAtom) let {iframeId} = Recoil.useRecoilValueFromAtom(keys) let cardScheme = Recoil.useRecoilValueFromAtom(cardBrand) let showFields = Recoil.useRecoilValueFromAtom(showCardFieldsAtom) let selectedOption = Recoil.useRecoilValueFromAtom(selectedOptionAtom) let isManualRetryEnabled = Recoil.useRecoilValueFromAtom(isManualRetryEnabled) let paymentToken = Recoil.useRecoilValueFromAtom(paymentTokenAtom) let paymentMethodListValue = Recoil.useRecoilValueFromAtom(PaymentUtils.paymentMethodListValue) let areRequiredFieldsValid = Recoil.useRecoilValueFromAtom(areRequiredFieldsValid) let (cardNumber, setCardNumber) = React.useState(_ => "") let (cardExpiry, setCardExpiry) = React.useState(_ => "") let (cvcNumber, setCvcNumber) = React.useState(_ => "") let (zipCode, setZipCode) = React.useState(_ => "") let (cardError, setCardError) = React.useState(_ => "") let (cvcError, setCvcError) = React.useState(_ => "") let (expiryError, setExpiryError) = React.useState(_ => "") let (displayPincode, setDisplayPincode) = React.useState(_ => false) let (isFocus, setIsFocus) = React.useState(_ => false) let (blurState, setBlurState) = React.useState(_ => false) let intent = PaymentHelpers.usePaymentIntent(Some(logger), Card) let cardRef = React.useRef(Nullable.null) let expiryRef = React.useRef(Nullable.null) let cvcRef = React.useRef(Nullable.null) let zipRef = React.useRef(Nullable.null) let prevCardBrandRef = React.useRef("") let (isCardValid, setIsCardValid) = React.useState(_ => None) let (isExpiryValid, setIsExpiryValid) = React.useState(_ => None) let (isCVCValid, setIsCVCValid) = React.useState(_ => None) let (isZipValid, setIsZipValid) = React.useState(_ => None) let (isCardSupported, setIsCardSupported) = React.useState(_ => None) let maxCardLength = React.useMemo(() => { getMaxLength(cardNumber) }, (cardNumber, cardScheme, showFields)) let cardBrand = getCardBrand(cardNumber) let isNotBancontact = selectedOption !== "bancontact_card" && cardBrand == "" let (cardBrand, setCardBrand) = React.useState(_ => !showFields && isNotBancontact ? cardScheme : cardBrand ) let cardBrand = CardUtils.getCardBrandFromStates(cardBrand, cardScheme, showFields) let supportedCardBrands = React.useMemo(() => { paymentMethodListValue->PaymentUtils.getSupportedCardBrands }, [paymentMethodListValue]) React.useEffect(() => { setIsCardSupported(_ => PaymentUtils.checkIsCardSupported(cardNumber, supportedCardBrands)) None }, (supportedCardBrands, cardNumber)) let cardType = React.useMemo1(() => { cardBrand->getCardType }, [cardBrand]) React.useEffect(() => { let obj = getobjFromCardPattern(cardBrand) let cvcLength = obj.maxCVCLength if ( cvcNumberInRange(cvcNumber, cardBrand)->Array.includes(true) && cvcNumber->String.length == cvcLength ) { blurRef(cvcRef) } None }, (cvcNumber, cardNumber)) React.useEffect(() => { setCvcNumber(_ => "") setCardExpiry(_ => "") setIsExpiryValid(_ => None) setIsCVCValid(_ => None) None }, [showFields]) React.useEffect(() => { if prevCardBrandRef.current !== "" { setCvcNumber(_ => "") setCardExpiry(_ => "") setIsExpiryValid(_ => None) setIsCVCValid(_ => None) } prevCardBrandRef.current = cardBrand None }, [cardBrand]) React.useEffect(() => { switch (isCardValid, isExpiryValid, isCVCValid) { | (Some(cardValid), Some(expiryValid), Some(cvcValid)) => CardUtils.emitIsFormReadyForSubmission( cardValid && expiryValid && cvcValid && areRequiredFieldsValid, ) | _ => () } None }, (isCardValid, isExpiryValid, isCVCValid, areRequiredFieldsValid)) let changeCardNumber = ev => { let val = ReactEvent.Form.target(ev)["value"] logInputChangeInfo("cardNumber", logger) let card = val->formatCardNumber(cardType) let clearValue = card->clearSpaces setCardValid(clearValue, setIsCardValid) if ( focusCardValid(clearValue, cardBrand) && PaymentUtils.checkIsCardSupported(clearValue, supportedCardBrands)->Option.getOr(false) ) { handleInputFocus(~currentRef=cardRef, ~destinationRef=expiryRef) } if card->String.length > 6 && cardNumber->pincodeVisibility { setDisplayPincode(_ => true) } else if card->String.length < 8 { setDisplayPincode(_ => false) } setCardNumber(_ => card) if card->String.length == 0 && prevCardBrandRef.current !== "" { setCvcNumber(_ => "") setCardExpiry(_ => "") setIsExpiryValid(_ => None) setIsCVCValid(_ => None) setIsCardValid(_ => Some(false)) } } let changeCardExpiry = ev => { let val = ReactEvent.Form.target(ev)["value"] logInputChangeInfo("cardExpiry", logger) let formattedExpiry = val->formatCardExpiryNumber if isExipryValid(formattedExpiry) { handleInputFocus(~currentRef=expiryRef, ~destinationRef=cvcRef) // * Sending card expiry to handle cases where the card expires before the use date. emitExpiryDate(formattedExpiry) } setExpiryValid(formattedExpiry, setIsExpiryValid) setCardExpiry(_ => formattedExpiry) } let changeCVCNumber = ev => { let val = ReactEvent.Form.target(ev)["value"] logInputChangeInfo("cardCVC", logger) let cvc = val->formatCVCNumber(cardBrand) setCvcNumber(_ => cvc) if cvc->String.length > 0 && cvcNumberInRange(cvc, cardBrand)->Array.includes(true) { zipRef.current->Nullable.toOption->Option.forEach(input => input->focus)->ignore } if cvc->String.length > 0 && cvcNumberInRange(cvc, cardBrand)->Array.includes(true) { setIsCVCValid(_ => Some(true)) } else { setIsCVCValid(_ => None) } } let changeZipCode = ev => { let val = ReactEvent.Form.target(ev)["value"] logInputChangeInfo("zipCode", logger) setZipCode(_ => val) } let onZipCodeKeyDown = ev => { commonKeyDownEvent(ev, zipRef, cvcRef, zipCode, cvcNumber, setCvcNumber) } let onCvcKeyDown = ev => { commonKeyDownEvent(ev, cvcRef, expiryRef, cvcNumber, cardExpiry, setCardExpiry) } let onExpiryKeyDown = ev => { commonKeyDownEvent(ev, expiryRef, cardRef, cardExpiry, cardNumber, setCardNumber) } let handleCardBlur = ev => { let cardNumber = ReactEvent.Focus.target(ev)["value"] if cardNumberInRange(cardNumber)->Array.includes(true) && calculateLuhn(cardNumber) { setIsCardValid(_ => PaymentUtils.checkIsCardSupported(cardNumber, supportedCardBrands)) } else if cardNumber->String.length == 0 { setIsCardValid(_ => Some(false)) } else { setIsCardValid(_ => Some(false)) } } let handleElementFocus = React.useMemo(() => { isFocus => { setIsFocus(_ => isFocus) } }, (isCardValid, isCVCValid, isExpiryValid, isZipValid)) let handleExpiryBlur = ev => { let cardExpiry = ReactEvent.Focus.target(ev)["value"] if cardExpiry->String.length > 0 && getExpiryValidity(cardExpiry) { setIsExpiryValid(_ => Some(true)) } else if cardExpiry->String.length == 0 { setIsExpiryValid(_ => None) } else { setIsExpiryValid(_ => Some(false)) } } let handleCVCBlur = ev => { let cvcNumber = ReactEvent.Focus.target(ev)["value"] if ( cvcNumber->String.length > 0 && cvcNumberInRange(cvcNumber, cardBrand)->Array.includes(true) ) { setIsCVCValid(_ => Some(true)) } else if cvcNumber->String.length == 0 { setIsCVCValid(_ => None) } else { setIsCVCValid(_ => Some(false)) } } let handleZipBlur = ev => { let zipCode = ReactEvent.Focus.target(ev)["value"] if zipCode === "" { setIsZipValid(_ => Some(false)) } else { setIsZipValid(_ => Some(true)) } } let submitAPICall = (body, confirmParam) => { intent(~bodyArr=body, ~confirmParam, ~handleUserError=false, ~manualRetry=isManualRetryEnabled) } React.useEffect(() => { setCvcNumber(_ => "") setIsCVCValid(_ => None) setCvcError(_ => "") setCardError(_ => "") setExpiryError(_ => "") None }, (paymentToken.paymentToken, showFields)) let submitValue = (_ev, confirmParam) => { let validFormat = switch paymentMode->getPaymentMode { | Card => isCardValid->Option.getOr(false) && isExpiryValid->Option.getOr(false) && isCVCValid->Option.getOr(false) | CardNumberElement => isCardValid->Option.getOr(false) && checkCardCVC(getCardElementValue(iframeId, "card-cvc"), cardBrand) && checkCardExpiry(getCardElementValue(iframeId, "card-expiry")) | _ => true } let cardNetwork = [ ("card_network", cardBrand != "" ? cardBrand->JSON.Encode.string : JSON.Encode.null), ] if validFormat { let body = switch paymentMode->getPaymentMode { | Card => let (month, year) = getExpiryDates(cardExpiry) PaymentBody.cardPaymentBody( ~cardNumber, ~month, ~year, ~cardHolderName=None, ~cvcNumber, ~cardBrand=cardNetwork, ) | CardNumberElement => let (month, year) = getExpiryDates(getCardElementValue(iframeId, "card-expiry")) let localCvcNumber = getCardElementValue(iframeId, "card-cvc") PaymentBody.cardPaymentBody( ~cardNumber, ~month, ~year, ~cardHolderName=None, ~cvcNumber=localCvcNumber, ~cardBrand=cardNetwork, ) | _ => [] } switch paymentMode->getPaymentMode { | Card | CardNumberElement => submitAPICall(body, confirmParam) | _ => () } } else { if cardNumber === "" { setCardError(_ => localeString.cardNumberEmptyText) setUserError(localeString.enterFieldsText) } if cardExpiry === "" { setExpiryError(_ => localeString.cardExpiryDateEmptyText) setUserError(localeString.enterFieldsText) } if cvcNumber === "" { setCvcError(_ => localeString.cvcNumberEmptyText) setUserError(localeString.enterFieldsText) } if !validFormat { setUserError(localeString.enterValidDetailsText) } } } let paymentType = React.useMemo1(() => { paymentMode->getPaymentMode }, [paymentMode]) React.useEffect0(() => { open Utils let handleFun = (ev: Window.event) => { let json = ev.data->safeParse let dict = json->Utils.getDictFromJson if dict->Dict.get("doBlur")->Option.isSome { logger.setLogInfo(~value="doBlur Triggered", ~eventName=BLUR) setBlurState(_ => true) } else if dict->Dict.get("doFocus")->Option.isSome { logger.setLogInfo(~value="doFocus Triggered", ~eventName=FOCUS) cardRef.current->Nullable.toOption->Option.forEach(input => input->focus)->ignore } else if dict->Dict.get("doClearValues")->Option.isSome { logger.setLogInfo(~value="doClearValues Triggered", ~eventName=CLEAR) //clear all values setCardNumber(_ => "") setCardExpiry(_ => "") setCvcNumber(_ => "") setIsCardValid(_ => None) setCardError(_ => "") setCvcError(_ => "") setExpiryError(_ => "") setIsExpiryValid(_ => None) setIsCVCValid(_ => None) } } handleMessage(handleFun, "Error in parsing sent Data") }) React.useEffect(() => { open Utils let handleDoSubmit = (ev: Window.event) => { let json = ev.data->safeParse let jsonDict = json->getDictFromJson let confirm = jsonDict->ConfirmType.itemToObjMapper if confirm.doSubmit { submitValue(ev, confirm.confirmParams) } } handleMessage(handleDoSubmit, "") }, (cardNumber, cvcNumber, cardExpiry, isCVCValid, isExpiryValid, isCardValid)) React.useEffect(() => { let cardError = switch ( isCardSupported->Option.getOr(true), isCardValid->Option.getOr(true), cardNumber->String.length == 0, ) { | (_, _, true) => "" | (true, true, _) => "" | (true, _, _) => localeString.inValidCardErrorText | (_, _, _) => CardUtils.getCardBrandInvalidError(~cardNumber, ~localeString) } let cardError = isCardValid->Option.isSome ? cardError : "" setCardError(_ => cardError) None }, [isCardValid, isCardSupported]) React.useEffect(() => { setCvcError(_ => isCVCValid->Option.getOr(true) ? "" : localeString.inCompleteCVCErrorText) None }, [isCVCValid]) React.useEffect(() => { setExpiryError(_ => switch (isExpiryValid, isExpiryComplete(cardExpiry)) { | (Some(true), true) => "" | (Some(false), true) => localeString.pastExpiryErrorText | (Some(_), false) => localeString.inCompleteExpiryErrorText | (None, _) => "" } ) None }, (isExpiryValid, isExpiryComplete(cardExpiry))) React.useEffect(() => { setCardBrand(_ => cardNumber->CardUtils.getCardBrand) None }, [cardNumber]) let icon = React.useMemo(() => { <CardSchemeComponent cardNumber paymentType cardBrand setCardBrand /> }, (cardType, paymentType, cardBrand, cardNumber)) let cardProps: CardUtils.cardProps = ( isCardValid, setIsCardValid, isCardSupported, cardNumber, changeCardNumber, handleCardBlur, cardRef, icon, cardError, setCardError, maxCardLength, cardBrand, ) let expiryProps: CardUtils.expiryProps = ( isExpiryValid, setIsExpiryValid, cardExpiry, changeCardExpiry, handleExpiryBlur, expiryRef, onExpiryKeyDown, expiryError, setExpiryError, ) let cvcProps: CardUtils.cvcProps = ( isCVCValid, setIsCVCValid, cvcNumber, setCvcNumber, changeCVCNumber, handleCVCBlur, cvcRef, onCvcKeyDown, cvcError, setCvcError, ) let zipProps: CardUtils.zipProps = ( isZipValid, setIsZipValid, zipCode, changeZipCode, handleZipBlur, zipRef, onZipCodeKeyDown, displayPincode, ) if integrateError { <ErrorOccured /> } else { <RenderPaymentMethods paymentType cardProps expiryProps cvcProps zipProps handleElementFocus blurState isFocus /> } }
3,882
10,302
hyperswitch-web
src/GlobalVars.res
.res
@val external repoName: string = "repoName" @val external repoVersion: string = "repoVersion" @val external repoPublicPath: string = "publicPath" @val external backendEndPoint: string = "backendEndPoint" @val external confirmEndPoint: string = "confirmEndPoint" @val external sdkUrl: string = "sdkUrl" @val external logEndpoint: string = "logEndpoint" @val external sentryDSN: string = "sentryDSN" @val external sentryScriptUrl: string = "sentryScriptUrl" @val external enableLogging: bool = "enableLogging" @val external loggingLevelStr: string = "loggingLevel" @val external maxLogsPushedPerEventName: int = "maxLogsPushedPerEventName" @val external sdkVersion: string = "sdkVersion" let targetOrigin: string = "*" @val external isInteg: bool = "isIntegrationEnv" @val external isSandbox: bool = "isSandboxEnv" @val external isProd: bool = "isProductionEnv"
226
10,303
hyperswitch-web
src/PaymentElementRendererLazy.res
.res
let make = React.lazy_(() => Js.import(PaymentElementRenderer.default))
16
10,304
hyperswitch-web
src/PaymentMethodCollectElement.res
.res
open PaymentMethodCollectTypes open PaymentMethodCollectUtils open RecoilAtoms @react.component let make = (~integrateError, ~logger) => { open Promise let {localeString} = Recoil.useRecoilValueFromAtom(configAtom) let {themeObj} = Recoil.useRecoilValueFromAtom(configAtom) let keys = Recoil.useRecoilValueFromAtom(keys) let options = Recoil.useRecoilValueFromAtom(paymentMethodCollectOptionAtom) // Component states let (availablePaymentMethods, setAvailablePaymentMethods) = React.useState(_ => defaultAvailablePaymentMethods ) let (availablePaymentMethodTypes, setAvailablePaymentMethodTypes) = React.useState(_ => defaultAvailablePaymentMethodTypes ) let (loader, setLoader) = React.useState(_ => false) let (secondsUntilRedirect, setSecondsUntilRedirect) = React.useState(_ => None) let (showStatus, setShowStatus) = React.useState(_ => false) let (statusInfo, setStatusInfo) = React.useState(_ => defaultStatusInfo) // Form a list of available payment methods React.useEffect(() => { let availablePM: array<paymentMethod> = [] let availablePMT: array<paymentMethodType> = [] options.enabledPaymentMethods->Array.forEach(pm => { switch pm { | Card(_) => if !(availablePM->Array.includes(Card)) { availablePM->Array.push(Card) availablePMT->Array.push(Card(Debit)) } | BankTransfer(_) => if !(availablePM->Array.includes(BankTransfer)) { availablePM->Array.push(BankTransfer) } if !(availablePMT->Array.includes(pm)) { availablePMT->Array.push(pm) } | Wallet(_) => if !(availablePM->Array.includes(Wallet)) { availablePM->Array.push(Wallet) } if !(availablePMT->Array.includes(pm)) { availablePMT->Array.push(pm) } } }) setAvailablePaymentMethods(_ => availablePM) setAvailablePaymentMethodTypes(_ => availablePMT) None }, [options.enabledPaymentMethods]) // Start a timer for redirecting to return_url React.useEffect(() => { switch (options.returnUrl, showStatus) { | (Some(returnUrl), true) => { setSecondsUntilRedirect(_ => Some(5)) // Start a interval to update redirect text every second let interval = setInterval(() => setSecondsUntilRedirect( prev => switch prev { | Some(val) => val > 0 ? Some(val - 1) : Some(val) | None => Some(5) }, ) , 1000) // Clear after 5s and redirect setTimeout(() => { clearInterval(interval) // Append query params and redirect let url = URLModule.makeUrl(returnUrl) url.searchParams.set("payout_id", options.payoutId) url.searchParams.set("status", statusInfo.status->getPayoutStatusString) Utils.openUrl(url.href) }, 5010)->ignore } | _ => () } None }, [showStatus]) let handleSubmit = pmd => { setLoader(_ => true) let flow = options.flow let pmdBody = flow->formBody(pmd) let createPaymentMethodPromiseWrapped = () => { PaymentHelpers.createPaymentMethod( ~clientSecret=keys.clientSecret->Option.getOr(""), ~publishableKey=keys.publishableKey, ~logger, ~customPodUri="", ~endpoint=ApiEndpoint.getApiEndPoint(), ~body=pmdBody, ) ->then(res => { Console.warn2("DEBUGG RES", res) resolve() }) ->catch(err => { Console.error2("DEBUGG ERR", err) resolve() }) ->finally(() => { setLoader(_ => false) }) } let confirmPayoutPromiseWrapper = () => { let endpoint = ApiEndpoint.getApiEndPoint() let uri = `${endpoint}/payouts/${options.payoutId}/confirm` PaymentHelpers.confirmPayout( ~clientSecret=keys.clientSecret->Option.getOr(""), ~publishableKey=keys.publishableKey, ~logger, ~customPodUri="", ~uri, ~body=pmdBody, ) ->then(res => { let data = res->decodePayoutConfirmResponse switch data { | Some(SuccessResponse(res)) => { let updatedStatusInfo = { payoutId: res.payoutId, status: res.status, message: res.status->getPayoutStatusMessage(localeString), code: res.errorCode, errorMessage: res.errorMessage, reason: None, } setStatusInfo(_ => updatedStatusInfo) } | Some(ErrorResponse(err)) => { let updatedStatusInfo = { payoutId: options.payoutId, status: Failed, message: localeString.payoutStatusFailedMessage, code: Some(err.code), errorMessage: Some(err.message), reason: err.reason, } setStatusInfo(_ => updatedStatusInfo) } | None => { let updatedStatusInfo = { payoutId: options.payoutId, status: Failed, message: localeString.payoutStatusFailedMessage, code: None, errorMessage: None, reason: None, } setStatusInfo(_ => updatedStatusInfo) } } resolve() }) ->catch(err => { Console.error2("CRITICAL - Payouts confirm failed with unknown error", err) let updatedStatusInfo = { payoutId: options.payoutId, status: Failed, message: localeString.payoutStatusFailedMessage, code: None, errorMessage: None, reason: None, } setStatusInfo(_ => updatedStatusInfo) resolve() }) ->finally(() => { setShowStatus(_ => true) setLoader(_ => false) }) } switch flow { | PayoutLinkInitiate => confirmPayoutPromiseWrapper()->then(_ => resolve())->catch(_ => resolve())->ignore | PayoutMethodCollect => pmdBody->Array.push(("customer_id", options.customerId->JSON.Encode.string)) createPaymentMethodPromiseWrapped()->then(_ => resolve())->catch(_ => resolve())->ignore } } let renderCollectWidget = () => <div className="flex flex-row overflow-scroll lg:w-6/10"> <div className="relative w-full h-min lg:w-auto lg:mx-12 lg:mt-20 lg-mb-10"> {loader ? <div className="absolute h-full w-full bg-jp-gray-600 bg-opacity-80" /> : {React.null}} <CollectWidget primaryTheme={options.theme} handleSubmit availablePaymentMethods availablePaymentMethodTypes formLayout={options.formLayout} /> </div> </div> let renderPayoutStatus = () => { let status = statusInfo.status let imageSource = getPayoutImageSource(status) let readableStatus = status->getPayoutReadableStatus(localeString) let statusInfoFields: array<statusInfoField> = [ {key: localeString.infoCardRefId, value: options.payoutId}, ] <div style={ color: themeObj.colorText, fontFamily: themeObj.fontFamily, fontSize: themeObj.fontSizeBase, } className="flex flex-col items-center justify-center self-center leading-none xs:mt-auto xs:mb-auto lg:ml-auto lg:mr-auto"> <div className="flex flex-col items-center rounded-lg max-w-[500px] xs:shadow-lg"> <div className="flex flex-row justify-between items-center w-full px-10 py-5 border-b border-jp-gray-300"> <div className="text-2xl font-semibold"> {React.string(options.collectorName)} </div> <img className="h-12 w-auto max-w-21" src={options.logo} alt="o" /> </div> <img className="h-40 w-40 mt-7" src={imageSource} alt="o" /> <div className="text-xl font-semibold mt-2.5"> {React.string(readableStatus)} </div> <div className="text-jp-gray-800 m text-center mx-10 mb-10"> {React.string(statusInfo.message)} </div> <div className="flex border-t border-bg-jp-gray-300 py-5 w-full justify-center"> <div className="flex flex-col max-w-[500px] bg-white w-full mx-2.5 xs:mx-10"> {statusInfoFields ->Array.mapWithIndex((info, i) => { <div key={i->Int.toString} className={`flex flex-row items-center mb-0.5`}> <div className="text-sm text-jp-gray-900 text-right min-w-20"> {React.string(info.key)} </div> <div className="text-[11px] ml-2.5 pl-2.5 border-l border-jp-gray-300 xs:text-xs"> {React.string(info.value)} </div> </div> }) ->React.array} </div> </div> </div> {switch secondsUntilRedirect { | Some(seconds) => <div className="mt-10"> {React.string(seconds->localeString.linkRedirectionText)} </div> | None => React.null }} </div> } if integrateError { <ErrorOccured /> } else { <div className="flex flex-col h-screen min-w-[320px] overflow-hidden lg:flex-row"> { let merchantLogo = options.logo let merchantName = options.collectorName let merchantTheme = options.theme switch options.flow { | PayoutLinkInitiate => if showStatus { renderPayoutStatus() } else { <> // Merchant's info <div className="flex flex-col w-full h-max items-center p-6 lg:w-4/10 lg:px-12 lg:py-20 lg:h-screen lg:items-end" style={backgroundColor: merchantTheme}> <div className="flex flex-col text-white w-full min-w-[300px] max-w-[520px] lg:rounded-md lg:shadow-lg lg:min-w-80 lg:max-w-96 lg:bg-white lg:text-black"> <div className="flex flex-col-reverse justify-end lg:mx-5 lg:mt-5 lg:flex-row lg:justify-between"> <div className="font-bold text-5xl mt-5 lg:mt-0 lg:text-3xl flex justify-start items-center"> <p> {React.string(`${options.currency} ${options.amount}`)} </p> </div> <div className="flex self-start h-12 w-auto bg-white rounded-sm"> <img className="max-h-12 w-auto max-w-21 h-auto" src={merchantLogo} alt="O" /> </div> </div> <div className="lg:mx-5"> <div className="self-center text-xl font-semibold"> {React.string(merchantName->localeString.payoutFromText)} </div> <div className="flex flex-row lg:mt-1"> <div className="font-semibold text-xs"> {React.string(localeString.infoCardRefId)} </div> <div className="ml-1 text-xs"> {React.string(options.payoutId)} </div> </div> </div> <div className="mt-4 px-4 py-1.5 bg-gray-200 text-[13px] rounded-full w-max text-black lg:w-full lg:rounded-none lg:rounded-b-lg"> {React.string(options.sessionExpiry->localeString.linkExpiryInfo)} </div> </div> </div> // Collect widget {renderCollectWidget()} </> } | PayoutMethodCollect => <> // Merchant's info <div className="flex flex-col w-3/10 p-12" style={backgroundColor: merchantTheme}> <div className="flex flex-row"> <img className="h-12 w-auto" src={merchantLogo} alt="O" /> <div className="ml-4 text-white self-center text-2xl font-bold"> {React.string(merchantName)} </div> </div> </div> // Collect widget {renderCollectWidget()} </> } } </div> } } let default = make
2,867
10,305
hyperswitch-web
src/FormViewJourney.res
.res
open PaymentMethodCollectTypes open PaymentMethodCollectUtils open RecoilAtoms @react.component let make = ( ~availablePaymentMethods, ~availablePaymentMethodTypes, ~primaryTheme, ~handleSubmit, ~enabledPaymentMethodsWithDynamicFields: array<paymentMethodTypeWithDynamicFields>, ~journeyView, ~renderAddressForm, ~renderPayoutMethodForm, ) => { // Recoil states let {localeString} = Recoil.useRecoilValueFromAtom(configAtom) let payoutDynamicFields = Recoil.useRecoilValueFromAtom(payoutDynamicFieldsAtom) let formData = Recoil.useRecoilValueFromAtom(formDataAtom) let (activePmt, setActivePmt) = Recoil.useRecoilState(paymentMethodTypeAtom) let (validityDict, setValidityDict) = Recoil.useRecoilState(validityDictAtom) // Component states let (formSubmitted, setFormSubmitted) = React.useState(_ => false) module View = { let viewStack = React.useRef([journeyView]) let push = newState => { viewStack.current = [...viewStack.current, newState] } let pop = () => { switch viewStack.current->Array.length { | 0 | 1 => () | _ => viewStack.current->Array.pop->ignore } } let get = () => viewStack.current->Array.get(viewStack.current->Array.length - 1)->Option.getOr(journeyView) let (view, setStateView) = React.useState(_ => get()) // For setting and popping views let setView = view => { setStateView(_ => { push(view) view }) } let popView = (~count=1) => { setStateView(_ => { for _ in 1 to count { pop() } get() }) } } // UI renderers let renderInfoTemplate = (label, value, uniqueKey) => { let labelClasses = "w-4/10 text-jp-gray-800 text-sm min-w-40 text-end" let valueClasses = "w-6/10 text-sm min-w-40" <div key={uniqueKey} className="flex flex-row items-center"> <div className={labelClasses}> {React.string(label)} </div> <div className="mx-2.5 h-4 w-0.5 bg-jp-gray-300"> {React.string("")} </div> <div className={valueClasses}> {React.string(value)} </div> </div> } let renderBackButton = () => <div className="flex justify-center items-center"> <button className="bg-jp-gray-600 rounded-full h-7 w-7 self-center mr-5" onClick={_ => View.popView()}> {React.string("←")} </button> </div> let renderSaveButton = onClickHandler => <button className="min-w-full mt-10 text-lg font-semibold px-2.5 py-1.5 text-white rounded" style={backgroundColor: primaryTheme} onClick=onClickHandler> {React.string(localeString.formSaveText)} </button> let renderHeader = (title, shouldRenderBackButton) => { let headerWrapperClasses = "flex flex-row justify-start" <div className=headerWrapperClasses> {shouldRenderBackButton ? renderBackButton() : React.null} <div className="text-xl lg:text-3xl font-semibold"> {React.string(title)} </div> </div> } // Contant variables let contentSubHeaderClasses = "text-base text-gray-500" <div className="w-full max-w-[520px]"> {switch View.view { /// SCREEN #1 - PAYMENT METHOD SELECTION | SelectPM => { let optionSelectionHandler = (newPm: paymentMethod) => { // Update view // For cards - render forms // For other pms - render PMT selection screen let newView = switch newPm { | Card => { let newPmt = Card(Debit) let payoutDynamicFields = getPayoutDynamicFields( enabledPaymentMethodsWithDynamicFields, newPmt, )->Option.getOr(defaultPayoutDynamicFields(~pmt=newPmt)) setActivePmt(_ => newPmt) payoutDynamicFields.address ->Option.map(address => { let fieldsToCollect = address->Array.filter(addressField => addressField.value == None) if fieldsToCollect->Array.length > 0 { AddressForm(address) } else { PMDForm(newPmt, payoutDynamicFields.payoutMethodData) } }) ->Option.getOr(PMDForm(newPmt, payoutDynamicFields.payoutMethodData)) } | _ => SelectPMType(newPm) } View.setView(newView) } <> {renderHeader(localeString.formHeaderSelectAccountText, false)} <div className=contentSubHeaderClasses> {React.string(localeString.formFundsInfoText)} </div> <div className="mt-2.5"> <div className="flex flex-col mt-2.5"> {availablePaymentMethods ->Array.mapWithIndex((option, i) => { <button key={Int.toString(i)} onClick={_ => optionSelectionHandler(option)} className="flex flex-row items-center border border-solid border-jp-gray-200 px-5 py-2.5 rounded mt-2.5 hover:bg-jp-gray-50"> {option->getPaymentMethodIcon} <label className="text-start ml-2.5 cursor-pointer"> {React.string(option->String.make)} </label> </button> }) ->React.array} </div> </div> </> } /// SCREEN #2 - PAYMENT METHOD TYPE SELECTION | SelectPMType(selectedPm) => { let availablePmts = availablePaymentMethodTypes->Array.filterMap(pmt => switch (selectedPm, pmt) { | (BankTransfer, BankTransfer(transfer)) => Some(BankTransfer(transfer)) | (Wallet, Wallet(wallet)) => Some(Wallet(wallet)) | _ => None } ) let optionSelectionHandler = newPmt => { // Set new payment method type setActivePmt(_ => newPmt) // Update view let payoutDynamicFields = getPayoutDynamicFields(enabledPaymentMethodsWithDynamicFields, newPmt)->Option.getOr( defaultPayoutDynamicFields(~pmt=newPmt), ) let newView = payoutDynamicFields.address ->Option.map(address => { let fieldsToCollect = address->Array.filter(addressField => addressField.value == None) if fieldsToCollect->Array.length > 0 { AddressForm(address) } else { PMDForm(newPmt, payoutDynamicFields.payoutMethodData) } }) ->Option.getOr(PMDForm(newPmt, payoutDynamicFields.payoutMethodData)) View.setView(newView) } switch selectedPm { | Card => { View.setView(SelectPM) React.null } | BankTransfer | Wallet => <> {renderHeader(localeString.formHeaderSelectBankText, true)} <div className="mt-2.5"> <div className="flex flex-col mt-2.5"> {availablePmts ->Array.mapWithIndex((option, i) => { switch option { | Card(_) => React.null | BankTransfer(transfer) => <button key={Int.toString(i)} onClick={_ => optionSelectionHandler(option)} className="flex flex-row items-center border border-solid border-jp-gray-200 px-5 py-2.5 rounded mt-2.5 hover:bg-jp-gray-50"> {transfer->getBankTransferIcon} <label className="text-start ml-2.5 cursor-pointer"> {React.string(transfer->String.make)} </label> </button> | Wallet(wallet) => <button key={Int.toString(i)} onClick={_ => optionSelectionHandler(option)} className="flex flex-row items-center border border-solid border-jp-gray-200 px-5 py-2.5 rounded mt-2.5 hover:bg-jp-gray-50"> {wallet->getWalletIcon} <label className="text-start ml-2.5 cursor-pointer"> {React.string(wallet->String.make)} </label> </button> } }) ->React.array} </div> </div> </> } } /// SCREEN #3 - ADDRESS COLLECION (OPTIONAL) | AddressForm(addressFields) => { let onSaveHandler = () => { let (fieldValidity, isAddressValid) = addressFields->Array.reduce((Dict.make(), true), ( (fieldValidity, isAddressValid), field, ) => { let key = BillingAddress(field.fieldType)->getPaymentMethodDataFieldKey let value = formData->Dict.get(key)->Option.getOr("") let validity = BillingAddress(field.fieldType)->calculateValidity(value, ~default=Some(false)) fieldValidity->Dict.set(key, validity) (fieldValidity, isAddressValid && validity != Some(false)) }) setValidityDict(_ => fieldValidity) if isAddressValid { View.setView(PMDForm(activePmt, payoutDynamicFields.payoutMethodData)) } } <> {renderHeader(localeString.billingDetailsText, true)} <div className=contentSubHeaderClasses> {React.string(localeString.formSubheaderBillingDetailsText)} </div> <div className="mt-2.5"> {addressFields->renderAddressForm->React.array} {renderSaveButton(_ => onSaveHandler())} </div> </> } /// SCREEN #4 PAYMENT METHOD DETAILS COLLECTION | PMDForm(activePmt, pmdFields) => { let pm = activePmt->getPaymentMethodForPmt let key = activePmt->getPaymentMethodTypeLabel let onSaveHandler = () => { let (fieldValidity, isPmdValid) = pmdFields->Array.reduce( (validityDict->Dict.copy, true), ((fieldValidity, isPmdValid), field) => { let key = PayoutMethodData(field.fieldType)->getPaymentMethodDataFieldKey let value = formData->Dict.get(key)->Option.getOr("") let validity = PayoutMethodData(field.fieldType)->calculateValidity(value, ~default=Some(false)) fieldValidity->Dict.set(key, validity) (fieldValidity, isPmdValid && validity != Some(false)) }, ) setValidityDict(_ => fieldValidity) if isPmdValid { formPaymentMethodData(formData, fieldValidity, payoutDynamicFields) ->Option.map(pmd => View.setView(FinalizeView((activePmt, pmd)))) ->ignore } } <> {renderHeader( switch pm { | Card => localeString.formHeaderEnterCardText | BankTransfer => key->localeString.formHeaderBankText | Wallet => key->localeString.formHeaderWalletText }, true, )} <div className="mt-2.5"> {pmdFields->renderPayoutMethodForm->React.array} {renderSaveButton(_ => onSaveHandler())} </div> </> } /// SCREEN #5 FINALIZE SCREEN | FinalizeView(pmt, formFields) => { let pm = pmt->getPaymentMethodForPmt <div> <div className="flex flex-col"> <div className="flex flex-row items-center mb-2.5 text-xl font-semibold"> <img src={"merchantLogo"} alt="" className="h-6 w-auto" /> <div className="ml-1.5"> {React.string( pmt ->getPaymentMethodTypeLabel ->localeString.formHeaderReviewTabLayoutText, )} </div> </div> {formFields ->Array.mapWithIndex((field, i) => { let (field, value) = field switch field { | PayoutMethodData(pmdFieldInfo) => switch pmdFieldInfo.fieldType { | CardExpDate(CardExpYear) => React.null | CardExpDate(CardExpMonth) => { let expiryYear = formData ->Dict.get( PayoutMethodData(CardExpDate(CardExpYear))->getPaymentMethodDataFieldKey, ) ->Option.flatMap(value => value ->String.split("/") ->Array.get(1) ->Option.map(year => `20${year->String.trim}`) ) ->Option.getOr("") let expiryValue = `${value} / ${expiryYear}` renderInfoTemplate( PayoutMethodData(CardExpDate(CardExpMonth))->getPaymentMethodDataFieldLabel( localeString, ), expiryValue, i->Int.toString, ) } | fieldType => renderInfoTemplate( PayoutMethodData(fieldType)->getPaymentMethodDataFieldLabel(localeString), value, i->Int.toString, ) } | BillingAddress(_) => React.null } }) ->React.array} </div> <div className="flex flex-row items-center min-w-full my-5 px-2.5 py-1.5 text-xs border border-solid border-blue-200 rounded bg-blue-50"> <img src={"merchantLogo"} alt="" className="h-3 w-auto mr-1.5" /> {React.string( pm ->getPaymentMethodLabel ->String.toLowerCase ->localeString.formFundsCreditInfoText, )} </div> <div className="flex my-5 text-lg font-semibold w-full"> <button onClick={_ => View.popView(~count={View.viewStack.current->Array.length - 2})} disabled={formSubmitted} className="w-full px-2.5 py-1.5 rounded border border-solid" style={color: primaryTheme, borderColor: primaryTheme}> {React.string(localeString.formEditText)} </button> <button onClick={_ => { setFormSubmitted(_ => true) handleSubmit((pmt, formFields)) }} disabled={formSubmitted} className="w-full px-2.5 py-1.5 text-white rounded ml-2.5" style={backgroundColor: primaryTheme}> {React.string( formSubmitted ? localeString.formSubmittingText : localeString.formSubmitText, )} </button> </div> </div> } }} </div> } let default = make
3,281
10,306
hyperswitch-web
src/LoaderController.res
.res
open Utils @react.component let make = (~children, ~paymentMode, ~setIntegrateErrorError, ~logger, ~initTimestamp) => { open RecoilAtoms let (configAtom, setConfig) = Recoil.useRecoilState(configAtom) let (keys, setKeys) = Recoil.useRecoilState(keys) let (paymentMethodList, setPaymentMethodList) = Recoil.useRecoilState(paymentMethodList) let (_, setSessions) = Recoil.useRecoilState(sessions) let (options, setOptions) = Recoil.useRecoilState(elementOptions) let (optionsPayment, setOptionsPayment) = Recoil.useRecoilState(optionAtom) let setSessionId = Recoil.useSetRecoilState(sessionId) let setBlockConfirm = Recoil.useSetRecoilState(isConfirmBlocked) let setCustomPodUri = Recoil.useSetRecoilState(customPodUri) let setIsGooglePayReady = Recoil.useSetRecoilState(isGooglePayReady) let setIsApplePayReady = Recoil.useSetRecoilState(isApplePayReady) let setIsSamsungPayReady = Recoil.useSetRecoilState(isSamsungPayReady) let (divH, setDivH) = React.useState(_ => 0.0) let (launchTime, setLaunchTime) = React.useState(_ => 0.0) let {showCardFormByDefault, paymentMethodOrder} = optionsPayment let (_, setPaymentMethodCollectOptions) = Recoil.useRecoilState(paymentMethodCollectOptionAtom) let url = RescriptReactRouter.useUrl() let componentName = CardUtils.getQueryParamsDictforKey(url.search, "componentName") let divRef = React.useRef(Nullable.null) let {config} = configAtom let {iframeId} = keys let messageParentWindow = data => messageParentWindow(data, ~targetOrigin=keys.parentURL) let setUserFullName = Recoil.useLoggedSetRecoilState(userFullName, "fullName", logger) let setUserEmail = Recoil.useLoggedSetRecoilState(userEmailAddress, "email", logger) let setUserAddressline1 = Recoil.useLoggedSetRecoilState(userAddressline1, "line1", logger) let setUserAddressline2 = Recoil.useLoggedSetRecoilState(userAddressline2, "line2", logger) let setUserAddressCity = Recoil.useLoggedSetRecoilState(userAddressCity, "city", logger) let setUserAddressPincode = Recoil.useLoggedSetRecoilState(userAddressPincode, "pin", logger) let setUserAddressState = Recoil.useLoggedSetRecoilState(userAddressState, "state", logger) let setUserAddressCountry = Recoil.useLoggedSetRecoilState(userAddressCountry, "country", logger) let setCountry = Recoil.useSetRecoilState(userCountry) let setIsCompleteCallbackUsed = Recoil.useSetRecoilState(isCompleteCallbackUsed) let setIsPaymentButtonHandlerProvided = Recoil.useSetRecoilState( isPaymentButtonHandlerProvidedAtom, ) let optionsCallback = (optionsPayment: PaymentType.options) => { [ (optionsPayment.defaultValues.billingDetails.name, setUserFullName), (optionsPayment.defaultValues.billingDetails.email, setUserEmail), (optionsPayment.defaultValues.billingDetails.address.line1, setUserAddressline1), (optionsPayment.defaultValues.billingDetails.address.line2, setUserAddressline2), (optionsPayment.defaultValues.billingDetails.address.city, setUserAddressCity), (optionsPayment.defaultValues.billingDetails.address.postal_code, setUserAddressPincode), (optionsPayment.defaultValues.billingDetails.address.state, setUserAddressState), (optionsPayment.defaultValues.billingDetails.address.country, setUserAddressCountry), ]->Array.forEach(val => { let (value, setValue) = val if value != "" { setValue(prev => { ...prev, value, }) } }) if optionsPayment.defaultValues.billingDetails.address.country === "" { let clientTimeZone = CardUtils.dateTimeFormat().resolvedOptions().timeZone let clientCountry = getClientCountry(clientTimeZone) setUserAddressCountry(prev => { ...prev, value: clientCountry.countryName, }) setCountry(_ => clientCountry.countryName) } else { setUserAddressCountry(prev => { ...prev, value: optionsPayment.defaultValues.billingDetails.address.country, }) setCountry(_ => optionsPayment.defaultValues.billingDetails.address.country) } } let updateOptions = dict => { let optionsDict = dict->getDictFromObj("options") switch paymentMode->CardThemeType.getPaymentMode { | CardNumberElement | CardExpiryElement | CardCVCElement | Card => setOptions(_ => ElementType.itemToObjMapper(optionsDict, logger)) | PaymentMethodCollectElement => { let paymentMethodCollectOptions = PaymentMethodCollectUtils.itemToObjMapper( optionsDict, logger, ) setPaymentMethodCollectOptions(_ => paymentMethodCollectOptions) } | GooglePayElement | PayPalElement | ApplePayElement | SamsungPayElement | KlarnaElement | PazeElement | ExpressCheckoutElement | Payment => { let paymentOptions = PaymentType.itemToObjMapper(optionsDict, logger) setOptionsPayment(_ => paymentOptions) optionsCallback(paymentOptions) } | _ => () } } let setConfigs = async (dict, themeValues: ThemeImporter.themeDataModule) => { try { let paymentOptions = dict->getDictFromObj("paymentOptions") let optionsDict = dict->getDictFromObj("options") let (default, defaultRules) = (themeValues.default, themeValues.defaultRules) let config = CardTheme.itemToObjMapper(paymentOptions, default, defaultRules, logger) let optionsLocaleString = getWarningString(optionsDict, "locale", "", ~logger) let optionsAppearance = CardTheme.getAppearance( "appearance", optionsDict, default, defaultRules, logger, ) let appearance = optionsAppearance == CardTheme.defaultAppearance ? config.appearance : optionsAppearance let localeString = await CardTheme.getLocaleObject( optionsLocaleString == "" ? config.locale : optionsLocaleString, ) let constantString = await CardTheme.getConstantStringsObject() setConfig(_ => { config: { appearance, locale: config.locale === "auto" ? Window.Navigator.language : config.locale, fonts: config.fonts, clientSecret: config.clientSecret, ephemeralKey: config.ephemeralKey, loader: config.loader, }, themeObj: appearance.variables, localeString, constantString, showLoader: config.loader == Auto || config.loader == Always, }) } catch { | _ => () } } let updateRedirectionFlags = UtilityHooks.useUpdateRedirectionFlags() React.useEffect0(() => { messageParentWindow([("iframeMounted", true->JSON.Encode.bool)]) messageParentWindow([ ("applePayMounted", true->JSON.Encode.bool), ("componentName", componentName->JSON.Encode.string), ]) logger.setLogInitiated() let updatedState: PaymentType.loadType = switch paymentMethodList { | Loading => showCardFormByDefault && checkPriorityList(paymentMethodOrder) ? SemiLoaded : Loading | x => x } let finalLoadLatency = if launchTime <= 0.0 { 0.0 } else { Date.now() -. launchTime } switch updatedState { | Loaded(_) => logger.setLogInfo(~value="Loaded", ~eventName=LOADER_CHANGED, ~latency=finalLoadLatency) | Loading => logger.setLogInfo(~value="Loading", ~eventName=LOADER_CHANGED, ~latency=finalLoadLatency) | SemiLoaded => { setPaymentMethodList(_ => updatedState) logger.setLogInfo(~value="SemiLoaded", ~eventName=LOADER_CHANGED, ~latency=finalLoadLatency) } | LoadError(x) => logger.setLogError( ~value="LoadError: " ++ x->JSON.stringify, ~eventName=LOADER_CHANGED, ~latency=finalLoadLatency, ) } Window.addEventListener("click", ev => handleOnClickPostMessage(~targetOrigin=keys.parentURL, ev) ) Some( () => { Window.removeEventListener("click", ev => handleOnClickPostMessage(~targetOrigin=keys.parentURL, ev) ) }, ) }) React.useEffect(() => { CardUtils.generateFontsLink(config.fonts) let dict = config.appearance.rules->getDictFromJson if dict->Dict.toArray->Array.length > 0 { generateStyleSheet("", dict, "themestyle") } switch paymentMode->CardThemeType.getPaymentMode { | Payment => () | _ => let styleClass = [ ("input-base", options.style.base->getDictFromJson), ("input-complete", options.style.complete->getDictFromJson), ("input-invalid", options.style.invalid->getDictFromJson), ("input-empty", options.style.empty->getDictFromJson), ] styleClass ->Array.map(item => { let (class, dict) = item if dict->Dict.toArray->Array.length > 0 { generateStyleSheet(class, dict, "widgetstyle")->ignore } }) ->ignore } None }, [config]) React.useEffect(() => { open Promise let handleFun = (ev: Window.event) => { let json = ev.data->safeParse try { let dict = json->getDictFromJson if dict->getDictIsSome("paymentElementCreate") { if ( dict ->Dict.get("paymentElementCreate") ->Option.flatMap(JSON.Decode.bool) ->Option.getOr(false) ) { if ( dict->Dict.get("otherElements")->Option.flatMap(JSON.Decode.bool)->Option.getOr(false) ) { updateOptions(dict) } else { let sdkSessionId = dict->getString("sdkSessionId", "no-element") logger.setSessionId(sdkSessionId) if GlobalVars.isInteg { setBlockConfirm(_ => dict->getBool("blockConfirm", false)) } setCustomPodUri(_ => dict->getString("customPodUri", "")) updateOptions(dict) setSessionId(_ => { sdkSessionId }) if dict->getDictIsSome("publishableKey") { let publishableKey = dict->getString("publishableKey", "") logger.setMerchantId(publishableKey) } if dict->getDictIsSome("analyticsMetadata") { let metadata = dict->getJsonObjectFromDict("analyticsMetadata") logger.setMetadata(metadata) } if dict->getDictIsSome("onCompleteDoThisUsed") { let isCallbackUsedVal = dict->Utils.getBool("onCompleteDoThisUsed", false) setIsCompleteCallbackUsed(_ => isCallbackUsedVal) } if dict->getDictIsSome("isPaymentButtonHandlerProvided") { let isSDKClick = dict->Utils.getBool("isPaymentButtonHandlerProvided", false) setIsPaymentButtonHandlerProvided(_ => isSDKClick) } if dict->getDictIsSome("paymentOptions") { let paymentOptions = dict->getDictFromObj("paymentOptions") let clientSecret = getWarningString(paymentOptions, "clientSecret", "", ~logger) let ephemeralKey = getWarningString(paymentOptions, "ephemeralKey", "", ~logger) setKeys(prev => { ...prev, clientSecret: Some(clientSecret), ephemeralKey, }) logger.setClientSecret(clientSecret) // Update top redirection atom updateRedirectionFlags(paymentOptions) switch getThemePromise(paymentOptions) { | Some(promise) => promise ->then(res => { dict->setConfigs(res) }) ->catch(_ => { dict->setConfigs({ default: DefaultTheme.default, defaultRules: DefaultTheme.defaultRules, }) }) | None => dict->setConfigs({ default: DefaultTheme.default, defaultRules: DefaultTheme.defaultRules, }) }->ignore } let newLaunchTime = dict->getFloat("launchTime", 0.0) setLaunchTime(_ => newLaunchTime) let initLoadlatency = Date.now() -. newLaunchTime logger.setLogInfo( ~value=Window.hrefWithoutSearch, ~eventName=APP_RENDERED, ~latency=initLoadlatency, ) [ ("iframeId", "no-element"->JSON.Encode.string), ("publishableKey", ""->JSON.Encode.string), ("parentURL", "*"->JSON.Encode.string), ("sdkHandleOneClickConfirmPayment", true->JSON.Encode.bool), ]->Array.forEach(keyPair => { dict->CommonHooks.updateKeys(keyPair, setKeys) }) let renderLatency = Date.now() -. initTimestamp logger.setLogInfo( ~eventName=PAYMENT_OPTIONS_PROVIDED, ~latency=renderLatency, ~value="", ) } } else if dict->getDictIsSome("paymentOptions") { let paymentOptions = dict->getDictFromObj("paymentOptions") let clientSecret = getWarningString(paymentOptions, "clientSecret", "", ~logger) let ephemeralKey = getWarningString(paymentOptions, "ephemeralKey", "", ~logger) setKeys(prev => { ...prev, clientSecret: Some(clientSecret), ephemeralKey, }) logger.setClientSecret(clientSecret) // Update top redirection atom updateRedirectionFlags(paymentOptions) switch getThemePromise(paymentOptions) { | Some(promise) => promise ->then(res => { dict->setConfigs(res) }) ->catch(_ => { dict->setConfigs({ default: DefaultTheme.default, defaultRules: DefaultTheme.defaultRules, }) }) | None => dict->setConfigs({ default: DefaultTheme.default, defaultRules: DefaultTheme.defaultRules, }) }->ignore } } else if dict->getDictIsSome("paymentElementsUpdate") { updateOptions(dict) } else if dict->getDictIsSome("ElementsUpdate") { let optionsDict = dict->getDictFromObj("options") let clientSecret = dict->Dict.get("clientSecret") switch clientSecret { | Some(val) => setKeys(prev => { ...prev, clientSecret: Some(val->getStringFromJson("")), }) setConfig(prev => { ...prev, config: { ...prev.config, clientSecret: val->getStringFromJson(""), }, }) | None => () } switch getThemePromise(optionsDict) { | Some(promise) => promise ->then(res => { dict->setConfigs(res) }) ->catch(_ => { dict->setConfigs({ default: DefaultTheme.default, defaultRules: DefaultTheme.defaultRules, }) }) | None => dict->setConfigs({ default: DefaultTheme.default, defaultRules: DefaultTheme.defaultRules, }) }->ignore } if dict->getDictIsSome("sessions") { setSessions(_ => Loaded(dict->getJsonObjectFromDict("sessions"))) } if dict->getDictIsSome("isReadyToPay") { setIsGooglePayReady(_ => dict->getJsonObjectFromDict("isReadyToPay")->JSON.Decode.bool->Option.getOr(false) ) } if dict->getDictIsSome("isSamsungPayReady") { setIsSamsungPayReady(_ => dict->getBool("isSamsungPayReady", false)) } if ( dict->getDictIsSome("customBackendUrl") && dict ->getString("customBackendUrl", "") ->String.length > 0 ) { if dict->getDictIsSome("endpoint") { switch dict->getString("endpoint", "") { | "" => () | endpoint => ApiEndpoint.setApiEndPoint(endpoint) } } } if dict->getDictIsSome("paymentMethodList") { let paymentMethodList = dict->getJsonObjectFromDict("paymentMethodList") let listDict = paymentMethodList->getDictFromJson if optionsPayment.business.name === "" { setOptionsPayment(prev => { ...prev, business: { name: listDict->getString("merchant_name", ""), }, }) } let finalLoadLatency = if launchTime <= 0.0 { 0.0 } else { Date.now() -. launchTime } let updatedState: PaymentType.loadType = paymentMethodList == Dict.make()->JSON.Encode.object ? LoadError(paymentMethodList) : switch listDict->Dict.get("error") { | Some(_) => LoadError(paymentMethodList) | None => let isNonEmptyPaymentMethodList = listDict->getArray("payment_methods")->Array.length > 0 isNonEmptyPaymentMethodList ? Loaded(paymentMethodList) : LoadError(paymentMethodList) } let evalMethodsList = () => switch updatedState { | Loaded(_) => logger.setLogInfo( ~value="Loaded", ~eventName=LOADER_CHANGED, ~latency=finalLoadLatency, ) | LoadError(x) => logger.setLogError( ~value="LoadError: " ++ x->JSON.stringify, ~eventName=LOADER_CHANGED, ~latency=finalLoadLatency, ) | _ => () } if !optionsPayment.displaySavedPaymentMethods { evalMethodsList() } else { switch optionsPayment.customerPaymentMethods { | LoadingSavedCards => () | LoadedSavedCards(list, _) => list->Array.length > 0 ? logger.setLogInfo( ~value="Loaded", ~eventName=LOADER_CHANGED, ~latency=finalLoadLatency, ) : evalMethodsList() | NoResult(_) => evalMethodsList() } } setPaymentMethodList(_ => updatedState) } if dict->getDictIsSome("customerPaymentMethods") { let customerPaymentMethods = dict->PaymentType.createCustomerObjArr("customerPaymentMethods") setOptionsPayment(prev => { ...prev, customerPaymentMethods, }) let finalLoadLatency = if launchTime <= 0.0 { 0.0 } else { Date.now() -. launchTime } let evalMethodsList = () => switch paymentMethodList { | Loaded(_) => logger.setLogInfo( ~value="Loaded", ~eventName=LOADER_CHANGED, ~latency=finalLoadLatency, ) | LoadError(x) => logger.setLogError( ~value="LoadError: " ++ x->JSON.stringify, ~eventName=LOADER_CHANGED, ~latency=finalLoadLatency, ) | _ => () } switch optionsPayment.customerPaymentMethods { | LoadingSavedCards => () | LoadedSavedCards(list, _) => if list->Array.length > 0 { logger.setLogInfo( ~value="Loaded", ~eventName=LOADER_CHANGED, ~latency=finalLoadLatency, ) } else { evalMethodsList() } | NoResult(_) => evalMethodsList() } } if dict->getDictIsSome("savedPaymentMethods") { let savedPaymentMethods = dict->PaymentType.createCustomerObjArr("savedPaymentMethods") setOptionsPayment(prev => { ...prev, savedPaymentMethods, }) let finalLoadLatency = if launchTime <= 0.0 { -1.0 } else { Date.now() -. launchTime } let evalMethodsList = () => switch paymentMethodList { | Loaded(_) => logger.setLogInfo( ~value="Loaded", ~eventName=LOADER_CHANGED, ~latency=finalLoadLatency, ) | LoadError(x) => logger.setLogError( ~value="LoadError: " ++ x->JSON.stringify, ~eventName=LOADER_CHANGED, ~latency=finalLoadLatency, ) | _ => () } switch optionsPayment.customerPaymentMethods { | LoadingSavedCards => () | LoadedSavedCards(list, _) => if list->Array.length > 0 { logger.setLogInfo( ~value="Loaded", ~eventName=LOADER_CHANGED, ~latency=finalLoadLatency, ) } else { evalMethodsList() } | NoResult(_) => evalMethodsList() } } if dict->Dict.get("applePayCanMakePayments")->Option.isSome { setIsApplePayReady(_ => true) } if dict->Dict.get("applePaySessionObjNotPresent")->Option.isSome { setIsApplePayReady(prev => prev && false) } } catch { | _ => setIntegrateErrorError(_ => true) } } handleMessage(handleFun, "Error in parsing sent Data") }, (showCardFormByDefault, paymentMethodOrder, optionsPayment)) let observer = ResizeObserver.newResizerObserver(entries => { entries ->Array.map(item => { setDivH(_ => item.contentRect.height) }) ->ignore }) switch divRef.current->Nullable.toOption { | Some(r) => observer.observe(r) | None => () } React.useEffect(() => { let iframeHeight = divH->Float.equal(0.0) ? divH : divH +. 1.0 messageParentWindow([ ("iframeHeight", iframeHeight->JSON.Encode.float), ("iframeId", iframeId->JSON.Encode.string), ]) None }, (divH, iframeId)) <div ref={divRef->ReactDOM.Ref.domRef}> children </div> }
4,855
10,307
hyperswitch-web
src/ThreeDSAuth.res
.res
open Utils @react.component let make = () => { let (openModal, setOpenModal) = React.useState(_ => false) let (loader, setloader) = React.useState(_ => true) let threeDsAuthoriseUrl = React.useRef("") let (expiryTime, setExpiryTime) = React.useState(_ => 600000.0) let logger = HyperLogger.make(~source=Elements(Payment)) let handleFrictionLess = () => { let ele = Window.querySelector("#threeDsAuthDiv") switch ele->Nullable.toOption { | Some(elem) => { let form1 = elem->makeForm(threeDsAuthoriseUrl.current, "3dsFrictionLess") form1.submit() } | None => () } } let eventsToSendToParent = ["confirmParams", "poll_status", "openurl_if_required"] eventsToSendToParent->UtilityHooks.useSendEventsToParent React.useEffect0(() => { messageParentWindow([("iframeMountedCallback", true->JSON.Encode.bool)]) let handle = (ev: Window.event) => { let json = ev.data->safeParse let dict = json->getDictFromJson if dict->Dict.get("fullScreenIframeMounted")->Option.isSome { let metadata = dict->getJsonObjectFromDict("metadata") let metaDataDict = metadata->JSON.Decode.object->Option.getOr(Dict.make()) let paymentIntentId = metaDataDict->getString("paymentIntentId", "") let publishableKey = metaDataDict->getString("publishableKey", "") logger.setClientSecret(paymentIntentId) logger.setMerchantId(publishableKey) let headersDict = metaDataDict ->getJsonObjectFromDict("headers") ->JSON.Decode.object ->Option.getOr(Dict.make()) threeDsAuthoriseUrl.current = metaDataDict ->getJsonObjectFromDict("threeDSData") ->JSON.Decode.object ->Option.getOr(Dict.make()) ->getString("three_ds_authorize_url", "") let headers = headersDict->convertDictToArrayOfKeyStringTuples let threeDsMethodComp = metaDataDict->getString("3dsMethodComp", "U") open Promise PaymentHelpers.threeDsAuth( ~optLogger=Some(logger), ~clientSecret=paymentIntentId, ~threeDsMethodComp, ~headers, ) ->then(json => { let dict = json->getDictFromJson if dict->Dict.get("error")->Option.isSome { let errorObj = PaymentError.itemToObjMapper(dict) messageParentWindow([("fullscreen", false->JSON.Encode.bool)]) postFailedSubmitResponse( ~errortype=errorObj.error.type_, ~message=errorObj.error.message, ) JSON.Encode.null->resolve } else { let creq = dict->getString("challenge_request", "") let transStatus = dict->getString("trans_status", "Y") let acsUrl = dict->getString("acs_url", "") let ele = Window.querySelector("#threeDsAuthDiv") LoggerUtils.handleLogging( ~optLogger=Some(logger), ~eventName=DISPLAY_THREE_DS_SDK, ~value=transStatus, ~paymentMethod="CARD", ) switch ele->Nullable.toOption { | Some(elem) => if transStatus === "C" { setloader(_ => false) let form = elem->makeForm(acsUrl, "3dsChallenge") let input = Types.createElement("input") input.name = "creq" input.value = creq form.target = "threeDsAuthFrame" form.appendChild(input) form.submit() } else { handleFrictionLess() } | None => () } resolve(json) } }) ->catch(err => { let exceptionMessage = err->formatException LoggerUtils.handleLogging( ~optLogger=Some(logger), ~eventName=DISPLAY_THREE_DS_SDK, ~value=exceptionMessage->JSON.stringify, ~paymentMethod="CARD", ~logType=ERROR, ) let errorObj = PaymentError.itemToObjMapper(dict) postFailedSubmitResponse(~errortype=errorObj.error.type_, ~message=errorObj.error.message) JSON.Encode.null->resolve }) ->ignore } } Window.addEventListener("message", handle) Some(() => {Window.removeEventListener("message", handle)}) }) React.useEffect(() => { if expiryTime < 1000.0 { handleFrictionLess() } let intervalID = setInterval(() => { setExpiryTime(prev => prev -. 1000.0) }, 1000) Some( () => { clearInterval(intervalID) }, ) }, [expiryTime]) <Modal loader={loader} openModal setOpenModal closeCallback={handleFrictionLess}> <div className="backdrop-blur-xl"> <div id="threeDsAuthDiv" className="hidden" /> <iframe id="threeDsAuthFrame" name="threeDsAuthFrame" title="3D Secure Authentication Frame" style={ minHeight: "500px", outline: "none", } width="100%" /> </div> </Modal> }
1,168
10,308
hyperswitch-web
src/App.res
.res
@react.component let make = () => { open CardUtils let url = RescriptReactRouter.useUrl() let (integrateError, setIntegrateErrorError) = React.useState(() => false) let setLoggerState = Recoil.useSetRecoilState(RecoilAtoms.loggerAtom) let paymentMode = getQueryParamsDictforKey(url.search, "componentName") let paymentType = paymentMode->CardThemeType.getPaymentMode let (logger, initTimestamp) = React.useMemo0(() => { (HyperLogger.make(~source=Elements(paymentType)), Date.now()) }) let fullscreenMode = getQueryParamsDictforKey(url.search, "fullscreenType") React.useEffect(() => { setLoggerState(_ => logger) None }, [logger]) React.useEffect0(() => { let handleMetaDataPostMessage = (ev: Window.event) => { let json = ev.data->Utils.safeParse let dict = json->Utils.getDictFromJson if dict->Dict.get("metadata")->Option.isSome { let metadata = dict->Utils.getJsonObjectFromDict("metadata") let config = metadata->Utils.getDictFromJson->Dict.get("config") switch config { | Some(config) => { let config = CardTheme.itemToObjMapper( config->Utils.getDictFromJson, DefaultTheme.default, DefaultTheme.defaultRules, logger, ) generateFontsLink(config.fonts) let dict = config.appearance.rules->Utils.getDictFromJson if dict->Dict.toArray->Array.length > 0 { Utils.generateStyleSheet("", dict, "mystyle") } } | None => () } } } Window.addEventListener("message", handleMetaDataPostMessage) Some(() => Window.removeEventListener("message", handleMetaDataPostMessage)) }) let renderFullscreen = switch paymentMode { | "paymentMethodCollect" => <LoaderController paymentMode setIntegrateErrorError logger initTimestamp> <PaymentMethodCollectElement integrateError logger /> </LoaderController> | _ => switch fullscreenMode { | "paymentloader" => <PaymentLoader /> | "clickToPayLearnMore" => <ClickToPayLearnMore /> | "plaidSDK" => <PlaidSDKIframe /> | "pazeWallet" => <PazeWallet logger /> | "fullscreen" => <div id="fullscreen"> <FullScreenDivDriver /> </div> | "qrData" => <QRCodeDisplay /> | "3dsAuth" => <ThreeDSAuth /> | "redsys3ds" => <Redsys3ds /> | "3ds" => <ThreeDSMethod /> | "voucherData" => <VoucherDisplay /> | "preMountLoader" => { let clientSecret = getQueryParamsDictforKey(url.search, "clientSecret") let sessionId = getQueryParamsDictforKey(url.search, "sessionId") let publishableKey = getQueryParamsDictforKey(url.search, "publishableKey") let endpoint = getQueryParamsDictforKey(url.search, "endpoint") let ephemeralKey = getQueryParamsDictforKey(url.search, "ephemeralKey") let hyperComponentName = getQueryParamsDictforKey( url.search, "hyperComponentName", )->Types.getHyperComponentNameFromStr let merchantHostname = getQueryParamsDictforKey(url.search, "merchantHostname") let customPodUri = getQueryParamsDictforKey(url.search, "customPodUri") <PreMountLoader publishableKey sessionId clientSecret endpoint ephemeralKey hyperComponentName merchantHostname customPodUri /> } | "achBankTransfer" | "bacsBankTransfer" | "sepaBankTransfer" => <BankTransfersPopup transferType=fullscreenMode /> | _ => <LoaderController paymentMode setIntegrateErrorError logger initTimestamp> <Payment paymentMode integrateError logger /> </LoaderController> } } renderFullscreen }
894
10,309
hyperswitch-web
src/NoTheme.res
.res
open CardThemeType let noThemeValues = { fontFamily: "", fontSizeBase: "1rem", colorPrimary: "", colorBackground: "", colorText: "", colorDanger: "", colorDangerText: "", borderRadius: "", fontVariantLigatures: "", fontVariationSettings: "", spacingUnit: "10px", fontWeightLight: "", fontWeightNormal: "", fontWeightMedium: "", fontWeightBold: "", fontLineHeight: "", fontSize2Xl: "", fontSizeXl: "", fontSizeLg: "", fontSizeSm: "", fontSizeXs: "", fontSize2Xs: "", fontSize3Xs: "", colorSuccess: "", colorWarning: "", colorPrimaryText: "", colorBackgroundText: "", colorSuccessText: "", colorWarningText: "", colorTextSecondary: "", colorTextPlaceholder: "", spacingTab: "10px", borderColor: "", spacingAccordionItem: "10px", colorIconCardCvc: "#fd1717", colorIconCardCvcError: "", colorIconCardError: "#fd1717", spacingGridColumn: "20px", spacingGridRow: "20px", buttonBackgroundColor: "", buttonHeight: "48px", buttonWidth: "100%", buttonBorderRadius: "6px", buttonBorderColor: "", buttonTextColor: "", buttonTextFontSize: "16px", buttonTextFontWeight: "500", buttonBorderWidth: "0px", } let noThemeValuesRules = _ => Dict.make()->JSON.Encode.object let default = noThemeValues let defaultRules = noThemeValuesRules
373
10,310
hyperswitch-web
src/States.json
.json
{ "states": { "AF": [ { "name": "Badakhshan", "code": "BDS" }, { "name": "Badghīs", "code": "BDG" }, { "name": "Baghlan", "code": "BGL" }, { "name": "Balkh", "code": "BAL" }, { "name": "Bamyān", "code": "BAM" }, { "name": "Daykundī", "code": "DAY" }, { "name": "Farah", "code": "FRA" }, { "name": "Faryāb", "code": "FYB" }, { "name": "Ghaznī", "code": "GHA" }, { "name": "Ghōr", "code": "GHO" }, { "name": "Helmand", "code": "HEL" }, { "name": "Herat", "code": "HER" }, { "name": "Jowzjan", "code": "JOW" }, { "name": "Kabul", "code": "KAB" }, { "name": "Kandahar", "code": "KAN" }, { "name": "Kapīsā", "code": "KAP" }, { "name": "Khōst", "code": "KHO" }, { "name": "Kunaṟ", "code": "KNR" }, { "name": "Kunduz", "code": "KDZ" }, { "name": "Laghman", "code": "LAG" }, { "name": "Lōgar", "code": "LOG" }, { "name": "Nangarhar", "code": "NAN" }, { "name": "Nīmrōz", "code": "NIM" }, { "name": "Nūristan", "code": "NUR" }, { "name": "Paktiya", "code": "PIA" }, { "name": "Paktīka", "code": "PKA" }, { "name": "Panjshayr", "code": "PAN" }, { "name": "Parwan", "code": "PAR" }, { "name": "Samangan", "code": "SAM" }, { "name": "Sar-e Pul", "code": "SAR" }, { "name": "Takhar", "code": "TAK" }, { "name": "Uruzgan", "code": "URU" }, { "name": "Wardak", "code": "WAR" }, { "name": "Zabul", "code": "ZAB" } ], "AX": [{ "name": "Aland Islands", "code": "Aland Islands" }], "AL": [ { "name": "Berat", "code": "01" }, { "name": "Dibër", "code": "09" }, { "name": "Durrës", "code": "02" }, { "name": "Elbasan", "code": "03" }, { "name": "Fier", "code": "04" }, { "name": "Gjirokastër", "code": "05" }, { "name": "Korçë", "code": "06" }, { "name": "Kukës", "code": "07" }, { "name": "Lezhë", "code": "08" }, { "name": "Shkodër", "code": "10" }, { "name": "Tiranë", "code": "11" }, { "name": "Vlorë", "code": "12" } ], "DZ": [ { "name": "Adrar", "code": "01" }, { "name": "Alger", "code": "16" }, { "name": "Annaba", "code": "23" }, { "name": "Aïn Defla", "code": "44" }, { "name": "Aïn Témouchent", "code": "46" }, { "name": "Batna", "code": "05" }, { "name": "Biskra", "code": "07" }, { "name": "Blida", "code": "09" }, { "name": "Bordj Bou Arréridj", "code": "34" }, { "name": "Bouira", "code": "10" }, { "name": "Boumerdès", "code": "35" }, { "name": "Béchar", "code": "08" }, { "name": "Béjaïa", "code": "06" }, { "name": "Chlef", "code": "02" }, { "name": "Constantine", "code": "25" }, { "name": "Djelfa", "code": "17" }, { "name": "El Bayadh", "code": "32" }, { "name": "El Oued", "code": "39" }, { "name": "El Tarf", "code": "36" }, { "name": "Ghardaïa", "code": "47" }, { "name": "Guelma", "code": "24" }, { "name": "Illizi", "code": "33" }, { "name": "Jijel", "code": "18" }, { "name": "Khenchela", "code": "40" }, { "name": "Laghouat", "code": "03" }, { "name": "M'sila", "code": "28" }, { "name": "Mascara", "code": "29" }, { "name": "Mila", "code": "43" }, { "name": "Mostaganem", "code": "27" }, { "name": "Médéa", "code": "26" }, { "name": "Naama", "code": "45" }, { "name": "Oran", "code": "31" }, { "name": "Ouargla", "code": "30" }, { "name": "Oum el Bouaghi", "code": "04" }, { "name": "Relizane", "code": "48" }, { "name": "Saïda", "code": "20" }, { "name": "Sidi Bel Abbès", "code": "22" }, { "name": "Skikda", "code": "21" }, { "name": "Souk Ahras", "code": "41" }, { "name": "Sétif", "code": "19" }, { "name": "Tamanrasset", "code": "11" }, { "name": "Tiaret", "code": "14" }, { "name": "Tindouf", "code": "37" }, { "name": "Tipaza", "code": "42" }, { "name": "Tissemsilt", "code": "38" }, { "name": "Tizi Ouzou", "code": "15" }, { "name": "Tlemcen", "code": "13" }, { "name": "Tébessa", "code": "12" } ], "AS": [{ "name": "American Samoa", "code": "American Samoa" }], "AD": [ { "name": "Andorra la Vella", "code": "07" }, { "name": "Canillo", "code": "02" }, { "name": "Encamp", "code": "03" }, { "name": "Escaldes-Engordany", "code": "08" }, { "name": "La Massana", "code": "04" }, { "name": "Ordino", "code": "05" }, { "name": "Sant Julià de Lòria", "code": "06" } ], "AO": [ { "name": "Bengo", "code": "BGO" }, { "name": "Benguela", "code": "BGU" }, { "name": "Bié", "code": "BIE" }, { "name": "Cabinda", "code": "CAB" }, { "name": "Cuando Cubango", "code": "CCU" }, { "name": "Cuanza-Norte", "code": "CNO" }, { "name": "Cuanza-Sul", "code": "CUS" }, { "name": "Cunene", "code": "CNN" }, { "name": "Huambo", "code": "HUA" }, { "name": "Huíla", "code": "HUI" }, { "name": "Luanda", "code": "LUA" }, { "name": "Lunda-Norte", "code": "LNO" }, { "name": "Lunda-Sul", "code": "LSU" }, { "name": "Malange", "code": "MAL" }, { "name": "Moxico", "code": "MOX" }, { "name": "Namibe", "code": "NAM" }, { "name": "Uíge", "code": "UIG" }, { "name": "Zaire", "code": "ZAI" } ], "AI": [{ "name": "Anguilla", "code": "Anguilla" }], "AQ": [{ "name": "Antarctica", "code": "Antarctica" }], "AG": [ { "name": "Barbuda", "code": "10" }, { "name": "Redonda", "code": "11" }, { "name": "Saint George", "code": "03" }, { "name": "Saint John", "code": "04" }, { "name": "Saint Mary", "code": "05" }, { "name": "Saint Paul", "code": "06" }, { "name": "Saint Peter", "code": "07" }, { "name": "Saint Philip", "code": "08" } ], "AR": [ { "name": "Buenos Aires", "code": "B" }, { "name": "Catamarca", "code": "K" }, { "name": "Chaco", "code": "H" }, { "name": "Chubut", "code": "U" }, { "name": "Ciudad Autónoma de Buenos Aires", "code": "C" }, { "name": "Corrientes", "code": "W" }, { "name": "Córdoba", "code": "X" }, { "name": "Entre Ríos", "code": "E" }, { "name": "Formosa", "code": "P" }, { "name": "Jujuy", "code": "Y" }, { "name": "La Pampa", "code": "L" }, { "name": "La Rioja", "code": "F" }, { "name": "Mendoza", "code": "M" }, { "name": "Misiones", "code": "N" }, { "name": "Neuquén", "code": "Q" }, { "name": "Río Negro", "code": "R" }, { "name": "Salta", "code": "A" }, { "name": "San Juan", "code": "J" }, { "name": "San Luis", "code": "D" }, { "name": "Santa Cruz", "code": "Z" }, { "name": "Santa Fe", "code": "S" }, { "name": "Santiago del Estero", "code": "G" }, { "name": "Tierra del Fuego", "code": "V" }, { "name": "Tucumán", "code": "T" } ], "AM": [ { "name": "Aragac̣otn", "code": "AG" }, { "name": "Ararat", "code": "AR" }, { "name": "Armavir", "code": "AV" }, { "name": "Erevan", "code": "ER" }, { "name": "Geġark'unik'", "code": "GR" }, { "name": "Kotayk'", "code": "KT" }, { "name": "Loṙi", "code": "LO" }, { "name": "Syunik'", "code": "SU" }, { "name": "Tavuš", "code": "TV" }, { "name": "Vayoć Jor", "code": "VD" }, { "name": "Širak", "code": "SH" } ], "AW": [{ "name": "Aruba", "code": "Aruba" }], "AU": [ { "name": "Australian Capital Territory", "code": "ACT" }, { "name": "New South Wales", "code": "NSW" }, { "name": "Northern Territory", "code": "NT" }, { "name": "Queensland", "code": "QLD" }, { "name": "South Australia", "code": "SA" }, { "name": "Tasmania", "code": "TAS" }, { "name": "Victoria", "code": "VIC" }, { "name": "Western Australia", "code": "WA" } ], "AT": [ { "name": "Burgenland", "code": "1" }, { "name": "Carinthia", "code": "2" }, { "name": "Lower Austria", "code": "3" }, { "name": "Salzburg", "code": "5" }, { "name": "Styria", "code": "6" }, { "name": "Tyrol", "code": "7" }, { "name": "Upper Austria", "code": "4" }, { "name": "Vienna", "code": "9" }, { "name": "Vorarlberg", "code": "8" } ], "AZ": [ { "name": "Absheron District", "code": "ABS" }, { "name": "Agdam District", "code": "AGM" }, { "name": "Agdash District", "code": "AGS" }, { "name": "Aghjabadi District", "code": "AGC" }, { "name": "Agstafa District", "code": "AGA" }, { "name": "Agsu District", "code": "AGU" }, { "name": "Astara District", "code": "AST" }, { "name": "Babek District", "code": "BAB" }, { "name": "Baku", "code": "BA" }, { "name": "Balakan District", "code": "BAL" }, { "name": "Barda District", "code": "BAR" }, { "name": "Beylagan District", "code": "BEY" }, { "name": "Bilasuvar District", "code": "BIL" }, { "name": "Dashkasan District", "code": "DAS" }, { "name": "Fizuli District", "code": "FUZ" }, { "name": "Ganja", "code": "GA" }, { "name": "Gobustan District", "code": "QOB" }, { "name": "Goranboy District", "code": "GOR" }, { "name": "Goychay", "code": "GOY" }, { "name": "Goygol District", "code": "GYG" }, { "name": "Gədəbəy", "code": "GAD" }, { "name": "Hajigabul District", "code": "HAC" }, { "name": "Imishli District", "code": "IMI" }, { "name": "Ismailli District", "code": "ISM" }, { "name": "Jabrayil District", "code": "CAB" }, { "name": "Jalilabad District", "code": "CAL" }, { "name": "Julfa District", "code": "CUL" }, { "name": "Kalbajar District", "code": "KAL" }, { "name": "Kangarli District", "code": "KAN" }, { "name": "Khachmaz District", "code": "XAC" }, { "name": "Khizi District", "code": "XIZ" }, { "name": "Khojali District", "code": "XCI" }, { "name": "Kurdamir District", "code": "KUR" }, { "name": "Lachin District", "code": "LAC" }, { "name": "Lankaran", "code": "LAN" }, { "name": "Lankaran District", "code": "LA" }, { "name": "Lerik District", "code": "LER" }, { "name": "Martuni", "code": "XVD" }, { "name": "Masally District", "code": "MAS" }, { "name": "Mingachevir", "code": "MI" }, { "name": "Nakhchivan Autonomous Republic", "code": "NX" }, { "name": "Neftchala District", "code": "NEF" }, { "name": "Oghuz District", "code": "OGU" }, { "name": "Ordubad District", "code": "ORD" }, { "name": "Qabala District", "code": "QAB" }, { "name": "Qakh District", "code": "QAX" }, { "name": "Qazakh District", "code": "QAZ" }, { "name": "Quba District", "code": "QBA" }, { "name": "Qubadli District", "code": "QBI" }, { "name": "Qusar District", "code": "QUS" }, { "name": "Saatly District", "code": "SAT" }, { "name": "Sabirabad District", "code": "SAB" }, { "name": "Sadarak District", "code": "SAD" }, { "name": "Salyan District", "code": "SAL" }, { "name": "Samukh District", "code": "SMX" }, { "name": "Shabran District", "code": "SBN" }, { "name": "Shahbuz District", "code": "SAH" }, { "name": "Shaki", "code": "SA" }, { "name": "Shaki District", "code": "SAK" }, { "name": "Shamakhi District", "code": "SMI" }, { "name": "Shamkir District", "code": "SKR" }, { "name": "Sharur District", "code": "SAR" }, { "name": "Shirvan", "code": "SR" }, { "name": "Shusha District", "code": "SUS" }, { "name": "Siazan District", "code": "SIY" }, { "name": "Sumqayit", "code": "SM" }, { "name": "Tartar District", "code": "TAR" }, { "name": "Tovuz District", "code": "TOV" }, { "name": "Ujar District", "code": "UCA" }, { "name": "Yardymli District", "code": "YAR" }, { "name": "Yevlakh", "code": "YE" }, { "name": "Yevlakh District", "code": "YEV" }, { "name": "Zangilan District", "code": "ZAN" }, { "name": "Zaqatala District", "code": "ZAQ" }, { "name": "Zardab District", "code": "ZAR" } ], "BS": [ { "name": "Acklins", "code": "AK" }, { "name": "Acklins and Crooked Islands", "code": "AC" }, { "name": "Berry Islands", "code": "BY" }, { "name": "Bimini", "code": "BI" }, { "name": "Black Point", "code": "BP" }, { "name": "Cat Island", "code": "CI" }, { "name": "Central Abaco", "code": "CO" }, { "name": "Central Andros", "code": "CS" }, { "name": "Central Eleuthera", "code": "CE" }, { "name": "Crooked Island", "code": "CK" }, { "name": "East Grand Bahama", "code": "EG" }, { "name": "Exuma", "code": "EX" }, { "name": "Freeport", "code": "FP" }, { "name": "Fresh Creek", "code": "FC" }, { "name": "Governor's Harbour", "code": "GH" }, { "name": "Grand Cay", "code": "GC" }, { "name": "Green Turtle Cay", "code": "GT" }, { "name": "Harbour Island", "code": "HI" }, { "name": "High Rock", "code": "HR" }, { "name": "Hope Town", "code": "HT" }, { "name": "Inagua", "code": "IN" }, { "name": "Kemps Bay", "code": "KB" }, { "name": "Long Island", "code": "LI" }, { "name": "Mangrove Cay", "code": "MC" }, { "name": "Marsh Harbour", "code": "MH" }, { "name": "Mayaguana District", "code": "MG" }, { "name": "New Providence", "code": "NP" }, { "name": "Nichollstown and Berry Islands", "code": "NB" }, { "name": "North Abaco", "code": "NO" }, { "name": "North Andros", "code": "NS" }, { "name": "North Eleuthera", "code": "NE" }, { "name": "Ragged Island", "code": "RI" }, { "name": "Rock Sound", "code": "RS" }, { "name": "Rum Cay District", "code": "RC" }, { "name": "San Salvador Island", "code": "SS" }, { "name": "San Salvador and Rum Cay", "code": "SR" }, { "name": "Sandy Point", "code": "SP" }, { "name": "South Abaco", "code": "SO" }, { "name": "South Andros", "code": "SA" }, { "name": "South Eleuthera", "code": "SE" }, { "name": "Spanish Wells", "code": "SW" }, { "name": "West Grand Bahama", "code": "WG" } ], "BH": [ { "name": "Capital Governorate", "code": "13" }, { "name": "Central Governorate", "code": "16" }, { "name": "Muharraq Governorate", "code": "15" }, { "name": "Northern Governorate", "code": "17" }, { "name": "Southern Governorate", "code": "14" } ], "BD": [ { "name": "Bagerhat District", "code": "05" }, { "name": "Bahadia", "code": "33" }, { "name": "Bandarban District", "code": "01" }, { "name": "Barguna District", "code": "02" }, { "name": "Barisal District", "code": "06" }, { "name": "Barisal Division", "code": "A" }, { "name": "Bhola District", "code": "07" }, { "name": "Bogra District", "code": "03" }, { "name": "Brahmanbaria District", "code": "04" }, { "name": "Chandpur District", "code": "09" }, { "name": "Chapai Nawabganj District", "code": "45" }, { "name": "Chittagong District", "code": "10" }, { "name": "Chittagong Division", "code": "B" }, { "name": "Chuadanga District", "code": "12" }, { "name": "Comilla District", "code": "08" }, { "name": "Cox's Bazar District", "code": "11" }, { "name": "Dhaka District", "code": "13" }, { "name": "Dhaka Division", "code": "C" }, { "name": "Dinajpur District", "code": "14" }, { "name": "Faridpur District", "code": "15" }, { "name": "Feni District", "code": "16" }, { "name": "Gaibandha District", "code": "19" }, { "name": "Gazipur District", "code": "18" }, { "name": "Gopalganj District", "code": "17" }, { "name": "Habiganj District", "code": "20" }, { "name": "Jamalpur District", "code": "21" }, { "name": "Jessore District", "code": "22" }, { "name": "Jhalokati District", "code": "25" }, { "name": "Jhenaidah District", "code": "23" }, { "name": "Joypurhat District", "code": "24" }, { "name": "Khagrachari District", "code": "29" }, { "name": "Khulna District", "code": "27" }, { "name": "Khulna Division", "code": "D" }, { "name": "Kishoreganj District", "code": "26" }, { "name": "Kurigram District", "code": "28" }, { "name": "Kushtia District", "code": "30" }, { "name": "Lakshmipur District", "code": "31" }, { "name": "Lalmonirhat District", "code": "32" }, { "name": "Madaripur District", "code": "36" }, { "name": "Meherpur District", "code": "39" }, { "name": "Moulvibazar District", "code": "38" }, { "name": "Munshiganj District", "code": "35" }, { "name": "Mymensingh District", "code": "34" }, { "name": "Mymensingh Division", "code": "H" }, { "name": "Naogaon District", "code": "48" }, { "name": "Narail District", "code": "43" }, { "name": "Narayanganj District", "code": "40" }, { "name": "Natore District", "code": "44" }, { "name": "Netrokona District", "code": "41" }, { "name": "Nilphamari District", "code": "46" }, { "name": "Noakhali District", "code": "47" }, { "name": "Pabna District", "code": "49" }, { "name": "Panchagarh District", "code": "52" }, { "name": "Patuakhali District", "code": "51" }, { "name": "Pirojpur District", "code": "50" }, { "name": "Rajbari District", "code": "53" }, { "name": "Rajshahi District", "code": "54" }, { "name": "Rajshahi Division", "code": "E" }, { "name": "Rangamati Hill District", "code": "56" }, { "name": "Rangpur District", "code": "55" }, { "name": "Rangpur Division", "code": "F" }, { "name": "Satkhira District", "code": "58" }, { "name": "Shariatpur District", "code": "62" }, { "name": "Sherpur District", "code": "57" }, { "name": "Sirajganj District", "code": "59" }, { "name": "Sunamganj District", "code": "61" }, { "name": "Sylhet District", "code": "60" }, { "name": "Sylhet Division", "code": "G" }, { "name": "Tangail District", "code": "63" }, { "name": "Thakurgaon District", "code": "64" } ], "BB": [ { "name": "Christ Church", "code": "01" }, { "name": "Saint Andrew", "code": "02" }, { "name": "Saint George", "code": "03" }, { "name": "Saint James", "code": "04" }, { "name": "Saint John", "code": "05" }, { "name": "Saint Joseph", "code": "06" }, { "name": "Saint Lucy", "code": "07" }, { "name": "Saint Michael", "code": "08" }, { "name": "Saint Peter", "code": "09" }, { "name": "Saint Philip", "code": "10" }, { "name": "Saint Thomas", "code": "11" } ], "BY": [ { "name": "Brest Region", "code": "BR" }, { "name": "Gomel Region", "code": "HO" }, { "name": "Grodno Region", "code": "HR" }, { "name": "Minsk", "code": "HM" }, { "name": "Minsk Region", "code": "MI" }, { "name": "Mogilev Region", "code": "MA" }, { "name": "Vitebsk Region", "code": "VI" } ], "BE": [ { "name": "Antwerp", "code": "VAN" }, { "name": "Brussels-Capital Region", "code": "BRU" }, { "name": "East Flanders", "code": "VOV" }, { "name": "Flanders", "code": "VLG" }, { "name": "Flemish Brabant", "code": "VBR" }, { "name": "Hainaut", "code": "WHT" }, { "name": "Limburg", "code": "VLI" }, { "name": "Liège", "code": "WLG" }, { "name": "Luxembourg", "code": "WLX" }, { "name": "Namur", "code": "WNA" }, { "name": "Wallonia", "code": "WAL" }, { "name": "Walloon Brabant", "code": "WBR" }, { "name": "West Flanders", "code": "VWV" } ], "BZ": [ { "name": "Belize District", "code": "BZ" }, { "name": "Cayo District", "code": "CY" }, { "name": "Corozal District", "code": "CZL" }, { "name": "Orange Walk District", "code": "OW" }, { "name": "Stann Creek District", "code": "SC" }, { "name": "Toledo District", "code": "TOL" } ], "BJ": [ { "name": "Alibori Department", "code": "AL" }, { "name": "Atakora Department", "code": "AK" }, { "name": "Atlantique Department", "code": "AQ" }, { "name": "Borgou Department", "code": "BO" }, { "name": "Collines Department", "code": "CO" }, { "name": "Donga Department", "code": "DO" }, { "name": "Kouffo Department", "code": "KO" }, { "name": "Littoral Department", "code": "LI" }, { "name": "Mono Department", "code": "MO" }, { "name": "Ouémé Department", "code": "OU" }, { "name": "Plateau Department", "code": "PL" }, { "name": "Zou Department", "code": "ZO" } ], "BM": [ { "name": "Devonshire Parish", "code": "DEV" }, { "name": "Hamilton Municipality", "code": "HAM" }, { "name": "Hamilton Parish", "code": "HA" }, { "name": "Paget Parish", "code": "PAG" }, { "name": "Pembroke Parish", "code": "PEM" }, { "name": "Saint George's Municipality", "code": "SG" }, { "name": "Saint George's Parish", "code": "SGE" }, { "name": "Sandys Parish", "code": "SAN" }, { "name": "Smith's Parish,", "code": "SMI" }, { "name": "Southampton Parish", "code": "SOU" }, { "name": "Warwick Parish", "code": "WAR" } ], "BT": [ { "name": "Bumthang District", "code": "33" }, { "name": "Chukha District", "code": "12" }, { "name": "Dagana District", "code": "22" }, { "name": "Gasa District", "code": "GA" }, { "name": "Haa District", "code": "13" }, { "name": "Lhuntse District", "code": "44" }, { "name": "Mongar District", "code": "42" }, { "name": "Paro District", "code": "11" }, { "name": "Pemagatshel District", "code": "43" }, { "name": "Punakha District", "code": "23" }, { "name": "Samdrup Jongkhar District", "code": "45" }, { "name": "Samtse District", "code": "14" }, { "name": "Sarpang District", "code": "31" }, { "name": "Thimphu District", "code": "15" }, { "name": "Trashigang District", "code": "41" }, { "name": "Trongsa District", "code": "32" }, { "name": "Tsirang District", "code": "21" }, { "name": "Wangdue Phodrang District", "code": "24" }, { "name": "Zhemgang District", "code": "34" } ], "BO": [ { "name": "Beni Department", "code": "B" }, { "name": "Chuquisaca Department", "code": "H" }, { "name": "Cochabamba Department", "code": "C" }, { "name": "La Paz Department", "code": "L" }, { "name": "Oruro Department", "code": "O" }, { "name": "Pando Department", "code": "N" }, { "name": "Potosí Department", "code": "P" }, { "name": "Santa Cruz Department", "code": "S" }, { "name": "Tarija Department", "code": "T" } ], "BQ": [ { "name": "Bonaire, Sint Eustatius and Saba", "code": "Bonaire, Sint Eustatius and Saba" } ], "BA": [ { "name": "Bosnian Podrinje Canton", "code": "05" }, { "name": "Brčko District", "code": "BRC" }, { "name": "Canton 10", "code": "10" }, { "name": "Central Bosnia Canton", "code": "06" }, { "name": "Federation of Bosnia and Herzegovina", "code": "BIH" }, { "name": "Herzegovina-Neretva Canton", "code": "07" }, { "name": "Posavina Canton", "code": "02" }, { "name": "Republika Srpska", "code": "SRP" }, { "name": "Sarajevo Canton", "code": "09" }, { "name": "Tuzla Canton", "code": "03" }, { "name": "Una-Sana Canton", "code": "01" }, { "name": "West Herzegovina Canton", "code": "08" }, { "name": "Zenica-Doboj Canton", "code": "04" } ], "BW": [ { "name": "Central District", "code": "CE" }, { "name": "Ghanzi District", "code": "GH" }, { "name": "Kgalagadi District", "code": "KG" }, { "name": "Kgatleng District", "code": "KL" }, { "name": "Kweneng District", "code": "KW" }, { "name": "Ngamiland", "code": "NG" }, { "name": "North-East District", "code": "NE" }, { "name": "North-West District", "code": "NW" }, { "name": "South-East District", "code": "SE" }, { "name": "Southern District", "code": "SO" } ], "BV": [{ "name": "Bouvet Island", "code": "Bouvet Island" }], "BR": [ { "name": "Acre", "code": "AC" }, { "name": "Alagoas", "code": "AL" }, { "name": "Amapá", "code": "AP" }, { "name": "Amazonas", "code": "AM" }, { "name": "Bahia", "code": "BA" }, { "name": "Ceará", "code": "CE" }, { "name": "Espírito Santo", "code": "ES" }, { "name": "Federal District", "code": "DF" }, { "name": "Goiás", "code": "GO" }, { "name": "Maranhão", "code": "MA" }, { "name": "Mato Grosso", "code": "MT" }, { "name": "Mato Grosso do Sul", "code": "MS" }, { "name": "Minas Gerais", "code": "MG" }, { "name": "Paraná", "code": "PR" }, { "name": "Paraíba", "code": "PB" }, { "name": "Pará", "code": "PA" }, { "name": "Pernambuco", "code": "PE" }, { "name": "Piauí", "code": "PI" }, { "name": "Rio Grande do Norte", "code": "RN" }, { "name": "Rio Grande do Sul", "code": "RS" }, { "name": "Rio de Janeiro", "code": "RJ" }, { "name": "Rondônia", "code": "RO" }, { "name": "Roraima", "code": "RR" }, { "name": "Santa Catarina", "code": "SC" }, { "name": "Sergipe", "code": "SE" }, { "name": "São Paulo", "code": "SP" }, { "name": "Tocantins", "code": "TO" } ], "IO": [ { "name": "British Indian Ocean Territory", "code": "British Indian Ocean Territory" } ], "BN": [ { "name": "Belait District", "code": "BE" }, { "name": "Brunei-Muara District", "code": "BM" }, { "name": "Temburong District", "code": "TE" }, { "name": "Tutong District", "code": "TU" } ], "BG": [ { "name": "Blagoevgrad Province", "code": "01" }, { "name": "Burgas Province", "code": "02" }, { "name": "Dobrich Province", "code": "08" }, { "name": "Gabrovo Province", "code": "07" }, { "name": "Haskovo Province", "code": "26" }, { "name": "Kardzhali Province", "code": "09" }, { "name": "Kyustendil Province", "code": "10" }, { "name": "Lovech Province", "code": "11" }, { "name": "Montana Province", "code": "12" }, { "name": "Pazardzhik Province", "code": "13" }, { "name": "Pernik Province", "code": "14" }, { "name": "Pleven Province", "code": "15" }, { "name": "Plovdiv Province", "code": "16" }, { "name": "Razgrad Province", "code": "17" }, { "name": "Ruse Province", "code": "18" }, { "name": "Shumen", "code": "27" }, { "name": "Silistra Province", "code": "19" }, { "name": "Sliven Province", "code": "20" }, { "name": "Smolyan Province", "code": "21" }, { "name": "Sofia City Province", "code": "22" }, { "name": "Sofia Province", "code": "23" }, { "name": "Stara Zagora Province", "code": "24" }, { "name": "Targovishte Province", "code": "25" }, { "name": "Varna Province", "code": "03" }, { "name": "Veliko Tarnovo Province", "code": "04" }, { "name": "Vidin Province", "code": "05" }, { "name": "Vratsa Province", "code": "06" }, { "name": "Yambol Province", "code": "28" } ], "BF": [ { "name": "Balé Province", "code": "BAL" }, { "name": "Bam Province", "code": "BAM" }, { "name": "Banwa Province", "code": "BAN" }, { "name": "Bazèga Province", "code": "BAZ" }, { "name": "Boucle du Mouhoun Region", "code": "01" }, { "name": "Bougouriba Province", "code": "BGR" }, { "name": "Boulgou", "code": "BLG" }, { "name": "Cascades Region", "code": "02" }, { "name": "Centre", "code": "03" }, { "name": "Centre-Est Region", "code": "04" }, { "name": "Centre-Nord Region", "code": "05" }, { "name": "Centre-Ouest Region", "code": "06" }, { "name": "Centre-Sud Region", "code": "07" }, { "name": "Comoé Province", "code": "COM" }, { "name": "Est Region", "code": "08" }, { "name": "Ganzourgou Province", "code": "GAN" }, { "name": "Gnagna Province", "code": "GNA" }, { "name": "Gourma Province", "code": "GOU" }, { "name": "Hauts-Bassins Region", "code": "09" }, { "name": "Houet Province", "code": "HOU" }, { "name": "Ioba Province", "code": "IOB" }, { "name": "Kadiogo Province", "code": "KAD" }, { "name": "Komondjari Province", "code": "KMD" }, { "name": "Kompienga Province", "code": "KMP" }, { "name": "Kossi Province", "code": "KOS" }, { "name": "Koulpélogo Province", "code": "KOP" }, { "name": "Kouritenga Province", "code": "KOT" }, { "name": "Kourwéogo Province", "code": "KOW" }, { "name": "Kénédougou Province", "code": "KEN" }, { "name": "Loroum Province", "code": "LOR" }, { "name": "Léraba Province", "code": "LER" }, { "name": "Mouhoun", "code": "MOU" }, { "name": "Nahouri Province", "code": "NAO" }, { "name": "Namentenga Province", "code": "NAM" }, { "name": "Nayala Province", "code": "NAY" }, { "name": "Nord Region, Burkina Faso", "code": "10" }, { "name": "Noumbiel Province", "code": "NOU" }, { "name": "Oubritenga Province", "code": "OUB" }, { "name": "Oudalan Province", "code": "OUD" }, { "name": "Passoré Province", "code": "PAS" }, { "name": "Plateau-Central Region", "code": "11" }, { "name": "Poni Province", "code": "PON" }, { "name": "Sahel Region", "code": "12" }, { "name": "Sanguié Province", "code": "SNG" }, { "name": "Sanmatenga Province", "code": "SMT" }, { "name": "Sissili Province", "code": "SIS" }, { "name": "Soum Province", "code": "SOM" }, { "name": "Sourou Province", "code": "SOR" }, { "name": "Sud-Ouest Region", "code": "13" }, { "name": "Séno Province", "code": "SEN" }, { "name": "Tapoa Province", "code": "TAP" }, { "name": "Tuy Province", "code": "TUI" }, { "name": "Yagha Province", "code": "YAG" }, { "name": "Yatenga Province", "code": "YAT" }, { "name": "Ziro Province", "code": "ZIR" }, { "name": "Zondoma Province", "code": "ZON" }, { "name": "Zoundwéogo Province", "code": "ZOU" } ], "BI": [ { "name": "Bubanza Province", "code": "BB" }, { "name": "Bujumbura Mairie Province", "code": "BM" }, { "name": "Bujumbura Rural Province", "code": "BL" }, { "name": "Bururi Province", "code": "BR" }, { "name": "Cankuzo Province", "code": "CA" }, { "name": "Cibitoke Province", "code": "CI" }, { "name": "Gitega Province", "code": "GI" }, { "name": "Karuzi Province", "code": "KR" }, { "name": "Kayanza Province", "code": "KY" }, { "name": "Kirundo Province", "code": "KI" }, { "name": "Makamba Province", "code": "MA" }, { "name": "Muramvya Province", "code": "MU" }, { "name": "Muyinga Province", "code": "MY" }, { "name": "Mwaro Province", "code": "MW" }, { "name": "Ngozi Province", "code": "NG" }, { "name": "Rumonge Province", "code": "RM" }, { "name": "Rutana Province", "code": "RT" }, { "name": "Ruyigi Province", "code": "RY" } ], "KH": [ { "name": "Banteay Meanchey Province", "code": "1" }, { "name": "Battambang Province", "code": "2" }, { "name": "Kampong Cham Province", "code": "3" }, { "name": "Kampong Chhnang Province", "code": "4" }, { "name": "Kampong Speu Province", "code": "5" }, { "name": "Kampot Province", "code": "7" }, { "name": "Kandal Province", "code": "8" }, { "name": "Kep Province", "code": "23" }, { "name": "Koh Kong Province", "code": "9" }, { "name": "Kratié Province", "code": "10" }, { "name": "Mondulkiri Province", "code": "11" }, { "name": "Oddar Meanchey Province", "code": "22" }, { "name": "Pailin Province", "code": "24" }, { "name": "Phnom Penh", "code": "12" }, { "name": "Preah Vihear Province", "code": "13" }, { "name": "Prey Veng Province", "code": "14" }, { "name": "Pursat Province", "code": "15" }, { "name": "Ratanakiri Province", "code": "16" }, { "name": "Siem Reap Province", "code": "17" }, { "name": "Sihanoukville Province", "code": "18" }, { "name": "Stung Treng Province", "code": "19" }, { "name": "Svay Rieng Province", "code": "20" }, { "name": "Tai Po District", "code": "NTP" }, { "name": "Takéo Province", "code": "21" } ], "CM": [ { "name": "Adamawa", "code": "AD" }, { "name": "Centre", "code": "CE" }, { "name": "East", "code": "ES" }, { "name": "Far North", "code": "EN" }, { "name": "Littoral", "code": "LT" }, { "name": "North", "code": "NO" }, { "name": "Northwest", "code": "NW" }, { "name": "South", "code": "SU" }, { "name": "Southwest", "code": "SW" }, { "name": "West", "code": "OU" } ], "CA": [ { "name": "Alberta", "code": "AB" }, { "name": "British Columbia", "code": "BC" }, { "name": "Manitoba", "code": "MB" }, { "name": "New Brunswick", "code": "NB" }, { "name": "Newfoundland and Labrador", "code": "NL" }, { "name": "Northwest Territories", "code": "NT" }, { "name": "Nova Scotia", "code": "NS" }, { "name": "Nunavut", "code": "NU" }, { "name": "Ontario", "code": "ON" }, { "name": "Prince Edward Island", "code": "PE" }, { "name": "Quebec", "code": "QC" }, { "name": "Saskatchewan", "code": "SK" }, { "name": "Yukon", "code": "YT" } ], "CV": [ { "name": "Barlavento Islands", "code": "B" }, { "name": "Boa Vista", "code": "BV" }, { "name": "Brava", "code": "BR" }, { "name": "Maio Municipality", "code": "MA" }, { "name": "Mosteiros", "code": "MO" }, { "name": "Paul", "code": "PA" }, { "name": "Porto Novo", "code": "PN" }, { "name": "Praia", "code": "PR" }, { "name": "Ribeira Brava Municipality", "code": "RB" }, { "name": "Ribeira Grande", "code": "RG" }, { "name": "Ribeira Grande de Santiago", "code": "RS" }, { "name": "Sal", "code": "SL" }, { "name": "Santa Catarina", "code": "CA" }, { "name": "Santa Catarina do Fogo", "code": "CF" }, { "name": "Santa Cruz", "code": "CR" }, { "name": "Sotavento Islands", "code": "S" }, { "name": "São Domingos", "code": "SD" }, { "name": "São Filipe", "code": "SF" }, { "name": "São Lourenço dos Órgãos", "code": "SO" }, { "name": "São Miguel", "code": "SM" }, { "name": "São Vicente", "code": "SV" }, { "name": "Tarrafal", "code": "TA" }, { "name": "Tarrafal de São Nicolau", "code": "TS" } ], "KY": [{ "name": "Cayman Islands", "code": "Cayman Islands" }], "CF": [ { "name": "Bamingui-Bangoran Prefecture", "code": "BB" }, { "name": "Bangui", "code": "BGF" }, { "name": "Basse-Kotto Prefecture", "code": "BK" }, { "name": "Haut-Mbomou Prefecture", "code": "HM" }, { "name": "Haute-Kotto Prefecture", "code": "HK" }, { "name": "Kémo Prefecture", "code": "KG" }, { "name": "Lobaye Prefecture", "code": "LB" }, { "name": "Mambéré-Kadéï", "code": "HS" }, { "name": "Mbomou Prefecture", "code": "MB" }, { "name": "Nana-Grébizi Economic Prefecture", "code": "KB" }, { "name": "Nana-Mambéré Prefecture", "code": "NM" }, { "name": "Ombella-M'Poko Prefecture", "code": "MP" }, { "name": "Ouaka Prefecture", "code": "UK" }, { "name": "Ouham Prefecture", "code": "AC" }, { "name": "Ouham-Pendé Prefecture", "code": "OP" }, { "name": "Sangha-Mbaéré", "code": "SE" }, { "name": "Vakaga Prefecture", "code": "VK" } ], "TD": [ { "name": "Bahr el Gazel", "code": "BG" }, { "name": "Batha Region", "code": "BA" }, { "name": "Borkou", "code": "BO" }, { "name": "Ennedi Region", "code": "EN" }, { "name": "Ennedi-Est", "code": "EE" }, { "name": "Ennedi-Ouest", "code": "EO" }, { "name": "Guéra Region", "code": "GR" }, { "name": "Hadjer-Lamis", "code": "HL" }, { "name": "Kanem Region", "code": "KA" }, { "name": "Lac Region", "code": "LC" }, { "name": "Logone Occidental Region", "code": "LO" }, { "name": "Logone Oriental Region", "code": "LR" }, { "name": "Mandoul Region", "code": "MA" }, { "name": "Mayo-Kebbi Est Region", "code": "ME" }, { "name": "Mayo-Kebbi Ouest Region", "code": "MO" }, { "name": "Moyen-Chari Region", "code": "MC" }, { "name": "N'Djamena", "code": "ND" }, { "name": "Ouaddaï Region", "code": "OD" }, { "name": "Salamat Region", "code": "SA" }, { "name": "Sila Region", "code": "SI" }, { "name": "Tandjilé Region", "code": "TA" }, { "name": "Tibesti Region", "code": "TI" }, { "name": "Wadi Fira Region", "code": "WF" } ], "CL": [ { "name": "Antofagasta Region", "code": "AN" }, { "name": "Araucanía Region", "code": "AR" }, { "name": "Arica y Parinacota Region", "code": "AP" }, { "name": "Atacama Region", "code": "AT" }, { "name": "Aysén Region", "code": "AI" }, { "name": "Bío Bío Region", "code": "BI" }, { "name": "Coquimbo Region", "code": "CO" }, { "name": "Los Lagos Region", "code": "LL" }, { "name": "Los Ríos Region", "code": "LR" }, { "name": "Magellan and the Chilean Antarctic Region", "code": "MA" }, { "name": "Maule Region", "code": "ML" }, { "name": "O'Higgins", "code": "LI" }, { "name": "Santiago Metropolitan Region", "code": "RM" }, { "name": "Tarapacá Region", "code": "TA" }, { "name": "Valparaíso", "code": "VS" }, { "name": "Ñuble Region", "code": "NB" } ], "CN": [ { "name": "Anhui", "code": "AH" }, { "name": "Beijing", "code": "BJ" }, { "name": "Chongqing", "code": "CQ" }, { "name": "Fujian", "code": "FJ" }, { "name": "Gansu", "code": "GS" }, { "name": "Guangdong", "code": "GD" }, { "name": "Guangxi Zhuang Autonomous Region", "code": "GX" }, { "name": "Guizhou", "code": "GZ" }, { "name": "Hainan", "code": "HI" }, { "name": "Hebei", "code": "HE" }, { "name": "Heilongjiang", "code": "HL" }, { "name": "Henan", "code": "HA" }, { "name": "Hong Kong", "code": "HK" }, { "name": "Hubei", "code": "HB" }, { "name": "Hunan", "code": "HN" }, { "name": "Inner Mongolia", "code": "NM" }, { "name": "Jiangsu", "code": "JS" }, { "name": "Jiangxi", "code": "JX" }, { "name": "Jilin", "code": "JL" }, { "name": "Keelung", "code": "TW-KEE" }, { "name": "Liaoning", "code": "LN" }, { "name": "Macau", "code": "MO" }, { "name": "Ningxia Hui Autonomous Region", "code": "NX" }, { "name": "Qinghai", "code": "QH" }, { "name": "Shaanxi", "code": "SN" }, { "name": "Shandong", "code": "SD" }, { "name": "Shanghai", "code": "SH" }, { "name": "Shanxi", "code": "SX" }, { "name": "Sichuan", "code": "SC" }, { "name": "Taiwan Province, People's Republic of China", "code": "TW" }, { "name": "Tibet Autonomous Region", "code": "XZ" }, { "name": "Xinjiang", "code": "XJ" }, { "name": "Yunnan", "code": "YN" }, { "name": "Zhejiang", "code": "ZJ" } ], "CX": [{ "name": "Christmas Island", "code": "Christmas Island" }], "CC": [ { "name": "Cocos (Keeling) Islands", "code": "Cocos (Keeling) Islands" } ], "CO": [ { "name": "Amazonas Department", "code": "AMA" }, { "name": "Antioquia Department", "code": "ANT" }, { "name": "Arauca Department", "code": "ARA" }, { "name": "Archipelago of Saint Andréws, Providence and Saint Catalina", "code": "SAP" }, { "name": "Atlántico Department", "code": "ATL" }, { "name": "Bolívar Department", "code": "BOL" }, { "name": "Boyacá Department", "code": "BOY" }, { "name": "Caldas Department", "code": "CAL" }, { "name": "Caquetá Department", "code": "CAQ" }, { "name": "Casanare Department", "code": "CAS" }, { "name": "Cauca Department", "code": "CAU" }, { "name": "Cesar Department", "code": "CES" }, { "name": "Chocó Department", "code": "CHO" }, { "name": "Cundinamarca Department", "code": "CUN" }, { "name": "Córdoba Department", "code": "COR" }, { "name": "Guainía Department", "code": "GUA" }, { "name": "Guaviare Department", "code": "GUV" }, { "name": "Huila Department", "code": "HUI" }, { "name": "La Guajira Department", "code": "LAG" }, { "name": "Magdalena Department", "code": "MAG" }, { "name": "Meta", "code": "MET" }, { "name": "Nariño Department", "code": "NAR" }, { "name": "Norte de Santander Department", "code": "NSA" }, { "name": "Putumayo Department", "code": "PUT" }, { "name": "Quindío Department", "code": "QUI" }, { "name": "Risaralda Department", "code": "RIS" }, { "name": "Santander Department", "code": "SAN" }, { "name": "Sucre Department", "code": "SUC" }, { "name": "Tolima Department", "code": "TOL" }, { "name": "Valle del Cauca Department", "code": "VAC" }, { "name": "Vaupés Department", "code": "VAU" }, { "name": "Vichada Department", "code": "VID" } ], "KM": [ { "name": "Anjouan", "code": "A" }, { "name": "Grande Comore", "code": "G" }, { "name": "Mohéli", "code": "M" } ], "CG": [ { "name": "Bouenza Department", "code": "11" }, { "name": "Brazzaville", "code": "BZV" }, { "name": "Cuvette Department", "code": "8" }, { "name": "Cuvette-Ouest Department", "code": "15" }, { "name": "Kouilou Department", "code": "5" }, { "name": "Likouala Department", "code": "7" }, { "name": "Lékoumou Department", "code": "2" }, { "name": "Niari Department", "code": "9" }, { "name": "Plateaux Department", "code": "14" }, { "name": "Pointe-Noire", "code": "16" }, { "name": "Pool Department", "code": "12" }, { "name": "Sangha Department", "code": "13" } ], "CD": [ { "name": "Bandundu Province", "code": "BN" }, { "name": "Bas-Congo province", "code": "BC" }, { "name": "Bas-Uele", "code": "BU" }, { "name": "Haut-Katanga Province", "code": "HK" }, { "name": "Haut-Lomami District", "code": "HL" }, { "name": "Haut-Uele", "code": "HU" }, { "name": "Ituri Interim Administration", "code": "IT" }, { "name": "Kasaï District", "code": "KS" }, { "name": "Kasaï-Occidental", "code": "KW" }, { "name": "Kasaï-Oriental", "code": "KE" }, { "name": "Katanga Province", "code": "KA" }, { "name": "Kinshasa", "code": "KN" }, { "name": "Kwango District", "code": "KG" }, { "name": "Kwilu District", "code": "KL" }, { "name": "Lomami Province", "code": "LO" }, { "name": "Mai-Ndombe Province", "code": "MN" }, { "name": "Maniema", "code": "MA" }, { "name": "Mongala District", "code": "MO" }, { "name": "Nord-Ubangi District", "code": "NU" }, { "name": "North Kivu", "code": "NK" }, { "name": "Orientale Province", "code": "OR" }, { "name": "Sankuru District", "code": "SA" }, { "name": "South Kivu", "code": "SK" }, { "name": "Sud-Ubangi", "code": "SU" }, { "name": "Tanganyika Province", "code": "TA" }, { "name": "Tshopo District", "code": "TO" }, { "name": "Tshuapa District", "code": "TU" }, { "name": "Équateur", "code": "EQ" } ], "CK": [{ "name": "Cook Islands", "code": "Cook Islands" }], "CR": [ { "name": "Alajuela Province", "code": "A" }, { "name": "Guanacaste Province", "code": "G" }, { "name": "Heredia Province", "code": "H" }, { "name": "Limón Province", "code": "L" }, { "name": "Provincia de Cartago", "code": "C" }, { "name": "Puntarenas Province", "code": "P" }, { "name": "San José Province", "code": "SJ" } ], "CI": [ { "name": "Abidjan", "code": "AB" }, { "name": "Agnéby", "code": "16" }, { "name": "Bafing Region", "code": "17" }, { "name": "Bas-Sassandra District", "code": "BS" }, { "name": "Bas-Sassandra Region", "code": "09" }, { "name": "Comoé District", "code": "CM" }, { "name": "Denguélé District", "code": "DN" }, { "name": "Denguélé Region", "code": "10" }, { "name": "Dix-Huit Montagnes", "code": "06" }, { "name": "Fromager", "code": "18" }, { "name": "Gôh-Djiboua District", "code": "GD" }, { "name": "Haut-Sassandra", "code": "02" }, { "name": "Lacs District", "code": "LC" }, { "name": "Lacs Region", "code": "07" }, { "name": "Lagunes District", "code": "LG" }, { "name": "Lagunes region", "code": "01" }, { "name": "Marahoué Region", "code": "12" }, { "name": "Montagnes District", "code": "MG" }, { "name": "Moyen-Cavally", "code": "19" }, { "name": "Moyen-Comoé", "code": "05" }, { "name": "N'zi-Comoé", "code": "11" }, { "name": "Sassandra-Marahoué District", "code": "SM" }, { "name": "Savanes Region", "code": "03" }, { "name": "Sud-Bandama", "code": "15" }, { "name": "Sud-Comoé", "code": "13" }, { "name": "Vallée du Bandama District", "code": "VB" }, { "name": "Vallée du Bandama Region", "code": "04" }, { "name": "Woroba District", "code": "WR" }, { "name": "Worodougou", "code": "14" }, { "name": "Yamoussoukro", "code": "YM" }, { "name": "Zanzan Region", "code": "ZZ" } ], "HR": [ { "name": "Bjelovar-Bilogora County", "code": "07" }, { "name": "Brod-Posavina County", "code": "12" }, { "name": "Dubrovnik-Neretva County", "code": "19" }, { "name": "Istria County", "code": "18" }, { "name": "Koprivnica-Križevci County", "code": "06" }, { "name": "Krapina-Zagorje County", "code": "02" }, { "name": "Lika-Senj County", "code": "09" }, { "name": "Međimurje County", "code": "20" }, { "name": "Osijek-Baranja County", "code": "14" }, { "name": "Požega-Slavonia County", "code": "11" }, { "name": "Primorje-Gorski Kotar County", "code": "08" }, { "name": "Sisak-Moslavina County", "code": "03" }, { "name": "Split-Dalmatia County", "code": "17" }, { "name": "Varaždin County", "code": "05" }, { "name": "Virovitica-Podravina County", "code": "10" }, { "name": "Vukovar-Syrmia County", "code": "16" }, { "name": "Zadar County", "code": "13" }, { "name": "Zagreb", "code": "21" }, { "name": "Zagreb County", "code": "01" }, { "name": "Šibenik-Knin County", "code": "15" } ], "CU": [ { "name": "Artemisa Province", "code": "15" }, { "name": "Camagüey Province", "code": "09" }, { "name": "Ciego de Ávila Province", "code": "08" }, { "name": "Cienfuegos Province", "code": "06" }, { "name": "Granma Province", "code": "12" }, { "name": "Guantánamo Province", "code": "14" }, { "name": "Havana Province", "code": "03" }, { "name": "Holguín Province", "code": "11" }, { "name": "Isla de la Juventud", "code": "99" }, { "name": "Las Tunas Province", "code": "10" }, { "name": "Matanzas Province", "code": "04" }, { "name": "Mayabeque Province", "code": "16" }, { "name": "Pinar del Río Province", "code": "01" }, { "name": "Sancti Spíritus Province", "code": "07" }, { "name": "Santiago de Cuba Province", "code": "13" }, { "name": "Villa Clara Province", "code": "05" } ], "CW": [{ "name": "Curacao", "code": "Curacao" }], "CY": [ { "name": "Famagusta District", "code": "04" }, { "name": "Kyrenia District", "code": "06" }, { "name": "Larnaca District", "code": "03" }, { "name": "Limassol District", "code": "02" }, { "name": "Nicosia District", "code": "01" }, { "name": "Paphos District", "code": "05" } ], "CZ": [ { "name": "Benešov", "code": "201" }, { "name": "Beroun", "code": "202" }, { "name": "Blansko", "code": "641" }, { "name": "Břeclav", "code": "644" }, { "name": "Brno-město", "code": "642" }, { "name": "Brno-venkov", "code": "643" }, { "name": "Bruntál", "code": "801" }, { "name": "Česká Lípa", "code": "511" }, { "name": "České Budějovice", "code": "311" }, { "name": "Český Krumlov", "code": "312" }, { "name": "Cheb", "code": "411" }, { "name": "Chomutov", "code": "422" }, { "name": "Chrudim", "code": "531" }, { "name": "Děčín", "code": "421" }, { "name": "Domažlice", "code": "321" }, { "name": "Frýdek-Místek", "code": "802" }, { "name": "Havlíčkův Brod", "code": "631" }, { "name": "Hodonín", "code": "645" }, { "name": "Hradec Králové", "code": "521" }, { "name": "Jablonec nad Nisou", "code": "512" }, { "name": "Jeseník", "code": "711" }, { "name": "Jičín", "code": "522" }, { "name": "Jihlava", "code": "632" }, { "name": "Jihočeský kraj", "code": "31" }, { "name": "Jihomoravský kraj", "code": "64" }, { "name": "Jindřichův Hradec", "code": "313" }, { "name": "Karlovarský kraj", "code": "41" }, { "name": "Karlovy Vary", "code": "412" }, { "name": "Karviná", "code": "803" }, { "name": "Kladno", "code": "203" }, { "name": "Klatovy", "code": "322" }, { "name": "Kolín", "code": "204" }, { "name": "Kraj Vysočina", "code": "63" }, { "name": "Královéhradecký kraj", "code": "52" }, { "name": "Kroměříž", "code": "721" }, { "name": "Kutná Hora", "code": "205" }, { "name": "Liberec", "code": "513" }, { "name": "Liberecký kraj", "code": "51" }, { "name": "Litoměřice", "code": "423" }, { "name": "Louny", "code": "424" }, { "name": "Mělník", "code": "206" }, { "name": "Mladá Boleslav", "code": "207" }, { "name": "Moravskoslezský kraj", "code": "80" }, { "name": "Most", "code": "425" }, { "name": "Náchod", "code": "523" }, { "name": "Nový Jičín", "code": "804" }, { "name": "Nymburk", "code": "208" }, { "name": "Olomouc", "code": "712" }, { "name": "Olomoucký kraj", "code": "71" }, { "name": "Opava", "code": "805" }, { "name": "Ostrava-město", "code": "806" }, { "name": "Pardubice", "code": "532" }, { "name": "Pardubický kraj", "code": "53" }, { "name": "Pelhřimov", "code": "633" }, { "name": "Písek", "code": "314" }, { "name": "Plzeň-jih", "code": "324" }, { "name": "Plzeň-město", "code": "323" }, { "name": "Plzeň-sever", "code": "325" }, { "name": "Plzeňský kraj", "code": "32" }, { "name": "Prachatice", "code": "315" }, { "name": "Praha-východ", "code": "209" }, { "name": "Praha-západ", "code": "20A" }, { "name": "Praha, Hlavní město", "code": "10" }, { "name": "Přerov", "code": "714" }, { "name": "Příbram", "code": "20B" }, { "name": "Prostějov", "code": "713" }, { "name": "Rakovník", "code": "20C" }, { "name": "Rokycany", "code": "326" }, { "name": "Rychnov nad Kněžnou", "code": "524" }, { "name": "Semily", "code": "514" }, { "name": "Sokolov", "code": "413" }, { "name": "Strakonice", "code": "316" }, { "name": "Středočeský kraj", "code": "20" }, { "name": "Šumperk", "code": "715" }, { "name": "Svitavy", "code": "533" }, { "name": "Tábor", "code": "317" }, { "name": "Tachov", "code": "327" }, { "name": "Teplice", "code": "426" }, { "name": "Třebíč", "code": "634" }, { "name": "Trutnov", "code": "525" }, { "name": "Uherské Hradiště", "code": "722" }, { "name": "Ústecký kraj", "code": "42" }, { "name": "Ústí nad Labem", "code": "427" }, { "name": "Ústí nad Orlicí", "code": "534" }, { "name": "Vsetín", "code": "723" }, { "name": "Vyškov", "code": "646" }, { "name": "Žďár nad Sázavou", "code": "635" }, { "name": "Zlín", "code": "724" }, { "name": "Zlínský kraj", "code": "72" }, { "name": "Znojmo", "code": "647" } ], "DK": [ { "name": "Capital Region of Denmark", "code": "84" }, { "name": "Central Denmark Region", "code": "82" }, { "name": "North Denmark Region", "code": "81" }, { "name": "Region Zealand", "code": "85" }, { "name": "Region of Southern Denmark", "code": "83" } ], "DJ": [ { "name": "Ali Sabieh Region", "code": "AS" }, { "name": "Arta Region", "code": "AR" }, { "name": "Dikhil Region", "code": "DI" }, { "name": "Djibouti", "code": "DJ" }, { "name": "Obock Region", "code": "OB" }, { "name": "Tadjourah Region", "code": "TA" } ], "DM": [ { "name": "Saint Andrew Parish", "code": "02" }, { "name": "Saint David Parish", "code": "03" }, { "name": "Saint George Parish", "code": "04" }, { "name": "Saint John Parish", "code": "05" }, { "name": "Saint Joseph Parish", "code": "06" }, { "name": "Saint Luke Parish", "code": "07" }, { "name": "Saint Mark Parish", "code": "08" }, { "name": "Saint Patrick Parish", "code": "09" }, { "name": "Saint Paul Parish", "code": "10" }, { "name": "Saint Peter Parish", "code": "11" } ], "DO": [ { "name": "Azua Province", "code": "02" }, { "name": "Baoruco Province", "code": "03" }, { "name": "Barahona Province", "code": "04" }, { "name": "Dajabón Province", "code": "05" }, { "name": "Distrito Nacional", "code": "01" }, { "name": "Duarte Province", "code": "06" }, { "name": "El Seibo Province", "code": "08" }, { "name": "Espaillat Province", "code": "09" }, { "name": "Hato Mayor Province", "code": "30" }, { "name": "Hermanas Mirabal Province", "code": "19" }, { "name": "Independencia", "code": "10" }, { "name": "La Altagracia Province", "code": "11" }, { "name": "La Romana Province", "code": "12" }, { "name": "La Vega Province", "code": "13" }, { "name": "María Trinidad Sánchez Province", "code": "14" }, { "name": "Monseñor Nouel Province", "code": "28" }, { "name": "Monte Cristi Province", "code": "15" }, { "name": "Monte Plata Province", "code": "29" }, { "name": "Pedernales Province", "code": "16" }, { "name": "Peravia Province", "code": "17" }, { "name": "Puerto Plata Province", "code": "18" }, { "name": "Samaná Province", "code": "20" }, { "name": "San Cristóbal Province", "code": "21" }, { "name": "San José de Ocoa Province", "code": "31" }, { "name": "San Juan Province", "code": "22" }, { "name": "San Pedro de Macorís", "code": "23" }, { "name": "Santiago Province", "code": "25" }, { "name": "Santiago Rodríguez Province", "code": "26" }, { "name": "Santo Domingo Province", "code": "32" }, { "name": "Sánchez Ramírez Province", "code": "24" }, { "name": "Valverde Province", "code": "27" } ], "EC": [ { "name": "Azuay Province", "code": "A" }, { "name": "Bolívar Province", "code": "B" }, { "name": "Carchi Province", "code": "C" }, { "name": "Cañar Province", "code": "F" }, { "name": "Chimborazo Province", "code": "H" }, { "name": "Cotopaxi Province", "code": "X" }, { "name": "El Oro Province", "code": "O" }, { "name": "Esmeraldas", "code": "E" }, { "name": "Galápagos Province", "code": "W" }, { "name": "Guayas Province", "code": "G" }, { "name": "Imbabura Province", "code": "I" }, { "name": "Los Ríos Province", "code": "R" }, { "name": "Manabí Province", "code": "M" }, { "name": "Morona-Santiago Province", "code": "S" }, { "name": "Napo Province", "code": "N" }, { "name": "Orellana Province", "code": "D" }, { "name": "Pastaza Province", "code": "Y" }, { "name": "Pichincha Province", "code": "P" }, { "name": "Santa Elena Province", "code": "SE" }, { "name": "Santo Domingo de los Tsáchilas Province", "code": "SD" }, { "name": "Sucumbíos Province", "code": "U" }, { "name": "Tungurahua Province", "code": "T" }, { "name": "Zamora-Chinchipe Province", "code": "Z" } ], "EG": [ { "name": "Alexandria Governorate", "code": "ALX" }, { "name": "Aswan Governorate", "code": "ASN" }, { "name": "Asyut Governorate", "code": "AST" }, { "name": "Beheira Governorate", "code": "BH" }, { "name": "Beni Suef Governorate", "code": "BNS" }, { "name": "Cairo Governorate", "code": "C" }, { "name": "Dakahlia Governorate", "code": "DK" }, { "name": "Damietta Governorate", "code": "DT" }, { "name": "Faiyum Governorate", "code": "FYM" }, { "name": "Gharbia Governorate", "code": "GH" }, { "name": "Giza Governorate", "code": "GZ" }, { "name": "Ismailia Governorate", "code": "IS" }, { "name": "Kafr el-Sheikh Governorate", "code": "KFS" }, { "name": "Luxor Governorate", "code": "LX" }, { "name": "Matrouh Governorate", "code": "MT" }, { "name": "Minya Governorate", "code": "MN" }, { "name": "Monufia Governorate", "code": "MNF" }, { "name": "New Valley Governorate", "code": "WAD" }, { "name": "North Sinai Governorate", "code": "SIN" }, { "name": "Port Said Governorate", "code": "PTS" }, { "name": "Qalyubia Governorate", "code": "KB" }, { "name": "Qena Governorate", "code": "KN" }, { "name": "Red Sea Governorate", "code": "BA" }, { "name": "Sohag Governorate", "code": "SHG" }, { "name": "South Sinai Governorate", "code": "JS" }, { "name": "Suez Governorate", "code": "SUZ" } ], "SV": [ { "name": "Ahuachapán Department", "code": "AH" }, { "name": "Cabañas Department", "code": "CA" }, { "name": "Chalatenango Department", "code": "CH" }, { "name": "Cuscatlán Department", "code": "CU" }, { "name": "La Libertad Department", "code": "LI" }, { "name": "La Paz Department", "code": "PA" }, { "name": "La Unión Department", "code": "UN" }, { "name": "Morazán Department", "code": "MO" }, { "name": "San Miguel Department", "code": "SM" }, { "name": "San Salvador Department", "code": "SS" }, { "name": "San Vicente Department", "code": "SV" }, { "name": "Santa Ana Department", "code": "SA" }, { "name": "Sonsonate Department", "code": "SO" }, { "name": "Usulután Department", "code": "US" } ], "GQ": [ { "name": "Annobón Province", "code": "AN" }, { "name": "Bioko Norte Province", "code": "BN" }, { "name": "Bioko Sur Province", "code": "BS" }, { "name": "Centro Sur Province", "code": "CS" }, { "name": "Insular Region", "code": "I" }, { "name": "Kié-Ntem Province", "code": "KN" }, { "name": "Litoral Province", "code": "LI" }, { "name": "Río Muni", "code": "C" }, { "name": "Wele-Nzas Province", "code": "WN" } ], "ER": [ { "name": "Anseba Region", "code": "AN" }, { "name": "Debub Region", "code": "DU" }, { "name": "Gash-Barka Region", "code": "GB" }, { "name": "Maekel Region", "code": "MA" }, { "name": "Northern Red Sea Region", "code": "SK" }, { "name": "Southern Red Sea Region", "code": "DK" } ], "EE": [ { "name": "Harju County", "code": "37" }, { "name": "Hiiu County", "code": "39" }, { "name": "Ida-Viru County", "code": "44" }, { "name": "Järva County", "code": "51" }, { "name": "Jõgeva County", "code": "49" }, { "name": "Lääne County", "code": "57" }, { "name": "Lääne-Viru County", "code": "59" }, { "name": "Pärnu County", "code": "67" }, { "name": "Põlva County", "code": "65" }, { "name": "Rapla County", "code": "70" }, { "name": "Saare County", "code": "74" }, { "name": "Tartu County", "code": "78" }, { "name": "Valga County", "code": "82" }, { "name": "Viljandi County", "code": "84" }, { "name": "Võru County", "code": "86" } ], "ET": [ { "name": "Addis Ababa", "code": "AA" }, { "name": "Afar Region", "code": "AF" }, { "name": "Amhara Region", "code": "AM" }, { "name": "Benishangul-Gumuz Region", "code": "BE" }, { "name": "Dire Dawa", "code": "DD" }, { "name": "Gambela Region", "code": "GA" }, { "name": "Harari Region", "code": "HA" }, { "name": "Oromia Region", "code": "OR" }, { "name": "Somali Region", "code": "SO" }, { "name": "Southern Nations, Nationalities, and Peoples' Region", "code": "SN" }, { "name": "Tigray Region", "code": "TI" } ], "FK": [ { "name": "Falkland Islands (Malvinas)", "code": "Falkland Islands (Malvinas)" } ], "FO": [{ "name": "Faroe Islands", "code": "Faroe Islands" }], "FJ": [ { "name": "Ba", "code": "01" }, { "name": "Bua", "code": "02" }, { "name": "Cakaudrove", "code": "03" }, { "name": "Central Division", "code": "C" }, { "name": "Eastern Division", "code": "E" }, { "name": "Kadavu", "code": "04" }, { "name": "Lau", "code": "05" }, { "name": "Lomaiviti", "code": "06" }, { "name": "Macuata", "code": "07" }, { "name": "Nadroga-Navosa", "code": "08" }, { "name": "Naitasiri", "code": "09" }, { "name": "Namosi", "code": "10" }, { "name": "Northern Division", "code": "N" }, { "name": "Ra", "code": "11" }, { "name": "Rewa", "code": "12" }, { "name": "Rotuma", "code": "R" }, { "name": "Serua", "code": "13" }, { "name": "Tailevu", "code": "14" }, { "name": "Western Division", "code": "W" } ], "FI": [ { "name": "Central Finland", "code": "08" }, { "name": "Central Ostrobothnia", "code": "07" }, { "name": "Eastern Finland Province", "code": "IS" }, { "name": "Finland Proper", "code": "19" }, { "name": "Kainuu", "code": "05" }, { "name": "Kymenlaakso", "code": "09" }, { "name": "Lapland", "code": "LL" }, { "name": "North Karelia", "code": "13" }, { "name": "Northern Ostrobothnia", "code": "14" }, { "name": "Northern Savonia", "code": "15" }, { "name": "Ostrobothnia", "code": "12" }, { "name": "Oulu Province", "code": "OL" }, { "name": "Pirkanmaa", "code": "11" }, { "name": "Päijänne Tavastia", "code": "16" }, { "name": "Satakunta", "code": "17" }, { "name": "South Karelia", "code": "02" }, { "name": "Southern Ostrobothnia", "code": "03" }, { "name": "Southern Savonia", "code": "04" }, { "name": "Tavastia Proper", "code": "06" }, { "name": "Uusimaa", "code": "18" }, { "name": "Åland Islands", "code": "01" } ], "FR": [ { "name": "Ain", "code": "01" }, { "name": "Aisne", "code": "02" }, { "name": "Allier", "code": "03" }, { "name": "Alpes-de-Haute-Provence", "code": "04" }, { "name": "Alpes-Maritimes", "code": "06" }, { "name": "Alsace", "code": "6AE" }, { "name": "Ardèche", "code": "07" }, { "name": "Ardennes", "code": "08" }, { "name": "Ariège", "code": "09" }, { "name": "Aube", "code": "10" }, { "name": "Aude", "code": "11" }, { "name": "Auvergne-Rhône-Alpes", "code": "ARA" }, { "name": "Aveyron", "code": "12" }, { "name": "Bas-Rhin", "code": "67" }, { "name": "Bouches-du-Rhône", "code": "13" }, { "name": "Bourgogne-Franche-Comté", "code": "BFC" }, { "name": "Bretagne", "code": "BRE" }, { "name": "Calvados", "code": "14" }, { "name": "Cantal", "code": "15" }, { "name": "Centre-Val de Loire", "code": "CVL" }, { "name": "Charente", "code": "16" }, { "name": "Charente-Maritime", "code": "17" }, { "name": "Cher", "code": "18" }, { "name": "Clipperton", "code": "CP" }, { "name": "Corrèze", "code": "19" }, { "name": "Corse", "code": "20R" }, { "name": "Corse-du-Sud", "code": "2A" }, { "name": "Côte-d'Or", "code": "21" }, { "name": "Côtes-d'Armor", "code": "22" }, { "name": "Creuse", "code": "23" }, { "name": "Deux-Sèvres", "code": "79" }, { "name": "Dordogne", "code": "24" }, { "name": "Doubs", "code": "25" }, { "name": "Drôme", "code": "26" }, { "name": "Essonne", "code": "91" }, { "name": "Eure", "code": "27" }, { "name": "Eure-et-Loir", "code": "28" }, { "name": "Finistère", "code": "29" }, { "name": "French Guiana", "code": "973" }, { "name": "French Polynesia", "code": "PF" }, { "name": "French Southern and Antarctic Lands", "code": "TF" }, { "name": "Gard", "code": "30" }, { "name": "Gers", "code": "32" }, { "name": "Gironde", "code": "33" }, { "name": "Grand-Est", "code": "GES" }, { "name": "Guadeloupe", "code": "971" }, { "name": "Haut-Rhin", "code": "68" }, { "name": "Haute-Corse", "code": "2B" }, { "name": "Haute-Garonne", "code": "31" }, { "name": "Haute-Loire", "code": "43" }, { "name": "Haute-Marne", "code": "52" }, { "name": "Haute-Saône", "code": "70" }, { "name": "Haute-Savoie", "code": "74" }, { "name": "Haute-Vienne", "code": "87" }, { "name": "Hautes-Alpes", "code": "05" }, { "name": "Hautes-Pyrénées", "code": "65" }, { "name": "Hauts-de-France", "code": "HDF" }, { "name": "Hauts-de-Seine", "code": "92" }, { "name": "Hérault", "code": "34" }, { "name": "Île-de-France", "code": "IDF" }, { "name": "Ille-et-Vilaine", "code": "35" }, { "name": "Indre", "code": "36" }, { "name": "Indre-et-Loire", "code": "37" }, { "name": "Isère", "code": "38" }, { "name": "Jura", "code": "39" }, { "name": "La Réunion", "code": "974" }, { "name": "Landes", "code": "40" }, { "name": "Loir-et-Cher", "code": "41" }, { "name": "Loire", "code": "42" }, { "name": "Loire-Atlantique", "code": "44" }, { "name": "Loiret", "code": "45" }, { "name": "Lot", "code": "46" }, { "name": "Lot-et-Garonne", "code": "47" }, { "name": "Lozère", "code": "48" }, { "name": "Maine-et-Loire", "code": "49" }, { "name": "Manche", "code": "50" }, { "name": "Marne", "code": "51" }, { "name": "Martinique", "code": "972" }, { "name": "Mayenne", "code": "53" }, { "name": "Mayotte", "code": "976" }, { "name": "Métropole de Lyon", "code": "69M" }, { "name": "Meurthe-et-Moselle", "code": "54" }, { "name": "Meuse", "code": "55" }, { "name": "Morbihan", "code": "56" }, { "name": "Moselle", "code": "57" }, { "name": "Nièvre", "code": "58" }, { "name": "Nord", "code": "59" }, { "name": "Normandie", "code": "NOR" }, { "name": "Nouvelle-Aquitaine", "code": "NAQ" }, { "name": "Occitanie", "code": "OCC" }, { "name": "Oise", "code": "60" }, { "name": "Orne", "code": "61" }, { "name": "Paris", "code": "75C" }, { "name": "Pas-de-Calais", "code": "62" }, { "name": "Pays-de-la-Loire", "code": "PDL" }, { "name": "Provence-Alpes-Côte-d’Azur", "code": "PAC" }, { "name": "Puy-de-Dôme", "code": "63" }, { "name": "Pyrénées-Atlantiques", "code": "64" }, { "name": "Pyrénées-Orientales", "code": "66" }, { "name": "Rhône", "code": "69" }, { "name": "Saint Pierre and Miquelon", "code": "PM" }, { "name": "Saint-Barthélemy", "code": "BL" }, { "name": "Saint-Martin", "code": "MF" }, { "name": "Saône-et-Loire", "code": "71" }, { "name": "Sarthe", "code": "72" }, { "name": "Savoie", "code": "73" }, { "name": "Seine-et-Marne", "code": "77" }, { "name": "Seine-Maritime", "code": "76" }, { "name": "Seine-Saint-Denis", "code": "93" }, { "name": "Somme", "code": "80" }, { "name": "Tarn", "code": "81" }, { "name": "Tarn-et-Garonne", "code": "82" }, { "name": "Territoire de Belfort", "code": "90" }, { "name": "Val-d'Oise", "code": "95" }, { "name": "Val-de-Marne", "code": "94" }, { "name": "Var", "code": "83" }, { "name": "Vaucluse", "code": "84" }, { "name": "Vendée", "code": "85" }, { "name": "Vienne", "code": "86" }, { "name": "Vosges", "code": "88" }, { "name": "Wallis and Futuna", "code": "WF" }, { "name": "Yonne", "code": "89" }, { "name": "Yvelines", "code": "78" } ], "GF": [{ "name": "French Guiana", "code": "French Guiana" }], "PF": [{ "name": "French Polynesia", "code": "French Polynesia" }], "TF": [ { "name": "French Southern Territories", "code": "French Southern Territories" } ], "GA": [ { "name": "Estuaire Province", "code": "1" }, { "name": "Haut-Ogooué Province", "code": "2" }, { "name": "Moyen-Ogooué Province", "code": "3" }, { "name": "Ngounié Province", "code": "4" }, { "name": "Nyanga Province", "code": "5" }, { "name": "Ogooué-Ivindo Province", "code": "6" }, { "name": "Ogooué-Lolo Province", "code": "7" }, { "name": "Ogooué-Maritime Province", "code": "8" }, { "name": "Woleu-Ntem Province", "code": "9" } ], "GM": [ { "name": "Banjul", "code": "B" }, { "name": "Central River Division", "code": "M" }, { "name": "Lower River Division", "code": "L" }, { "name": "North Bank Division", "code": "N" }, { "name": "Upper River Division", "code": "U" }, { "name": "West Coast Division", "code": "W" } ], "GE": [ { "name": "Adjara", "code": "AJ" }, { "name": "Autonomous Republic of Abkhazia", "code": "AB" }, { "name": "Guria", "code": "GU" }, { "name": "Imereti", "code": "IM" }, { "name": "Kakheti", "code": "KA" }, { "name": "Khelvachauri Municipality", "code": "29" }, { "name": "Kvemo Kartli", "code": "KK" }, { "name": "Mtskheta-Mtianeti", "code": "MM" }, { "name": "Racha-Lechkhumi and Kvemo Svaneti", "code": "RL" }, { "name": "Samegrelo-Zemo Svaneti", "code": "SZ" }, { "name": "Samtskhe-Javakheti", "code": "SJ" }, { "name": "Senaki Municipality", "code": "50" }, { "name": "Shida Kartli", "code": "SK" }, { "name": "Tbilisi", "code": "TB" } ], "DE": [ { "name": "Baden-Württemberg", "code": "BW" }, { "name": "Bavaria", "code": "BY" }, { "name": "Berlin", "code": "BE" }, { "name": "Brandenburg", "code": "BB" }, { "name": "Bremen", "code": "HB" }, { "name": "Hamburg", "code": "HH" }, { "name": "Hessen", "code": "HE" }, { "name": "Lower Saxony", "code": "NI" }, { "name": "Mecklenburg-Vorpommern", "code": "MV" }, { "name": "North Rhine-Westphalia", "code": "NW" }, { "name": "Rhineland-Palatinate", "code": "RP" }, { "name": "Saarland", "code": "SL" }, { "name": "Saxony", "code": "SN" }, { "name": "Saxony-Anhalt", "code": "ST" }, { "name": "Schleswig-Holstein", "code": "SH" }, { "name": "Thuringia", "code": "TH" } ], "GH": [ { "name": "Ashanti Region", "code": "AH" }, { "name": "Brong-Ahafo Region", "code": "BA" }, { "name": "Central Region", "code": "CP" }, { "name": "Eastern Region", "code": "EP" }, { "name": "Greater Accra Region", "code": "AA" }, { "name": "Northern Region", "code": "NP" }, { "name": "Upper East Region", "code": "UE" }, { "name": "Upper West Region", "code": "UW" }, { "name": "Volta Region", "code": "TV" }, { "name": "Western Region", "code": "WP" } ], "GI": [{ "name": "Gibraltar", "code": "Gibraltar" }], "GR": [ { "name": "Achaea Regional Unit", "code": "13" }, { "name": "Aetolia-Acarnania Regional Unit", "code": "01" }, { "name": "Arcadia Prefecture", "code": "12" }, { "name": "Argolis Regional Unit", "code": "11" }, { "name": "Attica Region", "code": "I" }, { "name": "Boeotia Regional Unit", "code": "03" }, { "name": "Central Greece Region", "code": "H" }, { "name": "Central Macedonia", "code": "B" }, { "name": "Chania Regional Unit", "code": "94" }, { "name": "Corfu Prefecture", "code": "22" }, { "name": "Corinthia Regional Unit", "code": "15" }, { "name": "Crete Region", "code": "M" }, { "name": "Drama Regional Unit", "code": "52" }, { "name": "East Attica Regional Unit", "code": "A2" }, { "name": "East Macedonia and Thrace", "code": "A" }, { "name": "Epirus Region", "code": "D" }, { "name": "Euboea", "code": "04" }, { "name": "Grevena Prefecture", "code": "51" }, { "name": "Imathia Regional Unit", "code": "53" }, { "name": "Ioannina Regional Unit", "code": "33" }, { "name": "Ionian Islands Region", "code": "F" }, { "name": "Karditsa Regional Unit", "code": "41" }, { "name": "Kastoria Regional Unit", "code": "56" }, { "name": "Kefalonia Prefecture", "code": "23" }, { "name": "Kilkis Regional Unit", "code": "57" }, { "name": "Kozani Prefecture", "code": "58" }, { "name": "Laconia", "code": "16" }, { "name": "Larissa Prefecture", "code": "42" }, { "name": "Lefkada Regional Unit", "code": "24" }, { "name": "Pella Regional Unit", "code": "59" }, { "name": "Peloponnese Region", "code": "J" }, { "name": "Phthiotis Prefecture", "code": "06" }, { "name": "Preveza Prefecture", "code": "34" }, { "name": "Serres Prefecture", "code": "62" }, { "name": "South Aegean", "code": "L" }, { "name": "Thessaloniki Regional Unit", "code": "54" }, { "name": "West Greece Region", "code": "G" }, { "name": "West Macedonia Region", "code": "C" } ], "GL": [{ "name": "Greenland", "code": "Greenland" }], "GD": [ { "name": "Carriacou and Petite Martinique", "code": "10" }, { "name": "Saint Andrew Parish", "code": "01" }, { "name": "Saint David Parish", "code": "02" }, { "name": "Saint George Parish", "code": "03" }, { "name": "Saint John Parish", "code": "04" }, { "name": "Saint Mark Parish", "code": "05" }, { "name": "Saint Patrick Parish", "code": "06" } ], "GP": [{ "name": "Guadeloupe", "code": "Guadeloupe" }], "GU": [{ "name": "Guam", "code": "Guam" }], "GT": [ { "name": "Alta Verapaz Department", "code": "AV" }, { "name": "Baja Verapaz Department", "code": "BV" }, { "name": "Chimaltenango Department", "code": "CM" }, { "name": "Chiquimula Department", "code": "CQ" }, { "name": "El Progreso Department", "code": "PR" }, { "name": "Escuintla Department", "code": "ES" }, { "name": "Guatemala Department", "code": "GU" }, { "name": "Huehuetenango Department", "code": "HU" }, { "name": "Izabal Department", "code": "IZ" }, { "name": "Jalapa Department", "code": "JA" }, { "name": "Jutiapa Department", "code": "JU" }, { "name": "Petén Department", "code": "PE" }, { "name": "Quetzaltenango Department", "code": "QZ" }, { "name": "Quiché Department", "code": "QC" }, { "name": "Retalhuleu Department", "code": "RE" }, { "name": "Sacatepéquez Department", "code": "SA" }, { "name": "San Marcos Department", "code": "SM" }, { "name": "Santa Rosa Department", "code": "SR" }, { "name": "Sololá Department", "code": "SO" }, { "name": "Suchitepéquez Department", "code": "SU" }, { "name": "Totonicapán Department", "code": "TO" } ], "GG": [{ "name": "Guernsey", "code": "Guernsey" }], "GN": [ { "name": "Beyla Prefecture", "code": "BE" }, { "name": "Boffa Prefecture", "code": "BF" }, { "name": "Boké Prefecture", "code": "BK" }, { "name": "Boké Region", "code": "B" }, { "name": "Conakry", "code": "C" }, { "name": "Coyah Prefecture", "code": "CO" }, { "name": "Dabola Prefecture", "code": "DB" }, { "name": "Dalaba Prefecture", "code": "DL" }, { "name": "Dinguiraye Prefecture", "code": "DI" }, { "name": "Dubréka Prefecture", "code": "DU" }, { "name": "Faranah Prefecture", "code": "FA" }, { "name": "Forécariah Prefecture", "code": "FO" }, { "name": "Fria Prefecture", "code": "FR" }, { "name": "Gaoual Prefecture", "code": "GA" }, { "name": "Guéckédou Prefecture", "code": "GU" }, { "name": "Kankan Prefecture", "code": "KA" }, { "name": "Kankan Region", "code": "K" }, { "name": "Kindia Prefecture", "code": "KD" }, { "name": "Kindia Region", "code": "D" }, { "name": "Kissidougou Prefecture", "code": "KS" }, { "name": "Koubia Prefecture", "code": "KB" }, { "name": "Koundara Prefecture", "code": "KN" }, { "name": "Kouroussa Prefecture", "code": "KO" }, { "name": "Kérouané Prefecture", "code": "KE" }, { "name": "Labé Prefecture", "code": "LA" }, { "name": "Labé Region", "code": "L" }, { "name": "Lola Prefecture", "code": "LO" }, { "name": "Lélouma Prefecture", "code": "LE" }, { "name": "Macenta Prefecture", "code": "MC" }, { "name": "Mali Prefecture", "code": "ML" }, { "name": "Mamou Prefecture", "code": "MM" }, { "name": "Mamou Region", "code": "M" }, { "name": "Mandiana Prefecture", "code": "MD" }, { "name": "Nzérékoré Prefecture", "code": "NZ" }, { "name": "Nzérékoré Region", "code": "N" }, { "name": "Pita Prefecture", "code": "PI" }, { "name": "Siguiri Prefecture", "code": "SI" }, { "name": "Tougué Prefecture", "code": "TO" }, { "name": "Télimélé Prefecture", "code": "TE" }, { "name": "Yomou Prefecture", "code": "YO" } ], "GW": [ { "name": "Bafatá", "code": "BA" }, { "name": "Biombo Region", "code": "BM" }, { "name": "Bolama Region", "code": "BL" }, { "name": "Cacheu Region", "code": "CA" }, { "name": "Gabú Region", "code": "GA" }, { "name": "Leste Province", "code": "L" }, { "name": "Norte Province", "code": "N" }, { "name": "Oio Region", "code": "OI" }, { "name": "Quinara Region", "code": "QU" }, { "name": "Sul Province", "code": "S" }, { "name": "Tombali Region", "code": "TO" } ], "GY": [ { "name": "Barima-Waini", "code": "BA" }, { "name": "Cuyuni-Mazaruni", "code": "CU" }, { "name": "Demerara-Mahaica", "code": "DE" }, { "name": "East Berbice-Corentyne", "code": "EB" }, { "name": "Essequibo Islands-West Demerara", "code": "ES" }, { "name": "Mahaica-Berbice", "code": "MA" }, { "name": "Pomeroon-Supenaam", "code": "PM" }, { "name": "Potaro-Siparuni", "code": "PT" }, { "name": "Upper Demerara-Berbice", "code": "UD" }, { "name": "Upper Takutu-Upper Essequibo", "code": "UT" } ], "HT": [ { "name": "Artibonite", "code": "AR" }, { "name": "Centre", "code": "CE" }, { "name": "Grand'Anse", "code": "GA" }, { "name": "Nippes", "code": "NI" }, { "name": "Nord", "code": "ND" }, { "name": "Nord-Est", "code": "NE" }, { "name": "Nord-Ouest", "code": "NO" }, { "name": "Ouest", "code": "OU" }, { "name": "Sud", "code": "SD" }, { "name": "Sud-Est", "code": "SE" } ], "HM": [ { "name": "Heard Island and Mcdonald Islands", "code": "Heard Island and Mcdonald Islands" } ], "VA": [ { "name": "Holy See (Vatican City State)", "code": "Holy See (Vatican City State)" } ], "HN": [ { "name": "Atlántida Department", "code": "AT" }, { "name": "Bay Islands Department", "code": "IB" }, { "name": "Choluteca Department", "code": "CH" }, { "name": "Colón Department", "code": "CL" }, { "name": "Comayagua Department", "code": "CM" }, { "name": "Copán Department", "code": "CP" }, { "name": "Cortés Department", "code": "CR" }, { "name": "El Paraíso Department", "code": "EP" }, { "name": "Francisco Morazán Department", "code": "FM" }, { "name": "Gracias a Dios Department", "code": "GD" }, { "name": "Intibucá Department", "code": "IN" }, { "name": "La Paz Department", "code": "LP" }, { "name": "Lempira Department", "code": "LE" }, { "name": "Ocotepeque Department", "code": "OC" }, { "name": "Olancho Department", "code": "OL" }, { "name": "Santa Bárbara Department", "code": "SB" }, { "name": "Valle Department", "code": "VA" }, { "name": "Yoro Department", "code": "YO" } ], "HK": [ { "name": "Central and Western District", "code": "HCW" }, { "name": "Eastern", "code": "HEA" }, { "name": "Islands District", "code": "NIS" }, { "name": "Kowloon City", "code": "KKC" }, { "name": "Kwai Tsing", "code": "NKT" }, { "name": "Kwun Tong", "code": "KKT" }, { "name": "North", "code": "NNO" }, { "name": "Sai Kung District", "code": "NSK" }, { "name": "Sha Tin", "code": "NST" }, { "name": "Sham Shui Po", "code": "KSS" }, { "name": "Southern", "code": "HSO" }, { "name": "Tsuen Wan District", "code": "NTW" }, { "name": "Tuen Mun", "code": "NTM" }, { "name": "Wan Chai", "code": "HWC" }, { "name": "Wong Tai Sin", "code": "KWT" }, { "name": "Yau Tsim Mong", "code": "KYT" }, { "name": "Yuen Long District", "code": "NYL" } ], "HU": [ { "name": "Baranya County", "code": "BA" }, { "name": "Borsod-Abaúj-Zemplén County", "code": "BZ" }, { "name": "Budapest", "code": "BU" }, { "name": "Bács-Kiskun County", "code": "BK" }, { "name": "Békés County", "code": "BE" }, { "name": "Békéscsaba", "code": "BC" }, { "name": "Csongrád County", "code": "CS" }, { "name": "Debrecen", "code": "DE" }, { "name": "Dunaújváros", "code": "DU" }, { "name": "Eger", "code": "EG" }, { "name": "Fejér County", "code": "FE" }, { "name": "Győr", "code": "GY" }, { "name": "Győr-Moson-Sopron County", "code": "GS" }, { "name": "Hajdú-Bihar County", "code": "HB" }, { "name": "Heves County", "code": "HE" }, { "name": "Hódmezővásárhely", "code": "HV" }, { "name": "Jász-Nagykun-Szolnok County", "code": "JN" }, { "name": "Kaposvár", "code": "KV" }, { "name": "Kecskemét", "code": "KM" }, { "name": "Miskolc", "code": "MI" }, { "name": "Nagykanizsa", "code": "NK" }, { "name": "Nyíregyháza", "code": "NY" }, { "name": "Nógrád County", "code": "NO" }, { "name": "Pest County", "code": "PE" }, { "name": "Pécs", "code": "PS" }, { "name": "Salgótarján", "code": "ST" }, { "name": "Somogy County", "code": "SO" }, { "name": "Sopron", "code": "SN" }, { "name": "Szabolcs-Szatmár-Bereg County", "code": "SZ" }, { "name": "Szeged", "code": "SD" }, { "name": "Szekszárd", "code": "SS" }, { "name": "Szolnok", "code": "SK" }, { "name": "Szombathely", "code": "SH" }, { "name": "Székesfehérvár", "code": "SF" }, { "name": "Tatabánya", "code": "TB" }, { "name": "Tolna County", "code": "TO" }, { "name": "Vas County", "code": "VA" }, { "name": "Veszprém", "code": "VM" }, { "name": "Veszprém County", "code": "VE" }, { "name": "Zala County", "code": "ZA" }, { "name": "Zalaegerszeg", "code": "ZE" }, { "name": "Érd", "code": "ER" } ], "IS": [ { "name": "Capital Region", "code": "1" }, { "name": "Eastern Region", "code": "7" }, { "name": "Northeastern Region", "code": "6" }, { "name": "Northwestern Region", "code": "5" }, { "name": "Southern Peninsula Region", "code": "2" }, { "name": "Southern Region", "code": "8" }, { "name": "Western Region", "code": "3" }, { "name": "Westfjords", "code": "4" } ], "IN": [ { "name": "Andaman and Nicobar Islands", "code": "AN" }, { "name": "Andhra Pradesh", "code": "AP" }, { "name": "Arunachal Pradesh", "code": "AR" }, { "name": "Assam", "code": "AS" }, { "name": "Bihar", "code": "BR" }, { "name": "Chandigarh", "code": "CH" }, { "name": "Chhattisgarh", "code": "CT" }, { "name": "Dadra and Nagar Haveli", "code": "DN" }, { "name": "Daman and Diu", "code": "DD" }, { "name": "Delhi", "code": "DL" }, { "name": "Goa", "code": "GA" }, { "name": "Gujarat", "code": "GJ" }, { "name": "Haryana", "code": "HR" }, { "name": "Himachal Pradesh", "code": "HP" }, { "name": "Jammu and Kashmir", "code": "JK" }, { "name": "Jharkhand", "code": "JH" }, { "name": "Karnataka", "code": "KA" }, { "name": "Kerala", "code": "KL" }, { "name": "Ladakh", "code": "LA" }, { "name": "Lakshadweep", "code": "LD" }, { "name": "Madhya Pradesh", "code": "MP" }, { "name": "Maharashtra", "code": "MH" }, { "name": "Manipur", "code": "MN" }, { "name": "Meghalaya", "code": "ML" }, { "name": "Mizoram", "code": "MZ" }, { "name": "Nagaland", "code": "NL" }, { "name": "Odisha", "code": "OR" }, { "name": "Puducherry", "code": "PY" }, { "name": "Punjab", "code": "PB" }, { "name": "Rajasthan", "code": "RJ" }, { "name": "Sikkim", "code": "SK" }, { "name": "Tamil Nadu", "code": "TN" }, { "name": "Telangana", "code": "TG" }, { "name": "Tripura", "code": "TR" }, { "name": "Uttar Pradesh", "code": "UP" }, { "name": "Uttarakhand", "code": "UT" }, { "name": "West Bengal", "code": "WB" } ], "ID": [ { "name": "Aceh", "code": "AC" }, { "name": "Bali", "code": "BA" }, { "name": "Bangka Belitung Islands", "code": "BB" }, { "name": "Banten", "code": "BT" }, { "name": "Bengkulu", "code": "BE" }, { "name": "Central Java", "code": "JT" }, { "name": "Central Kalimantan", "code": "KT" }, { "name": "Central Sulawesi", "code": "ST" }, { "name": "East Java", "code": "JI" }, { "name": "East Kalimantan", "code": "KI" }, { "name": "East Nusa Tenggara", "code": "NT" }, { "name": "Gorontalo", "code": "GO" }, { "name": "Jakarta", "code": "JK" }, { "name": "Jambi", "code": "JA" }, { "name": "Kalimantan", "code": "KA" }, { "name": "Lampung", "code": "LA" }, { "name": "Lesser Sunda Islands", "code": "NU" }, { "name": "Maluku", "code": "MA" }, { "name": "Maluku Islands", "code": "ML" }, { "name": "North Kalimantan", "code": "KU" }, { "name": "North Maluku", "code": "MU" }, { "name": "North Sulawesi", "code": "SA" }, { "name": "North Sumatra", "code": "SU" }, { "name": "Papua", "code": "PA" }, { "name": "Riau", "code": "RI" }, { "name": "Riau Islands", "code": "KR" }, { "name": "South Kalimantan", "code": "KS" }, { "name": "South Sulawesi", "code": "SN" }, { "name": "South Sumatra", "code": "SS" }, { "name": "Southeast Sulawesi", "code": "SG" }, { "name": "Special Region of Yogyakarta", "code": "YO" }, { "name": "Sulawesi", "code": "SL" }, { "name": "Sumatra", "code": "SM" }, { "name": "West Java", "code": "JB" }, { "name": "West Nusa Tenggara", "code": "NB" }, { "name": "West Papua", "code": "PB" }, { "name": "West Sulawesi", "code": "SR" }, { "name": "West Sumatra", "code": "SB" } ], "IR": [ { "name": "Alborz Province", "code": "32" }, { "name": "Ardabil Province", "code": "03" }, { "name": "Bushehr Province", "code": "06" }, { "name": "Chaharmahal and Bakhtiari Province", "code": "08" }, { "name": "East Azerbaijan Province", "code": "01" }, { "name": "Fars Province", "code": "14" }, { "name": "Gilan Province", "code": "19" }, { "name": "Golestan Province", "code": "27" }, { "name": "Hormozgan Province", "code": "23" }, { "name": "Ilam Province", "code": "05" }, { "name": "Isfahan Province", "code": "04" }, { "name": "Kerman Province", "code": "15" }, { "name": "Kermanshah Province", "code": "17" }, { "name": "Khuzestan Province", "code": "10" }, { "name": "Kohgiluyeh and Boyer-Ahmad Province", "code": "18" }, { "name": "Kurdistan Province", "code": "16" }, { "name": "Lorestan Province", "code": "20" }, { "name": "Markazi Province", "code": "22" }, { "name": "Mazandaran Province", "code": "21" }, { "name": "North Khorasan Province", "code": "31" }, { "name": "Qazvin Province", "code": "28" }, { "name": "Qom Province", "code": "26" }, { "name": "Razavi Khorasan Province", "code": "30" }, { "name": "Semnan Province", "code": "12" }, { "name": "Sistan and Baluchestan", "code": "13" }, { "name": "South Khorasan Province", "code": "29" }, { "name": "Tehran Province", "code": "07" }, { "name": "West Azarbaijan Province", "code": "02" }, { "name": "Yazd Province", "code": "25" }, { "name": "Zanjan Province", "code": "11" } ], "IQ": [ { "name": "Al Anbar Governorate", "code": "AN" }, { "name": "Al Muthanna Governorate", "code": "MU" }, { "name": "Al-Qādisiyyah Governorate", "code": "QA" }, { "name": "Babylon Governorate", "code": "BB" }, { "name": "Baghdad Governorate", "code": "BG" }, { "name": "Basra Governorate", "code": "BA" }, { "name": "Dhi Qar Governorate", "code": "DQ" }, { "name": "Diyala Governorate", "code": "DI" }, { "name": "Dohuk Governorate", "code": "DA" }, { "name": "Erbil Governorate", "code": "AR" }, { "name": "Karbala Governorate", "code": "KA" }, { "name": "Kirkuk Governorate", "code": "KI" }, { "name": "Maysan Governorate", "code": "MA" }, { "name": "Najaf Governorate", "code": "NA" }, { "name": "Nineveh Governorate", "code": "NI" }, { "name": "Saladin Governorate", "code": "SD" }, { "name": "Sulaymaniyah Governorate", "code": "SU" }, { "name": "Wasit Governorate", "code": "WA" } ], "IE": [ { "name": "Connacht", "code": "C" }, { "name": "County Carlow", "code": "CW" }, { "name": "County Cavan", "code": "CN" }, { "name": "County Clare", "code": "CE" }, { "name": "County Cork", "code": "CO" }, { "name": "County Donegal", "code": "DL" }, { "name": "County Dublin", "code": "D" }, { "name": "County Galway", "code": "G" }, { "name": "County Kerry", "code": "KY" }, { "name": "County Kildare", "code": "KE" }, { "name": "County Kilkenny", "code": "KK" }, { "name": "County Laois", "code": "LS" }, { "name": "County Limerick", "code": "LK" }, { "name": "County Longford", "code": "LD" }, { "name": "County Louth", "code": "LH" }, { "name": "County Mayo", "code": "MO" }, { "name": "County Meath", "code": "MH" }, { "name": "County Monaghan", "code": "MN" }, { "name": "County Offaly", "code": "OY" }, { "name": "County Roscommon", "code": "RN" }, { "name": "County Sligo", "code": "SO" }, { "name": "County Tipperary", "code": "TA" }, { "name": "County Waterford", "code": "WD" }, { "name": "County Westmeath", "code": "WH" }, { "name": "County Wexford", "code": "WX" }, { "name": "County Wicklow", "code": "WW" }, { "name": "Leinster", "code": "L" }, { "name": "Munster", "code": "M" }, { "name": "Ulster", "code": "U" } ], "IM": [{ "name": "Isle of Man", "code": "Isle of Man" }], "IL": [ { "name": "Central District", "code": "M" }, { "name": "Haifa District", "code": "HA" }, { "name": "Jerusalem District", "code": "JM" }, { "name": "Northern District", "code": "Z" }, { "name": "Southern District", "code": "D" }, { "name": "Tel Aviv District", "code": "TA" } ], "IT": [ { "name": "Abruzzo", "code": "65" }, { "name": "Aosta Valley", "code": "23" }, { "name": "Apulia", "code": "75" }, { "name": "Basilicata", "code": "77" }, { "name": "Benevento Province", "code": "BN" }, { "name": "Calabria", "code": "78" }, { "name": "Campania", "code": "72" }, { "name": "Emilia-Romagna", "code": "45" }, { "name": "Friuli–Venezia Giulia", "code": "36" }, { "name": "Lazio", "code": "62" }, { "name": "Libero consorzio comunale di Agrigento", "code": "AG" }, { "name": "Libero consorzio comunale di Caltanissetta", "code": "CL" }, { "name": "Libero consorzio comunale di Enna", "code": "EN" }, { "name": "Libero consorzio comunale di Ragusa", "code": "RG" }, { "name": "Libero consorzio comunale di Siracusa", "code": "SR" }, { "name": "Libero consorzio comunale di Trapani", "code": "TP" }, { "name": "Liguria", "code": "42" }, { "name": "Lombardy", "code": "25" }, { "name": "Marche", "code": "57" }, { "name": "Metropolitan City of Bari", "code": "BA" }, { "name": "Metropolitan City of Bologna", "code": "BO" }, { "name": "Metropolitan City of Cagliari", "code": "CA" }, { "name": "Metropolitan City of Catania", "code": "CT" }, { "name": "Metropolitan City of Florence", "code": "FI" }, { "name": "Metropolitan City of Genoa", "code": "GE" }, { "name": "Metropolitan City of Messina", "code": "ME" }, { "name": "Metropolitan City of Milan", "code": "MI" }, { "name": "Metropolitan City of Naples", "code": "NA" }, { "name": "Metropolitan City of Palermo", "code": "PA" }, { "name": "Metropolitan City of Reggio Calabria", "code": "RC" }, { "name": "Metropolitan City of Rome", "code": "RM" }, { "name": "Metropolitan City of Turin", "code": "TO" }, { "name": "Metropolitan City of Venice", "code": "VE" }, { "name": "Molise", "code": "67" }, { "name": "Pesaro and Urbino Province", "code": "PU" }, { "name": "Piedmont", "code": "21" }, { "name": "Province of Alessandria", "code": "AL" }, { "name": "Province of Ancona", "code": "AN" }, { "name": "Province of Ascoli Piceno", "code": "AP" }, { "name": "Province of Asti", "code": "AT" }, { "name": "Province of Avellino", "code": "AV" }, { "name": "Province of Barletta-Andria-Trani", "code": "BT" }, { "name": "Province of Belluno", "code": "BL" }, { "name": "Province of Bergamo", "code": "BG" }, { "name": "Province of Biella", "code": "BI" }, { "name": "Province of Brescia", "code": "BS" }, { "name": "Province of Brindisi", "code": "BR" }, { "name": "Province of Campobasso", "code": "CB" }, { "name": "Province of Carbonia-Iglesias", "code": "CI" }, { "name": "Province of Caserta", "code": "CE" }, { "name": "Province of Catanzaro", "code": "CZ" }, { "name": "Province of Chieti", "code": "CH" }, { "name": "Province of Como", "code": "CO" }, { "name": "Province of Cosenza", "code": "CS" }, { "name": "Province of Cremona", "code": "CR" }, { "name": "Province of Crotone", "code": "KR" }, { "name": "Province of Cuneo", "code": "CN" }, { "name": "Province of Fermo", "code": "FM" }, { "name": "Province of Ferrara", "code": "FE" }, { "name": "Province of Foggia", "code": "FG" }, { "name": "Province of Forlì-Cesena", "code": "FC" }, { "name": "Province of Frosinone", "code": "FR" }, { "name": "Province of Gorizia", "code": "GO" }, { "name": "Province of Grosseto", "code": "GR" }, { "name": "Province of Imperia", "code": "IM" }, { "name": "Province of Isernia", "code": "IS" }, { "name": "Province of L'Aquila", "code": "AQ" }, { "name": "Province of La Spezia", "code": "SP" }, { "name": "Province of Latina", "code": "LT" }, { "name": "Province of Lecce", "code": "LE" }, { "name": "Province of Lecco", "code": "LC" }, { "name": "Province of Livorno", "code": "LI" }, { "name": "Province of Lodi", "code": "LO" }, { "name": "Province of Lucca", "code": "LU" }, { "name": "Province of Macerata", "code": "MC" }, { "name": "Province of Mantua", "code": "MN" }, { "name": "Province of Massa and Carrara", "code": "MS" }, { "name": "Province of Matera", "code": "MT" }, { "name": "Province of Medio Campidano", "code": "VS" }, { "name": "Province of Modena", "code": "MO" }, { "name": "Province of Monza and Brianza", "code": "MB" }, { "name": "Province of Novara", "code": "NO" }, { "name": "Province of Nuoro", "code": "NU" }, { "name": "Province of Ogliastra", "code": "OG" }, { "name": "Province of Olbia-Tempio", "code": "OT" }, { "name": "Province of Oristano", "code": "OR" }, { "name": "Province of Padua", "code": "PD" }, { "name": "Province of Parma", "code": "PR" }, { "name": "Province of Pavia", "code": "PV" }, { "name": "Province of Perugia", "code": "PG" }, { "name": "Province of Pescara", "code": "PE" }, { "name": "Province of Piacenza", "code": "PC" }, { "name": "Province of Pisa", "code": "PI" }, { "name": "Province of Pistoia", "code": "PT" }, { "name": "Province of Pordenone", "code": "PN" }, { "name": "Province of Potenza", "code": "PZ" }, { "name": "Province of Prato", "code": "PO" }, { "name": "Province of Ravenna", "code": "RA" }, { "name": "Province of Reggio Emilia", "code": "RE" }, { "name": "Province of Rieti", "code": "RI" }, { "name": "Province of Rimini", "code": "RN" }, { "name": "Province of Rovigo", "code": "RO" }, { "name": "Province of Salerno", "code": "SA" }, { "name": "Province of Sassari", "code": "SS" }, { "name": "Province of Savona", "code": "SV" }, { "name": "Province of Siena", "code": "SI" }, { "name": "Province of Sondrio", "code": "SO" }, { "name": "Province of Taranto", "code": "TA" }, { "name": "Province of Teramo", "code": "TE" }, { "name": "Province of Terni", "code": "TR" }, { "name": "Province of Treviso", "code": "TV" }, { "name": "Province of Trieste", "code": "TS" }, { "name": "Province of Udine", "code": "UD" }, { "name": "Province of Varese", "code": "VA" }, { "name": "Province of Verbano-Cusio-Ossola", "code": "VB" }, { "name": "Province of Vercelli", "code": "VC" }, { "name": "Province of Verona", "code": "VR" }, { "name": "Province of Vibo Valentia", "code": "VV" }, { "name": "Province of Vicenza", "code": "VI" }, { "name": "Province of Viterbo", "code": "VT" }, { "name": "Sardinia", "code": "88" }, { "name": "Sicily", "code": "82" }, { "name": "South Tyrol", "code": "BZ" }, { "name": "Trentino", "code": "TN" }, { "name": "Trentino-South Tyrol", "code": "32" }, { "name": "Tuscany", "code": "52" }, { "name": "Umbria", "code": "55" }, { "name": "Veneto", "code": "34" } ], "JM": [ { "name": "Clarendon Parish", "code": "13" }, { "name": "Hanover Parish", "code": "09" }, { "name": "Kingston Parish", "code": "01" }, { "name": "Manchester Parish", "code": "12" }, { "name": "Portland Parish", "code": "04" }, { "name": "Saint Andrew", "code": "02" }, { "name": "Saint Ann Parish", "code": "06" }, { "name": "Saint Catherine Parish", "code": "14" }, { "name": "Saint Elizabeth Parish", "code": "11" }, { "name": "Saint James Parish", "code": "08" }, { "name": "Saint Mary Parish", "code": "05" }, { "name": "Saint Thomas Parish", "code": "03" }, { "name": "Trelawny Parish", "code": "07" }, { "name": "Westmoreland Parish", "code": "10" } ], "JP": [ { "name": "Aichi Prefecture", "code": "23" }, { "name": "Akita Prefecture", "code": "05" }, { "name": "Aomori Prefecture", "code": "02" }, { "name": "Chiba Prefecture", "code": "12" }, { "name": "Ehime Prefecture", "code": "38" }, { "name": "Fukui Prefecture", "code": "18" }, { "name": "Fukuoka Prefecture", "code": "40" }, { "name": "Fukushima Prefecture", "code": "07" }, { "name": "Gifu Prefecture", "code": "21" }, { "name": "Gunma Prefecture", "code": "10" }, { "name": "Hiroshima Prefecture", "code": "34" }, { "name": "Hokkaidō Prefecture", "code": "01" }, { "name": "Hyōgo Prefecture", "code": "28" }, { "name": "Ibaraki Prefecture", "code": "08" }, { "name": "Ishikawa Prefecture", "code": "17" }, { "name": "Iwate Prefecture", "code": "03" }, { "name": "Kagawa Prefecture", "code": "37" }, { "name": "Kagoshima Prefecture", "code": "46" }, { "name": "Kanagawa Prefecture", "code": "14" }, { "name": "Kumamoto Prefecture", "code": "43" }, { "name": "Kyōto Prefecture", "code": "26" }, { "name": "Mie Prefecture", "code": "24" }, { "name": "Miyagi Prefecture", "code": "04" }, { "name": "Miyazaki Prefecture", "code": "45" }, { "name": "Nagano Prefecture", "code": "20" }, { "name": "Nagasaki Prefecture", "code": "42" }, { "name": "Nara Prefecture", "code": "29" }, { "name": "Niigata Prefecture", "code": "15" }, { "name": "Okayama Prefecture", "code": "33" }, { "name": "Okinawa Prefecture", "code": "47" }, { "name": "Saga Prefecture", "code": "41" }, { "name": "Saitama Prefecture", "code": "11" }, { "name": "Shiga Prefecture", "code": "25" }, { "name": "Shimane Prefecture", "code": "32" }, { "name": "Shizuoka Prefecture", "code": "22" }, { "name": "Tochigi Prefecture", "code": "09" }, { "name": "Tokushima Prefecture", "code": "36" }, { "name": "Tokyo", "code": "13" }, { "name": "Tottori Prefecture", "code": "31" }, { "name": "Toyama Prefecture", "code": "16" }, { "name": "Wakayama Prefecture", "code": "30" }, { "name": "Yamagata Prefecture", "code": "06" }, { "name": "Yamaguchi Prefecture", "code": "35" }, { "name": "Yamanashi Prefecture", "code": "19" }, { "name": "Ōita Prefecture", "code": "44" }, { "name": "Ōsaka Prefecture", "code": "27" } ], "JE": [{ "name": "Jersey", "code": "Jersey" }], "JO": [ { "name": "Ajloun Governorate", "code": "AJ" }, { "name": "Amman Governorate", "code": "AM" }, { "name": "Aqaba Governorate", "code": "AQ" }, { "name": "Balqa Governorate", "code": "BA" }, { "name": "Irbid Governorate", "code": "IR" }, { "name": "Jerash Governorate", "code": "JA" }, { "name": "Karak Governorate", "code": "KA" }, { "name": "Ma'an Governorate", "code": "MN" }, { "name": "Madaba Governorate", "code": "MD" }, { "name": "Mafraq Governorate", "code": "MA" }, { "name": "Tafilah Governorate", "code": "AT" }, { "name": "Zarqa Governorate", "code": "AZ" } ], "KZ": [ { "name": "Akmola Region", "code": "AKM" }, { "name": "Aktobe Region", "code": "AKT" }, { "name": "Almaty", "code": "ALA" }, { "name": "Almaty Region", "code": "ALM" }, { "name": "Atyrau Region", "code": "ATY" }, { "name": "Baikonur", "code": "BAY" }, { "name": "East Kazakhstan Region", "code": "VOS" }, { "name": "Jambyl Region", "code": "ZHA" }, { "name": "Karaganda Region", "code": "KAR" }, { "name": "Kostanay Region", "code": "KUS" }, { "name": "Kyzylorda Region", "code": "KZY" }, { "name": "Mangystau Region", "code": "MAN" }, { "name": "North Kazakhstan Region", "code": "SEV" }, { "name": "Nur-Sultan", "code": "AST" }, { "name": "Pavlodar Region", "code": "PAV" }, { "name": "Turkestan Region", "code": "YUZ" }, { "name": "West Kazakhstan Province", "code": "ZAP" } ], "KE": [ { "name": "Baringo County", "code": "01" }, { "name": "Bomet County", "code": "02" }, { "name": "Bungoma County", "code": "03" }, { "name": "Busia County", "code": "04" }, { "name": "Central Province", "code": "200" }, { "name": "Coast Province", "code": "300" }, { "name": "Eastern Province", "code": "400" }, { "name": "Elgeyo-Marakwet County", "code": "05" }, { "name": "Embu County", "code": "06" }, { "name": "Garissa County", "code": "07" }, { "name": "Homa Bay County", "code": "08" }, { "name": "Isiolo County", "code": "09" }, { "name": "Kajiado County", "code": "10" }, { "name": "Kakamega County", "code": "11" }, { "name": "Kericho County", "code": "12" }, { "name": "Kiambu County", "code": "13" }, { "name": "Kilifi County", "code": "14" }, { "name": "Kirinyaga County", "code": "15" }, { "name": "Kisii County", "code": "16" }, { "name": "Kisumu County", "code": "17" }, { "name": "Kitui County", "code": "18" }, { "name": "Kwale County", "code": "19" }, { "name": "Laikipia County", "code": "20" }, { "name": "Lamu County", "code": "21" }, { "name": "Machakos County", "code": "22" }, { "name": "Makueni County", "code": "23" }, { "name": "Mandera County", "code": "24" }, { "name": "Marsabit County", "code": "25" }, { "name": "Meru County", "code": "26" }, { "name": "Migori County", "code": "27" }, { "name": "Mombasa County", "code": "28" }, { "name": "Muranga County", "code": "29" }, { "name": "Nairobi", "code": "110" }, { "name": "Nakuru District", "code": "31" }, { "name": "Nandi District", "code": "32" }, { "name": "Narok County", "code": "33" }, { "name": "North Eastern Province", "code": "500" }, { "name": "Nyamira District", "code": "34" }, { "name": "Nyandarua County", "code": "35" }, { "name": "Nyanza Province", "code": "600" }, { "name": "Nyeri County", "code": "36" }, { "name": "Rift Valley Province", "code": "700" }, { "name": "Samburu County", "code": "37" }, { "name": "Siaya County", "code": "38" }, { "name": "Taita–Taveta County", "code": "39" }, { "name": "Tana River County", "code": "40" }, { "name": "Tharaka Nithi County", "code": "41" }, { "name": "Trans-Nzoia District", "code": "42" }, { "name": "Turkana County", "code": "43" }, { "name": "Uasin Gishu District", "code": "44" }, { "name": "Vihiga District", "code": "45" }, { "name": "Wajir County", "code": "46" }, { "name": "West Pokot County", "code": "47" }, { "name": "Western Province", "code": "800" } ], "KI": [ { "name": "Gilbert Islands", "code": "G" }, { "name": "Line Islands", "code": "L" }, { "name": "Phoenix Islands", "code": "P" } ], "KP": [ { "name": "Chagang Province", "code": "04" }, { "name": "Kangwon Province", "code": "07" }, { "name": "North Hamgyong Province", "code": "09" }, { "name": "North Hwanghae Province", "code": "06" }, { "name": "North Pyongan Province", "code": "03" }, { "name": "Pyongyang", "code": "01" }, { "name": "Rason", "code": "13" }, { "name": "Ryanggang Province", "code": "10" }, { "name": "South Hamgyong Province", "code": "08" }, { "name": "South Hwanghae Province", "code": "05" }, { "name": "South Pyongan Province", "code": "02" } ], "KR": [ { "name": "Busan", "code": "26" }, { "name": "Daegu", "code": "27" }, { "name": "Daejeon", "code": "30" }, { "name": "Gangwon Province", "code": "42" }, { "name": "Gwangju", "code": "29" }, { "name": "Gyeonggi Province", "code": "41" }, { "name": "Incheon", "code": "28" }, { "name": "Jeju", "code": "49" }, { "name": "North Chungcheong Province", "code": "43" }, { "name": "North Gyeongsang Province", "code": "47" }, { "name": "North Jeolla Province", "code": "45" }, { "name": "Sejong City", "code": "50" }, { "name": "Seoul", "code": "11" }, { "name": "South Chungcheong Province", "code": "44" }, { "name": "South Gyeongsang Province", "code": "48" }, { "name": "South Jeolla Province", "code": "46" }, { "name": "Ulsan", "code": "31" } ], "XK": [ { "name": "Gjilan District", "code": "XGJ" }, { "name": "Kosovska Mitrovica District", "code": "XKM" }, { "name": "Peć District", "code": "XPE" }, { "name": "Pristina (Priştine)", "code": "XPI" }, { "name": "Prizren District", "code": "XPR" }, { "name": "Uroševac District (Ferizaj)", "code": "XUF" }, { "name": "Đakovica District (Gjakove)", "code": "XDG" } ], "KW": [ { "name": "Al Ahmadi Governorate", "code": "AH" }, { "name": "Al Farwaniyah Governorate", "code": "FA" }, { "name": "Al Jahra Governorate", "code": "JA" }, { "name": "Capital Governorate", "code": "KU" }, { "name": "Hawalli Governorate", "code": "HA" }, { "name": "Mubarak Al-Kabeer Governorate", "code": "MU" } ], "KG": [ { "name": "Batken Region", "code": "B" }, { "name": "Bishkek", "code": "GB" }, { "name": "Chuy Region", "code": "C" }, { "name": "Issyk-Kul Region", "code": "Y" }, { "name": "Jalal-Abad Region", "code": "J" }, { "name": "Naryn Region", "code": "N" }, { "name": "Osh", "code": "GO" }, { "name": "Osh Region", "code": "O" }, { "name": "Talas Region", "code": "T" } ], "LA": [ { "name": "Attapeu Province", "code": "AT" }, { "name": "Bokeo Province", "code": "BK" }, { "name": "Bolikhamsai Province", "code": "BL" }, { "name": "Champasak Province", "code": "CH" }, { "name": "Houaphanh Province", "code": "HO" }, { "name": "Khammouane Province", "code": "KH" }, { "name": "Luang Namtha Province", "code": "LM" }, { "name": "Luang Prabang Province", "code": "LP" }, { "name": "Oudomxay Province", "code": "OU" }, { "name": "Phongsaly Province", "code": "PH" }, { "name": "Sainyabuli Province", "code": "XA" }, { "name": "Salavan Province", "code": "SL" }, { "name": "Savannakhet Province", "code": "SV" }, { "name": "Sekong Province", "code": "XE" }, { "name": "Vientiane Prefecture", "code": "VT" }, { "name": "Vientiane Province", "code": "VI" }, { "name": "Xaisomboun", "code": "XN" }, { "name": "Xaisomboun Province", "code": "XS" }, { "name": "Xiangkhouang Province", "code": "XI" } ], "LV": [ { "name": "Aglona Municipality", "code": "001" }, { "name": "Aizkraukle Municipality", "code": "002" }, { "name": "Aizpute Municipality", "code": "003" }, { "name": "Aknīste Municipality", "code": "004" }, { "name": "Aloja Municipality", "code": "005" }, { "name": "Alsunga Municipality", "code": "006" }, { "name": "Alūksne Municipality", "code": "007" }, { "name": "Amata Municipality", "code": "008" }, { "name": "Ape Municipality", "code": "009" }, { "name": "Auce Municipality", "code": "010" }, { "name": "Babīte Municipality", "code": "012" }, { "name": "Baldone Municipality", "code": "013" }, { "name": "Baltinava Municipality", "code": "014" }, { "name": "Balvi Municipality", "code": "015" }, { "name": "Bauska Municipality", "code": "016" }, { "name": "Beverīna Municipality", "code": "017" }, { "name": "Brocēni Municipality", "code": "018" }, { "name": "Burtnieki Municipality", "code": "019" }, { "name": "Carnikava Municipality", "code": "020" }, { "name": "Cesvaine Municipality", "code": "021" }, { "name": "Cibla Municipality", "code": "023" }, { "name": "Cēsis Municipality", "code": "022" }, { "name": "Dagda Municipality", "code": "024" }, { "name": "Daugavpils", "code": "DGV" }, { "name": "Daugavpils Municipality", "code": "025" }, { "name": "Dobele Municipality", "code": "026" }, { "name": "Dundaga Municipality", "code": "027" }, { "name": "Durbe Municipality", "code": "028" }, { "name": "Engure Municipality", "code": "029" }, { "name": "Garkalne Municipality", "code": "031" }, { "name": "Grobiņa Municipality", "code": "032" }, { "name": "Gulbene Municipality", "code": "033" }, { "name": "Iecava Municipality", "code": "034" }, { "name": "Ikšķile Municipality", "code": "035" }, { "name": "Ilūkste Municipality", "code": "036" }, { "name": "Inčukalns Municipality", "code": "037" }, { "name": "Jaunjelgava Municipality", "code": "038" }, { "name": "Jaunpiebalga Municipality", "code": "039" }, { "name": "Jaunpils Municipality", "code": "040" }, { "name": "Jelgava", "code": "JEL" }, { "name": "Jelgava Municipality", "code": "041" }, { "name": "Jēkabpils", "code": "JKB" }, { "name": "Jēkabpils Municipality", "code": "042" }, { "name": "Jūrmala", "code": "JUR" }, { "name": "Kandava Municipality", "code": "043" }, { "name": "Kocēni Municipality", "code": "045" }, { "name": "Koknese Municipality", "code": "046" }, { "name": "Krimulda Municipality", "code": "048" }, { "name": "Krustpils Municipality", "code": "049" }, { "name": "Krāslava Municipality", "code": "047" }, { "name": "Kuldīga Municipality", "code": "050" }, { "name": "Kārsava Municipality", "code": "044" }, { "name": "Lielvārde Municipality", "code": "053" }, { "name": "Liepāja", "code": "LPX" }, { "name": "Limbaži Municipality", "code": "054" }, { "name": "Lubāna Municipality", "code": "057" }, { "name": "Ludza Municipality", "code": "058" }, { "name": "Līgatne Municipality", "code": "055" }, { "name": "Līvāni Municipality", "code": "056" }, { "name": "Madona Municipality", "code": "059" }, { "name": "Mazsalaca Municipality", "code": "060" }, { "name": "Mālpils Municipality", "code": "061" }, { "name": "Mārupe Municipality", "code": "062" }, { "name": "Mērsrags Municipality", "code": "063" }, { "name": "Naukšēni Municipality", "code": "064" }, { "name": "Nereta Municipality", "code": "065" }, { "name": "Nīca Municipality", "code": "066" }, { "name": "Ogre Municipality", "code": "067" }, { "name": "Olaine Municipality", "code": "068" }, { "name": "Ozolnieki Municipality", "code": "069" }, { "name": "Preiļi Municipality", "code": "073" }, { "name": "Priekule Municipality", "code": "074" }, { "name": "Priekuļi Municipality", "code": "075" }, { "name": "Pārgauja Municipality", "code": "070" }, { "name": "Pāvilosta Municipality", "code": "071" }, { "name": "Pļaviņas Municipality", "code": "072" }, { "name": "Rauna Municipality", "code": "076" }, { "name": "Riebiņi Municipality", "code": "078" }, { "name": "Riga", "code": "RIX" }, { "name": "Roja Municipality", "code": "079" }, { "name": "Ropaži Municipality", "code": "080" }, { "name": "Rucava Municipality", "code": "081" }, { "name": "Rugāji Municipality", "code": "082" }, { "name": "Rundāle Municipality", "code": "083" }, { "name": "Rēzekne", "code": "REZ" }, { "name": "Rēzekne Municipality", "code": "077" }, { "name": "Rūjiena Municipality", "code": "084" }, { "name": "Sala Municipality", "code": "085" }, { "name": "Salacgrīva Municipality", "code": "086" }, { "name": "Salaspils Municipality", "code": "087" }, { "name": "Saldus Municipality", "code": "088" }, { "name": "Saulkrasti Municipality", "code": "089" }, { "name": "Sigulda Municipality", "code": "091" }, { "name": "Skrunda Municipality", "code": "093" }, { "name": "Skrīveri Municipality", "code": "092" }, { "name": "Smiltene Municipality", "code": "094" }, { "name": "Stopiņi Municipality", "code": "095" }, { "name": "Strenči Municipality", "code": "096" }, { "name": "Sēja Municipality", "code": "090" }, { "name": "Talsi Municipality", "code": "097" }, { "name": "Tukums Municipality", "code": "099" }, { "name": "Tērvete Municipality", "code": "098" }, { "name": "Vaiņode Municipality", "code": "100" }, { "name": "Valka Municipality", "code": "101" }, { "name": "Valmiera", "code": "VMR" }, { "name": "Varakļāni Municipality", "code": "102" }, { "name": "Vecpiebalga Municipality", "code": "104" }, { "name": "Vecumnieki Municipality", "code": "105" }, { "name": "Ventspils", "code": "VEN" }, { "name": "Ventspils Municipality", "code": "106" }, { "name": "Viesīte Municipality", "code": "107" }, { "name": "Viļaka Municipality", "code": "108" }, { "name": "Viļāni Municipality", "code": "109" }, { "name": "Vārkava Municipality", "code": "103" }, { "name": "Zilupe Municipality", "code": "110" }, { "name": "Ērgļi Municipality", "code": "030" }, { "name": "Ķegums Municipality", "code": "051" }, { "name": "Ķekava Municipality", "code": "052" } ], "LB": [ { "name": "Akkar Governorate", "code": "AK" }, { "name": "Baalbek-Hermel Governorate", "code": "BH" }, { "name": "Beirut Governorate", "code": "BA" }, { "name": "Beqaa Governorate", "code": "BI" }, { "name": "Mount Lebanon Governorate", "code": "JL" }, { "name": "Nabatieh Governorate", "code": "NA" }, { "name": "North Governorate", "code": "AS" }, { "name": "South Governorate", "code": "JA" } ], "LS": [ { "name": "Berea District", "code": "D" }, { "name": "Butha-Buthe District", "code": "B" }, { "name": "Leribe District", "code": "C" }, { "name": "Mafeteng District", "code": "E" }, { "name": "Maseru District", "code": "A" }, { "name": "Mohale's Hoek District", "code": "F" }, { "name": "Mokhotlong District", "code": "J" }, { "name": "Qacha's Nek District", "code": "H" }, { "name": "Quthing District", "code": "G" }, { "name": "Thaba-Tseka District", "code": "K" } ], "LR": [ { "name": "Bomi County", "code": "BM" }, { "name": "Bong County", "code": "BG" }, { "name": "Gbarpolu County", "code": "GP" }, { "name": "Grand Bassa County", "code": "GB" }, { "name": "Grand Cape Mount County", "code": "CM" }, { "name": "Grand Gedeh County", "code": "GG" }, { "name": "Grand Kru County", "code": "GK" }, { "name": "Lofa County", "code": "LO" }, { "name": "Margibi County", "code": "MG" }, { "name": "Maryland County", "code": "MY" }, { "name": "Montserrado County", "code": "MO" }, { "name": "Nimba", "code": "NI" }, { "name": "River Cess County", "code": "RI" }, { "name": "River Gee County", "code": "RG" }, { "name": "Sinoe County", "code": "SI" } ], "LY": [ { "name": "Al Wahat District", "code": "WA" }, { "name": "Benghazi", "code": "BA" }, { "name": "Derna District", "code": "DR" }, { "name": "Ghat District", "code": "GT" }, { "name": "Jabal al Akhdar", "code": "JA" }, { "name": "Jabal al Gharbi District", "code": "JG" }, { "name": "Jafara", "code": "JI" }, { "name": "Jufra", "code": "JU" }, { "name": "Kufra District", "code": "KF" }, { "name": "Marj District", "code": "MJ" }, { "name": "Misrata District", "code": "MI" }, { "name": "Murqub", "code": "MB" }, { "name": "Murzuq District", "code": "MQ" }, { "name": "Nalut District", "code": "NL" }, { "name": "Nuqat al Khams", "code": "NQ" }, { "name": "Sabha District", "code": "SB" }, { "name": "Sirte District", "code": "SR" }, { "name": "Tripoli District", "code": "TB" }, { "name": "Wadi al Hayaa District", "code": "WD" }, { "name": "Wadi al Shatii District", "code": "WS" }, { "name": "Zawiya District", "code": "ZA" } ], "LI": [ { "name": "Balzers", "code": "01" }, { "name": "Eschen", "code": "02" }, { "name": "Gamprin", "code": "03" }, { "name": "Mauren", "code": "04" }, { "name": "Planken", "code": "05" }, { "name": "Ruggell", "code": "06" }, { "name": "Schaan", "code": "07" }, { "name": "Schellenberg", "code": "08" }, { "name": "Triesen", "code": "09" }, { "name": "Triesenberg", "code": "10" }, { "name": "Vaduz", "code": "11" } ], "LT": [ { "name": "Akmenė District Municipality", "code": "01" }, { "name": "Alytus City Municipality", "code": "02" }, { "name": "Alytus County", "code": "AL" }, { "name": "Alytus District Municipality", "code": "03" }, { "name": "Birštonas Municipality", "code": "05" }, { "name": "Biržai District Municipality", "code": "06" }, { "name": "Druskininkai municipality", "code": "07" }, { "name": "Elektrėnai municipality", "code": "08" }, { "name": "Ignalina District Municipality", "code": "09" }, { "name": "Jonava District Municipality", "code": "10" }, { "name": "Joniškis District Municipality", "code": "11" }, { "name": "Jurbarkas District Municipality", "code": "12" }, { "name": "Kaišiadorys District Municipality", "code": "13" }, { "name": "Kalvarija municipality", "code": "14" }, { "name": "Kaunas City Municipality", "code": "15" }, { "name": "Kaunas County", "code": "KU" }, { "name": "Kaunas District Municipality", "code": "16" }, { "name": "Kazlų Rūda municipality", "code": "17" }, { "name": "Kėdainiai District Municipality", "code": "18" }, { "name": "Kelmė District Municipality", "code": "19" }, { "name": "Klaipeda City Municipality", "code": "20" }, { "name": "Klaipėda County", "code": "KL" }, { "name": "Klaipėda District Municipality", "code": "21" }, { "name": "Kretinga District Municipality", "code": "22" }, { "name": "Kupiškis District Municipality", "code": "23" }, { "name": "Lazdijai District Municipality", "code": "24" }, { "name": "Marijampolė County", "code": "MR" }, { "name": "Marijampolė Municipality", "code": "25" }, { "name": "Mažeikiai District Municipality", "code": "26" }, { "name": "Molėtai District Municipality", "code": "27" }, { "name": "Neringa Municipality", "code": "28" }, { "name": "Pagėgiai municipality", "code": "29" }, { "name": "Pakruojis District Municipality", "code": "30" }, { "name": "Palanga City Municipality", "code": "31" }, { "name": "Panevėžys City Municipality", "code": "32" }, { "name": "Panevėžys County", "code": "PN" }, { "name": "Panevėžys District Municipality", "code": "33" }, { "name": "Pasvalys District Municipality", "code": "34" }, { "name": "Plungė District Municipality", "code": "35" }, { "name": "Prienai District Municipality", "code": "36" }, { "name": "Radviliškis District Municipality", "code": "37" }, { "name": "Raseiniai District Municipality", "code": "38" }, { "name": "Rietavas municipality", "code": "39" }, { "name": "Rokiškis District Municipality", "code": "40" }, { "name": "Šakiai District Municipality", "code": "41" }, { "name": "Šalčininkai District Municipality", "code": "42" }, { "name": "Šiauliai City Municipality", "code": "43" }, { "name": "Šiauliai County", "code": "SA" }, { "name": "Šiauliai District Municipality", "code": "44" }, { "name": "Šilalė District Municipality", "code": "45" }, { "name": "Šilutė District Municipality", "code": "46" }, { "name": "Širvintos District Municipality", "code": "47" }, { "name": "Skuodas District Municipality", "code": "48" }, { "name": "Švenčionys District Municipality", "code": "49" }, { "name": "Tauragė County", "code": "TA" }, { "name": "Tauragė District Municipality", "code": "50" }, { "name": "Telšiai County", "code": "TE" }, { "name": "Telšiai District Municipality", "code": "51" }, { "name": "Trakai District Municipality", "code": "52" }, { "name": "Ukmergė District Municipality", "code": "53" }, { "name": "Utena County", "code": "UT" }, { "name": "Utena District Municipality", "code": "54" }, { "name": "Varėna District Municipality", "code": "55" }, { "name": "Vilkaviškis District Municipality", "code": "56" }, { "name": "Vilnius City Municipality", "code": "57" }, { "name": "Vilnius County", "code": "VL" }, { "name": "Vilnius District Municipality", "code": "58" }, { "name": "Visaginas Municipality", "code": "59" }, { "name": "Zarasai District Municipality", "code": "60" } ], "LU": [ { "name": "Canton of Capellen", "code": "CA" }, { "name": "Canton of Clervaux", "code": "CL" }, { "name": "Canton of Diekirch", "code": "DI" }, { "name": "Canton of Echternach", "code": "EC" }, { "name": "Canton of Esch-sur-Alzette", "code": "ES" }, { "name": "Canton of Grevenmacher", "code": "GR" }, { "name": "Canton of Luxembourg", "code": "LU" }, { "name": "Canton of Mersch", "code": "ME" }, { "name": "Canton of Redange", "code": "RD" }, { "name": "Canton of Remich", "code": "RM" }, { "name": "Canton of Vianden", "code": "VD" }, { "name": "Canton of Wiltz", "code": "WI" }, { "name": "Diekirch District", "code": "D" }, { "name": "Grevenmacher District", "code": "G" }, { "name": "Luxembourg District", "code": "L" } ], "MO": [{ "name": "Macao", "code": "Macao" }], "MK": [ { "name": "Aerodrom Municipality", "code": "01" }, { "name": "Aračinovo Municipality", "code": "02" }, { "name": "Berovo Municipality", "code": "03" }, { "name": "Bitola Municipality", "code": "04" }, { "name": "Bogdanci Municipality", "code": "05" }, { "name": "Bogovinje Municipality", "code": "06" }, { "name": "Bosilovo Municipality", "code": "07" }, { "name": "Brvenica Municipality", "code": "08" }, { "name": "Butel Municipality", "code": "09" }, { "name": "Centar Municipality", "code": "77" }, { "name": "Centar Župa Municipality", "code": "78" }, { "name": "Debarca Municipality", "code": "22" }, { "name": "Delčevo Municipality", "code": "23" }, { "name": "Demir Hisar Municipality", "code": "25" }, { "name": "Demir Kapija Municipality", "code": "24" }, { "name": "Dojran Municipality", "code": "26" }, { "name": "Dolneni Municipality", "code": "27" }, { "name": "Drugovo Municipality", "code": "28" }, { "name": "Gazi Baba Municipality", "code": "17" }, { "name": "Gevgelija Municipality", "code": "18" }, { "name": "Gjorče Petrov Municipality", "code": "29" }, { "name": "Gostivar Municipality", "code": "19" }, { "name": "Gradsko Municipality", "code": "20" }, { "name": "Greater Skopje", "code": "85" }, { "name": "Ilinden Municipality", "code": "34" }, { "name": "Jegunovce Municipality", "code": "35" }, { "name": "Karbinci", "code": "37" }, { "name": "Karpoš Municipality", "code": "38" }, { "name": "Kavadarci Municipality", "code": "36" }, { "name": "Kisela Voda Municipality", "code": "39" }, { "name": "Kičevo Municipality", "code": "40" }, { "name": "Konče Municipality", "code": "41" }, { "name": "Kočani Municipality", "code": "42" }, { "name": "Kratovo Municipality", "code": "43" }, { "name": "Kriva Palanka Municipality", "code": "44" }, { "name": "Krivogaštani Municipality", "code": "45" }, { "name": "Kruševo Municipality", "code": "46" }, { "name": "Kumanovo Municipality", "code": "47" }, { "name": "Lipkovo Municipality", "code": "48" }, { "name": "Lozovo Municipality", "code": "49" }, { "name": "Makedonska Kamenica Municipality", "code": "51" }, { "name": "Makedonski Brod Municipality", "code": "52" }, { "name": "Mavrovo and Rostuša Municipality", "code": "50" }, { "name": "Mogila Municipality", "code": "53" }, { "name": "Negotino Municipality", "code": "54" }, { "name": "Novaci Municipality", "code": "55" }, { "name": "Novo Selo Municipality", "code": "56" }, { "name": "Ohrid Municipality", "code": "58" }, { "name": "Oslomej Municipality", "code": "57" }, { "name": "Pehčevo Municipality", "code": "60" }, { "name": "Petrovec Municipality", "code": "59" }, { "name": "Plasnica Municipality", "code": "61" }, { "name": "Prilep Municipality", "code": "62" }, { "name": "Probištip Municipality", "code": "63" }, { "name": "Radoviš Municipality", "code": "64" }, { "name": "Rankovce Municipality", "code": "65" }, { "name": "Resen Municipality", "code": "66" }, { "name": "Rosoman Municipality", "code": "67" }, { "name": "Saraj Municipality", "code": "68" }, { "name": "Sopište Municipality", "code": "70" }, { "name": "Staro Nagoričane Municipality", "code": "71" }, { "name": "Struga Municipality", "code": "72" }, { "name": "Strumica Municipality", "code": "73" }, { "name": "Studeničani Municipality", "code": "74" }, { "name": "Sveti Nikole Municipality", "code": "69" }, { "name": "Tearce Municipality", "code": "75" }, { "name": "Tetovo Municipality", "code": "76" }, { "name": "Valandovo Municipality", "code": "10" }, { "name": "Vasilevo Municipality", "code": "11" }, { "name": "Veles Municipality", "code": "13" }, { "name": "Vevčani Municipality", "code": "12" }, { "name": "Vinica Municipality", "code": "14" }, { "name": "Vraneštica Municipality", "code": "15" }, { "name": "Vrapčište Municipality", "code": "16" }, { "name": "Zajas Municipality", "code": "31" }, { "name": "Zelenikovo Municipality", "code": "32" }, { "name": "Zrnovci Municipality", "code": "33" }, { "name": "Čair Municipality", "code": "79" }, { "name": "Čaška Municipality", "code": "80" }, { "name": "Češinovo-Obleševo Municipality", "code": "81" }, { "name": "Čučer-Sandevo Municipality", "code": "82" }, { "name": "Štip Municipality", "code": "83" }, { "name": "Šuto Orizari Municipality", "code": "84" }, { "name": "Želino Municipality", "code": "30" } ], "MG": [ { "name": "Antananarivo Province", "code": "T" }, { "name": "Antsiranana Province", "code": "D" }, { "name": "Fianarantsoa Province", "code": "F" }, { "name": "Mahajanga Province", "code": "M" }, { "name": "Toamasina Province", "code": "A" }, { "name": "Toliara Province", "code": "U" } ], "MW": [ { "name": "Balaka District", "code": "BA" }, { "name": "Blantyre District", "code": "BL" }, { "name": "Central Region", "code": "C" }, { "name": "Chikwawa District", "code": "CK" }, { "name": "Chiradzulu District", "code": "CR" }, { "name": "Chitipa district", "code": "CT" }, { "name": "Dedza District", "code": "DE" }, { "name": "Dowa District", "code": "DO" }, { "name": "Karonga District", "code": "KR" }, { "name": "Kasungu District", "code": "KS" }, { "name": "Likoma District", "code": "LK" }, { "name": "Lilongwe District", "code": "LI" }, { "name": "Machinga District", "code": "MH" }, { "name": "Mangochi District", "code": "MG" }, { "name": "Mchinji District", "code": "MC" }, { "name": "Mulanje District", "code": "MU" }, { "name": "Mwanza District", "code": "MW" }, { "name": "Mzimba District", "code": "MZ" }, { "name": "Nkhata Bay District", "code": "NB" }, { "name": "Nkhotakota District", "code": "NK" }, { "name": "Northern Region", "code": "N" }, { "name": "Nsanje District", "code": "NS" }, { "name": "Ntcheu District", "code": "NU" }, { "name": "Ntchisi District", "code": "NI" }, { "name": "Phalombe District", "code": "PH" }, { "name": "Rumphi District", "code": "RU" }, { "name": "Salima District", "code": "SA" }, { "name": "Southern Region", "code": "S" }, { "name": "Thyolo District", "code": "TH" }, { "name": "Zomba District", "code": "ZO" } ], "MY": [ { "name": "Johor", "code": "01" }, { "name": "Kedah", "code": "02" }, { "name": "Kelantan", "code": "03" }, { "name": "Kuala Lumpur", "code": "14" }, { "name": "Labuan", "code": "15" }, { "name": "Melaka", "code": "04" }, { "name": "Negeri Sembilan", "code": "05" }, { "name": "Pahang", "code": "06" }, { "name": "Penang", "code": "07" }, { "name": "Perak", "code": "08" }, { "name": "Perlis", "code": "09" }, { "name": "Putrajaya", "code": "16" }, { "name": "Sabah", "code": "12" }, { "name": "Sarawak", "code": "13" }, { "name": "Selangor", "code": "10" }, { "name": "Terengganu", "code": "11" } ], "MV": [ { "name": "Addu Atoll", "code": "01" }, { "name": "Alif Alif Atoll", "code": "02" }, { "name": "Alif Dhaal Atoll", "code": "00" }, { "name": "Central Province", "code": "CE" }, { "name": "Dhaalu Atoll", "code": "17" }, { "name": "Faafu Atoll", "code": "14" }, { "name": "Gaafu Alif Atoll", "code": "27" }, { "name": "Gaafu Dhaalu Atoll", "code": "28" }, { "name": "Gnaviyani Atoll", "code": "29" }, { "name": "Haa Alif Atoll", "code": "07" }, { "name": "Haa Dhaalu Atoll", "code": "23" }, { "name": "Kaafu Atoll", "code": "26" }, { "name": "Laamu Atoll", "code": "05" }, { "name": "Lhaviyani Atoll", "code": "03" }, { "name": "Malé", "code": "MLE" }, { "name": "Meemu Atoll", "code": "12" }, { "name": "Noonu Atoll", "code": "25" }, { "name": "North Central Province", "code": "NC" }, { "name": "North Province", "code": "NO" }, { "name": "Raa Atoll", "code": "13" }, { "name": "Shaviyani Atoll", "code": "24" }, { "name": "South Central Province", "code": "SC" }, { "name": "South Province", "code": "SU" }, { "name": "Thaa Atoll", "code": "08" }, { "name": "Upper South Province", "code": "US" }, { "name": "Vaavu Atoll", "code": "04" } ], "ML": [ { "name": "Bamako", "code": "BKO" }, { "name": "Gao Region", "code": "7" }, { "name": "Kayes Region", "code": "1" }, { "name": "Kidal Region", "code": "8" }, { "name": "Koulikoro Region", "code": "2" }, { "name": "Mopti Region", "code": "5" }, { "name": "Ménaka Region", "code": "9" }, { "name": "Sikasso Region", "code": "3" }, { "name": "Ségou Region", "code": "4" }, { "name": "Taoudénit Region", "code": "10" }, { "name": "Tombouctou Region", "code": "6" } ], "MT": [ { "name": "Attard", "code": "01" }, { "name": "Balzan", "code": "02" }, { "name": "Birgu", "code": "03" }, { "name": "Birkirkara", "code": "04" }, { "name": "Birżebbuġa", "code": "05" }, { "name": "Cospicua", "code": "06" }, { "name": "Dingli", "code": "07" }, { "name": "Fgura", "code": "08" }, { "name": "Floriana", "code": "09" }, { "name": "Fontana", "code": "10" }, { "name": "Gudja", "code": "11" }, { "name": "Għajnsielem", "code": "13" }, { "name": "Għarb", "code": "14" }, { "name": "Għargħur", "code": "15" }, { "name": "Għasri", "code": "16" }, { "name": "Għaxaq", "code": "17" }, { "name": "Gżira", "code": "12" }, { "name": "Iklin", "code": "19" }, { "name": "Kalkara", "code": "21" }, { "name": "Kerċem", "code": "22" }, { "name": "Kirkop", "code": "23" }, { "name": "Lija", "code": "24" }, { "name": "Luqa", "code": "25" }, { "name": "Marsa", "code": "26" }, { "name": "Marsaskala", "code": "27" }, { "name": "Marsaxlokk", "code": "28" }, { "name": "Mdina", "code": "29" }, { "name": "Mellieħa", "code": "30" }, { "name": "Mosta", "code": "32" }, { "name": "Mqabba", "code": "33" }, { "name": "Msida", "code": "34" }, { "name": "Mtarfa", "code": "35" }, { "name": "Munxar", "code": "36" }, { "name": "Mġarr", "code": "31" }, { "name": "Nadur", "code": "37" }, { "name": "Naxxar", "code": "38" }, { "name": "Paola", "code": "39" }, { "name": "Pembroke", "code": "40" }, { "name": "Pietà", "code": "41" }, { "name": "Qala", "code": "42" }, { "name": "Qormi", "code": "43" }, { "name": "Qrendi", "code": "44" }, { "name": "Rabat", "code": "46" }, { "name": "Saint Lawrence", "code": "50" }, { "name": "San Ġwann", "code": "49" }, { "name": "Sannat", "code": "52" }, { "name": "Santa Luċija", "code": "53" }, { "name": "Santa Venera", "code": "54" }, { "name": "Senglea", "code": "20" }, { "name": "Siġġiewi", "code": "55" }, { "name": "Sliema", "code": "56" }, { "name": "St. Julian's", "code": "48" }, { "name": "St. Paul's Bay", "code": "51" }, { "name": "Swieqi", "code": "57" }, { "name": "Ta' Xbiex", "code": "58" }, { "name": "Tarxien", "code": "59" }, { "name": "Valletta", "code": "60" }, { "name": "Victoria", "code": "45" }, { "name": "Xagħra", "code": "61" }, { "name": "Xewkija", "code": "62" }, { "name": "Xgħajra", "code": "63" }, { "name": "Ħamrun", "code": "18" }, { "name": "Żabbar", "code": "64" }, { "name": "Żebbuġ Gozo", "code": "65" }, { "name": "Żebbuġ Malta", "code": "66" }, { "name": "Żejtun", "code": "67" }, { "name": "Żurrieq", "code": "68" } ], "MH": [ { "name": "Ralik Chain", "code": "L" }, { "name": "Ratak Chain", "code": "T" } ], "MQ": [{ "name": "Martinique", "code": "Martinique" }], "MR": [ { "name": "Adrar Region", "code": "07" }, { "name": "Assaba Region", "code": "03" }, { "name": "Brakna Region", "code": "05" }, { "name": "Dakhlet Nouadhibou", "code": "08" }, { "name": "Gorgol Region", "code": "04" }, { "name": "Guidimaka Region", "code": "10" }, { "name": "Hodh Ech Chargui Region", "code": "01" }, { "name": "Hodh El Gharbi Region", "code": "02" }, { "name": "Inchiri Region", "code": "12" }, { "name": "Nouakchott-Nord Region", "code": "14" }, { "name": "Nouakchott-Ouest Region", "code": "13" }, { "name": "Nouakchott-Sud Region", "code": "15" }, { "name": "Tagant Region", "code": "09" }, { "name": "Tiris Zemmour Region", "code": "11" }, { "name": "Trarza Region", "code": "06" } ], "MU": [ { "name": "Agaléga", "code": "AG" }, { "name": "Beau Bassin-Rose Hill", "code": "BR" }, { "name": "Cargados Carajos", "code": "CC" }, { "name": "Curepipe", "code": "CU" }, { "name": "Flacq District", "code": "FL" }, { "name": "Grand Port District", "code": "GP" }, { "name": "Moka District", "code": "MO" }, { "name": "Pamplemousses District", "code": "PA" }, { "name": "Plaines Wilhems District", "code": "PW" }, { "name": "Port Louis", "code": "PU" }, { "name": "Port Louis District", "code": "PL" }, { "name": "Quatre Bornes", "code": "QB" }, { "name": "Rivière Noire District", "code": "BL" }, { "name": "Rivière du Rempart District", "code": "RR" }, { "name": "Rodrigues", "code": "RO" }, { "name": "Savanne District", "code": "SA" }, { "name": "Vacoas-Phoenix", "code": "VP" } ], "YT": [{ "name": "Mayotte", "code": "Mayotte" }], "MX": [ { "name": "Aguascalientes", "code": "AGU" }, { "name": "Baja California", "code": "BCN" }, { "name": "Baja California Sur", "code": "BCS" }, { "name": "Campeche", "code": "CAM" }, { "name": "Chiapas", "code": "CHP" }, { "name": "Chihuahua", "code": "CHH" }, { "name": "Coahuila", "code": "COA" }, { "name": "Colima", "code": "COL" }, { "name": "Durango", "code": "DUR" }, { "name": "Guanajuato", "code": "GUA" }, { "name": "Guerrero", "code": "GRO" }, { "name": "Hidalgo", "code": "HID" }, { "name": "Jalisco", "code": "JAL" }, { "name": "Mexico City", "code": "CMX" }, { "name": "Michoacán", "code": "MIC" }, { "name": "Morelos", "code": "MOR" }, { "name": "México", "code": "MEX" }, { "name": "Nayarit", "code": "NAY" }, { "name": "Nuevo León", "code": "NLE" }, { "name": "Oaxaca", "code": "OAX" }, { "name": "Puebla", "code": "PUE" }, { "name": "Querétaro", "code": "QUE" }, { "name": "Quintana Roo", "code": "ROO" }, { "name": "San Luis Potosí", "code": "SLP" }, { "name": "Sinaloa", "code": "SIN" }, { "name": "Sonora", "code": "SON" }, { "name": "Tabasco", "code": "TAB" }, { "name": "Tamaulipas", "code": "TAM" }, { "name": "Tlaxcala", "code": "TLA" }, { "name": "Veracruz", "code": "VER" }, { "name": "Yucatán", "code": "YUC" }, { "name": "Zacatecas", "code": "ZAC" } ], "FM": [ { "name": "Chuuk State", "code": "TRK" }, { "name": "Kosrae State", "code": "KSA" }, { "name": "Pohnpei State", "code": "PNI" }, { "name": "Yap State", "code": "YAP" } ], "MD": [ { "name": "Anenii Noi District", "code": "AN" }, { "name": "Basarabeasca District", "code": "BS" }, { "name": "Bender Municipality", "code": "BD" }, { "name": "Briceni District", "code": "BR" }, { "name": "Bălți Municipality", "code": "BA" }, { "name": "Cahul District", "code": "CA" }, { "name": "Cantemir District", "code": "CT" }, { "name": "Chișinău Municipality", "code": "CU" }, { "name": "Cimișlia District", "code": "CM" }, { "name": "Criuleni District", "code": "CR" }, { "name": "Călărași District", "code": "CL" }, { "name": "Căușeni District", "code": "CS" }, { "name": "Dondușeni District", "code": "DO" }, { "name": "Drochia District", "code": "DR" }, { "name": "Dubăsari District", "code": "DU" }, { "name": "Edineț District", "code": "ED" }, { "name": "Florești District", "code": "FL" }, { "name": "Fălești District", "code": "FA" }, { "name": "Gagauzia", "code": "GA" }, { "name": "Glodeni District", "code": "GL" }, { "name": "Hîncești District", "code": "HI" }, { "name": "Ialoveni District", "code": "IA" }, { "name": "Nisporeni District", "code": "NI" }, { "name": "Ocnița District", "code": "OC" }, { "name": "Orhei District", "code": "OR" }, { "name": "Rezina District", "code": "RE" }, { "name": "Rîșcani District", "code": "RI" }, { "name": "Soroca District", "code": "SO" }, { "name": "Strășeni District", "code": "ST" }, { "name": "Sîngerei District", "code": "SI" }, { "name": "Taraclia District", "code": "TA" }, { "name": "Telenești District", "code": "TE" }, { "name": "Transnistria autonomous territorial unit", "code": "SN" }, { "name": "Ungheni District", "code": "UN" }, { "name": "Șoldănești District", "code": "SD" }, { "name": "Ștefan Vodă District", "code": "SV" } ], "MC": [{ "name": "Monaco", "code": "Monaco" }], "MN": [ { "name": "Arkhangai Province", "code": "073" }, { "name": "Bayan-Ölgii Province", "code": "071" }, { "name": "Bayankhongor Province", "code": "069" }, { "name": "Bulgan Province", "code": "067" }, { "name": "Darkhan-Uul Province", "code": "037" }, { "name": "Dornod Province", "code": "061" }, { "name": "Dornogovi Province", "code": "063" }, { "name": "Dundgovi Province", "code": "059" }, { "name": "Govi-Altai Province", "code": "065" }, { "name": "Govisümber Province", "code": "064" }, { "name": "Khentii Province", "code": "039" }, { "name": "Khovd Province", "code": "043" }, { "name": "Khövsgöl Province", "code": "041" }, { "name": "Orkhon Province", "code": "035" }, { "name": "Selenge Province", "code": "049" }, { "name": "Sükhbaatar Province", "code": "051" }, { "name": "Töv Province", "code": "047" }, { "name": "Uvs Province", "code": "046" }, { "name": "Zavkhan Province", "code": "057" }, { "name": "Ömnögovi Province", "code": "053" }, { "name": "Övörkhangai Province", "code": "055" } ], "ME": [ { "name": "Andrijevica Municipality", "code": "01" }, { "name": "Bar Municipality", "code": "02" }, { "name": "Berane Municipality", "code": "03" }, { "name": "Bijelo Polje Municipality", "code": "04" }, { "name": "Budva Municipality", "code": "05" }, { "name": "Danilovgrad Municipality", "code": "07" }, { "name": "Gusinje Municipality", "code": "22" }, { "name": "Kolašin Municipality", "code": "09" }, { "name": "Kotor Municipality", "code": "10" }, { "name": "Mojkovac Municipality", "code": "11" }, { "name": "Nikšić Municipality", "code": "12" }, { "name": "Old Royal Capital Cetinje", "code": "06" }, { "name": "Petnjica Municipality", "code": "23" }, { "name": "Plav Municipality", "code": "13" }, { "name": "Pljevlja Municipality", "code": "14" }, { "name": "Plužine Municipality", "code": "15" }, { "name": "Podgorica Municipality", "code": "16" }, { "name": "Rožaje Municipality", "code": "17" }, { "name": "Tivat Municipality", "code": "19" }, { "name": "Ulcinj Municipality", "code": "20" }, { "name": "Šavnik Municipality", "code": "18" }, { "name": "Žabljak Municipality", "code": "21" } ], "MS": [{ "name": "Montserrat", "code": "Montserrat" }], "MA": [ { "name": "Al Haouz Province", "code": "HAO" }, { "name": "Al Hoceïma Province", "code": "HOC" }, { "name": "Aousserd Province", "code": "AOU" }, { "name": "Assa-Zag Province", "code": "ASZ" }, { "name": "Azilal Province", "code": "AZI" }, { "name": "Ben Slimane Province", "code": "BES" }, { "name": "Berkane Province", "code": "BER" }, { "name": "Boujdour Province", "code": "BOD" }, { "name": "Boulemane Province", "code": "BOM" }, { "name": "Béni Mellal-Khénifra", "code": "05" }, { "name": "Béni-Mellal Province", "code": "BEM" }, { "name": "Casablanca-Settat", "code": "06" }, { "name": "Chefchaouen Province", "code": "CHE" }, { "name": "Chichaoua Province", "code": "CHI" }, { "name": "Dakhla-Oued Ed-Dahab", "code": "12" }, { "name": "Drâa-Tafilalet", "code": "08" }, { "name": "El Hajeb Province", "code": "HAJ" }, { "name": "El Jadida Province", "code": "JDI" }, { "name": "Errachidia Province", "code": "ERR" }, { "name": "Es Semara Province", "code": "ESM" }, { "name": "Essaouira Province", "code": "ESI" }, { "name": "Fahs Anjra Province", "code": "FAH" }, { "name": "Figuig Province", "code": "FIG" }, { "name": "Fès-Meknès", "code": "03" }, { "name": "Guelmim Province", "code": "GUE" }, { "name": "Guelmim-Oued Noun", "code": "10" }, { "name": "Ifrane Province", "code": "IFR" }, { "name": "Inezgane-Aït Melloul Prefecture", "code": "INE" }, { "name": "Jerada Province", "code": "JRA" }, { "name": "Kelaat Sraghna Province", "code": "KES" }, { "name": "Khouribga Province", "code": "KHO" }, { "name": "Khémisset Province", "code": "KHE" }, { "name": "Khénifra Province", "code": "KHN" }, { "name": "Kénitra Province", "code": "KEN" }, { "name": "Larache Province", "code": "LAR" }, { "name": "Laâyoune Province", "code": "LAA" }, { "name": "Laâyoune-Sakia El Hamra", "code": "11" }, { "name": "Marrakesh-Safi", "code": "07" }, { "name": "Mediouna Province", "code": "MED" }, { "name": "Moulay Yacoub Province", "code": "MOU" }, { "name": "Nador Province", "code": "NAD" }, { "name": "Nouaceur Province", "code": "NOU" }, { "name": "Oriental", "code": "02" }, { "name": "Ouarzazate Province", "code": "OUA" }, { "name": "Oued Ed-Dahab Province", "code": "OUD" }, { "name": "Safi Province", "code": "SAF" }, { "name": "Sefrou Province", "code": "SEF" }, { "name": "Settat Province", "code": "SET" }, { "name": "Shtouka Ait Baha Province", "code": "CHT" }, { "name": "Sidi Kacem Province", "code": "SIK" }, { "name": "Sidi Youssef Ben Ali", "code": "SYB" }, { "name": "Souss-Massa", "code": "09" }, { "name": "Tan-Tan Province", "code": "TNT" }, { "name": "Tanger-Tétouan-Al Hoceïma", "code": "01" }, { "name": "Taounate Province", "code": "TAO" }, { "name": "Taourirt Province", "code": "TAI" }, { "name": "Taroudant Province", "code": "TAR" }, { "name": "Tata Province", "code": "TAT" }, { "name": "Taza Province", "code": "TAZ" }, { "name": "Tiznit Province", "code": "TIZ" }, { "name": "Tétouan Province", "code": "TET" }, { "name": "Zagora Province", "code": "ZAG" } ], "MZ": [ { "name": "Cabo Delgado Province", "code": "P" }, { "name": "Gaza Province", "code": "G" }, { "name": "Inhambane Province", "code": "I" }, { "name": "Manica Province", "code": "B" }, { "name": "Maputo", "code": "MPM" }, { "name": "Maputo Province", "code": "L" }, { "name": "Nampula Province", "code": "N" }, { "name": "Niassa Province", "code": "A" }, { "name": "Sofala Province", "code": "S" }, { "name": "Tete Province", "code": "T" }, { "name": "Zambezia Province", "code": "Q" } ], "MM": [ { "name": "Ayeyarwady Region", "code": "07" }, { "name": "Bago", "code": "02" }, { "name": "Chin State", "code": "14" }, { "name": "Kachin State", "code": "11" }, { "name": "Kayah State", "code": "12" }, { "name": "Kayin State", "code": "13" }, { "name": "Magway Region", "code": "03" }, { "name": "Mandalay Region", "code": "04" }, { "name": "Mon State", "code": "15" }, { "name": "Naypyidaw Union Territory", "code": "18" }, { "name": "Rakhine State", "code": "16" }, { "name": "Sagaing Region", "code": "01" }, { "name": "Shan State", "code": "17" }, { "name": "Tanintharyi Region", "code": "05" }, { "name": "Yangon Region", "code": "06" } ], "NA": [ { "name": "Erongo Region", "code": "ER" }, { "name": "Hardap Region", "code": "HA" }, { "name": "Karas Region", "code": "KA" }, { "name": "Kavango East Region", "code": "KE" }, { "name": "Kavango West Region", "code": "KW" }, { "name": "Khomas Region", "code": "KH" }, { "name": "Kunene Region", "code": "KU" }, { "name": "Ohangwena Region", "code": "OW" }, { "name": "Omaheke Region", "code": "OH" }, { "name": "Omusati Region", "code": "OS" }, { "name": "Oshana Region", "code": "ON" }, { "name": "Oshikoto Region", "code": "OT" }, { "name": "Otjozondjupa Region", "code": "OD" }, { "name": "Zambezi Region", "code": "CA" } ], "NR": [ { "name": "Aiwo District", "code": "01" }, { "name": "Anabar District", "code": "02" }, { "name": "Anetan District", "code": "03" }, { "name": "Anibare District", "code": "04" }, { "name": "Baiti District", "code": "05" }, { "name": "Boe District", "code": "06" }, { "name": "Buada District", "code": "07" }, { "name": "Denigomodu District", "code": "08" }, { "name": "Ewa District", "code": "09" }, { "name": "Ijuw District", "code": "10" }, { "name": "Meneng District", "code": "11" }, { "name": "Nibok District", "code": "12" }, { "name": "Uaboe District", "code": "13" }, { "name": "Yaren District", "code": "14" } ], "NP": [ { "name": "Bagmati Zone", "code": "BA" }, { "name": "Bheri Zone", "code": "BH" }, { "name": "Central Region", "code": "1" }, { "name": "Dhaulagiri Zone", "code": "DH" }, { "name": "Eastern Development Region", "code": "4" }, { "name": "Far-Western Development Region", "code": "5" }, { "name": "Gandaki Zone", "code": "GA" }, { "name": "Janakpur Zone", "code": "JA" }, { "name": "Karnali Zone", "code": "KA" }, { "name": "Kosi Zone", "code": "KO" }, { "name": "Lumbini Zone", "code": "LU" }, { "name": "Mahakali Zone", "code": "MA" }, { "name": "Mechi Zone", "code": "ME" }, { "name": "Mid-Western Region", "code": "2" }, { "name": "Narayani Zone", "code": "NA" }, { "name": "Rapti Zone", "code": "RA" }, { "name": "Sagarmatha Zone", "code": "SA" }, { "name": "Seti Zone", "code": "SE" }, { "name": "Western Region", "code": "3" } ], "NL": [ { "name": "Bonaire", "code": "BQ1" }, { "name": "Drenthe", "code": "DR" }, { "name": "Flevoland", "code": "FL" }, { "name": "Friesland", "code": "FR" }, { "name": "Gelderland", "code": "GE" }, { "name": "Groningen", "code": "GR" }, { "name": "Limburg", "code": "LI" }, { "name": "North Brabant", "code": "NB" }, { "name": "North Holland", "code": "NH" }, { "name": "Overijssel", "code": "OV" }, { "name": "Saba", "code": "BQ2" }, { "name": "Sint Eustatius", "code": "BQ3" }, { "name": "South Holland", "code": "ZH" }, { "name": "Utrecht", "code": "UT" }, { "name": "Zeeland", "code": "ZE" } ], "AN": [{ "name": "Netherlands Antilles", "code": "Netherlands Antilles" }], "NC": [{ "name": "New Caledonia", "code": "New Caledonia" }], "NZ": [ { "name": "Auckland Region", "code": "AUK" }, { "name": "Bay of Plenty Region", "code": "BOP" }, { "name": "Canterbury Region", "code": "CAN" }, { "name": "Chatham Islands", "code": "CIT" }, { "name": "Gisborne District", "code": "GIS" }, { "name": "Hawke's Bay Region", "code": "HKB" }, { "name": "Manawatu-Wanganui Region", "code": "MWT" }, { "name": "Marlborough Region", "code": "MBH" }, { "name": "Nelson Region", "code": "NSN" }, { "name": "Northland Region", "code": "NTL" }, { "name": "Otago Region", "code": "OTA" }, { "name": "Southland Region", "code": "STL" }, { "name": "Taranaki Region", "code": "TKI" }, { "name": "Tasman District", "code": "TAS" }, { "name": "Waikato Region", "code": "WKO" }, { "name": "Wellington Region", "code": "WGN" }, { "name": "West Coast Region", "code": "WTC" } ], "NI": [ { "name": "Boaco Department", "code": "BO" }, { "name": "Carazo Department", "code": "CA" }, { "name": "Chinandega Department", "code": "CI" }, { "name": "Chontales Department", "code": "CO" }, { "name": "Estelí Department", "code": "ES" }, { "name": "Granada Department", "code": "GR" }, { "name": "Jinotega Department", "code": "JI" }, { "name": "León Department", "code": "LE" }, { "name": "Madriz Department", "code": "MD" }, { "name": "Managua Department", "code": "MN" }, { "name": "Masaya Department", "code": "MS" }, { "name": "Matagalpa Department", "code": "MT" }, { "name": "North Caribbean Coast Autonomous Region", "code": "AN" }, { "name": "Rivas Department", "code": "RI" }, { "name": "Río San Juan Department", "code": "SJ" }, { "name": "South Caribbean Coast Autonomous Region", "code": "AS" } ], "NE": [ { "name": "Agadez Region", "code": "1" }, { "name": "Diffa Region", "code": "2" }, { "name": "Dosso Region", "code": "3" }, { "name": "Maradi Region", "code": "4" }, { "name": "Tahoua Region", "code": "5" }, { "name": "Tillabéri Region", "code": "6" }, { "name": "Zinder Region", "code": "7" } ], "NG": [ { "name": "Abia State", "code": "AB" }, { "name": "Adamawa State", "code": "AD" }, { "name": "Akwa Ibom State", "code": "AK" }, { "name": "Anambra State", "code": "AN" }, { "name": "Bauchi State", "code": "BA" }, { "name": "Bayelsa State", "code": "BY" }, { "name": "Benue State", "code": "BE" }, { "name": "Borno State", "code": "BO" }, { "name": "Cross River State", "code": "CR" }, { "name": "Delta State", "code": "DE" }, { "name": "Ebonyi State", "code": "EB" }, { "name": "Edo State", "code": "ED" }, { "name": "Ekiti State", "code": "EK" }, { "name": "Enugu State", "code": "EN" }, { "name": "Federal Capital Territory", "code": "FC" }, { "name": "Gombe State", "code": "GO" }, { "name": "Imo State", "code": "IM" }, { "name": "Jigawa State", "code": "JI" }, { "name": "Kaduna State", "code": "KD" }, { "name": "Kano State", "code": "KN" }, { "name": "Katsina State", "code": "KT" }, { "name": "Kebbi State", "code": "KE" }, { "name": "Kogi State", "code": "KO" }, { "name": "Kwara State", "code": "KW" }, { "name": "Lagos", "code": "LA" }, { "name": "Nasarawa State", "code": "NA" }, { "name": "Niger State", "code": "NI" }, { "name": "Ogun State", "code": "OG" }, { "name": "Ondo State", "code": "ON" }, { "name": "Osun State", "code": "OS" }, { "name": "Oyo State", "code": "OY" }, { "name": "Plateau State", "code": "PL" }, { "name": "Sokoto State", "code": "SO" }, { "name": "Taraba State", "code": "TA" }, { "name": "Yobe State", "code": "YO" }, { "name": "Zamfara State", "code": "ZA" } ], "NU": [{ "name": "Niue", "code": "Niue" }], "NF": [{ "name": "Norfolk Island", "code": "Norfolk Island" }], "MP": [ { "name": "Northern Mariana Islands", "code": "Northern Mariana Islands" } ], "NO": [ { "name": "Akershus", "code": "02" }, { "name": "Buskerud", "code": "06" }, { "name": "Finnmark", "code": "20" }, { "name": "Hedmark", "code": "04" }, { "name": "Hordaland", "code": "12" }, { "name": "Jan Mayen", "code": "22" }, { "name": "Møre og Romsdal", "code": "15" }, { "name": "Nord-Trøndelag", "code": "17" }, { "name": "Nordland", "code": "18" }, { "name": "Oppland", "code": "05" }, { "name": "Oslo", "code": "03" }, { "name": "Rogaland", "code": "11" }, { "name": "Sogn og Fjordane", "code": "14" }, { "name": "Svalbard", "code": "21" }, { "name": "Sør-Trøndelag", "code": "16" }, { "name": "Telemark", "code": "08" }, { "name": "Troms", "code": "19" }, { "name": "Trøndelag", "code": "50" }, { "name": "Vest-Agder", "code": "10" }, { "name": "Vestfold", "code": "07" }, { "name": "Østfold", "code": "01" } ], "OM": [ { "name": "Ad Dakhiliyah Governorate", "code": "DA" }, { "name": "Ad Dhahirah Governorate", "code": "ZA" }, { "name": "Al Batinah North Governorate", "code": "BS" }, { "name": "Al Batinah Region", "code": "BA" }, { "name": "Al Batinah South Governorate", "code": "BJ" }, { "name": "Al Buraimi Governorate", "code": "BU" }, { "name": "Al Wusta Governorate", "code": "WU" }, { "name": "Ash Sharqiyah North Governorate", "code": "SS" }, { "name": "Ash Sharqiyah Region", "code": "SH" }, { "name": "Ash Sharqiyah South Governorate", "code": "SJ" }, { "name": "Dhofar Governorate", "code": "ZU" }, { "name": "Musandam Governorate", "code": "MU" }, { "name": "Muscat Governorate", "code": "MA" } ], "PK": [ { "name": "Azad Kashmir", "code": "JK" }, { "name": "Balochistan", "code": "BA" }, { "name": "Federally Administered Tribal Areas", "code": "TA" }, { "name": "Gilgit-Baltistan", "code": "GB" }, { "name": "Islamabad Capital Territory", "code": "IS" }, { "name": "Khyber Pakhtunkhwa", "code": "KP" }, { "name": "Punjab", "code": "PB" }, { "name": "Sindh", "code": "SD" } ], "PW": [ { "name": "Aimeliik", "code": "002" }, { "name": "Airai", "code": "004" }, { "name": "Angaur", "code": "010" }, { "name": "Hatohobei", "code": "050" }, { "name": "Kayangel", "code": "100" }, { "name": "Koror", "code": "150" }, { "name": "Melekeok", "code": "212" }, { "name": "Ngaraard", "code": "214" }, { "name": "Ngarchelong", "code": "218" }, { "name": "Ngardmau", "code": "222" }, { "name": "Ngatpang", "code": "224" }, { "name": "Ngchesar", "code": "226" }, { "name": "Ngeremlengui", "code": "227" }, { "name": "Ngiwal", "code": "228" }, { "name": "Peleliu", "code": "350" }, { "name": "Sonsorol", "code": "370" } ], "PS": [ { "name": "Palestinian Territory, Occupied", "code": "Palestinian Territory, Occupied" } ], "PA": [ { "name": "Bocas del Toro Province", "code": "1" }, { "name": "Chiriquí Province", "code": "4" }, { "name": "Coclé Province", "code": "2" }, { "name": "Colón Province", "code": "3" }, { "name": "Darién Province", "code": "5" }, { "name": "Emberá-Wounaan Comarca", "code": "EM" }, { "name": "Guna Yala", "code": "KY" }, { "name": "Herrera Province", "code": "6" }, { "name": "Los Santos Province", "code": "7" }, { "name": "Ngöbe-Buglé Comarca", "code": "NB" }, { "name": "Panamá Oeste Province", "code": "10" }, { "name": "Panamá Province", "code": "8" }, { "name": "Veraguas Province", "code": "9" } ], "PG": [ { "name": "Bougainville", "code": "NSB" }, { "name": "Central Province", "code": "CPM" }, { "name": "Chimbu Province", "code": "CPK" }, { "name": "East New Britain", "code": "EBR" }, { "name": "Eastern Highlands Province", "code": "EHG" }, { "name": "Enga Province", "code": "EPW" }, { "name": "Gulf", "code": "GPK" }, { "name": "Hela", "code": "HLA" }, { "name": "Jiwaka Province", "code": "JWK" }, { "name": "Madang Province", "code": "MPM" }, { "name": "Manus Province", "code": "MRL" }, { "name": "Milne Bay Province", "code": "MBA" }, { "name": "Morobe Province", "code": "MPL" }, { "name": "New Ireland Province", "code": "NIK" }, { "name": "Oro Province", "code": "NPP" }, { "name": "Port Moresby", "code": "NCD" }, { "name": "Sandaun Province", "code": "SAN" }, { "name": "Southern Highlands Province", "code": "SHM" }, { "name": "West New Britain Province", "code": "WBK" }, { "name": "Western Highlands Province", "code": "WHM" }, { "name": "Western Province", "code": "WPD" } ], "PY": [ { "name": "Alto Paraguay Department", "code": "16" }, { "name": "Alto Paraná Department", "code": "10" }, { "name": "Amambay Department", "code": "13" }, { "name": "Boquerón Department", "code": "19" }, { "name": "Caaguazú", "code": "5" }, { "name": "Caazapá", "code": "6" }, { "name": "Canindeyú", "code": "14" }, { "name": "Central Department", "code": "11" }, { "name": "Concepción Department", "code": "1" }, { "name": "Cordillera Department", "code": "3" }, { "name": "Guairá Department", "code": "4" }, { "name": "Itapúa", "code": "7" }, { "name": "Misiones Department", "code": "8" }, { "name": "Paraguarí Department", "code": "9" }, { "name": "Presidente Hayes Department", "code": "15" }, { "name": "San Pedro Department", "code": "2" }, { "name": "Ñeembucú Department", "code": "12" } ], "PE": [ { "name": "Amazonas", "code": "AMA" }, { "name": "Apurímac", "code": "APU" }, { "name": "Arequipa", "code": "ARE" }, { "name": "Ayacucho", "code": "AYA" }, { "name": "Cajamarca", "code": "CAJ" }, { "name": "Callao", "code": "CAL" }, { "name": "Cusco", "code": "CUS" }, { "name": "Huancavelica", "code": "HUV" }, { "name": "Huanuco", "code": "HUC" }, { "name": "Ica", "code": "ICA" }, { "name": "Junín", "code": "JUN" }, { "name": "La Libertad", "code": "LAL" }, { "name": "Lambayeque", "code": "LAM" }, { "name": "Lima", "code": "LIM" }, { "name": "Madre de Dios", "code": "MDD" }, { "name": "Moquegua", "code": "MOQ" }, { "name": "Pasco", "code": "PAS" }, { "name": "Piura", "code": "PIU" }, { "name": "Puno", "code": "PUN" }, { "name": "San Martín", "code": "SAM" }, { "name": "Tacna", "code": "TAC" }, { "name": "Tumbes", "code": "TUM" }, { "name": "Ucayali", "code": "UCA" }, { "name": "Áncash", "code": "ANC" } ], "PH": [ { "name": "Abra", "code": "ABR" }, { "name": "Agusan del Norte", "code": "AGN" }, { "name": "Agusan del Sur", "code": "AGS" }, { "name": "Aklan", "code": "AKL" }, { "name": "Albay", "code": "ALB" }, { "name": "Antique", "code": "ANT" }, { "name": "Apayao", "code": "APA" }, { "name": "Aurora", "code": "AUR" }, { "name": "Autonomous Region in Muslim Mindanao", "code": "14" }, { "name": "Basilan", "code": "BAS" }, { "name": "Bataan", "code": "BAN" }, { "name": "Batanes", "code": "BTN" }, { "name": "Batangas", "code": "BTG" }, { "name": "Benguet", "code": "BEN" }, { "name": "Bicol Region", "code": "05" }, { "name": "Biliran", "code": "BIL" }, { "name": "Bohol", "code": "BOH" }, { "name": "Bukidnon", "code": "BUK" }, { "name": "Bulacan", "code": "BUL" }, { "name": "Cagayan", "code": "CAG" }, { "name": "Cagayan Valley", "code": "02" }, { "name": "Calabarzon", "code": "40" }, { "name": "Camarines Norte", "code": "CAN" }, { "name": "Camarines Sur", "code": "CAS" }, { "name": "Camiguin", "code": "CAM" }, { "name": "Capiz", "code": "CAP" }, { "name": "Caraga", "code": "13" }, { "name": "Catanduanes", "code": "CAT" }, { "name": "Cavite", "code": "CAV" }, { "name": "Cebu", "code": "CEB" }, { "name": "Central Luzon", "code": "03" }, { "name": "Central Visayas", "code": "07" }, { "name": "Compostela Valley", "code": "COM" }, { "name": "Cordillera Administrative Region", "code": "15" }, { "name": "Cotabato", "code": "NCO" }, { "name": "Davao Occidental", "code": "DVO" }, { "name": "Davao Oriental", "code": "DAO" }, { "name": "Davao Region", "code": "11" }, { "name": "Davao del Norte", "code": "DAV" }, { "name": "Davao del Sur", "code": "DAS" }, { "name": "Dinagat Islands", "code": "DIN" }, { "name": "Eastern Samar", "code": "EAS" }, { "name": "Eastern Visayas", "code": "08" }, { "name": "Guimaras", "code": "GUI" }, { "name": "Ifugao", "code": "IFU" }, { "name": "Ilocos Norte", "code": "ILN" }, { "name": "Ilocos Region", "code": "01" }, { "name": "Ilocos Sur", "code": "ILS" }, { "name": "Iloilo", "code": "ILI" }, { "name": "Isabela", "code": "ISA" }, { "name": "Kalinga", "code": "KAL" }, { "name": "La Union", "code": "LUN" }, { "name": "Laguna", "code": "LAG" }, { "name": "Lanao del Norte", "code": "LAN" }, { "name": "Lanao del Sur", "code": "LAS" }, { "name": "Leyte", "code": "LEY" }, { "name": "Maguindanao", "code": "MAG" }, { "name": "Marinduque", "code": "MAD" }, { "name": "Masbate", "code": "MAS" }, { "name": "Metro Manila", "code": "NCR" }, { "name": "Mimaropa", "code": "41" }, { "name": "Misamis Occidental", "code": "MSC" }, { "name": "Misamis Oriental", "code": "MSR" }, { "name": "Mountain Province", "code": "MOU" }, { "name": "Negros Occidental", "code": "NEC" }, { "name": "Negros Oriental", "code": "NER" }, { "name": "Northern Mindanao", "code": "10" }, { "name": "Northern Samar", "code": "NSA" }, { "name": "Nueva Ecija", "code": "NUE" }, { "name": "Nueva Vizcaya", "code": "NUV" }, { "name": "Occidental Mindoro", "code": "MDC" }, { "name": "Oriental Mindoro", "code": "MDR" }, { "name": "Palawan", "code": "PLW" }, { "name": "Pampanga", "code": "PAM" }, { "name": "Pangasinan", "code": "PAN" }, { "name": "Quezon", "code": "QUE" }, { "name": "Quirino", "code": "QUI" }, { "name": "Rizal", "code": "RIZ" }, { "name": "Romblon", "code": "ROM" }, { "name": "Sarangani", "code": "SAR" }, { "name": "Siquijor", "code": "SIG" }, { "name": "Soccsksargen", "code": "12" }, { "name": "Sorsogon", "code": "SOR" }, { "name": "South Cotabato", "code": "SCO" }, { "name": "Southern Leyte", "code": "SLE" }, { "name": "Sultan Kudarat", "code": "SUK" }, { "name": "Sulu", "code": "SLU" }, { "name": "Surigao del Norte", "code": "SUN" }, { "name": "Surigao del Sur", "code": "SUR" }, { "name": "Tarlac", "code": "TAR" }, { "name": "Tawi-Tawi", "code": "TAW" }, { "name": "Western Visayas", "code": "06" }, { "name": "Zambales", "code": "ZMB" }, { "name": "Zamboanga Peninsula", "code": "09" }, { "name": "Zamboanga Sibugay", "code": "ZSI" }, { "name": "Zamboanga del Norte", "code": "ZAN" }, { "name": "Zamboanga del Sur", "code": "ZAS" } ], "PN": [{ "name": "Pitcairn", "code": "Pitcairn" }], "PL": [ { "name": "Greater Poland", "code": "30" }, { "name": "Holy Cross", "code": "26" }, { "name": "Kuyavia-Pomerania", "code": "04" }, { "name": "Lesser Poland", "code": "12" }, { "name": "Lower Silesia", "code": "02" }, { "name": "Lublin", "code": "06" }, { "name": "Lubusz", "code": "08" }, { "name": "Łódź", "code": "10" }, { "name": "Mazovia", "code": "14" }, { "name": "Podlaskie", "code": "20" }, { "name": "Pomerania", "code": "22" }, { "name": "Silesia", "code": "24" }, { "name": "Subcarpathia", "code": "18" }, { "name": "Upper Silesia", "code": "16" }, { "name": "Warmia-Masuria", "code": "28" }, { "name": "West Pomerania", "code": "32" } ], "PT": [ { "name": "Aveiro District", "code": "01" }, { "name": "Azores", "code": "20" }, { "name": "Beja District", "code": "02" }, { "name": "Braga District", "code": "03" }, { "name": "Bragança District", "code": "04" }, { "name": "Castelo Branco District", "code": "05" }, { "name": "Coimbra District", "code": "06" }, { "name": "Faro District", "code": "08" }, { "name": "Guarda District", "code": "09" }, { "name": "Leiria District", "code": "10" }, { "name": "Lisbon District", "code": "11" }, { "name": "Madeira", "code": "30" }, { "name": "Portalegre District", "code": "12" }, { "name": "Porto District", "code": "13" }, { "name": "Santarém District", "code": "14" }, { "name": "Setúbal District", "code": "15" }, { "name": "Viana do Castelo District", "code": "16" }, { "name": "Vila Real District", "code": "17" }, { "name": "Viseu District", "code": "18" }, { "name": "Évora District", "code": "07" } ], "PR": [{ "name": "Puerto Rico", "code": "Puerto Rico" }], "QA": [ { "name": "Al Daayen", "code": "ZA" }, { "name": "Al Khor", "code": "KH" }, { "name": "Al Rayyan Municipality", "code": "RA" }, { "name": "Al Wakrah", "code": "WA" }, { "name": "Al-Shahaniya", "code": "SH" }, { "name": "Doha", "code": "DA" }, { "name": "Madinat ash Shamal", "code": "MS" }, { "name": "Umm Salal Municipality", "code": "US" } ], "RE": [{ "name": "Reunion", "code": "Reunion" }], "RO": [ { "name": "Alba", "code": "AB" }, { "name": "Arad County", "code": "AR" }, { "name": "Arges", "code": "AG" }, { "name": "Bacău County", "code": "BC" }, { "name": "Bihor County", "code": "BH" }, { "name": "Bistrița-Năsăud County", "code": "BN" }, { "name": "Botoșani County", "code": "BT" }, { "name": "Braila", "code": "BR" }, { "name": "Brașov County", "code": "BV" }, { "name": "Bucharest", "code": "B" }, { "name": "Buzău County", "code": "BZ" }, { "name": "Caraș-Severin County", "code": "CS" }, { "name": "Cluj County", "code": "CJ" }, { "name": "Constanța County", "code": "CT" }, { "name": "Covasna County", "code": "CV" }, { "name": "Călărași County", "code": "CL" }, { "name": "Dolj County", "code": "DJ" }, { "name": "Dâmbovița County", "code": "DB" }, { "name": "Galați County", "code": "GL" }, { "name": "Giurgiu County", "code": "GR" }, { "name": "Gorj County", "code": "GJ" }, { "name": "Harghita County", "code": "HR" }, { "name": "Hunedoara County", "code": "HD" }, { "name": "Ialomița County", "code": "IL" }, { "name": "Iași County", "code": "IS" }, { "name": "Ilfov County", "code": "IF" }, { "name": "Mehedinți County", "code": "MH" }, { "name": "Mureș County", "code": "MM" }, { "name": "Neamț County", "code": "NT" }, { "name": "Olt County", "code": "OT" }, { "name": "Prahova County", "code": "PH" }, { "name": "Satu Mare County", "code": "SM" }, { "name": "Sibiu County", "code": "SB" }, { "name": "Suceava County", "code": "SV" }, { "name": "Sălaj County", "code": "SJ" }, { "name": "Teleorman County", "code": "TR" }, { "name": "Timiș County", "code": "TM" }, { "name": "Tulcea County", "code": "TL" }, { "name": "Vaslui County", "code": "VS" }, { "name": "Vrancea County", "code": "VN" }, { "name": "Vâlcea County", "code": "VL" } ], "RU": [ { "value": "Altai Krai", "code": "ALT" }, { "value": "Altai Republic", "code": "AL" }, { "value": "Amur Oblast", "code": "AMU" }, { "value": "Arkhangelsk", "code": "ARK" }, { "value": "Astrakhan Oblast", "code": "AST" }, { "value": "Belgorod Oblast", "code": "BEL" }, { "value": "Bryansk Oblast", "code": "BRY" }, { "value": "Chechen Republic", "code": "CE" }, { "value": "Chelyabinsk Oblast", "code": "CHE" }, { "value": "Chukotka Autonomous Okrug", "code": "CHU" }, { "value": "Chuvash Republic", "code": "CU" }, { "value": "Irkutsk", "code": "IRK" }, { "value": "Ivanovo Oblast", "code": "IVA" }, { "value": "Jewish Autonomous Oblast", "code": "YEV" }, { "value": "Kabardino-Balkar Republic", "code": "KB" }, { "value": "Kaliningrad", "code": "KGD" }, { "value": "Kaluga Oblast", "code": "KLU" }, { "value": "Kamchatka Krai", "code": "KAM" }, { "value": "Karachay-Cherkess Republic", "code": "KC" }, { "value": "Kemerovo Oblast", "code": "KEM" }, { "value": "Khabarovsk Krai", "code": "KHA" }, { "value": "Khanty-Mansi Autonomous Okrug", "code": "KHM" }, { "value": "Kirov Oblast", "code": "KIR" }, { "value": "Komi Republic", "code": "KO" }, { "value": "Kostroma Oblast", "code": "KOS" }, { "value": "Krasnodar Krai", "code": "KDA" }, { "value": "Krasnoyarsk Krai", "code": "KYA" }, { "value": "Kurgan Oblast", "code": "KGN" }, { "value": "Kursk Oblast", "code": "KRS" }, { "value": "Leningrad Oblast", "code": "LEN" }, { "value": "Lipetsk Oblast", "code": "LIP" }, { "value": "Magadan Oblast", "code": "MAG" }, { "value": "Mari El Republic", "code": "ME" }, { "value": "Moscow", "code": "MOW" }, { "value": "Moscow Oblast", "code": "MOS" }, { "value": "Murmansk Oblast", "code": "MUR" }, { "value": "Nenets Autonomous Okrug", "code": "NEN" }, { "value": "Nizhny Novgorod Oblast", "code": "NIZ" }, { "value": "Novgorod Oblast", "code": "NGR" }, { "value": "Novosibirsk", "code": "NVS" }, { "value": "Omsk Oblast", "code": "OMS" }, { "value": "Orenburg Oblast", "code": "ORE" }, { "value": "Oryol Oblast", "code": "ORL" }, { "value": "Penza Oblast", "code": "PNZ" }, { "value": "Perm Krai", "code": "PER" }, { "value": "Primorsky Krai", "code": "PRI" }, { "value": "Pskov Oblast", "code": "PSK" }, { "value": "Republic of Adygea", "code": "AD" }, { "value": "Republic of Bashkortostan", "code": "BA" }, { "value": "Republic of Buryatia", "code": "BU" }, { "value": "Republic of Dagestan", "code": "DA" }, { "value": "Republic of Ingushetia", "code": "IN" }, { "value": "Republic of Kalmykia", "code": "KL" }, { "value": "Republic of Karelia", "code": "KR" }, { "value": "Republic of Khakassia", "code": "KK" }, { "value": "Republic of Mordovia", "code": "MO" }, { "value": "Republic of North Ossetia-Alania", "code": "SE" }, { "value": "Republic of Tatarstan", "code": "TA" }, { "value": "Rostov Oblast", "code": "ROS" }, { "value": "Ryazan Oblast", "code": "RYA" }, { "value": "Saint Petersburg", "code": "SPE" }, { "value": "Sakha Republic", "code": "SA" }, { "value": "Sakhalin", "code": "SAK" }, { "value": "Samara Oblast", "code": "SAM" }, { "value": "Saratov Oblast", "code": "SAR" }, { "value": "Smolensk Oblast", "code": "SMO" }, { "value": "Stavropol Krai", "code": "STA" }, { "value": "Sverdlovsk", "code": "SVE" }, { "value": "Tambov Oblast", "code": "TAM" }, { "value": "Tomsk Oblast", "code": "TOM" }, { "value": "Tula Oblast", "code": "TUL" }, { "value": "Tuva Republic", "code": "TY" }, { "value": "Tver Oblast", "code": "TVE" }, { "value": "Tyumen Oblast", "code": "TYU" }, { "value": "Udmurt Republic", "code": "UD" }, { "value": "Ulyanovsk Oblast", "code": "ULY" }, { "value": "Vladimir Oblast", "code": "VLA" }, { "value": "Volgograd Oblast", "code": "VGG" }, { "value": "Vologda Oblast", "code": "VLG" }, { "value": "Voronezh Oblast", "code": "VOR" }, { "value": "Yamalo-Nenets Autonomous Okrug", "code": "YAN" }, { "value": "Yaroslavl Oblast", "code": "YAR" }, { "value": "Zabaykalsky Krai", "code": "ZAB" } ], "RW": [ { "name": "Eastern Province", "code": "02" }, { "name": "Kigali district", "code": "01" }, { "name": "Northern Province", "code": "03" }, { "name": "Southern Province", "code": "05" }, { "name": "Western Province", "code": "04" } ], "BL": [{ "name": "Saint Barthelemy", "code": "Saint Barthelemy" }], "SH": [{ "name": "Saint Helena", "code": "Saint Helena" }], "KN": [ { "name": "Christ Church Nichola Town Parish", "code": "01" }, { "name": "Nevis", "code": "N" }, { "name": "Saint Anne Sandy Point Parish", "code": "02" }, { "name": "Saint George Gingerland Parish", "code": "04" }, { "name": "Saint James Windward Parish", "code": "05" }, { "name": "Saint John Capisterre Parish", "code": "06" }, { "name": "Saint John Figtree Parish", "code": "07" }, { "name": "Saint Kitts", "code": "K" }, { "name": "Saint Mary Cayon Parish", "code": "08" }, { "name": "Saint Paul Capisterre Parish", "code": "09" }, { "name": "Saint Paul Charlestown Parish", "code": "10" }, { "name": "Saint Peter Basseterre Parish", "code": "11" }, { "name": "Saint Thomas Lowland Parish", "code": "12" }, { "name": "Saint Thomas Middle Island Parish", "code": "13" }, { "name": "Trinity Palmetto Point Parish", "code": "15" } ], "LC": [ { "name": "Anse la Raye Quarter", "code": "01" }, { "name": "Canaries", "code": "12" }, { "name": "Castries Quarter", "code": "02" }, { "name": "Choiseul Quarter", "code": "03" }, { "name": "Dauphin Quarter", "code": "04" }, { "name": "Dennery Quarter", "code": "05" }, { "name": "Gros Islet Quarter", "code": "06" }, { "name": "Laborie Quarter", "code": "07" }, { "name": "Micoud Quarter", "code": "08" }, { "name": "Praslin Quarter", "code": "09" }, { "name": "Soufrière Quarter", "code": "10" }, { "name": "Vieux Fort Quarter", "code": "11" } ], "MF": [{ "name": "Saint Martin", "code": "Saint Martin" }], "PM": [ { "name": "Saint Pierre and Miquelon", "code": "Saint Pierre and Miquelon" } ], "VC": [ { "name": "Charlotte Parish", "code": "01" }, { "name": "Grenadines Parish", "code": "06" }, { "name": "Saint Andrew Parish", "code": "02" }, { "name": "Saint David Parish", "code": "03" }, { "name": "Saint George Parish", "code": "04" }, { "name": "Saint Patrick Parish", "code": "05" } ], "WS": [ { "name": "A'ana", "code": "AA" }, { "name": "Aiga-i-le-Tai", "code": "AL" }, { "name": "Atua", "code": "AT" }, { "name": "Fa'asaleleaga", "code": "FA" }, { "name": "Gaga'emauga", "code": "GE" }, { "name": "Gaga'ifomauga", "code": "GI" }, { "name": "Palauli", "code": "PA" }, { "name": "Satupa'itea", "code": "SA" }, { "name": "Tuamasaga", "code": "TU" }, { "name": "Va'a-o-Fonoti", "code": "VF" }, { "name": "Vaisigano", "code": "VS" } ], "SM": [ { "name": "Acquaviva", "code": "01" }, { "name": "Borgo Maggiore", "code": "06" }, { "name": "Chiesanuova", "code": "02" }, { "name": "Domagnano", "code": "03" }, { "name": "Faetano", "code": "04" }, { "name": "Fiorentino", "code": "05" }, { "name": "Montegiardino", "code": "08" }, { "name": "San Marino", "code": "07" }, { "name": "Serravalle", "code": "09" } ], "ST": [ { "name": "Príncipe Province", "code": "P" }, { "name": "São Tomé Province", "code": "S" } ], "SA": [ { "name": "'Asir Region", "code": "14" }, { "name": "Al Bahah Region", "code": "11" }, { "name": "Al Jawf Region", "code": "12" }, { "name": "Al Madinah Region", "code": "03" }, { "name": "Al-Qassim Region", "code": "05" }, { "name": "Eastern Province", "code": "04" }, { "name": "Ha'il Region", "code": "06" }, { "name": "Jizan Region", "code": "09" }, { "name": "Makkah Region", "code": "02" }, { "name": "Najran Region", "code": "10" }, { "name": "Northern Borders Region", "code": "08" }, { "name": "Riyadh Region", "code": "01" }, { "name": "Tabuk Region", "code": "07" } ], "SN": [ { "name": "Dakar", "code": "DK" }, { "name": "Diourbel Region", "code": "DB" }, { "name": "Fatick", "code": "FK" }, { "name": "Kaffrine", "code": "KA" }, { "name": "Kaolack", "code": "KL" }, { "name": "Kolda", "code": "KD" }, { "name": "Kédougou", "code": "KE" }, { "name": "Louga", "code": "LG" }, { "name": "Matam", "code": "MT" }, { "name": "Saint-Louis", "code": "SL" }, { "name": "Sédhiou", "code": "SE" }, { "name": "Tambacounda Region", "code": "TC" }, { "name": "Thiès Region", "code": "TH" }, { "name": "Ziguinchor", "code": "ZG" } ], "RS": [ { "name": "Belgrade", "code": "00" }, { "name": "Bor District", "code": "14" }, { "name": "Braničevo District", "code": "11" }, { "name": "Central Banat District", "code": "02" }, { "name": "Jablanica District", "code": "23" }, { "name": "Kolubara District", "code": "09" }, { "name": "Mačva District", "code": "08" }, { "name": "Moravica District", "code": "17" }, { "name": "Nišava District", "code": "20" }, { "name": "North Banat District", "code": "03" }, { "name": "North Bačka District", "code": "01" }, { "name": "Pirot District", "code": "22" }, { "name": "Podunavlje District", "code": "10" }, { "name": "Pomoravlje District", "code": "13" }, { "name": "Pčinja District", "code": "24" }, { "name": "Rasina District", "code": "19" }, { "name": "Raška District", "code": "18" }, { "name": "South Banat District", "code": "04" }, { "name": "South Bačka District", "code": "06" }, { "name": "Srem District", "code": "07" }, { "name": "Toplica District", "code": "21" }, { "name": "Vojvodina", "code": "VO" }, { "name": "West Bačka District", "code": "05" }, { "name": "Zaječar District", "code": "15" }, { "name": "Zlatibor District", "code": "16" }, { "name": "Šumadija District", "code": "12" } ], "CS": [ { "name": "Serbia and Montenegro", "code": "Serbia and Montenegro" } ], "SC": [ { "name": "Anse Boileau", "code": "02" }, { "name": "Anse Royale", "code": "05" }, { "name": "Anse-aux-Pins", "code": "01" }, { "name": "Au Cap", "code": "04" }, { "name": "Baie Lazare", "code": "06" }, { "name": "Baie Sainte Anne", "code": "07" }, { "name": "Beau Vallon", "code": "08" }, { "name": "Bel Air", "code": "09" }, { "name": "Bel Ombre", "code": "10" }, { "name": "Cascade", "code": "11" }, { "name": "Glacis", "code": "12" }, { "name": "Grand'Anse Mahé", "code": "13" }, { "name": "Grand'Anse Praslin", "code": "14" }, { "name": "La Digue", "code": "15" }, { "name": "La Rivière Anglaise", "code": "16" }, { "name": "Les Mamelles", "code": "24" }, { "name": "Mont Buxton", "code": "17" }, { "name": "Mont Fleuri", "code": "18" }, { "name": "Plaisance", "code": "19" }, { "name": "Pointe La Rue", "code": "20" }, { "name": "Port Glaud", "code": "21" }, { "name": "Roche Caiman", "code": "25" }, { "name": "Saint Louis", "code": "22" }, { "name": "Takamaka", "code": "23" } ], "SL": [ { "name": "Eastern Province", "code": "E" }, { "name": "Northern Province", "code": "N" }, { "name": "Southern Province", "code": "S" }, { "name": "Western Area", "code": "W" } ], "SG": [ { "name": "Central Singapore Community Development Council", "code": "01" }, { "name": "North East Community Development Council", "code": "02" }, { "name": "North West Community Development Council", "code": "03" }, { "name": "South East Community Development Council", "code": "04" }, { "name": "South West Community Development Council", "code": "05" } ], "SX": [{ "name": "Sint Maarten", "code": "Sint Maarten" }], "SK": [ { "name": "Banská Bystrica Region", "code": "BC" }, { "name": "Bratislava Region", "code": "BL" }, { "name": "Košice Region", "code": "KI" }, { "name": "Nitra Region", "code": "NI" }, { "name": "Prešov Region", "code": "PV" }, { "name": "Trenčín Region", "code": "TC" }, { "name": "Trnava Region", "code": "TA" }, { "name": "Žilina Region", "code": "ZI" } ], "SI": [ { "name": "Ajdovščina Municipality", "code": "001" }, { "name": "Ankaran Municipality", "code": "213" }, { "name": "Beltinci Municipality", "code": "002" }, { "name": "Benedikt Municipality", "code": "148" }, { "name": "Bistrica ob Sotli Municipality", "code": "149" }, { "name": "Bled Municipality", "code": "003" }, { "name": "Bloke Municipality", "code": "150" }, { "name": "Bohinj Municipality", "code": "004" }, { "name": "Borovnica Municipality", "code": "005" }, { "name": "Bovec Municipality", "code": "006" }, { "name": "Braslovče Municipality", "code": "151" }, { "name": "Brda Municipality", "code": "007" }, { "name": "Brezovica Municipality", "code": "008" }, { "name": "Brežice Municipality", "code": "009" }, { "name": "Cankova Municipality", "code": "152" }, { "name": "Cerklje na Gorenjskem Municipality", "code": "012" }, { "name": "Cerknica Municipality", "code": "013" }, { "name": "Cerkno Municipality", "code": "014" }, { "name": "Cerkvenjak Municipality", "code": "153" }, { "name": "City Municipality of Celje", "code": "011" }, { "name": "City Municipality of Novo Mesto", "code": "085" }, { "name": "Destrnik Municipality", "code": "018" }, { "name": "Divača Municipality", "code": "019" }, { "name": "Dobje Municipality", "code": "154" }, { "name": "Dobrepolje Municipality", "code": "020" }, { "name": "Dobrna Municipality", "code": "155" }, { "name": "Dobrova–Polhov Gradec Municipality", "code": "021" }, { "name": "Dobrovnik Municipality", "code": "156" }, { "name": "Dol pri Ljubljani Municipality", "code": "022" }, { "name": "Dolenjske Toplice Municipality", "code": "157" }, { "name": "Domžale Municipality", "code": "023" }, { "name": "Dornava Municipality", "code": "024" }, { "name": "Dravograd Municipality", "code": "025" }, { "name": "Duplek Municipality", "code": "026" }, { "name": "Gorenja Vas–Poljane Municipality", "code": "027" }, { "name": "Gorišnica Municipality", "code": "028" }, { "name": "Gorje Municipality", "code": "207" }, { "name": "Gornja Radgona Municipality", "code": "029" }, { "name": "Gornji Grad Municipality", "code": "030" }, { "name": "Gornji Petrovci Municipality", "code": "031" }, { "name": "Grad Municipality", "code": "158" }, { "name": "Grosuplje Municipality", "code": "032" }, { "name": "Hajdina Municipality", "code": "159" }, { "name": "Hodoš Municipality", "code": "161" }, { "name": "Horjul Municipality", "code": "162" }, { "name": "Hoče–Slivnica Municipality", "code": "160" }, { "name": "Hrastnik Municipality", "code": "034" }, { "name": "Hrpelje–Kozina Municipality", "code": "035" }, { "name": "Idrija Municipality", "code": "036" }, { "name": "Ig Municipality", "code": "037" }, { "name": "Ivančna Gorica Municipality", "code": "039" }, { "name": "Izola Municipality", "code": "040" }, { "name": "Jesenice Municipality", "code": "041" }, { "name": "Jezersko Municipality", "code": "163" }, { "name": "Juršinci Municipality", "code": "042" }, { "name": "Kamnik Municipality", "code": "043" }, { "name": "Kanal ob Soči Municipality", "code": "044" }, { "name": "Kidričevo Municipality", "code": "045" }, { "name": "Kobarid Municipality", "code": "046" }, { "name": "Kobilje Municipality", "code": "047" }, { "name": "Komen Municipality", "code": "049" }, { "name": "Komenda Municipality", "code": "164" }, { "name": "Koper City Municipality", "code": "050" }, { "name": "Kostanjevica na Krki Municipality", "code": "197" }, { "name": "Kostel Municipality", "code": "165" }, { "name": "Kozje Municipality", "code": "051" }, { "name": "Kočevje Municipality", "code": "048" }, { "name": "Kranj City Municipality", "code": "052" }, { "name": "Kranjska Gora Municipality", "code": "053" }, { "name": "Križevci Municipality", "code": "166" }, { "name": "Kungota", "code": "055" }, { "name": "Kuzma Municipality", "code": "056" }, { "name": "Laško Municipality", "code": "057" }, { "name": "Lenart Municipality", "code": "058" }, { "name": "Lendava Municipality", "code": "059" }, { "name": "Litija Municipality", "code": "060" }, { "name": "Ljubljana City Municipality", "code": "061" }, { "name": "Ljubno Municipality", "code": "062" }, { "name": "Ljutomer Municipality", "code": "063" }, { "name": "Logatec Municipality", "code": "064" }, { "name": "Log–Dragomer Municipality", "code": "208" }, { "name": "Lovrenc na Pohorju Municipality", "code": "167" }, { "name": "Loška Dolina Municipality", "code": "065" }, { "name": "Loški Potok Municipality", "code": "066" }, { "name": "Lukovica Municipality", "code": "068" }, { "name": "Luče Municipality", "code": "067" }, { "name": "Majšperk Municipality", "code": "069" }, { "name": "Makole Municipality", "code": "198" }, { "name": "Maribor City Municipality", "code": "070" }, { "name": "Markovci Municipality", "code": "168" }, { "name": "Medvode Municipality", "code": "071" }, { "name": "Mengeš Municipality", "code": "072" }, { "name": "Metlika Municipality", "code": "073" }, { "name": "Mežica Municipality", "code": "074" }, { "name": "Miklavž na Dravskem Polju Municipality", "code": "169" }, { "name": "Miren–Kostanjevica Municipality", "code": "075" }, { "name": "Mirna Municipality", "code": "212" }, { "name": "Mirna Peč Municipality", "code": "170" }, { "name": "Mislinja Municipality", "code": "076" }, { "name": "Mokronog–Trebelno Municipality", "code": "199" }, { "name": "Moravske Toplice Municipality", "code": "078" }, { "name": "Moravče Municipality", "code": "077" }, { "name": "Mozirje Municipality", "code": "079" }, { "name": "Municipality of Apače", "code": "195" }, { "name": "Municipality of Cirkulane", "code": "196" }, { "name": "Municipality of Ilirska Bistrica", "code": "038" }, { "name": "Municipality of Krško", "code": "054" }, { "name": "Municipality of Škofljica", "code": "123" }, { "name": "Murska Sobota City Municipality", "code": "080" }, { "name": "Muta Municipality", "code": "081" }, { "name": "Naklo Municipality", "code": "082" }, { "name": "Nazarje Municipality", "code": "083" }, { "name": "Nova Gorica City Municipality", "code": "084" }, { "name": "Odranci Municipality", "code": "086" }, { "name": "Oplotnica", "code": "171" }, { "name": "Ormož Municipality", "code": "087" }, { "name": "Osilnica Municipality", "code": "088" }, { "name": "Pesnica Municipality", "code": "089" }, { "name": "Piran Municipality", "code": "090" }, { "name": "Pivka Municipality", "code": "091" }, { "name": "Podlehnik Municipality", "code": "172" }, { "name": "Podvelka Municipality", "code": "093" }, { "name": "Podčetrtek Municipality", "code": "092" }, { "name": "Poljčane Municipality", "code": "200" }, { "name": "Polzela Municipality", "code": "173" }, { "name": "Postojna Municipality", "code": "094" }, { "name": "Prebold Municipality", "code": "174" }, { "name": "Preddvor Municipality", "code": "095" }, { "name": "Prevalje Municipality", "code": "175" }, { "name": "Ptuj City Municipality", "code": "096" }, { "name": "Puconci Municipality", "code": "097" }, { "name": "Radenci Municipality", "code": "100" }, { "name": "Radeče Municipality", "code": "099" }, { "name": "Radlje ob Dravi Municipality", "code": "101" }, { "name": "Radovljica Municipality", "code": "102" }, { "name": "Ravne na Koroškem Municipality", "code": "103" }, { "name": "Razkrižje Municipality", "code": "176" }, { "name": "Rače–Fram Municipality", "code": "098" }, { "name": "Renče–Vogrsko Municipality", "code": "201" }, { "name": "Rečica ob Savinji Municipality", "code": "209" }, { "name": "Ribnica Municipality", "code": "104" }, { "name": "Ribnica na Pohorju Municipality", "code": "177" }, { "name": "Rogatec Municipality", "code": "107" }, { "name": "Rogaška Slatina Municipality", "code": "106" }, { "name": "Rogašovci Municipality", "code": "105" }, { "name": "Ruše Municipality", "code": "108" }, { "name": "Selnica ob Dravi Municipality", "code": "178" }, { "name": "Semič Municipality", "code": "109" }, { "name": "Sevnica Municipality", "code": "110" }, { "name": "Sežana Municipality", "code": "111" }, { "name": "Slovenj Gradec City Municipality", "code": "112" }, { "name": "Slovenska Bistrica Municipality", "code": "113" }, { "name": "Slovenske Konjice Municipality", "code": "114" }, { "name": "Sodražica Municipality", "code": "179" }, { "name": "Solčava Municipality", "code": "180" }, { "name": "Središče ob Dravi", "code": "202" }, { "name": "Starše Municipality", "code": "115" }, { "name": "Straža Municipality", "code": "203" }, { "name": "Sveta Ana Municipality", "code": "181" }, { "name": "Sveta Trojica v Slovenskih Goricah Municipality", "code": "204" }, { "name": "Sveti Andraž v Slovenskih Goricah Municipality", "code": "182" }, { "name": "Sveti Jurij ob Ščavnici Municipality", "code": "116" }, { "name": "Sveti Jurij v Slovenskih Goricah Municipality", "code": "210" }, { "name": "Sveti Tomaž Municipality", "code": "205" }, { "name": "Tabor Municipality", "code": "184" }, { "name": "Tišina Municipality", "code": "010" }, { "name": "Tolmin Municipality", "code": "128" }, { "name": "Trbovlje Municipality", "code": "129" }, { "name": "Trebnje Municipality", "code": "130" }, { "name": "Trnovska Vas Municipality", "code": "185" }, { "name": "Trzin Municipality", "code": "186" }, { "name": "Tržič Municipality", "code": "131" }, { "name": "Turnišče Municipality", "code": "132" }, { "name": "Velika Polana Municipality", "code": "187" }, { "name": "Velike Lašče Municipality", "code": "134" }, { "name": "Veržej Municipality", "code": "188" }, { "name": "Videm Municipality", "code": "135" }, { "name": "Vipava Municipality", "code": "136" }, { "name": "Vitanje Municipality", "code": "137" }, { "name": "Vodice Municipality", "code": "138" }, { "name": "Vojnik Municipality", "code": "139" }, { "name": "Vransko Municipality", "code": "189" }, { "name": "Vrhnika Municipality", "code": "140" }, { "name": "Vuzenica Municipality", "code": "141" }, { "name": "Zagorje ob Savi Municipality", "code": "142" }, { "name": "Zavrč Municipality", "code": "143" }, { "name": "Zreče Municipality", "code": "144" }, { "name": "Črenšovci Municipality", "code": "015" }, { "name": "Črna na Koroškem Municipality", "code": "016" }, { "name": "Črnomelj Municipality", "code": "017" }, { "name": "Šalovci Municipality", "code": "033" }, { "name": "Šempeter–Vrtojba Municipality", "code": "183" }, { "name": "Šentilj Municipality", "code": "118" }, { "name": "Šentjernej Municipality", "code": "119" }, { "name": "Šentjur Municipality", "code": "120" }, { "name": "Šentrupert Municipality", "code": "211" }, { "name": "Šenčur Municipality", "code": "117" }, { "name": "Škocjan Municipality", "code": "121" }, { "name": "Škofja Loka Municipality", "code": "122" }, { "name": "Šmarje pri Jelšah Municipality", "code": "124" }, { "name": "Šmarješke Toplice Municipality", "code": "206" }, { "name": "Šmartno ob Paki Municipality", "code": "125" }, { "name": "Šmartno pri Litiji Municipality", "code": "194" }, { "name": "Šoštanj Municipality", "code": "126" }, { "name": "Štore Municipality", "code": "127" }, { "name": "Žalec Municipality", "code": "190" }, { "name": "Železniki Municipality", "code": "146" }, { "name": "Žetale Municipality", "code": "191" }, { "name": "Žiri Municipality", "code": "147" }, { "name": "Žirovnica Municipality", "code": "192" }, { "name": "Žužemberk Municipality", "code": "193" } ], "SB": [ { "name": "Central Province", "code": "CE" }, { "name": "Choiseul Province", "code": "CH" }, { "name": "Guadalcanal Province", "code": "GU" }, { "name": "Honiara", "code": "CT" }, { "name": "Isabel Province", "code": "IS" }, { "name": "Makira-Ulawa Province", "code": "MK" }, { "name": "Malaita Province", "code": "ML" }, { "name": "Rennell and Bellona Province", "code": "RB" }, { "name": "Temotu Province", "code": "TE" }, { "name": "Western Province", "code": "WE" } ], "SO": [ { "name": "Awdal Region", "code": "AW" }, { "name": "Bakool", "code": "BK" }, { "name": "Banaadir", "code": "BN" }, { "name": "Bari", "code": "BR" }, { "name": "Bay", "code": "BY" }, { "name": "Galguduud", "code": "GA" }, { "name": "Gedo", "code": "GE" }, { "name": "Hiran", "code": "HI" }, { "name": "Lower Juba", "code": "JH" }, { "name": "Lower Shebelle", "code": "SH" }, { "name": "Middle Juba", "code": "JD" }, { "name": "Middle Shebelle", "code": "SD" }, { "name": "Mudug", "code": "MU" }, { "name": "Nugal", "code": "NU" }, { "name": "Sanaag Region", "code": "SA" }, { "name": "Togdheer Region", "code": "TO" } ], "ZA": [ { "name": "Eastern Cape", "code": "EC" }, { "name": "Free State", "code": "FS" }, { "name": "Gauteng", "code": "GP" }, { "name": "KwaZulu-Natal", "code": "KZN" }, { "name": "Limpopo", "code": "LP" }, { "name": "Mpumalanga", "code": "MP" }, { "name": "North West", "code": "NW" }, { "name": "Northern Cape", "code": "NC" }, { "name": "Western Cape", "code": "WC" } ], "GS": [ { "name": "South Georgia and the South Sandwich Islands", "code": "South Georgia and the South Sandwich Islands" } ], "SS": [ { "name": "Central Equatoria", "code": "EC" }, { "name": "Eastern Equatoria", "code": "EE" }, { "name": "Jonglei State", "code": "JG" }, { "name": "Lakes", "code": "LK" }, { "name": "Northern Bahr el Ghazal", "code": "BN" }, { "name": "Unity", "code": "UY" }, { "name": "Upper Nile", "code": "NU" }, { "name": "Warrap", "code": "WR" }, { "name": "Western Bahr el Ghazal", "code": "BW" }, { "name": "Western Equatoria", "code": "EW" } ], "ES": [ { "name": "A Coruña Province", "code": "C" }, { "name": "Albacete Province", "code": "AB" }, { "name": "Alicante Province", "code": "A" }, { "name": "Almería Province", "code": "AL" }, { "name": "Andalusia", "code": "AN" }, { "name": "Araba / Álava", "code": "VI" }, { "name": "Aragon", "code": "AR" }, { "name": "Badajoz Province", "code": "BA" }, { "name": "Balearic Islands", "code": "PM" }, { "name": "Barcelona Province", "code": "B" }, { "name": "Basque Country", "code": "PV" }, { "name": "Biscay", "code": "BI" }, { "name": "Burgos Province", "code": "BU" }, { "name": "Canary Islands", "code": "CN" }, { "name": "Cantabria", "code": "S" }, { "name": "Castellón Province", "code": "CS" }, { "name": "Castile and León", "code": "CL" }, { "name": "Castile-La Mancha", "code": "CM" }, { "name": "Catalonia", "code": "CT" }, { "name": "Ceuta", "code": "CE" }, { "name": "Ciudad Real Province", "code": "CR" }, { "name": "Community of Madrid", "code": "MD" }, { "name": "Cuenca Province", "code": "CU" }, { "name": "Cáceres Province", "code": "CC" }, { "name": "Cádiz Province", "code": "CA" }, { "name": "Córdoba Province", "code": "CO" }, { "name": "Extremadura", "code": "EX" }, { "name": "Galicia", "code": "GA" }, { "name": "Gipuzkoa", "code": "SS" }, { "name": "Girona Province", "code": "GI" }, { "name": "Granada Province", "code": "GR" }, { "name": "Guadalajara Province", "code": "GU" }, { "name": "Huelva Province", "code": "H" }, { "name": "Huesca Province", "code": "HU" }, { "name": "Jaén Province", "code": "J" }, { "name": "La Rioja", "code": "RI" }, { "name": "Las Palmas Province", "code": "GC" }, { "name": "León Province", "code": "LE" }, { "name": "Lleida Province", "code": "L" }, { "name": "Lugo Province", "code": "LU" }, { "name": "Madrid Province", "code": "M" }, { "name": "Melilla", "code": "ML" }, { "name": "Murcia Province", "code": "MU" }, { "name": "Málaga Province", "code": "MA" }, { "name": "Navarre", "code": "NC" }, { "name": "Ourense Province", "code": "OR" }, { "name": "Palencia Province", "code": "P" }, { "name": "Pontevedra Province", "code": "PO" }, { "name": "Province of Asturias", "code": "O" }, { "name": "Province of Ávila", "code": "AV" }, { "name": "Region of Murcia", "code": "MC" }, { "name": "Salamanca Province", "code": "SA" }, { "name": "Santa Cruz de Tenerife Province", "code": "TF" }, { "name": "Segovia Province", "code": "SG" }, { "name": "Seville Province", "code": "SE" }, { "name": "Soria Province", "code": "SO" }, { "name": "Tarragona Province", "code": "T" }, { "name": "Teruel Province", "code": "TE" }, { "name": "Toledo Province", "code": "TO" }, { "name": "Valencia Province", "code": "V" }, { "name": "Valencian Community", "code": "VC" }, { "name": "Valladolid Province", "code": "VA" }, { "name": "Zamora Province", "code": "ZA" }, { "name": "Zaragoza Province", "code": "Z" } ], "LK": [ { "name": "Ampara District", "code": "52" }, { "name": "Anuradhapura District", "code": "71" }, { "name": "Badulla District", "code": "81" }, { "name": "Batticaloa District", "code": "51" }, { "name": "Central Province", "code": "2" }, { "name": "Colombo District", "code": "11" }, { "name": "Eastern Province", "code": "5" }, { "name": "Galle District", "code": "31" }, { "name": "Gampaha District", "code": "12" }, { "name": "Hambantota District", "code": "33" }, { "name": "Jaffna District", "code": "41" }, { "name": "Kalutara District", "code": "13" }, { "name": "Kandy District", "code": "21" }, { "name": "Kegalle District", "code": "92" }, { "name": "Kilinochchi District", "code": "42" }, { "name": "Mannar District", "code": "43" }, { "name": "Matale District", "code": "22" }, { "name": "Matara District", "code": "32" }, { "name": "Monaragala District", "code": "82" }, { "name": "Mullaitivu District", "code": "45" }, { "name": "North Central Province", "code": "7" }, { "name": "North Western Province", "code": "6" }, { "name": "Northern Province", "code": "4" }, { "name": "Nuwara Eliya District", "code": "23" }, { "name": "Polonnaruwa District", "code": "72" }, { "name": "Puttalam District", "code": "62" }, { "name": "Ratnapura district", "code": "91" }, { "name": "Sabaragamuwa Province", "code": "9" }, { "name": "Southern Province", "code": "3" }, { "name": "Trincomalee District", "code": "53" }, { "name": "Uva Province", "code": "8" }, { "name": "Vavuniya District", "code": "44" }, { "name": "Western Province", "code": "1" } ], "SD": [ { "name": "Al Jazirah", "code": "GZ" }, { "name": "Al Qadarif", "code": "GD" }, { "name": "Blue Nile", "code": "NB" }, { "name": "Central Darfur", "code": "DC" }, { "name": "East Darfur", "code": "DE" }, { "name": "Kassala", "code": "KA" }, { "name": "Khartoum", "code": "KH" }, { "name": "North Darfur", "code": "DN" }, { "name": "North Kordofan", "code": "KN" }, { "name": "Northern", "code": "NO" }, { "name": "Red Sea", "code": "RS" }, { "name": "River Nile", "code": "NR" }, { "name": "Sennar", "code": "SI" }, { "name": "South Darfur", "code": "DS" }, { "name": "South Kordofan", "code": "KS" }, { "name": "West Darfur", "code": "DW" }, { "name": "West Kordofan", "code": "GK" }, { "name": "White Nile", "code": "NW" } ], "SR": [ { "name": "Brokopondo District", "code": "BR" }, { "name": "Commewijne District", "code": "CM" }, { "name": "Coronie District", "code": "CR" }, { "name": "Marowijne District", "code": "MA" }, { "name": "Nickerie District", "code": "NI" }, { "name": "Para District", "code": "PR" }, { "name": "Paramaribo District", "code": "PM" }, { "name": "Saramacca District", "code": "SA" }, { "name": "Sipaliwini District", "code": "SI" }, { "name": "Wanica District", "code": "WA" } ], "SJ": [ { "name": "Svalbard and Jan Mayen", "code": "Svalbard and Jan Mayen" } ], "SZ": [ { "name": "Hhohho District", "code": "HH" }, { "name": "Lubombo District", "code": "LU" }, { "name": "Manzini District", "code": "MA" }, { "name": "Shiselweni District", "code": "SH" } ], "SE": [ { "name": "Blekinge", "code": "K" }, { "name": "Dalarna County", "code": "W" }, { "name": "Gotland County", "code": "I" }, { "name": "Gävleborg County", "code": "X" }, { "name": "Halland County", "code": "N" }, { "name": "Jönköping County", "code": "F" }, { "name": "Kalmar County", "code": "H" }, { "name": "Kronoberg County", "code": "G" }, { "name": "Norrbotten County", "code": "BD" }, { "name": "Skåne County", "code": "M" }, { "name": "Stockholm County", "code": "AB" }, { "name": "Södermanland County", "code": "D" }, { "name": "Uppsala County", "code": "C" }, { "name": "Värmland County", "code": "S" }, { "name": "Västerbotten County", "code": "AC" }, { "name": "Västernorrland County", "code": "Y" }, { "name": "Västmanland County", "code": "U" }, { "name": "Västra Götaland County", "code": "O" }, { "name": "Örebro County", "code": "T" }, { "name": "Östergötland County", "code": "E" } ], "CH": [ { "name": "Aargau", "code": "AG" }, { "name": "Appenzell Ausserrhoden", "code": "AR" }, { "name": "Appenzell Innerrhoden", "code": "AI" }, { "name": "Basel-Landschaft", "code": "BL" }, { "name": "Canton of Fribourg", "code": "FR" }, { "name": "Canton of Geneva", "code": "GE" }, { "name": "Canton of Jura", "code": "JU" }, { "name": "Canton of Lucerne", "code": "LU" }, { "name": "Canton of Neuchâtel", "code": "NE" }, { "name": "Canton of Schaffhausen", "code": "SH" }, { "name": "Canton of Solothurn", "code": "SO" }, { "name": "Canton of St. Gallen", "code": "SG" }, { "name": "Canton of Valais", "code": "VS" }, { "name": "Canton of Vaud", "code": "VD" }, { "name": "Canton of Zug", "code": "ZG" }, { "name": "Glarus", "code": "GL" }, { "name": "Graubünden", "code": "GR" }, { "name": "Nidwalden", "code": "NW" }, { "name": "Obwalden", "code": "OW" }, { "name": "Schwyz", "code": "SZ" }, { "name": "Thurgau", "code": "TG" }, { "name": "Ticino", "code": "TI" }, { "name": "Uri", "code": "UR" }, { "name": "canton of Bern", "code": "BE" }, { "name": "canton of Zürich", "code": "ZH" } ], "SY": [ { "name": "Al-Hasakah Governorate", "code": "HA" }, { "name": "Al-Raqqah Governorate", "code": "RA" }, { "name": "Aleppo Governorate", "code": "HL" }, { "name": "As-Suwayda Governorate", "code": "SU" }, { "name": "Damascus Governorate", "code": "DI" }, { "name": "Daraa Governorate", "code": "DR" }, { "name": "Deir ez-Zor Governorate", "code": "DY" }, { "name": "Hama Governorate", "code": "HM" }, { "name": "Homs Governorate", "code": "HI" }, { "name": "Idlib Governorate", "code": "ID" }, { "name": "Latakia Governorate", "code": "LA" }, { "name": "Quneitra Governorate", "code": "QU" }, { "name": "Rif Dimashq Governorate", "code": "RD" }, { "name": "Tartus Governorate", "code": "TA" } ], "TW": [ { "name": "Changhua County", "code": "CHA" }, { "name": "Chiayi City", "code": "CYQ" }, { "name": "Chiayi County", "code": "CYI" }, { "name": "Hsinchu", "code": "HSZ" }, { "name": "Hsinchu County", "code": "HSQ" }, { "name": "Hualien County", "code": "HUA" }, { "name": "Kaohsiung", "code": "KHH" }, { "name": "Kaohsiung County", "code": "KHQ" }, { "name": "Kinmen", "code": "KIN" }, { "name": "Lienchiang County", "code": "LIE" }, { "name": "Miaoli County", "code": "MIA" }, { "name": "Nantou County", "code": "NAN" }, { "name": "Penghu County", "code": "PEN" }, { "name": "Pingtung County", "code": "PIF" }, { "name": "Taichung", "code": "TXG" }, { "name": "Taichung County", "code": "TXQ" }, { "name": "Tainan", "code": "TNN" }, { "name": "Tainan County", "code": "TNQ" }, { "name": "Taipei", "code": "TPE" }, { "name": "Taitung County", "code": "TTT" }, { "name": "Taoyuan City", "code": "TAO" }, { "name": "Yilan County", "code": "ILA" }, { "name": "Yunlin County", "code": "YUN" } ], "TJ": [ { "name": "Gorno-Badakhshan Autonomous Province", "code": "GB" }, { "name": "Khatlon Province", "code": "KT" }, { "name": "Sughd Province", "code": "SU" }, { "name": "districts of Republican Subordination", "code": "RA" } ], "TZ": [ { "name": "Arusha Region", "code": "01" }, { "name": "Dar es Salaam Region", "code": "02" }, { "name": "Dodoma Region", "code": "03" }, { "name": "Geita Region", "code": "27" }, { "name": "Iringa Region", "code": "04" }, { "name": "Kagera Region", "code": "05" }, { "name": "Katavi Region", "code": "28" }, { "name": "Kigoma Region", "code": "08" }, { "name": "Kilimanjaro Region", "code": "09" }, { "name": "Lindi Region", "code": "12" }, { "name": "Manyara Region", "code": "26" }, { "name": "Mara Region", "code": "13" }, { "name": "Morogoro Region", "code": "16" }, { "name": "Mtwara Region", "code": "17" }, { "name": "Mwanza Region", "code": "18" }, { "name": "Njombe Region", "code": "29" }, { "name": "North Pemba Region", "code": "06" }, { "name": "Pwani Region", "code": "19" }, { "name": "Rukwa Region", "code": "20" }, { "name": "Ruvuma Region", "code": "21" }, { "name": "Shinyanga Region", "code": "22" }, { "name": "Simiyu Region", "code": "30" }, { "name": "Singida Region", "code": "23" }, { "name": "South Pemba Region", "code": "10" }, { "name": "Tabora Region", "code": "24" }, { "name": "Tanga Region", "code": "25" }, { "name": "Zanzibar Central/South Region", "code": "11" }, { "name": "Zanzibar North Region", "code": "07" }, { "name": "Zanzibar Urban/West Region", "code": "15" } ], "TH": [ { "name": "Amnat Charoen", "code": "37" }, { "name": "Ang Thong", "code": "15" }, { "name": "Bangkok", "code": "10" }, { "name": "Bueng Kan", "code": "38" }, { "name": "Buri Ram", "code": "31" }, { "name": "Chachoengsao", "code": "24" }, { "name": "Chai Nat", "code": "18" }, { "name": "Chanthaburi", "code": "22" }, { "name": "Chiang Mai", "code": "50" }, { "name": "Chiang Rai", "code": "57" }, { "name": "Chon Buri", "code": "20" }, { "name": "Chumphon", "code": "86" }, { "name": "Kalasin", "code": "46" }, { "name": "Kamphaeng Phet", "code": "62" }, { "name": "Kanchanaburi", "code": "71" }, { "name": "Khon Kaen", "code": "40" }, { "name": "Krabi", "code": "81" }, { "name": "Lampang", "code": "52" }, { "name": "Lamphun", "code": "51" }, { "name": "Loei", "code": "42" }, { "name": "Lopburi", "code": "16" }, { "name": "Mae Hong Son", "code": "58" }, { "name": "Maha Sarakham", "code": "44" }, { "name": "Mukdahan", "code": "49" }, { "name": "Nakhon Nayok", "code": "26" }, { "name": "Nakhon Pathom", "code": "73" }, { "name": "Nakhon Phanom", "code": "48" }, { "name": "Nakhon Ratchasima", "code": "30" }, { "name": "Nakhon Sawan", "code": "60" }, { "name": "Nakhon Si Thammarat", "code": "80" }, { "name": "Nan", "code": "55" }, { "name": "Narathiwat", "code": "96" }, { "name": "Nong Bua Lam Phu", "code": "39" }, { "name": "Nong Khai", "code": "43" }, { "name": "Nonthaburi", "code": "12" }, { "name": "Pathum Thani", "code": "13" }, { "name": "Pattani", "code": "94" }, { "name": "Pattaya", "code": "S" }, { "name": "Phang Nga", "code": "82" }, { "name": "Phatthalung", "code": "93" }, { "name": "Phayao", "code": "56" }, { "name": "Phetchabun", "code": "67" }, { "name": "Phetchaburi", "code": "76" }, { "name": "Phichit", "code": "66" }, { "name": "Phitsanulok", "code": "65" }, { "name": "Phra Nakhon Si Ayutthaya", "code": "14" }, { "name": "Phrae", "code": "54" }, { "name": "Phuket", "code": "83" }, { "name": "Prachin Buri", "code": "25" }, { "name": "Prachuap Khiri Khan", "code": "77" }, { "name": "Ranong", "code": "85" }, { "name": "Ratchaburi", "code": "70" }, { "name": "Rayong", "code": "21" }, { "name": "Roi Et", "code": "45" }, { "name": "Sa Kaeo", "code": "27" }, { "name": "Sakon Nakhon", "code": "47" }, { "name": "Samut Prakan", "code": "11" }, { "name": "Samut Sakhon", "code": "74" }, { "name": "Samut Songkhram", "code": "75" }, { "name": "Saraburi", "code": "19" }, { "name": "Satun", "code": "91" }, { "name": "Si Sa Ket", "code": "33" }, { "name": "Sing Buri", "code": "17" }, { "name": "Songkhla", "code": "90" }, { "name": "Sukhothai", "code": "64" }, { "name": "Suphanburi", "code": "72" }, { "name": "Surat Thani", "code": "84" }, { "name": "Surin", "code": "32" }, { "name": "Tak", "code": "63" }, { "name": "Trang", "code": "92" }, { "name": "Trat", "code": "23" }, { "name": "Ubon Ratchathani", "code": "34" }, { "name": "Udon Thani", "code": "41" }, { "name": "Uthai Thani", "code": "61" }, { "name": "Uttaradit", "code": "53" }, { "name": "Yala", "code": "95" }, { "name": "Yasothon", "code": "35" } ], "TL": [ { "name": "Aileu municipality", "code": "AL" }, { "name": "Ainaro Municipality", "code": "AN" }, { "name": "Baucau Municipality", "code": "BA" }, { "name": "Bobonaro Municipality", "code": "BO" }, { "name": "Cova Lima Municipality", "code": "CO" }, { "name": "Dili municipality", "code": "DI" }, { "name": "Ermera District", "code": "ER" }, { "name": "Lautém Municipality", "code": "LA" }, { "name": "Liquiçá Municipality", "code": "LI" }, { "name": "Manatuto District", "code": "MT" }, { "name": "Manufahi Municipality", "code": "MF" }, { "name": "Viqueque Municipality", "code": "VI" } ], "TG": [ { "name": "Centrale Region", "code": "C" }, { "name": "Kara Region", "code": "K" }, { "name": "Maritime", "code": "M" }, { "name": "Plateaux Region", "code": "P" }, { "name": "Savanes Region", "code": "S" } ], "TK": [{ "name": "Tokelau", "code": "Tokelau" }], "TO": [ { "name": "Haʻapai", "code": "02" }, { "name": "Niuas", "code": "03" }, { "name": "Tongatapu", "code": "04" }, { "name": "Vavaʻu", "code": "05" }, { "name": "ʻEua", "code": "01" } ], "TT": [ { "name": "Arima", "code": "ARI" }, { "name": "Chaguanas", "code": "CHA" }, { "name": "Couva-Tabaquite-Talparo Regional Corporation", "code": "CTT" }, { "name": "Diego Martin Regional Corporation", "code": "DMN" }, { "name": "Eastern Tobago", "code": "ETO" }, { "name": "Penal-Debe Regional Corporation", "code": "PED" }, { "name": "Point Fortin", "code": "PTF" }, { "name": "Port of Spain", "code": "POS" }, { "name": "Princes Town Regional Corporation", "code": "PRT" }, { "name": "Rio Claro-Mayaro Regional Corporation", "code": "MRC" }, { "name": "San Fernando", "code": "SFO" }, { "name": "San Juan-Laventille Regional Corporation", "code": "SJL" }, { "name": "Sangre Grande Regional Corporation", "code": "SGE" }, { "name": "Siparia Regional Corporation", "code": "SIP" }, { "name": "Tunapuna-Piarco Regional Corporation", "code": "TUP" }, { "name": "Western Tobago", "code": "WTO" } ], "TN": [ { "name": "Ariana Governorate", "code": "12" }, { "name": "Ben Arous Governorate", "code": "13" }, { "name": "Bizerte Governorate", "code": "23" }, { "name": "Gabès Governorate", "code": "81" }, { "name": "Gafsa Governorate", "code": "71" }, { "name": "Jendouba Governorate", "code": "32" }, { "name": "Kairouan Governorate", "code": "41" }, { "name": "Kasserine Governorate", "code": "42" }, { "name": "Kassrine", "code": "31" }, { "name": "Kebili Governorate", "code": "73" }, { "name": "Kef Governorate", "code": "33" }, { "name": "Mahdia Governorate", "code": "53" }, { "name": "Manouba Governorate", "code": "14" }, { "name": "Medenine Governorate", "code": "82" }, { "name": "Monastir Governorate", "code": "52" }, { "name": "Sfax Governorate", "code": "61" }, { "name": "Sidi Bouzid Governorate", "code": "43" }, { "name": "Siliana Governorate", "code": "34" }, { "name": "Sousse Governorate", "code": "51" }, { "name": "Tataouine Governorate", "code": "83" }, { "name": "Tozeur Governorate", "code": "72" }, { "name": "Tunis Governorate", "code": "11" }, { "name": "Zaghouan Governorate", "code": "22" } ], "TR": [ { "name": "Adana Province", "code": "01" }, { "name": "Adıyaman Province", "code": "02" }, { "name": "Afyonkarahisar Province", "code": "03" }, { "name": "Aksaray Province", "code": "68" }, { "name": "Amasya Province", "code": "05" }, { "name": "Ankara Province", "code": "06" }, { "name": "Antalya Province", "code": "07" }, { "name": "Ardahan Province", "code": "75" }, { "name": "Artvin Province", "code": "08" }, { "name": "Aydın Province", "code": "09" }, { "name": "Ağrı Province", "code": "04" }, { "name": "Balıkesir Province", "code": "10" }, { "name": "Bartın Province", "code": "74" }, { "name": "Batman Province", "code": "72" }, { "name": "Bayburt Province", "code": "69" }, { "name": "Bilecik Province", "code": "11" }, { "name": "Bingöl Province", "code": "12" }, { "name": "Bitlis Province", "code": "13" }, { "name": "Bolu Province", "code": "14" }, { "name": "Burdur Province", "code": "15" }, { "name": "Bursa Province", "code": "16" }, { "name": "Denizli Province", "code": "20" }, { "name": "Diyarbakır Province", "code": "21" }, { "name": "Düzce Province", "code": "81" }, { "name": "Edirne Province", "code": "22" }, { "name": "Elazığ Province", "code": "23" }, { "name": "Erzincan Province", "code": "24" }, { "name": "Erzurum Province", "code": "25" }, { "name": "Eskişehir Province", "code": "26" }, { "name": "Gaziantep Province", "code": "27" }, { "name": "Giresun Province", "code": "28" }, { "name": "Gümüşhane Province", "code": "29" }, { "name": "Hakkâri Province", "code": "30" }, { "name": "Hatay Province", "code": "31" }, { "name": "Isparta Province", "code": "32" }, { "name": "Istanbul Province", "code": "34" }, { "name": "Iğdır Province", "code": "76" }, { "name": "Kahramanmaraş Province", "code": "46" }, { "name": "Karabük Province", "code": "78" }, { "name": "Karaman Province", "code": "70" }, { "name": "Kars Province", "code": "36" }, { "name": "Kastamonu Province", "code": "37" }, { "name": "Kayseri Province", "code": "38" }, { "name": "Kilis Province", "code": "79" }, { "name": "Kocaeli Province", "code": "41" }, { "name": "Konya Province", "code": "42" }, { "name": "Kütahya Province", "code": "43" }, { "name": "Kırklareli Province", "code": "39" }, { "name": "Kırıkkale Province", "code": "71" }, { "name": "Kırşehir Province", "code": "40" }, { "name": "Malatya Province", "code": "44" }, { "name": "Manisa Province", "code": "45" }, { "name": "Mardin Province", "code": "47" }, { "name": "Mersin Province", "code": "33" }, { "name": "Muğla Province", "code": "48" }, { "name": "Muş Province", "code": "49" }, { "name": "Nevşehir Province", "code": "50" }, { "name": "Niğde Province", "code": "51" }, { "name": "Ordu Province", "code": "52" }, { "name": "Osmaniye Province", "code": "80" }, { "name": "Rize Province", "code": "53" }, { "name": "Sakarya Province", "code": "54" }, { "name": "Samsun Province", "code": "55" }, { "name": "Siirt Province", "code": "56" }, { "name": "Sinop Province", "code": "57" }, { "name": "Sivas Province", "code": "58" }, { "name": "Tekirdağ Province", "code": "59" }, { "name": "Tokat Province", "code": "60" }, { "name": "Trabzon Province", "code": "61" }, { "name": "Tunceli Province", "code": "62" }, { "name": "Uşak Province", "code": "64" }, { "name": "Van Province", "code": "65" }, { "name": "Yalova Province", "code": "77" }, { "name": "Yozgat Province", "code": "66" }, { "name": "Zonguldak Province", "code": "67" }, { "name": "Çanakkale Province", "code": "17" }, { "name": "Çankırı Province", "code": "18" }, { "name": "Çorum Province", "code": "19" }, { "name": "İzmir Province", "code": "35" }, { "name": "Şanlıurfa Province", "code": "63" }, { "name": "Şırnak Province", "code": "73" } ], "TM": [ { "name": "Ahal Region", "code": "A" }, { "name": "Ashgabat", "code": "S" }, { "name": "Balkan Region", "code": "B" }, { "name": "Daşoguz Region", "code": "D" }, { "name": "Lebap Region", "code": "L" }, { "name": "Mary Region", "code": "M" } ], "TC": [ { "name": "Turks and Caicos Islands", "code": "Turks and Caicos Islands" } ], "TV": [ { "name": "Funafuti", "code": "FUN" }, { "name": "Nanumanga", "code": "NMG" }, { "name": "Nanumea", "code": "NMA" }, { "name": "Niutao Island Council", "code": "NIT" }, { "name": "Nui", "code": "NUI" }, { "name": "Nukufetau", "code": "NKF" }, { "name": "Nukulaelae", "code": "NKL" }, { "name": "Vaitupu", "code": "VAI" } ], "UG": [ { "name": "Abim District", "code": "314" }, { "name": "Adjumani District", "code": "301" }, { "name": "Agago District", "code": "322" }, { "name": "Alebtong District", "code": "323" }, { "name": "Amolatar District", "code": "315" }, { "name": "Amudat District", "code": "324" }, { "name": "Amuria District", "code": "216" }, { "name": "Amuru District", "code": "316" }, { "name": "Apac District", "code": "302" }, { "name": "Arua District", "code": "303" }, { "name": "Budaka District", "code": "217" }, { "name": "Bududa District", "code": "218" }, { "name": "Bugiri District", "code": "201" }, { "name": "Buhweju District", "code": "420" }, { "name": "Buikwe District", "code": "117" }, { "name": "Bukedea District", "code": "219" }, { "name": "Bukomansimbi District", "code": "118" }, { "name": "Bukwo District", "code": "220" }, { "name": "Bulambuli District", "code": "225" }, { "name": "Buliisa District", "code": "416" }, { "name": "Bundibugyo District", "code": "401" }, { "name": "Bunyangabu District", "code": "430" }, { "name": "Bushenyi District", "code": "402" }, { "name": "Busia District", "code": "202" }, { "name": "Butaleja District", "code": "221" }, { "name": "Butambala District", "code": "119" }, { "name": "Butebo District", "code": "233" }, { "name": "Buvuma District", "code": "120" }, { "name": "Buyende District", "code": "226" }, { "name": "Central Region", "code": "C" }, { "name": "Dokolo District", "code": "317" }, { "name": "Eastern Region", "code": "E" }, { "name": "Gomba District", "code": "121" }, { "name": "Gulu District", "code": "304" }, { "name": "Ibanda District", "code": "417" }, { "name": "Iganga District", "code": "203" }, { "name": "Isingiro District", "code": "418" }, { "name": "Jinja District", "code": "204" }, { "name": "Kaabong District", "code": "318" }, { "name": "Kabale District", "code": "404" }, { "name": "Kabarole District", "code": "405" }, { "name": "Kaberamaido District", "code": "213" }, { "name": "Kagadi District", "code": "427" }, { "name": "Kakumiro District", "code": "428" }, { "name": "Kalangala District", "code": "101" }, { "name": "Kaliro District", "code": "222" }, { "name": "Kalungu District", "code": "122" }, { "name": "Kampala District", "code": "102" }, { "name": "Kamuli District", "code": "205" }, { "name": "Kamwenge District", "code": "413" }, { "name": "Kanungu District", "code": "414" }, { "name": "Kapchorwa District", "code": "206" }, { "name": "Kasese District", "code": "406" }, { "name": "Katakwi District", "code": "207" }, { "name": "Kayunga District", "code": "112" }, { "name": "Kibaale District", "code": "407" }, { "name": "Kiboga District", "code": "103" }, { "name": "Kibuku District", "code": "227" }, { "name": "Kiruhura District", "code": "419" }, { "name": "Kiryandongo District", "code": "421" }, { "name": "Kisoro District", "code": "408" }, { "name": "Kitgum District", "code": "305" }, { "name": "Koboko District", "code": "319" }, { "name": "Kole District", "code": "325" }, { "name": "Kotido District", "code": "306" }, { "name": "Kumi District", "code": "208" }, { "name": "Kween District", "code": "228" }, { "name": "Kyankwanzi District", "code": "123" }, { "name": "Kyegegwa District", "code": "422" }, { "name": "Kyenjojo District", "code": "415" }, { "name": "Kyotera District", "code": "125" }, { "name": "Lamwo District", "code": "326" }, { "name": "Lira District", "code": "307" }, { "name": "Luuka District", "code": "229" }, { "name": "Luwero District", "code": "104" }, { "name": "Lwengo District", "code": "124" }, { "name": "Lyantonde District", "code": "114" }, { "name": "Manafwa District", "code": "223" }, { "name": "Maracha District", "code": "320" }, { "name": "Masaka District", "code": "105" }, { "name": "Masindi District", "code": "409" }, { "name": "Mayuge District", "code": "214" }, { "name": "Mbale District", "code": "209" }, { "name": "Mbarara District", "code": "410" }, { "name": "Mitooma District", "code": "423" }, { "name": "Mityana District", "code": "115" }, { "name": "Moroto District", "code": "308" }, { "name": "Moyo District", "code": "309" }, { "name": "Mpigi District", "code": "106" }, { "name": "Mubende District", "code": "107" }, { "name": "Mukono District", "code": "108" }, { "name": "Nakapiripirit District", "code": "311" }, { "name": "Nakaseke District", "code": "116" }, { "name": "Nakasongola District", "code": "109" }, { "name": "Namayingo District", "code": "230" }, { "name": "Namisindwa District", "code": "234" }, { "name": "Namutumba District", "code": "224" }, { "name": "Napak District", "code": "327" }, { "name": "Nebbi District", "code": "310" }, { "name": "Ngora District", "code": "231" }, { "name": "Northern Region", "code": "N" }, { "name": "Ntoroko District", "code": "424" }, { "name": "Ntungamo District", "code": "411" }, { "name": "Nwoya District", "code": "328" }, { "name": "Omoro District", "code": "331" }, { "name": "Otuke District", "code": "329" }, { "name": "Oyam District", "code": "321" }, { "name": "Pader District", "code": "312" }, { "name": "Pakwach District", "code": "332" }, { "name": "Pallisa District", "code": "210" }, { "name": "Rakai District", "code": "110" }, { "name": "Rubanda District", "code": "429" }, { "name": "Rubirizi District", "code": "425" }, { "name": "Rukiga District", "code": "431" }, { "name": "Rukungiri District", "code": "412" }, { "name": "Sembabule District", "code": "111" }, { "name": "Serere District", "code": "232" }, { "name": "Sheema District", "code": "426" }, { "name": "Sironko District", "code": "215" }, { "name": "Soroti District", "code": "211" }, { "name": "Tororo District", "code": "212" }, { "name": "Wakiso District", "code": "113" }, { "name": "Western Region", "code": "W" }, { "name": "Yumbe District", "code": "313" }, { "name": "Zombo District", "code": "330" } ], "UA": [ { "name": "Autonomous Republic of Crimea", "code": "43" }, { "name": "Cherkaska oblast", "code": "71" }, { "name": "Chernihivska oblast", "code": "74" }, { "name": "Chernivetska oblast", "code": "77" }, { "name": "Dnipropetrovska oblast", "code": "12" }, { "name": "Donetska oblast", "code": "14" }, { "name": "Ivano-Frankivska oblast", "code": "26" }, { "name": "Kharkivska oblast", "code": "63" }, { "name": "Khersonska oblast", "code": "65" }, { "name": "Khmelnytska oblast", "code": "68" }, { "name": "Kirovohradska oblast", "code": "35" }, { "name": "Kyiv", "code": "30" }, { "name": "Kyivska oblast", "code": "32" }, { "name": "Luhanska oblast", "code": "09" }, { "name": "Lvivska oblast", "code": "46" }, { "name": "Mykolaivska oblast", "code": "48" }, { "name": "Odeska oblast", "code": "51" }, { "name": "Poltavska oblast", "code": "53" }, { "name": "Rivnenska oblast", "code": "56" }, { "name": "Sevastopol", "code": "40" }, { "name": "Sumska oblast", "code": "59" }, { "name": "Ternopilska oblast", "code": "61" }, { "name": "Vinnytska oblast", "code": "05" }, { "name": "Volynska oblast", "code": "07" }, { "name": "Zakarpatska Oblast", "code": "21" }, { "name": "Zaporizka oblast", "code": "23" }, { "name": "Zhytomyrska oblast", "code": "18" } ], "AE": [ { "name": "Abu Dhabi", "code": "AZ" }, { "name": "Ajman", "code": "AJ" }, { "name": "Dubai", "code": "DU" }, { "name": "Fujairah", "code": "FU" }, { "name": "Ras al-Khaimah", "code": "RK" }, { "name": "Sharjah", "code": "SH" }, { "name": "Umm al-Quwain", "code": "UQ" } ], "GB": [ { "name": "Aberdeen", "code": "ABE" }, { "name": "Aberdeenshire", "code": "ABD" }, { "name": "Angus", "code": "ANS" }, { "name": "Antrim", "code": "ANT" }, { "name": "Antrim and Newtownabbey", "code": "ANN" }, { "name": "Ards", "code": "ARD" }, { "name": "Ards and North Down", "code": "AND" }, { "name": "Argyll and Bute", "code": "AGB" }, { "name": "Armagh City and District Council", "code": "ARM" }, { "name": "Armagh, Banbridge and Craigavon", "code": "ABC" }, { "name": "Ascension Island", "code": "SH-AC" }, { "name": "Ballymena Borough", "code": "BLA" }, { "name": "Ballymoney", "code": "BLY" }, { "name": "Banbridge", "code": "BNB" }, { "name": "Barnsley", "code": "BNS" }, { "name": "Bath and North East Somerset", "code": "BAS" }, { "name": "Bedford", "code": "BDF" }, { "name": "Belfast district", "code": "BFS" }, { "name": "Birmingham", "code": "BIR" }, { "name": "Blackburn with Darwen", "code": "BBD" }, { "name": "Blackpool", "code": "BPL" }, { "name": "Blaenau Gwent County Borough", "code": "BGW" }, { "name": "Bolton", "code": "BOL" }, { "name": "Bournemouth", "code": "BMH" }, { "name": "Bracknell Forest", "code": "BRC" }, { "name": "Bradford", "code": "BRD" }, { "name": "Bridgend County Borough", "code": "BGE" }, { "name": "Brighton and Hove", "code": "BNH" }, { "name": "Buckinghamshire", "code": "BKM" }, { "name": "Bury", "code": "BUR" }, { "name": "Caerphilly County Borough", "code": "CAY" }, { "name": "Calderdale", "code": "CLD" }, { "name": "Cambridgeshire", "code": "CAM" }, { "name": "Carmarthenshire", "code": "CMN" }, { "name": "Carrickfergus Borough Council", "code": "CKF" }, { "name": "Castlereagh", "code": "CSR" }, { "name": "Causeway Coast and Glens", "code": "CCG" }, { "name": "Central Bedfordshire", "code": "CBF" }, { "name": "Ceredigion", "code": "CGN" }, { "name": "Cheshire East", "code": "CHE" }, { "name": "Cheshire West and Chester", "code": "CHW" }, { "name": "City and County of Cardiff", "code": "CRF" }, { "name": "City and County of Swansea", "code": "SWA" }, { "name": "City of Bristol", "code": "BST" }, { "name": "City of Derby", "code": "DER" }, { "name": "City of Kingston upon Hull", "code": "KHL" }, { "name": "City of Leicester", "code": "LCE" }, { "name": "City of London", "code": "LND" }, { "name": "City of Nottingham", "code": "NGM" }, { "name": "City of Peterborough", "code": "PTE" }, { "name": "City of Plymouth", "code": "PLY" }, { "name": "City of Portsmouth", "code": "POR" }, { "name": "City of Southampton", "code": "STH" }, { "name": "City of Stoke-on-Trent", "code": "STE" }, { "name": "City of Sunderland", "code": "SND" }, { "name": "City of Westminster", "code": "WSM" }, { "name": "City of Wolverhampton", "code": "WLV" }, { "name": "City of York", "code": "YOR" }, { "name": "Clackmannanshire", "code": "CLK" }, { "name": "Coleraine Borough Council", "code": "CLR" }, { "name": "Conwy County Borough", "code": "CWY" }, { "name": "Cookstown District Council", "code": "CKT" }, { "name": "Cornwall", "code": "CON" }, { "name": "County Durham", "code": "DUR" }, { "name": "Coventry", "code": "COV" }, { "name": "Craigavon Borough Council", "code": "CGV" }, { "name": "Cumbria", "code": "CMA" }, { "name": "Darlington", "code": "DAL" }, { "name": "Denbighshire", "code": "DEN" }, { "name": "Derbyshire", "code": "DBY" }, { "name": "Derry City and Strabane", "code": "DRS" }, { "name": "Derry City Council", "code": "DRY" }, { "name": "Devon", "code": "DEV" }, { "name": "Doncaster", "code": "DNC" }, { "name": "Dorset", "code": "DOR" }, { "name": "Down District Council", "code": "DOW" }, { "name": "Dudley", "code": "DUD" }, { "name": "Dumfries and Galloway", "code": "DGY" }, { "name": "Dundee", "code": "DND" }, { "name": "Dungannon and South Tyrone Borough Council", "code": "DGN" }, { "name": "East Ayrshire", "code": "EAY" }, { "name": "East Dunbartonshire", "code": "EDU" }, { "name": "East Lothian", "code": "ELN" }, { "name": "East Renfrewshire", "code": "ERW" }, { "name": "East Riding of Yorkshire", "code": "ERY" }, { "name": "East Sussex", "code": "ESX" }, { "name": "Edinburgh", "code": "EDH" }, { "name": "England", "code": "ENG" }, { "name": "Essex", "code": "ESS" }, { "name": "Falkirk", "code": "FAL" }, { "name": "Fermanagh and Omagh", "code": "FMO" }, { "name": "Fermanagh District Council", "code": "FER" }, { "name": "Fife", "code": "FIF" }, { "name": "Flintshire", "code": "FLN" }, { "name": "Gateshead", "code": "GAT" }, { "name": "Glasgow", "code": "GLG" }, { "name": "Gloucestershire", "code": "GLS" }, { "name": "Gwynedd", "code": "GWN" }, { "name": "Halton", "code": "HAL" }, { "name": "Hampshire", "code": "HAM" }, { "name": "Hartlepool", "code": "HPL" }, { "name": "Herefordshire", "code": "HEF" }, { "name": "Hertfordshire", "code": "HRT" }, { "name": "Highland", "code": "HLD" }, { "name": "Inverclyde", "code": "IVC" }, { "name": "Isle of Wight", "code": "IOW" }, { "name": "Isles of Scilly", "code": "IOS" }, { "name": "Kent", "code": "KEN" }, { "name": "Kirklees", "code": "KIR" }, { "name": "Knowsley", "code": "KWL" }, { "name": "Lancashire", "code": "LAN" }, { "name": "Larne Borough Council", "code": "LRN" }, { "name": "Leeds", "code": "LDS" }, { "name": "Leicestershire", "code": "LEC" }, { "name": "Limavady Borough Council", "code": "LMV" }, { "name": "Lincolnshire", "code": "LIN" }, { "name": "Lisburn and Castlereagh", "code": "LBC" }, { "name": "Lisburn City Council", "code": "LSB" }, { "name": "Liverpool", "code": "LIV" }, { "name": "London Borough of Barking and Dagenham", "code": "BDG" }, { "name": "London Borough of Barnet", "code": "BNE" }, { "name": "London Borough of Bexley", "code": "BEX" }, { "name": "London Borough of Brent", "code": "BEN" }, { "name": "London Borough of Bromley", "code": "BRY" }, { "name": "London Borough of Camden", "code": "CMD" }, { "name": "London Borough of Croydon", "code": "CRY" }, { "name": "London Borough of Ealing", "code": "EAL" }, { "name": "London Borough of Enfield", "code": "ENF" }, { "name": "London Borough of Hackney", "code": "HCK" }, { "name": "London Borough of Hammersmith and Fulham", "code": "HMF" }, { "name": "London Borough of Haringey", "code": "HRY" }, { "name": "London Borough of Harrow", "code": "HRW" }, { "name": "London Borough of Havering", "code": "HAV" }, { "name": "London Borough of Hillingdon", "code": "HIL" }, { "name": "London Borough of Hounslow", "code": "HNS" }, { "name": "London Borough of Islington", "code": "ISL" }, { "name": "London Borough of Lambeth", "code": "LBH" }, { "name": "London Borough of Lewisham", "code": "LEW" }, { "name": "London Borough of Merton", "code": "MRT" }, { "name": "London Borough of Newham", "code": "NWM" }, { "name": "London Borough of Redbridge", "code": "RDB" }, { "name": "London Borough of Richmond upon Thames", "code": "RIC" }, { "name": "London Borough of Southwark", "code": "SWK" }, { "name": "London Borough of Sutton", "code": "STN" }, { "name": "London Borough of Tower Hamlets", "code": "TWH" }, { "name": "London Borough of Waltham Forest", "code": "WFT" }, { "name": "London Borough of Wandsworth", "code": "WND" }, { "name": "Magherafelt District Council", "code": "MFT" }, { "name": "Manchester", "code": "MAN" }, { "name": "Medway", "code": "MDW" }, { "name": "Merthyr Tydfil County Borough", "code": "MTY" }, { "name": "Metropolitan Borough of Wigan", "code": "WGN" }, { "name": "Mid and East Antrim", "code": "MEA" }, { "name": "Mid Ulster", "code": "MUL" }, { "name": "Middlesbrough", "code": "MDB" }, { "name": "Midlothian", "code": "MLN" }, { "name": "Milton Keynes", "code": "MIK" }, { "name": "Monmouthshire", "code": "MON" }, { "name": "Moray", "code": "MRY" }, { "name": "Moyle District Council", "code": "MYL" }, { "name": "Neath Port Talbot County Borough", "code": "NTL" }, { "name": "Newcastle upon Tyne", "code": "NET" }, { "name": "Newport", "code": "NWP" }, { "name": "Newry and Mourne District Council", "code": "NYM" }, { "name": "Newry, Mourne and Down", "code": "NMD" }, { "name": "Newtownabbey Borough Council", "code": "NTA" }, { "name": "Norfolk", "code": "NFK" }, { "name": "North Ayrshire", "code": "NAY" }, { "name": "North Down Borough Council", "code": "NDN" }, { "name": "North East Lincolnshire", "code": "NEL" }, { "name": "North Lanarkshire", "code": "NLK" }, { "name": "North Lincolnshire", "code": "NLN" }, { "name": "North Somerset", "code": "NSM" }, { "name": "North Tyneside", "code": "NTY" }, { "name": "North Yorkshire", "code": "NYK" }, { "name": "Northamptonshire", "code": "NTH" }, { "name": "Northern Ireland", "code": "NIR" }, { "name": "Northumberland", "code": "NBL" }, { "name": "Nottinghamshire", "code": "NTT" }, { "name": "Oldham", "code": "OLD" }, { "name": "Omagh District Council", "code": "OMH" }, { "name": "Orkney Islands", "code": "ORK" }, { "name": "Outer Hebrides", "code": "ELS" }, { "name": "Oxfordshire", "code": "OXF" }, { "name": "Pembrokeshire", "code": "PEM" }, { "name": "Perth and Kinross", "code": "PKN" }, { "name": "Poole", "code": "POL" }, { "name": "Powys", "code": "POW" }, { "name": "Reading", "code": "RDG" }, { "name": "Redcar and Cleveland", "code": "RCC" }, { "name": "Renfrewshire", "code": "RFW" }, { "name": "Rhondda Cynon Taf", "code": "RCT" }, { "name": "Rochdale", "code": "RCH" }, { "name": "Rotherham", "code": "ROT" }, { "name": "Royal Borough of Greenwich", "code": "GRE" }, { "name": "Royal Borough of Kensington and Chelsea", "code": "KEC" }, { "name": "Royal Borough of Kingston upon Thames", "code": "KTT" }, { "name": "Rutland", "code": "RUT" }, { "name": "Saint Helena", "code": "SH-HL" }, { "name": "Salford", "code": "SLF" }, { "name": "Sandwell", "code": "SAW" }, { "name": "Scotland", "code": "SCT" }, { "name": "Scottish Borders", "code": "SCB" }, { "name": "Sefton", "code": "SFT" }, { "name": "Sheffield", "code": "SHF" }, { "name": "Shetland Islands", "code": "ZET" }, { "name": "Shropshire", "code": "SHR" }, { "name": "Slough", "code": "SLG" }, { "name": "Solihull", "code": "SOL" }, { "name": "Somerset", "code": "SOM" }, { "name": "South Ayrshire", "code": "SAY" }, { "name": "South Gloucestershire", "code": "SGC" }, { "name": "South Lanarkshire", "code": "SLK" }, { "name": "South Tyneside", "code": "STY" }, { "name": "Southend-on-Sea", "code": "SOS" }, { "name": "St Helens", "code": "SHN" }, { "name": "Staffordshire", "code": "STS" }, { "name": "Stirling", "code": "STG" }, { "name": "Stockport", "code": "SKP" }, { "name": "Stockton-on-Tees", "code": "STT" }, { "name": "Strabane District Council", "code": "STB" }, { "name": "Suffolk", "code": "SFK" }, { "name": "Surrey", "code": "SRY" }, { "name": "Swindon", "code": "SWD" }, { "name": "Tameside", "code": "TAM" }, { "name": "Telford and Wrekin", "code": "TFW" }, { "name": "Thurrock", "code": "THR" }, { "name": "Torbay", "code": "TOB" }, { "name": "Torfaen", "code": "TOF" }, { "name": "Trafford", "code": "TRF" }, { "name": "United Kingdom", "code": "UKM" }, { "name": "Vale of Glamorgan", "code": "VGL" }, { "name": "Wakefield", "code": "WKF" }, { "name": "Wales", "code": "WLS" }, { "name": "Walsall", "code": "WLL" }, { "name": "Warrington", "code": "WRT" }, { "name": "Warwickshire", "code": "WAR" }, { "name": "West Berkshire", "code": "WBK" }, { "name": "West Dunbartonshire", "code": "WDU" }, { "name": "West Lothian", "code": "WLN" }, { "name": "West Sussex", "code": "WSX" }, { "name": "Wiltshire", "code": "WIL" }, { "name": "Windsor and Maidenhead", "code": "WNM" }, { "name": "Wirral", "code": "WRL" }, { "name": "Wokingham", "code": "WOK" }, { "name": "Worcestershire", "code": "WOR" }, { "name": "Wrexham County Borough", "code": "WRX" } ], "US": [ { "name": "Alabama", "code": "AL" }, { "name": "Alaska", "code": "AK" }, { "name": "American Samoa", "code": "AS" }, { "name": "Arizona", "code": "AZ" }, { "name": "Arkansas", "code": "AR" }, { "name": "California", "code": "CA" }, { "name": "Colorado", "code": "CO" }, { "name": "Connecticut", "code": "CT" }, { "name": "Delaware", "code": "DE" }, { "name": "District of Columbia", "code": "DC" }, { "name": "Florida", "code": "FL" }, { "name": "Georgia", "code": "GA" }, { "name": "Guam", "code": "GU" }, { "name": "Hawaii", "code": "HI" }, { "name": "Idaho", "code": "ID" }, { "name": "Illinois", "code": "IL" }, { "name": "Indiana", "code": "IN" }, { "name": "Iowa", "code": "IA" }, { "name": "Kansas", "code": "KS" }, { "name": "Kentucky", "code": "KY" }, { "name": "Louisiana", "code": "LA" }, { "name": "Maine", "code": "ME" }, { "name": "Maryland", "code": "MD" }, { "name": "Massachusetts", "code": "MA" }, { "name": "Michigan", "code": "MI" }, { "name": "Minnesota", "code": "MN" }, { "name": "Mississippi", "code": "MS" }, { "name": "Missouri", "code": "MO" }, { "name": "Montana", "code": "MT" }, { "name": "Nebraska", "code": "NE" }, { "name": "Nevada", "code": "NV" }, { "name": "New Hampshire", "code": "NH" }, { "name": "New Jersey", "code": "NJ" }, { "name": "New Mexico", "code": "NM" }, { "name": "New York", "code": "NY" }, { "name": "North Carolina", "code": "NC" }, { "name": "North Dakota", "code": "ND" }, { "name": "Northern Mariana Islands", "code": "MP" }, { "name": "Ohio", "code": "OH" }, { "name": "Oklahoma", "code": "OK" }, { "name": "Oregon", "code": "OR" }, { "name": "Pennsylvania", "code": "PA" }, { "name": "Puerto Rico", "code": "PR" }, { "name": "Rhode Island", "code": "RI" }, { "name": "South Carolina", "code": "SC" }, { "name": "South Dakota", "code": "SD" }, { "name": "Tennessee", "code": "TN" }, { "name": "Texas", "code": "TX" }, { "name": "Utah", "code": "UT" }, { "name": "Vermont", "code": "VT" }, { "name": "Virginia", "code": "VA" }, { "name": "Washington", "code": "WA" }, { "name": "West Virginia", "code": "WV" }, { "name": "Wisconsin", "code": "WI" }, { "name": "Wyoming", "code": "WY" } ], "UM": [ { "name": "Baker Island", "code": "UM-81" }, { "name": "Howland Island", "code": "UM-84" }, { "name": "Jarvis Island", "code": "UM-86" }, { "name": "Johnston Atoll", "code": "UM-67" }, { "name": "Kingman Reef", "code": "UM-89" }, { "name": "Midway Atoll", "code": "UM-71" }, { "name": "Navassa Island", "code": "UM-76" }, { "name": "Palmyra Atoll", "code": "UM-95" }, { "name": "Wake Island", "code": "UM-79" } ], "UY": [ { "name": "Artigas Department", "code": "AR" }, { "name": "Canelones Department", "code": "CA" }, { "name": "Cerro Largo Department", "code": "CL" }, { "name": "Colonia Department", "code": "CO" }, { "name": "Durazno Department", "code": "DU" }, { "name": "Flores Department", "code": "FS" }, { "name": "Florida Department", "code": "FD" }, { "name": "Lavalleja Department", "code": "LA" }, { "name": "Maldonado Department", "code": "MA" }, { "name": "Montevideo Department", "code": "MO" }, { "name": "Paysandú Department", "code": "PA" }, { "name": "Rivera Department", "code": "RV" }, { "name": "Rocha Department", "code": "RO" }, { "name": "Río Negro Department", "code": "RN" }, { "name": "Salto Department", "code": "SA" }, { "name": "San José Department", "code": "SJ" }, { "name": "Soriano Department", "code": "SO" }, { "name": "Tacuarembó Department", "code": "TA" }, { "name": "Treinta y Tres Department", "code": "TT" } ], "UZ": [ { "name": "Andijan Region", "code": "AN" }, { "name": "Bukhara Region", "code": "BU" }, { "name": "Fergana Region", "code": "FA" }, { "name": "Jizzakh Region", "code": "JI" }, { "name": "Karakalpakstan", "code": "QR" }, { "name": "Namangan Region", "code": "NG" }, { "name": "Navoiy Region", "code": "NW" }, { "name": "Qashqadaryo Region", "code": "QA" }, { "name": "Samarqand Region", "code": "SA" }, { "name": "Sirdaryo Region", "code": "SI" }, { "name": "Surxondaryo Region", "code": "SU" }, { "name": "Tashkent", "code": "TK" }, { "name": "Tashkent Region", "code": "TO" }, { "name": "Xorazm Region", "code": "XO" } ], "VU": [ { "name": "Malampa", "code": "MAP" }, { "name": "Penama", "code": "PAM" }, { "name": "Sanma", "code": "SAM" }, { "name": "Shefa", "code": "SEE" }, { "name": "Tafea", "code": "TAE" }, { "name": "Torba", "code": "TOB" } ], "VE": [ { "name": "Amazonas", "code": "Z" }, { "name": "Anzoátegui", "code": "B" }, { "name": "Apure", "code": "C" }, { "name": "Aragua", "code": "D" }, { "name": "Barinas", "code": "E" }, { "name": "Bolívar", "code": "F" }, { "name": "Capital District", "code": "A" }, { "name": "Carabobo", "code": "G" }, { "name": "Cojedes", "code": "H" }, { "name": "Delta Amacuro", "code": "Y" }, { "name": "Falcón", "code": "I" }, { "name": "Federal Dependencies of Venezuela", "code": "W" }, { "name": "Guárico", "code": "J" }, { "name": "Lara", "code": "K" }, { "name": "Miranda", "code": "M" }, { "name": "Monagas", "code": "N" }, { "name": "Mérida", "code": "L" }, { "name": "Nueva Esparta", "code": "O" }, { "name": "Portuguesa", "code": "P" }, { "name": "Sucre", "code": "R" }, { "name": "Trujillo", "code": "T" }, { "name": "Táchira", "code": "S" }, { "name": "Vargas", "code": "X" }, { "name": "Yaracuy", "code": "U" }, { "name": "Zulia", "code": "V" } ], "VN": [ { "name": "An Giang", "code": "44" }, { "name": "Bà Rịa-Vũng Tàu", "code": "43" }, { "name": "Bình Dương", "code": "57" }, { "name": "Bình Phước", "code": "58" }, { "name": "Bình Thuận", "code": "40" }, { "name": "Bình Định", "code": "31" }, { "name": "Bạc Liêu", "code": "55" }, { "name": "Bắc Giang", "code": "54" }, { "name": "Bắc Kạn", "code": "53" }, { "name": "Bắc Ninh", "code": "56" }, { "name": "Bến Tre", "code": "50" }, { "name": "Cao Bằng", "code": "04" }, { "name": "Cà Mau", "code": "59" }, { "name": "Da Nang", "code": "DN" }, { "name": "Gia Lai", "code": "30" }, { "name": "Haiphong", "code": "HP" }, { "name": "Hanoi", "code": "HN" }, { "name": "Ho Chi Minh City", "code": "SG" }, { "name": "Hà Giang", "code": "03" }, { "name": "Hà Nam", "code": "63" }, { "name": "Hà Tây", "code": "15" }, { "name": "Hà Tĩnh", "code": "23" }, { "name": "Hòa Bình", "code": "14" }, { "name": "Hưng Yên", "code": "66" }, { "name": "Hải Dương", "code": "61" }, { "name": "Hậu Giang", "code": "73" }, { "name": "Khánh Hòa", "code": "34" }, { "name": "Kiên Giang", "code": "47" }, { "name": "Kon Tum", "code": "28" }, { "name": "Lai Châu", "code": "01" }, { "name": "Long An", "code": "41" }, { "name": "Lào Cai", "code": "02" }, { "name": "Lâm Đồng", "code": "35" }, { "name": "Lạng Sơn", "code": "09" }, { "name": "Nam Định", "code": "67" }, { "name": "Nghệ An", "code": "22" }, { "name": "Ninh Bình", "code": "18" }, { "name": "Ninh Thuận", "code": "36" }, { "name": "Phú Thọ", "code": "68" }, { "name": "Phú Yên", "code": "32" }, { "name": "Quảng Bình", "code": "24" }, { "name": "Quảng Nam", "code": "27" }, { "name": "Quảng Ngãi", "code": "29" }, { "name": "Quảng Ninh", "code": "13" }, { "name": "Quảng Trị", "code": "25" }, { "name": "Sóc Trăng", "code": "52" }, { "name": "Sơn La", "code": "05" }, { "name": "Thanh Hóa", "code": "21" }, { "name": "Thái Bình", "code": "20" }, { "name": "Thái Nguyên", "code": "69" }, { "name": "Thừa Thiên-Huế", "code": "26" }, { "name": "Tiền Giang", "code": "46" }, { "name": "Trà Vinh", "code": "51" }, { "name": "Tuyên Quang", "code": "07" }, { "name": "Tây Ninh", "code": "37" }, { "name": "Vĩnh Long", "code": "49" }, { "name": "Vĩnh Phúc", "code": "70" }, { "name": "Yên Bái", "code": "06" }, { "name": "Điện Biên", "code": "71" }, { "name": "Đắk Lắk", "code": "33" }, { "name": "Đắk Nông", "code": "72" }, { "name": "Đồng Nai", "code": "39" }, { "name": "Đồng Tháp", "code": "45" } ], "VG": [ { "name": "Virgin Islands, British", "code": "Virgin Islands, British" } ], "VI": [{ "name": "Virgin Islands, U.s.", "code": "Virgin Islands, U.s." }], "WF": [{ "name": "Wallis and Futuna", "code": "Wallis and Futuna" }], "EH": [{ "name": "Western Sahara", "code": "Western Sahara" }], "YE": [ { "name": "'Adan Governorate", "code": "AD" }, { "name": "'Amran Governorate", "code": "AM" }, { "name": "Abyan Governorate", "code": "AB" }, { "name": "Al Bayda' Governorate", "code": "BA" }, { "name": "Al Hudaydah Governorate", "code": "HU" }, { "name": "Al Jawf Governorate", "code": "JA" }, { "name": "Al Mahrah Governorate", "code": "MR" }, { "name": "Al Mahwit Governorate", "code": "MW" }, { "name": "Dhamar Governorate", "code": "DH" }, { "name": "Hadhramaut Governorate", "code": "HD" }, { "name": "Hajjah Governorate", "code": "HJ" }, { "name": "Ibb Governorate", "code": "IB" }, { "name": "Lahij Governorate", "code": "LA" }, { "name": "Ma'rib Governorate", "code": "MA" }, { "name": "Raymah Governorate", "code": "RA" }, { "name": "Saada Governorate", "code": "SD" }, { "name": "Sana'a", "code": "SA" }, { "name": "Sana'a Governorate", "code": "SN" }, { "name": "Shabwah Governorate", "code": "SH" }, { "name": "Socotra Governorate", "code": "SU" }, { "name": "Ta'izz Governorate", "code": "TA" } ], "ZM": [ { "name": "Central Province", "code": "02" }, { "name": "Copperbelt Province", "code": "08" }, { "name": "Eastern Province", "code": "03" }, { "name": "Luapula Province", "code": "04" }, { "name": "Lusaka Province", "code": "09" }, { "name": "Muchinga Province", "code": "10" }, { "name": "Northern Province", "code": "05" }, { "name": "Northwestern Province", "code": "06" }, { "name": "Southern Province", "code": "07" }, { "name": "Western Province", "code": "01" } ], "ZW": [ { "name": "Bulawayo Province", "code": "BU" }, { "name": "Harare Province", "code": "HA" }, { "name": "Manicaland", "code": "MA" }, { "name": "Mashonaland Central Province", "code": "MC" }, { "name": "Mashonaland East Province", "code": "ME" }, { "name": "Mashonaland West Province", "code": "MW" }, { "name": "Masvingo Province", "code": "MV" }, { "name": "Matabeleland North Province", "code": "MN" }, { "name": "Matabeleland South Province", "code": "MS" }, { "name": "Midlands Province", "code": "MI" } ] } }
98,478
10,311
hyperswitch-web
src/MidnightTheme.res
.res
open CardThemeType let midnight = { fontFamily: "Quicksand", fontSizeBase: "1rem", colorPrimary: "#85d996", colorBackground: "#30313d", colorText: "#e0e0e0", colorDanger: "#fe87a1", colorDangerText: "#fe87a1", borderRadius: "10px", fontVariantLigatures: "", fontVariationSettings: "", spacingUnit: "11px", fontWeightLight: "400", fontWeightNormal: "500", fontWeightMedium: "600", fontWeightBold: "700", fontLineHeight: "", fontSize2Xl: "24px", fontSizeXl: "16px", fontSizeLg: "14px", fontSizeSm: "12px", fontSizeXs: "10px", fontSize2Xs: "8px", fontSize3Xs: "6px", colorSuccess: "", colorWarning: "", colorPrimaryText: "#000000", colorBackgroundText: "#ffffffe0", colorSuccessText: "", colorWarningText: "", colorTextSecondary: "#ffffff", colorTextPlaceholder: "", spacingTab: "12px", borderColor: "#424353", spacingAccordionItem: "10px", colorIconCardCvc: "", colorIconCardCvcError: "#fe87a1", colorIconCardError: "#fd1717", spacingGridColumn: "20px", spacingGridRow: "20px", buttonBackgroundColor: "#85d996", buttonHeight: "48px", buttonWidth: "100%", buttonBorderRadius: "6px", buttonBorderColor: "#85d996", buttonTextColor: "#000000", buttonTextFontSize: "16px", buttonTextFontWeight: "500", buttonBorderWidth: "0px", } let midnightRules = theme => { ".Tab": { "border": `1px solid ${theme.borderColor}`, "borderRadius": theme.borderRadius, "backgroundColor": theme.colorBackground, "color": theme.colorTextSecondary, "alignItems": "start", "transition": "background .15s ease, border .15s ease, box-shadow .15s ease", "boxShadow": "0px 2px 4px rgb(0 0 0 / 2%), 0px 1px 6px rgb(0 0 0 / 3%)", }, ".Tab--selected": { "border": `1px solid ${theme.colorPrimary}`, "color": theme.colorPrimaryText, "backgroundColor": theme.colorPrimary, "boxShadow": `0px 1px 1px rgba(0, 0, 0, 0.03), 0px 3px 6px rgba(18, 42, 66, 0.02), 0 0 0 2px ${theme.colorPrimary}`, }, ".Tab--selected:hover": { "border": `1px solid ${theme.colorPrimary}`, "boxShadow": `0px 1px 1px rgba(0, 0, 0, 0.03), 0px 3px 6px rgba(18, 42, 66, 0.02), 0 0 0 2px ${theme.colorPrimary}`, }, ".Tab--selected:focus": { "border": `2px solid ${theme.colorPrimary}`, "borderColor": theme.colorPrimary, "boxShadow": `0 0 0 2px ${theme.colorPrimary}4c, 0 1px 1px 0 ${theme.colorBackground}, 0 0 0 1px ${theme.colorPrimary}4c`, }, ".TabMore:focus": { "border": `1px solid ${theme.colorPrimary}`, "boxShadow": `${theme.colorPrimary}4c 0px 0px 0px 3px`, }, ".TabMore": { "border": `1px solid ${theme.borderColor}`, "boxShadow": "0px 2px 4px rgb(0 0 0 / 50%), 0px 1px 6px rgb(0 0 0 / 25%)", }, ".Label": { "color": "#ffffff", "textAlign": "left", }, ".Button": { "marginTop": theme.spacingUnit, "marginBottom": theme.spacingUnit, "padding": "3px", "width": "fit-content", "height": "30px", "borderRadius": theme.borderRadius, "border": `1px solid ${theme.colorPrimary}`, "color": theme.colorPrimary, }, ".Input": { "border": `1px solid #424353`, "borderRadius": theme.borderRadius, "color": "#ffffff", "boxShadow": `0px 2px 4px rgb(0 0 0 / 50%), 0px 1px 6px rgb(0 0 0 / 25%)`, "transition": "background 0.15s ease, border 0.15s ease, box-shadow 0.15s ease, color 0.15s ease", }, ".Input-Compressed": { "border": `1px solid #424353`, "color": "#ffffff", "boxShadow": `0px 2px 4px rgb(0 0 0 / 50%), 0px 1px 6px rgb(0 0 0 / 25%)`, "transition": "background 0.15s ease, border 0.15s ease, box-shadow 0.15s ease, color 0.15s ease", }, ".Input:-webkit-autofill": { "transition": "background-color 5000s ease-in-out 0s", "-webkitTextFillColor": "#ffffff !important", }, ".Input:focus": { "border": `1px solid ${theme.colorPrimary}`, "boxShadow": `${theme.colorPrimary}4c 0px 0px 0px 3px`, }, ".Input-Compressed:focus": { "border": `1px solid ${theme.colorPrimary}`, "boxShadow": `${theme.colorPrimary}4c 0px 0px 0px 2px`, "position": "relative", "zIndex": "2", }, ".Input--invalid": { "color": theme.colorDanger, "border": `2px solid ${theme.colorDanger}`, "transition": "border 0.15s ease, box-shadow 0.15s ease, color 0.15s ease", }, ".Input::placeholder": { "fontWeight": theme.fontWeightLight, "color": theme.colorTextPlaceholder, }, ".InputLogo": { "color": "#979797", }, ".TabLabel": { "transition": "color .1s ease", "textAlign": "start", }, ".TabIcon": { "transition": "color .1s ease", }, ".Block": { "backgroundColor": theme.colorBackground, "borderRadius": theme.borderRadius, "border": `1px solid ${theme.borderColor}`, }, ".BlockDivider": { "border": `1px solid ${theme.borderColor}`, }, ".AccordionItem": { "backgroundColor": theme.colorBackground, "transition": "height 1s ease", "color": "#e0e0e0", "boxShadow": "0px 2px 4px rgb(0 0 0 / 50%), 0px 1px 6px rgb(0 0 0 / 25%)", "padding": "20px", }, ".AccordionItem:hover": { "color": theme.colorTextSecondary, }, ".AccordionMore": { "backgroundColor": theme.colorBackground, "color": theme.colorTextSecondary, "border": `1px solid ${theme.borderColor}`, }, ".AccordionMore:hover": { "color": theme.colorText, }, ".AccordionItem--selected": { "color": theme.colorPrimary, }, ".AccordionItem--selected:hover": { "color": theme.colorPrimary, }, ".AccordionItemLabel": { "transition": "color .1s ease", }, ".AccordionItemLabel--selected": { "color": theme.colorPrimary, }, ".AccordionItemIcon--selected": { "color": theme.colorPrimary, }, ".PickerItem": { "backgroundColor": theme.colorBackground, "transition": "height 1s ease", "color": "#e0e0e0", "padding": theme.spacingUnit, "borderRadius": theme.borderRadius, "border": `1px solid ${theme.borderColor}`, }, ".PickerItem:hover": { "color": theme.colorTextSecondary, }, ".PickerItem--selected": { "border": `1px solid ${theme.colorPrimary}`, "color": theme.colorPrimaryText, "backgroundColor": theme.colorPrimary, "boxShadow": `0px 1px 1px rgba(0, 0, 0, 0.03), 0px 3px 6px rgba(18, 42, 66, 0.02), 0 0 0 2px ${theme.colorPrimary}`, }, ".PickerItem--selected:hover": { "border": `1px solid ${theme.colorPrimary}`, "color": theme.colorPrimaryText, "backgroundColor": theme.colorPrimary, "boxShadow": `0px 1px 1px rgba(0, 0, 0, 0.03), 0px 3px 6px rgba(18, 42, 66, 0.02), 0 0 0 2px ${theme.colorPrimary}`, }, ".Checkbox": { "fontWeight": theme.fontWeightLight, "fontSize": theme.fontSizeLg, }, ".PaymentMethodsHeaderLabel": { "color": theme.colorText, "fontSize": theme.fontSize2Xl, "fontWeight": theme.fontWeightMedium, "marginBottom": "1.5rem", }, }->Identity.anyTypeToJson let default = midnight let defaultRules = midnightRules
2,388
10,312
hyperswitch-web
src/RenderPaymentMethods.res
.res
open RecoilAtoms @react.component let make = ( ~paymentType: CardThemeType.mode, ~cardProps, ~expiryProps, ~cvcProps, ~zipProps, ~handleElementFocus, ~blurState, ~isFocus, ) => { let {showLoader} = Recoil.useRecoilValueFromAtom(configAtom) let {themeObj, localeString} = Recoil.useRecoilValueFromAtom(configAtom) let ( isCardValid, setIsCardValid, _, cardNumber, changeCardNumber, handleCardBlur, cardRef, _, _, _, maxCardLength, _, ) = cardProps let ( isExpiryValid, setIsExpiryValid, cardExpiry, changeCardExpiry, handleExpiryBlur, expiryRef, _, _, _, ) = expiryProps let ( isCVCValid, setIsCVCValid, cvcNumber, _, changeCVCNumber, handleCVCBlur, cvcRef, _, _, _, ) = cvcProps let blur = blurState ? "blur(2px)" : "" let frameRef = React.useRef(Nullable.null) <div className={`flex flex-col justify-between `} style={ color: themeObj.colorText, background: "transparent", marginLeft: "4px", marginRight: "4px", marginTop: "4px", fontFamily: themeObj.fontFamily, fontSize: themeObj.fontSizeBase, filter: blur, } dir=localeString.localeDirection> <div ref={frameRef->ReactDOM.Ref.domRef} className={`m-auto flex justify-center md:h-auto w-full h-auto `}> <div className="w-full font-medium"> {switch paymentType { | Card => <ReusableReactSuspense loaderComponent={<RenderIf condition={showLoader}> <CardElementShimmer /> </RenderIf>} componentName="SingleLineCardPaymentLazy"> <SingleLineCardPaymentLazy paymentType cardProps expiryProps cvcProps zipProps handleElementFocus isFocus /> </ReusableReactSuspense> | GooglePayElement | PayPalElement | ApplePayElement | SamsungPayElement | KlarnaElement | PazeElement | ExpressCheckoutElement | Payment => <ReusableReactSuspense loaderComponent={<RenderIf condition={showLoader}> {paymentType->Utils.getIsWalletElementPaymentType ? <WalletShimmer /> : <PaymentElementShimmer />} </RenderIf>} componentName="PaymentElementRendererLazy"> <PaymentElementRendererLazy paymentType cardProps expiryProps cvcProps /> </ReusableReactSuspense> | CardNumberElement => <InputField isValid=isCardValid setIsValid=setIsCardValid value=cardNumber onChange=changeCardNumber onBlur=handleCardBlur onFocus=handleElementFocus type_="tel" maxLength=maxCardLength paymentType inputRef=cardRef placeholder="1234 1234 1234 1234" id="card-number" isFocus /> | CardExpiryElement => <InputField isValid=isExpiryValid setIsValid=setIsExpiryValid value=cardExpiry onChange=changeCardExpiry onBlur=handleExpiryBlur onFocus=handleElementFocus type_="tel" paymentType maxLength=7 inputRef=expiryRef placeholder=localeString.expiryPlaceholder id="card-expiry" isFocus /> | CardCVCElement => <InputField isValid=isCVCValid setIsValid=setIsCVCValid value=cvcNumber onChange=changeCVCNumber onBlur=handleCVCBlur onFocus=handleElementFocus paymentType type_="tel" className={`tracking-widest w-auto`} maxLength=4 inputRef=cvcRef placeholder="123" id="card-cvc" isFocus /> | PaymentMethodsManagement => <ReusableReactSuspense loaderComponent={<RenderIf condition={showLoader}> <PaymentElementShimmer /> </RenderIf>} componentName="PaymentManagementLazy"> <PaymentManagementLazy /> </ReusableReactSuspense> | PaymentMethodCollectElement | NONE => React.null }} </div> </div> </div> }
1,035
10,313
hyperswitch-web
src/SingleLineCardPaymentLazy.res
.res
let make = React.lazy_(() => Js.import(SingleLineCardPayment.default))
17
10,314
hyperswitch-web
src/SingleLineCardPayment.resi
.resi
@react.component let default: ( ~paymentType: CardThemeType.mode, ~cardProps: CardUtils.cardProps, ~expiryProps: CardUtils.expiryProps, ~cvcProps: CardUtils.cvcProps, ~zipProps: CardUtils.zipProps, ~handleElementFocus: bool => unit, ~isFocus: bool, ) => React.element
83
10,315
hyperswitch-web
src/ThreeDSMethod.res
.res
open Utils @react.component let make = () => { let logger = HyperLogger.make(~source=Elements(Payment)) let (stateMetadata, setStateMetadata) = React.useState(_ => Dict.make()->JSON.Encode.object) let divRef = React.useRef(Nullable.null) let observer = React.useRef(None) let handleIframeContentLoaded = () => { stateMetadata->Utils.getDictFromJson->Dict.set("3dsMethodComp", "Y"->JSON.Encode.string) let metadataDict = stateMetadata->JSON.Decode.object->Option.getOr(Dict.make()) let iframeId = metadataDict->getString("iframeId", "") if iframeId->String.length > 0 { LoggerUtils.handleLogging( ~optLogger=Some(logger), ~eventName=THREE_DS_METHOD_RESULT, ~value="Y", ~paymentMethod="CARD", ) messageParentWindow([ ("fullscreen", true->JSON.Encode.bool), ("param", `3dsAuth`->JSON.Encode.string), ("iframeId", iframeId->JSON.Encode.string), ("metadata", stateMetadata), ]) } } observer.current = Some( ResizeObserver.newResizerObserver(_ => { handleIframeContentLoaded() switch observer.current { | Some(currentObserver: ResizeObserver.observer) => currentObserver.disconnect() | _ => () } () }), ) switch (divRef.current->Nullable.toOption, observer.current) { | (Some(ref), Some(observer)) => observer.observe(ref) | _ => () } let handleOnLoad = _ => { setTimeout(() => { logger.setLogError( ~value="ThreeDS Method Opened for more than 20 seconds", ~eventName=THREE_DS_METHOD_RESULT, ~logType=DEBUG, ) }, 20000)->ignore } React.useEffect0(() => { messageParentWindow([("iframeMountedCallback", true->JSON.Encode.bool)]) let handle = (ev: Window.event) => { let json = ev.data->safeParse let dict = json->Utils.getDictFromJson if dict->Dict.get("fullScreenIframeMounted")->Option.isSome { let metadata = dict->getJsonObjectFromDict("metadata") setStateMetadata(_ => metadata) let metaDataDict = metadata->JSON.Decode.object->Option.getOr(Dict.make()) let threeDsDataDict = metaDataDict ->Dict.get("threeDSData") ->Option.flatMap(JSON.Decode.object) ->Option.getOr(Dict.make()) let threeDsUrl = threeDsDataDict ->Dict.get("three_ds_method_details") ->Option.flatMap(JSON.Decode.object) ->Option.flatMap(x => x->Dict.get("three_ds_method_url")) ->Option.flatMap(JSON.Decode.string) ->Option.getOr("") let threeDsMethodData = threeDsDataDict ->Dict.get("three_ds_method_details") ->Option.flatMap(JSON.Decode.object) ->Option.flatMap(x => x->Dict.get("three_ds_method_data")) ->Option.getOr(Dict.make()->JSON.Encode.object) let paymentIntentId = metaDataDict->Utils.getString("paymentIntentId", "") let publishableKey = metaDataDict->Utils.getString("publishableKey", "") logger.setClientSecret(paymentIntentId) logger.setMerchantId(publishableKey) let iframeId = metaDataDict->getString("iframeId", "") let handleFailureScenarios = value => { LoggerUtils.handleLogging( ~optLogger=Some(logger), ~eventName=THREE_DS_METHOD_RESULT, ~value, ~paymentMethod="CARD", ~logType=ERROR, ) metadata->Utils.getDictFromJson->Dict.set("3dsMethodComp", "N"->JSON.Encode.string) messageParentWindow([ ("fullscreen", true->JSON.Encode.bool), ("param", `3dsAuth`->JSON.Encode.string), ("iframeId", iframeId->JSON.Encode.string), ("metadata", stateMetadata), ]) } let ele = Window.querySelector("#threeDsInvisibleDiv") switch ele->Nullable.toOption { | Some(elem) => { let form = elem->makeForm(threeDsUrl, "threeDsHiddenPostMethod") let input = Types.createElement("input") input.name = encodeURIComponent("threeDSMethodData") let threeDsMethodStr = threeDsMethodData->JSON.Decode.string->Option.getOr("") input.value = encodeURIComponent(threeDsMethodStr) form.target = "threeDsInvisibleIframe" form.appendChild(input) try { form.submit() } catch { | err => { let exceptionMessage = err->Utils.formatException->JSON.stringify handleFailureScenarios(exceptionMessage) } } } | None => handleFailureScenarios("Unable to Locate threeDsInvisibleDiv") } } } Window.addEventListener("message", handle) Some(() => {Window.removeEventListener("message", handle)}) }) <> <div id="threeDsInvisibleDiv" className="hidden" /> <iframe id="threeDsInvisibleIframe" name="threeDsInvisibleIframe" title="3D Secure Invisible Frame" className="h-96 invisible" ref={divRef->ReactDOM.Ref.domRef} style={outline: "none"} onLoad={handleOnLoad} /> </> }
1,168
10,316
hyperswitch-web
src/CollectWidget.res
.res
open CardUtils open PaymentMethodCollectTypes open PaymentMethodCollectUtils open RecoilAtoms @react.component let make = ( ~availablePaymentMethods, ~availablePaymentMethodTypes, ~primaryTheme, ~handleSubmit, ~formLayout: formLayout, ) => { // Recoil states let {config, constantString, localeString} = Recoil.useRecoilValueFromAtom(configAtom) let {enabledPaymentMethodsWithDynamicFields} = Recoil.useRecoilValueFromAtom( paymentMethodCollectOptionAtom, ) let (_, setPayoutDynamicFields) = Recoil.useRecoilState(payoutDynamicFieldsAtom) let (formData, setFormData) = Recoil.useRecoilState(formDataAtom) let (activePmt, _) = Recoil.useRecoilState(paymentMethodTypeAtom) let (validityDict, setValidityDict) = Recoil.useRecoilState(validityDictAtom) // Component states let (currentView, setCurrentView) = React.useState(_ => formLayout->defaultView) // Hook for updating current view based on formLayout React.useEffect(() => { setCurrentView(_ => formLayout->defaultView) None }, [formLayout]) // Hook for fetching dynamic fields, and default values and their validity for payment method type update React.useEffect(() => { getPayoutDynamicFields(enabledPaymentMethodsWithDynamicFields, activePmt) ->Option.flatMap(payoutDynamicFields => { setPayoutDynamicFields(_ => payoutDynamicFields) getDefaultsAndValidity(payoutDynamicFields) }) ->Option.map(((values, validity)) => { setFormData(_ => values) setValidityDict(_ => validity) }) ->ignore None }, [activePmt]) // Custom state update fns let setFormData = (key, value) => { setFormData(prevDict => { let copy = prevDict->Dict.copy copy->Dict.set(key, value) copy }) } let setValidityDictVal = (key, value) => { setValidityDict(prevDict => { let copy = prevDict->Dict.copy copy->Dict.set(key, value) copy }) } // Some React references for input fields let inputRef = React.useRef(Nullable.null) let cardNumberRef = React.useRef(Nullable.null) let cardExpRef = React.useRef(Nullable.null) let cardHolderRef = React.useRef(Nullable.null) let routingNumberRef = React.useRef(Nullable.null) let achAccNumberRef = React.useRef(Nullable.null) let bacsSortCodeRef = React.useRef(Nullable.null) let bacsAccNumberRef = React.useRef(Nullable.null) let ibanRef = React.useRef(Nullable.null) let sepaBicRef = React.useRef(Nullable.null) let bankNameRef = React.useRef(Nullable.null) let bankCityRef = React.useRef(Nullable.null) let countryCodeRef = React.useRef(Nullable.null) // UI renderers let validateAndSetPaymentMethodDataValue = (key: dynamicFieldType, event) => { let value = ReactEvent.Form.target(event)["value"] let inputType = ReactEvent.Form.target(event)["type"] let (isValid, updatedValue) = switch (key, inputType, value) { // Empty string is valid (no error) | (_, _, "") => (true, "") | (PayoutMethodData(CardExpDate(_)), "number" | "tel", _) => { let formattedExpiry = formatCardExpiryNumber(value) if isExipryValid(formattedExpiry) { handleInputFocus(~currentRef=cardExpRef, ~destinationRef=cardHolderRef) } (true, formattedExpiry) } | (PayoutMethodData(CardNumber), "number" | "tel", _) => { let cardType = getCardType( formData ->Dict.get(PayoutMethodData(CardBrand)->getPaymentMethodDataFieldKey) ->Option.getOr(""), ) let formattedCardNumber = formatCardNumber(value, cardType) if cardValid(clearSpaces(formattedCardNumber), getCardStringFromType(cardType)) { handleInputFocus(~currentRef=cardNumberRef, ~destinationRef=cardExpRef) } (true, formattedCardNumber) } | (PayoutMethodData(SepaBic) | PayoutMethodData(SepaIban), "text", _) => ( true, String.toUpperCase(value), ) // Default number validation | (_, "number" | "tel", _) => try { let bigIntValue = Js.BigInt.fromStringExn(value) (true, Js.BigInt.toString(bigIntValue)) } catch { | _ => (false, value) } // Default validation | (_, _, _) => getPaymentMethodDataFieldCharacterPattern(key) // valid; in case there is no pattern setup ->Option.mapOr((true, value), regex => regex->RegExp.test(value) ? (true, value) : (false, value) ) } if isValid { switch key { | PayoutMethodData(CardNumber) => setFormData( PayoutMethodData(CardBrand)->getPaymentMethodDataFieldKey, getCardBrand(updatedValue), ) | _ => () } setFormData(key->getPaymentMethodDataFieldKey, updatedValue) } } let renderDropdownTemplate = (field: dynamicFieldType) => { switch field { | BillingAddress(AddressCountry(countries)) => { let key = field->getPaymentMethodDataFieldKey let value = formData->Dict.get(key)->Option.getOr("") if countries->Array.length > 0 { <div key> <DropdownField appearance=config.appearance fieldName={field->getPaymentMethodDataFieldLabel(localeString)} value setValue={getVal => { let updatedValue = getVal() let isValid = calculateValidity(field, updatedValue, ~default=Some(false)) setValidityDictVal(key, isValid) if isValid->Option.getOr(false) { setFormData(key, updatedValue) } }} options={countries->DropdownField.updateArrayOfStringToOptionsTypeArray} disabled=false /> </div> } else { React.null } } | _ => React.null } } let renderInputTemplate = (field: dynamicFieldType) => { let labelClasses = "text-sm mt-2.5 text-jp-gray-800" let inputClasses = "min-w-full border mt-1.5 px-2.5 py-2 rounded-md border-jp-gray-200" let inputRef = switch field { | PayoutMethodData(CardNumber) => cardNumberRef | PayoutMethodData(CardExpDate(_)) => cardExpRef | PayoutMethodData(CardHolderName) => cardHolderRef | PayoutMethodData(ACHRoutingNumber) => routingNumberRef | PayoutMethodData(ACHAccountNumber) => achAccNumberRef | PayoutMethodData(BacsSortCode) => bacsSortCodeRef | PayoutMethodData(BacsAccountNumber) => bacsAccNumberRef | PayoutMethodData(SepaIban) => ibanRef | PayoutMethodData(SepaBic) => sepaBicRef // Union | PayoutMethodData(BacsBankName) | PayoutMethodData(ACHBankName) | PayoutMethodData(SepaBankName) => bankNameRef | PayoutMethodData(BacsBankCity) | PayoutMethodData(ACHBankCity) | PayoutMethodData(SepaBankCity) => bankCityRef | PayoutMethodData(SepaCountryCode) => countryCodeRef | _ => inputRef } let pattern = field ->getPaymentMethodDataFieldCharacterPattern ->Option.getOr(%re("/.*/")) ->Js.Re.source let key = field->getPaymentMethodDataFieldKey let value = formData->Dict.get(key)->Option.getOr("") let isValid = validityDict->Dict.get(key)->Option.flatMap(key => key) let (errorString, errorStringClasses) = switch isValid { | Some(false) => ( field->getPaymentMethodDataErrorString(value, localeString), "text-xs text-red-950", ) | _ => ("", "") } <InputField id=key className=inputClasses labelClassName=labelClasses paymentType={PaymentMethodCollectElement} inputRef isFocus={true} isValid={None} errorString errorStringClasses fieldName={field->getPaymentMethodDataFieldLabel(localeString)} placeholder={field->getPaymentMethodDataFieldPlaceholder(localeString, constantString)} maxLength={field->getPaymentMethodDataFieldMaxLength} value onChange={event => field->validateAndSetPaymentMethodDataValue(event)} setIsValid={updatedValidityFn => key->setValidityDictVal(updatedValidityFn())} onBlur={ev => { let value = ReactEvent.Focus.target(ev)["value"] let isValid = calculateValidity(field, value, ~default=None) setValidityDictVal(key, isValid) }} type_={field->getPaymentMethodDataFieldInputType} pattern /> } let renderAddressForm = (addressFields: array<dynamicFieldForAddress>) => addressFields ->Array.mapWithIndex((field, index) => <React.Fragment key={index->Int.toString}> {switch (field.fieldType, field.value) { | (Email, None) => BillingAddress(Email)->renderInputTemplate | (FullName(FirstName), None) => BillingAddress(FullName(FirstName))->renderInputTemplate // first_name and last_name are stored in fullName | (FullName(LastName), _) => React.null | (CountryCode, None) => BillingAddress(CountryCode)->renderInputTemplate | (PhoneNumber, None) => BillingAddress(PhoneNumber)->renderInputTemplate | (PhoneCountryCode, None) => BillingAddress(PhoneCountryCode)->renderInputTemplate | (AddressLine1, None) => BillingAddress(AddressLine1)->renderInputTemplate | (AddressLine2, None) => BillingAddress(AddressLine2)->renderInputTemplate | (AddressCity, None) => BillingAddress(AddressCity)->renderInputTemplate | (AddressState, None) => BillingAddress(AddressState)->renderInputTemplate | (AddressPincode, None) => BillingAddress(AddressPincode)->renderInputTemplate | (AddressCountry(countries), None) => renderDropdownTemplate(BillingAddress(AddressCountry(countries))) | _ => React.null }} </React.Fragment> ) ->Array.filter(ele => ele !== React.null) let renderPayoutMethodForm = (payoutMethodFields: array<dynamicFieldForPaymentMethodData>) => payoutMethodFields ->Array.mapWithIndex((payoutMethodField, index) => <React.Fragment key={index->Int.toString}> {switch (payoutMethodField.fieldType, payoutMethodField.value) { // Card | (CardNumber, _) => PayoutMethodData(CardNumber)->renderInputTemplate | (CardExpDate(CardExpMonth), _) => PayoutMethodData(CardExpDate(CardExpMonth))->renderInputTemplate // expiry_month and expiry_year are store in cardExp | (CardExpDate(CardExpYear), _) => React.null | (CardHolderName, None) => PayoutMethodData(CardHolderName)->renderInputTemplate // ACH | (ACHRoutingNumber, _) => PayoutMethodData(ACHRoutingNumber)->renderInputTemplate | (ACHAccountNumber, _) => PayoutMethodData(ACHAccountNumber)->renderInputTemplate // Bacs | (BacsSortCode, _) => PayoutMethodData(BacsSortCode)->renderInputTemplate | (BacsAccountNumber, _) => PayoutMethodData(BacsAccountNumber)->renderInputTemplate // Sepa | (SepaIban, _) => PayoutMethodData(SepaIban)->renderInputTemplate | (SepaBic, _) => PayoutMethodData(SepaBic)->renderInputTemplate // Paypal | (PaypalMail, _) => PayoutMethodData(PaypalMail)->renderInputTemplate | (PaypalMobNumber, _) => PayoutMethodData(PaypalMobNumber)->renderInputTemplate // Venmo | (VenmoMobNumber, _) => PayoutMethodData(VenmoMobNumber)->renderInputTemplate // Pix | (PixKey, _) => PayoutMethodData(PixKey)->renderInputTemplate // TODO: Add these later | (CardBrand, _) | (ACHBankName, _) | (ACHBankCity, _) | (BacsBankName, _) | (BacsBankCity, _) | (SepaBankName, _) | (SepaBankCity, _) | (SepaCountryCode, _) | (PixBankAccountNumber, _) | (PixBankName, _) | (CardHolderName, Some(_)) => React.null }} </React.Fragment> ) ->Array.filter(ele => ele !== React.null) <div className="flex flex-col h-min p-6 items-center lg:rounded lg:shadow-lg lg:p-10 lg:min-w-[400px]"> {switch currentView { // Render journey UI | Journey(journeyView) => <FormViewJourney availablePaymentMethods availablePaymentMethodTypes primaryTheme handleSubmit enabledPaymentMethodsWithDynamicFields journeyView renderAddressForm renderPayoutMethodForm /> // Render tabs UI | Tabs(tabsView) => <FormViewTabs availablePaymentMethodTypes primaryTheme handleSubmit tabsView renderAddressForm renderPayoutMethodForm /> }} </div> } let default = make
3,147
10,317
hyperswitch-web
src/PaymentManagement.res
.res
open PaymentType open RecoilAtoms @react.component let make = () => { let {savedPaymentMethods, displaySavedPaymentMethods} = Recoil.useRecoilValueFromAtom(optionAtom) let (savedMethods, setSavedMethods) = React.useState(_ => []) let (isLoading, setIsLoading) = React.useState(_ => false) React.useEffect(() => { switch savedPaymentMethods { | LoadedSavedCards(savedPaymentMethods, _) => { let defaultPaymentMethod = savedPaymentMethods->Array.find(savedCard => savedCard.defaultPaymentMethodSet) let savedCardsWithoutDefaultPaymentMethod = savedPaymentMethods->Array.filter(savedCard => { !savedCard.defaultPaymentMethodSet }) let finalSavedPaymentMethods = switch defaultPaymentMethod { | Some(defaultPaymentMethod) => [defaultPaymentMethod]->Array.concat(savedCardsWithoutDefaultPaymentMethod) | None => savedCardsWithoutDefaultPaymentMethod } setSavedMethods(_ => finalSavedPaymentMethods) setIsLoading(_ => false) } | LoadingSavedCards => setIsLoading(_ => true) | NoResult(_) => setIsLoading(_ => false) } None }, (savedPaymentMethods, displaySavedPaymentMethods)) <> <RenderIf condition={!isLoading}> <SavedPaymentManagement savedMethods setSavedMethods /> </RenderIf> <RenderIf condition={isLoading}> <PaymentElementShimmer.SavedPaymentShimmer /> </RenderIf> <PoweredBy /> </> } let default = make
325
10,318
hyperswitch-web
src/CharcoalTheme.res
.res
open CardThemeType let charcoal = { fontFamily: "Quicksand", fontSizeBase: "1rem", colorPrimary: "#000000", colorBackground: "#f0f3f5", colorText: "#000000", colorDanger: "#df1b41", colorDangerText: "#df1b41", borderRadius: "10px", fontVariantLigatures: "", fontVariationSettings: "", spacingUnit: "11px", fontWeightLight: "400", fontWeightNormal: "500", fontWeightMedium: "600", fontWeightBold: "700", fontLineHeight: "", fontSize2Xl: "24px", fontSizeXl: "16px", fontSizeLg: "14px", fontSizeSm: "12px", fontSizeXs: "10px", fontSize2Xs: "8px", fontSize3Xs: "6px", colorSuccess: "", colorWarning: "", colorPrimaryText: "#707070", colorBackgroundText: "#ffffff", colorSuccessText: "", colorWarningText: "", colorTextSecondary: "#6d6e78", colorTextPlaceholder: "", spacingTab: "12px", borderColor: "#000000", spacingAccordionItem: "10px", colorIconCardCvc: "", colorIconCardCvcError: "#fd1717", colorIconCardError: "#fd1717", spacingGridColumn: "20px", spacingGridRow: "20px", buttonBackgroundColor: "#000000", buttonHeight: "48px", buttonWidth: "100%", buttonBorderRadius: "6px", buttonBorderColor: "#000000", buttonTextColor: "#ffffff", buttonTextFontSize: "16px", buttonTextFontWeight: "500", buttonBorderWidth: "0px", } let charcoalRules = theme => { ".Tab": { "border": `1px solid ${theme.colorBackground}`, "alignItems": "start", "borderRadius": theme.borderRadius, "backgroundColor": theme.colorBackground, "color": theme.colorTextSecondary, }, ".Tab--selected": { "border": `1px solid ${theme.colorPrimary}`, "color": theme.colorBackgroundText, "backgroundColor": theme.colorPrimary, }, ".Tab:hover": { "border": `1px solid ${theme.colorBackground}`, "color": theme.colorText, }, ".Tab--selected:hover": { "border": `1px solid ${theme.colorPrimary}`, "color": theme.colorBackgroundText, "backgroundColor": theme.colorPrimary, }, ".TabMore:focus": { "border": `1px solid ${theme.colorPrimary}`, "boxShadow": `${theme.colorPrimary}4c 0px 0px 0px 3px`, }, ".TabMore": { "border": `1px solid ${theme.colorBackground}`, }, ".Label": { "color": theme.colorText, "textAlign": "left", }, ".Input": { "border": `1px solid ${theme.colorBackground}`, "fontWeight": theme.fontWeightLight, "color": theme.colorText, "borderRadius": theme.borderRadius, }, ".Input-Compressed": { "border": `1px solid ${theme.colorBackground}`, "fontWeight": theme.fontWeightLight, "color": theme.colorText, }, ".Input:-webkit-autofill": { "transition": "background-color 5000s ease-in-out 0s", "-webkitTextFillColor": `${theme.colorText} !important`, }, ".Input:focus": { "border": `1px solid ${theme.colorPrimary}`, "boxShadow": `${theme.colorPrimary}4c 0px 0px 0px 3px`, }, ".Input-Compressed:focus": { "border": `2px solid ${theme.colorPrimary}`, "boxShadow": `${theme.colorPrimary}4c 0px 0px 0px 2px`, "position": "relative", "zIndex": "2", }, ".Input--invalid": { "color": theme.colorDanger, "border": `2px solid ${theme.colorDanger}`, "transition": "border 0.15s ease, box-shadow 0.15s ease, color 0.15s ease", }, ".Input::placeholder": { "fontWeight": theme.fontWeightLight, "color": theme.colorTextPlaceholder, }, ".InputLogo": { "color": "#979797", }, ".TabLabel": { "transition": "color .1s ease", "textAlign": "start", }, ".TabIcon": { "transition": "color .1s ease", }, ".Block": { "backgroundColor": theme.colorBackground, "borderRadius": theme.borderRadius, }, ".BlockDivider": { "border": `1px solid ${theme.borderColor}`, }, ".AccordionItem": { "border": "1px solid #ffffff !important", "backgroundColor": theme.colorBackground, "color": theme.colorTextSecondary, "transition": "height 1s ease", "padding": "20px", }, ".AccordionMore": { "backgroundColor": theme.colorBackground, "color": theme.colorTextSecondary, }, ".AccordionMore:hover": { "color": theme.colorText, }, ".AccordionItem:hover": { "color": theme.colorText, }, ".AccordionItem--selected": { "color": theme.colorText, "transition": "height 1s ease", }, ".AccordionItemLabel": { "transition": "color .1s ease", }, ".AccordionItemLabel--selected": { "color": theme.colorText, }, ".AccordionItemIcon--selected": { "color": theme.colorText, }, ".PickerItem": { "backgroundColor": theme.colorBackground, "color": theme.colorTextSecondary, "transition": "height 1s ease", "padding": theme.spacingUnit, "borderRadius": theme.borderRadius, "borderColor": "#00000040 !important", }, ".PickerItem:hover": { "color": theme.colorText, }, ".PickerItem--selected": { "border": `1px solid ${theme.colorPrimary}`, "color": theme.colorBackgroundText, "backgroundColor": theme.colorPrimary, }, ".PickerItem--selected:hover": { "border": `1px solid ${theme.colorPrimary}`, "color": theme.colorBackgroundText, "backgroundColor": theme.colorPrimary, }, ".Checkbox": { "fontWeight": theme.fontWeightLight, "fontSize": theme.fontSizeLg, }, ".PaymentMethodsHeaderLabel": { "color": theme.colorText, "fontSize": theme.fontSize2Xl, "fontWeight": theme.fontWeightMedium, "marginBottom": "1.5rem", }, }->Identity.anyTypeToJson let default = charcoal let defaultRules = charcoalRules
1,628
10,319
hyperswitch-web
src/CardTheme.res
.res
open CardThemeType open Utils open ErrorUtils let getTheme = (val, logger) => { switch val->String.toLowerCase { | "default" => Default | "brutal" => Brutal | "midnight" => Midnight | "charcoal" => Charcoal | "soft" => Soft | "bubblegum" => Bubblegum | "none" => NONE | str => { str->unknownPropValueWarning( ["default", "midnight", "brutal", "charcoal", "soft", "bubblegum", "none"], "appearance.theme", ~logger, ) Default } } } let getInnerLayout = str => { switch str { | "compressed" => Compressed | _ => Spaced } } let getShowLoader = (str, logger) => { switch str { | "auto" => Auto | "always" => Always | "never" => Never | str => { str->unknownPropValueWarning(["auto", "always", "never"], "loader", ~logger) Auto } } } let defaultAppearance = { theme: Default, variables: DefaultTheme.default, componentType: "payment", labels: Above, rules: Dict.make()->JSON.Encode.object, innerLayout: Spaced, } let defaultFonts = { cssSrc: "", family: "", src: "", weight: "", } let defaultConfig = { appearance: defaultAppearance, locale: "auto", fonts: [], clientSecret: "", ephemeralKey: "", loader: Auto, } type recoilConfig = { config: configClass, themeObj: themeClass, localeString: LocaleStringTypes.localeStrings, constantString: LocaleStringTypes.constantStrings, showLoader: bool, } let getLocaleObject = async string => { try { let locale = if string == "auto" { Window.Navigator.language } else { string } let promiseLocale = switch locale->LocaleStringHelper.mapLocalStringToTypeLocale { | EN => Js.import(EnglishLocale.localeStrings) | HE => Js.import(HebrewLocale.localeStrings) | FR => Js.import(FrenchLocale.localeStrings) | EN_GB => Js.import(EnglishGBLocale.localeStrings) | AR => Js.import(ArabicLocale.localeStrings) | JA => Js.import(JapaneseLocale.localeStrings) | DE => Js.import(DeutschLocale.localeStrings) | FR_BE => Js.import(FrenchBelgiumLocale.localeStrings) | ES => Js.import(SpanishLocale.localeStrings) | CA => Js.import(CatalanLocale.localeStrings) | ZH => Js.import(ChineseLocale.localeStrings) | PT => Js.import(PortugueseLocale.localeStrings) | IT => Js.import(ItalianLocale.localeStrings) | PL => Js.import(PolishLocale.localeStrings) | NL => Js.import(DutchLocale.localeStrings) | SV => Js.import(SwedishLocale.localeStrings) | RU => Js.import(RussianLocale.localeStrings) | ZH_HANT => Js.import(TraditionalChineseLocale.localeStrings) } let awaitedLocaleValue = await promiseLocale awaitedLocaleValue } catch { | _ => EnglishLocale.localeStrings } } let getConstantStringsObject = async () => { try { let promiseConstantStrings = Js.import(ConstantStrings.constantStrings) await promiseConstantStrings } catch { | _ => ConstantStrings.constantStrings } } let defaultRecoilConfig: recoilConfig = { config: defaultConfig, themeObj: defaultConfig.appearance.variables, localeString: EnglishLocale.localeStrings, constantString: ConstantStrings.constantStrings, showLoader: false, } let getVariables = (str, dict, default, logger) => { dict ->Dict.get(str) ->Option.flatMap(JSON.Decode.object) ->Option.map(json => { let validKeys = [ "fontFamily", "fontSizeBase", "colorPrimary", "colorBackground", "colorText", "colorDanger", "colorDangerText", "borderRadius", "fontVariantLigatures", "fontVariationSettings", "spacingUnit", "fontWeightLight", "fontWeightNormal", "fontWeightMedium", "fontWeightBold", "fontLineHeight", "fontSizeXl", "fontSizeLg", "fontSizeSm", "fontSizeXs", "fontSize2Xs", "fontSize3Xs", "colorSuccess", "colorWarning", "colorPrimaryText", "colorBackgroundText", "colorSuccessText", "colorWarningText", "colorTextSecondary", "colorTextPlaceholder", "spacingTab", "borderColor", "spacingGridColumn", "spacingGridRow", "spacingAccordionItem", "buttonBackgroundColor", "buttonHeight", "buttonWidth", "buttonBorderRadius", "buttonBorderColor", "buttonTextColor", "buttonTextFontSize", "buttonTextFontWeight", "buttonBorderWidth", ] unknownKeysWarning(validKeys, json, "appearance.variables", ~logger) { fontFamily: getWarningString(json, "fontFamily", default.fontFamily, ~logger), fontSizeBase: getWarningString(json, "fontSizeBase", default.fontSizeBase, ~logger), colorPrimary: getWarningString(json, "colorPrimary", default.colorPrimary, ~logger), colorBackground: getWarningString(json, "colorBackground", default.colorBackground, ~logger), colorText: getWarningString(json, "colorText", default.colorText, ~logger), colorDanger: getWarningString(json, "colorDanger", default.colorDanger, ~logger), colorDangerText: getWarningString(json, "colorDangerText", default.colorDangerText, ~logger), borderRadius: getWarningString(json, "borderRadius", default.borderRadius, ~logger), fontVariantLigatures: getWarningString( json, "fontVariantLigatures", default.fontVariantLigatures, ~logger, ), fontVariationSettings: getWarningString( json, "fontVariationSettings", default.fontVariationSettings, ~logger, ), spacingUnit: getWarningString(json, "spacingUnit", default.spacingUnit, ~logger), fontWeightLight: getWarningString(json, "fontWeightLight", default.fontWeightLight, ~logger), fontWeightNormal: getWarningString( json, "fontWeightNormal", default.fontWeightNormal, ~logger, ), fontWeightMedium: getWarningString( json, "fontWeightMedium", default.fontWeightMedium, ~logger, ), fontWeightBold: getWarningString(json, "fontWeightBold", default.fontWeightBold, ~logger), fontLineHeight: getWarningString(json, "fontLineHeight", default.fontLineHeight, ~logger), fontSize2Xl: getWarningString(json, "fontSize2Xl", default.fontSize2Xl, ~logger), fontSizeXl: getWarningString(json, "fontSizeXl", default.fontSizeXl, ~logger), fontSizeLg: getWarningString(json, "fontSizeLg", default.fontSizeLg, ~logger), fontSizeSm: getWarningString(json, "fontSizeSm", default.fontSizeSm, ~logger), fontSizeXs: getWarningString(json, "fontSizeXs", default.fontSizeXs, ~logger), fontSize2Xs: getWarningString(json, "fontSize2Xs", default.fontSize2Xs, ~logger), fontSize3Xs: getWarningString(json, "fontSize3Xs", default.fontSize3Xs, ~logger), colorSuccess: getWarningString(json, "colorSuccess", default.colorSuccess, ~logger), colorWarning: getWarningString(json, "colorWarning", default.colorWarning, ~logger), colorPrimaryText: getWarningString( json, "colorPrimaryText", default.colorPrimaryText, ~logger, ), colorBackgroundText: getWarningString( json, "colorBackgroundText", default.colorBackgroundText, ~logger, ), colorSuccessText: getWarningString( json, "colorSuccessText", default.colorSuccessText, ~logger, ), colorWarningText: getWarningString( json, "colorWarningText", default.colorWarningText, ~logger, ), colorTextSecondary: getWarningString( json, "colorTextSecondary", default.colorTextSecondary, ~logger, ), colorTextPlaceholder: getWarningString( json, "colorTextPlaceholder", default.colorTextPlaceholder, ~logger, ), spacingTab: getWarningString(json, "spacingTab", default.spacingTab, ~logger), borderColor: getWarningString(json, "borderColor", default.borderColor, ~logger), colorIconCardCvc: getWarningString( json, "colorIconCardCvc", default.colorIconCardCvc, ~logger, ), colorIconCardCvcError: getWarningString( json, "colorIconCardCvcError", default.colorIconCardCvcError, ~logger, ), colorIconCardError: getWarningString( json, "colorIconCardError", default.colorIconCardError, ~logger, ), spacingAccordionItem: getWarningString( json, "spacingAccordionItem", default.spacingAccordionItem, ~logger, ), spacingGridColumn: getWarningString( json, "spacingGridColumn", default.spacingGridColumn, ~logger, ), spacingGridRow: getWarningString(json, "spacingGridRow", default.spacingGridRow, ~logger), buttonBackgroundColor: getWarningString( json, "buttonBackgroundColor", default.buttonBackgroundColor, ~logger, ), buttonHeight: getWarningString(json, "buttonHeight", default.buttonHeight, ~logger), buttonWidth: getWarningString(json, "buttonWidth", default.buttonWidth, ~logger), buttonBorderRadius: getWarningString( json, "buttonBorderRadius", default.buttonBorderRadius, ~logger, ), buttonBorderColor: getWarningString( json, "buttonBorderColor", default.buttonBorderColor, ~logger, ), buttonTextColor: getWarningString(json, "buttonTextColor", default.buttonTextColor, ~logger), buttonTextFontSize: getWarningString( json, "buttonTextFontSize", default.buttonTextFontSize, ~logger, ), buttonTextFontWeight: getWarningString( json, "buttonTextFontWeight", default.buttonTextFontWeight, ~logger, ), buttonBorderWidth: getWarningString( json, "buttonBorderWidth", default.buttonBorderWidth, ~logger, ), } }) ->Option.getOr(default) } let getAppearance = ( str, dict, default: CardThemeType.themeClass, defaultRules: CardThemeType.themeClass => JSON.t, logger, ) => { dict ->Dict.get(str) ->Option.flatMap(JSON.Decode.object) ->Option.map(json => { unknownKeysWarning( ["theme", "variables", "rules", "labels", "innerLayout"], json, "appearance", ~logger, ) let rulesJson = defaultRules(getVariables("variables", json, default, logger)) { theme: getWarningString(json, "theme", "default", ~logger)->getTheme(logger), componentType: getWarningString(json, "componentType", "", ~logger), variables: getVariables("variables", json, default, logger), rules: mergeJsons(rulesJson, getJsonObjectFromDict(json, "rules")), innerLayout: getWarningString(json, "innerLayout", "spaced", ~logger)->getInnerLayout, labels: switch getWarningString(json, "labels", "above", ~logger)->String.toLowerCase { | "above" => Above | "floating" => Floating | "none" => Never | str => { str->unknownPropValueWarning(["above", "floating", "never"], "appearance.labels", ~logger) Above } }, } }) ->Option.getOr(defaultAppearance) } let getFonts = (str, dict, logger) => { dict ->Dict.get(str) ->Option.flatMap(JSON.Decode.array) ->Option.getOr([]) ->Belt.Array.keepMap(JSON.Decode.object) ->Array.map(json => { unknownKeysWarning(["cssSrc", "family", "src", "weight"], json, "fonts", ~logger) { cssSrc: getWarningString(json, "cssSrc", "", ~logger), family: getWarningString(json, "family", "", ~logger), src: getWarningString(json, "src", "", ~logger), weight: getWarningString(json, "weight", "", ~logger), } }) } let itemToObjMapper = ( dict, default: CardThemeType.themeClass, defaultRules: CardThemeType.themeClass => JSON.t, logger, ) => { unknownKeysWarning( ["appearance", "fonts", "locale", "clientSecret", "loader", "ephemeralKey"], dict, "elements", ~logger, ) { appearance: getAppearance("appearance", dict, default, defaultRules, logger), locale: getWarningString(dict, "locale", "auto", ~logger), fonts: getFonts("fonts", dict, logger), clientSecret: getWarningString(dict, "clientSecret", "", ~logger), ephemeralKey: getWarningString(dict, "ephemeralKey", "", ~logger), loader: getWarningString(dict, "loader", "auto", ~logger)->getShowLoader(logger), } }
3,022
10,320
hyperswitch-web
src/BrutalTheme.res
.res
open CardThemeType let brutal = { fontFamily: "Quicksand", fontSizeBase: "1rem", colorPrimary: "#f5fb1f", colorBackground: "#ffffff", colorText: "#000000", colorDanger: "#ff1a1a", colorDangerText: "#ff1a1a", borderRadius: "6px", fontVariantLigatures: "", fontVariationSettings: "", spacingUnit: "11px", fontWeightLight: "500", fontWeightNormal: "600", fontWeightMedium: "700", fontWeightBold: "800", fontLineHeight: "", fontSize2Xl: "24px", fontSizeXl: "16px", fontSizeLg: "14px", fontSizeSm: "12px", fontSizeXs: "10px", fontSize2Xs: "8px", fontSize3Xs: "6px", colorSuccess: "", colorWarning: "", colorPrimaryText: "#000000", colorBackgroundText: "#000000", colorSuccessText: "", colorWarningText: "", colorTextSecondary: "#e0e0e0", colorTextPlaceholder: "", spacingTab: "12px", borderColor: "#566186", spacingAccordionItem: "10px", colorIconCardCvc: "", colorIconCardCvcError: "#ff1a1a", colorIconCardError: "#ff1a1a", spacingGridColumn: "20px", spacingGridRow: "20px", buttonBackgroundColor: "#f5fb1f", buttonHeight: "48px", buttonWidth: "100%", buttonBorderRadius: "6px", buttonBorderColor: "#566186", buttonTextColor: "#000000", buttonTextFontSize: "16px", buttonTextFontWeight: "500", buttonBorderWidth: "0px", } let brutalRules = (theme: CardThemeType.themeClass) => { ".Tab": { "border": `0.17em solid #000000`, "borderRadius": theme.borderRadius, "backgroundColor": theme.colorBackground, "color": theme.colorBackgroundText, "boxShadow": "0.15em 0.15em", "alignItems": "start", "transition": "background-color 50ms linear", }, ".Tab:active": { "transform": "translate(0.05em, 0.05em)", "boxShadow": "0.02em 0.02em", }, ".Tab--selected": { "border": `0.17em solid #000000`, "color": theme.colorBackgroundText, "backgroundColor": theme.colorPrimary, }, ".Tab:hover": { "border": `0.17em solid #000000`, }, ".TabMore:active": { "transform": "translate(0.05em, 0.05em)", "boxShadow": "0.02em 0.02em", }, ".TabMore": { "border": `0.17em solid #000000`, "boxShadow": "0.15em 0.15em", }, ".Label": { "color": `${theme.colorBackgroundText} !important`, "fontWeight": "500 !important", "textAlign": "left", }, ".Input": { "border": `0.1em solid #000000`, "boxShadow": "0.12em 0.12em", "color": theme.colorText, "borderRadius": theme.borderRadius, }, ".Input-Compressed": { "border": `0.1em solid #000000`, "boxShadow": "0.12em 0.12em", "color": theme.colorText, }, ".Input:-webkit-autofill": { "transition": "background-color 5000s ease-in-out 0s", "-webkitTextFillColor": `${theme.colorText} !important`, }, ".Input:focus": { "transform": "translate(0.05em, 0.05em)", "boxShadow": "0.02em 0.02em", }, ".Input-Compressed:focus": { "transform": "translate(0.02em, 0.02em)", "boxShadow": "0.01em 0.01em", }, ".Input--invalid": { "border": `0.1em solid ${theme.colorDangerText}`, "color": theme.colorDanger, }, ".Input::placeholder": { "fontWeight": theme.fontWeightLight, "color": theme.colorTextPlaceholder, }, ".InputLogo": { "color": "#979797", }, ".TabLabel": { "transition": "color .1s ease", "textAlign": "start", }, ".TabIcon": { "transition": "color .1s ease", }, ".Block": { "backgroundColor": theme.colorBackground, "borderRadius": theme.borderRadius, "border": `0.17em solid #000000`, "boxShadow": "0.15em 0.15em", }, ".BlockDivider": { "border": `1px solid ${theme.borderColor}`, }, ".AccordionItem": { "borderWidth": "2px !important", "backgroundColor": theme.colorBackground, "color": theme.colorBackgroundText, "transition": "height 1s ease", "borderColor": `#000000 !important`, "padding": "20px", }, ".AccordionMore": { "backgroundColor": theme.colorBackground, "color": theme.colorBackgroundText, "border": `2px solid #000000`, }, ".AccordionMore:active": { "transform": "translate(0.05em, 0.05em)", "boxShadow": "0.02em 0.02em", }, ".AccordionItem--selected": { "color": theme.colorBackgroundText, "transition": "height 1s ease", }, ".AccordionItemLabel": { "transition": "color .1s ease", }, ".AccordionItemLabel--selected": { "color": theme.colorText, }, ".PickerItem": { "border": `0.17em solid #000000`, "boxShadow": "0.15em 0.15em", "backgroundColor": theme.colorBackground, "color": `${theme.colorText} !important`, "padding": theme.spacingUnit, "borderRadius": theme.borderRadius, }, ".PickerItem--selected": { "border": `0.17em solid #000000`, "boxShadow": "0.15em 0.15em", "color": `${theme.colorText} !important`, "backgroundColor": theme.colorPrimary, }, ".Checkbox": { "fontWeight": theme.fontWeightLight, "fontSize": theme.fontSizeLg, }, ".CheckboxInput": { "borderColor": "black !important", }, ".CheckboxInput--checked": { "borderColor": "black !important", "borderTopColor": "transparent !important", "borderLeftColor": "transparent !important", }, ".PaymentMethodsHeaderLabel": { "color": theme.colorText, "fontSize": theme.fontSize2Xl, "fontWeight": theme.fontWeightMedium, "marginBottom": "1.5rem", }, }->Identity.anyTypeToJson let default = brutal let defaultRules = brutalRules
1,814
10,321
hyperswitch-web
src/WalletElement.res
.res
@react.component let make = (~paymentType) => { let sessionsObj = Recoil.useRecoilValueFromAtom(RecoilAtoms.sessions) let methodslist = Recoil.useRecoilValueFromAtom(RecoilAtoms.paymentMethodList) let (sessions, setSessions) = React.useState(_ => Dict.make()->JSON.Encode.object) let (walletOptions, setWalletOptions) = React.useState(_ => []) let {publishableKey} = Recoil.useRecoilValueFromAtom(RecoilAtoms.keys) let setPaymentMethodListValue = Recoil.useSetRecoilState(PaymentUtils.paymentMethodListValue) let (walletList, _, _) = PaymentUtils.useGetPaymentMethodList( ~paymentOptions=[], ~paymentType, ~sessions, ) React.useEffect(() => { switch methodslist { | Loaded(paymentlist) => let plist = paymentlist->Utils.getDictFromJson->PaymentMethodsRecord.itemToObjMapper setWalletOptions(_ => walletList) setPaymentMethodListValue(_ => plist) | _ => () } None }, (methodslist, walletList)) React.useEffect(() => { switch sessionsObj { | Loaded(ssn) => setSessions(_ => ssn) | _ => () } None }, [sessionsObj]) <RenderIf condition={walletOptions->Array.length > 0}> <div className="flex flex-col place-items-center"> <ErrorBoundary key="payment_request_buttons_all" level={ErrorBoundary.RequestButton} componentName="WalletElement" publishableKey> <PaymentRequestButtonElement sessions walletOptions paymentType /> </ErrorBoundary> </div> </RenderIf> }
374
10,322
hyperswitch-web
src/PaymentManagementLazy.res
.res
let make = React.lazy_(() => Js.import(PaymentManagement.default))
15
10,323
hyperswitch-web
src/PaymentElementRenderer.res
.res
open RecoilAtoms @react.component let make = ( ~paymentType: CardThemeType.mode, ~cardProps: CardUtils.cardProps, ~expiryProps: CardUtils.expiryProps, ~cvcProps: CardUtils.cvcProps, ) => { let _cardsToRender = width => { (width - 40) / 110 } let {showLoader} = Recoil.useRecoilValueFromAtom(configAtom) let sessions = Recoil.useRecoilValueFromAtom(sessions) let paymentMethodList = Recoil.useRecoilValueFromAtom(paymentMethodList) switch (sessions, paymentMethodList) { | (_, Loading) => <RenderIf condition=showLoader> {paymentType->Utils.getIsWalletElementPaymentType ? <WalletShimmer /> : <PaymentElementShimmer />} </RenderIf> | _ => paymentType->Utils.getIsWalletElementPaymentType ? <WalletElement paymentType /> : <PaymentElement cardProps expiryProps cvcProps paymentType /> } } let default = make
241
10,324
hyperswitch-web
src/CardPattern.res
.res
type patterns = { issuer: string, pattern: Re.t, cvcLength: array<int>, length: array<int>, maxCVCLength: int, pincodeRequired: bool, } type card = {details: array<patterns>} let defaultCardPattern = { issuer: "", pattern: %re("/^[0-9]/"), cvcLength: [3, 4], maxCVCLength: 4, length: [13, 14, 15, 16, 17, 18, 19], pincodeRequired: false, } let cardPatterns = [ { issuer: "Maestro", pattern: %re( "/^(5018|5081|5044|504681|504993|5020|502260|5038|5893|603845|603123|6304|6759|676[1-3]|6220|504834|504817|504645|504775|600206|627741)/" ), cvcLength: [3, 4], length: [12, 13, 14, 15, 16, 17, 18, 19], maxCVCLength: 4, pincodeRequired: true, }, { issuer: "UnionPay", pattern: %re("/^(6[27]|81)/"), cvcLength: [3], length: [16, 17, 18, 19], maxCVCLength: 3, pincodeRequired: true, }, { issuer: "Interac", pattern: %re("/^(4506|4724|4761|0012)/"), cvcLength: [3], length: [16], maxCVCLength: 3, pincodeRequired: true, }, { issuer: "RuPay", pattern: %re( "/^(508227|508[5-9]|603741|60698[5-9]|60699|607[0-8]|6079[0-7]|60798[0-4]|60800[1-9]|6080[1-9]|608[1-4]|608500|6521[5-9]|652[2-9]|6530|6531[0-4]|817290|817368|817378|353800|82)/" ), cvcLength: [3], length: [16], maxCVCLength: 3, pincodeRequired: false, }, { issuer: "DinersClub", pattern: %re("/^(36|38|39|30[0-5])/"), cvcLength: [3], maxCVCLength: 3, length: [14, 15, 16, 17, 18, 19], pincodeRequired: false, }, { issuer: "Discover", pattern: %re("/^(6011|64[4-9]|65|622126|622[1-9][0-9][0-9]|6229[0-1][0-9]|622925)/"), cvcLength: [3], length: [16], maxCVCLength: 3, pincodeRequired: true, }, { issuer: "Mastercard", pattern: %re("/^(222[1-9]|22[3-9][0-9]|2[3-6][0-9]{2}|27[0-1][0-9]|2720|5[1-5])/"), cvcLength: [3], maxCVCLength: 3, length: [16], pincodeRequired: true, }, { issuer: "AmericanExpress", pattern: %re("/^3[47]/"), cvcLength: [3, 4], length: [14, 15], maxCVCLength: 4, pincodeRequired: true, }, { issuer: "Visa", pattern: %re("/^4/"), cvcLength: [3], length: [13, 14, 15, 16, 19], maxCVCLength: 3, pincodeRequired: true, }, { issuer: "CartesBancaires", pattern: %re( "/^(401(005|006|581)|4021(01|02)|403550|405936|406572|41(3849|4819|50(56|59|62|71|74)|6286|65(37|79)|71[7])|420110|423460|43(47(21|22)|50(48|49|50|51|52)|7875|95(09|11|15|39|98)|96(03|18|19|20|22|72))|4424(48|49|50|51|52|57)|448412|4505(19|60)|45(33|56[6-8]|61|62[^3]|6955|7452|7717|93[02379])|46(099|54(76|77)|6258|6575|98[023])|47(4107|71(73|74|86)|72(65|93)|9619)|48(1091|3622|6519)|49(7|83[5-9]|90(0[1-6]|1[0-6]|2[0-3]|3[0-3]|4[0-3]|5[0-2]|68|9[256789]))|5075(89|90|93|94|97)|51(0726|3([0-7]|8[56]|9(00|38))|5214|62(07|36)|72(22|43)|73(65|66)|7502|7647|8101|9920)|52(0993|1662|3718|7429|9227|93(13|14|31)|94(14|21|30|40|47|55|56|[6-9])|9542)|53(0901|10(28|30)|1195|23(4[4-7])|2459|25(09|34|54|56)|3801|41(02|05|11)|50(29|66)|5324|61(07|15)|71(06|12)|8011)|54(2848|5157|9538|98(5[89]))|55(39(79|93)|42(05|60)|4965|7008|88(67|82)|89(29|4[23])|9618|98(09|10))|56(0408|12(0[2-6]|4[134]|5[04678]))|58(17(0[0123457]|15|2[14]|3[16789]|4[0-9]|5[016]|6[269]|7[3789]|8[012467]|9[017])|55(0[2-5]|7[7-9]|8[0-2])))/" ), cvcLength: [3], length: [16, 17, 18, 19], maxCVCLength: 3, pincodeRequired: true, }, { issuer: "SODEXO", pattern: %re("/^(637513)/"), cvcLength: [3], length: [16], maxCVCLength: 3, pincodeRequired: false, }, { issuer: "BAJAJ", pattern: %re("/^(203040)/"), cvcLength: [3], maxCVCLength: 3, length: [16], pincodeRequired: true, }, { issuer: "JCB", pattern: %re("/^35(2[89]|[3-8][0-9])/"), cvcLength: [3], maxCVCLength: 3, length: [16], pincodeRequired: false, }, ]
2,318
10,325
hyperswitch-web
src/Bank.res
.res
type bank = { displayName: string, hyperSwitch: string, } type bankList = array<bank> let defaultEpsBank = { displayName: "Ärzte- und Apothekerbank", hyperSwitch: "arzte_und_apotheker_bank", } let defaultIdealBank = { displayName: "ABN AMRO", hyperSwitch: "abn_amro", } let defaultBank = { displayName: "", hyperSwitch: "", } let polandBanks = [ {displayName: "Alior Bank", hyperSwitch: "pay_with_alior_bank"}, {displayName: "Bank Nowy S.A.", hyperSwitch: "bank_nowy_s_a"}, {displayName: "Citi Handlowy", hyperSwitch: "pay_with_citi_handlowy"}, {displayName: "Santander Przelew24", hyperSwitch: "santander_przelew24"}, {displayName: "Bank Ochrony Środowiska", hyperSwitch: "pay_with_b_o_s"}, {displayName: "Bank Millennium", hyperSwitch: "bank_millennium"}, {displayName: "e-transfer Pocztowy24", hyperSwitch: "e_transfer_pocztowy24"}, {displayName: "Velo Bank", hyperSwitch: "velo_bank"}, {displayName: "Bank Pekao S.A.", hyperSwitch: "bank_p_e_k_a_o_s_a"}, {displayName: "Inteligo", hyperSwitch: "pay_with_inteligo"}, {displayName: "Plus Bank", hyperSwitch: "pay_with_plus_bank"}, {displayName: "Banki Spółdzielcze", hyperSwitch: "banki_spoldzielcze"}, {displayName: "ING", hyperSwitch: "pay_with_i_n_g"}, {displayName: "mBank", hyperSwitch: "m_bank"}, {displayName: "Credit Agricole", hyperSwitch: "credit_agricole"}, {displayName: "Toyota Bank", hyperSwitch: "toyota_bank"}, {displayName: "BLIK PSP", hyperSwitch: "blik_p_s_p"}, {displayName: "BNP Paribas Poland", hyperSwitch: "b_n_p_paribas_poland"}, {displayName: "Place Z Ipką", hyperSwitch: "place_z_i_p_k_o"}, ] let czechBanks = [ {displayName: "Česká spořitelna", hyperSwitch: "ceska_sporitelna"}, {displayName: "Komerční banka", hyperSwitch: "komercni_banka"}, { displayName: "Platność Online - Karta płatnicza", hyperSwitch: "platnosc_online_karta_platnicza", }, ] let p24Banks = [ {displayName: "Alior Bank", hyperSwitch: "alior_bank"}, {displayName: "Inteligo", hyperSwitch: "inteligo"}, {displayName: "BLIK", hyperSwitch: "blik"}, {displayName: "Nest Przelew", hyperSwitch: "nest_przelew"}, {displayName: "Noble Pay", hyperSwitch: "noble_pay"}, {displayName: "Plus Bank", hyperSwitch: "plus_bank"}, {displayName: "PBAc z iPKO", hyperSwitch: "pbac_z_ipko"}, {displayName: "Volkswagen Bank", hyperSwitch: "volkswagen_bank"}, {displayName: "Citi", hyperSwitch: "citi"}, {displayName: "Bank Nowy BFG SA", hyperSwitch: "bank_nowy_bfg_sa"}, {displayName: "eTransfer Pocztowy24", hyperSwitch: "e_transfer_pocztowy24"}, {displayName: "Toyota Bank", hyperSwitch: "toyota_bank"}, {displayName: "BOŚ", hyperSwitch: "boz"}, {displayName: "Getin Bank", hyperSwitch: "getin_bank"}, {displayName: "Idea Bank", hyperSwitch: "idea_bank"}, {displayName: "Bank Pekao SA", hyperSwitch: "bank_pekao_sa"}, {displayName: "BNP Paribas", hyperSwitch: "bnp_paribas"}, {displayName: "Santander Przelew24", hyperSwitch: "santander_przelew24"}, {displayName: "mBank mTransfer", hyperSwitch: "mbank_mtransfer"}, {displayName: "Banki Spółdzielcze", hyperSwitch: "banki_spbdzielcze"}, {displayName: "Credit Agricole", hyperSwitch: "credit_agricole"}, {displayName: "Bank Millennium", hyperSwitch: "bank_millennium"}, ] let idealBanks = [ { displayName: "ABN AMRO", hyperSwitch: "abn_amro", }, { displayName: "ASN Bank", hyperSwitch: "asn_bank", }, { displayName: "Bunq", hyperSwitch: "bunq", }, { displayName: "Handelsbanken", hyperSwitch: "handelsbanken", }, { displayName: "ING", hyperSwitch: "ing", }, { displayName: "Knab", hyperSwitch: "knab", }, { displayName: "Moneyou", hyperSwitch: "moneyou", }, { displayName: "N26", hyperSwitch: "n26", }, { displayName: "Nationale-Nederlanden (NN Group)", hyperSwitch: "nationale_nederlanden", }, { displayName: "Rabobank", hyperSwitch: "rabobank", }, { displayName: "RegioBank", hyperSwitch: "regiobank", }, { displayName: "Revolut", hyperSwitch: "revolut", }, { displayName: "SNS Bank (De Volksbank)", hyperSwitch: "sns_bank", }, { displayName: "Triodos Bank", hyperSwitch: "triodos_bank", }, { displayName: "Van Lanschot", hyperSwitch: "van_lanschot", }, { displayName: "Yoursafe", hyperSwitch: "yoursafe", }, ] let epsBanks = [ { displayName: "Ärzte- und Apothekerbank", hyperSwitch: "arzte_und_apotheker_bank", }, { displayName: "Austrian Anadi Bank AG", hyperSwitch: "austrian_anadi_bank_ag", }, { displayName: "Bank Austria", hyperSwitch: "bank_austria", }, { displayName: "bank99 AG", hyperSwitch: "bank99_AG", }, { displayName: "Bankhaus Carl Spängler & Co.AG", hyperSwitch: "bankhaus_carl_spangler", }, { displayName: "Bankhaus Schelhammer & Schattera AG", hyperSwitch: "bankhaus_schelhammer_und_schattera_ag", }, { displayName: "BAWAG P.S.K. AG", hyperSwitch: "bawag_psk_ag", }, { displayName: "BKS Bank AG", hyperSwitch: "bks_bank_ag", }, { displayName: "Brüll Kallmus Bank AG", hyperSwitch: "brull_kallmus_bank_ag", }, { displayName: "BTV VIER LÄNDER BANK", hyperSwitch: "btv_vier_lander_bank", }, { displayName: "Capital Bank Grawe Gruppe AG", hyperSwitch: "capital_bank_grawe_gruppe_ag", }, { displayName: "Dolomitenbank", hyperSwitch: "dolomitenbank", }, { displayName: "Easybank AG", hyperSwitch: "easybank_ag", }, { displayName: "Erste Bank und Sparkassen", hyperSwitch: "erste_bank_und_sparkassen", }, { displayName: "Hypo Alpe-Adria-Bank International AG", hyperSwitch: "hypo_alpeadriabank_international_ag", }, { displayName: "HYPO NOE LB für Niederösterreich u. Wien", hyperSwitch: "hypo_noe_lb_fur_niederosterreich_u_wien", }, { displayName: "HYPO Oberösterreich, Salzburg, Steiermark", hyperSwitch: "hypo_oberosterreich_salzburg_steiermark", }, { displayName: "Hypo Tirol Bank AG", hyperSwitch: "hypo_tirol_bank_ag", }, { displayName: "Hypo Vorarlberg Bank AG", hyperSwitch: "hypo_vorarlberg_bank_ag", }, { displayName: "HYPO-BANK BURGENLAND Aktiengesellschaft", hyperSwitch: "hypo_bank_burgenland_aktiengesellschaft", }, { displayName: "Marchfelder Bank", hyperSwitch: "marchfelder_bank", }, { displayName: "Oberbank AG", hyperSwitch: "oberbank_ag", }, { displayName: "Österreichische Ärzte- und Apothekerbank", hyperSwitch: "osterreichische_arzte_und_apothekerbank", }, { displayName: "Posojilnica Bank eGen", hyperSwitch: "posojilnica_bank_e_gen", }, { displayName: "Raiffeisen Bankengruppe Österreich", hyperSwitch: "raiffeisen_bankengruppe_osterreich", }, { displayName: "Schelhammer Capital Bank AG", hyperSwitch: "schelhammer_capital_bank_ag", }, { displayName: "Schoellerbank AG", hyperSwitch: "schoellerbank_ag", }, { displayName: "Sparda-Bank Wien", hyperSwitch: "sparda_bank_wien", }, { displayName: "Volksbank Gruppe", hyperSwitch: "volksbank_gruppe", }, { displayName: "Volkskreditbank AG", hyperSwitch: "volkskreditbank_ag", }, { displayName: "VR-Bank Braunau", hyperSwitch: "vr_bank_braunau", }, ] let slovakiaBanks = [ {displayName: "ePlatby VUB", hyperSwitch: "e_platby_v_u_b"}, {displayName: `Poštová banka`, hyperSwitch: "postova_banka"}, {displayName: "Tatra Pay", hyperSwitch: "tatra_pay"}, {displayName: "Viamo", hyperSwitch: "viamo"}, {displayName: "Sporo Pay", hyperSwitch: "sporo_pay"}, ] let fpxBanks = [ {displayName: "Affin Bank", hyperSwitch: "affin_bank"}, {displayName: "Agro Bank", hyperSwitch: "agro_bank"}, {displayName: "Alliance Bank", hyperSwitch: "alliance_bank"}, {displayName: "Am Bank", hyperSwitch: "am_bank"}, {displayName: "Bank Islam", hyperSwitch: "bank_islam"}, {displayName: "Bank Of China", hyperSwitch: "bank_of_china"}, {displayName: "Bank Rakyat", hyperSwitch: "bank_rakyat"}, {displayName: "Bank Simpanan Nasional", hyperSwitch: "bank_simpanan_nasional"}, {displayName: "CIMB Bank", hyperSwitch: "cimb_bank"}, {displayName: "Hong Leong Bank", hyperSwitch: "hong_leong_bank"}, {displayName: "Bank Muamalat", hyperSwitch: "bank_muamalat"}, {displayName: "HSBC Bank", hyperSwitch: "hsbc_bank"}, {displayName: "Kuwait Finance House", hyperSwitch: "kuwait_finance_house"}, {displayName: "Maybank", hyperSwitch: "maybank"}, {displayName: "Citibank", hyperSwitch: "citi"}, {displayName: "OCBC Bank", hyperSwitch: "ocbc_bank"}, {displayName: "Public Bank", hyperSwitch: "public_bank"}, {displayName: "RHB Bank", hyperSwitch: "rhb_bank"}, {displayName: "Standard Chartered Bank", hyperSwitch: "standard_chartered_bank"}, {displayName: "UOB Bank", hyperSwitch: "uob_bank"}, ] let thailandBanks = [ {displayName: "Bangkok Bank", hyperSwitch: "bangkok_bank"}, {displayName: "Krungsri Bank", hyperSwitch: "krungsri_bank"}, {displayName: "Krung Thai Bank", hyperSwitch: "krung_thai_bank"}, {displayName: "The Siam Commercial Bank", hyperSwitch: "the_siam_commercial_bank"}, {displayName: "Kasikorn Bank", hyperSwitch: "kasikorn_bank"}, ] let getBanks = paymentMethodName => { switch paymentMethodName { | "ideal" => idealBanks | "eps" => epsBanks | "online_banking_czech_republic" => czechBanks | "online_banking_poland" => polandBanks | "online_banking_slovakia" => slovakiaBanks | "online_banking_fpx" => fpxBanks | "online_banking_thailand" => thailandBanks | "przelewy24" => p24Banks | _ => [] } }
3,004
10,326
hyperswitch-web
src/FormViewTabs.res
.res
open PaymentMethodCollectTypes open PaymentMethodCollectUtils open RecoilAtoms @react.component let make = ( ~availablePaymentMethodTypes, ~primaryTheme, ~handleSubmit, ~tabsView, ~defaultOptionsLimitInTabLayout=defaultOptionsLimitInTabLayout, ~renderAddressForm, ~renderPayoutMethodForm, ) => { // Recoil states let {localeString} = Recoil.useRecoilValueFromAtom(configAtom) let payoutDynamicFields = Recoil.useRecoilValueFromAtom(payoutDynamicFieldsAtom) let formData = Recoil.useRecoilValueFromAtom(formDataAtom) let (activePmt, setActivePmt) = Recoil.useRecoilState(paymentMethodTypeAtom) let validityDict = Recoil.useRecoilValueFromAtom(validityDictAtom) // let (validityDict, setValidityDict) = Recoil.useRecoilState(validityDictAtom) // Component states let (orderedPmts, setOrderedPmts): ( array<paymentMethodType>, (array<paymentMethodType> => array<paymentMethodType>) => unit, ) = React.useState(_ => availablePaymentMethodTypes) let (formSubmitted, setFormSubmitted) = React.useState(_ => false) // Views history module View = { let viewStack = React.useRef([tabsView]) let push = newState => { viewStack.current = [...viewStack.current, newState] } let pop = () => { switch viewStack.current->Array.length { | 0 | 1 => () | _ => viewStack.current->Array.pop->ignore } } let get = () => viewStack.current->Array.get(viewStack.current->Array.length - 1)->Option.getOr(tabsView) let (view, setViewState) = React.useState(_ => get()) // For setting and popping views let setView = view => { setViewState(_ => { push(view) view }) } let popView = (~count=1) => { setViewState(_ => { for _ in 1 to count { pop() } get() }) } } React.useEffect(() => { availablePaymentMethodTypes ->Array.get(0) ->Option.map(pmt => setActivePmt(_ => pmt)) ->ignore setOrderedPmts(_ => availablePaymentMethodTypes) None }, [availablePaymentMethodTypes]) let handleTabSelection = newPmtStr => { orderedPmts ->Array.find(pmt => pmt->getPaymentMethodTypeLabel === newPmtStr) ->Option.map(newPmt => { if orderedPmts->Array.indexOf(newPmt) >= defaultOptionsLimitInTabLayout { // Move the selected payment method at the last tab position let ordList = availablePaymentMethodTypes->Array.reduceWithIndex([], (acc, pmt, i) => { if i === defaultOptionsLimitInTabLayout - 1 { acc->Array.push(newPmt) } if pmt !== newPmt { acc->Array.push(pmt) } acc }) setOrderedPmts(_ => ordList) } setActivePmt(_ => newPmt) newPmt }) ->ignore } let renderSaveButton = onClickHandler => <button className="min-w-full mt-10 text-lg font-semibold px-2.5 py-1.5 text-white rounded" style={backgroundColor: primaryTheme} onClick=onClickHandler> {React.string(localeString.formSaveText)} </button> let renderPmtTabs = activePmt => { let key = activePmt->getPaymentMethodTypeLabel let activeStyles: JsxDOM.style = { borderColor: primaryTheme, borderWidth: "2px", color: primaryTheme, } let defaultStyles: JsxDOM.style = { borderColor: "#9A9FA8", borderWidth: "1px", color: primaryTheme, } let hiddenTabs = orderedPmts->Array.reduceWithIndex([], (options, pmt, i) => { if i >= defaultOptionsLimitInTabLayout { let key = pmt->getPaymentMethodTypeLabel options->Array.push( <option key={i->Int.toString} value={key} className="text-black bg-white hover:bg-gray-100"> {React.string(key)} </option>, ) } options }) let visibleTabs = orderedPmts->Array.reduceWithIndex([], (items, pmt, i) => { if i < defaultOptionsLimitInTabLayout { let key = pmt->getPaymentMethodTypeLabel items->Array.push( <div key={i->Int.toString} onClick={_ => handleTabSelection(key)} className="flex w-full items-center rounded border-0 px-2.5 py-1.5 mr-2.5 cursor-pointer hover:bg-jp-gray-50" style={key === activePmt->getPaymentMethodTypeLabel ? activeStyles : defaultStyles}> {pmt->getPaymentMethodTypeIcon} <div className="ml-2.5"> {React.string(key)} </div> </div>, ) } items }) <div className="flex flex-row w-full"> {visibleTabs->React.array} {<RenderIf condition={orderedPmts->Array.length > defaultOptionsLimitInTabLayout}> <div className="relative"> <Icon className="absolute z-10 pointer translate-x-2.5 translate-y-3.5 pointer-events-none" name="arrow-down" size=10 /> <select value=key onChange={ev => handleTabSelection(ReactEvent.Form.target(ev)["value"])} className="h-full relative rounded border border-solid border-jp-gray-700 py-1.5 cursor-pointer bg-white text-transparent w-8 hover:bg-jp-gray-50"> {<option key value=key disabled={true}> {React.string(key)} </option>} {hiddenTabs->React.array} </select> </div> </RenderIf>} </div> } let renderInfoTemplate = (label, value, uniqueKey) => { let labelClasses = "w-4/10 text-jp-gray-800 text-sm min-w-40 text-end" let valueClasses = "w-6/10 text-sm min-w-40" <div key={uniqueKey} className="flex flex-row items-center"> <div className={labelClasses}> {React.string(label)} </div> <div className="mx-2.5 h-4 w-0.5 bg-jp-gray-300"> {React.string("")} </div> <div className={valueClasses}> {React.string(value)} </div> </div> } <div className="w-full max-w-[520px]"> {switch View.view { /// SCREEN #1 - FORM DATA COLLECTION | DetailsForm => { let contentHeaderClasses = "text-xl lg:text-2xl font-semibold mt-5" let key = activePmt->getPaymentMethodTypeLabel let onSaveHandler = () => { let (fieldValidity, isAddressValid) = payoutDynamicFields.address ->Option.map(addressFields => { addressFields->Array.reduce((Dict.make(), true), ( (fieldValidity, isAddressValid), field, ) => { let key = BillingAddress(field.fieldType)->getPaymentMethodDataFieldKey let value = formData->Dict.get(key)->Option.getOr("") let validity = BillingAddress(field.fieldType)->calculateValidity(value, ~default=Some(false)) fieldValidity->Dict.set(key, validity) (fieldValidity, isAddressValid && validity != Some(false)) }) }) ->Option.getOr((validityDict->Dict.copy, true)) let (fieldValidity, isPmdValid) = payoutDynamicFields.payoutMethodData->Array.reduce( (fieldValidity, isAddressValid), ((fieldValidity, isPmdValid), field) => { let key = PayoutMethodData(field.fieldType)->getPaymentMethodDataFieldKey let value = formData->Dict.get(key)->Option.getOr("") let validity = PayoutMethodData(field.fieldType)->calculateValidity(value, ~default=Some(false)) fieldValidity->Dict.set(key, validity) (fieldValidity, isPmdValid && validity != Some(false)) }, ) if isPmdValid { formPaymentMethodData(formData, fieldValidity, payoutDynamicFields) ->Option.map(pmd => View.setView(FinalizeView(activePmt, pmd))) ->ignore } } <div> {renderPmtTabs(activePmt)} <div className={contentHeaderClasses}> {switch activePmt { | Card(_) => localeString.formHeaderEnterCardText | BankTransfer(_) => key->localeString.formHeaderBankText | Wallet(_) => key->localeString.formHeaderWalletText }->React.string} </div> {payoutDynamicFields.payoutMethodData->renderPayoutMethodForm->React.array} {payoutDynamicFields.address ->Option.map(addressFields => { let fieldsToCollect = addressFields->Array.filter(addressField => addressField.value == None) if fieldsToCollect->Array.length > 0 { let formFields = addressFields->renderAddressForm <> <div className={`mb-2.5 ${contentHeaderClasses}`}> {React.string(localeString.billingDetailsText)} </div> {formFields->React.array} </> } else { React.null } }) ->Option.getOr(React.null)} {renderSaveButton(_ => onSaveHandler())} </div> } /// SCREEN #2 - FINALIZE VIEW | FinalizeView(pmt, formFields) => { let pm = pmt->getPaymentMethodForPmt <div> <div className="flex flex-col"> <div className="flex flex-row items-center mb-2.5 text-xl font-semibold"> <img src={"merchantLogo"} alt="" className="h-6 w-auto" /> <div className="ml-1.5"> {React.string( pmt ->getPaymentMethodTypeLabel ->localeString.formHeaderReviewTabLayoutText, )} </div> </div> {formFields ->Array.mapWithIndex((field, i) => { let (field, value) = field switch field { | PayoutMethodData(pmdFieldInfo) => switch pmdFieldInfo.fieldType { | CardExpDate(CardExpYear) => React.null | CardExpDate(CardExpMonth) => { let expiryYear = formData ->Dict.get( PayoutMethodData(CardExpDate(CardExpYear))->getPaymentMethodDataFieldKey, ) ->Option.flatMap(value => value ->String.split("/") ->Array.get(1) ->Option.map(year => `20${year->String.trim}`) ) ->Option.getOr("") let expiryValue = `${value} / ${expiryYear}` renderInfoTemplate( PayoutMethodData(CardExpDate(CardExpMonth))->getPaymentMethodDataFieldLabel( localeString, ), expiryValue, i->Int.toString, ) } | fieldType => renderInfoTemplate( PayoutMethodData(fieldType)->getPaymentMethodDataFieldLabel(localeString), value, i->Int.toString, ) } | BillingAddress(_) => React.null } }) ->React.array} </div> <div className="flex flex-row items-center min-w-full my-5 px-2.5 py-1.5 text-xs border border-solid border-blue-200 rounded bg-blue-50"> <img src={"merchantLogo"} alt="" className="h-3 w-auto mr-1.5" /> {React.string( pm ->getPaymentMethodLabel ->String.toLowerCase ->localeString.formFundsCreditInfoText, )} </div> <div className="flex my-5 text-lg font-semibold w-full"> <button onClick={_ => View.popView()} disabled={formSubmitted} className="w-full px-2.5 py-1.5 rounded border border-solid" style={color: primaryTheme, borderColor: primaryTheme}> {React.string(localeString.formEditText)} </button> <button onClick={_ => { setFormSubmitted(_ => true) handleSubmit((pmt, formFields)) }} disabled={formSubmitted} className="w-full px-2.5 py-1.5 text-white rounded ml-2.5" style={backgroundColor: primaryTheme}> {React.string( formSubmitted ? localeString.formSubmittingText : localeString.formSubmitText, )} </button> </div> </div> } }} </div> } let default = make
2,898
10,327
hyperswitch-web
src/Redsys3ds.res
.res
open Utils @react.component let make = () => { let logger = HyperLogger.make(~source=Elements(Payment)) let isCompleteAuthorizeCalledRef = React.useRef(false) let timeoutRef = React.useRef(None) let eventsToSendToParent = ["confirmParams", "poll_status", "openurl_if_required"] let completeAuthorize = PaymentHelpers.useRedsysCompleteAuthorize(Some(logger)) let handleCompleteAuthorizeCall = ( threeDsMethodComp, paymentIntentId, publishableKey, headers, returnUrl, ) => { let body = [ ("client_secret", paymentIntentId->JSON.Encode.string), ("threeds_method_comp_ind", threeDsMethodComp->JSON.Encode.string), ] completeAuthorize( ~bodyArr=body, ~confirmParam={ return_url: returnUrl, publishableKey, }, ~headers, ~iframeId="redsys3ds", ~clientSecret=Some(paymentIntentId), ) } eventsToSendToParent->UtilityHooks.useSendEventsToParent React.useEffect0(() => { messageParentWindow([("iframeMountedCallback", true->JSON.Encode.bool)]) let handle = (ev: Window.event) => { try { let json = ev.data->safeParse let dict = json->getDictFromJson if dict->Dict.get("fullScreenIframeMounted")->Option.isSome { let metadata = dict->getJsonObjectFromDict("metadata") let metaDataDict = metadata->JSON.Decode.object->Option.getOr(Dict.make()) let paymentIntentId = metaDataDict->getString("paymentIntentId", "") let publishableKey = metaDataDict->getString("publishableKey", "") logger.setClientSecret(paymentIntentId) logger.setMerchantId(publishableKey) let headersDict = metaDataDict->getDictFromDict("headers") let headers = headersDict->convertDictToArrayOfKeyStringTuples let confirmParam = metaDataDict->getDictFromObj("confirmParams") let returnUrl = confirmParam->getString("return_url", "") let iframeDataDict = metaDataDict->getDictFromObj("iframeData") let methodKey = iframeDataDict->getString("method_key", "threeDSMethodData") let threeDsMethodUrl = iframeDataDict->getString("three_ds_method_url", "") let threeDsMethodData = iframeDataDict->getString("three_ds_method_data", "") let threeDsIframe = CommonHooks.querySelector("#threeDsAuthFrame") switch Window.querySelector("#threeDsDiv")->Nullable.toOption { | Some(elem) => if threeDsMethodUrl !== "" { let form = elem->makeForm(threeDsMethodUrl, "threeDsHiddenPostMethod") let input = Types.createElement("input") input.name = encodeURIComponent(methodKey) input.value = encodeURIComponent(threeDsMethodData) form.target = "threeDsAuthFrame" form.appendChild(input) form.submit() } | None => () } timeoutRef.current->Option.forEach(clearTimeout) timeoutRef.current = Some(setTimeout(() => { isCompleteAuthorizeCalledRef.current = true handleCompleteAuthorizeCall( "N", paymentIntentId, publishableKey, headers, returnUrl, )->ignore }, 10000)) switch threeDsIframe->Nullable.toOption { | Some(elem) => elem->CommonHooks.addEventListener("load", _ => { timeoutRef.current->Option.forEach(clearTimeout) if !isCompleteAuthorizeCalledRef.current { handleCompleteAuthorizeCall( "Y", paymentIntentId, publishableKey, headers, returnUrl, )->ignore } }) | None => () } } } catch { | _ => postFailedSubmitResponse( ~errortype="complete_authorize_failed", ~message="Something went wrong.", ) } } Window.addEventListener("message", handle) Some( () => { Window.removeEventListener("message", handle) timeoutRef.current->Option.forEach(clearTimeout) }, ) }) <div id="threeDsDiv" className="max-w-1 max-h-1 opacity-0 fixed left-[-9999px]"> <iframe id="threeDsAuthFrame" name="threeDsAuthFrame" title="3D Secure Authentication Frame" /> </div> }
951
10,328