@akinon/projectzero 1.32.0 → 1.33.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/app-template/.editorconfig +7 -0
- package/app-template/.env.example +9 -0
- package/app-template/.eslintignore +1 -0
- package/app-template/.eslintrc.js +31 -0
- package/app-template/.gitattributes +18 -0
- package/app-template/.husky/pre-commit +4 -0
- package/app-template/.lintstagedrc.js +12 -0
- package/app-template/.prettierrc +13 -0
- package/app-template/.releaserc.json +49 -0
- package/app-template/.stylelintrc.json +37 -0
- package/app-template/.vscode/extensions.json +11 -0
- package/app-template/.vscode/launch.json +29 -0
- package/app-template/.yarnrc +1 -0
- package/app-template/CHANGELOG.md +636 -0
- package/app-template/LICENSE +21 -0
- package/app-template/Procfile +1 -0
- package/app-template/README.md +29 -0
- package/app-template/akinon.json +28 -0
- package/app-template/bitbucket-pipelines.yml +54 -0
- package/app-template/build.sh +7 -0
- package/app-template/docs/CHANGELOG.md +85 -0
- package/app-template/docs/advanced-usage.md +43 -0
- package/app-template/docs/basic-setup.md +59 -0
- package/app-template/docs/data-fetching/client/account.md +1064 -0
- package/app-template/docs/data-fetching/client/address.md +805 -0
- package/app-template/docs/data-fetching/client/basket.md +107 -0
- package/app-template/docs/data-fetching/client/checkout.md +904 -0
- package/app-template/docs/data-fetching/client/misc.md +135 -0
- package/app-template/docs/data-fetching/client/product.md +284 -0
- package/app-template/docs/data-fetching/client/user.md +56 -0
- package/app-template/docs/data-fetching/client/wishlist.md +111 -0
- package/app-template/docs/data-fetching/server/category.md +324 -0
- package/app-template/docs/data-fetching/server/flat-page.md +42 -0
- package/app-template/docs/data-fetching/server/list.md +353 -0
- package/app-template/docs/data-fetching/server/menu.md +363 -0
- package/app-template/docs/data-fetching/server/product.md +131 -0
- package/app-template/docs/data-fetching/server/seo.md +44 -0
- package/app-template/docs/data-fetching/server/special-page.md +79 -0
- package/app-template/docs/data-fetching/server/widget.md +218 -0
- package/app-template/docs/delete-account.md +25 -0
- package/app-template/docs/deployment.md +46 -0
- package/app-template/docs/dynamic-route.md +33 -0
- package/app-template/docs/icons.md +52 -0
- package/app-template/docs/localization.md +204 -0
- package/app-template/docs/logging.md +48 -0
- package/app-template/docs/plugins.md +76 -0
- package/app-template/docs/seo-management.md +125 -0
- package/app-template/docs/static-assets.md +36 -0
- package/app-template/docs/widgets.md +127 -0
- package/app-template/global.d.ts +1 -0
- package/app-template/jest.config.ts +34 -0
- package/app-template/next-env.d.ts +6 -0
- package/app-template/next.config.mjs +34 -0
- package/app-template/package.json +97 -0
- package/app-template/plugins.d.ts +1 -0
- package/app-template/postcss.config.js +6 -0
- package/app-template/public/404.png +0 -0
- package/app-template/public/500.png +0 -0
- package/app-template/public/apple-splash-1125-2436.jpg +0 -0
- package/app-template/public/apple-splash-1136-640.jpg +0 -0
- package/app-template/public/apple-splash-1170-2532.jpg +0 -0
- package/app-template/public/apple-splash-1242-2208.jpg +0 -0
- package/app-template/public/apple-splash-1242-2688.jpg +0 -0
- package/app-template/public/apple-splash-1284-2778.jpg +0 -0
- package/app-template/public/apple-splash-1334-750.jpg +0 -0
- package/app-template/public/apple-splash-1536-2048.jpg +0 -0
- package/app-template/public/apple-splash-1620-2160.jpg +0 -0
- package/app-template/public/apple-splash-1668-2224.jpg +0 -0
- package/app-template/public/apple-splash-1668-2388.jpg +0 -0
- package/app-template/public/apple-splash-1792-828.jpg +0 -0
- package/app-template/public/apple-splash-2048-1536.jpg +0 -0
- package/app-template/public/apple-splash-2048-2732.jpg +0 -0
- package/app-template/public/apple-splash-2160-1620.jpg +0 -0
- package/app-template/public/apple-splash-2208-1242.jpg +0 -0
- package/app-template/public/apple-splash-2224-1668.jpg +0 -0
- package/app-template/public/apple-splash-2388-1668.jpg +0 -0
- package/app-template/public/apple-splash-2436-1125.jpg +0 -0
- package/app-template/public/apple-splash-2532-1170.jpg +0 -0
- package/app-template/public/apple-splash-2688-1242.jpg +0 -0
- package/app-template/public/apple-splash-2732-2048.jpg +0 -0
- package/app-template/public/apple-splash-2778-1284.jpg +0 -0
- package/app-template/public/apple-splash-640-1136.jpg +0 -0
- package/app-template/public/apple-splash-750-1334.jpg +0 -0
- package/app-template/public/apple-splash-828-1792.jpg +0 -0
- package/app-template/public/apple-touch-icon-152x152.png +0 -0
- package/app-template/public/apple-touch-icon-167x167.png +0 -0
- package/app-template/public/apple-touch-icon-180x180.png +0 -0
- package/app-template/public/apple-touch-icon.png +0 -0
- package/app-template/public/apple.svg +47 -0
- package/app-template/public/cvv.jpg +0 -0
- package/app-template/public/facebook.svg +3 -0
- package/app-template/public/google.svg +12 -0
- package/app-template/public/icon-192x192.png +0 -0
- package/app-template/public/icon-256x256.png +0 -0
- package/app-template/public/icon-384x384.png +0 -0
- package/app-template/public/icon-512x512.png +0 -0
- package/app-template/public/icon-sprite.svg +528 -0
- package/app-template/public/locales/en/account.json +490 -0
- package/app-template/public/locales/en/auth.json +100 -0
- package/app-template/public/locales/en/basket.json +50 -0
- package/app-template/public/locales/en/category.json +26 -0
- package/app-template/public/locales/en/checkout.json +152 -0
- package/app-template/public/locales/en/common.json +65 -0
- package/app-template/public/locales/en/forgot_password.json +41 -0
- package/app-template/public/locales/en/form.json +5 -0
- package/app-template/public/locales/en/product.json +39 -0
- package/app-template/public/locales/tr/account.json +490 -0
- package/app-template/public/locales/tr/auth.json +100 -0
- package/app-template/public/locales/tr/basket.json +50 -0
- package/app-template/public/locales/tr/category.json +26 -0
- package/app-template/public/locales/tr/checkout.json +152 -0
- package/app-template/public/locales/tr/common.json +65 -0
- package/app-template/public/locales/tr/forgot_password.json +41 -0
- package/app-template/public/locales/tr/form.json +5 -0
- package/app-template/public/locales/tr/product.json +39 -0
- package/app-template/public/logo.svg +29 -0
- package/app-template/public/manifest.json +35 -0
- package/app-template/public/mastercard.png +0 -0
- package/app-template/public/mastersecure.png +0 -0
- package/app-template/public/mfs-client.min.js +3 -0
- package/app-template/public/noimage.jpg +0 -0
- package/app-template/public/safari-pinned-tab.svg +320 -0
- package/app-template/public/ssl-secure.png +0 -0
- package/app-template/public/vbv.png +0 -0
- package/app-template/public/visa.png +0 -0
- package/app-template/public/zepto.min.js +2 -0
- package/app-template/sentry.client.config.ts +16 -0
- package/app-template/sentry.edge.config.ts +3 -0
- package/app-template/sentry.properties +4 -0
- package/app-template/sentry.server.config.ts +3 -0
- package/app-template/setupTests.ts +4 -0
- package/app-template/src/__tests__/index.test.tsx +7 -0
- package/app-template/src/__tests__/tsconfig.json +7 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/account/address/page.tsx +74 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/account/change-email/page.tsx +174 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/account/change-password/page.tsx +206 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/account/contact/page.tsx +7 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/account/coupons/page.tsx +210 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/account/email-verification/page.tsx +5 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/account/faq/page.tsx +23 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/account/favourite-products/page.tsx +32 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/account/layout.tsx +28 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/account/my-quotations/page.tsx +7 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/account/orders/[id]/cancellation/page.tsx +255 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/account/orders/[id]/layout.tsx +5 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/account/orders/[id]/page.tsx +309 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/account/orders/page.tsx +137 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/account/page.tsx +226 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/account/profile/page.tsx +399 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/address/stores/page.tsx +271 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/anonymous-tracking/page.tsx +33 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/auth/oauth-login/page.tsx +3 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/auth/page.tsx +76 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/basket/page.tsx +77 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/basket-b2b/page.tsx +7 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/category/[pk]/loading.tsx +53 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/category/[pk]/page.tsx +16 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/client-root.tsx +9 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/contact-us/page.tsx +11 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/error.tsx +20 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/flat-page/[pk]/loading.tsx +5 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/flat-page/[pk]/page.tsx +18 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/forms/[pk]/generate/page.tsx +48 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/group-product/[pk]/loading.tsx +5 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/group-product/[pk]/page.tsx +72 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/landing-page/[pk]/loading.tsx +5 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/landing-page/[pk]/page.tsx +23 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/layout.tsx +78 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/list/loading.tsx +53 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/list/page.tsx +16 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/orders/checkout/page.tsx +140 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/orders/completed/[token]/layout.tsx +5 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/orders/completed/[token]/page.tsx +284 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/page.tsx +50 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/product/[pk]/loading.tsx +67 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/product/[pk]/page.tsx +81 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/special-page/[pk]/loading.tsx +53 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/special-page/[pk]/page.tsx +25 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/template.tsx +75 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/users/email-set-primary/[[...id]]/page.tsx +43 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/users/password/reset/page.tsx +79 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/users/registration/account-confirm-email/[[...id]]/page.tsx +43 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/users/reset/[[...id]]/page.tsx +110 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/xml-sitemap/[node]/route.ts +25 -0
- package/app-template/src/app/[commerce]/[locale]/[currency]/xml-sitemap/route.ts +37 -0
- package/app-template/src/app/api/cache/route.ts +1 -0
- package/app-template/src/app/api/client/[...slug]/route.ts +1 -0
- package/app-template/src/app/api/form/[...id]/route.ts +7 -0
- package/app-template/src/app/api/logout/route.ts +1 -0
- package/app-template/src/app/api/sentry/route.ts +9 -0
- package/app-template/src/app/api/web-vitals/route.ts +1 -0
- package/app-template/src/app/favicon.ico +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Black.eot +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Black.ttf +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Black.woff +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Black.woff2 +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-BlackItalic.eot +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-BlackItalic.ttf +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-BlackItalic.woff +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-BlackItalic.woff2 +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Bold.eot +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Bold.ttf +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Bold.woff +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Bold.woff2 +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-BoldItalic.eot +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-BoldItalic.ttf +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-BoldItalic.woff +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-BoldItalic.woff2 +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-ExtraBold.eot +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-ExtraBold.ttf +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-ExtraBold.woff +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-ExtraBold.woff2 +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-ExtraBoldItalic.eot +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-ExtraBoldItalic.ttf +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-ExtraBoldItalic.woff +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-ExtraBoldItalic.woff2 +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-ExtraLight.eot +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-ExtraLight.ttf +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-ExtraLight.woff +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-ExtraLight.woff2 +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-ExtraLightItalic.eot +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-ExtraLightItalic.ttf +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-ExtraLightItalic.woff +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-ExtraLightItalic.woff2 +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Italic.eot +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Italic.ttf +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Italic.woff +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Italic.woff2 +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Light.eot +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Light.ttf +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Light.woff +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Light.woff2 +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-LightItalic.eot +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-LightItalic.ttf +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-LightItalic.woff +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-LightItalic.woff2 +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Medium.eot +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Medium.ttf +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Medium.woff +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Medium.woff2 +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-MediumItalic.eot +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-MediumItalic.ttf +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-MediumItalic.woff +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-MediumItalic.woff2 +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Regular.eot +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Regular.ttf +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Regular.woff +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Regular.woff2 +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-SemiBold.eot +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-SemiBold.ttf +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-SemiBold.woff +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-SemiBold.woff2 +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-SemiBoldItalic.eot +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-SemiBoldItalic.ttf +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-SemiBoldItalic.woff +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-SemiBoldItalic.woff2 +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Thin.eot +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Thin.ttf +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Thin.woff +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-Thin.woff2 +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-ThinItalic.eot +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-ThinItalic.ttf +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-ThinItalic.woff +0 -0
- package/app-template/src/assets/fonts/Jost/Jost-ThinItalic.woff2 +0 -0
- package/app-template/src/assets/fonts/Jost/index.scss +269 -0
- package/app-template/src/assets/fonts/index.scss +1 -0
- package/app-template/src/assets/fonts/pz-icon.css +154 -0
- package/app-template/src/assets/fonts/pz-icon.eot +0 -0
- package/app-template/src/assets/fonts/pz-icon.html +456 -0
- package/app-template/src/assets/fonts/pz-icon.scss +300 -0
- package/app-template/src/assets/fonts/pz-icon.svg +144 -0
- package/app-template/src/assets/fonts/pz-icon.ttf +0 -0
- package/app-template/src/assets/fonts/pz-icon.woff +0 -0
- package/app-template/src/assets/fonts/pz-icon.woff2 +0 -0
- package/app-template/src/assets/globals.scss +65 -0
- package/app-template/src/assets/icons/akinon.svg +11 -0
- package/app-template/src/assets/icons/arrow-up.svg +11 -0
- package/app-template/src/assets/icons/bell.svg +1 -0
- package/app-template/src/assets/icons/cart.svg +13 -0
- package/app-template/src/assets/icons/check.svg +19 -0
- package/app-template/src/assets/icons/chevron-down.svg +8 -0
- package/app-template/src/assets/icons/chevron-end.svg +8 -0
- package/app-template/src/assets/icons/chevron-start.svg +8 -0
- package/app-template/src/assets/icons/chevron-up.svg +8 -0
- package/app-template/src/assets/icons/close.svg +12 -0
- package/app-template/src/assets/icons/cvc.svg +54 -0
- package/app-template/src/assets/icons/default.svg +6 -0
- package/app-template/src/assets/icons/directions.svg +14 -0
- package/app-template/src/assets/icons/eye-off.svg +10 -0
- package/app-template/src/assets/icons/eye-on.svg +17 -0
- package/app-template/src/assets/icons/facebook-login.svg +11 -0
- package/app-template/src/assets/icons/facebook.svg +9 -0
- package/app-template/src/assets/icons/giftbox.svg +22 -0
- package/app-template/src/assets/icons/globe.svg +12 -0
- package/app-template/src/assets/icons/google-login.svg +19 -0
- package/app-template/src/assets/icons/google.svg +9 -0
- package/app-template/src/assets/icons/hamburger.svg +5 -0
- package/app-template/src/assets/icons/heart-full.svg +20 -0
- package/app-template/src/assets/icons/heart-stroke.svg +22 -0
- package/app-template/src/assets/icons/info.svg +1 -0
- package/app-template/src/assets/icons/instagram.svg +14 -0
- package/app-template/src/assets/icons/layout-2.svg +7 -0
- package/app-template/src/assets/icons/layout-3.svg +4 -0
- package/app-template/src/assets/icons/logo.svg +24 -0
- package/app-template/src/assets/icons/mail.svg +1 -0
- package/app-template/src/assets/icons/minus.svg +4 -0
- package/app-template/src/assets/icons/money.svg +4 -0
- package/app-template/src/assets/icons/mp-otp.svg +1 -0
- package/app-template/src/assets/icons/pin.svg +16 -0
- package/app-template/src/assets/icons/pinterest.svg +12 -0
- package/app-template/src/assets/icons/plus.svg +5 -0
- package/app-template/src/assets/icons/search.svg +13 -0
- package/app-template/src/assets/icons/share.svg +10 -0
- package/app-template/src/assets/icons/spinner.svg +6 -0
- package/app-template/src/assets/icons/store-pin.svg +14 -0
- package/app-template/src/assets/icons/track-order.svg +1 -0
- package/app-template/src/assets/icons/twitter.svg +11 -0
- package/app-template/src/assets/icons/user.svg +14 -0
- package/app-template/src/assets/icons/whatsapp.svg +45 -0
- package/app-template/src/components/__tests__/Modal.test.tsx +103 -0
- package/app-template/src/components/__tests__/accordion.test.tsx +65 -0
- package/app-template/src/components/__tests__/badge.test.tsx +20 -0
- package/app-template/src/components/__tests__/button.test.tsx +59 -0
- package/app-template/src/components/__tests__/checkbox.test.tsx +57 -0
- package/app-template/src/components/__tests__/file-input.test.tsx +42 -0
- package/app-template/src/components/__tests__/icon.test.tsx +39 -0
- package/app-template/src/components/__tests__/input.test.tsx +69 -0
- package/app-template/src/components/__tests__/language-select.test.tsx +81 -0
- package/app-template/src/components/__tests__/link.test.tsx +65 -0
- package/app-template/src/components/__tests__/price.test.tsx +72 -0
- package/app-template/src/components/__tests__/radio.test.tsx +52 -0
- package/app-template/src/components/__tests__/select.test.tsx +115 -0
- package/app-template/src/components/__tests__/tab.test.tsx +101 -0
- package/app-template/src/components/accordion.tsx +64 -0
- package/app-template/src/components/badge.tsx +21 -0
- package/app-template/src/components/button.tsx +46 -0
- package/app-template/src/components/canonical-url.tsx +21 -0
- package/app-template/src/components/carousel-core.tsx +42 -0
- package/app-template/src/components/checkbox.tsx +28 -0
- package/app-template/src/components/currency-select.tsx +81 -0
- package/app-template/src/components/custom-loader.tsx +21 -0
- package/app-template/src/components/dynamic-form.tsx +17 -0
- package/app-template/src/components/file-input.tsx +8 -0
- package/app-template/src/components/generate-form-fields.tsx +349 -0
- package/app-template/src/components/icon.tsx +18 -0
- package/app-template/src/components/index.ts +41 -0
- package/app-template/src/components/input.tsx +110 -0
- package/app-template/src/components/language-select.tsx +33 -0
- package/app-template/src/components/link.tsx +53 -0
- package/app-template/src/components/loader-spinner.tsx +23 -0
- package/app-template/src/components/modal.tsx +66 -0
- package/app-template/src/components/pagination.tsx +267 -0
- package/app-template/src/components/password-rules-feedback.tsx +60 -0
- package/app-template/src/components/price.tsx +54 -0
- package/app-template/src/components/pwa-tags.tsx +233 -0
- package/app-template/src/components/radio.tsx +18 -0
- package/app-template/src/components/react-portal.tsx +47 -0
- package/app-template/src/components/select.tsx +70 -0
- package/app-template/src/components/shimmer.tsx +21 -0
- package/app-template/src/components/skeleton-article.tsx +15 -0
- package/app-template/src/components/skeleton-product.tsx +14 -0
- package/app-template/src/components/skeleton-profile.tsx +19 -0
- package/app-template/src/components/skeleton-wrapper.tsx +19 -0
- package/app-template/src/components/skeleton.tsx +37 -0
- package/app-template/src/components/source.tsx +12 -0
- package/app-template/src/components/tab-panel.tsx +10 -0
- package/app-template/src/components/tab.tsx +58 -0
- package/app-template/src/components/tabs.tsx +58 -0
- package/app-template/src/components/types/index.ts +89 -0
- package/app-template/src/hooks/index.ts +1 -0
- package/app-template/src/hooks/use-add-product-to-basket.ts +48 -0
- package/app-template/src/hooks/use-contract.tsx +58 -0
- package/app-template/src/hooks/use-fav-button.tsx +99 -0
- package/app-template/src/instrumentation.ts +1 -0
- package/app-template/src/middleware.ts +33 -0
- package/app-template/src/pages/_error.js +14 -0
- package/app-template/src/pages/api/auth/[...nextauth].ts +3 -0
- package/app-template/src/plugins.js +14 -0
- package/app-template/src/redux/middlewares/category.ts +42 -0
- package/app-template/src/redux/reducers/category.ts +67 -0
- package/app-template/src/redux/store.ts +47 -0
- package/app-template/src/routes/index.ts +46 -0
- package/app-template/src/settings.js +62 -0
- package/app-template/src/theme.js +1 -0
- package/app-template/src/types/index.ts +72 -0
- package/app-template/src/types/next-auth.d.ts +24 -0
- package/app-template/src/types/widgets.ts +115 -0
- package/app-template/src/utils/convert-facet-search-params.ts +15 -0
- package/app-template/src/utils/generate-jsonld.ts +23 -0
- package/app-template/src/utils/gtm.ts +247 -0
- package/app-template/src/utils/index.ts +60 -0
- package/app-template/src/views/account/account-menu.tsx +117 -0
- package/app-template/src/views/account/address-card.tsx +157 -0
- package/app-template/src/views/account/address-form.tsx +374 -0
- package/app-template/src/views/account/back-button.tsx +27 -0
- package/app-template/src/views/account/contact-form.tsx +283 -0
- package/app-template/src/views/account/content-header.tsx +52 -0
- package/app-template/src/views/account/faq/faq-footer.tsx +30 -0
- package/app-template/src/views/account/faq/faq-search.tsx +35 -0
- package/app-template/src/views/account/faq/faq-tabs.tsx +54 -0
- package/app-template/src/views/account/faq/index.ts +3 -0
- package/app-template/src/views/account/favorite-item.tsx +191 -0
- package/app-template/src/views/account/favourite-products/favourite-products-list.tsx +65 -0
- package/app-template/src/views/account/index.ts +4 -0
- package/app-template/src/views/account/order.tsx +89 -0
- package/app-template/src/views/account/orders/order-cancellation-item.tsx +99 -0
- package/app-template/src/views/account/orders/order-detail-header.tsx +39 -0
- package/app-template/src/views/anonymous-tracking/index.tsx +109 -0
- package/app-template/src/views/anonymous-tracking/order-detail/index.tsx +318 -0
- package/app-template/src/views/basket/basket-item.tsx +231 -0
- package/app-template/src/views/basket/index.ts +2 -0
- package/app-template/src/views/basket/summary.tsx +220 -0
- package/app-template/src/views/breadcrumb.tsx +35 -0
- package/app-template/src/views/category/category-active-filters.tsx +98 -0
- package/app-template/src/views/category/category-banner.tsx +34 -0
- package/app-template/src/views/category/category-header.tsx +143 -0
- package/app-template/src/views/category/category-info.tsx +123 -0
- package/app-template/src/views/category/filters/index.tsx +163 -0
- package/app-template/src/views/category/filters/size-filter.tsx +27 -0
- package/app-template/src/views/category/layout.tsx +38 -0
- package/app-template/src/views/checkout/auth.tsx +54 -0
- package/app-template/src/views/checkout/index.tsx +3 -0
- package/app-template/src/views/checkout/layout/footer.tsx +48 -0
- package/app-template/src/views/checkout/layout/header.tsx +38 -0
- package/app-template/src/views/checkout/step-button.tsx +69 -0
- package/app-template/src/views/checkout/step-list.tsx +51 -0
- package/app-template/src/views/checkout/steps/payment/agreements.tsx +42 -0
- package/app-template/src/views/checkout/steps/payment/index.tsx +31 -0
- package/app-template/src/views/checkout/steps/payment/options/credit-card/index.tsx +382 -0
- package/app-template/src/views/checkout/steps/payment/options/credit-card/installments.tsx +100 -0
- package/app-template/src/views/checkout/steps/payment/options/credit-payment.tsx +14 -0
- package/app-template/src/views/checkout/steps/payment/options/funds-transfer.tsx +174 -0
- package/app-template/src/views/checkout/steps/payment/options/loyalty.tsx +19 -0
- package/app-template/src/views/checkout/steps/payment/options/pay-on-delivery.tsx +15 -0
- package/app-template/src/views/checkout/steps/payment/options/redirection.tsx +94 -0
- package/app-template/src/views/checkout/steps/payment/payment-header.tsx +17 -0
- package/app-template/src/views/checkout/steps/payment/payment-option-buttons.tsx +73 -0
- package/app-template/src/views/checkout/steps/shipping/address-box.tsx +244 -0
- package/app-template/src/views/checkout/steps/shipping/addresses.tsx +189 -0
- package/app-template/src/views/checkout/steps/shipping/index.tsx +27 -0
- package/app-template/src/views/checkout/steps/shipping/shipping-options.tsx +72 -0
- package/app-template/src/views/checkout/summary.tsx +181 -0
- package/app-template/src/views/coupon-item/index.tsx +80 -0
- package/app-template/src/views/find-in-store/index.tsx +183 -0
- package/app-template/src/views/footer.tsx +21 -0
- package/app-template/src/views/guest-login/index.tsx +130 -0
- package/app-template/src/views/header/action-menu.tsx +117 -0
- package/app-template/src/views/header/band.tsx +32 -0
- package/app-template/src/views/header/index.tsx +66 -0
- package/app-template/src/views/header/mini-basket.tsx +267 -0
- package/app-template/src/views/header/mobile-hamburger-button.tsx +35 -0
- package/app-template/src/views/header/mobile-menu.tsx +144 -0
- package/app-template/src/views/header/navbar.tsx +186 -0
- package/app-template/src/views/header/pwa-back-button.tsx +60 -0
- package/app-template/src/views/header/search/index.tsx +82 -0
- package/app-template/src/views/header/search/results.tsx +123 -0
- package/app-template/src/views/header/user-menu.tsx +72 -0
- package/app-template/src/views/index.tsx +2 -0
- package/app-template/src/views/installment-options/index.tsx +127 -0
- package/app-template/src/views/login/index.tsx +233 -0
- package/app-template/src/views/otp-login/index.tsx +152 -0
- package/app-template/src/views/page-loader-spinner/index.tsx +9 -0
- package/app-template/src/views/product/accordion-wrapper.tsx +59 -0
- package/app-template/src/views/product/combine-product-card.tsx +82 -0
- package/app-template/src/views/product/index.ts +8 -0
- package/app-template/src/views/product/layout.tsx +40 -0
- package/app-template/src/views/product/misc-buttons.tsx +65 -0
- package/app-template/src/views/product/price-wrapper.tsx +41 -0
- package/app-template/src/views/product/product-group-info.tsx +63 -0
- package/app-template/src/views/product/product-info.tsx +273 -0
- package/app-template/src/views/product/slider.tsx +124 -0
- package/app-template/src/views/product/variant.tsx +104 -0
- package/app-template/src/views/product-item/index.tsx +96 -0
- package/app-template/src/views/product-pointer-banner-item.tsx +243 -0
- package/app-template/src/views/register/index.tsx +417 -0
- package/app-template/src/views/root-modal.tsx +21 -0
- package/app-template/src/views/sales-contract-modal/index.tsx +288 -0
- package/app-template/src/views/share/index.tsx +71 -0
- package/app-template/src/views/widgets/home-hero-slider-content.tsx +54 -0
- package/app-template/src/views/widgets/recommendation-content.tsx +86 -0
- package/app-template/src/widgets/footer-copyright.tsx +25 -0
- package/app-template/src/widgets/footer-info.tsx +78 -0
- package/app-template/src/widgets/footer-menu.tsx +258 -0
- package/app-template/src/widgets/footer-social.tsx +53 -0
- package/app-template/src/widgets/footer-subscription/footer-subscription-form.tsx +110 -0
- package/app-template/src/widgets/footer-subscription/index.tsx +30 -0
- package/app-template/src/widgets/header-band-text.tsx +21 -0
- package/app-template/src/widgets/home-discovery.tsx +191 -0
- package/app-template/src/widgets/home-hero-slider.tsx +36 -0
- package/app-template/src/widgets/home-product-recommendation.tsx +18 -0
- package/app-template/src/widgets/home-single-banner.tsx +87 -0
- package/app-template/src/widgets/home-stories-eng.tsx +112 -0
- package/app-template/src/widgets/index.ts +25 -0
- package/app-template/src/widgets/product-pointer-banners.tsx +35 -0
- package/app-template/src/widgets/special-page-banner.tsx +49 -0
- package/app-template/src/widgets/special-page-carousel.tsx +68 -0
- package/app-template/src/widgets/widget-order.tsx +1 -0
- package/app-template/tailwind.config.js +170 -0
- package/app-template/tsconfig.json +44 -0
- package/app-template/tsconfig.test.json +6 -0
- package/app-template/yarn.lock +11278 -0
- package/commands/create.ts +49 -118
- package/dist/commands/create.js +32 -68
- package/package.json +1 -1
- package/tsconfig.json +9 -8
|
@@ -0,0 +1,152 @@
|
|
|
1
|
+
{
|
|
2
|
+
"step": {
|
|
3
|
+
"shipping": "Teslimat",
|
|
4
|
+
"payment": "Ödeme",
|
|
5
|
+
"confirmation": "Onay"
|
|
6
|
+
},
|
|
7
|
+
"auth": {
|
|
8
|
+
"title": "Zero'da Yeni misiniz?",
|
|
9
|
+
"signup": "Üye ol",
|
|
10
|
+
"guest_checkout": "Misafir Olarak Ödeme",
|
|
11
|
+
"form": {
|
|
12
|
+
"login": {
|
|
13
|
+
"email": {
|
|
14
|
+
"placeholder": "E-posta adresiniz"
|
|
15
|
+
},
|
|
16
|
+
"phone": {
|
|
17
|
+
"placeholder": "Telefon Numarası"
|
|
18
|
+
},
|
|
19
|
+
"agreement": {
|
|
20
|
+
"label": "Aşağıdakileri okudum ve kabul ediyorum",
|
|
21
|
+
"terms_conditions": "Şartlar ve koşullar",
|
|
22
|
+
"privacy_policy": "Gizlilik Politikası"
|
|
23
|
+
},
|
|
24
|
+
"button": "Ödemeye Devam Et",
|
|
25
|
+
"error": {
|
|
26
|
+
"required": "Bu alan gereklidir.",
|
|
27
|
+
"email_control": "Lütfen geçerli bir eposta adresi giriniz.",
|
|
28
|
+
"phone_control": "Telefon numarası geçerli değil"
|
|
29
|
+
}
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
},
|
|
33
|
+
"summary": {
|
|
34
|
+
"title": "Sepetim",
|
|
35
|
+
"items": "Adet(ler)",
|
|
36
|
+
"quantity": "Miktar",
|
|
37
|
+
"subtotal": "Ara toplam",
|
|
38
|
+
"shipping": "Kargo",
|
|
39
|
+
"discounts_total": "İndirimler Toplamı",
|
|
40
|
+
"total": "Toplam",
|
|
41
|
+
"delivery_info": "Teslimat Bilgileri",
|
|
42
|
+
"change": "değiştir",
|
|
43
|
+
"info": " <ShippingOption/> ile <ShippingAddress />'e"
|
|
44
|
+
},
|
|
45
|
+
"address": {
|
|
46
|
+
"address": "Adres",
|
|
47
|
+
"use_for_billing": "Faturalandırma için kullanın",
|
|
48
|
+
"add_new_address": "YENİ BİR ADRES EKLEYİN",
|
|
49
|
+
"content": "Lütfen bir <addressType/> adresi seçin.",
|
|
50
|
+
"delivery": "Teslimat",
|
|
51
|
+
"billing": "Fatura",
|
|
52
|
+
"shipping": {
|
|
53
|
+
"title": "Teslimat Yöntemi",
|
|
54
|
+
"chosen_address": "Şunun için bir teslimat seçeneği seçin",
|
|
55
|
+
"select_address_to_continue": "Devam etmek için bir teslimat adresi seçin.",
|
|
56
|
+
"button": "KAYDET & İLERLE"
|
|
57
|
+
},
|
|
58
|
+
"box": {
|
|
59
|
+
"shipping_to": "Teslimat",
|
|
60
|
+
"edit": "düzenle",
|
|
61
|
+
"remove": "kaldır"
|
|
62
|
+
},
|
|
63
|
+
"modal": {
|
|
64
|
+
"edit_address": "Adresi Düzenle"
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
"completed": {
|
|
68
|
+
"not_found": "Sipariş detayı bulunamadı",
|
|
69
|
+
"title": "Sipariş onayı",
|
|
70
|
+
"thank_you": "Siparişiniz için teşekkür ederiz",
|
|
71
|
+
"your_email": "E-POSTA ADRESİNİZ",
|
|
72
|
+
"order_total": "SİPARİŞ TOPLAMI",
|
|
73
|
+
"payment_type": "ÖDEME ŞEKLİ",
|
|
74
|
+
"order_summary": "Sipariş Özeti",
|
|
75
|
+
"items": "adet(ler)",
|
|
76
|
+
"purchase_info": "Satın alma bilgilerinizi aşağıda bulabilirsiniz.",
|
|
77
|
+
"confirmation_message": "<OrderNumber/> numaralı siparişinizi aldık ve paketiniz gönderilir gönderilmez size bir e-posta göndereceğiz.",
|
|
78
|
+
"side": {
|
|
79
|
+
"whats_next": "Sırada ne var?",
|
|
80
|
+
"description_first": "Lütfen gelen kutunuzu kontrol edin, bir onay e-postası yolda",
|
|
81
|
+
"description_second": "Bu arada, burada bir şeye ihtiyacın olursa, bazı faydalı linklerimiz var.",
|
|
82
|
+
"help_contact": "Yardım ve İletişim",
|
|
83
|
+
"my_account": "Hesabım",
|
|
84
|
+
"faq": "SSS",
|
|
85
|
+
"discover_new_items": "YENİ ÜRÜNLERİ KEŞFEDİN"
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
"payment": {
|
|
89
|
+
"credit_card": {
|
|
90
|
+
"title": "Kredi Kartı Bilgileri",
|
|
91
|
+
"description": "Lütfen kredi kartı bilgilerinizi giriniz.",
|
|
92
|
+
"form": {
|
|
93
|
+
"cardholder_name": {
|
|
94
|
+
"placeholder": "Kart Sahibinin Adı"
|
|
95
|
+
},
|
|
96
|
+
"card_number": {
|
|
97
|
+
"placeholder": "Kart Numarası"
|
|
98
|
+
},
|
|
99
|
+
"expiration_date": {
|
|
100
|
+
"title": "Son Kullanma Tarihi"
|
|
101
|
+
},
|
|
102
|
+
"month": {
|
|
103
|
+
"placeholder": "Ay"
|
|
104
|
+
},
|
|
105
|
+
"year": {
|
|
106
|
+
"placeholder": "Yıl"
|
|
107
|
+
},
|
|
108
|
+
"security_code": {
|
|
109
|
+
"title": "Güvenlik Kodu",
|
|
110
|
+
"cvc": "CVC nedir?"
|
|
111
|
+
},
|
|
112
|
+
"error": {
|
|
113
|
+
"required": "Bu alan gereklidir.",
|
|
114
|
+
"cvv_length": "CVV 3 hane uzunluğunda olmalıdır.",
|
|
115
|
+
"installment": "Lütfen bir taksit seçin.",
|
|
116
|
+
"card_number_length": "Kart numarası 16 hane uzunluğunda olmalıdır.",
|
|
117
|
+
"card_holder_matches": "Bu alan için yalnızca harflere izin verilir."
|
|
118
|
+
},
|
|
119
|
+
"button": "Sipariş Ver"
|
|
120
|
+
}
|
|
121
|
+
},
|
|
122
|
+
"fund_transfer": {
|
|
123
|
+
"title": "Para Transfer Bilgileri",
|
|
124
|
+
"description": "Sipariş ver butonuna tıkladıktan sonra para transferinizi tamamlamak için 24 saatiniz olacak.",
|
|
125
|
+
"account_title": "Para transferi için kullanabileceğiniz hesaplar",
|
|
126
|
+
"receiver": "Alıcı",
|
|
127
|
+
"attention": "DİKKAT",
|
|
128
|
+
"transfer_amount_title": "Banka havalesi ile ödenecek tutar:",
|
|
129
|
+
"info_first": "Lütfen açıklama alanına <BoldTitle/> ekleyin.",
|
|
130
|
+
"bold_title": "sipariş numarasını",
|
|
131
|
+
"info_second": "24 saat içerisinde havale işlemini tamamlamadığınız takdirde siparişiniz iptal edilecektir.",
|
|
132
|
+
"button": "Sipariş Ver"
|
|
133
|
+
},
|
|
134
|
+
"installment_options": {
|
|
135
|
+
"title": "Taksit Seçenekleri",
|
|
136
|
+
"description": "Taksit seçeneklerini görmek için kart bilgilerinizi girmeniz gerekmektedir.",
|
|
137
|
+
"installment": "Taksit seçenekleri gösterilen kart",
|
|
138
|
+
"payments": "Ödemeler",
|
|
139
|
+
"per_month": "Her ay",
|
|
140
|
+
"total": "Toplam"
|
|
141
|
+
}
|
|
142
|
+
},
|
|
143
|
+
"agreement": {
|
|
144
|
+
"info_contract": "Ön Bilgilendirme Koşulları",
|
|
145
|
+
"sales_contract": "Mesafeli Satış Sözleşmesi",
|
|
146
|
+
"content": "<InfoContract /> ve <SalesContract />'ni okudum ve kabul ediyorum."
|
|
147
|
+
},
|
|
148
|
+
"error": {
|
|
149
|
+
"title": "Beklenmeyen bir hata oluştu. Lütfen daha sonra tekrar deneyiniz.",
|
|
150
|
+
"button": "Tekrar deneyin"
|
|
151
|
+
}
|
|
152
|
+
}
|
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
{
|
|
2
|
+
"header": {
|
|
3
|
+
"login": "GİRİŞ YAP",
|
|
4
|
+
"signup": "ÜYE OL"
|
|
5
|
+
},
|
|
6
|
+
"newsletter_signup": {
|
|
7
|
+
"submit": "GÖNDER",
|
|
8
|
+
"close": "Kapat",
|
|
9
|
+
"accept": "Okuyup anladığımı kabul ediyorum",
|
|
10
|
+
"privacy_policy": "Gizlilik Politikası",
|
|
11
|
+
"subscription_contract": "E-Bülten",
|
|
12
|
+
"subscription_contract_content": "E-Bültenlerimize başarıyla kayıt oldunuz.",
|
|
13
|
+
"required_email": "Lütfen geçerli eposta adresini giriniz.",
|
|
14
|
+
"required": "Bu alan zorunludur.",
|
|
15
|
+
"email_address": "E-posta adresi*"
|
|
16
|
+
},
|
|
17
|
+
"navbar": {
|
|
18
|
+
"search": "ARA"
|
|
19
|
+
},
|
|
20
|
+
"mobile_menu": {
|
|
21
|
+
"back": "Geri"
|
|
22
|
+
},
|
|
23
|
+
"search": {
|
|
24
|
+
"placeholder": "Ara",
|
|
25
|
+
"results_for": "Arama Sonuçları",
|
|
26
|
+
"products_for": "ÜRÜNLER",
|
|
27
|
+
"clean": "temizle",
|
|
28
|
+
"categories": "KATEGORİLER",
|
|
29
|
+
"view_all": "HEPSİNİ GÖSTER",
|
|
30
|
+
"not_found": "Arama Sonuçları Bulunamadı"
|
|
31
|
+
},
|
|
32
|
+
"page_404": {
|
|
33
|
+
"title": "Sayfa bulunamadı.",
|
|
34
|
+
"link_text": "Ana sayfaya dön"
|
|
35
|
+
},
|
|
36
|
+
"page_500": {
|
|
37
|
+
"title": "Beklenmeyen bir hata oluştu.",
|
|
38
|
+
"description": "Lütfen daha sonra tekrar deneyiniz.",
|
|
39
|
+
"link_text": "Ana sayfaya dön"
|
|
40
|
+
},
|
|
41
|
+
"breadcrumb": {
|
|
42
|
+
"homepage": "Anasayfa"
|
|
43
|
+
},
|
|
44
|
+
"email_verification": {
|
|
45
|
+
"success": "E-POSTA ADRESİNİZİ DOĞRULANDI.",
|
|
46
|
+
"error": "E-POSTA ADRESİNİZİ DOĞRULANAMAMIŞTIR."
|
|
47
|
+
},
|
|
48
|
+
"common_product_attributes": {
|
|
49
|
+
"color": "Renk",
|
|
50
|
+
"size": "Beden"
|
|
51
|
+
},
|
|
52
|
+
"stores": {
|
|
53
|
+
"title": "Mağazalar",
|
|
54
|
+
"back": "Listeye Geri Dön",
|
|
55
|
+
"select_country": "Lütfen Ülke Seçiniz",
|
|
56
|
+
"select_city": "Lütfen Şehir Seçiniz",
|
|
57
|
+
"directions": "Yol tarifi al"
|
|
58
|
+
},
|
|
59
|
+
"currency_modal": {
|
|
60
|
+
"title": "Para Birimi Değişimi",
|
|
61
|
+
"description": "Döviz kuru değiştiği için sepetinizdeki ürünler silinecektir.",
|
|
62
|
+
"close": "Kapat",
|
|
63
|
+
"continue": "Devam Et"
|
|
64
|
+
}
|
|
65
|
+
}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
{
|
|
2
|
+
"title": "Parola sıfırlama",
|
|
3
|
+
"description_first": "Şifrenizi sıfırlamak için lütfen e-posta adresinizi giriniz.",
|
|
4
|
+
"description_second": "İşlemi tamamlamak için bir bağlantı içeren bir e-posta alacaksınız.",
|
|
5
|
+
"form": {
|
|
6
|
+
"email": {
|
|
7
|
+
"placeholder": "E-posta Adresi"
|
|
8
|
+
},
|
|
9
|
+
"button": "Şifre Sıfırlama E-postası Gönder",
|
|
10
|
+
"error": {
|
|
11
|
+
"required": "Bu alan gereklidir.",
|
|
12
|
+
"email_valid": "Lütfen geçerli eposta adresini giriniz."
|
|
13
|
+
},
|
|
14
|
+
"success": {
|
|
15
|
+
"title": "Şifre Sıfırlama E-postası Gönderildi",
|
|
16
|
+
"subtitle": "Lütfen e-postanızı kontrol edin ve talimatları izleyin.",
|
|
17
|
+
"button": "Ana Sayfaya Devam Et"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"create_new_password": {
|
|
21
|
+
"title": "Yeni Şifre Oluştur",
|
|
22
|
+
"description": "Lütfen yeni şifrenizi giriniz.",
|
|
23
|
+
"form": {
|
|
24
|
+
"password": {
|
|
25
|
+
"placeholder_first": "Yeni Şifre",
|
|
26
|
+
"placeholder_second": "Yeni Şifre Tekrar"
|
|
27
|
+
},
|
|
28
|
+
"button": "Yeni şifreyi onayla",
|
|
29
|
+
"error": {
|
|
30
|
+
"required": "Bu alan gereklidir.",
|
|
31
|
+
"password_valid": "Lütfen geçerli bir şifre giriniz.",
|
|
32
|
+
"password_max": "Parola 50 karakterden kısa olmalıdır.",
|
|
33
|
+
"password_rule": "Belirlenen kurallara uygun olarak şifrenizi giriniz."
|
|
34
|
+
},
|
|
35
|
+
"success": {
|
|
36
|
+
"title": "Şifreniz Değişti",
|
|
37
|
+
"button": "Ana Sayfaya Devam Et"
|
|
38
|
+
}
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
{
|
|
2
|
+
"add_to_cart": "SEPETE EKLE",
|
|
3
|
+
"add_stock_alert": "STOK UYARISI EKLE",
|
|
4
|
+
"add_to_favorites": "Favorilere ekle",
|
|
5
|
+
"share": "Paylaş",
|
|
6
|
+
"details_care": "DETAYLAR & BAKIM",
|
|
7
|
+
"delivery_collections": "TESLİMAT, KOLEKSİYON VE İADE",
|
|
8
|
+
"installment_options": "TAKSİT SEÇENEKLERİ",
|
|
9
|
+
"product_code": "Ürün Kodu",
|
|
10
|
+
"number_of_installments": "Taksit Sayısı",
|
|
11
|
+
"monthly_amount": "Aylık tutar",
|
|
12
|
+
"total_amount": "Toplam tutar",
|
|
13
|
+
"off": "indirim",
|
|
14
|
+
"selected": "Seçilen",
|
|
15
|
+
"find_in_store": {
|
|
16
|
+
"title": "Mağazada Bul",
|
|
17
|
+
"directions": "Yol Tarifi",
|
|
18
|
+
"store_not_found": "Mağaza bulunamadı",
|
|
19
|
+
"working_hours": "Çalışma Saatleri",
|
|
20
|
+
"submit": "GÖNDER",
|
|
21
|
+
"description": "Stok süper hızlı hareket ediyor. Bu arama, stokun nerede bulunabileceğinin bir göstergesidir ancak uzun süre orada olacağını garanti edemeyiz.",
|
|
22
|
+
"available": "Mevcut",
|
|
23
|
+
"out_of_stock": "Stoklar Tükendi",
|
|
24
|
+
"limited_stock": "Sınırlı Stok",
|
|
25
|
+
"select_an_option": "Bir seçenek seçin",
|
|
26
|
+
"required": "Bu alan gereklidir.",
|
|
27
|
+
"unknown": "Bilinmiyor"
|
|
28
|
+
},
|
|
29
|
+
"please_select_variant": "Lütfen <VariantName/> seçin",
|
|
30
|
+
"installment_not_available": "Taksit seçenekleri mevcut değil",
|
|
31
|
+
"cash": "Peşin",
|
|
32
|
+
"installment": "Taksit",
|
|
33
|
+
"stock_alert": {
|
|
34
|
+
"title": "Stok Uyarısı",
|
|
35
|
+
"success_description": "Bedeniniz stoklara tekrar girdiğinde şu adrese bir e-posta göndereceğiz: <Email/>",
|
|
36
|
+
"error_description": "Beklenmeyen bir hata oluştu. Lütfen daha sonra tekrar deneyiniz.",
|
|
37
|
+
"close_button": "KAPAT"
|
|
38
|
+
}
|
|
39
|
+
}
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg width="184px" height="18px" viewBox="0 0 184 18" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
|
|
3
|
+
<title>Group 21</title>
|
|
4
|
+
<defs>
|
|
5
|
+
<polygon id="path-1" points="0 17.6283386 183.337714 17.6283386 183.337714 -0.000732857143 0 -0.000732857143"></polygon>
|
|
6
|
+
</defs>
|
|
7
|
+
<g id="Symbols" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
|
|
8
|
+
<g id="header/mobile" transform="translate(-59.000000, -16.000000)">
|
|
9
|
+
<g id="Group-21" transform="translate(59.000000, 16.000000)">
|
|
10
|
+
<path d="M5.184,8.46299571 C5.92457143,8.46299571 6.588,8.41671 7.17428571,8.32413857 C7.76057143,8.23156714 8.25814286,8.05799571 8.667,7.80342429 C9.07585714,7.54885286 9.39214286,7.20171 9.61585714,6.76199571 C9.83957143,6.32228143 9.95142857,5.74756714 9.95142857,5.03785286 C9.95142857,3.98871 9.60814286,3.19606714 8.92157143,2.65413857 C8.235,2.11413857 7.14342857,1.84413857 5.64685714,1.84413857 L1.57371429,1.84413857 L1.57371429,8.46299571 L5.184,8.46299571 Z M0,17.16471 L0,0.501852857 L6.08657143,0.501852857 C7.16657143,0.501852857 8.05757143,0.62721 8.75957143,0.872138571 C9.46157143,1.11899571 10.017,1.45842429 10.4258571,1.89042429 C10.8347143,2.32242429 11.1201429,2.81999571 11.2821429,3.38313857 C11.4441429,3.94628143 11.5251429,4.53642429 11.5251429,5.15356714 C11.5251429,6.07928143 11.3361429,6.84299571 10.9581429,7.44471 C10.5801429,8.04642429 10.0902857,8.52085286 9.48857143,8.86799571 C8.88685714,9.21513857 8.20414286,9.45813857 7.44042857,9.59699571 C6.67671429,9.73585286 5.90914286,9.80528143 5.13771429,9.80528143 L1.57371429,9.80528143 L1.57371429,17.16471 L0,17.16471 Z" id="Fill-1" fill="#000000"></path>
|
|
11
|
+
<path d="M20.6661857,8.25471 C21.2524714,8.25471 21.7963286,8.19299571 22.2977571,8.06956714 C22.7991857,7.94613857 23.2350429,7.74942429 23.6053286,7.47942429 C23.9756143,7.20942429 24.2687571,6.86613857 24.4847571,6.44956714 C24.7007571,6.03299571 24.8087571,5.53156714 24.8087571,4.94528143 C24.8087571,4.32813857 24.6969,3.81899571 24.4731857,3.41785286 C24.2494714,3.01671 23.9486143,2.70042429 23.5706143,2.46899571 C23.1926143,2.23756714 22.7606143,2.07556714 22.2746143,1.98299571 C21.7886143,1.89042429 21.2833286,1.84413857 20.7587571,1.84413857 L15.7599,1.84413857 L15.7599,8.25471 L20.6661857,8.25471 Z M15.7599,9.59699571 L15.7599,17.16471 L14.1861857,17.1415671 L14.1861857,0.501852857 L20.7124714,0.501852857 C22.5484714,0.501852857 23.9524714,0.845138571 24.9244714,1.53171 C25.8964714,2.21828143 26.3824714,3.33299571 26.3824714,4.87585286 C26.3824714,5.92499571 26.1703286,6.75813857 25.7460429,7.37528143 C25.3217571,7.99242429 24.6313286,8.51699571 23.6747571,8.94899571 C24.1684714,9.11871 24.5541857,9.36556714 24.8319,9.68956714 C25.1096143,10.0135671 25.3179,10.3838529 25.4567571,10.8004243 C25.5956143,11.2169957 25.6843286,11.65671 25.7229,12.1195671 C25.7614714,12.5824243 25.7884714,13.0298529 25.8039,13.4618529 C25.8193286,14.0944243 25.8463286,14.6189957 25.8849,15.0355671 C25.9234714,15.4521386 25.9697571,15.7915671 26.0237571,16.0538529 C26.0777571,16.3161386 26.1433286,16.5205671 26.2204714,16.6671386 C26.2976143,16.81371 26.3901857,16.9255671 26.4981857,17.00271 L26.4981857,17.1415671 L24.7624714,17.16471 C24.5927571,16.8869957 24.4731857,16.5012814 24.4037571,16.0075671 C24.3343286,15.5138529 24.2803286,14.9969957 24.2417571,14.4569957 C24.2031857,13.9169957 24.1723286,13.3924243 24.1491857,12.8832814 C24.1260429,12.3741386 24.0836143,11.9575671 24.0219,11.6335671 C23.9293286,11.1861386 23.7789,10.8274243 23.5706143,10.5574243 C23.3623286,10.2874243 23.1116143,10.0829957 22.8184714,9.94413857 C22.5253286,9.80528143 22.1974714,9.71271 21.8349,9.66642429 C21.4723286,9.62013857 21.0981857,9.59699571 20.7124714,9.59699571 L15.7599,9.59699571 Z" id="Fill-3" fill="#000000"></path>
|
|
12
|
+
<path d="M36.7738071,16.26291 C37.8538071,16.26291 38.7833786,16.0584814 39.5625214,15.6496243 C40.3416643,15.2407671 40.98195,14.69691 41.4833786,14.0180529 C41.9848071,13.3391957 42.3550929,12.5523386 42.5942357,11.6574814 C42.8333786,10.7626243 42.95295,9.82919571 42.95295,8.85719571 C42.95295,7.70005286 42.8102357,6.66248143 42.5248071,5.74448143 C42.2393786,4.82648143 41.8266643,4.04348143 41.2866643,3.39548143 C40.7466643,2.74748143 40.09095,2.25376714 39.3195214,1.91433857 C38.5480929,1.57491 37.6840929,1.40519571 36.7275214,1.40519571 C35.66295,1.40519571 34.7410929,1.61348143 33.96195,2.03005286 C33.1828071,2.44662429 32.5425214,2.99819571 32.0410929,3.68476714 C31.5396643,4.37133857 31.1693786,5.16205286 30.9302357,6.05691 C30.6910929,6.95176714 30.5715214,7.88519571 30.5715214,8.85719571 C30.5715214,9.84462429 30.6910929,10.7857671 30.9302357,11.6806243 C31.1693786,12.5754814 31.5396643,13.3623386 32.0410929,14.0411957 C32.5425214,14.7200529 33.1828071,15.2600529 33.96195,15.6611957 C34.7410929,16.0623386 35.6783786,16.26291 36.7738071,16.26291 M28.9978071,8.85719571 C28.9978071,7.63833857 29.1636643,6.49662429 29.4953786,5.43205286 C29.8270929,4.36748143 30.31695,3.43791 30.96495,2.64333857 C31.61295,1.84876714 32.4152357,1.22005286 33.3718071,0.757195714 C34.3283786,0.294338571 35.4315214,0.06291 36.6812357,0.06291 C37.9772357,0.06291 39.1150929,0.290481429 40.0948071,0.745624286 C41.0745214,1.20076714 41.8922357,1.82562429 42.54795,2.62019571 C43.2036643,3.41476714 43.6973786,4.34819571 44.0290929,5.42048143 C44.3608071,6.49276714 44.5266643,7.63833857 44.5266643,8.85719571 C44.5266643,10.0606243 44.3608071,11.1907671 44.0290929,12.2476243 C43.6973786,13.3044814 43.2075214,14.2301957 42.5595214,15.0247671 C41.9115214,15.8193386 41.1015214,16.4480529 40.1295214,16.91091 C39.1575214,17.3737671 38.0312357,17.6051957 36.7506643,17.6051957 C35.4700929,17.6051957 34.3438071,17.3737671 33.3718071,16.91091 C32.3998071,16.4480529 31.5898071,15.8193386 30.9418071,15.0247671 C30.2938071,14.2301957 29.8078071,13.3044814 29.4838071,12.2476243 C29.1598071,11.1907671 28.9978071,10.0606243 28.9978071,8.85719571" id="Fill-5" fill="#000000"></path>
|
|
13
|
+
<path d="M47.8592357,11.8887171 C47.8592357,12.4132886 47.8785214,12.9301457 47.9170929,13.4392886 C47.9556643,13.9484314 48.0713786,14.4074314 48.2642357,14.8162886 C48.4570929,15.2251457 48.75795,15.5530029 49.1668071,15.79986 C49.5756643,16.0467171 50.1426643,16.1701457 50.8678071,16.1701457 C51.9478071,16.1701457 52.7076643,15.8615743 53.1473786,15.2444314 C53.5870929,14.6272886 53.80695,13.7324314 53.80695,12.55986 L53.80695,0.502431429 L55.3806643,0.502431429 L55.3806643,12.6061457 C55.3806643,14.2261457 55.0026643,15.4642886 54.2466643,16.3205743 C53.4906643,17.17686 52.3026643,17.6050029 50.6826643,17.6050029 C49.7415214,17.6050029 48.9855214,17.44686 48.4146643,17.1305743 C47.8438071,16.8142886 47.4002357,16.3900029 47.08395,15.8577171 C46.7676643,15.3254314 46.5555214,14.7160029 46.4475214,14.0294314 C46.3395214,13.34286 46.2855214,12.6292886 46.2855214,11.8887171 L47.8592357,11.8887171 Z" id="Fill-7" fill="#000000"></path>
|
|
14
|
+
<polygon id="Fill-9" fill="#000000" points="59.2225714 17.1650957 59.2225714 0.502238571 70.308 0.502238571 70.308 1.84452429 60.7962857 1.84452429 60.7962857 7.86166714 69.3822857 7.86166714 69.3822857 9.20395286 60.7962857 9.20395286 60.7962857 15.82281 70.5394286 15.82281 70.5394286 17.1650957"></polygon>
|
|
15
|
+
<path d="M85.1886643,5.33928857 C84.8646643,3.91986 84.26295,2.90928857 83.3835214,2.30757429 C82.5040929,1.70586 81.3546643,1.40500286 79.9352357,1.40500286 C78.9323786,1.40500286 78.0683786,1.60557429 77.3432357,2.00671714 C76.6180929,2.40786 76.0202357,2.94786 75.5496643,3.62671714 C75.0790929,4.30557429 74.73195,5.08857429 74.5082357,5.97571714 C74.2845214,6.86286 74.1726643,7.80014571 74.1726643,8.78757429 C74.1726643,9.71328857 74.2690929,10.6235743 74.46195,11.5184314 C74.6548071,12.4132886 74.97495,13.2117171 75.4223786,13.9137171 C75.8698071,14.6157171 76.4715214,15.1827171 77.2275214,15.6147171 C77.9835214,16.0467171 78.9323786,16.2627171 80.0740929,16.2627171 C80.7838071,16.2627171 81.4318071,16.1470029 82.0180929,15.9155743 C82.6043786,15.6841457 83.1173786,15.3640029 83.5570929,14.9551457 C83.9968071,14.5462886 84.3670929,14.0641457 84.66795,13.5087171 C84.9688071,12.9532886 85.1963786,12.34386 85.3506643,11.6804314 L86.9938071,11.6804314 C86.8086643,12.4827171 86.5386643,13.2425743 86.1838071,13.9600029 C85.82895,14.6774314 85.3622357,15.3061457 84.7836643,15.8461457 C84.2050929,16.3861457 83.5030929,16.8142886 82.6776643,17.1305743 C81.8522357,17.44686 80.8840929,17.6050029 79.7732357,17.6050029 C78.4926643,17.6050029 77.3972357,17.3697171 76.48695,16.8991457 C75.5766643,16.4285743 74.8322357,15.7921457 74.2536643,14.98986 C73.6750929,14.1875743 73.2546643,13.2580029 72.9923786,12.2011457 C72.7300929,11.1442886 72.59895,10.02186 72.59895,8.83386 C72.59895,7.24471714 72.7956643,5.89471714 73.1890929,4.78386 C73.5825214,3.67300286 74.1263786,2.76657429 74.8206643,2.06457429 C75.51495,1.36257429 76.3326643,0.853431429 77.2738071,0.537145714 C78.21495,0.22086 79.24095,0.0627171429 80.3518071,0.0627171429 C81.2003786,0.0627171429 81.9910929,0.174574286 82.72395,0.398288571 C83.4568071,0.622002857 84.1048071,0.957574286 84.66795,1.40500286 C85.2310929,1.85243143 85.69395,2.40400286 86.0565214,3.05971714 C86.4190929,3.71543143 86.6698071,4.47528857 86.8086643,5.33928857 L85.1886643,5.33928857 Z" id="Fill-11" fill="#000000"></path>
|
|
16
|
+
<polygon id="Fill-13" fill="#000000" points="88.5673286 0.501852857 100.694186 0.501852857 100.694186 1.84413857 95.4176143 1.84413857 95.4176143 17.16471 93.8439 17.16471 93.8439 1.84413857 88.5673286 1.84413857"></polygon>
|
|
17
|
+
<mask id="mask-2" fill="white">
|
|
18
|
+
<use xlink:href="#path-1"></use>
|
|
19
|
+
</mask>
|
|
20
|
+
<g id="Clip-16"></g>
|
|
21
|
+
<polygon id="Fill-15" fill="#D02B2F" mask="url(#mask-2)" points="109.124357 17.1654814 111.056786 17.1654814 111.056786 0.329052857 109.124357 0.329052857"></polygon>
|
|
22
|
+
<polygon id="Fill-17" fill="#000000" mask="url(#mask-2)" points="120.531086 14.2269171 129.045729 3.45777429 120.745157 3.45777429 120.745157 0.508988571 133.367657 0.508988571 133.367657 3.29963143 124.745014 14.2269171 133.3908 14.2269171 133.3908 17.1641314 120.531086 17.1641314"></polygon>
|
|
23
|
+
<polygon id="Fill-18" fill="#000000" mask="url(#mask-2)" points="148.159993 3.45777429 139.346421 3.45777429 139.346421 6.99477429 147.436779 6.99477429 147.436779 9.88763143 139.346421 9.88763143 139.346421 14.1709886 148.566921 14.1709886 148.566921 17.1641314 135.944421 17.1641314 135.944421 0.508988571 148.159993 0.508988571"></polygon>
|
|
24
|
+
<path d="M154.759371,3.40126714 L154.759371,7.87555286 L158.504657,7.87555286 C159.249086,7.87555286 159.806443,7.78491 160.180586,7.60555286 C160.8363,7.28926714 161.166086,6.66248143 161.166086,5.72905286 C161.166086,4.72041 160.847871,4.04155286 160.211443,3.69441 C159.854657,3.49962429 159.316586,3.40126714 158.601086,3.40126714 L154.759371,3.40126714 Z M161.952943,0.938481429 C162.566229,1.20076714 163.085014,1.59033857 163.513157,2.10141 C163.864157,2.52376714 164.1438,2.99048143 164.350157,3.50348143 C164.556514,4.01455286 164.658729,4.59891 164.658729,5.25462429 C164.658729,6.04533857 164.458157,6.82255286 164.058943,7.58819571 C163.659729,8.35191 163.000157,8.89383857 162.082157,9.21012429 C162.849729,9.51869571 163.395514,9.95648143 163.715657,10.52541 C164.0358,11.0943386 164.195871,11.9621957 164.195871,13.13091 L164.195871,14.2494814 C164.195871,15.0112671 164.2248,15.5261957 164.286514,15.7981243 C164.379086,16.2262671 164.593157,16.5425529 164.928729,16.7469814 L164.928729,17.1654814 L161.087014,17.1654814 C160.982871,16.7951957 160.907657,16.4981957 160.861371,16.2725529 C160.770729,15.8058386 160.722514,15.3275529 160.7148,14.8376957 L160.691657,13.2890529 C160.678157,12.22641 160.494943,11.5186243 160.142014,11.1637671 C159.789086,10.8108386 159.127586,10.63341 158.159443,10.63341 L154.759371,10.63341 L154.759371,17.1654814 L151.357371,17.1654814 L151.357371,0.50841 L159.3243,0.50841 C160.464086,0.531552857 161.339657,0.674267143 161.952943,0.938481429 L161.952943,0.938481429 Z" id="Fill-19" fill="#000000" mask="url(#mask-2)"></path>
|
|
25
|
+
<path d="M178.642414,13.1534743 C179.452414,12.1371171 179.857414,10.6906886 179.857414,8.81418857 C179.857414,6.94540286 179.452414,5.50090286 178.642414,4.48068857 C177.832414,3.46047429 176.738914,2.94940286 175.359986,2.94940286 C173.981057,2.94940286 172.881771,3.45854571 172.0602,4.47490286 C171.238629,5.49126 170.827843,6.93768857 170.827843,8.81418857 C170.827843,10.6906886 171.238629,12.1371171 172.0602,13.1534743 C172.881771,14.1698314 173.981057,14.6789743 175.359986,14.6789743 C176.738914,14.6789743 177.832414,14.1698314 178.642414,13.1534743 M180.817843,15.68376 C179.560414,16.97976 177.739843,17.62776 175.359986,17.62776 C172.9782,17.62776 171.159557,16.97976 169.902129,15.68376 C168.214629,14.0946171 167.369914,11.8054029 167.369914,8.81418857 C167.369914,5.76318857 168.214629,3.47204571 169.902129,1.94461714 C171.159557,0.648617143 172.9782,0.000617142857 175.359986,0.000617142857 C177.739843,0.000617142857 179.560414,0.648617143 180.817843,1.94461714 C182.497629,3.47204571 183.338486,5.76318857 183.338486,8.81418857 C183.338486,11.8054029 182.497629,14.0946171 180.817843,15.68376" id="Fill-20" fill="#000000" mask="url(#mask-2)"></path>
|
|
26
|
+
</g>
|
|
27
|
+
</g>
|
|
28
|
+
</g>
|
|
29
|
+
</svg>
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Project Zero | Next",
|
|
3
|
+
"short_name": "PZ | Next",
|
|
4
|
+
"icons": [
|
|
5
|
+
{
|
|
6
|
+
"src": "/icon-192x192.png",
|
|
7
|
+
"sizes": "192x192",
|
|
8
|
+
"type": "image/png",
|
|
9
|
+
"purpose": "maskable"
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"src": "/icon-256x256.png",
|
|
13
|
+
"sizes": "256x256",
|
|
14
|
+
"type": "image/png",
|
|
15
|
+
"purpose": "any"
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
"src": "/icon-384x384.png",
|
|
19
|
+
"sizes": "384x384",
|
|
20
|
+
"type": "image/png",
|
|
21
|
+
"purpose": "any"
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"src": "/icon-512x512.png",
|
|
25
|
+
"sizes": "512x512",
|
|
26
|
+
"type": "image/png",
|
|
27
|
+
"purpose": "any"
|
|
28
|
+
}
|
|
29
|
+
],
|
|
30
|
+
"theme_color": "#FFFFFF",
|
|
31
|
+
"background_color": "#FFFFFF",
|
|
32
|
+
"start_url": "/",
|
|
33
|
+
"display": "standalone",
|
|
34
|
+
"orientation": "portrait"
|
|
35
|
+
}
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
/*! mfs-client 21-12-2021 */
|
|
2
|
+
|
|
3
|
+
var dbits,superagentLegacyIESupportPlugin=function(t){function i(t){if(t!==Object(t))return t;var e,r=[];for(e in t)null!=t[e]&&r.push(encodeURIComponent(e)+"="+encodeURIComponent(t[e]));return r.join("&")}var e,r;(e=t.url,(r=document.createElement("a")).href=e,{hostname:r.hostname,protocol:r.protocol,pathname:r.pathname,queryString:r.search}).hostname!=window.location.hostname&&"undefined"!=typeof XDomainRequest&&(t.end=function(t){var e=this,r=this.xhr=new XDomainRequest;r.getAllResponseHeaders=function(){return""},r.getResponseHeader=function(t){if("content-type"==t)return"application/json"};var n=this._query.join("&"),o=this._formData||this._data;if(this._callback=t||noop,r.onload=function(){r.status=200,e.emit("end")},r.onerror=function(){return r.status=400,e.aborted?e.timeoutError():e.crossDomainError()},r.onprogress=function(){e.emit("progress",50)},r.ontimeout=function(){return r.status=408,e.timeoutError()},n&&(n=i(n),this.url+=~this.url.indexOf("?")?"&"+n:"?"+n),"GET"!=this.method&&"POST"!=this.method)throw"Only Get and Post methods are supported by XDomainRequest object.";return r.open(this.method,this.url,!0),"POST"==this.method&&"string"!=typeof o&&(o=i(o)),this.emit("request",this),r.send(o),this})},canary=0xdeadbeefcafe,j_lm=15715070==(16777215&canary);function BigInteger(t,e,r){null!=t&&("number"==typeof t?this.fromNumber(t,e,r):null==e&&"string"!=typeof t?this.fromString(t,256):this.fromString(t,e))}function nbi(){return new BigInteger(null)}function am1(t,e,r,n,o,i){for(;0<=--i;){var s=e*this[t++]+r[n]+o;o=Math.floor(s/67108864),r[n++]=67108863&s}return o}function am2(t,e,r,n,o,i){for(var s=32767&e,a=e>>15;0<=--i;){var u=32767&this[t],c=this[t++]>>15,l=a*u+c*s;o=((u=s*u+((32767&l)<<15)+r[n]+(1073741823&o))>>>30)+(l>>>15)+a*c+(o>>>30),r[n++]=1073741823&u}return o}function am3(t,e,r,n,o,i){for(var s=16383&e,a=e>>14;0<=--i;){var u=16383&this[t],c=this[t++]>>14,l=a*u+c*s;o=((u=s*u+((16383&l)<<14)+r[n]+o)>>28)+(l>>14)+a*c,r[n++]=268435455&u}return o}dbits=j_lm&&"Microsoft Internet Explorer"==navigator.appName?(BigInteger.prototype.am=am2,30):j_lm&&"Netscape"!=navigator.appName?(BigInteger.prototype.am=am1,26):(BigInteger.prototype.am=am3,28),BigInteger.prototype.DB=dbits,BigInteger.prototype.DM=(1<<dbits)-1,BigInteger.prototype.DV=1<<dbits;var BI_FP=52;BigInteger.prototype.FV=Math.pow(2,BI_FP),BigInteger.prototype.F1=BI_FP-dbits,BigInteger.prototype.F2=2*dbits-BI_FP;for(var BI_RM="0123456789abcdefghijklmnopqrstuvwxyz",BI_RC=new Array,rr="0".charCodeAt(0),vv=0;vv<=9;++vv)BI_RC[rr++]=vv;for(rr="a".charCodeAt(0),vv=10;vv<36;++vv)BI_RC[rr++]=vv;for(rr="A".charCodeAt(0),vv=10;vv<36;++vv)BI_RC[rr++]=vv;function int2char(t){return BI_RM.charAt(t)}function intAt(t,e){e=BI_RC[t.charCodeAt(e)];return null==e?-1:e}function bnpCopyTo(t){for(var e=this.t-1;0<=e;--e)t[e]=this[e];t.t=this.t,t.s=this.s}function bnpFromInt(t){this.t=1,this.s=t<0?-1:0,0<t?this[0]=t:t<-1?this[0]=t+this.DV:this.t=0}function nbv(t){var e=nbi();return e.fromInt(t),e}function bnpFromString(t,e){var r;if(16==e)r=4;else if(8==e)r=3;else if(256==e)r=8;else if(2==e)r=1;else if(32==e)r=5;else{if(4!=e)return void this.fromRadix(t,e);r=2}this.t=0,this.s=0;for(var n=t.length,o=!1,i=0;0<=--n;){var s=8==r?255&t[n]:intAt(t,n);s<0?"-"==t.charAt(n)&&(o=!0):(o=!1,0==i?this[this.t++]=s:i+r>this.DB?(this[this.t-1]|=(s&(1<<this.DB-i)-1)<<i,this[this.t++]=s>>this.DB-i):this[this.t-1]|=s<<i,(i+=r)>=this.DB&&(i-=this.DB))}8==r&&0!=(128&t[0])&&(this.s=-1,0<i&&(this[this.t-1]|=(1<<this.DB-i)-1<<i)),this.clamp(),o&&BigInteger.ZERO.subTo(this,this)}function bnpClamp(){for(var t=this.s&this.DM;0<this.t&&this[this.t-1]==t;)--this.t}function bnToString(t){if(this.s<0)return"-"+this.negate().toString(t);var e;if(16==t)e=4;else if(8==t)e=3;else if(2==t)e=1;else if(32==t)e=5;else{if(4!=t)return this.toRadix(t);e=2}var r,n=(1<<e)-1,o=!1,i="",s=this.t,a=this.DB-s*this.DB%e;if(0<s--)for(a<this.DB&&0<(r=this[s]>>a)&&(o=!0,i=int2char(r));0<=s;)a<e?(r=(this[s]&(1<<a)-1)<<e-a,r|=this[--s]>>(a+=this.DB-e)):(r=this[s]>>(a-=e)&n,a<=0&&(a+=this.DB,--s)),(o=0<r?!0:o)&&(i+=int2char(r));return o?i:"0"}function bnNegate(){var t=nbi();return BigInteger.ZERO.subTo(this,t),t}function bnAbs(){return this.s<0?this.negate():this}function bnCompareTo(t){var e=this.s-t.s;if(0!=e)return e;var r=this.t;if(0!=(e=r-t.t))return this.s<0?-e:e;for(;0<=--r;)if(0!=(e=this[r]-t[r]))return e;return 0}function nbits(t){var e,r=1;return 0!=(e=t>>>16)&&(t=e,r+=16),0!=(e=t>>8)&&(t=e,r+=8),0!=(e=t>>4)&&(t=e,r+=4),0!=(e=t>>2)&&(t=e,r+=2),0!=(e=t>>1)&&(t=e,r+=1),r}function bnBitLength(){return this.t<=0?0:this.DB*(this.t-1)+nbits(this[this.t-1]^this.s&this.DM)}function bnpDLShiftTo(t,e){for(var r=this.t-1;0<=r;--r)e[r+t]=this[r];for(r=t-1;0<=r;--r)e[r]=0;e.t=this.t+t,e.s=this.s}function bnpDRShiftTo(t,e){for(var r=t;r<this.t;++r)e[r-t]=this[r];e.t=Math.max(this.t-t,0),e.s=this.s}function bnpLShiftTo(t,e){for(var r=t%this.DB,n=this.DB-r,o=(1<<n)-1,i=Math.floor(t/this.DB),s=this.s<<r&this.DM,a=this.t-1;0<=a;--a)e[a+i+1]=this[a]>>n|s,s=(this[a]&o)<<r;for(a=i-1;0<=a;--a)e[a]=0;e[i]=s,e.t=this.t+i+1,e.s=this.s,e.clamp()}function bnpRShiftTo(t,e){e.s=this.s;var r=Math.floor(t/this.DB);if(r>=this.t)e.t=0;else{var n=t%this.DB,o=this.DB-n,i=(1<<n)-1;e[0]=this[r]>>n;for(var s=r+1;s<this.t;++s)e[s-r-1]|=(this[s]&i)<<o,e[s-r]=this[s]>>n;0<n&&(e[this.t-r-1]|=(this.s&i)<<o),e.t=this.t-r,e.clamp()}}function bnpSubTo(t,e){for(var r=0,n=0,o=Math.min(t.t,this.t);r<o;)n+=this[r]-t[r],e[r++]=n&this.DM,n>>=this.DB;if(t.t<this.t){for(n-=t.s;r<this.t;)n+=this[r],e[r++]=n&this.DM,n>>=this.DB;n+=this.s}else{for(n+=this.s;r<t.t;)n-=t[r],e[r++]=n&this.DM,n>>=this.DB;n-=t.s}e.s=n<0?-1:0,n<-1?e[r++]=this.DV+n:0<n&&(e[r++]=n),e.t=r,e.clamp()}function bnpMultiplyTo(t,e){var r=this.abs(),n=t.abs(),o=r.t;for(e.t=o+n.t;0<=--o;)e[o]=0;for(o=0;o<n.t;++o)e[o+r.t]=r.am(0,n[o],e,o,0,r.t);e.s=0,e.clamp(),this.s!=t.s&&BigInteger.ZERO.subTo(e,e)}function bnpSquareTo(t){for(var e=this.abs(),r=t.t=2*e.t;0<=--r;)t[r]=0;for(r=0;r<e.t-1;++r){var n=e.am(r,e[r],t,2*r,0,1);(t[r+e.t]+=e.am(r+1,2*e[r],t,2*r+1,n,e.t-r-1))>=e.DV&&(t[r+e.t]-=e.DV,t[r+e.t+1]=1)}0<t.t&&(t[t.t-1]+=e.am(r,e[r],t,2*r,0,1)),t.s=0,t.clamp()}function bnpDivRemTo(t,e,r){var n=t.abs();if(!(n.t<=0)){var o=this.abs();if(o.t<n.t)return null!=e&&e.fromInt(0),void(null!=r&&this.copyTo(r));null==r&&(r=nbi());var i=nbi(),s=this.s,a=t.s,t=this.DB-nbits(n[n.t-1]);0<t?(n.lShiftTo(t,i),o.lShiftTo(t,r)):(n.copyTo(i),o.copyTo(r));var u=i.t,c=i[u-1];if(0!=c){var o=c*(1<<this.F1)+(1<u?i[u-2]>>this.F2:0),l=this.FV/o,p=(1<<this.F1)/o,f=1<<this.F2,h=r.t,d=h-u,y=null==e?nbi():e;for(i.dlShiftTo(d,y),0<=r.compareTo(y)&&(r[r.t++]=1,r.subTo(y,r)),BigInteger.ONE.dlShiftTo(u,y),y.subTo(i,i);i.t<u;)i[i.t++]=0;for(;0<=--d;){var m=r[--h]==c?this.DM:Math.floor(r[h]*l+(r[h-1]+f)*p);if((r[h]+=i.am(0,m,r,d,0,u))<m)for(i.dlShiftTo(d,y),r.subTo(y,r);r[h]<--m;)r.subTo(y,r)}null!=e&&(r.drShiftTo(u,e),s!=a&&BigInteger.ZERO.subTo(e,e)),r.t=u,r.clamp(),0<t&&r.rShiftTo(t,r),s<0&&BigInteger.ZERO.subTo(r,r)}}}function bnMod(t){var e=nbi();return this.abs().divRemTo(t,null,e),this.s<0&&0<e.compareTo(BigInteger.ZERO)&&t.subTo(e,e),e}function Classic(t){this.m=t}function cConvert(t){return t.s<0||0<=t.compareTo(this.m)?t.mod(this.m):t}function cRevert(t){return t}function cReduce(t){t.divRemTo(this.m,null,t)}function cMulTo(t,e,r){t.multiplyTo(e,r),this.reduce(r)}function cSqrTo(t,e){t.squareTo(e),this.reduce(e)}function bnpInvDigit(){if(this.t<1)return 0;var t=this[0];if(0==(1&t))return 0;var e=3&t;return 0<(e=(e=(e=(e=e*(2-(15&t)*e)&15)*(2-(255&t)*e)&255)*(2-((65535&t)*e&65535))&65535)*(2-t*e%this.DV)%this.DV)?this.DV-e:-e}function Montgomery(t){this.m=t,this.mp=t.invDigit(),this.mpl=32767&this.mp,this.mph=this.mp>>15,this.um=(1<<t.DB-15)-1,this.mt2=2*t.t}function montConvert(t){var e=nbi();return t.abs().dlShiftTo(this.m.t,e),e.divRemTo(this.m,null,e),t.s<0&&0<e.compareTo(BigInteger.ZERO)&&this.m.subTo(e,e),e}function montRevert(t){var e=nbi();return t.copyTo(e),this.reduce(e),e}function montReduce(t){for(;t.t<=this.mt2;)t[t.t++]=0;for(var e=0;e<this.m.t;++e){var r=32767&t[e],n=r*this.mpl+((r*this.mph+(t[e]>>15)*this.mpl&this.um)<<15)&t.DM;for(t[r=e+this.m.t]+=this.m.am(0,n,t,e,0,this.m.t);t[r]>=t.DV;)t[r]-=t.DV,t[++r]++}t.clamp(),t.drShiftTo(this.m.t,t),0<=t.compareTo(this.m)&&t.subTo(this.m,t)}function montSqrTo(t,e){t.squareTo(e),this.reduce(e)}function montMulTo(t,e,r){t.multiplyTo(e,r),this.reduce(r)}function bnpIsEven(){return 0==(0<this.t?1&this[0]:this.s)}function bnpExp(t,e){if(4294967295<t||t<1)return BigInteger.ONE;var r,n=nbi(),o=nbi(),i=e.convert(this),s=nbits(t)-1;for(i.copyTo(n);0<=--s;)e.sqrTo(n,o),0<(t&1<<s)?e.mulTo(o,i,n):(r=n,n=o,o=r);return e.revert(n)}function bnModPowInt(t,e){e=new(t<256||e.isEven()?Classic:Montgomery)(e);return this.exp(t,e)}function Arcfour(){this.i=0,this.j=0,this.S=new Array}function ARC4init(t){for(var e,r,n=0;n<256;++n)this.S[n]=n;for(n=e=0;n<256;++n)e=e+this.S[n]+t[n%t.length]&255,r=this.S[n],this.S[n]=this.S[e],this.S[e]=r;this.i=0,this.j=0}function ARC4next(){var t;return this.i=this.i+1&255,this.j=this.j+this.S[this.i]&255,t=this.S[this.i],this.S[this.i]=this.S[this.j],this.S[this.j]=t,this.S[t+this.S[this.i]&255]}function prng_newstate(){return new Arcfour}Classic.prototype.convert=cConvert,Classic.prototype.revert=cRevert,Classic.prototype.reduce=cReduce,Classic.prototype.mulTo=cMulTo,Classic.prototype.sqrTo=cSqrTo,Montgomery.prototype.convert=montConvert,Montgomery.prototype.revert=montRevert,Montgomery.prototype.reduce=montReduce,Montgomery.prototype.mulTo=montMulTo,Montgomery.prototype.sqrTo=montSqrTo,BigInteger.prototype.copyTo=bnpCopyTo,BigInteger.prototype.fromInt=bnpFromInt,BigInteger.prototype.fromString=bnpFromString,BigInteger.prototype.clamp=bnpClamp,BigInteger.prototype.dlShiftTo=bnpDLShiftTo,BigInteger.prototype.drShiftTo=bnpDRShiftTo,BigInteger.prototype.lShiftTo=bnpLShiftTo,BigInteger.prototype.rShiftTo=bnpRShiftTo,BigInteger.prototype.subTo=bnpSubTo,BigInteger.prototype.multiplyTo=bnpMultiplyTo,BigInteger.prototype.squareTo=bnpSquareTo,BigInteger.prototype.divRemTo=bnpDivRemTo,BigInteger.prototype.invDigit=bnpInvDigit,BigInteger.prototype.isEven=bnpIsEven,BigInteger.prototype.exp=bnpExp,BigInteger.prototype.toString=bnToString,BigInteger.prototype.negate=bnNegate,BigInteger.prototype.abs=bnAbs,BigInteger.prototype.compareTo=bnCompareTo,BigInteger.prototype.bitLength=bnBitLength,BigInteger.prototype.mod=bnMod,BigInteger.prototype.modPowInt=bnModPowInt,BigInteger.ZERO=nbv(0),BigInteger.ONE=nbv(1),Arcfour.prototype.init=ARC4init,Arcfour.prototype.next=ARC4next;var rng_state,rng_psize=256;function rng_seed_int(t){rng_pool[rng_pptr++]^=255&t,rng_pool[rng_pptr++]^=t>>8&255,rng_pool[rng_pptr++]^=t>>16&255,rng_pool[rng_pptr++]^=t>>24&255,rng_psize<=rng_pptr&&(rng_pptr-=rng_psize)}function rng_seed_time(){rng_seed_int((new Date).getTime())}if(null==rng_pool){var rng_pool=new Array,rng_pptr=0;if(window.crypto&&window.crypto.getRandomValues){var ua=new Uint8Array(32);for(window.crypto.getRandomValues(ua),t=0;t<32;++t)rng_pool[rng_pptr++]=ua[t]}if("Netscape"==navigator.appName&&navigator.appVersion<"5"&&window.crypto)for(var z=window.crypto.random(32),t=0;t<z.length;++t)rng_pool[rng_pptr++]=255&z.charCodeAt(t);for(;rng_pptr<rng_psize;)t=Math.floor(65536*Math.random()),rng_pool[rng_pptr++]=t>>>8,rng_pool[rng_pptr++]=255&t;rng_pptr=0,rng_seed_time()}function rng_get_byte(){if(null==rng_state){for(rng_seed_time(),(rng_state=prng_newstate()).init(rng_pool),rng_pptr=0;rng_pptr<rng_pool.length;++rng_pptr)rng_pool[rng_pptr]=0;rng_pptr=0}return rng_state.next()}function rng_get_bytes(t){for(var e=0;e<t.length;++e)t[e]=rng_get_byte()}function SecureRandom(){}function parseBigInt(t,e){return new BigInteger(t,e)}function linebrk(t,e){for(var r="",n=0;n+e<t.length;)r+=t.substring(n,n+e)+"\n",n+=e;return r+t.substring(n,t.length)}function byte2Hex(t){return t<16?"0"+t.toString(16):t.toString(16)}function pkcs1pad2(t,e){if(e<t.length+11)return alert("Message too long for RSA"),null;for(var r=new Array,n=t.length-1;0<=n&&0<e;){var o=t.charCodeAt(n--);o<128?r[--e]=o:127<o&&o<2048?(r[--e]=63&o|128,r[--e]=o>>6|192):(r[--e]=63&o|128,r[--e]=o>>6&63|128,r[--e]=o>>12|224)}r[--e]=0;for(var i=new SecureRandom,s=new Array;2<e;){for(s[0]=0;0==s[0];)i.nextBytes(s);r[--e]=s[0]}return r[--e]=2,r[--e]=0,new BigInteger(r)}function RSAKey(){this.n=null,this.e=0,this.d=null,this.p=null,this.q=null,this.dmp1=null,this.dmq1=null,this.coeff=null}function RSASetPublic(t,e){null!=t&&null!=e&&0<t.length&&0<e.length?(this.n=parseBigInt(t,16),this.e=parseInt(e,16)):alert("Invalid RSA public key")}function RSADoPublic(t){return t.modPowInt(this.e,this.n)}function RSAEncrypt(t){t=pkcs1pad2(t,this.n.bitLength()+7>>3);if(null==t)return null;t=this.doPublic(t);if(null==t)return null;t=t.toString(16);return 0==(1&t.length)?t:"0"+t}SecureRandom.prototype.nextBytes=rng_get_bytes,RSAKey.prototype.doPublic=RSADoPublic,RSAKey.prototype.setPublic=RSASetPublic,RSAKey.prototype.encrypt=RSAEncrypt;var b64map="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/",b64padchar="=";function hex2b64(t){for(var e,r="",n=0;n+3<=t.length;n+=3)e=parseInt(t.substring(n,n+3),16),r+=b64map.charAt(e>>6)+b64map.charAt(63&e);for(n+1==t.length?(e=parseInt(t.substring(n,n+1),16),r+=b64map.charAt(e<<2)):n+2==t.length&&(e=parseInt(t.substring(n,n+2),16),r+=b64map.charAt(e>>2)+b64map.charAt((3&e)<<4));0<(3&r.length);)r+=b64padchar;return r}function b64tohex(t){for(var e,r="",n=0,o=0;o<t.length&&t.charAt(o)!=b64padchar;++o)v=b64map.indexOf(t.charAt(o)),v<0||(n=0==n?(r+=int2char(v>>2),e=3&v,1):1==n?(r+=int2char(e<<2|v>>4),e=15&v,2):2==n?(r+=int2char(e),r+=int2char(v>>2),e=3&v,3):(r+=int2char(e<<2|v>>4),r+=int2char(15&v),0));return 1==n&&(r+=int2char(e<<2)),r}function b64toBA(t){for(var e=b64tohex(t),r=new Array,n=0;2*n<e.length;++n)r[n]=parseInt(e.substring(2*n,2*n+2),16);return r}!function(t){"object"==typeof exports&&"undefined"!=typeof module?module.exports=t():"function"==typeof define&&define.amd?define([],t):("undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this).superagent=t()}(function(){return function n(o,i,s){function a(e,t){if(!i[e]){if(!o[e]){var r="function"==typeof require&&require;if(!t&&r)return r(e,!0);if(u)return u(e,!0);throw(r=new Error("Cannot find module '"+e+"'")).code="MODULE_NOT_FOUND",r}r=i[e]={exports:{}},o[e][0].call(r.exports,function(t){return a(o[e][1][t]||t)},r,r.exports,n,o,i,s)}return i[e].exports}for(var u="function"==typeof require&&require,t=0;t<s.length;t++)a(s[t]);return a}({1:[function(t,e,r){"use strict";function n(t){if(t)return function(t){for(var e in n.prototype)t[e]=n.prototype[e];return t}(t)}void 0!==e&&(e.exports=n),n.prototype.on=n.prototype.addEventListener=function(t,e){return this._callbacks=this._callbacks||{},(this._callbacks["$"+t]=this._callbacks["$"+t]||[]).push(e),this},n.prototype.once=function(t,e){function r(){this.off(t,r),e.apply(this,arguments)}return r.fn=e,this.on(t,r),this},n.prototype.off=n.prototype.removeListener=n.prototype.removeAllListeners=n.prototype.removeEventListener=function(t,e){if(this._callbacks=this._callbacks||{},0==arguments.length)return this._callbacks={},this;var r,n=this._callbacks["$"+t];if(!n)return this;if(1==arguments.length)return delete this._callbacks["$"+t],this;for(var o=0;o<n.length;o++)if((r=n[o])===e||r.fn===e){n.splice(o,1);break}return 0===n.length&&delete this._callbacks["$"+t],this},n.prototype.emit=function(t){this._callbacks=this._callbacks||{};for(var e=new Array(arguments.length-1),r=this._callbacks["$"+t],n=1;n<arguments.length;n++)e[n-1]=arguments[n];if(r)for(var n=0,o=(r=r.slice(0)).length;n<o;++n)r[n].apply(this,e);return this},n.prototype.listeners=function(t){return this._callbacks=this._callbacks||{},this._callbacks["$"+t]||[]},n.prototype.hasListeners=function(t){return!!this.listeners(t).length}},{}],2:[function(t,e,r){"use strict";function l(t){return(l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}((e.exports=n).default=n).stable=o,n.stableStringify=o;var p=[],f=[];function n(t,e,r){for(!function t(e,r,n,o){var i;if("object"===l(e)&&null!==e){for(i=0;i<n.length;i++)if(n[i]===e){var s=Object.getOwnPropertyDescriptor(o,r);return void(void 0!==s.get?s.configurable?(Object.defineProperty(o,r,{value:"[Circular]"}),p.push([o,r,e,s])):f.push([e,r]):(o[r]="[Circular]",p.push([o,r,e])))}if(n.push(e),Array.isArray(e))for(i=0;i<e.length;i++)t(e[i],i,n,e);else{var a=Object.keys(e);for(i=0;i<a.length;i++){var u=a[i];t(e[u],u,n,e)}}n.pop()}}(t,"",[],void 0),r=0===f.length?JSON.stringify(t,e,r):JSON.stringify(t,i(e),r);0!==p.length;){var n=p.pop();4===n.length?Object.defineProperty(n[0],n[1],n[3]):n[0][n[1]]=n[2]}return r}function h(t,e){return t<e?-1:e<t?1:0}function o(t,e,r){for(t=function t(e,r,n,o){var i;if("object"===l(e)&&null!==e){for(i=0;i<n.length;i++)if(n[i]===e){var s=Object.getOwnPropertyDescriptor(o,r);return void(void 0!==s.get?s.configurable?(Object.defineProperty(o,r,{value:"[Circular]"}),p.push([o,r,e,s])):f.push([e,r]):(o[r]="[Circular]",p.push([o,r,e])))}if("function"!=typeof e.toJSON){if(n.push(e),Array.isArray(e))for(i=0;i<e.length;i++)t(e[i],i,n,e);else{var a={},u=Object.keys(e).sort(h);for(i=0;i<u.length;i++){var c=u[i];t(e[c],c,n,e),a[c]=e[c]}if(void 0===o)return a;p.push([o,r,e]),o[r]=a}n.pop()}}}(t,"",[],void 0)||t,r=0===f.length?JSON.stringify(t,e,r):JSON.stringify(t,i(e),r);0!==p.length;){var n=p.pop();4===n.length?Object.defineProperty(n[0],n[1],n[3]):n[0][n[1]]=n[2]}return r}function i(o){return o=void 0!==o?o:function(t,e){return e},function(t,e){if(0<f.length)for(var r=0;r<f.length;r++){var n=f[r];if(n[1]===t&&n[0]===e){e="[Circular]",f.splice(r,1);break}}return o.call(this,t,e)}}},{}],3:[function(t,e,r){"use strict";var n=String.prototype.replace,o=/%20/g,i=t("./utils"),t={RFC1738:"RFC1738",RFC3986:"RFC3986"};e.exports=i.assign({default:t.RFC3986,formatters:{RFC1738:function(t){return n.call(t,o,"+")},RFC3986:function(t){return String(t)}}},t)},{"./utils":7}],4:[function(t,e,r){"use strict";var n=t("./stringify"),o=t("./parse"),t=t("./formats");e.exports={formats:t,parse:o,stringify:n}},{"./formats":3,"./parse":5,"./stringify":6}],5:[function(t,e,r){"use strict";function u(t,e){var r,n,o,i,s={},a=e.ignoreQueryPrefix?t.replace(/^\?/,""):t,t=e.parameterLimit===1/0?void 0:e.parameterLimit,u=a.split(e.delimiter,t),c=-1,l=e.charset;if(e.charsetSentinel)for(r=0;r<u.length;++r)0===u[r].indexOf("utf8=")&&("utf8=%E2%9C%93"===u[r]?l="utf-8":"utf8=%26%2310003%3B"===u[r]&&(l="iso-8859-1"),c=r,r=u.length);for(r=0;r<u.length;++r)r!==c&&((i=-1===(i=-1===(i=(n=u[r]).indexOf("]="))?n.indexOf("="):i+1)?(o=e.decoder(n,d.decoder,l,"key"),e.strictNullHandling?null:""):(o=e.decoder(n.slice(0,i),d.decoder,l,"key"),p.maybeMap(y(n.slice(i+1),e),function(t){return e.decoder(t,d.decoder,l,"value")})))&&e.interpretNumericEntities&&"iso-8859-1"===l&&(i=i.replace(/&#(\d+);/g,function(t,e){return String.fromCharCode(parseInt(e,10))})),-1<n.indexOf("[]=")&&(i=h(i)?[i]:i),f.call(s,o)?s[o]=p.combine(s[o],i):s[o]=i);return s}function c(t,e,r,n){if(t){var o=r.allowDots?t.replace(/\.([^.[]+)/g,"[$1]"):t,i=/(\[[^[\]]*])/g,s=0<r.depth&&/(\[[^[\]]*])/.exec(o),t=s?o.slice(0,s.index):o,a=[];if(t){if(!r.plainObjects&&f.call(Object.prototype,t)&&!r.allowPrototypes)return;a.push(t)}for(var u=0;0<r.depth&&null!==(s=i.exec(o))&&u<r.depth;){if(u+=1,!r.plainObjects&&f.call(Object.prototype,s[1].slice(1,-1))&&!r.allowPrototypes)return;a.push(s[1])}return s&&a.push("["+o.slice(s.index)+"]"),function(t,e,r,n){for(var o=n?e:y(e,r),i=t.length-1;0<=i;--i){var s,a,u,c=t[i];"[]"===c&&r.parseArrays?s=[].concat(o):(s=r.plainObjects?Object.create(null):{},a="["===c.charAt(0)&&"]"===c.charAt(c.length-1)?c.slice(1,-1):c,u=parseInt(a,10),r.parseArrays||""!==a?!isNaN(u)&&c!==a&&String(u)===a&&0<=u&&r.parseArrays&&u<=r.arrayLimit?(s=[])[u]=o:s[a]=o:s={0:o}),o=s}return o}(a,e,r,n)}}var p=t("./utils"),f=Object.prototype.hasOwnProperty,h=Array.isArray,d={allowDots:!1,allowPrototypes:!1,arrayLimit:20,charset:"utf-8",charsetSentinel:!1,comma:!1,decoder:p.decode,delimiter:"&",depth:5,ignoreQueryPrefix:!1,interpretNumericEntities:!1,parameterLimit:1e3,parseArrays:!0,plainObjects:!1,strictNullHandling:!1},y=function(t,e){return t&&"string"==typeof t&&e.comma&&-1<t.indexOf(",")?t.split(","):t};e.exports=function(t,e){var r=function(t){if(!t)return d;if(null!==t.decoder&&void 0!==t.decoder&&"function"!=typeof t.decoder)throw new TypeError("Decoder has to be a function.");if(void 0!==t.charset&&"utf-8"!==t.charset&&"iso-8859-1"!==t.charset)throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined");var e=(void 0===t.charset?d:t).charset;return{allowDots:void 0===t.allowDots?d.allowDots:!!t.allowDots,allowPrototypes:("boolean"==typeof t.allowPrototypes?t:d).allowPrototypes,arrayLimit:("number"==typeof t.arrayLimit?t:d).arrayLimit,charset:e,charsetSentinel:("boolean"==typeof t.charsetSentinel?t:d).charsetSentinel,comma:("boolean"==typeof t.comma?t:d).comma,decoder:("function"==typeof t.decoder?t:d).decoder,delimiter:("string"==typeof t.delimiter||p.isRegExp(t.delimiter)?t:d).delimiter,depth:"number"==typeof t.depth||!1===t.depth?+t.depth:d.depth,ignoreQueryPrefix:!0===t.ignoreQueryPrefix,interpretNumericEntities:("boolean"==typeof t.interpretNumericEntities?t:d).interpretNumericEntities,parameterLimit:("number"==typeof t.parameterLimit?t:d).parameterLimit,parseArrays:!1!==t.parseArrays,plainObjects:("boolean"==typeof t.plainObjects?t:d).plainObjects,strictNullHandling:("boolean"==typeof t.strictNullHandling?t:d).strictNullHandling}}(e);if(""===t||null==t)return r.plainObjects?Object.create(null):{};for(var n="string"==typeof t?u(t,r):t,o=r.plainObjects?Object.create(null):{},i=Object.keys(n),s=0;s<i.length;++s)var a=i[s],a=c(a,n[a],r,"string"==typeof t),o=p.merge(o,a,r);return p.compact(o)}},{"./utils":7}],6:[function(t,e,r){"use strict";function v(t){return(v="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function T(t,e){n.apply(t,w(e)?e:[e])}function _(t,e,r,n,o,i,s,a,u,c,l,p,f){var h=t;if("function"==typeof s?h=s(e,h):h instanceof Date?h=c(h):"comma"===r&&w(h)&&(h=S.maybeMap(h,function(t){return t instanceof Date?c(t):t}).join(",")),null===h){if(n)return i&&!p?i(e,D.encoder,f,"key"):e;h=""}if("string"==typeof(t=h)||"number"==typeof t||"boolean"==typeof t||"symbol"===v(t)||"bigint"==typeof t||S.isBuffer(h))return i?[l(p?e:i(e,D.encoder,f,"key"))+"="+l(i(h,D.encoder,f,"value"))]:[l(e)+"="+l(String(h))];var d,y=[];if(void 0===h)return y;d=w(s)?s:(t=Object.keys(h),a?t.sort(a):t);for(var m=0;m<d.length;++m){var g=d[m],b=h[g];o&&null===b||(g=w(h)?"function"==typeof r?r(e,g):e:e+(u?"."+g:"["+g+"]"),T(y,_(b,g,r,n,o,i,s,a,u,c,l,p,f)))}return y}var S=t("./utils"),c=t("./formats"),l=Object.prototype.hasOwnProperty,p={brackets:function(t){return t+"[]"},comma:"comma",indices:function(t,e){return t+"["+e+"]"},repeat:function(t){return t}},w=Array.isArray,n=Array.prototype.push,o=Date.prototype.toISOString,t=c.default,D={addQueryPrefix:!1,allowDots:!1,charset:"utf-8",charsetSentinel:!1,delimiter:"&",encode:!0,encoder:S.encode,encodeValuesOnly:!1,format:t,formatter:c.formatters[t],indices:!1,serializeDate:function(t){return o.call(t)},skipNulls:!1,strictNullHandling:!1};e.exports=function(t,e){var r=t,n=function(t){if(!t)return D;if(null!==t.encoder&&void 0!==t.encoder&&"function"!=typeof t.encoder)throw new TypeError("Encoder has to be a function.");var e=t.charset||D.charset;if(void 0!==t.charset&&"utf-8"!==t.charset&&"iso-8859-1"!==t.charset)throw new TypeError("The charset option must be either utf-8, iso-8859-1, or undefined");var r=c.default;if(void 0!==t.format){if(!l.call(c.formatters,t.format))throw new TypeError("Unknown format option provided.");r=t.format}var n=c.formatters[r],r=D.filter;return"function"!=typeof t.filter&&!w(t.filter)||(r=t.filter),{addQueryPrefix:("boolean"==typeof t.addQueryPrefix?t:D).addQueryPrefix,allowDots:void 0===t.allowDots?D.allowDots:!!t.allowDots,charset:e,charsetSentinel:("boolean"==typeof t.charsetSentinel?t:D).charsetSentinel,delimiter:(void 0===t.delimiter?D:t).delimiter,encode:("boolean"==typeof t.encode?t:D).encode,encoder:("function"==typeof t.encoder?t:D).encoder,encodeValuesOnly:("boolean"==typeof t.encodeValuesOnly?t:D).encodeValuesOnly,filter:r,formatter:n,serializeDate:("function"==typeof t.serializeDate?t:D).serializeDate,skipNulls:("boolean"==typeof t.skipNulls?t:D).skipNulls,sort:"function"==typeof t.sort?t.sort:null,strictNullHandling:("boolean"==typeof t.strictNullHandling?t:D).strictNullHandling}}(e);"function"==typeof n.filter?r=(0,n.filter)("",r):w(n.filter)&&(s=n.filter);var o=[];if("object"!==v(r)||null===r)return"";var t=e&&e.arrayFormat in p?e.arrayFormat:!(e&&"indices"in e)||e.indices?"indices":"repeat",i=p[t],s=s||Object.keys(r);n.sort&&s.sort(n.sort);for(var a=0;a<s.length;++a){var u=s[a];n.skipNulls&&null===r[u]||T(o,_(r[u],u,i,n.strictNullHandling,n.skipNulls,n.encode?n.encoder:null,n.filter,n.sort,n.allowDots,n.serializeDate,n.formatter,n.encodeValuesOnly,n.charset))}e=o.join(n.delimiter),t=!0===n.addQueryPrefix?"?":"";return n.charsetSentinel&&("iso-8859-1"===n.charset?t+="utf8=%26%2310003%3B&":t+="utf8=%E2%9C%93&"),0<e.length?t+e:""}},{"./formats":3,"./utils":7}],7:[function(t,e,r){"use strict";function l(t){return(l="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}function s(t,e){for(var r=e&&e.plainObjects?Object.create(null):{},n=0;n<t.length;++n)void 0!==t[n]&&(r[n]=t[n]);return r}function a(n,o,i){if(!o)return n;if("object"!==l(o)){if(p(n))n.push(o);else{if(!n||"object"!==l(n))return[n,o];(i&&(i.plainObjects||i.allowPrototypes)||!u.call(Object.prototype,o))&&(n[o]=!0)}return n}if(!n||"object"!==l(n))return[n].concat(o);var t=n;return p(n)&&!p(o)&&(t=s(n,i)),p(n)&&p(o)?(o.forEach(function(t,e){var r;u.call(n,e)?(r=n[e])&&"object"===l(r)&&t&&"object"===l(t)?n[e]=a(r,t,i):n.push(t):n[e]=t}),n):Object.keys(o).reduce(function(t,e){var r=o[e];return u.call(t,e)?t[e]=a(t[e],r,i):t[e]=r,t},t)}var u=Object.prototype.hasOwnProperty,p=Array.isArray,c=function(){for(var t=[],e=0;e<256;++e)t.push("%"+((e<16?"0":"")+e.toString(16)).toUpperCase());return t}();e.exports={arrayToObject:s,assign:function(t,r){return Object.keys(r).reduce(function(t,e){return t[e]=r[e],t},t)},combine:function(t,e){return[].concat(t,e)},compact:function(t){for(var e=[{obj:{o:t},prop:"o"}],r=[],n=0;n<e.length;++n)for(var o=e[n],i=o.obj[o.prop],s=Object.keys(i),a=0;a<s.length;++a){var u=s[a],c=i[u];"object"===l(c)&&null!==c&&-1===r.indexOf(c)&&(e.push({obj:i,prop:u}),r.push(c))}return function(t){for(;1<t.length;){var e=t.pop(),r=e.obj[e.prop];if(p(r)){for(var n=[],o=0;o<r.length;++o)void 0!==r[o]&&n.push(r[o]);e.obj[e.prop]=n}}}(e),t},decode:function(e,t,r){e=e.replace(/\+/g," ");if("iso-8859-1"===r)return e.replace(/%[0-9a-f]{2}/gi,unescape);try{return decodeURIComponent(e)}catch(t){return e}},encode:function(t,e,r){if(0===t.length)return t;var n=t;if("symbol"===l(t)?n=Symbol.prototype.toString.call(t):"string"!=typeof t&&(n=String(t)),"iso-8859-1"===r)return escape(n).replace(/%u[0-9a-f]{4}/gi,function(t){return"%26%23"+parseInt(t.slice(2),16)+"%3B"});for(var o="",i=0;i<n.length;++i){var s=n.charCodeAt(i);45===s||46===s||95===s||126===s||48<=s&&s<=57||65<=s&&s<=90||97<=s&&s<=122?o+=n.charAt(i):s<128?o+=c[s]:s<2048?o+=c[192|s>>6]+c[128|63&s]:s<55296||57344<=s?o+=c[224|s>>12]+c[128|s>>6&63]+c[128|63&s]:(i+=1,s=65536+((1023&s)<<10|1023&n.charCodeAt(i)),o+=c[240|s>>18]+c[128|s>>12&63]+c[128|s>>6&63]+c[128|63&s])}return o},isBuffer:function(t){return!(!t||"object"!==l(t))&&!!(t.constructor&&t.constructor.isBuffer&&t.constructor.isBuffer(t))},isRegExp:function(t){return"[object RegExp]"===Object.prototype.toString.call(t)},maybeMap:function(t,e){if(p(t)){for(var r=[],n=0;n<t.length;n+=1)r.push(e(t[n]));return r}return e(t)},merge:a}},{}],8:[function(t,e,r){"use strict";function n(t){return function(t){if(Array.isArray(t))return o(t)}(t)||function(t){if("undefined"!=typeof Symbol&&Symbol.iterator in Object(t))return Array.from(t)}(t)||function(t,e){if(t){if("string"==typeof t)return o(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Map"===(r="Object"===r&&t.constructor?t.constructor.name:r)||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?o(t,e):void 0}}(t)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function o(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}function i(){this._defaults=[]}["use","on","once","set","query","type","accept","auth","withCredentials","sortQuery","retry","ok","redirects","timeout","buffer","serialize","parse","ca","key","pfx","cert","disableTLSCerts"].forEach(function(n){i.prototype[n]=function(){for(var t=arguments.length,e=new Array(t),r=0;r<t;r++)e[r]=arguments[r];return this._defaults.push({fn:n,args:e}),this}}),i.prototype._setDefaults=function(e){this._defaults.forEach(function(t){e[t.fn].apply(e,n(t.args))})},e.exports=i},{}],9:[function(t,e,r){"use strict";function n(t){return(n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}e.exports=function(t){return null!==t&&"object"===n(t)}},{}],10:[function(t,e,r){"use strict";function n(t){return(n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}var o="undefined"!=typeof window?window:"undefined"==typeof self?void console.warn("Using browser-only version of superagent in non-browser environment"):self,i=t("component-emitter"),s=t("fast-safe-stringify"),a=t("qs"),u=t("./request-base"),c=t("./is-object"),l=t("./response-base"),p=t("./agent-base");function f(){}e.exports=function(t,e){return"function"==typeof e?new r.Request("GET",t).end(e):1===arguments.length?new r.Request("GET",t):new r.Request(t,e)};var h=r=e.exports;r.Request=v,h.getXHR=function(){if(o.XMLHttpRequest&&(!o.location||"file:"!==o.location.protocol||!o.ActiveXObject))return new XMLHttpRequest;try{return new ActiveXObject("Microsoft.XMLHTTP")}catch(t){}try{return new ActiveXObject("Msxml2.XMLHTTP.6.0")}catch(t){}try{return new ActiveXObject("Msxml2.XMLHTTP.3.0")}catch(t){}try{return new ActiveXObject("Msxml2.XMLHTTP")}catch(t){}throw new Error("Browser-only version of superagent could not find XHR")};var d="".trim?function(t){return t.trim()}:function(t){return t.replace(/(^\s*|\s*$)/g,"")};function y(t){if(!c(t))return t;var e,r=[];for(e in t)Object.prototype.hasOwnProperty.call(t,e)&&!function e(r,n,t){if(void 0===t)return;if(null===t)return void r.push(encodeURI(n));if(Array.isArray(t))t.forEach(function(t){e(r,n,t)});else if(c(t))for(var o in t)Object.prototype.hasOwnProperty.call(t,o)&&e(r,"".concat(n,"[").concat(o,"]"),t[o]);else r.push(encodeURI(n)+"="+encodeURIComponent(t))}(r,e,t[e]);return r.join("&")}function m(t){for(var e,r,n={},o=t.split("&"),i=0,s=o.length;i<s;++i)-1===(r=(e=o[i]).indexOf("="))?n[decodeURIComponent(e)]="":n[decodeURIComponent(e.slice(0,r))]=decodeURIComponent(e.slice(r+1));return n}function g(t){return/[/+]json($|[^-\w])/i.test(t)}function b(t){this.req=t,this.xhr=this.req.xhr,this.text="HEAD"!==this.req.method&&(""===this.xhr.responseType||"text"===this.xhr.responseType)||void 0===this.xhr.responseType?this.xhr.responseText:null,this.statusText=this.req.xhr.statusText;var e=this.xhr.status;this._setStatusProperties(e=1223===e?204:e),this.headers=function(t){for(var e,r,n,o=t.split(/\r?\n/),i={},s=0,a=o.length;s<a;++s)-1!==(n=(e=o[s]).indexOf(":"))&&(r=e.slice(0,n).toLowerCase(),n=d(e.slice(n+1)),i[r]=n);return i}(this.xhr.getAllResponseHeaders()),this.header=this.headers,this.header["content-type"]=this.xhr.getResponseHeader("content-type"),this._setHeaderProperties(this.header),null===this.text&&t._responseType?this.body=this.xhr.response:this.body="HEAD"===this.req.method?null:this._parseBody(this.text||this.xhr.response)}function v(t,e){var n=this;this._query=this._query||[],this.method=t,this.url=e,this.header={},this._header={},this.on("end",function(){var e,r=null,t=null;try{t=new b(n)}catch(t){return(r=new Error("Parser is unable to parse the response")).parse=!0,r.original=t,n.xhr?(r.rawResponse=void 0===n.xhr.responseType?n.xhr.responseText:n.xhr.response,r.status=n.xhr.status||null,r.statusCode=r.status):(r.rawResponse=null,r.status=null),n.callback(r)}n.emit("response",t);try{n._isResponseOK(t)||(e=new Error(t.statusText||t.text||"Unsuccessful HTTP response"))}catch(t){e=t}e?(e.original=r,e.response=t,e.status=t.status,n.callback(e,t)):n.callback(null,t)})}function T(t,e,r){t=h("DELETE",t);return"function"==typeof e&&(r=e,e=null),e&&t.send(e),r&&t.end(r),t}h.serializeObject=y,h.parseString=m,h.types={html:"text/html",json:"application/json",xml:"text/xml",urlencoded:"application/x-www-form-urlencoded",form:"application/x-www-form-urlencoded","form-data":"application/x-www-form-urlencoded"},h.serialize={"application/x-www-form-urlencoded":a.stringify,"application/json":s},h.parse={"application/x-www-form-urlencoded":m,"application/json":JSON.parse},l(b.prototype),b.prototype._parseBody=function(t){var e=h.parse[this.type];return this.req._parser?this.req._parser(this,t):(e=!e&&g(this.type)?h.parse["application/json"]:e)&&t&&(0<t.length||t instanceof Object)?e(t):null},b.prototype.toError=function(){var t=this.req,e=t.method,r=t.url,t="cannot ".concat(e," ").concat(r," (").concat(this.status,")"),t=new Error(t);return t.status=this.status,t.method=e,t.url=r,t},h.Response=b,i(v.prototype),u(v.prototype),v.prototype.type=function(t){return this.set("Content-Type",h.types[t]||t),this},v.prototype.accept=function(t){return this.set("Accept",h.types[t]||t),this},v.prototype.auth=function(t,e,r){"object"===n(e=1===arguments.length?"":e)&&null!==e&&(r=e,e=""),r=r||{type:"function"==typeof btoa?"basic":"auto"};return this._auth(t,e,r,function(t){if("function"==typeof btoa)return btoa(t);throw new Error("Cannot use basic auth, btoa is not a function")})},v.prototype.query=function(t){return(t="string"!=typeof t?y(t):t)&&this._query.push(t),this},v.prototype.attach=function(t,e,r){if(e){if(this._data)throw new Error("superagent can't mix .send() and .attach()");this._getFormData().append(t,e,r||e.name)}return this},v.prototype._getFormData=function(){return this._formData||(this._formData=new o.FormData),this._formData},v.prototype.callback=function(t,e){if(this._shouldRetry(t,e))return this._retry();var r=this._callback;this.clearTimeout(),t&&(this._maxRetries&&(t.retries=this._retries-1),this.emit("error",t)),r(t,e)},v.prototype.crossDomainError=function(){var t=new Error("Request has been terminated\nPossible causes: the network is offline, Origin is not allowed by Access-Control-Allow-Origin, the page is being unloaded, etc.");t.crossDomain=!0,t.status=this.status,t.method=this.method,t.url=this.url,this.callback(t)},v.prototype.buffer=v.prototype.ca=v.prototype.agent=function(){return console.warn("This is not supported in browser version of superagent"),this},v.prototype.pipe=v.prototype.write=function(){throw new Error("Streaming is not supported in browser version of superagent")},v.prototype._isHost=function(t){return t&&"object"===n(t)&&!Array.isArray(t)&&"[object Object]"!==Object.prototype.toString.call(t)},v.prototype.end=function(t){this._endCalled&&console.warn("Warning: .end() was called twice. This is not supported in superagent"),this._endCalled=!0,this._callback=t||f,this._finalizeQueryString(),this._end()},v.prototype._setUploadTimeout=function(){var t=this;this._uploadTimeout&&!this._uploadTimeoutTimer&&(this._uploadTimeoutTimer=setTimeout(function(){t._timeoutError("Upload timeout of ",t._uploadTimeout,"ETIMEDOUT")},this._uploadTimeout))},v.prototype._end=function(){if(this._aborted)return this.callback(new Error("The request has been aborted even before .end() was called"));var r=this;this.xhr=h.getXHR();var n=this.xhr,t=this._formData||this._data;this._setTimeouts(),n.onreadystatechange=function(){var e,t=n.readyState;if(2<=t&&r._responseTimeoutTimer&&clearTimeout(r._responseTimeoutTimer),4===t){try{e=n.status}catch(t){e=0}if(!e)return r.timedout||r._aborted?void 0:r.crossDomainError();r.emit("end")}};var e,o,i=function(t,e){0<e.total&&(e.percent=e.loaded/e.total*100,100===e.percent&&clearTimeout(r._uploadTimeoutTimer)),e.direction=t,r.emit("progress",e)};if(this.hasListeners("progress"))try{n.addEventListener("progress",i.bind(null,"download")),n.upload&&n.upload.addEventListener("progress",i.bind(null,"upload"))}catch(t){}n.upload&&this._setUploadTimeout();try{this.username&&this.password?n.open(this.method,this.url,!0,this.username,this.password):n.open(this.method,this.url,!0)}catch(t){return this.callback(t)}for(o in this._withCredentials&&(n.withCredentials=!0),this._formData||"GET"===this.method||"HEAD"===this.method||"string"==typeof t||this._isHost(t)||(e=this._header["content-type"],(i=!(i=this._serializer||h.serialize[e?e.split(";")[0]:""])&&g(e)?h.serialize["application/json"]:i)&&(t=i(t))),this.header)null!==this.header[o]&&Object.prototype.hasOwnProperty.call(this.header,o)&&n.setRequestHeader(o,this.header[o]);this._responseType&&(n.responseType=this._responseType),this.emit("request",this),n.send(void 0===t?null:t)},h.agent=function(){return new p},["GET","POST","OPTIONS","PATCH","PUT","DELETE"].forEach(function(r){p.prototype[r.toLowerCase()]=function(t,e){t=new h.Request(r,t);return this._setDefaults(t),e&&t.end(e),t}}),p.prototype.del=p.prototype.delete,h.get=function(t,e,r){t=h("GET",t);return"function"==typeof e&&(r=e,e=null),e&&t.query(e),r&&t.end(r),t},h.head=function(t,e,r){t=h("HEAD",t);return"function"==typeof e&&(r=e,e=null),e&&t.query(e),r&&t.end(r),t},h.options=function(t,e,r){t=h("OPTIONS",t);return"function"==typeof e&&(r=e,e=null),e&&t.send(e),r&&t.end(r),t},h.del=T,h.delete=T,h.patch=function(t,e,r){t=h("PATCH",t);return"function"==typeof e&&(r=e,e=null),e&&t.send(e),r&&t.end(r),t},h.post=function(t,e,r){t=h("POST",t);return"function"==typeof e&&(r=e,e=null),e&&t.send(e),r&&t.end(r),t},h.put=function(t,e,r){t=h("PUT",t);return"function"==typeof e&&(r=e,e=null),e&&t.send(e),r&&t.end(r),t}},{"./agent-base":8,"./is-object":9,"./request-base":11,"./response-base":12,"component-emitter":1,"fast-safe-stringify":2,qs:4}],11:[function(t,e,r){"use strict";function n(t){return(n="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(t){return typeof t}:function(t){return t&&"function"==typeof Symbol&&t.constructor===Symbol&&t!==Symbol.prototype?"symbol":typeof t})(t)}var o=t("./is-object");function i(t){if(t)return function(t){for(var e in i.prototype)Object.prototype.hasOwnProperty.call(i.prototype,e)&&(t[e]=i.prototype[e]);return t}(t)}(e.exports=i).prototype.clearTimeout=function(){return clearTimeout(this._timer),clearTimeout(this._responseTimeoutTimer),clearTimeout(this._uploadTimeoutTimer),delete this._timer,delete this._responseTimeoutTimer,delete this._uploadTimeoutTimer,this},i.prototype.parse=function(t){return this._parser=t,this},i.prototype.responseType=function(t){return this._responseType=t,this},i.prototype.serialize=function(t){return this._serializer=t,this},i.prototype.timeout=function(t){if(!t||"object"!==n(t))return this._timeout=t,this._responseTimeout=0,this._uploadTimeout=0,this;for(var e in t)if(Object.prototype.hasOwnProperty.call(t,e))switch(e){case"deadline":this._timeout=t.deadline;break;case"response":this._responseTimeout=t.response;break;case"upload":this._uploadTimeout=t.upload;break;default:console.warn("Unknown timeout option",e)}return this},i.prototype.retry=function(t,e){return this._maxRetries=t=(t=0===arguments.length||!0===t?1:t)<=0?0:t,this._retries=0,this._retryCallback=e,this};var s=new Set(["ETIMEDOUT","ECONNRESET","EADDRINUSE","ECONNREFUSED","EPIPE","ENOTFOUND","ENETUNREACH","EAI_AGAIN"]),a=new Set([408,413,429,500,502,503,504,521,522,524]);i.prototype._shouldRetry=function(t,e){if(!this._maxRetries||this._retries++>=this._maxRetries)return!1;if(this._retryCallback)try{var r=this._retryCallback(t,e);if(!0===r)return!0;if(!1===r)return!1}catch(t){console.error(t)}if(e&&e.status&&a.has(e.status))return!0;if(t){if(t.code&&s.has(t.code))return!0;if(t.timeout&&"ECONNABORTED"===t.code)return!0;if(t.crossDomain)return!0}return!1},i.prototype._retry=function(){return this.clearTimeout(),this.req&&(this.req=null,this.req=this.request()),this._aborted=!1,this.timedout=!1,this.timedoutError=null,this._end()},i.prototype.then=function(t,e){var o,i=this;return this._fullfilledPromise||((o=this)._endCalled&&console.warn("Warning: superagent request was sent twice, because both .end() and .then() were called. Never call .end() if you use promises"),this._fullfilledPromise=new Promise(function(r,n){o.on("abort",function(){var t;i._maxRetries&&i._maxRetries>i._retries||(i.timedout&&i.timedoutError?n(i.timedoutError):((t=new Error("Aborted")).code="ABORTED",t.status=i.status,t.method=i.method,t.url=i.url,n(t)))}),o.end(function(t,e){t?n(t):r(e)})})),this._fullfilledPromise.then(t,e)},i.prototype.catch=function(t){return this.then(void 0,t)},i.prototype.use=function(t){return t(this),this},i.prototype.ok=function(t){if("function"!=typeof t)throw new Error("Callback required");return this._okCallback=t,this},i.prototype._isResponseOK=function(t){return!!t&&(this._okCallback?this._okCallback(t):200<=t.status&&t.status<300)},i.prototype.getHeader=i.prototype.get=function(t){return this._header[t.toLowerCase()]},i.prototype.set=function(t,e){if(o(t)){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&this.set(r,t[r]);return this}return this._header[t.toLowerCase()]=e,this.header[t]=e,this},i.prototype.unset=function(t){return delete this._header[t.toLowerCase()],delete this.header[t],this},i.prototype.field=function(t,e){if(null==t)throw new Error(".field(name, val) name can not be empty");if(this._data)throw new Error(".field() can't be used if .send() is used. Please use only .send() or only .field() & .attach()");if(o(t)){for(var r in t)Object.prototype.hasOwnProperty.call(t,r)&&this.field(r,t[r]);return this}if(Array.isArray(e)){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&this.field(t,e[n]);return this}if(null==e)throw new Error(".field(name, val) val can not be empty");return"boolean"==typeof e&&(e=String(e)),this._getFormData().append(t,e),this},i.prototype.abort=function(){return this._aborted||(this._aborted=!0,this.xhr&&this.xhr.abort(),this.req&&this.req.abort(),this.clearTimeout(),this.emit("abort")),this},i.prototype._auth=function(t,e,r,n){switch(r.type){case"basic":this.set("Authorization","Basic ".concat(n("".concat(t,":").concat(e))));break;case"auto":this.username=t,this.password=e;break;case"bearer":this.set("Authorization","Bearer ".concat(t))}return this},i.prototype.withCredentials=function(t){return this._withCredentials=t=void 0===t?!0:t,this},i.prototype.redirects=function(t){return this._maxRedirects=t,this},i.prototype.maxResponseSize=function(t){if("number"!=typeof t)throw new TypeError("Invalid argument");return this._maxResponseSize=t,this},i.prototype.toJSON=function(){return{method:this.method,url:this.url,data:this._data,headers:this._header}},i.prototype.send=function(t){var e=o(t),r=this._header["content-type"];if(this._formData)throw new Error(".send() can't be used if .attach() or .field() is used. Please use only .send() or only .field() & .attach()");if(e&&!this._data)Array.isArray(t)?this._data=[]:this._isHost(t)||(this._data={});else if(t&&this._data&&this._isHost(this._data))throw new Error("Can't merge these send calls");if(e&&o(this._data))for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(this._data[n]=t[n]);else"string"==typeof t?(r||this.type("form"),r=(r=this._header["content-type"])&&r.toLowerCase().trim(),this._data="application/x-www-form-urlencoded"===r?this._data?"".concat(this._data,"&").concat(t):t:(this._data||"")+t):this._data=t;return!e||this._isHost(t)||r||this.type("json"),this},i.prototype.sortQuery=function(t){return this._sort=void 0===t||t,this},i.prototype._finalizeQueryString=function(){var t,e=this._query.join("&");e&&(this.url+=(this.url.includes("?")?"&":"?")+e),this._query.length=0,!this._sort||0<=(t=this.url.indexOf("?"))&&(e=this.url.slice(t+1).split("&"),"function"==typeof this._sort?e.sort(this._sort):e.sort(),this.url=this.url.slice(0,t)+"?"+e.join("&"))},i.prototype._appendQueryString=function(){console.warn("Unsupported")},i.prototype._timeoutError=function(t,e,r){this._aborted||((t=new Error("".concat(t+e,"ms exceeded"))).timeout=e,t.code="ECONNABORTED",t.errno=r,this.timedout=!0,this.timedoutError=t,this.abort(),this.callback(t))},i.prototype._setTimeouts=function(){var t=this;this._timeout&&!this._timer&&(this._timer=setTimeout(function(){t._timeoutError("Timeout of ",t._timeout,"ETIME")},this._timeout)),this._responseTimeout&&!this._responseTimeoutTimer&&(this._responseTimeoutTimer=setTimeout(function(){t._timeoutError("Response timeout of ",t._responseTimeout,"ETIMEDOUT")},this._responseTimeout))}},{"./is-object":9}],12:[function(t,e,r){"use strict";var o=t("./utils");function n(t){if(t)return function(t){for(var e in n.prototype)Object.prototype.hasOwnProperty.call(n.prototype,e)&&(t[e]=n.prototype[e]);return t}(t)}(e.exports=n).prototype.get=function(t){return this.header[t.toLowerCase()]},n.prototype._setHeaderProperties=function(t){var e=t["content-type"]||"";this.type=o.type(e);var r,n=o.params(e);for(r in n)Object.prototype.hasOwnProperty.call(n,r)&&(this[r]=n[r]);this.links={};try{t.link&&(this.links=o.parseLinks(t.link))}catch(t){}},n.prototype._setStatusProperties=function(t){var e=t/100|0;this.statusCode=t,this.status=this.statusCode,this.statusType=e,this.info=1==e,this.ok=2==e,this.redirect=3==e,this.clientError=4==e,this.serverError=5==e,this.error=(4==e||5==e)&&this.toError(),this.created=201===t,this.accepted=202===t,this.noContent=204===t,this.badRequest=400===t,this.unauthorized=401===t,this.notAcceptable=406===t,this.forbidden=403===t,this.notFound=404===t,this.unprocessableEntity=422===t}},{"./utils":13}],13:[function(t,e,r){"use strict";function a(t,e){var r;if("undefined"==typeof Symbol||null==t[Symbol.iterator]){if(Array.isArray(t)||(r=function(t,e){if(t){if("string"==typeof t)return u(t,e);var r=Object.prototype.toString.call(t).slice(8,-1);return"Map"===(r="Object"===r&&t.constructor?t.constructor.name:r)||"Set"===r?Array.from(t):"Arguments"===r||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(r)?u(t,e):void 0}}(t))||e&&t&&"number"==typeof t.length){r&&(t=r);var n=0,e=function(){};return{s:e,n:function(){return n>=t.length?{done:!0}:{done:!1,value:t[n++]}},e:function(t){throw t},f:e}}throw new TypeError("Invalid attempt to iterate non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}var o,i=!0,s=!1;return{s:function(){r=t[Symbol.iterator]()},n:function(){var t=r.next();return i=t.done,t},e:function(t){s=!0,o=t},f:function(){try{i||null==r.return||r.return()}finally{if(s)throw o}}}}function u(t,e){(null==e||e>t.length)&&(e=t.length);for(var r=0,n=new Array(e);r<e;r++)n[r]=t[r];return n}r.type=function(t){return t.split(/ *; */).shift()},r.params=function(t){var e,r={},n=a(t.split(/ *; */));try{for(n.s();!(e=n.n()).done;){var o=e.value.split(/ *= */),i=o.shift(),s=o.shift();i&&s&&(r[i]=s)}}catch(t){n.e(t)}finally{n.f()}return r},r.parseLinks=function(t){var e,r={},n=a(t.split(/ *, */));try{for(n.s();!(e=n.n()).done;){var o=e.value.split(/ *; */),i=o[0].slice(1,-1);r[o[1].split(/ *= */)[1].slice(1,-1)]=i}}catch(t){n.e(t)}finally{n.f()}return r},r.cleanHeader=function(t,e){return delete t["content-type"],delete t["content-length"],delete t["transfer-encoding"],delete t.host,e&&(delete t.authorization,delete t.cookie),t}},{}]},{},[10])(10)}),function(){var j=superagent,L=superagentLegacyIESupportPlugin,F="36.4",M="1",q="https://test.masterpassturkiye.com/MasterpassJsonServerHandler/v2",U="",H=new RSAKey;H.setPublic("F619C53A37BAB059C583DA9AC4E2920FFC9D57E00885E82F7A0863DEAC43CE06374E45A1417DAC907C6CAC0AF1DDF1D7152192FED7A1D9255C97BC27E420E0742B95ED3C53C62995F42CB6EEDB7B1FBDD3E4F4A4AA935650DA81E763CA7074690032F6A6AF72802CC50394C2AFA5C9450A990E6F969A38571C8BC9E381125D2BEEC348AF919D7374FF10DC3E0B4367566CE929AD6EA323A475A677EB41C20B42D44E82E8A53DD52334D927394FCADF09","03"),this.MFS=function(){function o(t,e,r){for(var n=r.length-1;0<=n;n--){var o=r[n];e[o]=k(t,o)}e.fp=U,e.additionalParams=u}function i(t,e,n){t.clientId=s;var r=(r=(new Date).toJSON()).replace(/"/g,"");t.dateTime=r,t.version=F,t.clientType=M,j.post(q+e).use(L).send(JSON.stringify(t)).end(function(t,e){var r=null;try{r=x(e)}catch(t){}n(e.status,r)})}var s,a,u,c,n=["actionType","clientIp","delinkReason","eActionType","cardTypeFlag","cpinFlag","defaultAccount","mmrpConfig","identityVerificationFlag","mobileAccountConfig","msisdn","referenceNo","sendSms","sendSmsLanguage","timeZone","uiChannelType","rtaPan","expiryDate","accountAliasName","cvc","homeAddress","homeCity","homeState","homeCountryCode","homePostalCode","firstName","lastName","email","cardHolderName","token"],l=["msisdn","referenceNo","sendSms","sendSmsLanguage","accountAliasName","token"],p=["validationCode","sendSms","sendSmsLanguage","referenceNo","token"],f=["aav","amount","clientIp","encCPin","encPassword","listAccountName","msisdn","password","referenceNo","sendSms","sendSmsLanguage","sendSmsMerchant","userId","token","rewardName","rewardValue","moneyCardInvoiceAmount","moneyCardMigrosDiscountAmount","moneyCardPaymentAmount","moneyCardExtraDiscountAmount","moneyCardProductBasedDiscountAmount","installmentCount","cvc","macroMerchantId","orderNo","paymentType"],h=["msisdn","encPan","token","referenceNo","sendSms","sendSmsLanguage","cvv"],d=["userId","token","referenceNo","sendSms","sendSmsLanguage"],y=["msisdn","cardAliasName","token","referenceNo","sendSms","sendSmsLanguage"],m=["msisdn","cardAliasName","token","referenceNo","sendSms","sendSmsLanguage"],g=["token","msisdn","sendSmsLanguage","fP","amount","expiryDate","rtaPan","cardHolderName","cvc","macroMerchantId","orderNo","paymentType","installmentCount","rewardName","rewardValue"],b=["sendSmsLanguage","msisdn","token","cardAliasName","fP","referenceNo","sendSms"],v=["token","msisdn","oldValue","theNewValue","valueType","sendSmsLanguage","fP","referenceNo","sendSms"],T=["token","msisdn","sendSmsLanguage","fP","referenceNo","sendSms"],_=["msisdn","accountAliasName","token","referenceNo","sendSms","sendSmsLanguage","fP","amount","actionType","firstName","lastName","gender","expiryDate","rtaPan","cardHolderName","orderNo","merchantId","rewardName","rewardValue","moneyCardInvoiceAmount","moneyCardMigrosDiscountAmount","moneyCardPaymentAmount","moneyCardExtraDiscountAmount","moneyCardProductBasedDiscountAmount","installmentCount","cvc","macroMerchantId","orderNo","paymentType"],S=["msisdn","token","referenceNo","sendSms","sendSmsLanguage"],w=["msisdn","token","listAccountName","amount","endDate","actionType","referenceNo","sendSms","sendSmsLanguage","productId"],D=["aav","amount","clientIp","encCPin","encPassword","moneySendType","senderAliasName","recipientAliasName","msisdn","password","referenceNo","sendSms","sendSmsLanguage","sendSmsMerchant","userId","token","rewardName","rewardValue","moneyCardInvoiceAmount","installmentCount","cvc","macroMerchantId","orderNo","paymentType"],A=["language","referenceNo","cvc","pan","client_token","action_type","token"],C=["msisdn","token","language","referenceNo","orderIds"],R=["referenceNo","language","msisdn","amount","client_token","fP","macroMerchantId","orderNo","basketInfo","campaignCode","loanBankIca","bankIca"],B=["referenceNo","language","token","fP","identityNumber","transactionType"],E=["referenceNo","language","token","fP","installmentId","installmentCount","loanType"],O=["referenceNo","language","token","fP","loanType","loanRrn"],I=!1,N=!1,P=(c=[0,2,4,6,8,1,3,5,7,9],function(t){for(var e,r=t.length,n=1,o=0;r;)e=parseInt(t.charAt(--r),10),o+=(n^=1)?c[e]:e;return o&&o%10==0}),k=function(t,e){for(var r=t.find("input"),n=r.length-1;0<=n;n--){var o=r[n].getAttribute("type");if(r[n].getAttribute("name")==e){if("cardAliasName"==e||"accountAliasName"==e||"cardHolderName"==e||"listAccountName"==e||"productId"==e||"senderAliasName"==e||"recipientAliasName"==e)return encodeURIComponent(r[n].value);if("validationCode"==e){if(I)return H.encrypt(r[n].value);if(N){var i=r[n].value.replace(".","").replace(",","");return 3==i.length?i:i.concat("0")}}if("rtaPan"==e||"pan"==e)return P(r[n].value)?H.encrypt(r[n].value):"";if("cvv"==e||"cvc"==e)return 3!=r[n].value.length&&4!=r[n].value.length?"":H.encrypt(r[n].value);if("installmentCount"==e&&""!==r[n].value&&!isNaN(r[n].value))return parseFloat(r[n].value);if("checkbox"==o||"radio"==o)if(!r[n].checked)continue;return r[n].value}}return null},x=function(t){var e=JSON.parse(t.text||{}),r={};if(e.hasOwnProperty("Data")){r.referenceNo=e.Data.Body.Fault.Detail.ServiceFaultDetail.RefNo,r.responseCode=e.Data.Body.Fault.Detail.ServiceFaultDetail.ResponseCode,r.responseDescription=e.Data.Body.Fault.Detail.ServiceFaultDetail.ResponseDesc,r.url3D=e.Data.Body.Fault.Detail.ServiceFaultDetail.Url3D,r.url3DSuccess=e.Data.Body.Fault.Detail.ServiceFaultDetail.Url3DSuccess,r.url3DError=e.Data.Body.Fault.Detail.ServiceFaultDetail.Url3DError,r.urlLoan=e.Data.Body.Fault.Detail.ServiceFaultDetail.UrlLoan,r.urlLoanSuccess=e.Data.Body.Fault.Detail.ServiceFaultDetail.UrlLoanSuccess,r.urlLoanError=e.Data.Body.Fault.Detail.ServiceFaultDetail.UrlLoanError,r.newMsisdn=e.Data.Body.Fault.Detail.ServiceFaultDetail.NewMsisdn,r.internalResponseCode=e.Data.Body.Fault.Detail.ServiceFaultDetail.InternalResponseCode,r.internalResponseDescription=e.Data.Body.Fault.Detail.ServiceFaultDetail.InternalResponseMessage;var n=e.Data.Body.Fault.Detail.ServiceFaultDetail.Token,o="";if(e.Data.Body.hasOwnProperty("Response")){o=e.Data.Body.Response.Result.TransactionBody.Token,r.token=o;t="";e.Data.Body.Response.Result.TransactionBody.hasOwnProperty("RefNo")&&""!==e.Data.Body.Response.Result.TransactionBody.RefNo&&(t=e.Data.Body.Response.Result.TransactionBody.RefNo),e.Data.Body.Fault.Detail.ServiceFaultDetail.hasOwnProperty("RefNo")&&""!==e.Data.Body.Fault.Detail.ServiceFaultDetail.RefNo&&(t=e.Data.Body.Fault.Detail.ServiceFaultDetail.RefNo),r.transactionId=t;t="";e.Data.Body.Response.Result.TransactionBody.hasOwnProperty("CardUniqueId")&&""!==e.Data.Body.Response.Result.TransactionBody.CardUniqueId&&(t=e.Data.Body.Response.Result.TransactionBody.CardUniqueId),r.cardUniqueId=t,e.Data.Body.Response.Result.TransactionBody.hasOwnProperty("AccountList")&&""!==e.Data.Body.Response.Result.TransactionBody.AccountList&&(r.AccountList=e.Data.Body.Response.Result.TransactionBody.AccountList);t=e.Data.Body.Response.Result.TransactionBody.ListItems;try{t&&0!==t.ListItem&&(r.cards=t.ListItem)}catch(t){}try{t&&0!==t.BankList&&(r.banks=t.BankList)}catch(t){}r.accountStatus=e.Data.Body.Response.Result.TransactionBody.AccountStatus,r.amount=e.Data.Body.Response.Result.TransactionBody.Amount,r.orderNo=e.Data.Body.Response.Result.TransactionBody.OrderNo,r.installmentCount=e.Data.Body.Response.Result.TransactionBody.InstallmentCount}n&&0!==n.length?a=n:r.token=o}return r};return{setClientId:function(t){s=t},listCards:function(t,e,r){var n={};n.msisdn=t,n.token=e,n.referenceNo="00000000",n.listType="ACCOUNT",n.sendSms="Y",n.clientIp="",n.sendSmsLanguage="eng",i(n,"/listManagement",r)},register:function(t,e){var r={};o(t,r,n),i(r,"/register",e)},purchase:function(t,e){var r={};o(t,r,f),i(r,"/remotePurchaseOther",e)},commit:function(t){var e={referenceNo:"00000000",sendSms:"N",sendSmsLanguage:"eng"};e.token=t,i(e,"/commitTransaction",function(){})},deleteCard:function(t,e){var r={};o(t,r,l),i(r,"/deleteCard",e)},validateTransaction:function(t,e){var r=t.find("input[name^='pinType']")[0];I="mpin"==r.value||"cvv"==r.value,"rta"==r.value&&(N=!0);r={};r.validationRefNo=a,o(t,r,p),i(r,"/validateTransaction",e)},forgotPassword:function(t,e){var r={};o(t,r,h),i(r,"/forgotPassword",e)},setAddress:function(t){q=t},checkMasterPass:function(t,e){var r={};o(t,r,d),i(r,"/checkMasterPassEndUser",e)},linkCardToClient:function(t,e){var r={};o(t,r,m),i(r,"/linkCardToClient",e)},addCardToMasterPass:function(t,e){var r={};o(t,r,y),i(r,"/addCardToMasterPass",e)},purchaseAndRegister:function(t,e){var r={};r.validationRefNo=a,o(t,r,_),i(r,"/purchaseAndRegister",e)},directPurchase:function(t,e){var r={};o(t,r,g),i(r,"/directPurchase",e)},resendOtp:function(t,e,r){var n={};n.validationRefNo=t,n.referenceNo="00000000",n.sendSms="N",n.sendSmsLanguage=e,i(n,"/resendOtp",r)},completeRegistration:function(t,e,r){var n={};n.token2=e,o(t,n,b),i(n,"/completeRegistration",r)},setFingerprint:function(t){U=t},setToken:function(t){a=t},getLastToken:function(){return a},updateUser:function(t,e){var r={};o(t,r,v),i(r,"/updateUser",e)},verifyPin:function(t,e){var r={};o(t,r,T),i(r,"/verifyPin",e)},parseQrCode:function(t,e){var r={};o(t,r,S),i(r,"/QrPaymentVerify",e)},initiateRecurringPayment:function(t,e){var r={};o(t,r,w),i(r,"/initiateManageRecurringPayment",e)},setAdditionalParameters:function(t){u=t},moneySend:function(t,e){var r={};o(t,r,D),i(r,"/initiateMoneySend",e)},getCardUniqueId:function(t,e,r){var n={};P(t)?n.rtaPan=H.encrypt(t):n.rtaPan="",n.token=e,n.referenceNo="00000000",n.sendSms="N",n.clientIp="",n.sendSmsLanguage="eng",i(n,"/getCardUniqueId",r)},listCardAccounts:function(t,e){var r={};o(t,r,A),i(r,"/ListAccountByCardOwner ",e)},deleteCardAccount:function(t,e){var r={};o(t,r,C),i(r,"/deletecardbycardowner",e)},getDigitalLoanUrl:function(t,e){var r={};o(t,r,R),i(r,"/digitalLoanUrl",e)},initiateTcknValidation:function(t,e){var r={};o(t,r,B),i(r,"/initiateTcknValidation",e)},completeLoan:function(t,e){var r={};o(t,r,E),i(r,"/completeLoan",e)},initiateLoanPayment:function(t,e){var r={};o(t,r,O),i(r,"/initiateLoanPayment",e)}}}()}.call(this);
|
|
Binary file
|