{"maintainers":[{"name":"anonymous","email":"smartlook.npm@cisco.com"},{"name":"anonymous","email":"budim@cisco.com"},{"name":"anonymous","email":"sami@aldury.com"},{"name":"anonymous","email":"jakubpetriska@gmail.com"},{"name":"anonymous","email":"pajkycz@gmail.com"},{"name":"anonymous","email":"david@smartlook.com"},{"name":"anonymous","email":"acrocz@gmail.com"},{"name":"anonymous","email":"honzicekz@gmail.com"},{"name":"anonymous","email":"vojacem@gmail.com"},{"name":"anonymous","email":"32jojo32@gmail.com"},{"name":"anonymous","email":"petr.klobas@gmail.com"}],"keywords":["smartlook","smartlook-client"],"dist-tags":{"latest":"10.0.0"},"author":{"name":"David Kadlec","email":"david@smartlook.com"},"description":"Official Smartlook client for easy frontend integration.","readme":"# Smartlook-client\n\nImports and initializes Smartlook recorder into a page.\n\n1.  Installation\n    ```\n    npm install smartlook-client --save\n    ```\n    or\n    ```\n    yarn add smartlook-client\n    ```\n2.  Import\n    ```\n    import Smartlook from 'smartlook-client'\n    ```\n    or\n    ```\n    const Smartlook = require('smartlook-client')\n    ```\n3.  API\n\n    ```\n    init(key: string)\n    init(key: string, params)\n    ```\n\tRequired parameters:\n\t* key:\n\t\t* Obtained in application at project settings\n\n\tOptional parameters:\n    * advancedNetwork:\n        * description:\n            * Object with settings that control network data capture. Advanced network recording allows recording the bodies and headers of requests and responses.\n            * Read more at https://web.developer.smartlook.com/docs/advanced-network-recording\n        * `allowedUrls`\n            * allows recording of request/response bodies\n            * an Array of exact, string patterns or regular expressions\n        * `allowedHeaders`\n            * allows recording of non-standard headers\n            * an Array of exact, case-insensitive patterns\n        * `websockets`\n            * allows recording of websockets\n            * boolean value\n    * cookies:\n\t\t* supported values:\n\t\t\t* _(default)_ `true` - enable storing of metadata in cookies and local storage\n\t\t\t* `false` - disable storing of metadata in cookies, using only local storage\n\t\t* example:\n\t\t\t* `Smartlook.init('xxxxx', { cookies: false })`\n\t\t* description\n\t\t\t* Use false if you do not want to store recording metadata in cookies\n\t\t\t* Note that disabling cookies with block the ability to connect visitors between domain and subdomains.\n\t\t\t* Read more at https://help.smartlook.com/en/articles/6064963-cookies-in-smartlook\n    * interceptors\n        * description:\n            * Object with settings that allows control the data that Smartlook captures.\n            * Read more at https://web.developer.smartlook.com/docs/interceptors\n        * `url`\n            * URL interceptor that can obscure sensitive data from URLs\n        * `network`\n            * Network interceptor that can obscure sensitive data from recorded network calls—bodies, headers, and URLs.\n            * Network events can be completely omitted by returning false from the interceptor.\n        * `error`\n            * \tError interceptor that can obscure sensitive data from error events\n        * `focus`\n            * \tFocus interceptor that can obscure sensitive data from focus events\n        * `input`\n            * \tInput interceptor that can obscure sensitive data from input events\n        * `click`\n            * \tClick interceptor that can obscure sensitive data from click events\n            \n\t* region:\n\t\t* supported values:\n\t\t\t* `'eu'`\n\t\t\t* `'us'`\n\t\t* example:\n\t\t\t* `Smartlook.init('xxxxx', { region: 'us' })`\n\t\t* description\n\t\t\t* Region where data will be captured and stored\n\t\t\t* **Do not change** unless told by your sales manager\n\t* relayProxyUrl:\n\t\t* supported values:\n\t\t\t* full URL of self-hosted relay proxy\n\t\t\t\t* e.g. `'https://my-proxy-domain.com/'`\n\t\t* example\n\t\t\t* `Smartlook.init('xxxxx', { relayProxyUrl: 'https://my-proxy-domain.com/' })`\n\t\t* description:\n\t\t\t* Read more at https://help.smartlook.com/en/articles/6120645-smartlook-relay-proxy and https://github.com/smartlook/smartlook-relay-proxy\n\t* standalone:\n\t\t* supported values:\n            * _(default)_ `false` - makes Smartlook try to establish a connection with the parent window and join the session. The session will be reused only when the parent window loads Smartlook and records it as the same project. See more in the iframe recordings section. if the communication is not established within 10 seconds, the recording starts as a standalone anyway, but these first 10 seconds may be missing.\n            * `true` - enable when your application is loaded in an iframe and you do not want Smartlook to try to connect with the parent window. Enabling this might be useful especially when you develop a third-party integration (e.g. payment gateway) that is inserted as an iframe on multiple websites.\n\n\t---\n\n    ```\n    track(string eventName, object<key:value> props)\n    ```\n\n    ```\n    identify(integer | string userId, object<key:value> props)\n    ```\n\n    ```\n    anonymize()\n    ```\n\n    ```\n    disable()\n    ```\n\n    ```\n    record(params: { forms?: boolean, ips?: boolean, emails?: boolean, numbers?: boolean })\n    ```\n\n    ```\n    getData(function callback)\n    ```\n\n    ```\n    restart()\n    ```\n\n    ```\n    pause()\n    ```\n\n    ```\n    resume()\n    ```\n\n    ```\n    error(string | Error error)\n    ```\n\n    ```\n    navigation(string locationOrPath)\n    ```\n\n    ```\n    properties(object<key:value> properties)\n    ```\n\n    ```\n    initialized()\n    ```\n\n    ```\n    playUrl\n    ```\n\n    ```\n    sessionId\n    ```\n\n    ```\n    visitorId\n    ```\n\n    ```\n    recordId\n    ```\n\n    ```\n    key\n    ```\n\n    ```\n    version\n    ```\n\n4.  Example usage in React\n\n    Usage in other libraries is similar.\n\n    ```js\n    import React, { Component } from 'react'\n    import Smartlook from 'smartlook-client'\n\n    class App extends Component {\n    \thandleIdentify = () => {\n    \t\tSmartlook.identify(12345, {\n    \t\t\tname: 'John Doe',\n    \t\t\temail: 'email@domain.com',\n    \t\t\t// other custom properties\n    \t\t})\n    \t}\n    \thandleTrack = () => {\n    \t\tSmartlook.track('transaction', {\n    \t\t\tvalue: 150,\n    \t\t\tcurrency: 'usd',\n    \t\t\tproduct: 'Product Description',\n    \t\t\t// other custom properties\n    \t\t})\n    \t}\n    \thandlePause = () => {\n    \t\tSmartlook.pause()\n    \t}\n    \trender() {\n    \t\treturn (\n    \t\t\t<div>\n    \t\t\t\t<button onClick={this.handleIdentify}>Identify visitor</button>\n    \t\t\t\t<button onClick={this.handleTrack}>Track event</button>\n    \t\t\t\t<button onClick={this.handlePause}>Pause recording</button>\n    \t\t\t</div>\n    \t\t)\n    \t}\n    \tcomponentDidMount() {\n    \t\tSmartlook.init('43bc84d9a8406exxxxxxxxxb5601f5bbf8d2ed')\n    \t}\n    }\n\n    export default App\n    ```\n\nFor more info visit https://web.developer.smartlook.com/reference/getting-started-with-your-api\n","repository":{"type":"git","url":"git+https://github.com/smartlook/smartlook-client.git"},"license":"MIT","bugs":{"url":"https://github.com/smartlook/smartlook-client/issues"},"versions":{"0.0.1":{"name":"smartlook-client","version":"0.0.1","keywords":["smartlook","smartlook-client"],"author":{"name":"David Kadlec","email":"david@smartsupp.com"},"license":"MIT","_id":"smartlook-client@0.0.1","maintainers":[{"name":"anonymous","email":"amertak@gmail.com"}],"homepage":"https://github.com/smartlook/smartlook-client#readme","bugs":{"url":"https://github.com/smartlook/smartlook-client/issues"},"dist":{"shasum":"a992d164f51f0855db399238dde9b2dfdfa260cf","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/smartlook-client/-/smartlook-client-0.0.1.tgz","integrity":"sha512-QhhKOQSMeICVdbMUvy6U9Opo1K3R4rV917+y/FaVq1xawV/JhANpxuxvn7xj+n/Dy5PWCT4gvYhvjSWybyIkGg==","signatures":[{"sig":"MEYCIQCSL+c82Mt9UeFy959yg0JtjRhU2aD4bTVb33uzB14n+AIhAMpYxHEvfiCH7fqPyECbmliL9ogac436kcKVG/IEKA1b","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"a992d164f51f0855db399238dde9b2dfdfa260cf","gitHead":"711f897c343845d1fa6295c2c52b429427f9a0ec","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"_npmUser":{"name":"anonymous","email":"amertak@gmail.com"},"repository":{"url":"git+https://github.com/smartlook/smartlook-client.git","type":"git"},"_npmVersion":"4.6.1","description":"Official Smartlook client for easy frontend integration.","directories":{},"_nodeVersion":"7.10.0","_npmOperationalInternal":{"tmp":"tmp/smartlook-client-0.0.1.tgz_1496219666185_0.8310998703818768","host":"s3://npm-registry-packages"}},"2.0.0":{"name":"smartlook-client","version":"2.0.0","keywords":["smartlook","smartlook-client"],"author":{"name":"David Kadlec","email":"david@smartsupp.com"},"license":"MIT","_id":"smartlook-client@2.0.0","maintainers":[{"name":"anonymous","email":"amertak@gmail.com"}],"homepage":"https://github.com/smartlook/smartlook-client#readme","bugs":{"url":"https://github.com/smartlook/smartlook-client/issues"},"dist":{"shasum":"e4693405bdaefc48bedb9b766788667fa1e523fe","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/smartlook-client/-/smartlook-client-2.0.0.tgz","integrity":"sha512-FnHdl9EuvIw0LTYn9T8Xgck6/pk5xYJ8/TATftLyc6HEeMoLQf9E4XX21GHnwloEvzAitQA3qEGSBjcFuvuRAQ==","signatures":[{"sig":"MEYCIQDrkSKG3MAjulbfGgJtD0YY1YfC8v36NvdnOcw6ESGLDAIhAIECUotGdO4IwuBQVxk8B0mMkJMQObSWqjopxE9YIQHx","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"e4693405bdaefc48bedb9b766788667fa1e523fe","gitHead":"a6db1d773863068f5ce14577be4a0056e683a33b","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"_npmUser":{"name":"anonymous","email":"david@smartsupp.com"},"repository":{"url":"git+https://github.com/smartlook/smartlook-client.git","type":"git"},"_npmVersion":"4.6.1","description":"Official Smartlook client for easy frontend integration.","directories":{},"_nodeVersion":"7.10.0","_npmOperationalInternal":{"tmp":"tmp/smartlook-client-2.0.0.tgz_1496223767326_0.6451652359683067","host":"s3://npm-registry-packages"}},"2.1.2":{"name":"smartlook-client","version":"2.1.2","keywords":["smartlook","smartlook-client"],"author":{"name":"David Kadlec","email":"david@smartsupp.com"},"license":"MIT","_id":"smartlook-client@2.1.2","maintainers":[{"name":"anonymous","email":"amertak@gmail.com"}],"homepage":"https://github.com/smartlook/smartlook-client#readme","bugs":{"url":"https://github.com/smartlook/smartlook-client/issues"},"dist":{"shasum":"5e276040131e49ce90b6e8014e67b6d205664fa2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/smartlook-client/-/smartlook-client-2.1.2.tgz","integrity":"sha512-+mj1hg3+OpSW28F9PZgHSVWDTirQFYtpE24/2TCISP+iTZv7FDzW+ekNnlQE3ivebEhfKoki57UATg+nfy5F5w==","signatures":[{"sig":"MEUCIQCmj4jWCMUT6rlDLa1mF8HnGxnIDQ37uAhiUx3f5y7OhwIgZYtOsnAFo6X4kh6gUX1WS3J6cMiw40ZsRiHfwLKDdR4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"5e276040131e49ce90b6e8014e67b6d205664fa2","gitHead":"e673a34d905baf4f6e74525a64233b1decdb6d88","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"_npmUser":{"name":"anonymous","email":"david@smartsupp.com"},"repository":{"url":"git+https://github.com/smartlook/smartlook-client.git","type":"git"},"_npmVersion":"4.6.1","description":"Official Smartlook client for easy frontend integration.","directories":{},"_nodeVersion":"7.10.0","_npmOperationalInternal":{"tmp":"tmp/smartlook-client-2.1.2.tgz_1496224719985_0.5881909639574587","host":"s3://npm-registry-packages"}},"2.1.3":{"name":"smartlook-client","version":"2.1.3","keywords":["smartlook","smartlook-client"],"author":{"name":"David Kadlec","email":"david@smartsupp.com"},"license":"MIT","_id":"smartlook-client@2.1.3","maintainers":[{"name":"anonymous","email":"amertak@gmail.com"}],"homepage":"https://github.com/smartlook/smartlook-client#readme","bugs":{"url":"https://github.com/smartlook/smartlook-client/issues"},"dist":{"shasum":"f250f8271fa29e0907ab77e774d59326c7ac6b99","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/smartlook-client/-/smartlook-client-2.1.3.tgz","integrity":"sha512-LVCHjZBTQZ7u4o2/mQ9SDF3l5LclVX4n5B5L0/B1FQjXoXkASOXLNVj/FbkmAPz9JOoWODFyU+qcwtDsAneUvQ==","signatures":[{"sig":"MEUCIQDpSUEQSHr8RBEwJ/Gc/3vxO55hX06OKoS5t9j5g5yiiQIgDUpMvqXQyuRzWtyP8ElCpA0ay+PU1/nXrjm05gDXqA0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"f250f8271fa29e0907ab77e774d59326c7ac6b99","gitHead":"2e380d096fa2be534f95763f7e14471ccce1c0b0","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"_npmUser":{"name":"anonymous","email":"david@smartsupp.com"},"repository":{"url":"git+https://github.com/smartlook/smartlook-client.git","type":"git"},"_npmVersion":"4.6.1","description":"Official Smartlook client for easy frontend integration.","directories":{},"_nodeVersion":"7.10.0","_npmOperationalInternal":{"tmp":"tmp/smartlook-client-2.1.3.tgz_1496229393193_0.7540171477012336","host":"s3://npm-registry-packages"}},"2.1.4":{"name":"smartlook-client","version":"2.1.4","keywords":["smartlook","smartlook-client"],"author":{"name":"David Kadlec","email":"david@smartsupp.com"},"license":"MIT","_id":"smartlook-client@2.1.4","maintainers":[{"name":"anonymous","email":"david@smartsupp.com"},{"name":"anonymous","email":"potacek.pavel@gmail.com"},{"name":"anonymous","email":"famousgarkin@outlook.com"},{"name":"anonymous","email":"morlokdk@gmail.com"},{"name":"anonymous","email":"acrocz@gmail.com"}],"homepage":"https://github.com/smartlook/smartlook-client#readme","bugs":{"url":"https://github.com/smartlook/smartlook-client/issues"},"dist":{"shasum":"96460adb97d6f398dc72534e7c9c7d236c01b626","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/smartlook-client/-/smartlook-client-2.1.4.tgz","integrity":"sha512-9Y5vEjqbGkiIoVzdcltvFWhI0J1wStN3kEJcJFbR4Mv6bHHnyeoTQ9l0jBHQnmcpydtTZZ8UT67qIc7mFkjb3Q==","signatures":[{"sig":"MEQCIEJTgox0iLqQzYarxziNntPnYLDPTG3ZVvlhQzV9D6foAiBmP22jPhtxhio4p50fjoniHEVqbhw3SibnHJhy/w1prA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"96460adb97d6f398dc72534e7c9c7d236c01b626","gitHead":"5228a8f85f9e724c98e934c534a607dfd359c530","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"_npmUser":{"name":"anonymous","email":"david@smartsupp.com"},"repository":{"url":"git+https://github.com/smartlook/smartlook-client.git","type":"git"},"_npmVersion":"4.6.1","description":"Official Smartlook client for easy frontend integration.","directories":{},"_nodeVersion":"7.10.0","_npmOperationalInternal":{"tmp":"tmp/smartlook-client-2.1.4.tgz_1496827372276_0.8488961202092469","host":"s3://npm-registry-packages"}},"2.2.0":{"name":"smartlook-client","version":"2.2.0","keywords":["smartlook","smartlook-client"],"author":{"name":"David Kadlec","email":"david@smartsupp.com"},"license":"MIT","_id":"smartlook-client@2.2.0","maintainers":[{"name":"anonymous","email":"david@smartsupp.com"},{"name":"anonymous","email":"potacek.pavel@gmail.com"},{"name":"anonymous","email":"famousgarkin@outlook.com"},{"name":"anonymous","email":"morlokdk@gmail.com"},{"name":"anonymous","email":"acrocz@gmail.com"}],"homepage":"https://github.com/smartlook/smartlook-client#readme","bugs":{"url":"https://github.com/smartlook/smartlook-client/issues"},"dist":{"shasum":"a8cf132cbb7fb32fa6e6919a224fbb7d88f53d87","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/smartlook-client/-/smartlook-client-2.2.0.tgz","integrity":"sha512-WEy7TWsic1zvk1XPFuMoOdhARsbMh60C052ydYi61flU5vXpqRAWdCullV1eKUgobkNImlxFPYJIPuUCXXygtQ==","signatures":[{"sig":"MEUCIGICnr9USvvtNoLvh3gTTTnB6NwzFougA6cFlZP8JiC1AiEA8INRW5FtT7GHYxOuYvM2kYdpgO/awNqZDZ863VhqOeI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"index.js","_from":".","_shasum":"a8cf132cbb7fb32fa6e6919a224fbb7d88f53d87","gitHead":"98ddeea915aa2ee5545b051f871160df6f94ae9b","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"_npmUser":{"name":"anonymous","email":"david@smartsupp.com"},"repository":{"url":"git+https://github.com/smartlook/smartlook-client.git","type":"git"},"_npmVersion":"4.6.1","description":"Official Smartlook client for easy frontend integration.","directories":{},"_nodeVersion":"7.10.0","_npmOperationalInternal":{"tmp":"tmp/smartlook-client-2.2.0.tgz_1496847255879_0.9522389862686396","host":"s3://npm-registry-packages"}},"3.0.0":{"name":"smartlook-client","version":"3.0.0","keywords":["smartlook","smartlook-client"],"author":{"name":"David Kadlec","email":"david@smartsupp.com"},"license":"MIT","_id":"smartlook-client@3.0.0","maintainers":[{"name":"anonymous","email":"acrocz@gmail.com"},{"name":"anonymous","email":"david@smartsupp.com"},{"name":"anonymous","email":"famousgarkin@outlook.com"},{"name":"anonymous","email":"morlokdk@gmail.com"},{"name":"anonymous","email":"potacek.pavel@gmail.com"}],"homepage":"https://github.com/smartlook/smartlook-client#readme","bugs":{"url":"https://github.com/smartlook/smartlook-client/issues"},"dist":{"shasum":"17520bb53e6c4323d07b918993dc6babf4ac3edd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/smartlook-client/-/smartlook-client-3.0.0.tgz","fileCount":5,"integrity":"sha512-dWdN3KoeQq7v4CQ/oZK4gNP4OcwrGYTMXdEWgkJNix9AKXzp00G/LlCo+Lqt9iPe4IVZOoFHwZ4k9xqAj+fi7w==","signatures":[{"sig":"MEUCIQD8snCxTBxBXOCsjCMdYi4Se1nqcgZ3zGzc0fCR0A3u1wIgTkspZSzphUXEZFs4TIUuPdZ7fW5fuFzJZYwQx0ICjbA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":4465},"main":"index.js","gitHead":"37e427242c4cebc7aba4066186e7e35bf7bd1c25","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"_npmUser":{"name":"anonymous","email":"david@smartsupp.com"},"repository":{"url":"git+https://github.com/smartlook/smartlook-client.git","type":"git"},"_npmVersion":"5.6.0","description":"Official Smartlook client for easy frontend integration.","directories":{},"_nodeVersion":"8.1.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/smartlook-client_3.0.0_1519380358937_0.3203181091036953","host":"s3://npm-registry-packages"}},"3.0.1":{"name":"smartlook-client","version":"3.0.1","keywords":["smartlook","smartlook-client"],"author":{"name":"David Kadlec","email":"david@smartsupp.com"},"license":"MIT","_id":"smartlook-client@3.0.1","maintainers":[{"name":"anonymous","email":"acrocz@gmail.com"},{"name":"anonymous","email":"david@smartsupp.com"},{"name":"anonymous","email":"famousgarkin@outlook.com"},{"name":"anonymous","email":"morlokdk@gmail.com"},{"name":"anonymous","email":"potacek.pavel@gmail.com"}],"homepage":"https://github.com/smartlook/smartlook-client#readme","bugs":{"url":"https://github.com/smartlook/smartlook-client/issues"},"dist":{"shasum":"8ef6e560b4112feb0b60d94a8973359e9a226ba1","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/smartlook-client/-/smartlook-client-3.0.1.tgz","fileCount":5,"integrity":"sha512-FvNAzpOzlJsdkzRNit3+nXkx1nWb68gJmSZeWsgaGHmQCQs9zYljsVnhITA1oHfiFf4ECwsO9qYqCAFPgBXjKw==","signatures":[{"sig":"MEQCIG5xl6dpuL7ywkrYRdH44QbBIFCYf05AUH4F1vlt9pfGAiAMITqXeOpmeaSOE6bv0l4YieruHjy8hcLpL/3iKT0jYA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":4495},"main":"index.js","gitHead":"f777c61fe914c5ad57b307a4370f79f2795938c8","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"_npmUser":{"name":"anonymous","email":"david@smartsupp.com"},"repository":{"url":"git+https://github.com/smartlook/smartlook-client.git","type":"git"},"_npmVersion":"5.6.0","description":"Official Smartlook client for easy frontend integration.","directories":{},"_nodeVersion":"8.1.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/smartlook-client_3.0.1_1519380498335_0.32928591203078517","host":"s3://npm-registry-packages"}},"3.1.0":{"name":"smartlook-client","version":"3.1.0","keywords":["smartlook","smartlook-client"],"author":{"name":"David Kadlec","email":"david@smartsupp.com"},"license":"MIT","_id":"smartlook-client@3.1.0","maintainers":[{"name":"anonymous","email":"acrocz@gmail.com"},{"name":"anonymous","email":"david@smartsupp.com"},{"name":"anonymous","email":"famousgarkin@outlook.com"},{"name":"anonymous","email":"morlokdk@gmail.com"},{"name":"anonymous","email":"pajkycz@gmail.com"},{"name":"anonymous","email":"potacek.pavel@gmail.com"}],"homepage":"https://github.com/smartlook/smartlook-client#readme","bugs":{"url":"https://github.com/smartlook/smartlook-client/issues"},"dist":{"shasum":"d84610858ddf6d16695b3a6136b4ed8ef8e8120c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/smartlook-client/-/smartlook-client-3.1.0.tgz","fileCount":5,"integrity":"sha512-oeEQK90QF4vCwOwERPG5JzC/vu0kiWgNuokZsthpRImzSxgnKfZo5pdUZs8X+69OtGwbXCbmY+SXRwHl9RsfMQ==","signatures":[{"sig":"MEQCIF9ALJvkCjgSwx0wssvOB9SyFgjYgFycfBRNUEt/xhrcAiAvalnX7J3/GDdybcKZrZ0Iondocdf+aVLLMsWOVQsOqA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":5395,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbBStbCRA9TVsSAnZWagAAnx8QAJCh68UG5BgKzM50inMN\n1kla9Ez1z7mquuF5Ku2YfNGwVGArlkqBBxELc/0Bt32irFaaOF++4VSCC+HA\nT9E9NPBRXfSO8RFs8wXBMnvNum6JK112hzvWedKXPkjMdS5ClK6ymVJT5VYp\nbXDbK5Ss25lG59zLGe7/64VJqS6SMjgUXEicjKEmSSb/qiMR15J0i2sk6j4T\nzJN6X45kBXLxp3q7EHUN3aZufJLF0Q8zaefsot/EMD7eVRkgRu6UYfwgLNg7\nNlf2wyvX3/V4NPA/GTw8H+m+MUFIoYIlGJ3KYQk1rgfmuYx9Q0gklP48tPA8\n16KgBcOwMp3sgQb3BveVnDoQnqcusN2fzfpgQBPgjFgAOov9VU5Go4RXLtEC\n2J4Ph7HCeAZrIhdC/RYnJkiYsWPjhmDVHoK8+EiwsF7nD9phoKg2vSYcIB/T\nCt8r6aAubkBZ7S3HKY0XJmnwVEBK/wVawtkUOYDVZpNK8aZ+YM/Thd4oMqFb\noP7EgixL0Ghw6kWK79ePRhHKBQFzbp9DKPWJfzlLxBF5XNkbq8Ux1icm5/wJ\nzUhIkMMJRhzh8YUDqQK8BtLVvDIU3RY2GDSWomJL/jWe05I6UsMEqMRm63NQ\nNQubWYEQ2/q11JTzZ3ubtOjrGoD1QHX7a9U9sdmPAmv0EGv4l+ROsBEUaWNJ\nipBJ\r\n=gQ9t\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"48aa5677bd284118bc559216fb07990c679abb1d","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"_npmUser":{"name":"anonymous","email":"david@smartsupp.com"},"repository":{"url":"git+https://github.com/smartlook/smartlook-client.git","type":"git"},"_npmVersion":"5.6.0","description":"Official Smartlook client for easy frontend integration.","directories":{},"_nodeVersion":"9.10.1","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/smartlook-client_3.1.0_1527065434924_0.7730300637000891","host":"s3://npm-registry-packages"}},"3.1.1":{"name":"smartlook-client","version":"3.1.1","keywords":["smartlook","smartlook-client"],"author":{"name":"David Kadlec","email":"david@smartsupp.com"},"license":"MIT","_id":"smartlook-client@3.1.1","maintainers":[{"name":"anonymous","email":"acrocz@gmail.com"},{"name":"anonymous","email":"adamcernycz@gmail.com"},{"name":"anonymous","email":"david@smartsupp.com"},{"name":"anonymous","email":"famousgarkin@outlook.com"},{"name":"anonymous","email":"morlokdk@gmail.com"},{"name":"anonymous","email":"pajkycz@gmail.com"},{"name":"anonymous","email":"potacek.pavel@gmail.com"}],"homepage":"https://github.com/smartlook/smartlook-client#readme","bugs":{"url":"https://github.com/smartlook/smartlook-client/issues"},"dist":{"shasum":"2b45eeb03e1d7ef919eed592ff50d7b5482900d9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/smartlook-client/-/smartlook-client-3.1.1.tgz","fileCount":5,"integrity":"sha512-sSXKFstAypbVC0A55ZQBZMGFdNzwgAgxfqSDUlbxEvAOVu6iNConIYuiKGYaN055/Bnd/kHSm2Ut8N8eORzOjw==","signatures":[{"sig":"MEUCIQDMTclwFI+ELO+Zba01BRJxoEKOSiW06f5BQTDWx2cN0gIgezHC2FsuJ+cZJjO815GiCy5cgfS9IpTQg3+zoFrdwcg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":5423,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb9DE3CRA9TVsSAnZWagAAcpsP/R9b9cKCuwEiju40auA4\nKLESrtr+DhbgPis0W8chtlqo0zS16naU2sMPsWYEieM3VzlvRxaADnuQ0wkR\nTQfJ1kzUAf0ENRS2ry/0r0pKvkGRtOTbcdAusl9/6PWslIzQIKJ5dQQXRItT\n191cEo/ZZh1M+udJd6C22Gwz3D4LZRwJp4cSoZq1CMPh2pepBu4NbhYxFSwy\n8vV0IP81zdJqlgW3a4p3HSeN6YK4J+giH8QzvvUMGP40ECGDWz+owgOUEov6\nbVm4Dqz7yzGgYAIL5aTqBxWpgsU2yqz340OOJ3gDQaWQ5+0PWurYOwSHtUBh\noWAWO3H4n9AaWsfdLPDU2IXyCaOoHRbysnNJ27botwYmjcD+Z0TRoOXLwh2p\nN097+O4uNCatn8BxOp1n6n0WxEm79VvM7iKXfbD2N6+HGbWLyBVnuPgUiP1j\nQfYWL9EUD9GktuJWFJhJu4s0Iriz1fRTps5Jd02KoSPqG6CgEEI9ShX6vDjU\nNP4+D4UO6sXMgy12SPPYx/ZA0dANf3q8gPXP00O3dchF7XyQECVp74O1fU+w\n67zoIBjNXdGT1wsU0G+e1yfXlvq1nJ7YggsQ4xjbVCZ8AZpQs5FGlVj9fw++\nQH/Z673lg3ARBu7EnfMCmg8zKmFc6xmwlUpL06qntfvhLlIMFoJS3XueNfyn\nJ0gv\r\n=2OqC\r\n-----END PGP SIGNATURE-----\r\n"},"main":"index.js","gitHead":"9526a838a8cf189e8f2718a2218c218cb1d2b506","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"_npmUser":{"name":"anonymous","email":"david@smartsupp.com"},"repository":{"url":"git+https://github.com/smartlook/smartlook-client.git","type":"git"},"_npmVersion":"6.4.1","description":"Official Smartlook client for easy frontend integration.","directories":{},"_nodeVersion":"8.10.0","_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/smartlook-client_3.1.1_1542730038671_0.7989084219960938","host":"s3://npm-registry-packages"}},"4.0.0":{"name":"smartlook-client","version":"4.0.0","keywords":["smartlook","smartlook-client"],"author":{"name":"David Kadlec","email":"david@smartsupp.com"},"license":"MIT","_id":"smartlook-client@4.0.0","maintainers":[{"name":"anonymous","email":"acrocz@gmail.com"},{"name":"anonymous","email":"adamcernycz@gmail.com"},{"name":"anonymous","email":"david@smartsupp.com"},{"name":"anonymous","email":"famousgarkin@outlook.com"},{"name":"anonymous","email":"morlokdk@gmail.com"},{"name":"anonymous","email":"pajkycz@gmail.com"},{"name":"anonymous","email":"potacek.pavel@gmail.com"}],"homepage":"https://github.com/smartlook/smartlook-client#readme","bugs":{"url":"https://github.com/smartlook/smartlook-client/issues"},"dist":{"shasum":"8a4c2b285fa03bef3f6d4372797208991b23084f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/smartlook-client/-/smartlook-client-4.0.0.tgz","fileCount":10,"integrity":"sha512-aKp29SbkL8cEZ5aWzk8RviQB+4eaoCCCZHPh9zG7HB4mnUbHy8I8mLc/MH5t2g6eLDT+TYem+/V8nWTvvls2gQ==","signatures":[{"sig":"MEQCIDKm8KPq8sl5WA8yC65KakzK/hUOkv8KVQfZe5fVwy7qAiB3Ab6IrHGAlKkC8UdhlqeiZ/iWm3sOGROxpQcrudtLKQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":11517,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb9SXmCRA9TVsSAnZWagAAuk0P/RE7aOr5/CcVDW/hVCEe\nigOZLcu42pUYJ3YLZ3XUvujgNSZBqks8mDboYSq3J0/LHU+aHHWO67TEUHIz\nUmh8GxF6YUIdb+Gi2WI5O5I22+4qGi1MaF7wBQHwKSCCdZDlbgYFxb2S3iiS\n2I6R6rXbRMdWqBGOCVMCn+2kqDsnIpQ5BmGNti+vkPXTjLSlh7AjBTHlFYi1\nIB5XVo1cq+Qb/TrvI0CUDoS7GhJPojWv4naHhHhMGyX5wA5OcnuHp28IOvGB\nnCVdI3Ewm29O55szuNMFn9wzsaFbv/WRZgfmTeik+o2oPXzwh53B4/tC5wzF\nEwsxtIwSfytwXYcs/9fEJTDmmJAEla2h44nuPd3Axv1Ny9imSn/338CaSjh3\n3nwGrsbN2FCfRyRfevIGXJydoBRjO4d1V9YXLx291FmL6Mcz6z1QsLGA7hB+\nkPbmCUfWOGY8tmBB2Dhis90BMrUs97Zjlv2FTViRnOJbywiFSuEbzRx70FoR\nbKBv5soZJY2N9LiURRWZ0BuMcBciDYTqGDjF83wB/vnlBmN/mPJW/E3EAK2s\nzyXuraZ4jL8Mcp2wM+5cWa3mZt+qGN5UB0fT7njCvuHx8bRhE1hOgfE4Lgkr\nhaWsKCGTxGHBXPaVH0MOWQRGHOJ15ad9IBUwHjywRulj2eWZ7D4g2qgtFQY8\n2onH\r\n=l6O6\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","types":"./dist/index.d.ts","gitHead":"4fc22c8aa3d4353a3800d008951f73b691017ae4","scripts":{"build":"tsc"},"_npmUser":{"name":"anonymous","email":"david@smartsupp.com"},"repository":{"url":"git+https://github.com/smartlook/smartlook-client.git","type":"git"},"_npmVersion":"6.4.1","description":"Official Smartlook client for easy frontend integration.","directories":{},"_nodeVersion":"8.10.0","dependencies":{"typescript":"^3.1.6"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/smartlook-client_4.0.0_1542792678142_0.39684592185417134","host":"s3://npm-registry-packages"}},"4.1.0":{"name":"smartlook-client","version":"4.1.0","keywords":["smartlook","smartlook-client"],"author":{"name":"David Kadlec","email":"david@smartsupp.com"},"license":"MIT","_id":"smartlook-client@4.1.0","maintainers":[{"name":"anonymous","email":"acrocz@gmail.com"},{"name":"anonymous","email":"adamcernycz@gmail.com"},{"name":"anonymous","email":"david@smartsupp.com"},{"name":"anonymous","email":"famousgarkin@outlook.com"},{"name":"anonymous","email":"morlokdk@gmail.com"},{"name":"anonymous","email":"pajkycz@gmail.com"},{"name":"anonymous","email":"potacek.pavel@gmail.com"}],"homepage":"https://github.com/smartlook/smartlook-client#readme","bugs":{"url":"https://github.com/smartlook/smartlook-client/issues"},"dist":{"shasum":"b478fc3358c37e601cad3a81dfd45e2351fb2837","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/smartlook-client/-/smartlook-client-4.1.0.tgz","fileCount":10,"integrity":"sha512-q96A6SsUWDBPubiVsAK7LLQh1LngfCNNz/WDg+n1KmVtdDVmjPbW8zA+aNl8veIcGxjY2y2mwbZu1NNK00Sg/w==","signatures":[{"sig":"MEUCIFkOx9FsjBcA/43YpLsDZc6b4yilC1BZjhFmy8wC+jQ1AiEAghuK89C7i4aL3w2Uu5jsuZem3ls1Ow2t34GSBKoPWIQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13216,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdW7DeCRA9TVsSAnZWagAAvioP/A0TIYJCBlVpmzR8OIrz\n8uTPx0ha7A/UkgqxaY/nG//Dy3V36OT5DTl7kzHIlgI9r2IJTmk4QXgMxBYx\nFm0/2K0GrNZrEffZxlcN6JqgBS94nVT8NZyw/DjIXBe+Jk0AGE3gYtFvToQW\nUuN3sAiODEZMEWlz3IWgNDAQ9U+rASfPR90xtStqZyawRkFT1V2lhJfAAdIO\n9LvgiZpiEkgyP48STkP0XxkoK9HeRFP6KCFNjTezGTXeA6W50z4MyvvGHiEd\n8NhS8JnO10anBWS0EKCJRC//YQa3vsa3ePk0v4N6MlCFPtHU733tWJ4fFTc0\nMI9I1zc56UUW2h7J50PPSb0J/XJIvN8GjQGXrqxUwIcUm8OQM7SAWdEUr6bB\nMLg32pNFOrYmGwqYj+zGHP+SFXLiJF+GCZBzo3T3dC1qHzHo/Rx+1SnINg1X\n3D+om24BbK7Y5NukYNxuNdTtq1C4k85SKJxtOKsxHoOwZ//KlPkGRtL488Jo\nmDZ4Ru0Xu+qyiaQWMEfu9MTlJhVGlHoYQwLjV3m02Dozw/00q/naBo3r9NE5\nZez5W64QhZxDVnLiz9QoS+hjDA/cF0Z849KQLRx0GueXzp211rzqyQWMyXsX\nR84LvAoi6e9vho7GUwaDedfy55SlFCSqe97vEORQWKLMk/k8bC9rsXalioyi\nsWaD\r\n=ylQ4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","types":"./dist/index.d.ts","gitHead":"3c591b6dd8456ed93965f6c6d5e480a31dd2d442","scripts":{"build":"tsc"},"_npmUser":{"name":"anonymous","email":"david@smartsupp.com"},"repository":{"url":"git+https://github.com/smartlook/smartlook-client.git","type":"git"},"_npmVersion":"6.4.1","description":"Official Smartlook client for easy frontend integration.","directories":{},"_nodeVersion":"11.8.0","dependencies":{"typescript":"^3.1.6"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/smartlook-client_4.1.0_1566290141438_0.750603500915924","host":"s3://npm-registry-packages"}},"4.2.0":{"name":"smartlook-client","version":"4.2.0","keywords":["smartlook","smartlook-client"],"author":{"name":"David Kadlec","email":"david@smartlook.com"},"license":"MIT","_id":"smartlook-client@4.2.0","maintainers":[{"name":"anonymous","email":"acrocz@gmail.com"},{"name":"anonymous","email":"adamcernycz@gmail.com"},{"name":"anonymous","email":"david@smartsupp.com"},{"name":"anonymous","email":"famousgarkin@outlook.com"},{"name":"anonymous","email":"morlokdk@gmail.com"},{"name":"anonymous","email":"pajkycz@gmail.com"},{"name":"anonymous","email":"potacek.pavel@gmail.com"}],"homepage":"https://github.com/smartlook/smartlook-client#readme","bugs":{"url":"https://github.com/smartlook/smartlook-client/issues"},"dist":{"shasum":"609877e742256fdedf320e252506c8172b1a302f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/smartlook-client/-/smartlook-client-4.2.0.tgz","fileCount":9,"integrity":"sha512-EAcAsHV3GTqY+EpmhG9bqyxdbIcQZwB7sBG2qZwIV8IWxCJCrpHQ8Je8NzfqMWpp798hHpYNQQovlXpaioRQLA==","signatures":[{"sig":"MEQCIHmyAPLhn3SznkG4pueGLdizT/GZ9trWcp/GX4Hok0uYAiAGX0V0TAQ2ZKEQeMGaXlTcl9LR1TivSxmrG+5tGFWTow==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":13154,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJd27P+CRA9TVsSAnZWagAAwxEP/1fLjZNdiCHDyQeVGAb9\nSV+4Z/FONdd5XpvAQXyEunt79NfbjeW8TLekis7xPB5k263Jprjq9TFHWpZl\nAXiVp+8joDF/FCO1F0inFFJSJadvm025UYVaDCPXCsHGQF4Y2mTOgpCHrJYw\nkMZoB99OwSXhPE4jzmM2K2c+YEki5zfJGRmCrDxm9GSg2jD2VxnU5Efn3iSJ\neNhJeLaltiURNHd4Cwmw6WQ7ts7ePxnRkmVV+nsPb9u16dR33KVynKnziyLH\nd4M9vh7MCz1sxVY+fMoUo8Rd1FeJ5KD16eevNG8kwiQdpiRlXcUi/w1RbWr3\nDL8wYjWRxW6KdFJhgbqBaon0Mb9lv1nUuOB2OSmzRu7OYpPyTmFgpb+U99AX\nRItk4KmqQKKawI0jK4kSug1KN/dq5OCBIk7abmoEHTUaj+MtQw4g6w6DWtJF\nGZ+S6qtbZoWmz0NcH+vVe99OoR0k/5ZTnSSqoGCXa2Jgl1mRZSIqeOfics6f\novLlrK5ovPrbdgS8d74E/IWXgBULLq63yrtyIkaK2jUxJfrnSVJfx6dyA12o\nEZ7e2zDrVGzmryyBdotznAzQNwhOhqmAACgViw/5kiJ55luIOGFOlhgyJ2jJ\niASS8nvw5tHydYSdu8coe5Pl56IQM6JhWokr92wygf4cCK9voNHnz4eSY2+c\ndJ6A\r\n=zVPq\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","types":"./dist/index.d.ts","gitHead":"997c5a6e66c13756d46ec371cf76020d9d0a1d60","scripts":{"build":"tsc"},"_npmUser":{"name":"anonymous","email":"david@smartsupp.com"},"repository":{"url":"git+https://github.com/smartlook/smartlook-client.git","type":"git"},"_npmVersion":"6.12.0","description":"Official Smartlook client for easy frontend integration.","directories":{},"_nodeVersion":"12.13.0","dependencies":{"typescript":"^3.1.6"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/smartlook-client_4.2.0_1574679550440_0.9837331501833533","host":"s3://npm-registry-packages"}},"4.3.0":{"name":"smartlook-client","version":"4.3.0","keywords":["smartlook","smartlook-client"],"author":{"name":"David Kadlec","email":"david@smartlook.com"},"license":"MIT","_id":"smartlook-client@4.3.0","maintainers":[{"name":"anonymous","email":"acrocz@gmail.com"},{"name":"anonymous","email":"adamcernycz@gmail.com"},{"name":"anonymous","email":"david@smartsupp.com"},{"name":"anonymous","email":"famousgarkin@outlook.com"},{"name":"anonymous","email":"morlokdk@gmail.com"},{"name":"anonymous","email":"pajkycz@gmail.com"},{"name":"anonymous","email":"potacek.pavel@gmail.com"}],"homepage":"https://github.com/smartlook/smartlook-client#readme","bugs":{"url":"https://github.com/smartlook/smartlook-client/issues"},"dist":{"shasum":"a949e4ce7945658919ccc7bb1a392bdd68d83362","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/smartlook-client/-/smartlook-client-4.3.0.tgz","fileCount":9,"integrity":"sha512-bXpKP69etcAT/soIXyKbvx36fq4vPDV8yOeWE40Kd6DsDMzMaeGAY9hUWlfL0V/Mur0DMFxkBtm1vMDCYO9fow==","signatures":[{"sig":"MEUCIHVMejDtfSapSL7w/aOQnEqIw3Xpx3Zch+yUNu1o+h3QAiEAhYBba/k169ZIdRyLLYi2daVyCa1/ziT8u4bU35lT55s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":14246,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeHv45CRA9TVsSAnZWagAAsNgP/R436j16ncjgmGeJUodM\nQRbgpCh5wYSyXW5GLNbq98EhXnGCoknNd9yviN9i05iDLfyHy54/Wxbwdao+\nJJHqum29Abxjt6RlCGpvQ+QYLmujstdK/XGPBqoZr5ospcdMbUEuaLqyfQ0J\nm73vyTJ8cp5tK1euoxa1GS84D2N98XnJQ4PhdFRvdpCwIW+xvaVECGtQCwea\nqqiTMK+wUfBa9LSYRHWOecluyECFMjzFmX+jfHxFYHSxxHMDTA8O1tTYCSmg\nto/Y75KWUz6cEDOz3W/fplei/bxBLdpMIurRdHmviObGffb8TGBlkxc/DF3v\nMtQkCPjd3xmBCBZ9jbbXvR3H2lp26cUlHQdY7l8iGHZTFWZBKmJhxu+2jACH\ns69I6TPDh3q3+M/zd3Gq1MescrxqjuEvtlynfDDVXrD86W6cJaftug55gRAE\nqrBp3HLDcAXRpSdCCyePedrLLZX2ReIkPAbgBoJlHABsR7FmaJm9aCX5hqsG\nmX4tq7m7IoaZw2NUAhcBu2qbYQlaJSYc03zgVLQjdC18P6GP3P4m2xhxJgRs\nDEtkej4geefpk6LcFhVVBZ/1mdb5yhvSh+IPmvhNtvwLpg1IeSOW85U/h0dR\nqg+hKxSHJFYRSiKBXCDS/5ybS0j2DJViCDarp1e+F7qzD6ViM3SubKfB4LS4\npFn1\r\n=NGj4\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","types":"./dist/index.d.ts","gitHead":"6f85aed6c743e687438e6bb6bfdb52c04feb1650","scripts":{"build":"tsc"},"_npmUser":{"name":"anonymous","email":"david@smartsupp.com"},"repository":{"url":"git+https://github.com/smartlook/smartlook-client.git","type":"git"},"_npmVersion":"6.12.0","description":"Official Smartlook client for easy frontend integration.","directories":{},"_nodeVersion":"12.13.0","dependencies":{"typescript":"^3.1.6"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/smartlook-client_4.3.0_1579089465187_0.8639089006205343","host":"s3://npm-registry-packages"}},"4.4.0":{"name":"smartlook-client","version":"4.4.0","keywords":["smartlook","smartlook-client"],"author":{"name":"David Kadlec","email":"david@smartlook.com"},"license":"MIT","_id":"smartlook-client@4.4.0","maintainers":[{"name":"anonymous","email":"acrocz@gmail.com"},{"name":"anonymous","email":"adamcernycz@gmail.com"},{"name":"anonymous","email":"david@smartsupp.com"},{"name":"anonymous","email":"famousgarkin@outlook.com"},{"name":"anonymous","email":"morlokdk@gmail.com"},{"name":"anonymous","email":"pajkycz@gmail.com"},{"name":"anonymous","email":"potacek.pavel@gmail.com"}],"homepage":"https://github.com/smartlook/smartlook-client#readme","bugs":{"url":"https://github.com/smartlook/smartlook-client/issues"},"dist":{"shasum":"be6f9fe50cbefd2d57e6b0932e0f9d01e942df9b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/smartlook-client/-/smartlook-client-4.4.0.tgz","fileCount":9,"integrity":"sha512-FJPH9fDKX1fRVekrlbw1sj6UiXWT3DJ49k4EXx7L4pLv0Hxt7TB0Igv+9ZSiVKjAajMHB+j7Q7hUkH9k/6SVeQ==","signatures":[{"sig":"MEUCIQCzsYCv8upf1FNHm8g91AE3B6i5mGNPZ9ipTlD91yzh4QIgNYP3qMzyYLLeWTSffMnjEDFZgyI1W9yBBeu4fZx5Nag=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":14946,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeOBauCRA9TVsSAnZWagAAKkIP/imDZY9qIMEHqbzpE1bg\nrezeuLMsm1cw9kxdMnaV/P9mBB2AkkT6Yh8wec307nnwKRvFPgmGVvTeELfT\nF0/0PalyLVPTsCtdk+vuGbMciG4xpTMT7IeveeO7OeMNWOUIizlkORZ/AbUM\nTNNj2GUPUoQnlJZzFpV5veXXQoC1Dvh1VRE9q7Eg3FNQ77j3sOtvyk7AJ6lz\nnniFuJ+gG41hEiyGmDmSQZOorInU85Hm0cd2MTPoGClNiT69l+wm9iRMYRKJ\n02sbh+i6OeorE56d/Yl4fMmEgT8Kla0IUTGX63A2YNkwb4JU7yIEmF/DRUhK\nAgcILZdW9nUXDrU7kxc8VAeGWQfmpiNZCHXEwRt/VIR2BO92NAF6BTy+lAp7\nmClmT/o1x5zF6TZsuF+vhnp4v2j1tI3qEqMUC8oPn8WpFbuCKaqaQFPrrS9o\nvxOMgWEJrhv11/kzrrJcAtJxAQi16dB9IEjVhPF8HiGKKZucNGIzdckpALrf\nB1ujaQSwGJKy25AwS+enx0j6Ua8rVMKu5omDv8SeYmFjQRj3CP6r32aWNNiZ\nazuSXE9UWPFeI3db0OQQRM3RRfxHVLC9pSW1ggL8JmJWN6wByn1Q5nr0KmxS\nblu+mOVb+x/2D6ZU4hrC1h/tfPUdjqqVmvdSIGHm7gzMeM7D0GTbLgpJv8fT\nUvmv\r\n=nfiK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","types":"./dist/index.d.ts","gitHead":"6e1a2feee5a96898ec700f762927ceb09826352d","scripts":{"build":"tsc"},"_npmUser":{"name":"anonymous","email":"david@smartsupp.com"},"repository":{"url":"git+https://github.com/smartlook/smartlook-client.git","type":"git"},"_npmVersion":"6.12.0","description":"Official Smartlook client for easy frontend integration.","directories":{},"_nodeVersion":"12.13.0","dependencies":{"typescript":"^3.1.6"},"_hasShrinkwrap":false,"_npmOperationalInternal":{"tmp":"tmp/smartlook-client_4.4.0_1580734126006_0.245270626309408","host":"s3://npm-registry-packages"}},"4.5.1":{"name":"smartlook-client","version":"4.5.1","keywords":["smartlook","smartlook-client"],"author":{"name":"David Kadlec","email":"david@smartlook.com"},"license":"MIT","_id":"smartlook-client@4.5.1","maintainers":[{"name":"anonymous","email":"acrocz@gmail.com"},{"name":"anonymous","email":"adamcernycz@gmail.com"},{"name":"anonymous","email":"david@smartsupp.com"},{"name":"anonymous","email":"famousgarkin@outlook.com"},{"name":"anonymous","email":"frantisek@smartlook.com"},{"name":"anonymous","email":"honzicekz@gmail.com"},{"name":"anonymous","email":"morlokdk@gmail.com"},{"name":"anonymous","email":"pajkycz@gmail.com"},{"name":"anonymous","email":"potacek.pavel@gmail.com"}],"homepage":"https://github.com/smartlook/smartlook-client#readme","bugs":{"url":"https://github.com/smartlook/smartlook-client/issues"},"dist":{"shasum":"86884e19107fbd1ec284d96fb4273e209deb7cea","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/smartlook-client/-/smartlook-client-4.5.1.tgz","fileCount":10,"integrity":"sha512-Y8zBr6rD9aE9/KockRlxNtAF4B+66CJzfPt8y27nrrkXqgC58lEqsWpTmy8opP5U2OprZHYI0Yh5LNKT7r4kRA==","signatures":[{"sig":"MEQCIHuFBarpdG3zxI3JXEq9TtfkXGGBNZeFhLzrTacUMkh4AiB/IfykVflJCeMh40U7LstOTjhD1qXoGNODHKZoNJMD5w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15437,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe8F2OCRA9TVsSAnZWagAAEa8P/0fLg1m+odqmG1B7kaPT\nP1g/+yWtO54t32TLfChSIYM3jGBIXn3+Mlxkmo2iOIIBRl/LB3QNFZcU2R7i\n5xzOb4DthHSJjlJNIaDF1j+rwgiTU0qr6JtZLBwudVDbe0A5SycYUC5DiTog\ntWG86jQKHbodjwIU81gRBu2CCgMeu8zLHgwDIsZ0Kl4ftTcWiW+gxHX6Xpwa\nNbsBP6uj4ZK3d9xw/vqzyy9gjjAdq2zbod0n+bnGP2GZCPYK0vyzdLLGM1wY\nFxlPj435E8niEFvhAsZGsM04S3pPQga5E2pEhK5KrIwkXbzzoIWnD7bHvtMQ\nYgPAL+sYW3v2KFNPvMZUqkuIrP6YNOlalvK6YlbiLMYKoG/DhCLHL6HjO1Gj\nOSe1oP4DKh9Ci6GGi0bFyb1gPXMpDeSMr6+/8UFO+fdDLIOKpZW/E9FWpHlk\nmbdcx8PqqZdOXqPW9GSGFiKrkGN1bmlh3wALve5U0p095b38MEkLdSRkHtMW\n8NGY+3UtZ/fnBN5qtvm3wqbgqFI7cjd8CeFy9XGavXCa8jx8hDle+f0VOEMX\n/gqpeKybkz9lP7TbD0eXKQJD9WfNhwzfe4n+aTIUsCK3Q/MkGEF2MYzc6T8y\niTnSToGSYEvgebgdWwEkDU1FlDNnw1HWV1PaG5QzkiYVrEeYD2ijsHCLKUBh\nWDJI\r\n=7dU7\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","types":"./dist/index.d.ts","gitHead":"63cc8137e2970387da78750086df2b25519fc940","scripts":{"build":"tsc"},"_npmUser":{"name":"anonymous","email":"david@smartsupp.com"},"repository":{"url":"git+https://github.com/smartlook/smartlook-client.git","type":"git"},"_npmVersion":"6.12.1","description":"Official Smartlook client for easy frontend integration.","directories":{},"_nodeVersion":"12.13.1","_hasShrinkwrap":false,"devDependencies":{"typescript":"3.9.5"},"_npmOperationalInternal":{"tmp":"tmp/smartlook-client_4.5.1_1592810894065_0.24459956506622027","host":"s3://npm-registry-packages"}},"4.6.0":{"name":"smartlook-client","version":"4.6.0","keywords":["smartlook","smartlook-client"],"author":{"name":"David Kadlec","email":"david@smartlook.com"},"license":"MIT","_id":"smartlook-client@4.6.0","maintainers":[{"name":"anonymous","email":"honzicekz@gmail.com"},{"name":"anonymous","email":"frantisek@smartlook.com"},{"name":"anonymous","email":"adamcernycz@gmail.com"},{"name":"anonymous","email":"pajkycz@gmail.com"},{"name":"anonymous","email":"david@smartsupp.com"},{"name":"anonymous","email":"acrocz@gmail.com"},{"name":"anonymous","email":"morlokdk@gmail.com"},{"name":"anonymous","email":"famousgarkin@outlook.com"},{"name":"anonymous","email":"potacek.pavel@gmail.com"}],"homepage":"https://github.com/smartlook/smartlook-client#readme","bugs":{"url":"https://github.com/smartlook/smartlook-client/issues"},"dist":{"shasum":"ddb2ba8dbaf1c254a71aee5601b4bc507ded77e0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/smartlook-client/-/smartlook-client-4.6.0.tgz","fileCount":10,"integrity":"sha512-13VjQOeJGe106xWIO0zaKzpQJK3yleupSfgqiZZO1tUcriJOe9ikwtCtMfvOn0SSVJH+WVtE7SGD8sARwkgwPg==","signatures":[{"sig":"MEQCIF+cQxA+G5JyB6/v5qHj7deyZtTwtGQPYixZX039dYhhAiBaMbn846eJp+hMigtJ4sstygMqsrNUAJSGjDX86vduCQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15762,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfaNyvCRA9TVsSAnZWagAAJrUQAI6pXCE7A1ixfTUbTxhk\nDKDDU1Ck0kNKfkFhEeDJh8XhgIL3x6+05dPCNOxTds5rXRqAeASoIxUzjyjD\nV5sazlWYgobd7e8UlwjtGcSiobACkyU1I9Zh9pZsYeTKcx3SlFugtV9Lh9FC\nOIqomoZVVvkBlxqHADHZUSeKWTzEqan8KBK1Std9cFs/bgmGYDaY89uZb7fa\nmacWj6ANrdbPiTCuHFK4wZMyYf7wy8mh/JzM2QTGQfigGLiNKR0ZR/PMtSgQ\nd+MC/E2yJljfz+6VB+3715tm/IkiZbphmR2wB139I45dEPdpug/FmOgm6eFO\nvETu56obYw2x39LUAglV+LTYxcfwG4bRw/owuHIHMt2EU2g1XP//SyC+VBr6\nvVggcWmFHGEOKCALSh+4Qbf5PcJZcoY7ng1P7JBYU+zpCrn+f/luMDDkw5Vi\nmtI83NglG0SKxCsTKCsxHeZe4CFaVrrrjRyrOgb1Xn3Kdyb/EF/nkwka+Wn1\na1kK9msNeMCE8jqqzkcSmHlddXUlcZVVtfwJE43jtAk0xLtH28MNyGX+vSlz\nnWDRKbu+rrh/RGSgaQ1MmMgkMoqglwVRdLghrOgb/yU+B5E5XfEkyeEk59et\n1+RFSC2/Na5qdI6ieIXsu6kgIJOBdSh1hCj4Go6jfRroQgJXPiUJEQo9irwP\nrMHi\r\n=ie/+\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","types":"./dist/index.d.ts","gitHead":"c32c912c7587450fc85a0002f4d37d2a960b42c3","scripts":{"build":"tsc"},"_npmUser":{"name":"anonymous","email":"david@smartsupp.com"},"repository":{"url":"git+https://github.com/smartlook/smartlook-client.git","type":"git"},"_npmVersion":"6.14.6","description":"Official Smartlook client for easy frontend integration.","directories":{},"_nodeVersion":"12.18.4","_hasShrinkwrap":false,"devDependencies":{"typescript":"4.0.3"},"_npmOperationalInternal":{"tmp":"tmp/smartlook-client_4.6.0_1600707759447_0.8310953094367248","host":"s3://npm-registry-packages"}},"4.6.1":{"name":"smartlook-client","version":"4.6.1","keywords":["smartlook","smartlook-client"],"author":{"name":"David Kadlec","email":"david@smartlook.com"},"license":"MIT","_id":"smartlook-client@4.6.1","maintainers":[{"name":"anonymous","email":"honzicekz@gmail.com"},{"name":"anonymous","email":"frantisek@smartlook.com"},{"name":"anonymous","email":"adamcernycz@gmail.com"},{"name":"anonymous","email":"pajkycz@gmail.com"},{"name":"anonymous","email":"david@smartsupp.com"},{"name":"anonymous","email":"acrocz@gmail.com"},{"name":"anonymous","email":"morlokdk@gmail.com"},{"name":"anonymous","email":"famousgarkin@outlook.com"},{"name":"anonymous","email":"potacek.pavel@gmail.com"}],"homepage":"https://github.com/smartlook/smartlook-client#readme","bugs":{"url":"https://github.com/smartlook/smartlook-client/issues"},"dist":{"shasum":"0c99c297ef52ef42cc3732cf17ea7ebfd81cfefe","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/smartlook-client/-/smartlook-client-4.6.1.tgz","fileCount":10,"integrity":"sha512-UDRSooOrZA2d70wesTqw+aHv7j64ker+G3+fk6aD7QCm51sAuTG+H+DfXWad2RBv37KjzNAFKuYGVCBO6IfPMg==","signatures":[{"sig":"MEUCIQDRuugkOXhOZhMjW7os7wlcQiwHDDl/rj5qligAYKnpIAIgZydNNjC2VBxcjF4bF/Tzyc5UuX0ucZdxgZ99cdG7FQ4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":15796,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfaN2VCRA9TVsSAnZWagAA9PoP/3u/afQ94cgMYKw9bASi\nfi2fyK22XCNdQTtI5Kr3sdPlsH4SEAJc/8Y0gMJXKoZAYNj1oJcoMNzvdrwY\nIIaJyZ7BvDfANMqHgEV5WuOzajoln/J6Hl+s1NnAv7Yoq8VMJE2Qo19ZDFVg\n5b4V0ACnN2ABKAPMuYJSd1JntIpsQrzxCwVumMfUe+ilLJgD+KdaW7udqqi5\noPqA4Wz2CK6Ae6I9hTf+82fMSlehNBDJ5eA8C3nPLvx2AufXNKW2sX5NRQbU\nvkNfHE5PWppXfdx0mahDr0Ue/b4p8gtbvvcFZrtiK8pdpOr1NlYqak8YoKsp\niiI0QJ1Ipv6c54QEsozltG0X4Ofk8xqrSKMaq4Ir/ewKnmSSp9dX7zW2BRGV\nLescveqSJckvAJWDSf73StuS7lsA2CWOn6qE1Qz2iQLgbB1Wba4vKFfQEgR4\nybMHMFbghu3N5hM8H2+RqDXrmFIHKVAV8Xsr1KPg4L+B8PcFh2zZlOg8FyKH\nmoQQ19U93HVEID7qfV9PqE/QT+jstekFprPv5Szp7N6KJr1Ggk6TqBk+mtGK\nDxNn9jbw1YBbP7RN62E337ohaW62sosCGG+ycIGnLEVkF7Mu9uSkxWb6Bvno\ncz3+CVRbwougXF8jMXQYP/lyLchtGSjbLzP25mpFzkLNWcv7Z0TQ9UMYaeO+\nCTm2\r\n=gUMn\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","types":"./dist/index.d.ts","gitHead":"c463c8d7434aa4a8514459a5ad124a5966cfce7d","scripts":{"build":"tsc"},"_npmUser":{"name":"anonymous","email":"david@smartsupp.com"},"repository":{"url":"git+https://github.com/smartlook/smartlook-client.git","type":"git"},"_npmVersion":"6.14.6","description":"Official Smartlook client for easy frontend integration.","directories":{},"_nodeVersion":"12.18.4","_hasShrinkwrap":false,"devDependencies":{"typescript":"4.0.3"},"_npmOperationalInternal":{"tmp":"tmp/smartlook-client_4.6.1_1600707988895_0.04446488066617604","host":"s3://npm-registry-packages"}},"5.0.0":{"name":"smartlook-client","version":"5.0.0","keywords":["smartlook","smartlook-client"],"author":{"name":"David Kadlec","email":"david@smartlook.com"},"license":"MIT","_id":"smartlook-client@5.0.0","maintainers":[{"name":"anonymous","email":"krystof.celba@icloud.com"},{"name":"anonymous","email":"pajkycz@gmail.com"},{"name":"anonymous","email":"david@smartsupp.com"},{"name":"anonymous","email":"acrocz@gmail.com"},{"name":"anonymous","email":"morlokdk@gmail.com"},{"name":"anonymous","email":"potacek.pavel@gmail.com"},{"name":"anonymous","email":"adamcernycz@gmail.com"},{"name":"anonymous","email":"frantisek@smartlook.com"},{"name":"anonymous","email":"honzicekz@gmail.com"}],"homepage":"https://github.com/smartlook/smartlook-client#readme","bugs":{"url":"https://github.com/smartlook/smartlook-client/issues"},"dist":{"shasum":"c99c8fa4da6aac4d119949c2750caa1ff3f18bad","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/smartlook-client/-/smartlook-client-5.0.0.tgz","fileCount":10,"integrity":"sha512-Z4sgWJ27T+hWD8TnN/3L7rTc2Vjm73lU1R4F08hGINKr/fN+VYTx9IQP/A3DqzC2Lq/+Lrx1CeABc5JkGbS5UA==","signatures":[{"sig":"MEQCIGfnvS/quC5G0JgSAJPZ8q4bYHa+OZ9V6bymREmFcRQ0AiBQRUKgwjOSfapt7vS65bL3FE/cmG7klHdkwUr22qePwA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":18182,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgq5EuCRA9TVsSAnZWagAAR5gP/jbcKo4T6SRRTa2izJsi\nAuVyfRoivEsI5Sf5Vr50omgRgGtMCa8GRnlC4Ap1E7JEEEnouvc5w2UvK/c+\nBiP6DnpZdkjfvd95HKpswJeAYvdK1Vbg9vrlVsL3xhc0wocsCtn71UfZ3C8n\nj6phwEghAwiOt9qe9gxDxGO23vG4DGRcTeuaSFzFm735MPUTE1azs96SedtT\nMYvVbmCKAdF82lMkvb6mbaJ4I6WEaFmYAyg+0yUHuKgJYAaRNbpBQDnyggY4\nIHi1kFOhkIe/r2mX59Kck/2ghsoDnggUd6lv+zaxxrf8/irRc5Gtm9MV2rIy\neXWPd1w4lHzuzACbXzXrYAg5w9dosFxycucLmH+O22kO57WqA2Me1cjX8y+C\nMzYEFEEqKU0KuMH23I/tnSv9aLzVYuTZAkRF/TG77lfjJo+pTtwWQbz/wfsq\nKgWpmKp9UZRVlpliNaMjpC8ZOujGL2XOz0b+T3uONliGIsTOBb+JgqHQoxd2\nfRrMifbYi7LuYPy2ZTDa1qXFbyYhi13mFmsYMNbcdMpvoo0/JCeCrF6jurse\n8K6cqmJLP5ujsuhXjiOqEZujOU/VNbLAYzcM5kVFfn2j1PJOmaG8i18YUVP5\nyCdr0DGuZcCq3d9LXtgUhN+/or9QHFa+4p4cXwpOo4/EGwZxW/h2NXlYAlUm\n1jrh\r\n=XEnh\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","types":"./dist/index.d.ts","gitHead":"b164b1076c7cbf52c3fe2e76186ff812b3a47351","scripts":{"build":"tsc"},"_npmUser":{"name":"anonymous","email":"david@smartsupp.com"},"repository":{"url":"git+https://github.com/smartlook/smartlook-client.git","type":"git"},"_npmVersion":"6.14.12","description":"Official Smartlook client for easy frontend integration.","directories":{},"_nodeVersion":"14.16.1","_hasShrinkwrap":false,"devDependencies":{"typescript":"4.2.4"},"_npmOperationalInternal":{"tmp":"tmp/smartlook-client_5.0.0_1621856558246_0.21648973229571","host":"s3://npm-registry-packages"}},"6.0.0":{"name":"smartlook-client","version":"6.0.0","keywords":["smartlook","smartlook-client"],"author":{"name":"David Kadlec","email":"david@smartlook.com"},"license":"MIT","_id":"smartlook-client@6.0.0","maintainers":[{"name":"anonymous","email":"sami@aldury.com"},{"name":"anonymous","email":"vnevyhosteny@gmail.com"},{"name":"anonymous","email":"jakubpetriska@gmail.com"},{"name":"anonymous","email":"pajkycz@gmail.com"},{"name":"anonymous","email":"david@smartlook.com"},{"name":"anonymous","email":"acrocz@gmail.com"},{"name":"anonymous","email":"adamcernycz@gmail.com"},{"name":"anonymous","email":"honzicekz@gmail.com"},{"name":"anonymous","email":"krystof.celba@icloud.com"},{"name":"anonymous","email":"vojacem@gmail.com"},{"name":"anonymous","email":"32jojo32@gmail.com"},{"name":"anonymous","email":"petr.klobas@gmail.com"}],"homepage":"https://github.com/smartlook/smartlook-client#readme","bugs":{"url":"https://github.com/smartlook/smartlook-client/issues"},"dist":{"shasum":"89e2023dfc6e10ffb452b4c5c306273bddc9acb6","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/smartlook-client/-/smartlook-client-6.0.0.tgz","fileCount":10,"integrity":"sha512-xGOtZjSx/bFi/RraRAZc3AcGP6q8jyjM7xRKn39BfAfn8Ssue04Jan7L1Rf50JN8Egwh4o/V3oYwfpTweRsrKA==","signatures":[{"sig":"MEUCIDp3bYWlG1JiLX4tODJ5bNhWrVuA9zcUT5V8+cmOJn4dAiEA9wFRc0ovt5Py9LC2bPsBn8J2oYzLGhpZpRelCulDr0c=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":21548,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiKeD1ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmqwkw/+KUDXjkszMrqyM6aIJhSCLOtjAP9rJn85WuRlMmaBTTfU66ht\r\npiFww6hu+au1l65cuNe8a6DMBQT8bNQuDuSjJ2Ri93am2GxS1wuC6ilfHm1H\r\nDCBWNj6acHRQEcc5xN3a89+GL1rY6wE/RSylIDmGiDxT6aDMkZ47ko0mpXaN\r\nZ144fS+QLobo3WXk3sliiPP754of14ODLUCOrfXWdJ1dVYiBUOoPsRCa2wwt\r\nBuesUbedq5rXg2nJRIqy9YVD875bCUWzhq+j3Jjff1uGClUnCM6iRCzpf4wU\r\nZ+RIybqqZS5DE/geQIMTAtPv2wk0VE9Ae5LDrI3yqZMRsOS5BoOCFzbn61gi\r\n0CiA/M3m4iIuKYKyUzoSAn8Q2R/K6B1E/PAbmVgNZz+ZMvI9nV/uGsjKUqds\r\nqkBMM5AUc8x96jBNiB88fw09xocBm1x19v2nUlRDI5dw289QUHXpz6BUooDf\r\nbMMK0gkpfLPnFtQ85NC0mn2yc3Bnq2llG/3bEUqBiVDf8w5PcmwKpCh0TS6r\r\n9lYAGWQnDQ8PcYjv1B9jiiLscgCwIajb74bAIoOUzIf+yHcjvqXLYRA0viLu\r\nK4MICWRRU600DPKEJBFG2zTgbe45w9n/a4Hq2WRaEKmS/YeOhpfGhPXy/EFG\r\n06PeFlvx9wGL8gG8J0fbrqRvw16jgJMtd3E=\r\n=4fls\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","types":"./dist/index.d.ts","gitHead":"7f4f873d376953b2ec5cd8a62bc7bb705b08d659","scripts":{"build":"tsc"},"_npmUser":{"name":"anonymous","email":"david@smartlook.com"},"repository":{"url":"git+https://github.com/smartlook/smartlook-client.git","type":"git"},"_npmVersion":"8.1.0","description":"Official Smartlook client for easy frontend integration.","directories":{},"_nodeVersion":"16.12.0","_hasShrinkwrap":false,"devDependencies":{"typescript":"4.6.2"},"_npmOperationalInternal":{"tmp":"tmp/smartlook-client_6.0.0_1646911733106_0.03149028642809415","host":"s3://npm-registry-packages"}},"7.0.0":{"name":"smartlook-client","version":"7.0.0","keywords":["smartlook","smartlook-client"],"author":{"name":"David Kadlec","email":"david@smartlook.com"},"license":"MIT","_id":"smartlook-client@7.0.0","maintainers":[{"name":"anonymous","email":"sami@aldury.com"},{"name":"anonymous","email":"vnevyhosteny@gmail.com"},{"name":"anonymous","email":"jakubpetriska@gmail.com"},{"name":"anonymous","email":"pajkycz@gmail.com"},{"name":"anonymous","email":"david@smartlook.com"},{"name":"anonymous","email":"acrocz@gmail.com"},{"name":"anonymous","email":"adamcernycz@gmail.com"},{"name":"anonymous","email":"honzicekz@gmail.com"},{"name":"anonymous","email":"krystof.celba@icloud.com"},{"name":"anonymous","email":"vojacem@gmail.com"},{"name":"anonymous","email":"32jojo32@gmail.com"},{"name":"anonymous","email":"petr.klobas@gmail.com"}],"homepage":"https://github.com/smartlook/smartlook-client#readme","bugs":{"url":"https://github.com/smartlook/smartlook-client/issues"},"dist":{"shasum":"7254af076dfc4e0d9960d3bf508ee43466f3e630","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/smartlook-client/-/smartlook-client-7.0.0.tgz","fileCount":10,"integrity":"sha512-ilgnaatPDRi6yEzYQLDSohy1p727/y0iyOjE8Mfe9z1FP5zvsRjkAOFy0IyLQVllrn3fNMeHO3u7/2lMfaTy5A==","signatures":[{"sig":"MEUCIQD2lvAkiMU5CXJW9yGT9oiHE3DeZfOuizvel2f0Tb1bQgIgBJ7kILP8q7jpvipxo0O4CMzJuUiRS/3k5CQlV5ehMLE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20151,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiRYqXACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmq4AQ//blJ55zA3p07uYNNDnElwuTM1IUnq0EhIFlPw5ONuOSJs7Ybb\r\nOemfZOnfsklwbIGtjJG3Jkl4j0tidVW2b+SkO+QcmuYs9MGCSDvojIAlj0te\r\nBx1zpUzyTNeXjtf1OqCp3duGBFrWe5CF7XtV7lXbHk0mfF7psCcOgN8eVim/\r\ndxjsth6j5SvxiPbqcd+GNhSTh6J/8odjivvJXJMf3W32UQmFKjaomj+NHtQ4\r\nXpvhbCnDlOYlmDVY+6d3nbpQUlO6DW4ddA2A3LlXmsxY0Ine4FbOZPuW9Fj7\r\n9gkEI2pIHp2kYxBceosI08e77tV6uX5M2sx46GnBndAqcMNxnEMXJeAn8dvO\r\nzpKs9VKiKS4972esmku+jI+CCnUr3918l/NOZpMyxveXLghS09/Fpo3zx4Ws\r\nlbK1EfPPZLZXGQ21qJOFfy++tsWa3Jls5vreZ9YKyASN36+hDt2hBebiEGCu\r\nW+DhJMozDJ15gfg1IN5zln8O1+uPfRMHL+CH3nJsQiuubW9NH16I4sJeA//Q\r\nsYO0PcLI39PxAnlPkU6yA20JuN7PCMV1egLCYxnZ78Huxt6+YqOHpu/LQR8A\r\ncZvkvoEAu4o7OJnCzvnuJp+KRVUqaMazfCILj/ySp8frhQBHHnwu92Z2YYjA\r\ndJ3eRLl1y+H/YMURsbb62dolzLkxpjvNHHU=\r\n=7f2P\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","types":"./dist/index.d.ts","gitHead":"7b4c79af5d83a8bec5e1b3c21fe6bf95f9e62af2","scripts":{"build":"tsc"},"_npmUser":{"name":"anonymous","email":"david@smartlook.com"},"repository":{"url":"git+https://github.com/smartlook/smartlook-client.git","type":"git"},"_npmVersion":"8.1.2","description":"Official Smartlook client for easy frontend integration.","directories":{},"_nodeVersion":"16.13.2","_hasShrinkwrap":false,"devDependencies":{"typescript":"4.6.2"},"_npmOperationalInternal":{"tmp":"tmp/smartlook-client_7.0.0_1648724631534_0.9291602645308101","host":"s3://npm-registry-packages"}},"7.0.1":{"name":"smartlook-client","version":"7.0.1","keywords":["smartlook","smartlook-client"],"author":{"name":"David Kadlec","email":"david@smartlook.com"},"license":"MIT","_id":"smartlook-client@7.0.1","maintainers":[{"name":"anonymous","email":"sami@aldury.com"},{"name":"anonymous","email":"vnevyhosteny@gmail.com"},{"name":"anonymous","email":"jakubpetriska@gmail.com"},{"name":"anonymous","email":"pajkycz@gmail.com"},{"name":"anonymous","email":"david@smartlook.com"},{"name":"anonymous","email":"acrocz@gmail.com"},{"name":"anonymous","email":"adamcernycz@gmail.com"},{"name":"anonymous","email":"honzicekz@gmail.com"},{"name":"anonymous","email":"krystof.celba@icloud.com"},{"name":"anonymous","email":"vojacem@gmail.com"},{"name":"anonymous","email":"32jojo32@gmail.com"},{"name":"anonymous","email":"petr.klobas@gmail.com"}],"homepage":"https://github.com/smartlook/smartlook-client#readme","bugs":{"url":"https://github.com/smartlook/smartlook-client/issues"},"dist":{"shasum":"a25c0cdb2c481f64ae6f7790289c7c46398f4e5c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/smartlook-client/-/smartlook-client-7.0.1.tgz","fileCount":10,"integrity":"sha512-xjdo+w72FZucUCFimAg7zwjStv/X8tOs3j+ARikrkI4X9uV96to6DROItIpjSpdru0wIOwnRY3CBmQ8o5m71HA==","signatures":[{"sig":"MEUCIQCP72DTyT2quYFTTPEve6nYAyHQPSK9dXVfzLjE6wt45QIgYjSBIjiAlxMz3/vAHvyWe0FRnf4vw1KGe9QYRQg6lAM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20091,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiRYxEACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrpzQ//WyANytPId0UVh96QJCVdig6+c75+czLhU0XraVNOoPDl6GlR\r\nPqoNntm9Lt6NOKLxzvJESW4v7SUwbDJReNeHkjjK7OxUK3B7EeGXtc7E4eao\r\nGs+Hfpe5i6qPN0AyjDVT2AVZCkAMmOXx4ZkSCTd2xf9uohsH3P8IjIUlrX4v\r\nx2dFh3EDXt1amGxN4GQY/AvTTaCHtO86LW/dGmadV6/Hcu1H6pg5eu07wn2P\r\nKzwEqPbyTlCvOGhNDLpwYwZ1ZETZooQEwc0X1IjRFrTynMAQwaykgM+y1/Zj\r\nM/pYkcLbgTumFPbbJYDZbyKS6Le2RMRkAIW7MR7CKT5+W4YwdIXqxxoVC80X\r\ngK8ykl51XXqEeAqewwksRRp6D8WITWLoV3rVEaeD0Jy7nvQZr0geBGS+ghL3\r\nXYwNvUnXaqIFRp5tKh2SNtmdtCPKel7Zeh8PaeIOhIs/pdON8myFVexllD4/\r\nz4tXnTTQu+gbGQwtdFbILwiA7MgqZMW7nkxIhMMbcxz3LC8Vfgbdb9WXKVYH\r\n8TnHZBBmk+xStfetyfNZPZJKWOlHDMzyN48CBCjI9f7fzg0kn5AX2CdZ00sl\r\nDYdjj3s7qdd1xuplFX6MShxfcAAqCScaNPByghYDAIBolCzqIotEFdq58IIG\r\nPmW/xAIp3MPpb6AQbj6yc5pYWJ8flQOEhN8=\r\n=dokf\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","types":"./dist/index.d.ts","gitHead":"531239ea4236af27cd6ae3f638f18b190463b2b4","scripts":{"build":"tsc"},"_npmUser":{"name":"anonymous","email":"david@smartlook.com"},"repository":{"url":"git+https://github.com/smartlook/smartlook-client.git","type":"git"},"_npmVersion":"8.1.2","description":"Official Smartlook client for easy frontend integration.","directories":{},"_nodeVersion":"16.13.2","_hasShrinkwrap":false,"devDependencies":{"typescript":"4.6.2"},"_npmOperationalInternal":{"tmp":"tmp/smartlook-client_7.0.1_1648725060705_0.08549778482584514","host":"s3://npm-registry-packages"}},"7.0.2":{"name":"smartlook-client","version":"7.0.2","keywords":["smartlook","smartlook-client"],"author":{"name":"David Kadlec","email":"david@smartlook.com"},"license":"MIT","_id":"smartlook-client@7.0.2","maintainers":[{"name":"anonymous","email":"krystof.celba@smartlook.com"},{"name":"anonymous","email":"sami@aldury.com"},{"name":"anonymous","email":"jakubpetriska@gmail.com"},{"name":"anonymous","email":"pajkycz@gmail.com"},{"name":"anonymous","email":"david@smartlook.com"},{"name":"anonymous","email":"acrocz@gmail.com"},{"name":"anonymous","email":"honzicekz@gmail.com"},{"name":"anonymous","email":"vojacem@gmail.com"},{"name":"anonymous","email":"32jojo32@gmail.com"},{"name":"anonymous","email":"petr.klobas@gmail.com"}],"homepage":"https://github.com/smartlook/smartlook-client#readme","bugs":{"url":"https://github.com/smartlook/smartlook-client/issues"},"dist":{"shasum":"5ebb27c688da7a42613d931b5c125d57a6388a64","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/smartlook-client/-/smartlook-client-7.0.2.tgz","fileCount":10,"integrity":"sha512-shgiWA1mz00LyscTUgrEVdtBC79GxdeZTBxUSreB1xo+N7Fn+OUK9E1GH3DMTHetMjKYe6oMHvwAOP1ihvsj+A==","signatures":[{"sig":"MEQCIAMT3hv2liYC9QZ3x8gTQb+qN2yXMEFx/dcuqO1wmim9AiBYeP4fjeesvd6iFtveG/feEHPSKd1GzD6la7eUhdbMeg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":20372,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjEGSLACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmqQaw//TyvJ9Za88mj3uDx/2jjSOQFKWeqCkcSCUuTcMKmxZj6s/wBC\r\npxxUIwe/6bAeNgestkuIsh1a1qoSXrMMPAeDjd0Ig6U34mRkVjTey86Pghp2\r\nGXUA98hunh70LFupumur5uRFxjDrIUzM5Xy8x827LtMK2NkBbGuJbC3LCQIa\r\noIrO16IDx55gBPCM3GJOhYD4Rhw2G9TdGxuGoUHb4ZJVXFgyBgJAoe+FgHc2\r\ni4V+OHZ3ar7VUsARYurxn/TweeDTHiJ8DA7YTN5LMNDDMCqloQ5mTGIFnkH2\r\ncTd4TNqJC6Dvm6YpVa+lNELPni0WWsOV6zTCW74K/7DQ7gLYLM6URFeS6gh9\r\n7G5zjmZIkVs7QThafTM2567SEC0HHyk24kHYjhAugh00l8G8qfuP1mFSWNQL\r\nJsyK02+7wJGMyoReFGenZskcp0Db3QAdjnYYWHMluL3r88EHzdjqfN1nRGcw\r\n475ExgAMIMHFWkdUeOLqsghwh52XL+76hEgRIM/rZ6KUNUj6+vZbngiYsNmM\r\naiG4uoaMF8DdlRjCHuOV8yQ70pPyoNJEU4qAf8SdTylryugEoHKJ4WNspOBu\r\nrQEggMpWqIQ/y9cdow2lPy40Yzsw9nmFoonUohnj/FvPOY0lVV1iJhF+CeeL\r\nTzv3W+ks/Wr6D8Jvll78CoDWUKZ/ncBZK1E=\r\n=TW3h\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","types":"./dist/index.d.ts","gitHead":"2b9561c3c659000939b49ab93533000e682d5f90","scripts":{"build":"tsc"},"_npmUser":{"name":"anonymous","email":"david@smartlook.com"},"repository":{"url":"git+https://github.com/smartlook/smartlook-client.git","type":"git"},"_npmVersion":"8.1.2","description":"Official Smartlook client for easy frontend integration.","directories":{},"_nodeVersion":"16.13.2","_hasShrinkwrap":false,"devDependencies":{"typescript":"4.6.2"},"_npmOperationalInternal":{"tmp":"tmp/smartlook-client_7.0.2_1662018699505_0.4802471817035092","host":"s3://npm-registry-packages"}},"8.0.0":{"name":"smartlook-client","version":"8.0.0","keywords":["smartlook","smartlook-client"],"author":{"name":"David Kadlec","email":"david@smartlook.com"},"license":"MIT","_id":"smartlook-client@8.0.0","maintainers":[{"name":"anonymous","email":"krystof.celba@smartlook.com"},{"name":"anonymous","email":"sami@aldury.com"},{"name":"anonymous","email":"jakubpetriska@gmail.com"},{"name":"anonymous","email":"pajkycz@gmail.com"},{"name":"anonymous","email":"david@smartlook.com"},{"name":"anonymous","email":"acrocz@gmail.com"},{"name":"anonymous","email":"honzicekz@gmail.com"},{"name":"anonymous","email":"vojacem@gmail.com"},{"name":"anonymous","email":"32jojo32@gmail.com"},{"name":"anonymous","email":"petr.klobas@gmail.com"}],"homepage":"https://github.com/smartlook/smartlook-client#readme","bugs":{"url":"https://github.com/smartlook/smartlook-client/issues"},"dist":{"shasum":"71825b41bd467effe0091df40ec1e254bfccb202","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/smartlook-client/-/smartlook-client-8.0.0.tgz","fileCount":10,"integrity":"sha512-gx0+mYv5hUKGE/ZcuPcft2OWR8BetnTw3QWZXX2QQjhJbgliKcioDC+NrczxZmnwUalpW4RjXb4iS8lQUAZkEQ==","signatures":[{"sig":"MEQCIGuUzj6R3eJfPSaOBBFx9ciNbk6KLFRER5KIoQPNEUU4AiBvEyeuolUHtJfJA4BIVSbw5Iqf3ZFuR/UZ4C54h8ro4A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":22775,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjICS5ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmopJg//Rlo5WDjdeJBN60Uq25GKyjNGNPT4Bm+qkRHW88JTSw0RGkOE\r\nkT5vzl4b4/DevgXo8+QOGkS9GI/AQ+lVjNPCerSPCI3Am7KEwquAtajRAYpX\r\n29luxpzvaRro1aeuv89usNRmjLFpyUOkv+9qp7KjSq15f8DM7GcemobWSXBu\r\n7B6U0Y1eegS3GeSoFt95KaJxUE4Ht9eraY9Ixu1Ki4QZ7WV2hFcnDhYZXI/p\r\nJqmwocFMWnDLA41Z24F5Cl9MMVcORjV1siokgMMM0rl84jtx5ccCD38HWhXD\r\nB70DDsoQSIAWMwy/xwwt9B7ySxnQZ55ct79Qn0XMSoTD0MjcaYJX4DShMiX0\r\nydoIlv/EAxFdwcW1cVvlO2q+caWsKWaITxYHA0i7etCPBRfuPiRJJY7KuIcl\r\n7gZ0xFd3Jl4vGkoE65c5YVrvYePbq4Gn2hHQcCMsxcKSVCnLuQCyv3Qo8P0r\r\nOjCgK5LpvDn83HFganjnEO/g7UAX9x8LUkm34Gb838Erk/JXXwaLTOQh7KXZ\r\nKd+4PP4gTd/ol9t9jjhKmxT9fK5QFK18nhZJITlsUsg+ThJTpFXYX+Vo0vlB\r\nbIcT7qRxc8YWMk1hmP4lLXFvU0kBKjxk7foSTP9qyEUdkj7VkaledkPYywzX\r\nt7UaPkl9Kqcuppf6y9uIJyfzTce1IJNSCaM=\r\n=K2mo\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","types":"./dist/index.d.ts","gitHead":"2a1778bd35afae81a4ff5b751c2a08aaac654551","scripts":{"build":"tsc"},"_npmUser":{"name":"anonymous","email":"david@smartlook.com"},"repository":{"url":"git+https://github.com/smartlook/smartlook-client.git","type":"git"},"_npmVersion":"8.1.2","description":"Official Smartlook client for easy frontend integration.","directories":{},"_nodeVersion":"16.13.2","_hasShrinkwrap":false,"devDependencies":{"typescript":"4.6.2"},"_npmOperationalInternal":{"tmp":"tmp/smartlook-client_8.0.0_1663050937032_0.04132631597589387","host":"s3://npm-registry-packages"}},"8.1.0":{"name":"smartlook-client","version":"8.1.0","keywords":["smartlook","smartlook-client"],"author":{"name":"David Kadlec","email":"david@smartlook.com"},"license":"MIT","_id":"smartlook-client@8.1.0","maintainers":[{"name":"anonymous","email":"martin.budinsky@smartlook.com"},{"name":"anonymous","email":"sami@aldury.com"},{"name":"anonymous","email":"jakubpetriska@gmail.com"},{"name":"anonymous","email":"pajkycz@gmail.com"},{"name":"anonymous","email":"david@smartlook.com"},{"name":"anonymous","email":"acrocz@gmail.com"},{"name":"anonymous","email":"honzicekz@gmail.com"},{"name":"anonymous","email":"vojacem@gmail.com"},{"name":"anonymous","email":"32jojo32@gmail.com"},{"name":"anonymous","email":"petr.klobas@gmail.com"}],"homepage":"https://github.com/smartlook/smartlook-client#readme","bugs":{"url":"https://github.com/smartlook/smartlook-client/issues"},"dist":{"shasum":"f499b88ffb51e09b5fa1a88137613ffdbfbf535c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/smartlook-client/-/smartlook-client-8.1.0.tgz","fileCount":10,"integrity":"sha512-bDtJW5w/HgAUyxQgjEPjaZ6E/caZ6fAo2/xPglwUFruuS0onFyTzf6piG4vu2/SZYDsl/9z1LCnH8Hd9amadGg==","signatures":[{"sig":"MEQCIF5fvxkHjZSieeLyi6bt76Nb3TSwug4fhAsQQg+Uai17AiBEmn97Y2ry5w8eTFgsU/ZRI22Ixg1y1BoGvRvbrS+NwA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":26370,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJj/x1qACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrSLA//cN3OMnrCFH21pCkSP7mnvnCRqm/mMLXJ6ucz5wiP7B55rfth\r\n6+BfjsNdL/wxlsGsP9W1BFm6y/RJ3tNh5v5YCxvnTYkhk47nHYA00Huvm0pe\r\nu6pMVL1TOVoPqSKuLCrH4oJJoX/IoSw1DDxeKo43TbzxWBJZl4LrtMxuNCcR\r\nfH68T5x16/yu8VDj5qcIrqG01Jc2PxszFwgj+XDXCLVJ6CDx8GzEqxRudrEr\r\n0KMiOWygFjb7BHhq6KbTy4+RWdYCvjFGKAxtjrQRFn5oSr7s8DKylH3bF1wv\r\n0fOP92EZ+Hdtqd5Z0L/H5Hh4SbufqKapr5slqnNaTw5tHd3ZMUDnaLxKeMpI\r\n94kQxksy1inG5u4pfBqoYW44Ux/PpAeRJEhCnn/iSVtCzt4NxLHsD80Y9QTH\r\nryY38lfxlyfaVV/jjFn+Mq9+U0nKdA6C1J1jkEXUoNT1FgI2EwB1QbW7uzLC\r\nsH0zu7+GgPRV8VKsVr5BsoeR/P6S0JUWFA1PMcVBPsC2DDxKuyiQs5WG/mQK\r\norJQqd6HEyGnYe2JLrm/dD/8xghXcobTLYlA8h33xu25Xa0SIkNr7hFN/7vL\r\n35YCBqRFfDa9hgsmI0+5THT1XG9yqDsg5Qkzog9JJNR8EyZNJJNKc6SkSxa8\r\nYxLT4w993nGo1DDN+2mrfxNmzE88tokWT8s=\r\n=xp+e\r\n-----END PGP SIGNATURE-----\r\n"},"main":"./dist/index.js","types":"./dist/index.d.ts","gitHead":"6568bba40baa3b8faf5b164f6bd542a50873fe0f","scripts":{"build":"tsc"},"_npmUser":{"name":"anonymous","email":"vojacem@gmail.com"},"repository":{"url":"git+https://github.com/smartlook/smartlook-client.git","type":"git"},"_npmVersion":"8.6.0","description":"Official Smartlook client for easy frontend integration.","directories":{},"_nodeVersion":"18.12.1","_hasShrinkwrap":false,"devDependencies":{"typescript":"4.6.2"},"_npmOperationalInternal":{"tmp":"tmp/smartlook-client_8.1.0_1677663594801_0.6580197628878521","host":"s3://npm-registry-packages"}},"8.2.0":{"name":"smartlook-client","version":"8.2.0","keywords":["smartlook","smartlook-client"],"author":{"name":"David Kadlec","email":"david@smartlook.com"},"license":"MIT","_id":"smartlook-client@8.2.0","maintainers":[{"name":"anonymous","email":"martin.budinsky@smartlook.com"},{"name":"anonymous","email":"sami@aldury.com"},{"name":"anonymous","email":"jakubpetriska@gmail.com"},{"name":"anonymous","email":"pajkycz@gmail.com"},{"name":"anonymous","email":"david@smartlook.com"},{"name":"anonymous","email":"acrocz@gmail.com"},{"name":"anonymous","email":"honzicekz@gmail.com"},{"name":"anonymous","email":"vojacem@gmail.com"},{"name":"anonymous","email":"32jojo32@gmail.com"},{"name":"anonymous","email":"petr.klobas@gmail.com"}],"homepage":"https://github.com/smartlook/smartlook-client#readme","bugs":{"url":"https://github.com/smartlook/smartlook-client/issues"},"dist":{"shasum":"3d4d372a320e4a17d6c7a5ce35195e87cb740531","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/smartlook-client/-/smartlook-client-8.2.0.tgz","fileCount":10,"integrity":"sha512-zIGEV7jeSDqLrwW2bBooSNFYIExuzgYtFkVi7fySVOgW4S5dy/pYh4fAnf/d+GA3oodS+x7/zT2E7xhbsNXLDg==","signatures":[{"sig":"MEUCIEUYkREU6cRDJKeUhgII4ronuBpDsOXAqhFRYw7CP9oRAiEA7yqwU/nSWZ4v5vlKLu3XIAKL/iSH2eGFD59ws3P9/yk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":27621},"main":"./dist/index.js","types":"./dist/index.d.ts","gitHead":"5085c0dcbed00b5ed503db07a89d52d96141730d","scripts":{"build":"tsc"},"_npmUser":{"name":"anonymous","email":"david@smartlook.com"},"repository":{"url":"git+https://github.com/smartlook/smartlook-client.git","type":"git"},"_npmVersion":"8.19.2","description":"Official Smartlook client for easy frontend integration.","directories":{},"_nodeVersion":"18.12.1","_hasShrinkwrap":false,"devDependencies":{"typescript":"4.6.2"},"_npmOperationalInternal":{"tmp":"tmp/smartlook-client_8.2.0_1686644632265_0.7711456053220322","host":"s3://npm-registry-packages"}},"8.3.0":{"name":"smartlook-client","version":"8.3.0","keywords":["smartlook","smartlook-client"],"author":{"name":"David Kadlec","email":"david@smartlook.com"},"license":"MIT","_id":"smartlook-client@8.3.0","maintainers":[{"name":"anonymous","email":"martin.budinsky@smartlook.com"},{"name":"anonymous","email":"sami@aldury.com"},{"name":"anonymous","email":"jakubpetriska@gmail.com"},{"name":"anonymous","email":"pajkycz@gmail.com"},{"name":"anonymous","email":"david@smartlook.com"},{"name":"anonymous","email":"acrocz@gmail.com"},{"name":"anonymous","email":"honzicekz@gmail.com"},{"name":"anonymous","email":"vojacem@gmail.com"},{"name":"anonymous","email":"32jojo32@gmail.com"},{"name":"anonymous","email":"petr.klobas@gmail.com"}],"homepage":"https://github.com/smartlook/smartlook-client#readme","bugs":{"url":"https://github.com/smartlook/smartlook-client/issues"},"dist":{"shasum":"311cbba249f35c9d22e25f63ae1f703138dd04c9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/smartlook-client/-/smartlook-client-8.3.0.tgz","fileCount":10,"integrity":"sha512-G00mlrBGbshz6zLV67/iPUzqOaTtc3znqHqQjhqlKdGSR0AjO+PYa7udxhIew/QXsu3bfvFLB5M2qd11jT3k7A==","signatures":[{"sig":"MEYCIQD6jog/FLNi7o8fUDHiwAYpo5z5HR3wORU8svxqJ7w0gwIhALApATHzCk3EsbFrcXnlGykazuzLt7e+8sEtZk7T+ZPh","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":28182},"main":"./dist/index.js","types":"./dist/index.d.ts","gitHead":"6794bcedf77b0a8c8d87843e7f0c51b508dda033","scripts":{"build":"tsc"},"_npmUser":{"name":"anonymous","email":"david@smartlook.com"},"repository":{"url":"git+https://github.com/smartlook/smartlook-client.git","type":"git"},"_npmVersion":"10.1.0","description":"Official Smartlook client for easy frontend integration.","directories":{},"_nodeVersion":"20.9.0","_hasShrinkwrap":false,"devDependencies":{"typescript":"4.6.2"},"_npmOperationalInternal":{"tmp":"tmp/smartlook-client_8.3.0_1704705009239_0.2856090802326221","host":"s3://npm-registry-packages"}},"9.0.0":{"name":"smartlook-client","version":"9.0.0","keywords":["smartlook","smartlook-client"],"author":{"name":"David Kadlec","email":"david@smartlook.com"},"license":"MIT","_id":"smartlook-client@9.0.0","maintainers":[{"name":"anonymous","email":"smartlook.npm@cisco.com"},{"name":"anonymous","email":"martin.budinsky@smartlook.com"},{"name":"anonymous","email":"sami@aldury.com"},{"name":"anonymous","email":"jakubpetriska@gmail.com"},{"name":"anonymous","email":"pajkycz@gmail.com"},{"name":"anonymous","email":"david@smartlook.com"},{"name":"anonymous","email":"acrocz@gmail.com"},{"name":"anonymous","email":"honzicekz@gmail.com"},{"name":"anonymous","email":"vojacem@gmail.com"},{"name":"anonymous","email":"32jojo32@gmail.com"},{"name":"anonymous","email":"petr.klobas@gmail.com"}],"homepage":"https://github.com/smartlook/smartlook-client#readme","bugs":{"url":"https://github.com/smartlook/smartlook-client/issues"},"dist":{"shasum":"9fc08922768b4ed116a5caf2a0b35d28a1706c2a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/smartlook-client/-/smartlook-client-9.0.0.tgz","fileCount":8,"integrity":"sha512-SvOUvwADQBCxIqGPApc4dxj3NzDYC2RXdgMb8pFtYTCROyXSjowBnfzbr4q9nyDmxoNJTyZ9TiWcWFQFmSdNyg==","signatures":[{"sig":"MEUCIFT2BRB5foVF/vqn+nboaY5Fe6SFvlE4Cz37CZSMeqrRAiEA58kd0glxcN2GxIf5liaV2d4N5Mcx1iPn3ZxAOqSKInM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":30656},"main":"./dist/esm/index.mjs","types":"./dist/esm/index.d.ts","exports":{"types":"./dist/esm/index.d.ts","import":"./dist/esm/index.mjs","require":"./dist/cjs/index.cjs"},"gitHead":"2f9d17d86f459dfa4a7d72107924dfe3c4c4c284","scripts":{"build":"yarn build:esm && yarn build:cjs","build:cjs":"tsc -p tsconfig.cjs.json && mv dist/cjs/index.js dist/cjs/index.cjs","build:esm":"tsc -p tsconfig.json && mv dist/esm/index.js dist/esm/index.mjs"},"_npmUser":{"name":"anonymous","email":"david@smartlook.com"},"repository":{"url":"git+https://github.com/smartlook/smartlook-client.git","type":"git"},"_npmVersion":"10.1.0","description":"Official Smartlook client for easy frontend integration.","directories":{},"_nodeVersion":"20.9.0","_hasShrinkwrap":false,"devDependencies":{"typescript":"4.6.2"},"_npmOperationalInternal":{"tmp":"tmp/smartlook-client_9.0.0_1711615360262_0.7925249987460465","host":"s3://npm-registry-packages"}},"10.0.0":{"name":"smartlook-client","version":"10.0.0","description":"Official Smartlook client for easy frontend integration.","main":"./dist/esm/index.mjs","types":"./dist/esm/index.d.ts","exports":{"import":"./dist/esm/index.mjs","require":"./dist/cjs/index.cjs","types":"./dist/esm/index.d.ts"},"scripts":{"build:cjs":"tsc -p tsconfig.cjs.json && mv dist/cjs/index.js dist/cjs/index.cjs","build:esm":"tsc -p tsconfig.json && mv dist/esm/index.js dist/esm/index.mjs","build":"yarn build:esm && yarn build:cjs"},"repository":{"type":"git","url":"git+https://github.com/smartlook/smartlook-client.git"},"keywords":["smartlook","smartlook-client"],"author":{"name":"David Kadlec","email":"david@smartlook.com"},"license":"MIT","bugs":{"url":"https://github.com/smartlook/smartlook-client/issues"},"homepage":"https://github.com/smartlook/smartlook-client#readme","devDependencies":{"typescript":"4.6.2"},"_id":"smartlook-client@10.0.0","gitHead":"32009aa7f1c4a1aa828d30b7a2bea93e752b0900","_nodeVersion":"20.9.0","_npmVersion":"10.1.0","dist":{"integrity":"sha512-KAyy+MXxgqfQJOqsnJhlFiBP29g7rE50hmdoSB3YYq15Dl9y8WEdh1OhdUAYWnENkyDHu3v5lE39O6VuhQMgrA==","shasum":"8c322bfa5866f5d9c1553c22aa98382367f798bd","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/smartlook-client/-/smartlook-client-10.0.0.tgz","fileCount":8,"unpackedSize":30661,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAwNgk8/KCV4D/QGpCOLHOeVFTlLYnmf1qWaIWIQmN3aAiAZwNHDjAqZ+5MK7y+4+1sEa3cqiFZlG6keiSEI3GkzEA=="}]},"_npmUser":{"name":"anonymous","email":"david@smartlook.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/smartlook-client_10.0.0_1719906216175_0.35730088920306136"},"_hasShrinkwrap":false}},"name":"smartlook-client","time":{"created":"2017-05-31T08:34:27.101Z","modified":"2024-07-02T07:43:36.673Z","0.0.1":"2017-05-31T08:34:27.101Z","2.0.0":"2017-05-31T09:42:48.210Z","2.1.2":"2017-05-31T09:58:41.022Z","2.1.3":"2017-05-31T11:16:34.090Z","2.1.4":"2017-06-07T09:22:53.215Z","2.2.0":"2017-06-07T14:54:16.812Z","3.0.0":"2018-02-23T10:05:58.990Z","3.0.1":"2018-02-23T10:08:18.551Z","3.1.0":"2018-05-23T08:50:35.095Z","3.1.1":"2018-11-20T16:07:18.849Z","4.0.0":"2018-11-21T09:31:18.243Z","4.1.0":"2019-08-20T08:35:41.561Z","4.2.0":"2019-11-25T10:59:10.580Z","4.3.0":"2020-01-15T11:57:45.313Z","4.4.0":"2020-02-03T12:48:46.350Z","4.5.1":"2020-06-22T07:28:14.289Z","4.6.0":"2020-09-21T17:02:39.581Z","4.6.1":"2020-09-21T17:06:29.026Z","5.0.0":"2021-05-24T11:42:38.422Z","6.0.0":"2022-03-10T11:28:53.238Z","7.0.0":"2022-03-31T11:03:51.682Z","7.0.1":"2022-03-31T11:11:00.852Z","7.0.2":"2022-09-01T07:51:39.654Z","8.0.0":"2022-09-13T06:35:37.167Z","8.1.0":"2023-03-01T09:39:54.945Z","8.2.0":"2023-06-13T08:23:52.428Z","8.3.0":"2024-01-08T09:10:09.438Z","9.0.0":"2024-03-28T08:42:40.427Z","10.0.0":"2024-07-02T07:43:36.343Z"},"readmeFilename":"README.md","homepage":"https://github.com/smartlook/smartlook-client#readme"}