@launchdarkly/js-client-sdk 0.0.1
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 +31 -0
- package/LICENSE +13 -0
- package/README.md +62 -0
- package/dist/index.cjs.js +2 -0
- package/dist/index.cjs.js.map +1 -0
- package/dist/index.es.js +2 -0
- package/dist/index.es.js.map +1 -0
- package/dist/src/BrowserApi.d.ts +48 -0
- package/dist/src/BrowserApi.d.ts.map +1 -0
- package/dist/src/BrowserClient.d.ts +69 -0
- package/dist/src/BrowserClient.d.ts.map +1 -0
- package/dist/src/BrowserDataManager.d.ts +21 -0
- package/dist/src/BrowserDataManager.d.ts.map +1 -0
- package/dist/src/BrowserIdentifyOptions.d.ts +23 -0
- package/dist/src/BrowserIdentifyOptions.d.ts.map +1 -0
- package/dist/src/BrowserStateDetector.d.ts +2 -0
- package/dist/src/BrowserStateDetector.d.ts.map +1 -0
- package/dist/src/bootstrap.d.ts +5 -0
- package/dist/src/bootstrap.d.ts.map +1 -0
- package/dist/src/goals/GoalManager.d.ts +20 -0
- package/dist/src/goals/GoalManager.d.ts.map +1 -0
- package/dist/src/goals/GoalTracker.d.ts +16 -0
- package/dist/src/goals/GoalTracker.d.ts.map +1 -0
- package/dist/src/goals/Goals.d.ts +33 -0
- package/dist/src/goals/Goals.d.ts.map +1 -0
- package/dist/src/goals/LocationWatcher.d.ts +6 -0
- package/dist/src/goals/LocationWatcher.d.ts.map +1 -0
- package/dist/src/index.d.ts +35 -0
- package/dist/src/index.d.ts.map +1 -0
- package/dist/src/options.d.ts +49 -0
- package/dist/src/options.d.ts.map +1 -0
- package/dist/src/platform/Backoff.d.ts +42 -0
- package/dist/src/platform/Backoff.d.ts.map +1 -0
- package/dist/src/platform/BrowserCrypto.d.ts +7 -0
- package/dist/src/platform/BrowserCrypto.d.ts.map +1 -0
- package/dist/src/platform/BrowserEncoding.d.ts +10 -0
- package/dist/src/platform/BrowserEncoding.d.ts.map +1 -0
- package/dist/src/platform/BrowserHasher.d.ts +10 -0
- package/dist/src/platform/BrowserHasher.d.ts.map +1 -0
- package/dist/src/platform/BrowserInfo.d.ts +6 -0
- package/dist/src/platform/BrowserInfo.d.ts.map +1 -0
- package/dist/src/platform/BrowserPlatform.d.ts +10 -0
- package/dist/src/platform/BrowserPlatform.d.ts.map +1 -0
- package/dist/src/platform/BrowserRequests.d.ts +7 -0
- package/dist/src/platform/BrowserRequests.d.ts.map +1 -0
- package/dist/src/platform/DefaultBrowserEventSource.d.ts +33 -0
- package/dist/src/platform/DefaultBrowserEventSource.d.ts.map +1 -0
- package/dist/src/platform/LocalStorage.d.ts +16 -0
- package/dist/src/platform/LocalStorage.d.ts.map +1 -0
- package/dist/src/platform/randomUuidV4.d.ts +12 -0
- package/dist/src/platform/randomUuidV4.d.ts.map +1 -0
- package/package.json +69 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
## 0.0.1 (2024-10-10)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* Add basic secure mode support for browser SDK. ([#598](https://github.com/launchdarkly/js-core/issues/598)) ([3389983](https://github.com/launchdarkly/js-core/commit/33899830781affbe986f3bb9df35e5c908884f99))
|
|
9
|
+
* Add bootstrap support. ([#600](https://github.com/launchdarkly/js-core/issues/600)) ([4e5dbee](https://github.com/launchdarkly/js-core/commit/4e5dbee48d6bb236b5febd872c910e809058a012))
|
|
10
|
+
* Add browser info. ([#576](https://github.com/launchdarkly/js-core/issues/576)) ([a2f4398](https://github.com/launchdarkly/js-core/commit/a2f439813171527e05f5863afbda3fcb93fedb47))
|
|
11
|
+
* Add ESM support for common and common-client (rollup) ([#604](https://github.com/launchdarkly/js-core/issues/604)) ([8cd0cdc](https://github.com/launchdarkly/js-core/commit/8cd0cdce988f606b1efdf6bfd19484f6607db2e5))
|
|
12
|
+
* Add support for browser contract tests. ([#582](https://github.com/launchdarkly/js-core/issues/582)) ([38f081e](https://github.com/launchdarkly/js-core/commit/38f081ebf04c68123cf83addefbcbfec692cac16))
|
|
13
|
+
* Add support for hooks. ([#605](https://github.com/launchdarkly/js-core/issues/605)) ([04d347b](https://github.com/launchdarkly/js-core/commit/04d347b25e01015134a2545be22bfd8b1d1e85cc))
|
|
14
|
+
* Add support for js-client-sdk style initialization. ([53f5bb8](https://github.com/launchdarkly/js-core/commit/53f5bb89754ff05405d481a959e75742fbd0d0a9))
|
|
15
|
+
* Add support for localStorage for the browser platform. ([#566](https://github.com/launchdarkly/js-core/issues/566)) ([4792391](https://github.com/launchdarkly/js-core/commit/4792391d1ae06f5d5afc7f7ab56608df6b1909c4))
|
|
16
|
+
* Add URLs for custom events and URL filtering. ([#587](https://github.com/launchdarkly/js-core/issues/587)) ([7131e69](https://github.com/launchdarkly/js-core/commit/7131e6905f19cc10a1374aae5e74cec66c7fd6de))
|
|
17
|
+
* Add visibility handling to allow proactive event flushing. ([#607](https://github.com/launchdarkly/js-core/issues/607)) ([819a311](https://github.com/launchdarkly/js-core/commit/819a311db6f56e323bb84c925789ad4bd19ae4ba))
|
|
18
|
+
* adds datasource status to sdk-client ([#590](https://github.com/launchdarkly/js-core/issues/590)) ([6f26204](https://github.com/launchdarkly/js-core/commit/6f262045b76836e5d2f5ccc2be433094993fcdbb))
|
|
19
|
+
* Adds support for REPORT. ([#575](https://github.com/launchdarkly/js-core/issues/575)) ([916b724](https://github.com/launchdarkly/js-core/commit/916b72409b63abdf350e70cca41331c4204b6e95))
|
|
20
|
+
* Browser-SDK Automatically start streaming based on event handlers. ([#592](https://github.com/launchdarkly/js-core/issues/592)) ([f2e5cbf](https://github.com/launchdarkly/js-core/commit/f2e5cbf1d0b3ae39a95881fecdcbefc11e9d0363))
|
|
21
|
+
* Implement browser crypto and encoding. ([#574](https://github.com/launchdarkly/js-core/issues/574)) ([e763e5d](https://github.com/launchdarkly/js-core/commit/e763e5d2e53329c0f86b93544af85ca7a94e7936))
|
|
22
|
+
* Implement goals for client-side SDKs. ([#585](https://github.com/launchdarkly/js-core/issues/585)) ([fd38a8f](https://github.com/launchdarkly/js-core/commit/fd38a8fa8560dad0c6721c2eaeed2f3f5c674900))
|
|
23
|
+
* Implement support for browser requests. ([#578](https://github.com/launchdarkly/js-core/issues/578)) ([887548a](https://github.com/launchdarkly/js-core/commit/887548a29e22a618d44a6941c175f33402e331bf))
|
|
24
|
+
* Refactor data source connection handling. ([53f5bb8](https://github.com/launchdarkly/js-core/commit/53f5bb89754ff05405d481a959e75742fbd0d0a9))
|
|
25
|
+
* Scaffold browser client. ([#579](https://github.com/launchdarkly/js-core/issues/579)) ([0848ab7](https://github.com/launchdarkly/js-core/commit/0848ab790903f8fcdc717de6c426e4948abe51c4))
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
### Bug Fixes
|
|
29
|
+
|
|
30
|
+
* Ensure browser contract tests run during top-level build. ([#589](https://github.com/launchdarkly/js-core/issues/589)) ([7dfb14d](https://github.com/launchdarkly/js-core/commit/7dfb14de1757b66d9f876b25d4c1262e8f8b70c9))
|
|
31
|
+
* Ensure client logger is always wrapped in a safe logger. ([#599](https://github.com/launchdarkly/js-core/issues/599)) ([980e4da](https://github.com/launchdarkly/js-core/commit/980e4daaf32864e18f14b1e5e28e308dff0ae94f))
|
package/LICENSE
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
Copyright 2024 Catamorphic, Co.
|
|
2
|
+
|
|
3
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
4
|
+
you may not use this file except in compliance with the License.
|
|
5
|
+
You may obtain a copy of the License at
|
|
6
|
+
|
|
7
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
8
|
+
|
|
9
|
+
Unless required by applicable law or agreed to in writing, software
|
|
10
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
11
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
12
|
+
See the License for the specific language governing permissions and
|
|
13
|
+
limitations under the License.
|
package/README.md
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
# LaunchDarkly JavaScript SDK for Browsers
|
|
2
|
+
|
|
3
|
+
<!--
|
|
4
|
+
[![NPM][browser-sdk-npm-badge]][browser-sdk-npm-link]
|
|
5
|
+
[![Actions Status][browser-sdk-ci-badge]][browser-sdk-ci]
|
|
6
|
+
[![Documentation][browser-sdk-ghp-badge]][browser-sdk-ghp-link]
|
|
7
|
+
[![NPM][browser-sdk-dm-badge]][browser-sdk-npm-link]
|
|
8
|
+
[![NPM][browser-sdk-dt-badge]][browser-sdk-npm-link]
|
|
9
|
+
-->
|
|
10
|
+
|
|
11
|
+
# ⛔️⛔️⛔️⛔️
|
|
12
|
+
> [!CAUTION]
|
|
13
|
+
> This library is a alpha version and should not be considered ready for production use while this message is visible.
|
|
14
|
+
|
|
15
|
+
# ☝️☝️☝️☝️☝️☝️
|
|
16
|
+
|
|
17
|
+
<!--
|
|
18
|
+
## Install
|
|
19
|
+
|
|
20
|
+
```shell
|
|
21
|
+
# npm
|
|
22
|
+
npm i @launchdarkly/js-client-sdk
|
|
23
|
+
|
|
24
|
+
# yarn
|
|
25
|
+
yarn add -D @launchdarkly/js-client-sdk
|
|
26
|
+
```
|
|
27
|
+
-->
|
|
28
|
+
|
|
29
|
+
## Getting started
|
|
30
|
+
|
|
31
|
+
Refer to the [SDK documentation](https://docs.launchdarkly.com/sdk/client-side/javascript#getting-started) for instructions on getting started with using the SDK.
|
|
32
|
+
|
|
33
|
+
Note: _If you are using JavaScript in a non-browser environment, please check our other SDK packages in [js-core](https://github.com/launchdarkly/js-core)_
|
|
34
|
+
Please note that the JavaScript SDK has two special requirements in terms of your LaunchDarkly environment. First, in terms of the credentials for your environment that appear on your [Account Settings](https://app.launchdarkly.com/settings/projects) dashboard, the JavaScript SDK uses the "Client-side ID"-- not the "SDK key" or the "Mobile key". Second, for any feature flag that you will be using in JavaScript code, you must check the "Make this flag available to client-side SDKs" box on that flag's Settings page.
|
|
35
|
+
|
|
36
|
+
## Verifying SDK build provenance with the SLSA framework
|
|
37
|
+
|
|
38
|
+
LaunchDarkly uses the [SLSA framework](https://slsa.dev/spec/v1.0/about) (Supply-chain Levels for Software Artifacts) to help developers make their supply chain more secure by ensuring the authenticity and build integrity of our published SDK packages. To learn more, see the [provenance guide](PROVENANCE.md).
|
|
39
|
+
|
|
40
|
+
## About LaunchDarkly
|
|
41
|
+
|
|
42
|
+
- LaunchDarkly is a continuous delivery platform that provides feature flags as a service and allows developers to iterate quickly and safely. We allow you to easily flag your features and manage them from the LaunchDarkly dashboard. With LaunchDarkly, you can:
|
|
43
|
+
- Roll out a new feature to a subset of your users (like a group of users who opt-in to a beta tester group), gathering feedback and bug reports from real-world use cases.
|
|
44
|
+
- Gradually roll out a feature to an increasing percentage of users, and track the effect that the feature has on key metrics (for instance, how likely is a user to complete a purchase if they have feature A versus feature B?).
|
|
45
|
+
- Turn off a feature that you realize is causing performance problems in production, without needing to re-deploy, or even restart the application with a changed configuration file.
|
|
46
|
+
- Grant access to certain features based on user attributes, like payment plan (eg: users on the ‘gold’ plan get access to more features than users in the ‘silver’ plan).
|
|
47
|
+
- Disable parts of your application to facilitate maintenance, without taking everything offline.
|
|
48
|
+
- LaunchDarkly provides feature flag SDKs for a wide variety of languages and technologies. Read [our documentation](https://docs.launchdarkly.com/sdk) for a complete list.
|
|
49
|
+
- Explore LaunchDarkly
|
|
50
|
+
- [launchdarkly.com](https://www.launchdarkly.com/ 'LaunchDarkly Main Website') for more information
|
|
51
|
+
- [docs.launchdarkly.com](https://docs.launchdarkly.com/ 'LaunchDarkly Documentation') for our documentation and SDK reference guides
|
|
52
|
+
- [apidocs.launchdarkly.com](https://apidocs.launchdarkly.com/ 'LaunchDarkly API Documentation') for our API documentation
|
|
53
|
+
- [blog.launchdarkly.com](https://blog.launchdarkly.com/ 'LaunchDarkly Blog Documentation') for the latest product updates
|
|
54
|
+
|
|
55
|
+
[browser-sdk-ci-badge]: https://github.com/launchdarkly/js-core/actions/workflows/browser.yml/badge.svg
|
|
56
|
+
[browser-sdk-ci]: https://github.com/launchdarkly/js-core/actions/workflows/browser.yml
|
|
57
|
+
[browser-sdk-npm-badge]: https://img.shields.io/npm/v/@launchdarkly/js-client-sdk.svg?style=flat-square
|
|
58
|
+
[browser-sdk-npm-link]: https://www.npmjs.com/package/@launchdarkly/js-client-sdk
|
|
59
|
+
[browser-sdk-ghp-badge]: https://img.shields.io/static/v1?label=GitHub+Pages&message=API+reference&color=00add8
|
|
60
|
+
[browser-sdk-ghp-link]: https://launchdarkly.github.io/js-core/packages/sdk/browser/docs/
|
|
61
|
+
[browser-sdk-dm-badge]: https://img.shields.io/npm/dm/@launchdarkly/js-client-sdk.svg?style=flat-square
|
|
62
|
+
[browser-sdk-dt-badge]: https://img.shields.io/npm/dt/@launchdarkly/js-client-sdk.svg?style=flat-square
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
"use strict";function t(t){return t.indexOf("~")?t.replace(/~1/g,"/").replace(/~0/g,"~"):t}class e{constructor(e,n=!1){if(n){const t=e;this.components=[t],this.isValid=""!==t,this.redactionName=t.startsWith("/")?`/${t.replace(/~/g,"~0").replace(/\//g,"~1")}`:t}else{if(this.redactionName=e,""===e||"/"===e||e.match(/\/\/|(^\/.*~[^0|^1])|~$/))return this.isValid=!1,void(this.components=[]);!function(t){return!t.startsWith("/")}(e)?e.indexOf("/",1)<0?this.components=[t(e.slice(1))]:this.components=function(e){return(e.startsWith("/")?e.substring(1):e).split("/").map((e=>t(e)))}(e):this.components=[e],"_meta"===this.components[0]?this.isValid=!1:this.isValid=!0}}get(t){const{components:e,isValid:n}=this;if(!n)return;let i=t;for(let t=0;t<e.length;t+=1){const n=e[t];if(null==i||!Object.prototype.hasOwnProperty.call(i,n)||"object"!=typeof i||Array.isArray(i))return;i=i[n]}return i}getComponent(t){return this.components[t]}get depth(){return this.components.length}get isKind(){return 1===this.components.length&&"kind"===this.components[0]}compare(t){return this.depth===t.depth&&this.components.every(((e,n)=>e===t.getComponent(n)))}}e.invalidReference=new e("");class n{constructor(t,e){this.typeName=t,this.typeOf=typeof e}is(t){return!Array.isArray(t)&&typeof t===this.typeOf}getType(){return this.typeName}}class i{constructor(t,e){this.typeName=t,this.typeOf=typeof e}is(t){return!!Array.isArray(t)&&(!(t.length>0)||t.every((t=>typeof t===this.typeOf)))}getType(){return this.typeName}}class s extends n{constructor(t){super(`number with minimum value of ${t}`,0),this.min=t}is(t){return typeof t===this.typeOf&&t>=this.min}}class r extends n{constructor(t){super(`string matching ${t}`,""),this.expression=t}is(t){return"string"==typeof t&&!!t.match(this.expression)}}const a=/^\d\d\d\d-\d\d-\d\dT\d\d:\d\d:\d\d(\.\d\d*)?(Z|[-+]\d\d(:\d\d)?)/;class o{static createTypeArray(t,e){return new i(t,e)}static numberWithMin(t){return new s(t)}static stringMatchingRegex(t){return new r(t)}}function c(t){return"kind"in t&&(o.String.is(t.kind)&&"multi"!==t.kind)}function l(t){return"kind"in t&&(o.String.is(t.kind)&&"multi"===t.kind)}function h(t){return!("kind"in t)||null===t.kind||void 0===t.kind}o.String=new n("string",""),o.Number=new n("number",0),o.ObjectOrFactory=new class{is(t){if(Array.isArray(t))return!1;const e=typeof t;return"function"===e||"object"===e}getType(){return"factory method or object"}},o.Object=new n("object",{}),o.StringArray=new i("string[]",""),o.Boolean=new n("boolean",!0),o.Function=new class{is(t){return"function"==typeof t}getType(){return"function"}},o.Date=new class{is(t){return"number"==typeof t||"string"==typeof t&&a.test(t)}getType(){return"date"}},o.Kind=new class extends r{constructor(){super(/^(\w|\.|-)+$/)}is(t){return super.is(t)&&"kind"!==t}},o.NullableBoolean=new class{is(t){return"boolean"==typeof t||null==t}getType(){return"boolean | undefined | null"}};const u="user";function d(t){return t.includes("%")||t.includes(":")?t.replace(/%/g,"%25").replace(/:/g,"%3A"):t}function g(t){return o.Kind.is(t)}function f(t){return o.String.is(t)&&""!==t}function p(t,n=!1){return t?t.map((t=>new e(t,n))):[]}class m{constructor(t,e,n){this.isMulti=!1,this.isUser=!1,this.wasLegacy=!1,this.contexts={},this.kind=e,this.valid=t,this.message=n}static contextForError(t,e){return new m(!1,t,e)}static getValueFromContext(t,e){if(e&&t.isValid)return 1===t.depth&&"anonymous"===t.getComponent(0)?!!e?.anonymous:t.get(e)}contextForKind(t){return this.isMulti?this.contexts[t]:this.kind===t?this.context:void 0}static fromMultiKindContext(t){const e=Object.keys(t).filter((t=>"kind"!==t)),n=e.every(g);if(!e.length)return m.contextForError("multi","A multi-kind context must contain at least one kind");if(!n)return m.contextForError("multi","Context contains invalid kinds");const i={};let s=!0;const r=e.reduce(((e,n)=>{const r=t[n];var a;return(a=r)&&o.Object.is(a)?(e[n]=r,i[n]=p(r._meta?.privateAttributes)):s=!1,e}),{});if(!s)return m.contextForError("multi","Context contained contexts that were not objects");if(!Object.values(r).every((t=>f(t.key))))return m.contextForError("multi","Context contained invalid keys");if(1===e.length){const t=e[0],n=new m(!0,t);return n.context={...r[t],kind:t},n.privateAttributeReferences=i,n.isUser="user"===t,n}const a=new m(!0,t.kind);return a.contexts=r,a.privateAttributeReferences=i,a.isMulti=!0,a}static fromSingleKindContext(t){const{key:e,kind:n}=t,i=g(n),s=f(e);if(!i)return m.contextForError(n??"unknown","The kind was not valid for the context");if(!s)return m.contextForError(n,"The key for the context was not valid");const r=p(t._meta?.privateAttributes),a=new m(!0,n);return a.isUser="user"===n,a.context=t,a.privateAttributeReferences={[n]:r},a}static fromLegacyUser(t){if(!(void 0!==t.key&&null!==t.key))return m.contextForError("user","The key for the context was not valid");const e=new m(!0,"user");return e.isUser=!0,e.wasLegacy=!0,e.context=function(t){const e={...t.custom||[],kind:"user",key:String(t.key)};if(null!=t.anonymous){const n=!!t.anonymous;delete e.anonymous,e.anonymous=n}return null!==t.name&&void 0!==t.name&&(e.name=t.name),null!==t.ip&&void 0!==t.ip&&(e.ip=t.ip),null!==t.firstName&&void 0!==t.firstName&&(e.firstName=t.firstName),null!==t.lastName&&void 0!==t.lastName&&(e.lastName=t.lastName),null!==t.email&&void 0!==t.email&&(e.email=t.email),null!==t.avatar&&void 0!==t.avatar&&(e.avatar=t.avatar),null!==t.country&&void 0!==t.country&&(e.country=t.country),null!==t.privateAttributeNames&&void 0!==t.privateAttributeNames&&(e._meta={privateAttributes:t.privateAttributeNames}),e}(t),e.privateAttributeReferences={user:p(t.privateAttributeNames,!0)},e}static fromLDContext(t){return t?c(t)?m.fromSingleKindContext(t):l(t)?m.fromMultiKindContext(t):h(t)?m.fromLegacyUser(t):m.contextForError("unknown","Context was not of a valid kind"):m.contextForError("unknown","No context specified. Returning default value")}static toLDContext(t){if(!t.valid)return;const e=t.getContexts();if(!t.isMulti)return e[0][1];const n={kind:"multi"};return e.forEach((t=>{const e=t[0],i=t[1];n[e]=i})),n}valueForKind(t,e=u){return t.isKind?this.kinds:m.getValueFromContext(t,this.contextForKind(e))}key(t=u){return this.contextForKind(t)?.key}get isMultiKind(){return this.isMulti}get canonicalKey(){return this.isUser?this.context.key:this.isMulti?Object.keys(this.contexts).sort().map((t=>`${t}:${d(this.contexts[t].key)}`)).join(":"):`${this.kind}:${d(this.context.key)}`}get kinds(){return this.isMulti?Object.keys(this.contexts):[this.kind]}get kindsAndKeys(){return this.isMulti?Object.entries(this.contexts).reduce(((t,[e,n])=>(t[e]=n.key,t)),{}):{[this.kind]:this.context.key}}privateAttributes(t){return this.privateAttributeReferences?.[t]||[]}getContexts(){return this.isMulti?Object.entries(this.contexts):[[this.kind,this.context]]}get legacy(){return this.wasLegacy}}m.userKind=u;const v=["key","kind","_meta","anonymous"].map((t=>new e(t,!0))),y=["name","ip","firstName","lastName","email","avatar","country"];class w{constructor(t,e){this.allAttributesPrivate=t,this.privateAttributes=e}filter(t,e=!1){const n=t.getContexts();if(1===n.length)return this.filterSingleKind(t,n[0][1],n[0][0],e);const i={kind:"multi"};return n.forEach((([n,s])=>{i[n]=this.filterSingleKind(t,s,n,e)})),i}getAttributesToFilter(t,n,i,s){return(s?Object.keys(n).map((t=>new e(t,!0))):[...this.privateAttributes,...t.privateAttributes(i)]).filter((t=>!v.some((e=>e.compare(t)))))}filterSingleKind(t,e,n,i){const s=this.allAttributesPrivate||i&&!0===e.anonymous,{cloned:r,excluded:a}=function(t,e){const n=[],i={},s=[];for(n.push(...Object.keys(t).map((e=>({key:e,ptr:[e],source:t,parent:i,visited:[t]}))));n.length;){const t=n.pop(),i=e.find((e=>{return n=e,i=t.ptr,n.depth===i.length&&i.every(((t,e)=>t===n.getComponent(e)));var n,i}));if(i)s.push(i.redactionName);else{const e=t.source[t.key];null===e?t.parent[t.key]=e:Array.isArray(e)?t.parent[t.key]=[...e]:"object"==typeof e?t.visited.includes(e)||(t.parent[t.key]={},n.push(...Object.keys(e).map((n=>({key:n,ptr:[...t.ptr,n],source:e,parent:t.parent[t.key],visited:[...t.visited,e]}))))):t.parent[t.key]=e}}return{cloned:i,excluded:s.sort()}}(e,this.getAttributesToFilter(t,e,n,s));return t.legacy&&y.forEach((t=>{t in r&&(r[t]=String(r[t]))})),a.length&&(r._meta||(r._meta={}),r._meta.redactedAttributes=a),r._meta&&(delete r._meta.privateAttributes,0===Object.keys(r._meta).length&&delete r._meta),r}}var k,E,b,S;!function(t){t.Unknown="UNKNOWN",t.NetworkError="NETWORK_ERROR",t.ErrorResponse="ERROR_RESPONSE",t.InvalidData="INVALID_DATA"}(k||(k={}));class x extends Error{constructor(t,e,n,i=!0){super(e),this.kind=t,this.status=n,this.name="LaunchDarklyPollingError",this.recoverable=i}}class D extends Error{constructor(t,e,n,i=!0){super(e),this.kind=t,this.code=n,this.name="LaunchDarklyStreamingError",this.recoverable=i}}function C(t){if("string"==typeof t)return t;if(void 0===t)return"undefined";if(null===t)return"null";if(Object.prototype.hasOwnProperty.call(t,"toString"))try{return t.toString()}catch{}if("bigint"==typeof t)return`${t}n`;try{return JSON.stringify(t)}catch(t){return t instanceof TypeError&&t.message.indexOf("circular")>=0?"[Circular]":"[Not Stringifiable]"}}!function(t){t[t.Disabled=0]="Disabled",t[t.Enabled=1]="Enabled"}(E||(E={})),function(t){t[t.AnalyticsEvents=0]="AnalyticsEvents",t[t.DiagnosticEvent=1]="DiagnosticEvent"}(b||(b={})),function(t){t[t.Succeeded=0]="Succeeded",t[t.Failed=1]="Failed",t[t.FailedAndMustShutDown=2]="FailedAndMustShutDown"}(S||(S={}));const R={s:t=>C(t),d:t=>function(t){return"symbol"==typeof t?"NaN":"bigint"==typeof t?`${t}n`:String(Number(t))}(t),i:t=>function(t){return"symbol"==typeof t?"NaN":"bigint"==typeof t?`${t}n`:String(parseInt(t,10))}(t),f:t=>function(t){return"symbol"==typeof t?"NaN":String(parseFloat(t))}(t),j:t=>C(t),o:t=>C(t),O:t=>C(t),c:()=>""};function I(...t){const e=t.shift();if(o.String.is(e)){let n="",i=0;for(;i<e.length;){const s=e.charAt(i);if("%"===s){if(i+1<e.length){const s=e.charAt(i+1);if(s in R&&t.length){const e=t.shift();n+=R[s]?.(e)}else n+="%"===s?"%":`%${s}`;i+=2}}else n+=s,i+=1}return t.length&&(n.length&&(n+=" "),n+=t.map(C).join(" ")),n}return t.map(C).join(" ")}const M={debug:0,info:1,warn:2,error:3,none:4},O=["debug","info","warn","error","none"];class T{static get(){return new T({})}constructor(t){this.logLevel=M[t.level??"info"]??M.info,this.name=t.name??"LaunchDarkly",this.destination=t.destination,this.formatter=t.formatter}tryFormat(...t){try{return this.formatter?this.formatter?.(...t):I(...t)}catch{return I(...t)}}tryWrite(t){try{this.destination(t)}catch{console.error(t)}}log(t,e){if(t>=this.logLevel){const n=`${O[t]}: [${this.name}]`;try{this.destination?this.tryWrite(`${n} ${this.tryFormat(...e)}`):console.error(...e)}catch{console.error(...e)}}}error(...t){this.log(M.error,t)}warn(...t){this.log(M.warn,t)}info(...t){this.log(M.info,t)}debug(...t){this.log(M.debug,t)}}const A={error:o.Function,warn:o.Function,info:o.Function,debug:o.Function};class ${constructor(t,e){Object.entries(A).forEach((([e,n])=>{if(!n.is(t[e]))throw new Error(`Provided logger instance must support logger.${e}(...) method`)})),this.logger=t,this.fallback=e}log(t,e){try{this.logger[t](...e)}catch{this.fallback[t](...e)}}error(...t){this.log("error",t)}warn(...t){this.log("warn",t)}info(...t){this.log("info",t)}debug(...t){this.log("debug",t)}}const P=t=>{const e=new T({level:"info",destination:console.error,formatter:I});return t?new $(t,e):e};class N{static deprecated(t,e){return`"${t}" is deprecated, please use "${e}"`}static optionBelowMinimum(t,e,n){return`Config option "${t}" had invalid value of ${e}, using minimum of ${n} instead`}static unknownOption(t){return`Ignoring unknown config option "${t}"`}static wrongOptionType(t,e,n){return`Config option "${t}" should be of type ${e}, got ${n}, using default value`}static wrongOptionTypeBoolean(t,e){return`Config option "${t}" should be a boolean, got ${e}, converting to boolean`}static invalidTagValue(t){return`Config option "${t}" must only contain letters, numbers, ., _ or -.`}static tagValueTooLong(t){return`Value of "${t}" was longer than 64 characters and was discarded.`}static partialEndpoint(t){return`You have set custom uris without specifying the ${t} URI; connections may not work properly`}}const U=o.stringMatchingRegex(/^(\w|\.|-)+$/),F=(t,e)=>U.is(t)?t.length>64?{valid:!1,message:N.tagValueTooLong(e)}:{valid:!0}:{valid:!1,message:N.invalidTagValue(e)};class L{constructor(t){const e={},n=t?.application,i=t?.logger;n&&Object.entries(n).forEach((([t,n])=>{if(null!=n){const{valid:s,message:r}=F(n,`application.${t}`);s?"versionName"===t?e["application-version-name"]=[n]:e[`application-${t}`]=[n]:i?.warn(r)}}));const s=Object.keys(e);s.length&&(this.value=s.sort().flatMap((t=>e[t].sort().map((e=>`${t}/${e}`)))).join(" "))}}class j{constructor(t,e,n){this.platform=n,this.basicConfiguration={tags:e.tags,logger:e.logger,offline:e.offline,serviceEndpoints:e.serviceEndpoints,sdkKey:t}}}function K(t){return t.replace(/\/+$/,"")}function H(t){return t.replace(/^\/+/,"").replace(/\?$/,"")}class q{constructor(t,e,n=q.DEFAULT_EVENTS,i="/bulk",s="/diagnostic",r=!0,a){this.streaming=K(t),this.polling=K(e),this.events=K(n),this.analyticsEventPath=i,this.diagnosticEventPath=s,this.includeAuthorizationHeader=r,this.payloadFilterKey=a}}function V(t,e){if(0===e.length)return t;return`${t}?${e.map((({key:t,value:e})=>`${t}=${e}`)).join("&")}`}function _(t,e,n){const i=H(e),s=[...n];return t.payloadFilterKey&&s.push({key:"filter",value:t.payloadFilterKey}),V(`${t.streaming}/${i}`,s)}function J(t,e,n){const i=H(e),s=[...n];return t.payloadFilterKey&&s.push({key:"filter",value:t.payloadFilterKey}),V(`${t.polling}/${i}`,s)}function B(t,e,n){const i=H(e);return V(`${t.events}/${i}`,n)}q.DEFAULT_EVENTS="https://events.launchdarkly.com";class z extends Error{constructor(t){super(t),this.name="LaunchDarklyUnexpectedResponseError"}}class W extends Error{constructor(t){super(t),this.name="LaunchDarklyClientError"}}class G extends Error{constructor(t){super(t),this.name="LaunchDarklyTimeoutError"}}function Y(t){return!(t>=400&&t<500)||(400===t||408===t||429===t)}function Z(t){return null==t?t:JSON.parse(JSON.stringify(t))}function Q(t){return Math.trunc(1e3*t)}const X=(t,e)=>t?Object.entries(t).reduce(((t,[n,i])=>(!Boolean(i)||(t=>"{}"===JSON.stringify(t))(i)||e?.includes(n)||(t[n]="object"==typeof i?X(i,e):i),t)),{}):t;function tt(t,e){if(t===e)return!0;if(t&&e&&"object"==typeof t&&"object"==typeof e){if(t.constructor!==e.constructor)return!1;var n,i,s;if(Array.isArray(t)){if((n=t.length)!=e.length)return!1;for(i=n;0!=i--;)if(!tt(t[i],e[i]))return!1;return!0}if(t instanceof Map&&e instanceof Map){if(t.size!==e.size)return!1;for(i of t.entries())if(!e.has(i[0]))return!1;for(i of t.entries())if(!tt(i[1],e.get(i[0])))return!1;return!0}if(t instanceof Set&&e instanceof Set){if(t.size!==e.size)return!1;for(i of t.entries())if(!e.has(i[0]))return!1;return!0}if(ArrayBuffer.isView(t)&&ArrayBuffer.isView(e)){if((n=t.length)!=e.length)return!1;for(i=n;0!=i--;)if(t[i]!==e[i])return!1;return!0}if(t.constructor===RegExp)return t.source===e.source&&t.flags===e.flags;if(t.valueOf!==Object.prototype.valueOf)return t.valueOf()===e.valueOf();if(t.toString!==Object.prototype.toString)return t.toString()===e.toString();if((n=(s=Object.keys(t)).length)!==Object.keys(e).length)return!1;for(i=n;0!=i--;)if(!Object.prototype.hasOwnProperty.call(e,s[i]))return!1;for(i=n;0!=i--;){var r=s[i];if(!tt(t[r],e[r]))return!1}return!0}return t!=t&&e!=e}function et(t,e,n){let i;i=t.status?`error ${t.status}${401===t.status?" (invalid SDK key)":""}`:`I/O error (${t.message||"unknown error"})`;return`Received ${i} for ${e} - ${n??"giving up permanently"}`}function nt({status:t}){return!t||Y(t)}const it=(t,e)=>e.btoa(t).replace(/\+/g,"-").replace(/\//g,"_").replace(/=+$/,"");var st;!function(t){t.MalformedFlag="MALFORMED_FLAG",t.UserNotSpecified="USER_NOT_SPECIFIED",t.FlagNotFound="FLAG_NOT_FOUND",t.ClientNotReady="CLIENT_NOT_READY",t.WrongType="WRONG_TYPE"}(st||(st={}));var rt=st;let at=class{static invalidMetricValue(t){return`The track function was called with a non-numeric "metricValue" (${t}), only numeric metric values are supported.`}};at.missingContextKeyNoEvent="Context was unspecified or had no key; event will not be sent";class ot{constructor(t,e){const{basicConfiguration:n,platform:i}=t,{serviceEndpoints:{analyticsEventPath:s,diagnosticEventPath:r}}=n,{crypto:a,requests:o}=i;this.defaultHeaders={...e},this.eventsUri=B(n.serviceEndpoints,s,[]),this.diagnosticEventsUri=B(n.serviceEndpoints,r,[]),this.requests=o,this.crypto=a}async tryPostingEvents(t,e,n,i){const s={status:S.Succeeded},r={...this.defaultHeaders,"content-type":"application/json"};let a;n&&(r["x-launchdarkly-payload-id"]=n,r["x-launchDarkly-event-schema"]="4");try{const{status:n,headers:i}=await this.requests.fetch(e,{headers:r,body:JSON.stringify(t),method:"POST",keepalive:!0}),o=Date.parse(i.get("date")||"");if(o&&(s.serverTime=o),n<=204)return s;if(a=new z(et({status:n,message:"some events were dropped"},"event posting")),!Y(n))return!function(t){return 413===t||Y(t)}(n)?s.status=S.FailedAndMustShutDown:s.status=S.Failed,s.error=a,s}catch(t){a=t}return a&&!i?(s.status=S.Failed,s.error=a,s):(await(async(t=1e3)=>new Promise((e=>{setTimeout(e,t)})))(),this.tryPostingEvents(t,this.eventsUri,n,!1))}async sendEventData(t,e){const n=t===b.AnalyticsEvents?this.crypto.randomUUID():void 0,i=t===b.AnalyticsEvents?this.eventsUri:this.diagnosticEventsUri;return this.tryPostingEvents(e,i,n,!0)}}function ct(t){return"feature"===t.kind}class lt{constructor(t,e,n,i,s,r){this.count=t,this.key=e,this.value=n,this.version=s,this.variation=r,this.default=i}increment(){this.count+=1}}class ht{constructor(){this.startDate=0,this.endDate=0,this.counters={},this.contextKinds={}}summarizeEvent(t){if(ct(t)&&!t.excludeFromSummaries){const e=function(t){return`${t.key}:${null!==t.variation&&void 0!==t.variation?t.variation:""}:${null!==t.version&&void 0!==t.version?t.version:""}`}(t),n=this.counters[e];let i=this.contextKinds[t.key];i||(i=new Set,this.contextKinds[t.key]=i),t.context.kinds.forEach((t=>i.add(t))),n?n.increment():this.counters[e]=new lt(1,t.key,t.value,t.default,t.version,t.variation),(0===this.startDate||t.creationDate<this.startDate)&&(this.startDate=t.creationDate),t.creationDate>this.endDate&&(this.endDate=t.creationDate)}}getSummary(){const t=Object.values(this.counters).reduce(((t,e)=>{let n=t[e.key];n||(n={default:e.default,counters:[],contextKinds:[...this.contextKinds[e.key]]},t[e.key]=n);const i={value:e.value,count:e.count};return void 0!==e.variation&&null!==e.variation&&(i.variation=e.variation),void 0!==e.version&&null!==e.version?i.version=e.version:i.unknown=!0,n.counters.push(i),t}),{});return{startDate:this.startDate,endDate:this.endDate,features:t,kind:"summary"}}clearSummary(){this.startDate=0,this.endDate=0,this.counters={},this.contextKinds={}}}class ut extends Error{constructor(t){super(t),this.name="LaunchDarklyInvalidSDKKeyError"}}function dt(t){const e=Math.trunc(t);return 1===e||0!==e&&0===Math.floor(Math.random()*e)}class gt{constructor(t,e,n,i,s=1,r){this.context=t,this.key=e,this.data=n,this.metricValue=i,this.samplingRatio=s,this.url=r,this.kind="custom",this.creationDate=Date.now(),this.context=t}}class ft{constructor(t,e,n,i,s,r,a,o,c,l,h,u,d=1){this.withReasons=t,this.context=e,this.key=n,this.samplingRatio=d,this.kind="feature",this.creationDate=Date.now(),this.value=i,this.default=s,void 0!==r&&(this.version=r),void 0!==a&&(this.variation=a),void 0!==o&&(this.trackEvents=o),void 0!==c&&(this.prereqOf=c),void 0!==l&&(this.reason=l),void 0!==h&&(this.debugEventsUntilDate=h),void 0!==u&&(this.excludeFromSummaries=u)}}class pt{constructor(t,e=1){this.context=t,this.samplingRatio=e,this.kind="identify",this.creationDate=Date.now()}}var mt,vt=Object.freeze({__proto__:null,ClientMessages:at,DiagnosticsManager:class{constructor(t,e,n){this.platform=e,this.diagnosticInitConfig=n,this.streamInits=[],this.startTime=Date.now(),this.dataSinceDate=this.startTime,this.id={diagnosticId:e.crypto.randomUUID(),sdkKeySuffix:t.length>6?t.substring(t.length-6):t}}createInitEvent(){const t=this.platform.info.sdkData(),e=this.platform.info.platformData();return{kind:"diagnostic-init",id:this.id,creationDate:this.startTime,sdk:t,configuration:this.diagnosticInitConfig,platform:{name:e.name,osArch:e.os?.arch,osName:e.os?.name,osVersion:e.os?.version,...e.additional||{}}}}recordStreamInit(t,e,n){const i={timestamp:t,failed:e,durationMillis:n};this.streamInits.push(i)}createStatsEventAndReset(t,e,n){const i=Date.now(),s={kind:"diagnostic",id:this.id,creationDate:i,dataSinceDate:this.dataSinceDate,droppedEvents:t,deduplicatedUsers:e,eventsInLastBatch:n,streamInits:this.streamInits};return this.streamInits=[],this.dataSinceDate=i,s}},ErrorKinds:rt,EventFactoryBase:class{constructor(t){this.withReasons=t}evalEvent(t){return new ft(this.withReasons,t.context,t.flagKey,t.value,t.defaultVal,t.version,t.variation??void 0,t.trackEvents||t.addExperimentData,t.prereqOfFlagKey,this.withReasons||t.addExperimentData?t.reason:void 0,t.debugEventsUntilDate,t.excludeFromSummaries,t.samplingRatio)}unknownFlagEvent(t,e,n){return new ft(this.withReasons,n,t,e,e,void 0,void 0,void 0,void 0,void 0,void 0,void 0,void 0)}identifyEvent(t){return new pt(t,1)}customEvent(t,e,n,i,s=1){return new gt(e,t,n??void 0,i??void 0,s)}},EventProcessor:class{constructor(t,n,i,s,r,a=!0){this.config=t,this.contextDeduplicator=s,this.diagnosticsManager=r,this.summarizer=new ht,this.queue=[],this.lastKnownPastTime=0,this.droppedEvents=0,this.deduplicatedUsers=0,this.exceededCapacity=!1,this.eventsInLastBatch=0,this.shutdown=!1,this.flushUsersTimer=null,this.capacity=t.eventsCapacity,this.logger=n.basicConfiguration.logger,this.eventSender=new ot(n,i),this.contextFilter=new w(t.allAttributesPrivate,t.privateAttributes.map((t=>new e(t)))),a&&this.start()}start(){if(void 0!==this.contextDeduplicator?.flushInterval&&(this.flushUsersTimer=setInterval((()=>{this.contextDeduplicator?.flush()}),1e3*this.contextDeduplicator.flushInterval)),this.flushTimer=setInterval((async()=>{try{await this.flush()}catch(t){this.logger?.debug(`Flush failed: ${t}`)}}),1e3*this.config.flushInterval),this.diagnosticsManager){const t=this.diagnosticsManager.createInitEvent();this.postDiagnosticEvent(t),this.diagnosticsTimer=setInterval((()=>{const t=this.diagnosticsManager.createStatsEventAndReset(this.droppedEvents,this.deduplicatedUsers,this.eventsInLastBatch);this.droppedEvents=0,this.deduplicatedUsers=0,this.postDiagnosticEvent(t)}),1e3*this.config.diagnosticRecordingInterval)}this.logger?.debug("Started EventProcessor.")}postDiagnosticEvent(t){this.eventSender.sendEventData(b.DiagnosticEvent,t)}close(){clearInterval(this.flushTimer),this.flushUsersTimer&&clearInterval(this.flushUsersTimer),this.diagnosticsTimer&&clearInterval(this.diagnosticsTimer)}async flush(){if(this.shutdown)throw new ut("Events cannot be posted because a permanent error has been encountered. This is most likely an invalid SDK key. The specific error information is logged independently.");const t=this.queue;this.queue=[];const e=this.summarizer.getSummary();this.summarizer.clearSummary(),Object.keys(e.features).length&&t.push(e),t.length&&(this.eventsInLastBatch=t.length,this.logger?.debug("Flushing %d events",t.length),await this.tryPostingEvents(t))}sendEvent(t){if(this.shutdown)return;if("migration_op"===t.kind){if(dt(t.samplingRatio)){const e={...t};1===e.samplingRatio&&delete e.samplingRatio,this.enqueue(e)}return}this.summarizer.summarizeEvent(t);const e=ct(t),n=e&&t.trackEvents||!e,i=this.shouldDebugEvent(t),s=function(t){return"identify"===t.kind}(t),r=this.contextDeduplicator?.processContext(t.context);r||s||(this.deduplicatedUsers+=1);r&&!s&&this.enqueue(this.makeOutputEvent({kind:"index",creationDate:t.creationDate,context:t.context,samplingRatio:1},!1)),n&&dt(t.samplingRatio)&&this.enqueue(this.makeOutputEvent(t,!1)),i&&dt(t.samplingRatio)&&this.enqueue(this.makeOutputEvent(t,!0))}makeOutputEvent(t,e){switch(t.kind){case"feature":{const n={kind:e?"debug":"feature",creationDate:t.creationDate,context:this.contextFilter.filter(t.context,!e),key:t.key,value:t.value,default:t.default};return 1!==t.samplingRatio&&(n.samplingRatio=t.samplingRatio),t.prereqOf&&(n.prereqOf=t.prereqOf),void 0!==t.variation&&(n.variation=t.variation),void 0!==t.version&&(n.version=t.version),t.reason&&(n.reason=t.reason),n}case"index":case"identify":{const e={kind:t.kind,creationDate:t.creationDate,context:this.contextFilter.filter(t.context)};return 1!==t.samplingRatio&&(e.samplingRatio=t.samplingRatio),e}case"custom":{const e={kind:"custom",creationDate:t.creationDate,key:t.key,contextKeys:t.context.kindsAndKeys};return 1!==t.samplingRatio&&(e.samplingRatio=t.samplingRatio),void 0!==t.data&&(e.data=t.data),void 0!==t.metricValue&&(e.metricValue=t.metricValue),void 0!==t.url&&(e.url=t.url),e}case"click":return{kind:"click",creationDate:t.creationDate,contextKeys:t.context.kindsAndKeys,key:t.key,url:t.url,selector:t.selector};case"pageview":return{kind:"pageview",creationDate:t.creationDate,contextKeys:t.context.kindsAndKeys,key:t.key,url:t.url};default:return t}}enqueue(t){this.queue.length<this.capacity?(this.queue.push(t),this.exceededCapacity=!1):(this.exceededCapacity||(this.exceededCapacity=!0,this.logger?.warn("Exceeded event queue capacity. Increase capacity to avoid dropping events.")),this.droppedEvents+=1)}shouldDebugEvent(t){return ct(t)&&t.debugEventsUntilDate&&t.debugEventsUntilDate>this.lastKnownPastTime&&t.debugEventsUntilDate>Date.now()}async tryPostingEvents(t){const e=await this.eventSender.sendEventData(b.AnalyticsEvents,t);if(e.status===S.FailedAndMustShutDown&&(this.shutdown=!0),e.serverTime&&(this.lastKnownPastTime=e.serverTime),e.error)throw e.error}},InputCustomEvent:gt,InputEvalEvent:ft,InputIdentifyEvent:pt,NullEventProcessor:class{close(){}async flush(){}sendEvent(){}},StreamingProcessor:class{constructor(t,e,n,i,s,r,a,o=1){this.listeners=i,this.diagnosticsManager=r,this.errorHandler=a,this.streamInitialReconnectDelay=o;const{basicConfiguration:c,platform:l}=t,{logger:h}=c,{requests:u}=l;this.headers={...s},this.logger=h,this.requests=u,this.streamUri=_(c.serviceEndpoints,e,n)}logConnectionStarted(){this.connectionAttemptStartTime=Date.now()}logConnectionResult(t){this.connectionAttemptStartTime&&this.diagnosticsManager&&this.diagnosticsManager.recordStreamInit(this.connectionAttemptStartTime,!t,Date.now()-this.connectionAttemptStartTime),this.connectionAttemptStartTime=void 0}retryAndHandleError(t){return nt(t)?(this.logger?.warn(et(t,"streaming request","will retry")),this.logConnectionResult(!1),this.logConnectionStarted(),!0):(this.logConnectionResult(!1),this.errorHandler?.(new D(k.ErrorResponse,t.message,t.status)),this.logger?.error(et(t,"streaming request")),!1)}start(){this.logConnectionStarted();const t=this.requests.createEventSource(this.streamUri,{headers:this.headers,errorFilter:t=>this.retryAndHandleError(t),initialRetryDelayMillis:1e3*this.streamInitialReconnectDelay,readTimeoutMillis:3e5,retryResetIntervalMillis:6e4});this.eventSource=t,t.onclose=()=>{this.logger?.info("Closed LaunchDarkly stream connection")},t.onerror=()=>{},t.onopen=()=>{this.logger?.info("Opened LaunchDarkly stream connection")},t.onretrying=t=>{this.logger?.info(`Will retry stream connection in ${t.delayMillis} milliseconds`)},this.listeners.forEach((({deserializeData:e,processJson:n},i)=>{t.addEventListener(i,(t=>{if(this.logger?.debug(`Received ${i} event`),t?.data){this.logConnectionResult(!0);const{data:s}=t,r=e(s);if(!r)return void((t,e,n,i)=>{n?.error(`Stream received invalid data in "${t}" message`),n?.debug(`Invalid JSON follows: ${e}`),i?.(new D(k.InvalidData,"Malformed JSON data in event stream"))})(i,s,this.logger,this.errorHandler);n(r)}else this.errorHandler?.(new D(k.Unknown,"Unexpected payload from event stream"))}))}))}stop(){this.eventSource?.close(),this.eventSource=void 0}close(){this.stop()}},isLegacyUser:h,isMultiKind:l,isSingleKind:c,shouldSample:dt});!function(t){t.Initializing="INITIALIZING",t.Valid="VALID",t.Interrupted="INTERRUPTED",t.SetOffline="SET_OFFLINE",t.Closed="CLOSED"}(mt||(mt={}));const yt={logger:o.Object,maxCachedContexts:o.numberWithMin(0),baseUri:o.String,streamUri:o.String,eventsUri:o.String,capacity:o.numberWithMin(1),diagnosticRecordingInterval:o.numberWithMin(2),flushInterval:o.numberWithMin(2),streamInitialReconnectDelay:o.numberWithMin(0),allAttributesPrivate:o.Boolean,debug:o.Boolean,diagnosticOptOut:o.Boolean,withReasons:o.Boolean,sendEvents:o.Boolean,pollInterval:o.numberWithMin(30),useReport:o.Boolean,privateAttributes:o.StringArray,applicationInfo:o.Object,wrapperName:o.String,wrapperVersion:o.String,payloadFilterKey:o.stringMatchingRegex(/^[a-zA-Z0-9](\w|\.|-)*$/),hooks:o.createTypeArray("Hook[]",{})},wt="https://clientsdk.launchdarkly.com",kt="https://clientstream.launchdarkly.com";class Et{constructor(t={},e={}){var n;this.logger=P(),this.baseUri=wt,this.eventsUri=q.DEFAULT_EVENTS,this.streamUri=kt,this.maxCachedContexts=5,this.capacity=100,this.diagnosticRecordingInterval=900,this.flushInterval=30,this.streamInitialReconnectDelay=1,this.allAttributesPrivate=!1,this.debug=!1,this.diagnosticOptOut=!1,this.sendEvents=!0,this.sendLDHeaders=!0,this.useReport=!1,this.withReasons=!1,this.privateAttributes=[],this.pollInterval=300,this.hooks=[],this.logger=(n=t.logger)instanceof $?n:P(n);this.validateTypesAndNames(t).forEach((t=>this.logger.warn(t))),this.serviceEndpoints=new q(this.streamUri,this.baseUri,this.eventsUri,e.analyticsEventPath,e.diagnosticEventPath,e.includeAuthorizationHeader,t.payloadFilterKey),this.useReport=t.useReport??!1,this.tags=new L({application:this.applicationInfo,logger:this.logger}),this.userAgentHeaderName=e.userAgentHeaderName??"user-agent",this.trackEventModifier=e.trackEventModifier??(t=>t)}validateTypesAndNames(t){const e=[];return Object.entries(t).forEach((([t,n])=>{const i=yt[t];if(i)if(i.is(n))"logger"===t||(this[t]=n??void 0);else{const r=i.getType();if("boolean"===r)e.push(N.wrongOptionTypeBoolean(t,typeof n)),this[t]=!!n;else if("boolean | undefined | null"===r)e.push(N.wrongOptionTypeBoolean(t,typeof n)),"boolean"!=typeof n&&null!=n&&(this[t]=!!n);else if(i instanceof s&&o.Number.is(n)){const{min:s}=i;e.push(N.optionBelowMinimum(t,n,s)),this[t]=s}else e.push(N.wrongOptionType(t,i.getType(),typeof n))}else e.push(N.unknownOption(t))})),e}}async function bt(t,e){if(t.digest)return t.digest(e);if(t.asyncDigest)return t.asyncDigest(e);throw new Error("Platform must implement digest or asyncDigest")}const St=async(t,{crypto:e,storage:n})=>{let i=await(n?.get(t));return i||(i=e.randomUUID(),await(n?.set(t,i))),i};function xt(t){return async e=>bt(t.createHash("sha256").update(e),"base64")}const Dt=async t=>t;async function Ct(t){return(await Promise.all(t.map((t=>t.transform(t.value))))).join("_")}async function Rt(t,e,n){return Ct([{value:e,transform:Dt},{value:n.canonicalKey,transform:xt(t)}])}const{isLegacyUser:It,isSingleKind:Mt,isMultiKind:Ot}=vt,Tt=async t=>{const{ld_device:e,os:n}=t.info.platformData(),i=X(e)??{},s=n?.name||i.os?.name,r=n?.version||i.os?.version,a=i.os?.family;if((s||r||a)&&(i.os={...s?{name:s}:{},...r?{version:r}:{},...a?{family:a}:{}}),Object.keys(i).filter((t=>"key"!==t&&"envAttributesVersion"!==t)).length){const e=await async function(t){return Ct([{value:"LaunchDarkly",transform:Dt},{value:"ContextKeys",transform:Dt},{value:t,transform:Dt}])}("ld_device");return i.key=await St(e,t),i.envAttributesVersion=i.envAttributesVersion||"1.0",i}},At=async(t,e,n)=>{if(It(t))return t;let i,s;if(Mt(t)&&"ld_application"!==t.kind||Ot(t)&&!t.ld_application?i=await(async({crypto:t,info:e},{applicationInfo:n})=>{const{ld_application:i}=e.platformData();let s=X(i)??{};const r=n?.id||s?.id;if(r){const e=n?.version||s?.version,i=n?.name||s?.name,a=n?.versionName||s?.versionName;return s={...s,id:r,...e?{version:e}:{},...i?{name:i}:{},...a?{versionName:a}:{}},s.key=await bt(t.createHash("sha256").update(r),"base64"),s.envAttributesVersion=s.envAttributesVersion||"1.0",s}})(e,n):n.logger.warn("Not adding ld_application environment attributes because it already exists."),Mt(t)&&"ld_device"!==t.kind||Ot(t)&&!t.ld_device?s=await Tt(e):n.logger.warn("Not adding ld_device environment attributes because it already exists."),i||s){return{...Mt(t)?(t=>{const{kind:e,...n}=t;return{kind:"multi",[e]:n}})(t):t,...i?{ld_application:i}:{},...s?{ld_device:s}:{}}}return t},{isLegacyUser:$t,isMultiKind:Pt,isSingleKind:Nt}=vt,Ut=async(t,e,n)=>{const{anonymous:i,key:s}=e;if(i&&!s){const i=await async function(t){return Ct([{value:"LaunchDarkly",transform:Dt},{value:"AnonymousKeys",transform:Dt},{value:t,transform:Dt}])}(t);e.key=await St(i,n)}},Ft=async(t,e)=>{const n=Z(t);return Nt(n)&&await(async(t,e)=>{await Ut(t.kind,t,e)})(n,e),Pt(n)&&await(async(t,e)=>{const{kind:n,...i}=t;return Promise.all(Object.entries(i).map((([t,n])=>Ut(t,n,e))))})(n,e),$t(n)&&await(async(t,e)=>{await Ut("user",t,e)})(n,e),n},Lt=(t,e,n)=>{if(e.sendEvents&&!e.diagnosticOptOut)return new vt.DiagnosticsManager(t,n,(t=>({customBaseURI:t.serviceEndpoints.polling!==wt,customStreamURI:t.serviceEndpoints.streaming!==kt,customEventsURI:t.serviceEndpoints.events!==q.DEFAULT_EVENTS,eventsCapacity:t.capacity,eventsFlushIntervalMillis:Q(t.flushInterval),reconnectTimeMillis:Q(t.streamInitialReconnectDelay),diagnosticRecordingIntervalMillis:Q(t.diagnosticRecordingInterval),allAttributesPrivate:t.allAttributesPrivate,usingSecureMode:!1,bootstrapMode:!1}))(e))};function jt(t,e){return{value:e??null,variationIndex:null,reason:{kind:"ERROR",errorKind:t}}}class Kt extends vt.EventFactoryBase{evalEventClient(t,e,n,i,s,r){const{trackEvents:a,debugEventsUntilDate:o,trackReason:c,flagVersion:l,version:h,variation:u}=i;return super.evalEvent({addExperimentData:c,context:s,debugEventsUntilDate:o,defaultVal:n,flagKey:t,reason:r,trackEvents:!!a,value:e,variation:u,version:l??h})}}class Ht{constructor(){this.container={index:new Array}}static fromJson(t){const e=new Ht;try{e.container=JSON.parse(t)}catch(t){}return e}toJson(){return JSON.stringify(this.container)}notice(t,e){const n=this.container.index.find((e=>e.id===t));void 0===n?this.container.index.push({id:t,timestamp:e}):n.timestamp=e}prune(t){const e=Math.max(t,0);return this.container.index.length>e?(this.container.index.sort(((t,e)=>t.timestamp-e.timestamp)),this.container.index.splice(0,this.container.index.length-e)):[]}}class qt{constructor(t,e,n,i,s,r,a=()=>Date.now()){this.platform=t,this.environmentNamespace=e,this.maxCachedContexts=n,this.flagStore=i,this.flagUpdater=s,this.logger=r,this.timeStamper=a,this.indexKeyPromise=async function(t){return Ct([{value:t,transform:Dt},{value:"ContextIndex",transform:Dt}])}(this.environmentNamespace)}async init(t,e){this.flagUpdater.init(t,e),await this.storeCache(t)}async upsert(t,e,n){return!!this.flagUpdater.upsert(t,e,n)&&(await this.storeCache(t),!0)}async loadCached(t){const e=await Rt(this.platform.crypto,this.environmentNamespace,t);let n=await(this.platform.storage?.get(e));if(null==n){if(n=await(this.platform.storage?.get(t.canonicalKey)),null==n)return!1;await(this.platform.storage?.set(e,n)),await(this.platform.storage?.clear(t.canonicalKey))}try{const e=JSON.parse(n),i=Object.entries(e).reduce(((t,[e,n])=>(t[e]={version:n.version,flag:n},t)),{});return this.flagUpdater.initCached(t,i),this.logger.debug("Loaded cached flag evaluations from persistent storage"),!0}catch(t){return this.logger.warn(`Could not load cached flag evaluations from persistent storage: ${t.message}`),!1}}async loadIndex(){if(void 0!==this.contextIndex)return this.contextIndex;const t=await(this.platform.storage?.get(await this.indexKeyPromise));if(!t)return this.contextIndex=new Ht,this.contextIndex;try{this.contextIndex=Ht.fromJson(t),this.logger.debug("Loaded context index from persistent storage")}catch(t){this.logger.warn(`Could not load index from persistent storage: ${t.message}`),this.contextIndex=new Ht}return this.contextIndex}async storeCache(t){const e=await this.loadIndex(),n=await Rt(this.platform.crypto,this.environmentNamespace,t);e.notice(n,this.timeStamper());const i=e.prune(this.maxCachedContexts);await Promise.all(i.map((async t=>this.platform.storage?.clear(t.id)))),await(this.platform.storage?.set(await this.indexKeyPromise,e.toJson()));const s=this.flagStore.getAll(),r=Object.entries(s).reduce(((t,[e,n])=>(null!==n.flag&&void 0!==n.flag&&(t[e]=n.flag),t)),{}),a=JSON.stringify(r);await(this.platform.storage?.set(n,a))}}class Vt{constructor(){this.flags={}}init(t){this.flags=Object.entries(t).reduce(((t,[e,n])=>(t[e]=n,t)),{})}insertOrUpdate(t,e){this.flags[t]=e}get(t){if(Object.prototype.hasOwnProperty.call(this.flags,t))return this.flags[t]}getAll(){return this.flags}}function _t(t,e){const n=[];return Object.entries(t).forEach((([t,i])=>{const s=e[t];s&&tt(i,s)||n.push(t)})),Object.keys(e).forEach((e=>{t[e]||n.push(e)})),n}class Jt{constructor(t,e){this.changeCallbacks=new Array,this.flagStore=t,this.logger=e}init(t,e){this.activeContextKey=t.canonicalKey;const n=this.flagStore.getAll();this.flagStore.init(e);const i=_t(n,e);i.length>0&&this.changeCallbacks.forEach((e=>{try{e(t,i)}catch(t){}}))}initCached(t,e){this.activeContextKey!==t.canonicalKey&&this.init(t,e)}upsert(t,e,n){if(this.activeContextKey!==t.canonicalKey)return this.logger.warn("Received an update for an inactive context."),!1;const i=this.flagStore.get(e);return!(void 0!==i&&i.version>=n.version)&&(this.flagStore.insertOrUpdate(e,n),this.changeCallbacks.forEach((n=>{try{n(t,[e])}catch(t){}})),!0)}on(t){this.changeCallbacks.push(t)}off(t){const e=this.changeCallbacks.indexOf(t);e>-1&&this.changeCallbacks.splice(e,1)}}class Bt{constructor(t,e,n,i,s=()=>Date.now()){this.timeStamper=s,this.flagStore=new Vt,this.flagUpdater=new Jt(this.flagStore,i),this.flagPersistencePromise=this.initPersistence(t,e,n,i,s)}async initPersistence(t,e,n,i,s=()=>Date.now()){const r=await async function(t,e){return Ct([{value:"LaunchDarkly",transform:Dt},{value:e,transform:xt(t)}])}(t.crypto,e);return new qt(t,r,n,this.flagStore,this.flagUpdater,i,s)}get(t){return this.flagStore.get(t)}getAll(){return this.flagStore.getAll()}setBootstrap(t,e){this.flagUpdater.init(t,e)}async init(t,e){return(await this.flagPersistencePromise).init(t,e)}async upsert(t,e,n){return(await this.flagPersistencePromise).upsert(t,e,n)}async loadCached(t){return(await this.flagPersistencePromise).loadCached(t)}on(t){this.flagUpdater.on(t)}off(t){this.flagUpdater.off(t)}}const zt="unknown hook",Wt="beforeEvaluation",Gt="afterEvaluation";function Yt(t,e,n,i,s){try{return i()}catch(i){return t?.error(`An error was encountered in "${e}" of the "${n}" hook: ${i}`),s}}function Zt(t,e){try{return e.getMetadata().name||zt}catch{return t.error("Exception thrown getting metadata for hook. Unable to get hook name."),zt}}class Qt{constructor(t,e){this.logger=t,this.hooks=[],this.hooks.push(...e)}withEvaluation(t,e,n,i){if(0===this.hooks.length)return i();const s=[...this.hooks],r={flagKey:t,context:e,defaultValue:n},a=function(t,e,n){return e.map((e=>Yt(t,Wt,Zt(t,e),(()=>e?.beforeEvaluation?.(n,{})??{}),{})))}(this.logger,s,r),o=i();return function(t,e,n,i,s){for(let r=e.length-1;r>=0;r-=1){const a=e[r],o=i[r];Yt(t,Gt,Zt(t,a),(()=>a?.afterEvaluation?.(n,o,s)??{}),{})}}(this.logger,s,r,a,o),o}identify(t,e){const n=[...this.hooks],i={context:t,timeout:e},s=function(t,e,n){return e.map((e=>Yt(t,Wt,Zt(t,e),(()=>e?.beforeIdentify?.(n,{})??{}),{})))}(this.logger,n,i);return t=>{!function(t,e,n,i,s){for(let r=e.length-1;r>=0;r-=1){const a=e[r],o=i[r];Yt(t,Gt,Zt(t,a),(()=>a?.afterIdentify?.(n,o,s)??{}),{})}}(this.logger,n,i,s,t)}}addHook(t){this.hooks.push(t)}}class Xt{constructor(t){this.logger=t,this.listeners=new Map}on(t,e){this.listeners.has(t)?this.listeners.get(t)?.push(e):this.listeners.set(t,[e])}off(t,e){const n=this.listeners.get(t);if(n)if(e){const i=n.filter((t=>t!==e));0===i.length?this.listeners.delete(t):this.listeners.set(t,i)}else this.listeners.delete(t)}invokeListener(t,e,...n){try{t(...n)}catch(t){this.logger?.error(`Encountered error invoking handler for "${e}", detail: "${t}"`)}}emit(t,...e){const n=this.listeners.get(t);n?.forEach((n=>this.invokeListener(n,t,...e)))}eventNames(){return[...this.listeners.keys()]}listenerCount(t){return this.listeners.get(t)?.length??0}}const{ClientMessages:te,ErrorKinds:ee}=vt;class ne{constructor(t,e,n,i,s,r){if(this.sdkKey=t,this.autoEnvAttributes=e,this.platform=n,this.identifyTimeout=5,this.highTimeoutThreshold=15,this.eventFactoryDefault=new Kt(!1),this.eventFactoryWithReasons=new Kt(!0),this.eventSendingEnabled=!1,!t)throw new Error("You must configure the client with a client-side SDK key");if(!n.encoding)throw new Error("Platform must implement Encoding because btoa is required.");this.config=new Et(i,r),this.logger=this.config.logger,this.baseHeaders=function(t,e,n,i=!0,s="user-agent"){const{userAgentBase:r,version:a,wrapperName:o,wrapperVersion:c}=e.sdkData(),l={[s]:`${r??"NodeJSClient"}/${a}`};return i&&(l.authorization=t),o&&(l["x-launchdarkly-wrapper"]=c?`${o}/${c}`:o),n?.value&&(l["x-launchdarkly-tags"]=n.value),l}(this.sdkKey,this.platform.info,this.config.tags,this.config.serviceEndpoints.includeAuthorizationHeader,this.config.userAgentHeaderName),this.flagManager=new Bt(this.platform,t,this.config.maxCachedContexts,this.config.logger),this.diagnosticsManager=Lt(t,this.config,n),this.eventProcessor=((t,e,n,i,s)=>{if(e.sendEvents)return new vt.EventProcessor({...e,eventsCapacity:e.capacity},new j(t,e,n),i,void 0,s,!1)})(t,this.config,n,this.baseHeaders,this.diagnosticsManager),this.emitter=new Xt,this.emitter.on("error",((t,e)=>{this.logger.error(`error: ${e}, context: ${JSON.stringify(t)}`)})),this.flagManager.on(((t,e)=>{const n=m.toLDContext(t);this.emitter.emit("change",n,e),e.forEach((t=>{this.emitter.emit(`change:${t}`,n)}))})),this.dataManager=s(this.flagManager,this.config,this.baseHeaders,this.emitter,this.diagnosticsManager),this.hookRunner=new Qt(this.logger,this.config.hooks)}allFlags(){return Object.entries(this.flagManager.getAll()).reduce(((t,[e,n])=>(null===n.flag||void 0===n.flag||n.flag.deleted||(t[e]=n.flag.value),t)),{})}async close(){await this.flush(),this.eventProcessor?.close(),this.updateProcessor?.close(),this.logger.debug("Closed event processor and data source.")}async flush(){try{await(this.eventProcessor?.flush()),this.logger.debug("Successfully flushed event processor.")}catch(t){return this.logger.error(`Error flushing event processor: ${t}.`),{error:t,result:!1}}return{result:!0}}getContext(){return this.uncheckedContext?Z(this.uncheckedContext):void 0}getInternalContext(){return this.checkedContext}createIdentifyPromise(t){let e,n;const i=new Promise(((t,i)=>{e=t,n=i})),s=(r=t,a="identify",new Promise(((t,e)=>{setTimeout((()=>{e(new G(`${a} timed out after ${r} seconds.`))}),1e3*r)})));var r,a;return{identifyPromise:Promise.race([s,i]).catch((t=>{throw t.message.includes("timed out")&&this.logger.error(`identify error: ${t}`),t})),identifyResolve:e,identifyReject:n}}async identify(t,e){e?.timeout&&(this.identifyTimeout=e.timeout),this.identifyTimeout>this.highTimeoutThreshold&&this.logger.warn(`The identify function was called with a timeout greater than ${this.highTimeoutThreshold} seconds. We recommend a timeout of less than ${this.highTimeoutThreshold} seconds.`);let n=await Ft(t,this.platform);this.autoEnvAttributes===E.Enabled&&(n=await At(n,this.platform,this.config));const i=m.fromLDContext(n);if(!i.valid){const t=new Error("Context was unspecified or had no key");return this.emitter.emit("error",n,t),Promise.reject(t)}this.uncheckedContext=n,this.checkedContext=i,this.eventProcessor?.sendEvent(this.eventFactoryDefault.identifyEvent(this.checkedContext));const{identifyPromise:s,identifyResolve:r,identifyReject:a}=this.createIdentifyPromise(this.identifyTimeout);this.logger.debug(`Identifying ${JSON.stringify(this.checkedContext)}`);const o=this.hookRunner.identify(n,e?.timeout);return await this.dataManager.identify(r,a,i,e),s.then((t=>(o({status:"completed"}),t)),(t=>{throw o({status:"error"}),t}))}on(t,e){this.emitter.on(t,e)}off(t,e){this.emitter.off(t,e)}track(t,e,n){this.checkedContext&&this.checkedContext.valid?(void 0===n||o.Number.is(n)||this.logger?.warn(te.invalidMetricValue(typeof n)),this.eventProcessor?.sendEvent(this.config.trackEventModifier(this.eventFactoryDefault.customEvent(t,this.checkedContext,e,n)))):this.logger.warn(te.missingContextKeyNoEvent)}variationInternal(t,e,n,i){if(!this.uncheckedContext)return this.logger.debug(te.missingContextKeyNoEvent),jt(ee.UserNotSpecified,e);const s=m.fromLDContext(this.uncheckedContext),r=this.flagManager.get(t);if(void 0===r||r.flag.deleted){const n=e??null,i=new W(`Unknown feature flag "${t}"; returning default value ${n}.`);return this.emitter.emit("error",this.uncheckedContext,i),this.eventProcessor?.sendEvent(this.eventFactoryDefault.unknownFlagEvent(t,n,s)),jt(ee.FlagNotFound,e)}const{reason:a,value:o,variation:c}=r.flag;if(i){const[c,l]=i(o);if(!c){this.eventProcessor?.sendEvent(n.evalEventClient(t,e,e,r.flag,s,a));const i=new W(`Wrong type "${l}" for feature flag "${t}"; returning default value`);return this.emitter.emit("error",this.uncheckedContext,i),jt(ee.WrongType,e)}}const l=function(t,e,n){return{value:t,variationIndex:e??null,reason:n??null}}(o,c,a);return null==o&&(this.logger.debug("Result value is null. Providing default value."),l.value=e),this.eventProcessor?.sendEvent(n.evalEventClient(t,o,e,r.flag,s,a)),l}variation(t,e){const{value:n}=this.hookRunner.withEvaluation(t,this.uncheckedContext,e,(()=>this.variationInternal(t,e,this.eventFactoryDefault)));return n}variationDetail(t,e){return this.hookRunner.withEvaluation(t,this.uncheckedContext,e,(()=>this.variationInternal(t,e,this.eventFactoryWithReasons)))}typedEval(t,e,n,i){return this.hookRunner.withEvaluation(t,this.uncheckedContext,e,(()=>this.variationInternal(t,e,n,i)))}boolVariation(t,e){return this.typedEval(t,e,this.eventFactoryDefault,(t=>[o.Boolean.is(t),o.Boolean.getType()])).value}jsonVariation(t,e){return this.variation(t,e)}numberVariation(t,e){return this.typedEval(t,e,this.eventFactoryDefault,(t=>[o.Number.is(t),o.Number.getType()])).value}stringVariation(t,e){return this.typedEval(t,e,this.eventFactoryDefault,(t=>[o.String.is(t),o.String.getType()])).value}boolVariationDetail(t,e){return this.typedEval(t,e,this.eventFactoryWithReasons,(t=>[o.Boolean.is(t),o.Boolean.getType()]))}numberVariationDetail(t,e){return this.typedEval(t,e,this.eventFactoryWithReasons,(t=>[o.Number.is(t),o.Number.getType()]))}stringVariationDetail(t,e){return this.typedEval(t,e,this.eventFactoryWithReasons,(t=>[o.String.is(t),o.String.getType()]))}jsonVariationDetail(t,e){return this.variationDetail(t,e)}addHook(t){this.hookRunner.addHook(t)}setEventSendingEnabled(t,e){this.eventSendingEnabled!==t&&(this.eventSendingEnabled=t,t?(this.logger.debug("Starting event processor"),this.eventProcessor?.start()):e?(this.logger?.debug("Flushing event processor before disabling."),this.flush().then((()=>{this.eventSendingEnabled||(this.logger?.debug("Stopping event processor."),this.eventProcessor?.close())}))):(this.logger?.debug("Stopping event processor."),this.eventProcessor?.close()))}sendEvent(t){this.eventProcessor?.sendEvent(t)}}class ie extends Error{constructor(t,e){super(t),this.status=e,this.name="LaunchDarklyRequestError"}}class se{constructor(t,e,n,i,s){this.requests=t,this.uri=e,this.headers=n,this.method=i,this.body=s}async requestPayload(){let t;try{const e=await this.requests.fetch(this.uri,{method:this.method,headers:this.headers,body:this.body});if(function(t){return t>=200&&t<=299}(e.status))return await e.text();t=e.status}catch(t){throw new ie(t?.message)}throw new ie(`Unexpected status code: ${t}`,t)}}class re{constructor(t,e,n){this.flagManager=t,this.statusManager=e,this.logger=n}async handlePut(t,e){this.logger.debug(`Got PUT: ${Object.keys(e)}`);const n=Object.entries(e).reduce(((t,[e,n])=>(t[e]={version:n.version,flag:n},t)),{});await this.flagManager.init(t,n),this.statusManager.requestStateUpdate(mt.Valid)}async handlePatch(t,e){this.logger.debug(`Got PATCH ${JSON.stringify(e,null,2)}`),this.flagManager.upsert(t,e.key,{version:e.version,flag:e})}async handleDelete(t,e){this.logger.debug(`Got DELETE ${JSON.stringify(e,null,2)}`),this.flagManager.upsert(t,e.key,{version:e.version,flag:{...e,deleted:!0,flagVersion:0,value:void 0,variation:0,trackEvents:!1}})}handleStreamingError(t){this.statusManager.reportError(t.kind,t.message,t.code,t.recoverable)}handlePollingError(t){this.statusManager.reportError(t.kind,t.message,t.status,t.recoverable)}}class ae{constructor(t,e=()=>Date.now()){this.emitter=t,this.state=mt.Closed,this.stateSinceMillis=e(),this.timeStamper=e}get status(){return{state:this.state,stateSince:this.stateSinceMillis,lastError:this.errorInfo}}updateState(t,e=!1){const n=t===mt.Interrupted&&this.state===mt.Initializing?mt.Initializing:t,i=this.state!==n;i&&(this.state=n,this.stateSinceMillis=this.timeStamper()),(i||e)&&this.emitter.emit("dataSourceStatus",this.status)}requestStateUpdate(t){this.updateState(t)}reportError(t,e,n,i=!1){const s={kind:t,message:e,statusCode:n,time:this.timeStamper()};this.errorInfo=s,this.updateState(i?mt.Interrupted:mt.Closed,!0)}}class oe{constructor(t,e,n,i,s,r,a){this.plainContextString=t,this.dataSourceConfig=e,this.dataHandler=s,this.errorHandler=r,this.logger=a,this.stopped=!1;const o=e.useReport?e.paths.pathReport(i,t):e.paths.pathGet(i,t),c=[...e.queryParameters??[]];this.dataSourceConfig.withReasons&&c.push({key:"withReasons",value:"true"});const l=J(e.serviceEndpoints,o,c);this.pollInterval=e.pollInterval;let h="GET";const u={...e.baseHeaders};let d;e.useReport&&(h="REPORT",u["content-type"]="application/json",d=t),this.requestor=new se(n,l,u,h,d)}async poll(){if(this.stopped)return;const t=t=>{this.logger?.error("Polling received invalid data"),this.logger?.debug(`Invalid JSON follows: ${t}`),this.errorHandler?.(new x(k.InvalidData,"Malformed JSON data in polling response"))};this.logger?.debug("Polling LaunchDarkly for feature flag updates");const e=Date.now();try{const e=await this.requestor.requestPayload();try{const t=JSON.parse(e);try{this.dataHandler?.(t)}catch(t){this.logger?.error(`Exception from data handler: ${t}`)}}catch{t(e)}}catch(t){const e=t;if(void 0!==e.status&&!Y(e.status))return this.logger?.error(et(t,"polling request")),void this.errorHandler?.(new x(k.ErrorResponse,e.message,e.status));this.logger?.error(et(t,"polling request","will retry"))}const n=Date.now()-e,i=Math.max(1e3*this.pollInterval-n,0);this.logger?.debug("Elapsed: %d ms, sleeping for %d ms",n,i),this.timeoutHandle=setTimeout((()=>{this.poll()}),i)}start(){this.poll()}stop(){this.timeoutHandle&&(clearTimeout(this.timeoutHandle),this.timeoutHandle=void 0),this.stopped=!0}close(){this.stop()}}class ce{constructor(t,e,n,i,s,r,a,o){this.plainContextString=t,this.dataSourceConfig=e,this.listeners=n,this.requests=i,this.diagnosticsManager=r,this.errorHandler=a,this.logger=o,e.useReport&&!i.getEventSourceCapabilities().customMethod&&o?.error("Configuration option useReport is true, but platform's EventSource does not support custom HTTP methods. Streaming may not work.");const c=e.useReport?e.paths.pathReport(s,t):e.paths.pathGet(s,t),l=[...e.queryParameters??[]];this.dataSourceConfig.withReasons&&l.push({key:"withReasons",value:"true"}),this.requests=i,this.headers={...e.baseHeaders},this.logger=o,this.streamUri=_(e.serviceEndpoints,c,l)}logConnectionStarted(){this.connectionAttemptStartTime=Date.now()}logConnectionResult(t){this.connectionAttemptStartTime&&this.diagnosticsManager&&this.diagnosticsManager.recordStreamInit(this.connectionAttemptStartTime,!t,Date.now()-this.connectionAttemptStartTime),this.connectionAttemptStartTime=void 0}retryAndHandleError(t){return nt(t)?(this.logger?.warn(et(t,"streaming request","will retry")),this.logConnectionResult(!1),this.logConnectionStarted(),!0):(this.logConnectionResult(!1),this.errorHandler?.(new D(k.ErrorResponse,t.message,t.status,!1)),this.logger?.error(et(t,"streaming request")),!1)}start(){let t;this.logConnectionStarted(),this.dataSourceConfig.useReport?(this.headers["content-type"]="application/json",t={method:"REPORT",body:this.plainContextString}):t={};const e=this.requests.createEventSource(this.streamUri,{headers:this.headers,...t,errorFilter:t=>this.retryAndHandleError(t),initialRetryDelayMillis:this.dataSourceConfig.initialRetryDelayMillis,readTimeoutMillis:3e5,retryResetIntervalMillis:6e4});this.eventSource=e,e.onclose=()=>{this.logger?.info("Closed LaunchDarkly stream connection")},e.onerror=()=>{},e.onopen=()=>{this.logger?.info("Opened LaunchDarkly stream connection")},e.onretrying=t=>{this.logger?.info(`Will retry stream connection in ${t.delayMillis} milliseconds`)},this.listeners.forEach((({deserializeData:t,processJson:n},i)=>{e.addEventListener(i,(e=>{if(this.logger?.debug(`Received ${i} event`),e?.data){this.logConnectionResult(!0);const{data:s}=e,r=t(s);if(!r)return void((t,e,n,i)=>{n?.error(`Stream received invalid data in "${t}" message`),n?.debug(`Invalid JSON follows: ${e}`),i?.(new D(k.InvalidData,"Malformed JSON data in event stream"))})(i,s,this.logger,this.errorHandler);n(r)}else this.errorHandler?.(new D(k.InvalidData,"Unexpected payload from event stream"))}))}))}stop(){this.eventSource?.close(),this.eventSource=void 0}close(){this.stop()}}class le{constructor(t,e,n,i,s,r,a,o,c){this.platform=t,this.flagManager=e,this.credential=n,this.config=i,this.getPollingPaths=s,this.getStreamingPaths=r,this.baseHeaders=a,this.emitter=o,this.diagnosticsManager=c,this.logger=i.logger,this.dataSourceStatusManager=new ae(o),this.dataSourceEventHandler=new re(e,this.dataSourceStatusManager,this.config.logger)}setConnectionParams(t){this.connectionParams=t}createPollingProcessor(t,e,n,i){const s=new oe(JSON.stringify(t),{credential:this.credential,serviceEndpoints:this.config.serviceEndpoints,paths:this.getPollingPaths(),baseHeaders:this.baseHeaders,pollInterval:this.config.pollInterval,withReasons:this.config.withReasons,useReport:this.config.useReport,queryParameters:this.connectionParams?.queryParameters},this.platform.requests,this.platform.encoding,(async t=>{await this.dataSourceEventHandler.handlePut(e,t),n?.()}),(e=>{this.emitter.emit("error",t,e),this.dataSourceEventHandler.handlePollingError(e),i?.(e)}));this.updateProcessor=this.decorateProcessorWithStatusReporting(s,this.dataSourceStatusManager)}createStreamingProcessor(t,e,n,i){const s=new ce(JSON.stringify(t),{credential:this.credential,serviceEndpoints:this.config.serviceEndpoints,paths:this.getStreamingPaths(),baseHeaders:this.baseHeaders,initialRetryDelayMillis:1e3*this.config.streamInitialReconnectDelay,withReasons:this.config.withReasons,useReport:this.config.useReport,queryParameters:this.connectionParams?.queryParameters},this.createStreamListeners(e,n),this.platform.requests,this.platform.encoding,this.diagnosticsManager,(e=>{this.emitter.emit("error",t,e),this.dataSourceEventHandler.handleStreamingError(e),i?.(e)}));this.updateProcessor=this.decorateProcessorWithStatusReporting(s,this.dataSourceStatusManager)}createStreamListeners(t,e){const n=new Map;return n.set("put",{deserializeData:JSON.parse,processJson:async n=>{await this.dataSourceEventHandler.handlePut(t,n),e?.()}}),n.set("patch",{deserializeData:JSON.parse,processJson:async e=>{this.dataSourceEventHandler.handlePatch(t,e)}}),n.set("delete",{deserializeData:JSON.parse,processJson:async e=>{this.dataSourceEventHandler.handleDelete(t,e)}}),n}decorateProcessorWithStatusReporting(t,e){return{start:()=>{e.requestStateUpdate(mt.Initializing),t.start()},stop:()=>{t.stop(),e.requestStateUpdate(mt.Closed)},close:()=>{t.close(),e.requestStateUpdate(mt.Closed)}}}}function he(){return void 0!==typeof document}function ue(){return void 0!==typeof window}function de(t,e,n){return he()?(document.addEventListener(t,e,n),()=>{document.removeEventListener(t,e,n)}):()=>{}}function ge(t,e,n){return he()?(window.addEventListener(t,e,n),()=>{window.removeEventListener(t,e,n)}):()=>{}}function fe(){return ue()?window.location.href:""}class pe extends le{constructor(t,e,n,i,s,r,a,o,c,l){super(t,e,n,i,r,a,o,c,l),this.browserConfig=s,this.forcedStreaming=void 0,this.automaticStreamingState=!1,this.forcedStreaming=s.streaming}debugLog(t,...e){this.logger.debug(`[BrowserDataManager] ${t}`,...e)}async identify(t,e,n,i){this.context=n;const s=i;if((null==s?void 0:s.hash)?this.setConnectionParams({queryParameters:[{key:"h",value:s.hash}]}):this.setConnectionParams(),this.secureModeHash=null==s?void 0:s.hash,null==s?void 0:s.bootstrap)this.finishIdentifyFromBootstrap(n,s.bootstrap,t);else{await this.flagManager.loadCached(n)&&this.debugLog("Identify - Flags loaded from cache. Continuing to initialize via a poll.");const i=JSON.stringify(m.toLDContext(n)),s=this.getRequestor(i);await this.finishIdentifyFromPoll(s,n,t,e)}this.updateStreamingState()}async finishIdentifyFromPoll(t,e,n,i){var s,r;try{this.dataSourceStatusManager.requestStateUpdate(mt.Initializing);const i=await t.requestPayload();try{const t=this.createStreamListeners(e,n).get("put");t.processJson(t.deserializeData(i))}catch(t){this.dataSourceStatusManager.reportError(k.InvalidData,null!==(s=t.message)&&void 0!==s?s:"Could not parse poll response")}}catch(t){this.dataSourceStatusManager.reportError(k.NetworkError,null!==(r=t.message)&&void 0!==r?r:"unexpected network error",t.status),i(t)}}finishIdentifyFromBootstrap(t,e,n){this.flagManager.setBootstrap(t,function(t,e){const n=Object.keys(e),i="$flagsState",s="$valid",r=e[i];!r&&n.length&&t.warn("LaunchDarkly client was initialized with bootstrap data that did not include flag metadata. Events may not be sent correctly."),!1===e[s]&&t.warn("LaunchDarkly bootstrap data is not available because the back end could not read the flags.");const a={};return n.forEach((t=>{if(t!==i&&t!==s){let n;n=r&&r[t]?Object.assign({value:e[t]},r[t]):{value:e[t],version:0},a[t]={version:n.version,flag:n}}})),a}(this.logger,e)),this.debugLog("Identify - Initialization completed from bootstrap"),n()}setForcedStreaming(t){this.forcedStreaming=t,this.updateStreamingState()}setAutomaticStreamingState(t){this.automaticStreamingState=t,this.updateStreamingState()}updateStreamingState(){const t=this.forcedStreaming||this.automaticStreamingState&&void 0===this.forcedStreaming;this.debugLog(`Updating streaming state. forced(${this.forcedStreaming}) automatic(${this.automaticStreamingState})`),t?this.startDataSource():this.stopDataSource()}stopDataSource(){var t;this.updateProcessor&&this.debugLog("Stopping update processor."),null===(t=this.updateProcessor)||void 0===t||t.close(),this.updateProcessor=void 0}startDataSource(){this.updateProcessor?this.debugLog("Update processor already active. Not changing state."):this.context?(this.debugLog("Starting update processor."),this.setupConnection(this.context)):this.debugLog("Context not set, not starting update processor.")}setupConnection(t,e,n){var i;const s=m.toLDContext(t);null===(i=this.updateProcessor)||void 0===i||i.close(),this.createStreamingProcessor(s,t,e,n),this.updateProcessor.start()}getRequestor(t){const e=this.getPollingPaths(),n=this.config.useReport?e.pathReport(this.platform.encoding,t):e.pathGet(this.platform.encoding,t),i=[];this.config.withReasons&&i.push({key:"withReasons",value:"true"}),this.secureModeHash&&i.push({key:"h",value:this.secureModeHash});const s=Object.assign({},this.baseHeaders);let r,a="GET";this.config.useReport&&(a="REPORT",s["content-type"]="application/json",r=t);const o=J(this.config.serviceEndpoints,n,i);return new se(this.platform.requests,o,s,a,r)}}function me(t){const e=de("visibilitychange",(()=>{"hidden"===(he()?document.visibilityState:"visibile")&&t()})),n=ge("pagehide",t);return()=>{e(),n()}}function ve(t){if("string"!=typeof t)throw new TypeError("Expected a string");return t.replace(/[|\\{}()[\]^$+*?.]/g,"\\$&").replace(/-/g,"\\x2d")}function ye(t,e){const n=[];return e.forEach((e=>{let i=t.target;const{selector:s}=e,r=function(t){if(he())return document.querySelectorAll(t)}(s);for(;i&&(null==r?void 0:r.length);){for(let t=0;t<r.length;t+=1)if(i===r[t]){n.push(e);break}i=i.parentNode}})),n}class we{constructor(t,e){const n=t.filter((t=>{var e;return null===(e=t.urls)||void 0===e?void 0:e.some((t=>function(t,e,n,i){const s=("substring"!==t.kind&&"regex"!==t.kind||!i.includes("/")?e.replace(i,""):e).replace(n,"");switch(t.kind){case"exact":return new RegExp(`^${ve(t.url)}/?$`).test(e);case"canonical":return new RegExp(`^${ve(t.url)}/?$`).test(s);case"substring":return new RegExp(`.*${ve(t.substring)}.*$`).test(s);case"regex":return new RegExp(t.pattern).test(s);default:return!1}}(t,fe(),ue()?window.location.search:"",ue()?window.location.hash:"")))})),i=n.filter((t=>"pageview"===t.kind)),s=n.filter((t=>"click"===t.kind));if(i.forEach((t=>e(t))),s.length){const t=t=>{ye(t,s).forEach((t=>{e(t)}))};this.cleanup=de("click",t)}}close(){var t;null===(t=this.cleanup)||void 0===t||t.call(this)}}class ke{constructor(t){this.previousLocation=fe();const e=()=>{const e=fe();e!==this.previousLocation&&(this.previousLocation=e,t())};this.watcherHandle=setInterval(e,300);const n=ge("popstate",e);this.cleanupListeners=()=>{n()}}close(){var t;this.watcherHandle&&clearInterval(this.watcherHandle),null===(t=this.cleanupListeners)||void 0===t||t.call(this)}}class Ee{constructor(t,e,n,i,s,r=t=>new ke(t)){this.requests=e,this.reportError=i,this.reportGoal=s,this.goals=[],this.isTracking=!1,this.url=`${n}/sdk/goals/${t}`,this.watcher=r((()=>{this.createTracker()}))}async initialize(){await this.fetchGoals(),this.createTracker()}startTracking(){this.isTracking=!0,this.createTracker()}createTracker(){var t;this.isTracking&&(null===(t=this.tracker)||void 0===t||t.close(),this.goals&&this.goals.length&&(this.tracker=new we(this.goals,(t=>{this.reportGoal(fe(),t)}))))}async fetchGoals(){try{const t=await this.requests.fetch(this.url);this.goals=await t.json()}catch(t){this.reportError(new z(`Encountered error fetching goals: ${t}`))}}close(){var t,e;null===(t=this.watcher)||void 0===t||t.close(),null===(e=this.tracker)||void 0===e||e.close()}}const be={fetchGoals:!0,eventUrlTransformer:t=>t,streaming:void 0},Se={fetchGoals:o.Boolean,eventUrlTransformer:o.Function,streaming:o.Boolean};class xe{constructor(t,e){switch(this.webcrypto=t,this.data=[],e){case"sha1":this.algorithm="SHA-1";break;case"sha256":this.algorithm="SHA-256";break;default:throw new Error(`Algorithm is not supported ${e}`)}}async asyncDigest(t){const e=this.data.join(""),n=(new TextEncoder).encode(e),i=await this.webcrypto.subtle.digest(this.algorithm,n);switch(t){case"base64":return btoa(String.fromCharCode(...new Uint8Array(i)));case"hex":return[...new Uint8Array(i)].map((t=>t.toString(16).padStart(2,"0"))).join("");default:throw new Error(`Encoding is not supported ${t}`)}}update(t){return this.data.push(t),this}}const De={start:0,end:3},Ce={start:4,end:5},Re={start:6,end:7},Ie={start:8,end:8},Me={start:9,end:9},Oe={start:10,end:15};function Te(t,e){let n="";for(let i=e.start;i<=e.end;i+=1)n+=t[i].toString(16).padStart(2,"0");return n}function Ae(){const t=function(){if(crypto&&crypto.getRandomValues){const t=new Uint8Array(16);return crypto.getRandomValues(t),[...t.values()]}const t=[];for(let e=0;e<16;e+=1)t.push(Math.floor(256*Math.random()));return t}();return function(t){return t[Ie.start]=191&t[Ie.start]|128,t[Re.start]=15&t[Re.start]|64,`${Te(t,De)}-${Te(t,Ce)}-${Te(t,Re)}-${Te(t,Ie)}${Te(t,Me)}-${Te(t,Oe)}`}(t)}class $e{createHash(t){return new xe(function(){if(void 0!==typeof crypto)return crypto;throw Error("Access to a web crypto API is required")}(),t)}randomUUID(){return void 0!==typeof crypto&&"function"==typeof crypto.randomUUID?crypto.randomUUID():Ae()}}class Pe{btoa(t){return function(t){const e=Array.from(t,(t=>String.fromCodePoint(t))).join("");return btoa(e)}((new TextEncoder).encode(t))}}class Ne{platformData(){return{name:"JS"}}sdkData(){return{name:"@launchdarkly/js-client-sdk",version:"0.0.0",userAgentBase:"JSClient"}}}class Ue{constructor(t,e,n=Math.random){this.retryResetIntervalMillis=e,this.random=n,this.retryCount=0,this.initialRetryDelayMillis=Math.max(1,t),this.maxExponent=Math.ceil(Math.log2(3e4/this.initialRetryDelayMillis))}backoff(){const t=Math.min(this.retryCount,this.maxExponent),e=this.initialRetryDelayMillis*2**t;return Math.min(e,3e4)}jitter(t){return t-Math.trunc(.5*this.random()*t)}success(t=Date.now()){this.activeSince=t}fail(t=Date.now()){void 0!==this.activeSince&&t-this.activeSince>this.retryResetIntervalMillis&&(this.retryCount=0),this.activeSince=void 0;const e=this.jitter(this.backoff());return this.retryCount+=1,e}}class Fe{constructor(t,e){this.url=t,this.listeners={},this.backoff=new Ue(e.initialRetryDelayMillis,e.retryResetIntervalMillis),this.errorFilter=e.errorFilter,this.openConnection()}openConnection(){this.es=new EventSource(this.url),this.es.onopen=()=>{var t;this.backoff.success(),null===(t=this.onopen)||void 0===t||t.call(this)},this.es.onerror=t=>{var e;this.handleError(t),null===(e=this.onerror)||void 0===e||e.call(this,t)},Object.entries(this.listeners).forEach((([t,e])=>{e.forEach((e=>{var n;null===(n=this.es)||void 0===n||n.addEventListener(t,e)}))}))}addEventListener(t,e){var n,i,s;null!==(n=(s=this.listeners)[t])&&void 0!==n||(s[t]=[]),this.listeners[t].push(e),null===(i=this.es)||void 0===i||i.addEventListener(t,e)}close(){var t,e;clearTimeout(this.reconnectTimeoutHandle),this.reconnectTimeoutHandle=void 0,null===(t=this.es)||void 0===t||t.close(),null===(e=this.onclose)||void 0===e||e.call(this)}tryConnect(t){var e;null===(e=this.onretrying)||void 0===e||e.call(this,{delayMillis:t}),this.reconnectTimeoutHandle=setTimeout((()=>{this.openConnection()}),t)}handleError(t){this.close(),t.status&&"number"==typeof t.status&&!this.errorFilter(t)||this.tryConnect(this.backoff.fail())}}class Le{fetch(t,e){return fetch(t,e)}createEventSource(t,e){return new Fe(t,e)}getEventSourceCapabilities(){return{customMethod:!1,readTimeout:!1,headers:!1}}}class je{constructor(t){this.logger=t}async clear(t){var e;try{localStorage.removeItem(t)}catch(n){null===(e=this.logger)||void 0===e||e.error(`Error clearing key from localStorage: ${t}, reason: ${n}`)}}async get(t){var e;try{const e=localStorage.getItem(t);return null!=e?e:null}catch(n){return null===(e=this.logger)||void 0===e||e.error(`Error getting key from localStorage: ${t}, reason: ${n}`),null}}async set(t,e){var n;try{localStorage.setItem(t,e)}catch(e){null===(n=this.logger)||void 0===n||n.error(`Error setting key in localStorage: ${t}, reason: ${e}`)}}}class Ke{constructor(t){this.encoding=new Pe,this.info=new Ne,this.crypto=new $e,this.requests=new Le,"undefined"!=typeof localStorage&&(this.storage=new je(t))}}class He extends ne{constructor(t,e,n={},i){var s;const{logger:r,debug:a}=n,o=null!=r?r:P({debug:a?console.debug:()=>{},info:console.info,warn:console.warn,error:console.error}),c=null!==(s=n.baseUri)&&void 0!==s?s:"https://clientsdk.launchdarkly.com",l=null!=i?i:new Ke(o),h=function(t,e){const n=Object.assign({},be);return function(t){var e;null!==(e=t.flushInterval)&&void 0!==e||(t.flushInterval=2)}(n),Object.entries(Se).forEach((i=>{const[s,r]=i,a=t[s];void 0!==a&&(r.is(a)?n[s]=a:e.warn(N.wrongOptionType(s,r.getType(),typeof a)))})),n}(n,o),{eventUrlTransformer:u}=h;super(t,e,l,function(t){const e=Object.assign({},t);return Object.keys(be).forEach((t=>{delete e[t]})),e}(Object.assign(Object.assign({},n),{logger:o})),((e,n,i,s,r)=>new pe(l,e,t,n,h,(()=>({pathGet:(e,n)=>`/sdk/evalx/${t}/contexts/${it(n,e)}`,pathReport:(e,n)=>`/sdk/evalx/${t}/context`})),(()=>({pathGet:(e,n)=>`/eval/${t}/${it(n,e)}`,pathReport:(e,n)=>`/eval/${t}`})),i,s,r)),{analyticsEventPath:`/events/bulk/${t}`,diagnosticEventPath:`/events/diagnostic/${t}`,includeAuthorizationHeader:!1,highTimeoutThreshold:5,userAgentHeaderName:"x-launchdarkly-user-agent",trackEventModifier:t=>new vt.InputCustomEvent(t.context,t.key,t.data,t.metricValue,t.samplingRatio,u(fe()))}),this.clientSideId=t,this.setEventSendingEnabled(!0,!1),h.fetchGoals&&(this.goalManager=new Ee(t,l.requests,c,(t=>{o.error(t.message)}),((t,e)=>{const n=this.getInternalContext();if(!n)return;const i=u(t);!function(t){return"click"===t.kind}(e)?this.sendEvent({kind:"pageview",url:i,samplingRatio:1,key:e.key,creationDate:Date.now(),context:n}):this.sendEvent({kind:"click",url:i,samplingRatio:1,key:e.key,creationDate:Date.now(),context:n,selector:e.selector})})),this.goalManager.initialize(),h.automaticBackgroundHandling&&me((()=>this.flush())))}async identify(t,e){var n;await super.identify(t,e),null===(n=this.goalManager)||void 0===n||n.startTracking()}setStreaming(t){this.dataManager.setForcedStreaming(t)}updateAutomaticStreamingState(){this.dataManager.setAutomaticStreamingState(!!this.emitter.listenerCount("change"))}on(t,e){super.on(t,e),this.updateAutomaticStreamingState()}off(t,e){super.off(t,e),this.updateAutomaticStreamingState()}}exports.initialize=function(t,e){return new He(t,E.Disabled,e)};
|
|
2
|
+
//# sourceMappingURL=index.cjs.js.map
|