@amplitude/plugin-autocapture-browser 1.7.1 → 1.8.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.
Files changed (74) hide show
  1. package/lib/cjs/autocapture-plugin.d.ts +4 -4
  2. package/lib/cjs/autocapture-plugin.d.ts.map +1 -1
  3. package/lib/cjs/autocapture-plugin.js +53 -30
  4. package/lib/cjs/autocapture-plugin.js.map +1 -1
  5. package/lib/cjs/frustration-plugin.js +1 -1
  6. package/lib/cjs/frustration-plugin.js.map +1 -1
  7. package/lib/cjs/helpers.d.ts +1 -1
  8. package/lib/cjs/helpers.d.ts.map +1 -1
  9. package/lib/cjs/helpers.js.map +1 -1
  10. package/lib/cjs/hierarchy.d.ts +2 -2
  11. package/lib/cjs/hierarchy.d.ts.map +1 -1
  12. package/lib/cjs/hierarchy.js.map +1 -1
  13. package/lib/cjs/libs/messenger.d.ts.map +1 -1
  14. package/lib/cjs/libs/messenger.js +2 -0
  15. package/lib/cjs/libs/messenger.js.map +1 -1
  16. package/lib/cjs/observables.d.ts +2 -1
  17. package/lib/cjs/observables.d.ts.map +1 -1
  18. package/lib/cjs/observables.js +4 -2
  19. package/lib/cjs/observables.js.map +1 -1
  20. package/lib/cjs/pageActions/matchEventToFilter.js +1 -1
  21. package/lib/cjs/pageActions/matchEventToFilter.js.map +1 -1
  22. package/lib/cjs/pageActions/triggers.d.ts +13 -7
  23. package/lib/cjs/pageActions/triggers.d.ts.map +1 -1
  24. package/lib/cjs/pageActions/triggers.js +80 -13
  25. package/lib/cjs/pageActions/triggers.js.map +1 -1
  26. package/lib/cjs/version.d.ts +1 -1
  27. package/lib/cjs/version.js +1 -1
  28. package/lib/cjs/version.js.map +1 -1
  29. package/lib/esm/autocapture-plugin.d.ts +4 -4
  30. package/lib/esm/autocapture-plugin.d.ts.map +1 -1
  31. package/lib/esm/autocapture-plugin.js +54 -31
  32. package/lib/esm/autocapture-plugin.js.map +1 -1
  33. package/lib/esm/frustration-plugin.js +1 -1
  34. package/lib/esm/frustration-plugin.js.map +1 -1
  35. package/lib/esm/helpers.d.ts +1 -1
  36. package/lib/esm/helpers.d.ts.map +1 -1
  37. package/lib/esm/helpers.js.map +1 -1
  38. package/lib/esm/hierarchy.d.ts +2 -2
  39. package/lib/esm/hierarchy.d.ts.map +1 -1
  40. package/lib/esm/hierarchy.js.map +1 -1
  41. package/lib/esm/libs/messenger.d.ts.map +1 -1
  42. package/lib/esm/libs/messenger.js +2 -0
  43. package/lib/esm/libs/messenger.js.map +1 -1
  44. package/lib/esm/observables.d.ts +2 -1
  45. package/lib/esm/observables.d.ts.map +1 -1
  46. package/lib/esm/observables.js +4 -2
  47. package/lib/esm/observables.js.map +1 -1
  48. package/lib/esm/pageActions/matchEventToFilter.js +1 -1
  49. package/lib/esm/pageActions/matchEventToFilter.js.map +1 -1
  50. package/lib/esm/pageActions/triggers.d.ts +13 -7
  51. package/lib/esm/pageActions/triggers.d.ts.map +1 -1
  52. package/lib/esm/pageActions/triggers.js +78 -12
  53. package/lib/esm/pageActions/triggers.js.map +1 -1
  54. package/lib/esm/version.d.ts +1 -1
  55. package/lib/esm/version.js +1 -1
  56. package/lib/esm/version.js.map +1 -1
  57. package/lib/scripts/amplitude-min.js +1 -1
  58. package/lib/scripts/amplitude-min.js.gz +0 -0
  59. package/lib/scripts/amplitude-min.js.map +1 -1
  60. package/lib/scripts/amplitude-min.umd.js +1 -1
  61. package/lib/scripts/amplitude-min.umd.js.gz +0 -0
  62. package/lib/scripts/autocapture-plugin.d.ts +4 -4
  63. package/lib/scripts/autocapture-plugin.d.ts.map +1 -1
  64. package/lib/scripts/helpers.d.ts +1 -1
  65. package/lib/scripts/helpers.d.ts.map +1 -1
  66. package/lib/scripts/hierarchy.d.ts +2 -2
  67. package/lib/scripts/hierarchy.d.ts.map +1 -1
  68. package/lib/scripts/libs/messenger.d.ts.map +1 -1
  69. package/lib/scripts/observables.d.ts +2 -1
  70. package/lib/scripts/observables.d.ts.map +1 -1
  71. package/lib/scripts/pageActions/triggers.d.ts +13 -7
  72. package/lib/scripts/pageActions/triggers.d.ts.map +1 -1
  73. package/lib/scripts/version.d.ts +1 -1
  74. package/package.json +4 -3
@@ -1,31 +1,41 @@
1
1
  import { __values } from "tslib";
2
2
  import { matchEventToFilter } from './matchEventToFilter';
3
+ import { executeActions } from './actions';
4
+ var eventTypeToBrowserEventMap = {
5
+ '[Amplitude] Element Clicked': 'click',
6
+ '[Amplitude] Element Changed': 'change',
7
+ };
3
8
  // groups labeled events by event type
4
9
  // skips any labeled events with malformed definitions or unexpected event_type
5
10
  export var groupLabeledEventIdsByEventType = function (labeledEvents) {
6
11
  var e_1, _a, e_2, _b;
7
- var _c;
8
- var groupedLabeledEvents = {
9
- click: new Set(),
10
- change: new Set(),
11
- };
12
+ // Initialize all event types with empty sets
13
+ var groupedLabeledEvents = Object.values(eventTypeToBrowserEventMap).reduce(function (acc, browserEvent) {
14
+ acc[browserEvent] = new Set();
15
+ return acc;
16
+ }, {});
17
+ // If there are no labeled events, return the initialized groupedLabeledEvents
12
18
  if (!labeledEvents) {
13
19
  return groupedLabeledEvents;
14
20
  }
15
21
  try {
22
+ // Group labeled events by event type
16
23
  for (var labeledEvents_1 = __values(labeledEvents), labeledEvents_1_1 = labeledEvents_1.next(); !labeledEvents_1_1.done; labeledEvents_1_1 = labeledEvents_1.next()) {
17
24
  var le = labeledEvents_1_1.value;
18
25
  try {
19
26
  try {
20
- for (var _d = (e_2 = void 0, __values(le.definition)), _e = _d.next(); !_e.done; _e = _d.next()) {
21
- var def = _e.value;
22
- (_c = groupedLabeledEvents[def.event_type]) === null || _c === void 0 ? void 0 : _c.add(le.id);
27
+ for (var _c = (e_2 = void 0, __values(le.definition)), _d = _c.next(); !_d.done; _d = _c.next()) {
28
+ var def = _d.value;
29
+ var browserEvent = eventTypeToBrowserEventMap[def.event_type];
30
+ if (browserEvent) {
31
+ groupedLabeledEvents[browserEvent].add(le.id);
32
+ }
23
33
  }
24
34
  }
25
35
  catch (e_2_1) { e_2 = { error: e_2_1 }; }
26
36
  finally {
27
37
  try {
28
- if (_e && !_e.done && (_b = _d.return)) _b.call(_d);
38
+ if (_d && !_d.done && (_b = _c.return)) _b.call(_c);
29
39
  }
30
40
  finally { if (e_2) throw e_2.error; }
31
41
  }
@@ -98,19 +108,32 @@ export var createLabeledEventToTriggerMap = function (triggers) {
98
108
  export var matchEventToLabeledEvents = function (event, labeledEvents) {
99
109
  return labeledEvents.filter(function (le) {
100
110
  return le.definition.some(function (def) {
101
- return def.event_type === event.type && def.filters.every(function (filter) { return matchEventToFilter(event, filter); });
111
+ return (eventTypeToBrowserEventMap[def.event_type] === event.type &&
112
+ def.filters.every(function (filter) { return matchEventToFilter(event, filter); }));
102
113
  });
103
114
  });
104
115
  };
105
116
  export var matchLabeledEventsToTriggers = function (labeledEvents, leToTriggerMap) {
106
- var e_5, _a;
117
+ var e_5, _a, e_6, _b;
107
118
  var matchingTriggers = new Set();
108
119
  try {
109
120
  for (var labeledEvents_2 = __values(labeledEvents), labeledEvents_2_1 = labeledEvents_2.next(); !labeledEvents_2_1.done; labeledEvents_2_1 = labeledEvents_2.next()) {
110
121
  var le = labeledEvents_2_1.value;
111
122
  var triggers = leToTriggerMap.get(le.id);
112
123
  if (triggers) {
113
- triggers.forEach(function (trigger) { return matchingTriggers.add(trigger); });
124
+ try {
125
+ for (var triggers_2 = (e_6 = void 0, __values(triggers)), triggers_2_1 = triggers_2.next(); !triggers_2_1.done; triggers_2_1 = triggers_2.next()) {
126
+ var trigger = triggers_2_1.value;
127
+ matchingTriggers.add(trigger);
128
+ }
129
+ }
130
+ catch (e_6_1) { e_6 = { error: e_6_1 }; }
131
+ finally {
132
+ try {
133
+ if (triggers_2_1 && !triggers_2_1.done && (_b = triggers_2.return)) _b.call(triggers_2);
134
+ }
135
+ finally { if (e_6) throw e_6.error; }
136
+ }
114
137
  }
115
138
  }
116
139
  }
@@ -123,4 +146,47 @@ export var matchLabeledEventsToTriggers = function (labeledEvents, leToTriggerMa
123
146
  }
124
147
  return Array.from(matchingTriggers);
125
148
  };
149
+ var TriggerEvaluator = /** @class */ (function () {
150
+ function TriggerEvaluator(groupedLabeledEvents, labeledEventToTriggerMap, options) {
151
+ this.groupedLabeledEvents = groupedLabeledEvents;
152
+ this.labeledEventToTriggerMap = labeledEventToTriggerMap;
153
+ this.options = options;
154
+ }
155
+ TriggerEvaluator.prototype.evaluate = function (event) {
156
+ var e_7, _a;
157
+ // If there is no pageActions, return the event as is
158
+ var pageActions = this.options.pageActions;
159
+ if (!pageActions) {
160
+ return event;
161
+ }
162
+ // Find matching labeled events
163
+ var matchingLabeledEvents = matchEventToLabeledEvents(event, Array.from(this.groupedLabeledEvents[event.type]).map(function (id) { return pageActions.labeledEvents[id]; }));
164
+ // Find matching conditions
165
+ var matchingTriggers = matchLabeledEventsToTriggers(matchingLabeledEvents, this.labeledEventToTriggerMap);
166
+ try {
167
+ for (var matchingTriggers_1 = __values(matchingTriggers), matchingTriggers_1_1 = matchingTriggers_1.next(); !matchingTriggers_1_1.done; matchingTriggers_1_1 = matchingTriggers_1.next()) {
168
+ var trigger = matchingTriggers_1_1.value;
169
+ executeActions(trigger.actions, event);
170
+ }
171
+ }
172
+ catch (e_7_1) { e_7 = { error: e_7_1 }; }
173
+ finally {
174
+ try {
175
+ if (matchingTriggers_1_1 && !matchingTriggers_1_1.done && (_a = matchingTriggers_1.return)) _a.call(matchingTriggers_1);
176
+ }
177
+ finally { if (e_7) throw e_7.error; }
178
+ }
179
+ return event;
180
+ };
181
+ TriggerEvaluator.prototype.update = function (groupedLabeledEvents, labeledEventToTriggerMap, options) {
182
+ this.groupedLabeledEvents = groupedLabeledEvents;
183
+ this.labeledEventToTriggerMap = labeledEventToTriggerMap;
184
+ this.options = options;
185
+ };
186
+ return TriggerEvaluator;
187
+ }());
188
+ export { TriggerEvaluator };
189
+ export var createTriggerEvaluator = function (groupedLabeledEvents, labeledEventToTriggerMap, options) {
190
+ return new TriggerEvaluator(groupedLabeledEvents, labeledEventToTriggerMap, options);
191
+ };
126
192
  //# sourceMappingURL=triggers.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"triggers.js","sourceRoot":"","sources":["../../../src/pageActions/triggers.ts"],"names":[],"mappings":";AAIA,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAE1D,sCAAsC;AACtC,+EAA+E;AAC/E,MAAM,CAAC,IAAM,+BAA+B,GAAG,UAAC,aAAqC;;;IACnF,IAAM,oBAAoB,GAAG;QAC3B,KAAK,EAAE,IAAI,GAAG,EAAU;QACxB,MAAM,EAAE,IAAI,GAAG,EAAU;KAC1B,CAAC;IACF,IAAI,CAAC,aAAa,EAAE;QAClB,OAAO,oBAAoB,CAAC;KAC7B;;QAED,KAAiB,IAAA,kBAAA,SAAA,aAAa,CAAA,4CAAA,uEAAE;YAA3B,IAAM,EAAE,0BAAA;YACX,IAAI;;oBACF,KAAkB,IAAA,oBAAA,SAAA,EAAE,CAAC,UAAU,CAAA,CAAA,gBAAA,4BAAE;wBAA5B,IAAM,GAAG,WAAA;wBACZ,MAAA,oBAAoB,CAAC,GAAG,CAAC,UAAU,CAAC,0CAAE,GAAG,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC;qBAClD;;;;;;;;;aACF;YAAC,OAAO,CAAC,EAAE;gBACV,+CAA+C;gBAC/C,OAAO,CAAC,IAAI,CAAC,oDAAoD,EAAE,EAAE,aAAF,EAAE,uBAAF,EAAE,CAAE,EAAE,EAAE,CAAC,CAAC,CAAC;aAC/E;SACF;;;;;;;;;IACD,OAAO,oBAAoB,CAAC;AAC9B,CAAC,CAAC;AAEF,kBAAkB;AAClB,MAAM,CAAC,IAAM,8BAA8B,GAAG,UAAC,QAAmB;;IAChE,IAAM,wBAAwB,GAAG,IAAI,GAAG,EAAqB,CAAC;;QAC9D,KAAsB,IAAA,aAAA,SAAA,QAAQ,CAAA,kCAAA,wDAAE;YAA3B,IAAM,OAAO,qBAAA;;gBAChB,KAAwB,IAAA,oBAAA,SAAA,OAAO,CAAC,UAAU,CAAA,CAAA,gBAAA,4BAAE;oBAAvC,IAAM,SAAS,WAAA;oBAClB,IAAI,SAAS,CAAC,IAAI,KAAK,eAAe,EAAE;wBACtC,IAAM,OAAO,GAAG,SAAS,CAAC,KAAK,CAAC,OAAO,CAAC;wBACxC,oEAAoE;wBACpE,IAAI,gBAAgB,GAAG,wBAAwB,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC;wBAC7D,IAAI,CAAC,gBAAgB,EAAE;4BACrB,gBAAgB,GAAG,EAAE,CAAC;4BACtB,wBAAwB,CAAC,GAAG,CAAC,OAAO,EAAE,gBAAgB,CAAC,CAAC;yBACzD;wBACD,gEAAgE;wBAChE,gBAAgB,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;qBAChC;iBACF;;;;;;;;;SACF;;;;;;;;;IACD,OAAO,wBAAwB,CAAC;AAClC,CAAC,CAAC;AAEF;;;;;;;;GAQG;AACH,MAAM,CAAC,IAAM,yBAAyB,GAAG,UACvC,KAAsD,EACtD,aAA6B;IAE7B,OAAO,aAAa,CAAC,MAAM,CAAC,UAAC,EAAE;QAC7B,OAAO,EAAE,CAAC,UAAU,CAAC,IAAI,CAAC,UAAC,GAAG;YAC5B,OAAO,GAAG,CAAC,UAAU,KAAK,KAAK,CAAC,IAAI,IAAI,GAAG,CAAC,OAAO,CAAC,KAAK,CAAC,UAAC,MAAM,IAAK,OAAA,kBAAkB,CAAC,KAAK,EAAE,MAAM,CAAC,EAAjC,CAAiC,CAAC,CAAC;QAC3G,CAAC,CAAC,CAAC;IACL,CAAC,CAAC,CAAC;AACL,CAAC,CAAC;AAEF,MAAM,CAAC,IAAM,4BAA4B,GAAG,UAAC,aAA6B,EAAE,cAAsC;;IAChH,IAAM,gBAAgB,GAAG,IAAI,GAAG,EAAW,CAAC;;QAC5C,KAAiB,IAAA,kBAAA,SAAA,aAAa,CAAA,4CAAA,uEAAE;YAA3B,IAAM,EAAE,0BAAA;YACX,IAAM,QAAQ,GAAG,cAAc,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC;YAC3C,IAAI,QAAQ,EAAE;gBACZ,QAAQ,CAAC,OAAO,CAAC,UAAC,OAAO,IAAK,OAAA,gBAAgB,CAAC,GAAG,CAAC,OAAO,CAAC,EAA7B,CAA6B,CAAC,CAAC;aAC9D;SACF;;;;;;;;;IACD,OAAO,KAAK,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC;AACtC,CAAC,CAAC","sourcesContent":["import { Trigger } from '@amplitude/analytics-core/lib/esm/types/element-interactions';\n// Return which labeled events, if any, the element matches\nimport type { LabeledEvent } from '@amplitude/analytics-core/lib/esm/types/element-interactions';\nimport { ElementBasedTimestampedEvent, ElementBasedEvent } from 'src/helpers';\nimport { matchEventToFilter } from './matchEventToFilter';\n\n// groups labeled events by event type\n// skips any labeled events with malformed definitions or unexpected event_type\nexport const groupLabeledEventIdsByEventType = (labeledEvents?: LabeledEvent[] | null) => {\n const groupedLabeledEvents = {\n click: new Set<string>(),\n change: new Set<string>(),\n };\n if (!labeledEvents) {\n return groupedLabeledEvents;\n }\n\n for (const le of labeledEvents) {\n try {\n for (const def of le.definition) {\n groupedLabeledEvents[def.event_type]?.add(le.id);\n }\n } catch (e) {\n // Skip this labeled event if there is an error\n console.warn('Skipping Labeled Event due to malformed definition', le?.id, e);\n }\n }\n return groupedLabeledEvents;\n};\n\n// TODO: add tests\nexport const createLabeledEventToTriggerMap = (triggers: Trigger[]) => {\n const labeledEventToTriggerMap = new Map<string, Trigger[]>();\n for (const trigger of triggers) {\n for (const condition of trigger.conditions) {\n if (condition.type === 'LABELED_EVENT') {\n const eventId = condition.match.eventId;\n // Get existing triggers for this event ID or initialize empty array\n let existingTriggers = labeledEventToTriggerMap.get(eventId);\n if (!existingTriggers) {\n existingTriggers = [];\n labeledEventToTriggerMap.set(eventId, existingTriggers);\n }\n // Add current trigger to the list of triggers for this event ID\n existingTriggers.push(trigger);\n }\n }\n }\n return labeledEventToTriggerMap;\n};\n\n/**\n * Matches an event to labeled events based on the event's properties.\n * The logic matches exactly what is supported by the query backend.\n * TODO: later pre-filter the labeled events based on URL first\n *\n * @param event - The event to match against labeled events\n * @param labeledEvents - Array of labeled events to match against\n * @returns Array of matching labeled events\n */\nexport const matchEventToLabeledEvents = (\n event: ElementBasedTimestampedEvent<ElementBasedEvent>,\n labeledEvents: LabeledEvent[],\n) => {\n return labeledEvents.filter((le) => {\n return le.definition.some((def) => {\n return def.event_type === event.type && def.filters.every((filter) => matchEventToFilter(event, filter));\n });\n });\n};\n\nexport const matchLabeledEventsToTriggers = (labeledEvents: LabeledEvent[], leToTriggerMap: Map<string, Trigger[]>) => {\n const matchingTriggers = new Set<Trigger>();\n for (const le of labeledEvents) {\n const triggers = leToTriggerMap.get(le.id);\n if (triggers) {\n triggers.forEach((trigger) => matchingTriggers.add(trigger));\n }\n }\n return Array.from(matchingTriggers);\n};\n"]}
1
+ {"version":3,"file":"triggers.js","sourceRoot":"","sources":["../../../src/pageActions/triggers.ts"],"names":[],"mappings":";AAOA,OAAO,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC1D,OAAO,EAAE,cAAc,EAAE,MAAM,WAAW,CAAC;AAE3C,IAAM,0BAA0B,GAAG;IACjC,6BAA6B,EAAE,OAAO;IACtC,6BAA6B,EAAE,QAAQ;CAC/B,CAAC;AACX,sCAAsC;AACtC,+EAA+E;AAC/E,MAAM,CAAC,IAAM,+BAA+B,GAAG,UAAC,aAAgD;;IAC9F,6CAA6C;IAC7C,IAAM,oBAAoB,GAAG,MAAM,CAAC,MAAM,CAAC,0BAA0B,CAAC,CAAC,MAAM,CAAC,UAAC,GAAG,EAAE,YAAY;QAC9F,GAAG,CAAC,YAAY,CAAC,GAAG,IAAI,GAAG,EAAU,CAAC;QACtC,OAAO,GAAG,CAAC;IACb,CAAC,EAAE,EAAiC,CAAC,CAAC;IAEtC,8EAA8E;IAC9E,IAAI,CAAC,aAAa,EAAE;QAClB,OAAO,oBAAoB,CAAC;KAC7B;;QAED,qCAAqC;QACrC,KAAiB,IAAA,kBAAA,SAAA,aAAa,CAAA,4CAAA,uEAAE;YAA3B,IAAM,EAAE,0BAAA;YACX,IAAI;;oBACF,KAAkB,IAAA,oBAAA,SAAA,EAAE,CAAC,UAAU,CAAA,CAAA,gBAAA,4BAAE;wBAA5B,IAAM,GAAG,WAAA;wBACZ,IAAM,YAAY,GAAG,0BAA0B,CAAC,GAAG,CAAC,UAAU,CAAC,CAAC;wBAChE,IAAI,YAAY,EAAE;4BAChB,oBAAoB,CAAC,YAAY,CAAC,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC;yBAC/C;qBACF;;;;;;;;;aACF;YAAC,OAAO,CAAC,EAAE;gBACV,+CAA+C;gBAC/C,OAAO,CAAC,IAAI,CAAC,oDAAoD,EAAE,EAAE,aAAF,EAAE,uBAAF,EAAE,CAAE,EAAE,EAAE,CAAC,CAAC,CAAC;aAC/E;SACF;;;;;;;;;IACD,OAAO,oBAAoB,CAAC;AAC9B,CAAC,CAAC;AAEF,kBAAkB;AAClB,MAAM,CAAC,IAAM,8BAA8B,GAAG,UAAC,QAAmB;;IAChE,IAAM,wBAAwB,GAAG,IAAI,GAAG,EAAqB,CAAC;;QAC9D,KAAsB,IAAA,aAAA,SAAA,QAAQ,CAAA,kCAAA,wDAAE;YAA3B,IAAM,OAAO,qBAAA;;gBAChB,KAAwB,IAAA,oBAAA,SAAA,OAAO,CAAC,UAAU,CAAA,CAAA,gBAAA,4BAAE;oBAAvC,IAAM,SAAS,WAAA;oBAClB,IAAI,SAAS,CAAC,IAAI,KAAK,eAAe,EAAE;wBACtC,IAAM,OAAO,GAAG,SAAS,CAAC,KAAK,CAAC,OAAO,CAAC;wBACxC,oEAAoE;wBACpE,IAAI,gBAAgB,GAAG,wBAAwB,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC;wBAC7D,IAAI,CAAC,gBAAgB,EAAE;4BACrB,gBAAgB,GAAG,EAAE,CAAC;4BACtB,wBAAwB,CAAC,GAAG,CAAC,OAAO,EAAE,gBAAgB,CAAC,CAAC;yBACzD;wBACD,gEAAgE;wBAChE,gBAAgB,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC;qBAChC;iBACF;;;;;;;;;SACF;;;;;;;;;IACD,OAAO,wBAAwB,CAAC;AAClC,CAAC,CAAC;AAEF;;;;;;;;GAQG;AACH,MAAM,CAAC,IAAM,yBAAyB,GAAG,UACvC,KAAsD,EACtD,aAA6B;IAE7B,OAAO,aAAa,CAAC,MAAM,CAAC,UAAC,EAAE;QAC7B,OAAO,EAAE,CAAC,UAAU,CAAC,IAAI,CAAC,UAAC,GAAG;YAC5B,OAAO,CACL,0BAA0B,CAAC,GAAG,CAAC,UAAU,CAAC,KAAK,KAAK,CAAC,IAAI;gBACzD,GAAG,CAAC,OAAO,CAAC,KAAK,CAAC,UAAC,MAAM,IAAK,OAAA,kBAAkB,CAAC,KAAK,EAAE,MAAM,CAAC,EAAjC,CAAiC,CAAC,CACjE,CAAC;QACJ,CAAC,CAAC,CAAC;IACL,CAAC,CAAC,CAAC;AACL,CAAC,CAAC;AAEF,MAAM,CAAC,IAAM,4BAA4B,GAAG,UAAC,aAA6B,EAAE,cAAsC;;IAChH,IAAM,gBAAgB,GAAG,IAAI,GAAG,EAAW,CAAC;;QAC5C,KAAiB,IAAA,kBAAA,SAAA,aAAa,CAAA,4CAAA,uEAAE;YAA3B,IAAM,EAAE,0BAAA;YACX,IAAM,QAAQ,GAAG,cAAc,CAAC,GAAG,CAAC,EAAE,CAAC,EAAE,CAAC,CAAC;YAC3C,IAAI,QAAQ,EAAE;;oBACZ,KAAsB,IAAA,4BAAA,SAAA,QAAQ,CAAA,CAAA,kCAAA,wDAAE;wBAA3B,IAAM,OAAO,qBAAA;wBAChB,gBAAgB,CAAC,GAAG,CAAC,OAAO,CAAC,CAAC;qBAC/B;;;;;;;;;aACF;SACF;;;;;;;;;IACD,OAAO,KAAK,CAAC,IAAI,CAAC,gBAAgB,CAAC,CAAC;AACtC,CAAC,CAAC;AAEF;IACE,0BACU,oBAAwE,EACxE,wBAA2E,EAC3E,OAAmC;QAFnC,yBAAoB,GAApB,oBAAoB,CAAoD;QACxE,6BAAwB,GAAxB,wBAAwB,CAAmD;QAC3E,YAAO,GAAP,OAAO,CAA4B;IAC1C,CAAC;IAEJ,mCAAQ,GAAR,UAAS,KAAsD;;QAC7D,qDAAqD;QAC7C,IAAA,WAAW,GAAK,IAAI,CAAC,OAAO,YAAjB,CAAkB;QACrC,IAAI,CAAC,WAAW,EAAE;YAChB,OAAO,KAAK,CAAC;SACd;QAED,+BAA+B;QAC/B,IAAM,qBAAqB,GAAG,yBAAyB,CACrD,KAAK,EACL,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,oBAAoB,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,GAAG,CAAC,UAAC,EAAE,IAAK,OAAA,WAAW,CAAC,aAAa,CAAC,EAAE,CAAC,EAA7B,CAA6B,CAAC,CAC7F,CAAC;QACF,2BAA2B;QAC3B,IAAM,gBAAgB,GAAG,4BAA4B,CAAC,qBAAqB,EAAE,IAAI,CAAC,wBAAwB,CAAC,CAAC;;YAC5G,KAAsB,IAAA,qBAAA,SAAA,gBAAgB,CAAA,kDAAA,gFAAE;gBAAnC,IAAM,OAAO,6BAAA;gBAChB,cAAc,CAAC,OAAO,CAAC,OAAO,EAAE,KAAK,CAAC,CAAC;aACxC;;;;;;;;;QAED,OAAO,KAAK,CAAC;IACf,CAAC;IAED,iCAAM,GAAN,UACE,oBAAwE,EACxE,wBAA2E,EAC3E,OAAmC;QAEnC,IAAI,CAAC,oBAAoB,GAAG,oBAAoB,CAAC;QACjD,IAAI,CAAC,wBAAwB,GAAG,wBAAwB,CAAC;QACzD,IAAI,CAAC,OAAO,GAAG,OAAO,CAAC;IACzB,CAAC;IACH,uBAAC;AAAD,CAAC,AArCD,IAqCC;;AAED,MAAM,CAAC,IAAM,sBAAsB,GAAG,UACpC,oBAAwE,EACxE,wBAA2E,EAC3E,OAAmC;IAEnC,OAAO,IAAI,gBAAgB,CAAC,oBAAoB,EAAE,wBAAwB,EAAE,OAAO,CAAC,CAAC;AACvF,CAAC,CAAC","sourcesContent":["import type { Trigger } from '@amplitude/analytics-core/lib/esm/types/element-interactions';\n// Return which labeled events, if any, the element matches\nimport type {\n ElementInteractionsOptions,\n LabeledEvent,\n} from '@amplitude/analytics-core/lib/esm/types/element-interactions';\nimport type { ElementBasedTimestampedEvent, ElementBasedEvent } from 'src/helpers';\nimport { matchEventToFilter } from './matchEventToFilter';\nimport { executeActions } from './actions';\n\nconst eventTypeToBrowserEventMap = {\n '[Amplitude] Element Clicked': 'click',\n '[Amplitude] Element Changed': 'change',\n} as const;\n// groups labeled events by event type\n// skips any labeled events with malformed definitions or unexpected event_type\nexport const groupLabeledEventIdsByEventType = (labeledEvents: LabeledEvent[] | null | undefined) => {\n // Initialize all event types with empty sets\n const groupedLabeledEvents = Object.values(eventTypeToBrowserEventMap).reduce((acc, browserEvent) => {\n acc[browserEvent] = new Set<string>();\n return acc;\n }, {} as Record<string, Set<string>>);\n\n // If there are no labeled events, return the initialized groupedLabeledEvents\n if (!labeledEvents) {\n return groupedLabeledEvents;\n }\n\n // Group labeled events by event type\n for (const le of labeledEvents) {\n try {\n for (const def of le.definition) {\n const browserEvent = eventTypeToBrowserEventMap[def.event_type];\n if (browserEvent) {\n groupedLabeledEvents[browserEvent].add(le.id);\n }\n }\n } catch (e) {\n // Skip this labeled event if there is an error\n console.warn('Skipping Labeled Event due to malformed definition', le?.id, e);\n }\n }\n return groupedLabeledEvents;\n};\n\n// TODO: add tests\nexport const createLabeledEventToTriggerMap = (triggers: Trigger[]) => {\n const labeledEventToTriggerMap = new Map<string, Trigger[]>();\n for (const trigger of triggers) {\n for (const condition of trigger.conditions) {\n if (condition.type === 'LABELED_EVENT') {\n const eventId = condition.match.eventId;\n // Get existing triggers for this event ID or initialize empty array\n let existingTriggers = labeledEventToTriggerMap.get(eventId);\n if (!existingTriggers) {\n existingTriggers = [];\n labeledEventToTriggerMap.set(eventId, existingTriggers);\n }\n // Add current trigger to the list of triggers for this event ID\n existingTriggers.push(trigger);\n }\n }\n }\n return labeledEventToTriggerMap;\n};\n\n/**\n * Matches an event to labeled events based on the event's properties.\n * The logic matches exactly what is supported by the query backend.\n * TODO: later pre-filter the labeled events based on URL first\n *\n * @param event - The event to match against labeled events\n * @param labeledEvents - Array of labeled events to match against\n * @returns Array of matching labeled events\n */\nexport const matchEventToLabeledEvents = (\n event: ElementBasedTimestampedEvent<ElementBasedEvent>,\n labeledEvents: LabeledEvent[],\n) => {\n return labeledEvents.filter((le) => {\n return le.definition.some((def) => {\n return (\n eventTypeToBrowserEventMap[def.event_type] === event.type &&\n def.filters.every((filter) => matchEventToFilter(event, filter))\n );\n });\n });\n};\n\nexport const matchLabeledEventsToTriggers = (labeledEvents: LabeledEvent[], leToTriggerMap: Map<string, Trigger[]>) => {\n const matchingTriggers = new Set<Trigger>();\n for (const le of labeledEvents) {\n const triggers = leToTriggerMap.get(le.id);\n if (triggers) {\n for (const trigger of triggers) {\n matchingTriggers.add(trigger);\n }\n }\n }\n return Array.from(matchingTriggers);\n};\n\nexport class TriggerEvaluator {\n constructor(\n private groupedLabeledEvents: ReturnType<typeof groupLabeledEventIdsByEventType>,\n private labeledEventToTriggerMap: ReturnType<typeof createLabeledEventToTriggerMap>,\n private options: ElementInteractionsOptions,\n ) {}\n\n evaluate(event: ElementBasedTimestampedEvent<ElementBasedEvent>) {\n // If there is no pageActions, return the event as is\n const { pageActions } = this.options;\n if (!pageActions) {\n return event;\n }\n\n // Find matching labeled events\n const matchingLabeledEvents = matchEventToLabeledEvents(\n event,\n Array.from(this.groupedLabeledEvents[event.type]).map((id) => pageActions.labeledEvents[id]),\n );\n // Find matching conditions\n const matchingTriggers = matchLabeledEventsToTriggers(matchingLabeledEvents, this.labeledEventToTriggerMap);\n for (const trigger of matchingTriggers) {\n executeActions(trigger.actions, event);\n }\n\n return event;\n }\n\n update(\n groupedLabeledEvents: ReturnType<typeof groupLabeledEventIdsByEventType>,\n labeledEventToTriggerMap: ReturnType<typeof createLabeledEventToTriggerMap>,\n options: ElementInteractionsOptions,\n ) {\n this.groupedLabeledEvents = groupedLabeledEvents;\n this.labeledEventToTriggerMap = labeledEventToTriggerMap;\n this.options = options;\n }\n}\n\nexport const createTriggerEvaluator = (\n groupedLabeledEvents: ReturnType<typeof groupLabeledEventIdsByEventType>,\n labeledEventToTriggerMap: ReturnType<typeof createLabeledEventToTriggerMap>,\n options: ElementInteractionsOptions,\n) => {\n return new TriggerEvaluator(groupedLabeledEvents, labeledEventToTriggerMap, options);\n};\n"]}
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "1.7.1";
1
+ export declare const VERSION = "1.8.1";
2
2
  //# sourceMappingURL=version.d.ts.map
@@ -1,2 +1,2 @@
1
- export var VERSION = '1.7.1';
1
+ export var VERSION = '1.8.1';
2
2
  //# sourceMappingURL=version.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"version.js","sourceRoot":"","sources":["../../src/version.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,IAAM,OAAO,GAAG,OAAO,CAAC","sourcesContent":["export const VERSION = '1.7.1';\n"]}
1
+ {"version":3,"file":"version.js","sourceRoot":"","sources":["../../src/version.ts"],"names":[],"mappings":"AAAA,MAAM,CAAC,IAAM,OAAO,GAAG,OAAO,CAAC","sourcesContent":["export const VERSION = '1.8.1';\n"]}
@@ -1,2 +1,2 @@
1
- var amplitudeAutocapturePlugin=function(t){"use strict";var e=function(t,n){return e=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(t,e){t.__proto__=e}||function(t,e){for(var n in e)Object.prototype.hasOwnProperty.call(e,n)&&(t[n]=e[n])},e(t,n)};function n(t,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function r(){this.constructor=t}e(t,n),t.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}var r=function(){return r=Object.assign||function(t){for(var e,n=1,r=arguments.length;n<r;n++)for(var i in e=arguments[n])Object.prototype.hasOwnProperty.call(e,i)&&(t[i]=e[i]);return t},r.apply(this,arguments)};function i(t,e,n,r){return new(n||(n=Promise))((function(i,o){function u(t){try{l(r.next(t))}catch(t){o(t)}}function c(t){try{l(r.throw(t))}catch(t){o(t)}}function l(t){var e;t.done?i(t.value):(e=t.value,e instanceof n?e:new n((function(t){t(e)}))).then(u,c)}l((r=r.apply(t,e||[])).next())}))}function o(t,e){var n,r,i,o={label:0,sent:function(){if(1&i[0])throw i[1];return i[1]},trys:[],ops:[]},u=Object.create(("function"==typeof Iterator?Iterator:Object).prototype);return u.next=c(0),u.throw=c(1),u.return=c(2),"function"==typeof Symbol&&(u[Symbol.iterator]=function(){return this}),u;function c(c){return function(l){return function(c){if(n)throw new TypeError("Generator is already executing.");for(;u&&(u=0,c[0]&&(o=0)),o;)try{if(n=1,r&&(i=2&c[0]?r.return:c[0]?r.throw||((i=r.return)&&i.call(r),0):r.next)&&!(i=i.call(r,c[1])).done)return i;switch(r=0,i&&(c=[2&c[0],i.value]),c[0]){case 0:case 1:i=c;break;case 4:return o.label++,{value:c[1],done:!1};case 5:o.label++,r=c[1],c=[0];continue;case 7:c=o.ops.pop(),o.trys.pop();continue;default:if(!(i=o.trys,(i=i.length>0&&i[i.length-1])||6!==c[0]&&2!==c[0])){o=0;continue}if(3===c[0]&&(!i||c[1]>i[0]&&c[1]<i[3])){o.label=c[1];break}if(6===c[0]&&o.label<i[1]){o.label=i[1],i=c;break}if(i&&o.label<i[2]){o.label=i[2],o.ops.push(c);break}i[2]&&o.ops.pop(),o.trys.pop();continue}c=e.call(t,o)}catch(t){c=[6,t],r=0}finally{n=i=0}if(5&c[0])throw c[1];return{value:c[0]?c[1]:void 0,done:!0}}([c,l])}}}function u(t){var e="function"==typeof Symbol&&Symbol.iterator,n=e&&t[e],r=0;if(n)return n.call(t);if(t&&"number"==typeof t.length)return{next:function(){return t&&r>=t.length&&(t=void 0),{value:t&&t[r++],done:!t}}};throw new TypeError(e?"Object is not iterable.":"Symbol.iterator is not defined.")}function c(t,e){var n="function"==typeof Symbol&&t[Symbol.iterator];if(!n)return t;var r,i,o=n.call(t),u=[];try{for(;(void 0===e||e-- >0)&&!(r=o.next()).done;)u.push(r.value)}catch(t){i={error:t}}finally{try{r&&!r.done&&(n=o.return)&&n.call(o)}finally{if(i)throw i.error}}return u}function l(t,e,n){if(n||2===arguments.length)for(var r,i=0,o=e.length;i<o;i++)!r&&i in e||(r||(r=Array.prototype.slice.call(e,0,i)),r[i]=e[i]);return t.concat(r||Array.prototype.slice.call(e))}function s(t){return this instanceof s?(this.v=t,this):new s(t)}function a(t,e,n){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var r,i=n.apply(t,e||[]),o=[];return r=Object.create(("function"==typeof AsyncIterator?AsyncIterator:Object).prototype),u("next"),u("throw"),u("return",(function(t){return function(e){return Promise.resolve(e).then(t,a)}})),r[Symbol.asyncIterator]=function(){return this},r;function u(t,e){i[t]&&(r[t]=function(e){return new Promise((function(n,r){o.push([t,e,n,r])>1||c(t,e)}))},e&&(r[t]=e(r[t])))}function c(t,e){try{(n=i[t](e)).value instanceof s?Promise.resolve(n.value.v).then(l,a):f(o[0][2],n)}catch(t){f(o[0][3],t)}var n}function l(t){c("next",t)}function a(t){c("throw",t)}function f(t,e){t(e),o.shift(),o.length&&c(o[0][0],o[0][1])}}function f(t){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var e,n=t[Symbol.asyncIterator];return n?n.call(t):(t=u(t),e={},r("next"),r("throw"),r("return"),e[Symbol.asyncIterator]=function(){return this},e);function r(n){e[n]=t[n]&&function(e){return new Promise((function(r,i){(function(t,e,n,r){Promise.resolve(r).then((function(e){t({value:e,done:n})}),e)})(r,i,(e=t[n](e)).done,e.value)}))}}}"function"==typeof SuppressedError&&SuppressedError;var d=["a","button","input","select","textarea","label","video","audio",'[contenteditable="true" i]',"[data-amp-default-track]",".amp-default-track"],p="data-amp-track-",v=["div","span","h1","h2","h3","h4","h5","h6"],h=l(['input[type="button"]','input[type="submit"]','input[type="reset"]','input[type="image"]','input[type="file"]'],c(["a","button",'[role="button"]','[role="link"]','[role="menuitem"]','[role="menuitemcheckbox"]','[role="menuitemradio"]','[role="option"]','[role="tab"]','[role="treeitem"]','[contenteditable="true" i]']),!1),b=["*"],y="[Amplitude] Element Clicked",m="[Amplitude] Element Tag",g="[Amplitude] Element Text",w="[Amplitude] Page URL",_="https://app.amplitude.com",A={US:_,EU:"https://app.eu.amplitude.com",STAGING:"https://apps.stag2.amplitude.com"};function x(t){return"function"==typeof t}function k(t){var e=t((function(t){Error.call(t),t.stack=(new Error).stack}));return e.prototype=Object.create(Error.prototype),e.prototype.constructor=e,e}var E=k((function(t){return function(e){t(this),this.message=e?e.length+" errors occurred during unsubscription:\n"+e.map((function(t,e){return e+1+") "+t.toString()})).join("\n "):"",this.name="UnsubscriptionError",this.errors=e}}));function S(t,e){if(t){var n=t.indexOf(e);0<=n&&t.splice(n,1)}}var T=function(){function t(t){this.initialTeardown=t,this.closed=!1,this._parentage=null,this._finalizers=null}var e;return t.prototype.unsubscribe=function(){var t,e,n,r,i;if(!this.closed){this.closed=!0;var o=this._parentage;if(o)if(this._parentage=null,Array.isArray(o))try{for(var s=u(o),a=s.next();!a.done;a=s.next()){a.value.remove(this)}}catch(e){t={error:e}}finally{try{a&&!a.done&&(e=s.return)&&e.call(s)}finally{if(t)throw t.error}}else o.remove(this);var f=this.initialTeardown;if(x(f))try{f()}catch(t){i=t instanceof E?t.errors:[t]}var d=this._finalizers;if(d){this._finalizers=null;try{for(var p=u(d),v=p.next();!v.done;v=p.next()){var h=v.value;try{P(h)}catch(t){i=null!=i?i:[],t instanceof E?i=l(l([],c(i)),c(t.errors)):i.push(t)}}}catch(t){n={error:t}}finally{try{v&&!v.done&&(r=p.return)&&r.call(p)}finally{if(n)throw n.error}}}if(i)throw new E(i)}},t.prototype.add=function(e){var n;if(e&&e!==this)if(this.closed)P(e);else{if(e instanceof t){if(e.closed||e._hasParent(this))return;e._addParent(this)}(this._finalizers=null!==(n=this._finalizers)&&void 0!==n?n:[]).push(e)}},t.prototype._hasParent=function(t){var e=this._parentage;return e===t||Array.isArray(e)&&e.includes(t)},t.prototype._addParent=function(t){var e=this._parentage;this._parentage=Array.isArray(e)?(e.push(t),e):e?[e,t]:t},t.prototype._removeParent=function(t){var e=this._parentage;e===t?this._parentage=null:Array.isArray(e)&&S(e,t)},t.prototype.remove=function(e){var n=this._finalizers;n&&S(n,e),e instanceof t&&e._removeParent(this)},t.EMPTY=((e=new t).closed=!0,e),t}(),O=T.EMPTY;function C(t){return t instanceof T||t&&"closed"in t&&x(t.remove)&&x(t.add)&&x(t.unsubscribe)}function P(t){x(t)?t():t.unsubscribe()}var I={onUnhandledError:null,onStoppedNotification:null,Promise:void 0,useDeprecatedSynchronousErrorHandling:!1,useDeprecatedNextContext:!1},j=function(t,e){for(var n=[],r=2;r<arguments.length;r++)n[r-2]=arguments[r];return setTimeout.apply(void 0,l([t,e],c(n)))};function N(t){j((function(){throw t}))}function L(){}function M(t){t()}var q=function(t){function e(e){var n=t.call(this)||this;return n.isStopped=!1,e?(n.destination=e,C(e)&&e.add(n)):n.destination=Y,n}return n(e,t),e.create=function(t,e,n){return new z(t,e,n)},e.prototype.next=function(t){this.isStopped||this._next(t)},e.prototype.error=function(t){this.isStopped||(this.isStopped=!0,this._error(t))},e.prototype.complete=function(){this.isStopped||(this.isStopped=!0,this._complete())},e.prototype.unsubscribe=function(){this.closed||(this.isStopped=!0,t.prototype.unsubscribe.call(this),this.destination=null)},e.prototype._next=function(t){this.destination.next(t)},e.prototype._error=function(t){try{this.destination.error(t)}finally{this.unsubscribe()}},e.prototype._complete=function(){try{this.destination.complete()}finally{this.unsubscribe()}},e}(T),F=Function.prototype.bind;function R(t,e){return F.call(t,e)}var D=function(){function t(t){this.partialObserver=t}return t.prototype.next=function(t){var e=this.partialObserver;if(e.next)try{e.next(t)}catch(t){V(t)}},t.prototype.error=function(t){var e=this.partialObserver;if(e.error)try{e.error(t)}catch(t){V(t)}else V(t)},t.prototype.complete=function(){var t=this.partialObserver;if(t.complete)try{t.complete()}catch(t){V(t)}},t}(),z=function(t){function e(e,n,r){var i,o,u=t.call(this)||this;x(e)||!e?i={next:null!=e?e:void 0,error:null!=n?n:void 0,complete:null!=r?r:void 0}:u&&I.useDeprecatedNextContext?((o=Object.create(e)).unsubscribe=function(){return u.unsubscribe()},i={next:e.next&&R(e.next,o),error:e.error&&R(e.error,o),complete:e.complete&&R(e.complete,o)}):i=e;return u.destination=new D(i),u}return n(e,t),e}(q);function V(t){N(t)}var Y={closed:!0,next:L,error:function(t){throw t},complete:L},U="function"==typeof Symbol&&Symbol.observable||"@@observable";function H(t){return t}var W=function(){function t(t){t&&(this._subscribe=t)}return t.prototype.lift=function(e){var n=new t;return n.source=this,n.operator=e,n},t.prototype.subscribe=function(t,e,n){var r,i=this,o=(r=t)&&r instanceof q||function(t){return t&&x(t.next)&&x(t.error)&&x(t.complete)}(r)&&C(r)?t:new z(t,e,n);return M((function(){var t=i,e=t.operator,n=t.source;o.add(e?e.call(o,n):n?i._subscribe(o):i._trySubscribe(o))})),o},t.prototype._trySubscribe=function(t){try{return this._subscribe(t)}catch(e){t.error(e)}},t.prototype.forEach=function(t,e){var n=this;return new(e=B(e))((function(e,r){var i=new z({next:function(e){try{t(e)}catch(t){r(t),i.unsubscribe()}},error:r,complete:e});n.subscribe(i)}))},t.prototype._subscribe=function(t){var e;return null===(e=this.source)||void 0===e?void 0:e.subscribe(t)},t.prototype[U]=function(){return this},t.prototype.pipe=function(){for(var t,e=[],n=0;n<arguments.length;n++)e[n]=arguments[n];return(0===(t=e).length?H:1===t.length?t[0]:function(e){return t.reduce((function(t,e){return e(t)}),e)})(this)},t.prototype.toPromise=function(t){var e=this;return new(t=B(t))((function(t,n){var r;e.subscribe((function(t){return r=t}),(function(t){return n(t)}),(function(){return t(r)}))}))},t.create=function(e){return new t(e)},t}();function B(t){var e;return null!==(e=null!=t?t:I.Promise)&&void 0!==e?e:Promise}function X(t){return x(null==t?void 0:t.lift)}function G(t){return function(e){if(X(e))return e.lift((function(e){try{return t(e,this)}catch(t){this.error(t)}}));throw new TypeError("Unable to lift unknown Observable type")}}function J(t,e,n,r,i){return new Z(t,e,n,r,i)}var Z=function(t){function e(e,n,r,i,o,u){var c=t.call(this,e)||this;return c.onFinalize=o,c.shouldUnsubscribe=u,c._next=n?function(t){try{n(t)}catch(t){e.error(t)}}:t.prototype._next,c._error=i?function(t){try{i(t)}catch(t){e.error(t)}finally{this.unsubscribe()}}:t.prototype._error,c._complete=r?function(){try{r()}catch(t){e.error(t)}finally{this.unsubscribe()}}:t.prototype._complete,c}return n(e,t),e.prototype.unsubscribe=function(){var e;if(!this.shouldUnsubscribe||this.shouldUnsubscribe()){var n=this.closed;t.prototype.unsubscribe.call(this),!n&&(null===(e=this.onFinalize)||void 0===e||e.call(this))}},e}(q);!function(t){function e(e,n){var r=t.call(this)||this;return r.source=e,r.subjectFactory=n,r._subject=null,r._refCount=0,r._connection=null,X(e)&&(r.lift=e.lift),r}n(e,t),e.prototype._subscribe=function(t){return this.getSubject().subscribe(t)},e.prototype.getSubject=function(){var t=this._subject;return t&&!t.isStopped||(this._subject=this.subjectFactory()),this._subject},e.prototype._teardown=function(){this._refCount=0;var t=this._connection;this._subject=this._connection=null,null==t||t.unsubscribe()},e.prototype.connect=function(){var t=this,e=this._connection;if(!e){e=this._connection=new T;var n=this.getSubject();e.add(this.source.subscribe(J(n,void 0,(function(){t._teardown(),n.complete()}),(function(e){t._teardown(),n.error(e)}),(function(){return t._teardown()})))),e.closed&&(this._connection=null,e=T.EMPTY)}return e},e.prototype.refCount=function(){return G((function(t,e){var n=null;t._refCount++;var r=J(e,void 0,void 0,void 0,(function(){if(!t||t._refCount<=0||0<--t._refCount)n=null;else{var r=t._connection,i=n;n=null,!r||i&&r!==i||r.unsubscribe(),e.unsubscribe()}}));t.subscribe(r),r.closed||(n=t.connect())}))(this)}}(W);var $,K={now:function(){return(K.delegate||performance).now()},delegate:void 0},Q={schedule:function(t){var e=requestAnimationFrame,n=cancelAnimationFrame,r=e((function(e){n=void 0,t(e)}));return new T((function(){return null==n?void 0:n(r)}))},requestAnimationFrame:function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];var n=Q.delegate;return((null==n?void 0:n.requestAnimationFrame)||requestAnimationFrame).apply(void 0,l([],c(t)))},cancelAnimationFrame:function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];return cancelAnimationFrame.apply(void 0,l([],c(t)))},delegate:void 0};new W((function(t){var e=$||K,n=e.now(),r=0,i=function(){t.closed||(r=Q.requestAnimationFrame((function(o){r=0;var u=e.now();t.next({timestamp:$?u:o,elapsed:u-n}),i()})))};return i(),function(){r&&Q.cancelAnimationFrame(r)}}));var tt=k((function(t){return function(){t(this),this.name="ObjectUnsubscribedError",this.message="object unsubscribed"}})),et=function(t){function e(){var e=t.call(this)||this;return e.closed=!1,e.currentObservers=null,e.observers=[],e.isStopped=!1,e.hasError=!1,e.thrownError=null,e}return n(e,t),e.prototype.lift=function(t){var e=new nt(this,this);return e.operator=t,e},e.prototype._throwIfClosed=function(){if(this.closed)throw new tt},e.prototype.next=function(t){var e=this;M((function(){var n,r;if(e._throwIfClosed(),!e.isStopped){e.currentObservers||(e.currentObservers=Array.from(e.observers));try{for(var i=u(e.currentObservers),o=i.next();!o.done;o=i.next()){o.value.next(t)}}catch(t){n={error:t}}finally{try{o&&!o.done&&(r=i.return)&&r.call(i)}finally{if(n)throw n.error}}}}))},e.prototype.error=function(t){var e=this;M((function(){if(e._throwIfClosed(),!e.isStopped){e.hasError=e.isStopped=!0,e.thrownError=t;for(var n=e.observers;n.length;)n.shift().error(t)}}))},e.prototype.complete=function(){var t=this;M((function(){if(t._throwIfClosed(),!t.isStopped){t.isStopped=!0;for(var e=t.observers;e.length;)e.shift().complete()}}))},e.prototype.unsubscribe=function(){this.isStopped=this.closed=!0,this.observers=this.currentObservers=null},Object.defineProperty(e.prototype,"observed",{get:function(){var t;return(null===(t=this.observers)||void 0===t?void 0:t.length)>0},enumerable:!1,configurable:!0}),e.prototype._trySubscribe=function(e){return this._throwIfClosed(),t.prototype._trySubscribe.call(this,e)},e.prototype._subscribe=function(t){return this._throwIfClosed(),this._checkFinalizedStatuses(t),this._innerSubscribe(t)},e.prototype._innerSubscribe=function(t){var e=this,n=this,r=n.hasError,i=n.isStopped,o=n.observers;return r||i?O:(this.currentObservers=null,o.push(t),new T((function(){e.currentObservers=null,S(o,t)})))},e.prototype._checkFinalizedStatuses=function(t){var e=this,n=e.hasError,r=e.thrownError,i=e.isStopped;n?t.error(r):i&&t.complete()},e.prototype.asObservable=function(){var t=new W;return t.source=this,t},e.create=function(t,e){return new nt(t,e)},e}(W),nt=function(t){function e(e,n){var r=t.call(this)||this;return r.destination=e,r.source=n,r}return n(e,t),e.prototype.next=function(t){var e,n;null===(n=null===(e=this.destination)||void 0===e?void 0:e.next)||void 0===n||n.call(e,t)},e.prototype.error=function(t){var e,n;null===(n=null===(e=this.destination)||void 0===e?void 0:e.error)||void 0===n||n.call(e,t)},e.prototype.complete=function(){var t,e;null===(e=null===(t=this.destination)||void 0===t?void 0:t.complete)||void 0===e||e.call(t)},e.prototype._subscribe=function(t){var e,n;return null!==(n=null===(e=this.source)||void 0===e?void 0:e.subscribe(t))&&void 0!==n?n:O},e}(et);!function(t){function e(e){var n=t.call(this)||this;return n._value=e,n}n(e,t),Object.defineProperty(e.prototype,"value",{get:function(){return this.getValue()},enumerable:!1,configurable:!0}),e.prototype._subscribe=function(e){var n=t.prototype._subscribe.call(this,e);return!n.closed&&e.next(this._value),n},e.prototype.getValue=function(){var t=this,e=t.hasError,n=t.thrownError,r=t._value;if(e)throw n;return this._throwIfClosed(),r},e.prototype.next=function(e){t.prototype.next.call(this,this._value=e)}}(et);var rt={now:function(){return(rt.delegate||Date).now()},delegate:void 0};!function(t){function e(e,n,r){void 0===e&&(e=1/0),void 0===n&&(n=1/0),void 0===r&&(r=rt);var i=t.call(this)||this;return i._bufferSize=e,i._windowTime=n,i._timestampProvider=r,i._buffer=[],i._infiniteTimeWindow=!0,i._infiniteTimeWindow=n===1/0,i._bufferSize=Math.max(1,e),i._windowTime=Math.max(1,n),i}n(e,t),e.prototype.next=function(e){var n=this,r=n.isStopped,i=n._buffer,o=n._infiniteTimeWindow,u=n._timestampProvider,c=n._windowTime;r||(i.push(e),!o&&i.push(u.now()+c)),this._trimBuffer(),t.prototype.next.call(this,e)},e.prototype._subscribe=function(t){this._throwIfClosed(),this._trimBuffer();for(var e=this._innerSubscribe(t),n=this._infiniteTimeWindow,r=this._buffer.slice(),i=0;i<r.length&&!t.closed;i+=n?1:2)t.next(r[i]);return this._checkFinalizedStatuses(t),e},e.prototype._trimBuffer=function(){var t=this,e=t._bufferSize,n=t._timestampProvider,r=t._buffer,i=t._infiniteTimeWindow,o=(i?1:2)*e;if(e<1/0&&o<r.length&&r.splice(0,r.length-o),!i){for(var u=n.now(),c=0,l=1;l<r.length&&r[l]<=u;l+=2)c=l;c&&r.splice(0,c+1)}}}(et),function(t){function e(){var e=null!==t&&t.apply(this,arguments)||this;return e._value=null,e._hasValue=!1,e._isComplete=!1,e}n(e,t),e.prototype._checkFinalizedStatuses=function(t){var e=this,n=e.hasError,r=e._hasValue,i=e._value,o=e.thrownError,u=e.isStopped,c=e._isComplete;n?t.error(o):(u||c)&&(r&&t.next(i),t.complete())},e.prototype.next=function(t){this.isStopped||(this._value=t,this._hasValue=!0)},e.prototype.complete=function(){var e=this,n=e._hasValue,r=e._value;e._isComplete||(this._isComplete=!0,n&&t.prototype.next.call(this,r),t.prototype.complete.call(this))}}(et);var it,ot=function(t){function e(e,n){return t.call(this)||this}return n(e,t),e.prototype.schedule=function(t,e){return this},e}(T),ut=function(t,e){for(var n=[],r=2;r<arguments.length;r++)n[r-2]=arguments[r];return setInterval.apply(void 0,l([t,e],c(n)))},ct=function(t){return clearInterval(t)},lt=function(t){function e(e,n){var r=t.call(this,e,n)||this;return r.scheduler=e,r.work=n,r.pending=!1,r}return n(e,t),e.prototype.schedule=function(t,e){var n;if(void 0===e&&(e=0),this.closed)return this;this.state=t;var r=this.id,i=this.scheduler;return null!=r&&(this.id=this.recycleAsyncId(i,r,e)),this.pending=!0,this.delay=e,this.id=null!==(n=this.id)&&void 0!==n?n:this.requestAsyncId(i,this.id,e),this},e.prototype.requestAsyncId=function(t,e,n){return void 0===n&&(n=0),ut(t.flush.bind(t,this),n)},e.prototype.recycleAsyncId=function(t,e,n){if(void 0===n&&(n=0),null!=n&&this.delay===n&&!1===this.pending)return e;null!=e&&ct(e)},e.prototype.execute=function(t,e){if(this.closed)return new Error("executing a cancelled action");this.pending=!1;var n=this._execute(t,e);if(n)return n;!1===this.pending&&null!=this.id&&(this.id=this.recycleAsyncId(this.scheduler,this.id,null))},e.prototype._execute=function(t,e){var n,r=!1;try{this.work(t)}catch(t){r=!0,n=t||new Error("Scheduled action threw falsy error")}if(r)return this.unsubscribe(),n},e.prototype.unsubscribe=function(){if(!this.closed){var e=this.id,n=this.scheduler,r=n.actions;this.work=this.state=this.scheduler=null,this.pending=!1,S(r,this),null!=e&&(this.id=this.recycleAsyncId(n,e,null)),this.delay=null,t.prototype.unsubscribe.call(this)}},e}(ot),st=1,at={};function ft(t){return t in at&&(delete at[t],!0)}var dt=function(t){var e=st++;return at[e]=!0,it||(it=Promise.resolve()),it.then((function(){return ft(e)&&t()})),e},pt=function(t){ft(t)},vt={setImmediate:function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];var n=vt.delegate;return((null==n?void 0:n.setImmediate)||dt).apply(void 0,l([],c(t)))},clearImmediate:function(t){return pt(t)},delegate:void 0},ht=function(t){function e(e,n){var r=t.call(this,e,n)||this;return r.scheduler=e,r.work=n,r}return n(e,t),e.prototype.requestAsyncId=function(e,n,r){return void 0===r&&(r=0),null!==r&&r>0?t.prototype.requestAsyncId.call(this,e,n,r):(e.actions.push(this),e._scheduled||(e._scheduled=vt.setImmediate(e.flush.bind(e,void 0))))},e.prototype.recycleAsyncId=function(e,n,r){var i;if(void 0===r&&(r=0),null!=r?r>0:this.delay>0)return t.prototype.recycleAsyncId.call(this,e,n,r);var o=e.actions;null!=n&&(null===(i=o[o.length-1])||void 0===i?void 0:i.id)!==n&&(vt.clearImmediate(n),e._scheduled===n&&(e._scheduled=void 0))},e}(lt),bt=function(){function t(e,n){void 0===n&&(n=t.now),this.schedulerActionCtor=e,this.now=n}return t.prototype.schedule=function(t,e,n){return void 0===e&&(e=0),new this.schedulerActionCtor(this,t).schedule(n,e)},t.now=rt.now,t}(),yt=function(t){function e(e,n){void 0===n&&(n=bt.now);var r=t.call(this,e,n)||this;return r.actions=[],r._active=!1,r}return n(e,t),e.prototype.flush=function(t){var e=this.actions;if(this._active)e.push(t);else{var n;this._active=!0;do{if(n=t.execute(t.state,t.delay))break}while(t=e.shift());if(this._active=!1,n){for(;t=e.shift();)t.unsubscribe();throw n}}},e}(bt),mt=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return n(e,t),e.prototype.flush=function(t){this._active=!0;var e=this._scheduled;this._scheduled=void 0;var n,r=this.actions;t=t||r.shift();do{if(n=t.execute(t.state,t.delay))break}while((t=r[0])&&t.id===e&&r.shift());if(this._active=!1,n){for(;(t=r[0])&&t.id===e&&r.shift();)t.unsubscribe();throw n}},e}(yt);new mt(ht);var gt=new yt(lt),wt=gt,_t=function(t){function e(e,n){var r=t.call(this,e,n)||this;return r.scheduler=e,r.work=n,r}return n(e,t),e.prototype.schedule=function(e,n){return void 0===n&&(n=0),n>0?t.prototype.schedule.call(this,e,n):(this.delay=n,this.state=e,this.scheduler.flush(this),this)},e.prototype.execute=function(e,n){return n>0||this.closed?t.prototype.execute.call(this,e,n):this._execute(e,n)},e.prototype.requestAsyncId=function(e,n,r){return void 0===r&&(r=0),null!=r&&r>0||null==r&&this.delay>0?t.prototype.requestAsyncId.call(this,e,n,r):(e.flush(this),0)},e}(lt),At=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return n(e,t),e}(yt);new At(_t);var xt=function(t){function e(e,n){var r=t.call(this,e,n)||this;return r.scheduler=e,r.work=n,r}return n(e,t),e.prototype.requestAsyncId=function(e,n,r){return void 0===r&&(r=0),null!==r&&r>0?t.prototype.requestAsyncId.call(this,e,n,r):(e.actions.push(this),e._scheduled||(e._scheduled=Q.requestAnimationFrame((function(){return e.flush(void 0)}))))},e.prototype.recycleAsyncId=function(e,n,r){var i;if(void 0===r&&(r=0),null!=r?r>0:this.delay>0)return t.prototype.recycleAsyncId.call(this,e,n,r);var o=e.actions;null!=n&&n===e._scheduled&&(null===(i=o[o.length-1])||void 0===i?void 0:i.id)!==n&&(Q.cancelAnimationFrame(n),e._scheduled=void 0)},e}(lt),kt=function(t){function e(){return null!==t&&t.apply(this,arguments)||this}return n(e,t),e.prototype.flush=function(t){var e;this._active=!0,t?e=t.id:(e=this._scheduled,this._scheduled=void 0);var n,r=this.actions;t=t||r.shift();do{if(n=t.execute(t.state,t.delay))break}while((t=r[0])&&t.id===e&&r.shift());if(this._active=!1,n){for(;(t=r[0])&&t.id===e&&r.shift();)t.unsubscribe();throw n}},e}(yt);new kt(xt),function(t){function e(e,n){void 0===e&&(e=Et),void 0===n&&(n=1/0);var r=t.call(this,e,(function(){return r.frame}))||this;return r.maxFrames=n,r.frame=0,r.index=-1,r}n(e,t),e.prototype.flush=function(){for(var t,e,n=this.actions,r=this.maxFrames;(e=n[0])&&e.delay<=r&&(n.shift(),this.frame=e.delay,!(t=e.execute(e.state,e.delay))););if(t){for(;e=n.shift();)e.unsubscribe();throw t}},e.frameTimeFactor=10}(yt);var Et=function(t){function e(e,n,r){void 0===r&&(r=e.index+=1);var i=t.call(this,e,n)||this;return i.scheduler=e,i.work=n,i.index=r,i.active=!0,i.index=e.index=r,i}return n(e,t),e.prototype.schedule=function(n,r){if(void 0===r&&(r=0),Number.isFinite(r)){if(!this.id)return t.prototype.schedule.call(this,n,r);this.active=!1;var i=new e(this.scheduler,this.work);return this.add(i),i.schedule(n,r)}return T.EMPTY},e.prototype.requestAsyncId=function(t,n,r){void 0===r&&(r=0),this.delay=t.frame+r;var i=t.actions;return i.push(this),i.sort(e.sortActions),1},e.prototype.recycleAsyncId=function(t,e,n){},e.prototype._execute=function(e,n){if(!0===this.active)return t.prototype._execute.call(this,e,n)},e.sortActions=function(t,e){return t.delay===e.delay?t.index===e.index?0:t.index>e.index?1:-1:t.delay>e.delay?1:-1},e}(lt),St=new W((function(t){return t.complete()}));function Tt(t){return t&&x(t.schedule)}function Ot(t){return t[t.length-1]}function Ct(t){return Tt(Ot(t))?t.pop():void 0}var Pt=function(t){return t&&"number"==typeof t.length&&"function"!=typeof t};function It(t){return x(null==t?void 0:t.then)}function jt(t){return x(t[U])}function Nt(t){return Symbol.asyncIterator&&x(null==t?void 0:t[Symbol.asyncIterator])}function Lt(t){return new TypeError("You provided "+(null!==t&&"object"==typeof t?"an invalid object":"'"+t+"'")+" where a stream was expected. You can provide an Observable, Promise, ReadableStream, Array, AsyncIterable, or Iterable.")}var Mt,qt="function"==typeof Symbol&&Symbol.iterator?Symbol.iterator:"@@iterator";function Ft(t){return x(null==t?void 0:t[qt])}function Rt(t){return a(this,arguments,(function(){var e,n,r;return o(this,(function(i){switch(i.label){case 0:e=t.getReader(),i.label=1;case 1:i.trys.push([1,,9,10]),i.label=2;case 2:return[4,s(e.read())];case 3:return n=i.sent(),r=n.value,n.done?[4,s(void 0)]:[3,5];case 4:return[2,i.sent()];case 5:return[4,s(r)];case 6:return[4,i.sent()];case 7:return i.sent(),[3,2];case 8:return[3,10];case 9:return e.releaseLock(),[7];case 10:return[2]}}))}))}function Dt(t){return x(null==t?void 0:t.getReader)}function zt(t){if(t instanceof W)return t;if(null!=t){if(jt(t))return i=t,new W((function(t){var e=i[U]();if(x(e.subscribe))return e.subscribe(t);throw new TypeError("Provided object does not correctly implement Symbol.observable")}));if(Pt(t))return r=t,new W((function(t){for(var e=0;e<r.length&&!t.closed;e++)t.next(r[e]);t.complete()}));if(It(t))return n=t,new W((function(t){n.then((function(e){t.closed||(t.next(e),t.complete())}),(function(e){return t.error(e)})).then(null,N)}));if(Nt(t))return Vt(t);if(Ft(t))return e=t,new W((function(t){var n,r;try{for(var i=u(e),o=i.next();!o.done;o=i.next()){var c=o.value;if(t.next(c),t.closed)return}}catch(t){n={error:t}}finally{try{o&&!o.done&&(r=i.return)&&r.call(i)}finally{if(n)throw n.error}}t.complete()}));if(Dt(t))return Vt(Rt(t))}var e,n,r,i;throw Lt(t)}function Vt(t){return new W((function(e){(function(t,e){var n,r,u,c;return i(this,void 0,void 0,(function(){var i,l;return o(this,(function(o){switch(o.label){case 0:o.trys.push([0,5,6,11]),n=f(t),o.label=1;case 1:return[4,n.next()];case 2:if((r=o.sent()).done)return[3,4];if(i=r.value,e.next(i),e.closed)return[2];o.label=3;case 3:return[3,1];case 4:return[3,11];case 5:return l=o.sent(),u={error:l},[3,11];case 6:return o.trys.push([6,,9,10]),r&&!r.done&&(c=n.return)?[4,c.call(n)]:[3,8];case 7:o.sent(),o.label=8;case 8:return[3,10];case 9:if(u)throw u.error;return[7];case 10:return[7];case 11:return e.complete(),[2]}}))}))})(t,e).catch((function(t){return e.error(t)}))}))}function Yt(t,e,n,r,i){void 0===r&&(r=0),void 0===i&&(i=!1);var o=e.schedule((function(){n(),i?t.add(this.schedule(null,r)):this.unsubscribe()}),r);if(t.add(o),!i)return o}function Ut(t,e){return void 0===e&&(e=0),G((function(n,r){n.subscribe(J(r,(function(n){return Yt(r,t,(function(){return r.next(n)}),e)}),(function(){return Yt(r,t,(function(){return r.complete()}),e)}),(function(n){return Yt(r,t,(function(){return r.error(n)}),e)})))}))}function Ht(t,e){return void 0===e&&(e=0),G((function(n,r){r.add(t.schedule((function(){return n.subscribe(r)}),e))}))}function Wt(t,e){if(!t)throw new Error("Iterable cannot be null");return new W((function(n){Yt(n,e,(function(){var r=t[Symbol.asyncIterator]();Yt(n,e,(function(){r.next().then((function(t){t.done?n.complete():n.next(t.value)}))}),0,!0)}))}))}function Bt(t,e){if(null!=t){if(jt(t))return function(t,e){return zt(t).pipe(Ht(e),Ut(e))}(t,e);if(Pt(t))return function(t,e){return new W((function(n){var r=0;return e.schedule((function(){r===t.length?n.complete():(n.next(t[r++]),n.closed||this.schedule())}))}))}(t,e);if(It(t))return function(t,e){return zt(t).pipe(Ht(e),Ut(e))}(t,e);if(Nt(t))return Wt(t,e);if(Ft(t))return function(t,e){return new W((function(n){var r;return Yt(n,e,(function(){r=t[qt](),Yt(n,e,(function(){var t,e,i;try{e=(t=r.next()).value,i=t.done}catch(t){return void n.error(t)}i?n.complete():n.next(e)}),0,!0)})),function(){return x(null==r?void 0:r.return)&&r.return()}}))}(t,e);if(Dt(t))return function(t,e){return Wt(Rt(t),e)}(t,e)}throw Lt(t)}function Xt(t,e){return e?Bt(t,e):zt(t)}function Gt(t){return t instanceof Date&&!isNaN(t)}!function(t){t.NEXT="N",t.ERROR="E",t.COMPLETE="C"}(Mt||(Mt={})),k((function(t){return function(){t(this),this.name="EmptyError",this.message="no elements in sequence"}})),k((function(t){return function(){t(this),this.name="ArgumentOutOfRangeError",this.message="argument out of range"}})),k((function(t){return function(e){t(this),this.name="NotFoundError",this.message=e}})),k((function(t){return function(e){t(this),this.name="SequenceError",this.message=e}}));var Jt=k((function(t){return function(e){void 0===e&&(e=null),t(this),this.message="Timeout has occurred",this.name="TimeoutError",this.info=e}}));function Zt(t){throw new Jt(t)}function $t(t,e){return G((function(n,r){var i=0;n.subscribe(J(r,(function(n){r.next(t.call(e,n,i++))})))}))}var Kt=Array.isArray;function Qt(t){return $t((function(e){return function(t,e){return Kt(e)?t.apply(void 0,l([],c(e))):t(e)}(t,e)}))}function te(t,e,n){return void 0===n&&(n=1/0),x(e)?te((function(n,r){return $t((function(t,i){return e(n,t,r,i)}))(zt(t(n,r)))}),n):("number"==typeof e&&(n=e),G((function(e,r){return function(t,e,n,r,i,o,u,c){var l=[],s=0,a=0,f=!1,d=function(){!f||l.length||s||e.complete()},p=function(t){return s<r?v(t):l.push(t)},v=function(t){o&&e.next(t),s++;var c=!1;zt(n(t,a++)).subscribe(J(e,(function(t){null==i||i(t),o?p(t):e.next(t)}),(function(){c=!0}),void 0,(function(){if(c)try{s--;for(var t=function(){var t=l.shift();u?Yt(e,u,(function(){return v(t)})):v(t)};l.length&&s<r;)t();d()}catch(t){e.error(t)}})))};return t.subscribe(J(e,p,(function(){f=!0,d()}))),function(){null==c||c()}}(e,r,t,n)})))}function ee(t){return void 0===t&&(t=1/0),te(H,t)}function ne(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];return ee(1)(Xt(t,Ct(t)))}var re=["addListener","removeListener"],ie=["addEventListener","removeEventListener"],oe=["on","off"];function ue(t,e,n,r){if(x(n)&&(r=n,n=void 0),r)return ue(t,e,n).pipe(Qt(r));var i=c(function(t){return x(t.addEventListener)&&x(t.removeEventListener)}(t)?ie.map((function(r){return function(i){return t[r](e,i,n)}})):function(t){return x(t.addListener)&&x(t.removeListener)}(t)?re.map(ce(t,e)):function(t){return x(t.on)&&x(t.off)}(t)?oe.map(ce(t,e)):[],2),o=i[0],u=i[1];if(!o&&Pt(t))return te((function(t){return ue(t,e,n)}))(zt(t));if(!o)throw new TypeError("Invalid event target");return new W((function(t){var e=function(){for(var e=[],n=0;n<arguments.length;n++)e[n]=arguments[n];return t.next(1<e.length?e:e[0])};return o(e),function(){return u(e)}}))}function ce(t,e){return function(n){return function(r){return t[n](e,r)}}}function le(t,e,n){void 0===t&&(t=0),void 0===n&&(n=wt);var r=-1;return null!=e&&(Tt(e)?n=e:r=e),new W((function(e){var i=Gt(t)?+t-n.now():t;i<0&&(i=0);var o=0;return n.schedule((function(){e.closed||(e.next(o++),0<=r?this.schedule(void 0,r):e.complete())}),i)}))}function se(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];var n=Ct(t),r=function(t,e){return"number"==typeof Ot(t)?t.pop():e}(t,1/0),i=t;return i.length?1===i.length?zt(i[0]):ee(r)(Xt(i,n)):St}new W(L);var ae=Array.isArray;function fe(t,e){return G((function(n,r){var i=0;n.subscribe(J(r,(function(n){return t.call(e,n,i++)&&r.next(n)})))}))}function de(){for(var t,e=[],n=0;n<arguments.length;n++)e[n]=arguments[n];return 1===(e=1===(t=e).length&&ae(t[0])?t[0]:t).length?zt(e[0]):new W(function(t){return function(e){for(var n=[],r=function(r){n.push(zt(t[r]).subscribe(J(e,(function(t){if(n){for(var i=0;i<n.length;i++)i!==r&&n[i].unsubscribe();n=null}e.next(t)}))))},i=0;n&&!e.closed&&i<t.length;i++)r(i)}}(e))}function pe(t){return t<=0?function(){return St}:G((function(e,n){var r=0;e.subscribe(J(n,(function(e){++r<=t&&(n.next(e),t<=r&&n.complete())})))}))}function ve(t,e){return e?function(n){return ne(e.pipe(pe(1),G((function(t,e){t.subscribe(J(e,L))}))),n.pipe(ve(t)))}:te((function(e,n){return zt(t(e,n)).pipe(pe(1),function(t){return $t((function(){return t}))}(e))}))}function he(t){void 0===t&&(t={});var e=t.connector,n=void 0===e?function(){return new et}:e,r=t.resetOnError,i=void 0===r||r,o=t.resetOnComplete,u=void 0===o||o,c=t.resetOnRefCountZero,l=void 0===c||c;return function(t){var e,r,o,c=0,s=!1,a=!1,f=function(){null==r||r.unsubscribe(),r=void 0},d=function(){f(),e=o=void 0,s=a=!1},p=function(){var t=e;d(),null==t||t.unsubscribe()};return G((function(t,v){c++,a||s||f();var h=o=null!=o?o:n();v.add((function(){0!==--c||a||s||(r=be(p,l))})),h.subscribe(v),!e&&c>0&&(e=new z({next:function(t){return h.next(t)},error:function(t){a=!0,f(),r=be(d,i,t),h.error(t)},complete:function(){s=!0,f(),r=be(d,u),h.complete()}}),zt(t).subscribe(e))}))(t)}}function be(t,e){for(var n=[],r=2;r<arguments.length;r++)n[r-2]=arguments[r];if(!0!==e){if(!1!==e){var i=new z({next:function(){i.unsubscribe(),t()}});return zt(e.apply(void 0,l([],c(n)))).subscribe(i)}}else t()}function ye(t,e,n){void 0===e&&(e=gt);var r=le(t,e);return function(t,e){return G((function(n,r){var i=null!=e?e:{},o=i.leading,u=void 0===o||o,c=i.trailing,l=void 0!==c&&c,s=!1,a=null,f=null,d=!1,p=function(){null==f||f.unsubscribe(),f=null,l&&(b(),d&&r.complete())},v=function(){f=null,d&&r.complete()},h=function(e){return f=zt(t(e)).subscribe(J(r,p,v))},b=function(){if(s){s=!1;var t=a;a=null,r.next(t),!d&&h(t)}};n.subscribe(J(r,(function(t){s=!0,a=t,(!f||f.closed)&&(u?b():h(t))}),(function(){d=!0,(!(l&&s&&f)||f.closed)&&r.complete()})))}))}((function(){return r}),n)}var me=["id","class","style","value","onclick","onchange","oninput","onblur","onsubmit","onfocus","onkeydown","onkeyup","onkeypress","data-reactid","data-react-checksum","data-reactroot"],ge=["type"],we=["svg","path","g"],_e=["password","hidden"];var Ae=function(t){var e;return t?(e=function(t,e){for(var n=0,r=0;r<t.length;r++){var i=t[r];if(null===i)n+=4;else{var o=xe(i);n+=o?Array.from(o).length:4}if(n>e)return t.slice(0,r)}return t}(function(t){var e=[];if(!t)return e;e.push(t);for(var n=t.parentElement;n&&"HTML"!==n.tagName;)e.push(n),n=n.parentElement;return e}(t).map((function(t){return function(t){var e,n,r,i,o,c;if(null===t)return null;var l=String(t.tagName).toLowerCase(),s={tag:l},a=Array.from(null!==(i=null===(r=t.parentElement)||void 0===r?void 0:r.children)&&void 0!==i?i:[]);a.length&&(s.index=a.indexOf(t),s.indexOfType=a.filter((function(e){return e.tagName===t.tagName})).indexOf(t));var f=null===(c=null===(o=t.previousElementSibling)||void 0===o?void 0:o.tagName)||void 0===c?void 0:c.toLowerCase();f&&(s.prevSib=String(f));var d=t.getAttribute("id");d&&(s.id=String(d));var p=Array.from(t.classList);p.length&&(s.classes=p);var v={},h=Array.from(t.attributes).filter((function(t){return!me.includes(t.name)})),b=!Oe(t);if(!_e.includes(String(t.getAttribute("type")))&&!we.includes(l))try{for(var y=u(h),m=y.next();!m.done;m=y.next()){var g=m.value;b&&!ge.includes(g.name)||(v[g.name]=String(g.value).substring(0,128))}}catch(t){e={error:t}}finally{try{m&&!m.done&&(n=y.return)&&n.call(y)}finally{if(e)throw e.error}}return Object.keys(v).length&&(s.attrs=v),s}(t)})),1024),e):[]};function xe(t,e){void 0===e&&(e=!1);try{if(null==t)return e?"None":null;if("string"==typeof t)return e?(t=t.replace(/\\/g,"\\\\").replace(/\n/g,"\\n").replace(/\t/g,"\\t").replace(/\r/g,"\\r")).includes('"')?"'".concat(t,"'"):t.includes("'")?'"'.concat(t.replace(/'/g,"\\'"),'"'):"'".concat(t,"'"):t;if("boolean"==typeof t)return t?"True":"False";if(Array.isArray(t)){var n=t.map((function(t){return xe(t,!0)}));return"[".concat(n.join(", "),"]")}if("object"==typeof t){var r=Object.entries(t).filter((function(t){return null!=c(t,1)[0]})).map((function(t){var e=c(t,2),n=e[0],r=e[1];return"".concat(String(xe(n,!0)),": ").concat(String(xe(r,!0)))})),i="{".concat(r.join(", "),"}");return i.includes("\\'")&&(i=i.replace(/'/g,"'").replace(/'/g,"\\'")),i}return t.toString()}catch(t){return null}}var ke=["input","select","textarea"],Ee=function(t,e){var n,r=null===(n=null===window||void 0===window?void 0:window.getComputedStyle)||void 0===n?void 0:n.call(window,t);return"pointer"===(null==r?void 0:r.getPropertyValue("cursor"))&&"click"===e},Se=function(t,e,n){return void 0===n&&(n=!1),function(r,i){var o,u,c=t.pageUrlAllowlist,l=t.shouldTrackEventResolver,s=null===(u=null===(o=null==i?void 0:i.tagName)||void 0===o?void 0:o.toLowerCase)||void 0===u?void 0:u.call(o);if(!s)return!1;if(l)return l(r,i);if(!Pe(window.location.href,c))return!1;var a=String(null==i?void 0:i.getAttribute("type"))||"";if("string"==typeof a)switch(a.toLowerCase()){case"hidden":case"password":return!1}var f=Ee(i,r);if(n&&f)return!0;if(e){var d=e.some((function(t){var e;return!!(null===(e=null==i?void 0:i.matches)||void 0===e?void 0:e.call(i,t))}));if(!d)return!1}switch(s){case"input":case"select":case"textarea":return"change"===r||"click"===r;default:return!!f||"click"===r}}},Te=function(t){if(null==t)return!1;if("string"==typeof t){if(/^(?:(4[0-9]{12}(?:[0-9]{3})?)|(5[1-5][0-9]{14})|(6(?:011|5[0-9]{2})[0-9]{12})|(3[47][0-9]{13})|(3(?:0[0-5]|[68][0-9])[0-9]{11})|((?:2131|1800|35[0-9]{3})[0-9]{11}))$/.test((t||"").replace(/[- ]/g,"")))return!1;if(/(^\d{3}-?\d{2}-?\d{4}$)/.test(t))return!1}return!0},Oe=function(t){var e,n,r,i=null===(n=null===(e=null==t?void 0:t.tagName)||void 0===e?void 0:e.toLowerCase)||void 0===n?void 0:n.call(e),o=t instanceof HTMLElement&&"true"===(null===(r=t.getAttribute("contenteditable"))||void 0===r?void 0:r.toLowerCase());return!ke.includes(i)&&!o},Ce=function(t){var e="";return Oe(t)&&t.childNodes&&t.childNodes.length&&t.childNodes.forEach((function(t){var n,r="";(n=t)&&3===n.nodeType?t.textContent&&(r=t.textContent):r=Ce(t),e+=r.split(/(\s+)/).filter(Te).join("").replace(/[\r\n]/g," ").replace(/[ ]+/g," ").substring(0,255)})),e},Pe=function(t,e){return!e||!e.length||e.some((function(e){return"string"==typeof e?t===e:t.match(e)}))},Ie=function(t){return Object.keys(t).reduce((function(e,n){var r=t[n];return function(t){return null==t||"object"==typeof t&&0===Object.keys(t).length||"string"==typeof t&&0===t.trim().length}(r)||(e[n]=r),e}),{})},je=function(t){var e,n=t.parentElement;if(!n)return"";try{e=n.querySelector(":scope>span,h1,h2,h3,h4,h5,h6")}catch(t){e=null}if(e){var r=e.textContent||"";return Te(r)?r:""}return je(n)},Ne=function(t,e){return t?e.some((function(e){var n;return null===(n=null==t?void 0:t.matches)||void 0===n?void 0:n.call(t,e)}))?t:Ne(null==t?void 0:t.parentElement,e):null},Le=function(t){var e,n,r;if(!t)return{};var i=null===(r=null===(n=null==t?void 0:t.tagName)||void 0===n?void 0:n.toLowerCase)||void 0===r?void 0:r.call(n),o=((e={})[m]=i,e[g]=Ce(t),e[w]=window.location.href.split("?")[0],e);return Ie(o)};var Me=function(t){return!(null===t.event.target||!t.closestTrackedAncestor)},qe=function(t,e,n){var r,i,o,u=null===(o=null===(i=null==e?void 0:e.tagName)||void 0===i?void 0:i.toLowerCase)||void 0===o?void 0:o.call(i),c="function"==typeof e.getBoundingClientRect?e.getBoundingClientRect():{left:null,top:null},l=e.getAttribute("aria-label"),s=function(t,e){return t.getAttributeNames().reduce((function(n,r){if(r.startsWith(e)){var i=r.replace(e,""),o=t.getAttribute(r);i&&(n[i]=o||"")}return n}),{})}(e,n),a=je(e),f=((r={})["[Amplitude] Element ID"]=e.getAttribute("id")||"",r["[Amplitude] Element Class"]=e.getAttribute("class"),r["[Amplitude] Element Hierarchy"]=Ae(e),r[m]=u,r[g]=Ce(e),r["[Amplitude] Element Position Left"]=null==c.left?null:Math.round(c.left),r["[Amplitude] Element Position Top"]=null==c.top?null:Math.round(c.top),r["[Amplitude] Element Aria Label"]=l,r["[Amplitude] Element Attributes"]=s,r["[Amplitude] Element Parent Label"]=a,r[w]=window.location.href.split("?")[0],r["[Amplitude] Page Title"]="undefined"!=typeof document&&document.title||"",r["[Amplitude] Viewport Height"]=window.innerHeight,r["[Amplitude] Viewport Width"]=window.innerWidth,r);return"a"===u&&"click"===t&&e instanceof HTMLAnchorElement&&(f["[Amplitude] Element Href"]=e.href),Ie(f)},Fe=function(t,e,n,r,i){void 0===i&&(i=!1);var o={event:t,timestamp:Date.now(),type:e};if(function(t){return"click"===t.type||"change"===t.type}(o)&&null!==o.event.target){if(i)if(Ee(o.event.target,o.type))return o.closestTrackedAncestor=o.event.target,o.targetElementProperties=qe(o.type,o.closestTrackedAncestor,r),o;var u=Ne(o.event.target,n);return u&&(o.closestTrackedAncestor=u,o.targetElementProperties=qe(o.type,u,r)),o}return o};var Re=function(){function t(t){var e=(void 0===t?{}:t).origin,n=void 0===e?_:e,r=this;this.endpoint=_,this.requestCallbacks={},this.onSelect=function(t){r.notify({action:"element-selected",data:t})},this.onTrack=function(t,e){"selector-mode-changed"===t?r.notify({action:"track-selector-mode-changed",data:e}):"selector-moved"===t&&r.notify({action:"track-selector-moved",data:e})},this.endpoint=n}return t.prototype.notify=function(t){var e,n,r,i;null===(n=null===(e=this.logger)||void 0===e?void 0:e.debug)||void 0===n||n.call(e,"Message sent: ",JSON.stringify(t)),null===(i=null===(r=window.opener)||void 0===r?void 0:r.postMessage)||void 0===i||i.call(r,t,this.endpoint)},t.prototype.sendRequest=function(t,e,n){var r=this;void 0===n&&(n={timeout:15e3});var i="".concat(Date.now(),"-").concat(Math.random().toString(36).substr(2,9)),o={id:i,action:t,args:e};return new Promise((function(e,u){r.requestCallbacks[i]={resolve:e,reject:u},r.notify(o),(null==n?void 0:n.timeout)>0&&setTimeout((function(){u(new Error("".concat(t," timed out (id: ").concat(i,")"))),delete r.requestCallbacks[i]}),n.timeout)}))},t.prototype.handleResponse=function(t){var e;this.requestCallbacks[t.id]?(this.requestCallbacks[t.id].resolve(t.responseData),delete this.requestCallbacks[t.id]):null===(e=this.logger)||void 0===e||e.warn("No callback found for request id: ".concat(t.id))},t.prototype.setup=function(t){var e=this,n=void 0===t?{}:t,r=n.logger,i=n.endpoint,o=n.isElementSelectable,u=n.cssSelectorAllowlist,c=n.actionClickAllowlist;this.logger=r,i&&this.endpoint===_&&(this.endpoint=i);var l=null;window.addEventListener("message",(function(t){var n,r,i,s,a;if(null===(r=null===(n=e.logger)||void 0===n?void 0:n.debug)||void 0===r||r.call(n,"Message received: ",JSON.stringify(t)),e.endpoint===t.origin){var f,d=null==t?void 0:t.data,p=null==d?void 0:d.action;if(p)if("id"in d)null===(s=null===(i=e.logger)||void 0===i?void 0:i.debug)||void 0===s||s.call(i,"Received Response to previous request: ",JSON.stringify(t)),e.handleResponse(d);else if("ping"===p)e.notify({action:"pong"});else if("initialize-visual-tagging-selector"===p){var v=null==d?void 0:d.data;(f="https://cdn.amplitude.com/libs/visual-tagging-selector-1.0.0-alpha.js.gz",new Promise((function(t,e){var n;try{var r=document.createElement("script");r.type="text/javascript",r.async=!0,r.src=f,r.addEventListener("load",(function(){t({status:!0})}),{once:!0}),r.addEventListener("error",(function(){e({status:!1,message:"Failed to load the script ".concat(f)})})),null===(n=document.head)||void 0===n||n.appendChild(r)}catch(t){e(t)}}))).then((function(){var t;l=null===(t=null===window||void 0===window?void 0:window.amplitudeVisualTaggingSelector)||void 0===t?void 0:t.call(window,{getEventTagProps:Le,isElementSelectable:function(t){return!o||o((null==v?void 0:v.actionType)||"click",t)},onTrack:e.onTrack,onSelect:e.onSelect,visualHighlightClass:"amp-visual-tagging-selector-highlight",messenger:e,cssSelectorAllowlist:u,actionClickAllowlist:c}),e.notify({action:"selector-loaded"})})).catch((function(){var t;null===(t=e.logger)||void 0===t||t.warn("Failed to initialize visual tagging selector")}))}else"close-visual-tagging-selector"===p&&(null===(a=null==l?void 0:l.close)||void 0===a||a.call(l))}})),this.notify({action:"page-loaded"})},t}();function De(t){var e,n,r,i=t.amplitude,o=t.allObservables,l=t.options,s=t.shouldTrackEvent,a=t.evaluateTriggers,f=o.clickObservable,d=f.pipe(G((function(t,e){var n,r=!1;t.subscribe(J(e,(function(t){var i=n;n=t,r&&e.next([i,t]),r=!0})))})),fe((function(t){var e=c(t,2),n=e[0],r=e[1],i=n.event.target!==r.event.target,o=Math.abs(r.event.screenX-n.event.screenX)<=20&&Math.abs(r.event.screenY-n.event.screenY)<=20;return i&&!o}))),p=se(d,f.pipe((e=l.debounceTime,void 0===n&&(n=gt),G((function(t,r){var i=null,o=null,u=null,c=function(){if(i){i.unsubscribe(),i=null;var t=o;o=null,r.next(t)}};function l(){var t=u+e,o=n.now();if(o<t)return i=this.schedule(void 0,t-o),void r.add(i);c()}t.subscribe(J(r,(function(t){o=t,u=n.now(),i||(i=n.schedule(l,e),r.add(i))}),(function(){c(),r.complete()}),void 0,(function(){o=i=null})))}))),$t((function(){return"timeout"})))),v=f.pipe(function(t,e){void 0===e&&(e=gt);var n=le(t,e);return ve((function(){return n}))}(0),fe(Me),fe((function(t){return s("click",t.closestTrackedAncestor)})),$t((function(t){return a(t)})),(r=p,G((function(t,e){var n=[];return t.subscribe(J(e,(function(t){return n.push(t)}),(function(){e.next(n),e.complete()}))),zt(r).subscribe(J(e,(function(){var t=n;n=[],e.next(t)}),L)),function(){n=null}}))));return v.subscribe((function(t){var e,n,r=(t.length,y);try{for(var o=u(t),c=o.next();!c.done;c=o.next()){var l=c.value;null==i||i.track(r,l.targetElementProperties)}}catch(t){e={error:t}}finally{try{c&&!c.done&&(n=o.return)&&n.call(o)}finally{if(e)throw e.error}}}))}function ze(t){var e=t.amplitude,n=t.allObservables,r=t.options,i=t.getEventProperties,o=t.shouldTrackEvent,u=t.shouldTrackActionClick,s=n.clickObservable,a=n.mutationObservable,f=n.navigateObservable,d=s.pipe(fe((function(t){return!o("click",t.closestTrackedAncestor)})),$t((function(t){var e=Ne(t.event.target,r.actionClickAllowlist);return t.closestTrackedAncestor=e,null!==t.closestTrackedAncestor&&(t.targetElementProperties=i(t.type,t.closestTrackedAncestor)),t})),fe(Me),fe((function(t){return u("click",t.closestTrackedAncestor)}))),p=[a];f&&p.push(f);var v,h,b=se.apply(void 0,l([],c(p),!1)),m=d.pipe((v=function(t){return b.pipe(pe(1),function(t,e){var n=Gt(t)?{first:t}:"number"==typeof t?{each:t}:t,r=n.first,i=n.each,o=n.with,u=void 0===o?Zt:o,c=n.scheduler,l=void 0===c?null!=e?e:gt:c,s=n.meta,a=void 0===s?null:s;if(null==r&&null==i)throw new TypeError("No timeout provided.");return G((function(t,e){var n,o,c=null,s=0,f=function(t){o=Yt(e,l,(function(){try{n.unsubscribe(),zt(u({meta:a,lastValue:c,seen:s})).subscribe(e)}catch(t){e.error(t)}}),t)};n=t.subscribe(J(e,(function(t){null==o||o.unsubscribe(),s++,e.next(c=t),i>0&&f(i)}),void 0,void 0,(function(){(null==o?void 0:o.closed)||null==o||o.unsubscribe(),c=null}))),!s&&f(null!=r?"number"==typeof r?r:+r-l.now():i)}))}({first:500,with:function(){return St}}),$t((function(){return t})))},G((function(t,e){var n=null,r=0,i=!1,o=function(){return i&&!n&&e.complete()};t.subscribe(J(e,(function(t){null==n||n.unsubscribe();var i=0,u=r++;zt(v(t,u)).subscribe(n=J(e,(function(n){return e.next(h?h(t,n,u,i++):n)}),(function(){n=null,o()})))}),(function(){i=!0,o()})))}))));return m.subscribe((function(t){null==e||e.track(y,i("click",t.closestTrackedAncestor))}))}var Ve,Ye=function(){return new W((function(t){var e=new MutationObserver((function(e){t.next(e)}));return e.observe(document.body,{childList:!0,attributes:!0,characterData:!0,subtree:!0}),function(){return e.disconnect()}}))},Ue=function(){return ue(document,"click",{capture:!0})},He=function(t,e){return e.filter((function(e){return e.definition.some((function(e){return e.event_type===t.type&&e.filters.every((function(e){return function(t,e){try{if("[Amplitude] Element Text"===e.subprop_key)return"exact"===e.subprop_op&&e.subprop_value.includes(t.targetElementProperties["[Amplitude] Element Text"]);if("[Amplitude] Element Hierarchy"===e.subprop_key)return"autotrack css match"===e.subprop_op&&!!t.closestTrackedAncestor.closest(e.subprop_value.toString())}catch(t){return console.error("Error matching event to filter",t),!1}return!1}(t,e)}))}))}))},We=function(t,e){if("DOM_ELEMENT"===t.sourceType){var n=function(t,e){if("DOM_ELEMENT"===t.sourceType){var n=document.documentElement;return t.scope&&e&&(n=e.closest(t.scope)),n&&t.selector?n.querySelector(t.selector):n}}(t,e);if(!n)return;return"TEXT"===t.elementExtractType?n.textContent:"ATTRIBUTE"===t.elementExtractType&&t.attribute?n.getAttribute(t.attribute):void 0}},Be=function(t,e){t.forEach((function(t){if("string"!=typeof t&&"ATTACH_EVENT_PROPERTY"===t.actionType){var n=We(t.dataSource,e.closestTrackedAncestor);e.targetElementProperties[t.destinationKey]=n}}))};!function(t){t.ClickObservable="clickObservable",t.ChangeObservable="changeObservable",t.NavigateObservable="navigateObservable",t.MutationObservable="mutationObservable"}(Ve||(Ve={}));var Xe=function(t){var e,n,s,a,f,h,b;void 0===t&&(t={});var y=t.dataAttributePrefix,m=void 0===y?p:y,g=t.visualTaggingOptions,w=void 0===g?{enabled:!0,messenger:new Re}:g;t.cssSelectorAllowlist=null!==(e=t.cssSelectorAllowlist)&&void 0!==e?e:d,t.actionClickAllowlist=null!==(n=t.actionClickAllowlist)&&void 0!==n?n:v,t.debounceTime=null!==(s=t.debounceTime)&&void 0!==s?s:0;var _="@amplitude/plugin-autocapture-browser",x=[],k=function(t){var e,n,r,i,o,c={click:new Set,change:new Set};if(!t)return c;try{for(var l=u(t),s=l.next();!s.done;s=l.next()){var a=s.value;try{try{for(var f=(r=void 0,u(a.definition)),d=f.next();!d.done;d=f.next())null===(o=c[d.value.event_type])||void 0===o||o.add(a.id)}catch(t){r={error:t}}finally{try{d&&!d.done&&(i=f.return)&&i.call(f)}finally{if(r)throw r.error}}}catch(t){console.warn("Skipping Labeled Event due to malformed definition",null==a?void 0:a.id,t)}}}catch(t){e={error:t}}finally{try{s&&!s.done&&(n=l.return)&&n.call(l)}finally{if(e)throw e.error}}return c}(Object.values(null!==(f=null===(a=t.pageActions)||void 0===a?void 0:a.labeledEvents)&&void 0!==f?f:{})),E=function(t){var e,n,r,i,o=new Map;try{for(var c=u(t),l=c.next();!l.done;l=c.next()){var s=l.value;try{for(var a=(r=void 0,u(s.conditions)),f=a.next();!f.done;f=a.next()){var d=f.value;if("LABELED_EVENT"===d.type){var p=d.match.eventId,v=o.get(p);v||(v=[],o.set(p,v)),v.push(s)}}}catch(t){r={error:t}}finally{try{f&&!f.done&&(i=a.return)&&i.call(a)}finally{if(r)throw r.error}}}}catch(t){e={error:t}}finally{try{l&&!l.done&&(n=c.return)&&n.call(c)}finally{if(e)throw e.error}}return o}(null!==(b=null===(h=t.pageActions)||void 0===h?void 0:h.triggers)&&void 0!==b?b:[]),S=function(e){var n,r,i=t.pageActions;if(!i)return e;var o=function(t,e){var n,r,i=new Set;try{for(var o=u(t),c=o.next();!c.done;c=o.next()){var l=c.value,s=e.get(l.id);s&&s.forEach((function(t){return i.add(t)}))}}catch(t){n={error:t}}finally{try{c&&!c.done&&(r=o.return)&&r.call(o)}finally{if(n)throw n.error}}return Array.from(i)}(He(e,Array.from(k[e.type]).map((function(t){return i.labeledEvents[t]}))),E);try{for(var c=u(o),l=c.next();!l.done;l=c.next()){var s=l.value;Be(s.actions,e)}}catch(t){n={error:t}}finally{try{l&&!l.done&&(r=c.return)&&r.call(c)}finally{if(n)throw n.error}}return e};return{name:_,type:"enrichment",setup:function(e,n){return i(void 0,void 0,void 0,(function(){var i,u,s,a,f,d,p,v,h,b;return o(this,(function(o){return"undefined"==typeof document||(i=Se(t,t.cssSelectorAllowlist),u=Se(t,t.actionClickAllowlist),s=function(){var e,n,r=Ue().pipe($t((function(e){return Fe(e,"click",t.cssSelectorAllowlist,m)})),he()),i=ue(document,"change",{capture:!0}).pipe($t((function(e){return Fe(e,"change",t.cssSelectorAllowlist,m)})),he());window.navigation&&(n=ue(window.navigation,"navigate").pipe($t((function(e){return Fe(e,"navigate",t.cssSelectorAllowlist,m)})),he()));var o=Ye().pipe($t((function(e){return Fe(e,"mutation",t.cssSelectorAllowlist,m)})),he());return(e={})[Ve.ClickObservable]=r,e[Ve.ChangeObservable]=i,e[Ve.NavigateObservable]=n,e[Ve.MutationObservable]=o,e}(),a=De({allObservables:s,options:t,amplitude:n,shouldTrackEvent:i,evaluateTriggers:S}),x.push(a),f=function(t){var e=t.amplitude,n=t.allObservables,r=t.getEventProperties,i=t.shouldTrackEvent,o=t.evaluateTriggers;return n.changeObservable.pipe(fe(Me),fe((function(t){return i("change",t.closestTrackedAncestor)})),$t((function(t){return o(t)}))).subscribe((function(t){null==e||e.track("[Amplitude] Element Changed",r("change",t.closestTrackedAncestor))}))}({allObservables:s,getEventProperties:function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];return qe.apply(void 0,l(l([],c(t),!1),[m],!1))},amplitude:n,shouldTrackEvent:i,evaluateTriggers:S}),x.push(f),d=ze({allObservables:s,options:t,getEventProperties:function(){for(var t=[],e=0;e<arguments.length;e++)t[e]=arguments[e];return qe.apply(void 0,l(l([],c(t),!1),[m],!1))},amplitude:n,shouldTrackEvent:i,shouldTrackActionClick:u}),x.push(d),null===(h=null==e?void 0:e.loggerProvider)||void 0===h||h.log("".concat(_," has been successfully added.")),window.opener&&w.enabled&&(p=t.cssSelectorAllowlist,v=t.actionClickAllowlist,null===(b=w.messenger)||void 0===b||b.setup(r(r({logger:null==e?void 0:e.loggerProvider},(null==e?void 0:e.serverZone)&&{endpoint:A[e.serverZone]}),{isElementSelectable:Se(t,l(l([],c(p),!1),c(v),!1)),cssSelectorAllowlist:p,actionClickAllowlist:v})))),[2]}))}))},execute:function(t){return i(void 0,void 0,void 0,(function(){return o(this,(function(e){return[2,t]}))}))},teardown:function(){return i(void 0,void 0,void 0,(function(){var t,e,n,r;return o(this,(function(i){try{for(t=u(x),e=t.next();!e.done;e=t.next())e.value.unsubscribe()}catch(t){n={error:t}}finally{try{e&&!e.done&&(r=t.return)&&r.call(t)}finally{if(n)throw n.error}}return[2]}))}))}}};return t.WindowMessenger=Re,t.autocapturePlugin=Xe,t.frustrationPlugin=function(t){var e,n,s,a,f;void 0===t&&(t={});var d="@amplitude/plugin-frustration-browser",v=[],y=null!==(n=null===(e=t.rageClicks)||void 0===e?void 0:e.cssSelectorAllowlist)&&void 0!==n?n:b,m=null!==(a=null===(s=t.deadClicks)||void 0===s?void 0:s.cssSelectorAllowlist)&&void 0!==a?a:h,g=null!==(f=t.dataAttributePrefix)&&void 0!==f?f:p,w=l([],c(new Set(l(l([],c(y),!1),c(m),!1))),!1);return{name:d,type:"enrichment",setup:function(e,n){return i(void 0,void 0,void 0,(function(){var i,u,s,a,f,p;return o(this,(function(o){return"undefined"==typeof document||(i=Se(t,y),u=Se(t,m),s=function(){var t,e,n=Ue().pipe($t((function(t){return Fe(t,"click",w,g,!0)})),he());window.navigation&&(e=ue(window.navigation,"navigate").pipe($t((function(t){return Fe(t,"navigate",w,g)})),he()));var r=Ye().pipe($t((function(t){return Fe(t,"mutation",w,g)})),he());return(t={})[Ve.ClickObservable]=n,t[Ve.ChangeObservable]=new W,t[Ve.NavigateObservable]=e,t[Ve.MutationObservable]=r,t}(),a=function(t){var e=t.amplitude,n=t.allObservables,i=t.shouldTrackRageClick,o=n.clickObservable,u=[];return o.pipe(fe(Me),fe((function(t){return i("click",t.closestTrackedAncestor)})),$t((function(t){var e=t.timestamp;u.length>0&&u[u.length-1].closestTrackedAncestor!==t.closestTrackedAncestor&&u.splice(0,u.length);for(var n=0;n<u.length&&!(e-u[n].timestamp<1e3);n++);if(u.splice(0,n),u.push(t),u.length<4)return null;var i=u[0],o=u[u.length-1],c=r({"[Amplitude] Begin Time":new Date(i.timestamp).toISOString(),"[Amplitude] End Time":new Date(o.timestamp).toISOString(),"[Amplitude] Duration":o.timestamp-i.timestamp,"[Amplitude] Clicks":u.map((function(t){return{X:t.event.clientX,Y:t.event.clientY,Time:t.timestamp}})),"[Amplitude] Click Count":u.length},i.targetElementProperties);return u.splice(0,u.length),{rageClickEvent:c,time:i.timestamp}})),fe((function(t){return null!==t}))).subscribe((function(t){null!==t&&e.track("[Amplitude] Rage Click",t.rageClickEvent,{time:t.time})}))}({allObservables:s,amplitude:n,shouldTrackRageClick:i}),v.push(a),f=function(t){var e=t.amplitude,n=t.allObservables,i=t.getEventProperties,o=t.shouldTrackDeadClick,u=n.clickObservable,s=n.mutationObservable,a=n.navigateObservable,f=u.pipe(fe(Me),fe((function(t){return o("click",t.closestTrackedAncestor)}))),d=[s];a&&d.push(a);var p=se.apply(void 0,l([],c(d),!1));return f.pipe(te((function(t){var e;return de(new W((function(n){return e=setTimeout((function(){return n.next(t)}),3e3),function(){clearTimeout(e)}})),p.pipe(pe(1),$t((function(){return null})))).pipe(fe((function(t){return null!==t})))})),ye(3e3)).subscribe((function(t){var n={"[Amplitude] X":t.event.clientX,"[Amplitude] Y":t.event.clientY};e.track("[Amplitude] Dead Click",r(r({},i("click",t.closestTrackedAncestor)),n),{time:t.timestamp})}))}({amplitude:n,allObservables:s,getEventProperties:function(t,e){return qe(t,e,g)},shouldTrackDeadClick:u}),v.push(f),null===(p=null==e?void 0:e.loggerProvider)||void 0===p||p.log("".concat(d," has been successfully added."))),[2]}))}))},execute:function(t){return i(void 0,void 0,void 0,(function(){return o(this,(function(e){return[2,t]}))}))},teardown:function(){return i(void 0,void 0,void 0,(function(){var t,e,n,r;return o(this,(function(i){try{for(t=u(v),e=t.next();!e.done;e=t.next())e.value.unsubscribe()}catch(t){n={error:t}}finally{try{e&&!e.done&&(r=t.return)&&r.call(t)}finally{if(n)throw n.error}}return[2]}))}))}}},t.plugin=Xe,Object.defineProperty(t,"__esModule",{value:!0}),t}({});
1
+ var amplitudeAutocapturePlugin=function(e){"use strict";var t=function(e,n){return t=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(e,t){e.__proto__=t}||function(e,t){for(var n in t)Object.prototype.hasOwnProperty.call(t,n)&&(e[n]=t[n])},t(e,n)};function n(e,n){if("function"!=typeof n&&null!==n)throw new TypeError("Class extends value "+String(n)+" is not a constructor or null");function r(){this.constructor=e}t(e,n),e.prototype=null===n?Object.create(n):(r.prototype=n.prototype,new r)}var r=function(){return r=Object.assign||function(e){for(var t,n=1,r=arguments.length;n<r;n++)for(var i in t=arguments[n])Object.prototype.hasOwnProperty.call(t,i)&&(e[i]=t[i]);return e},r.apply(this,arguments)};function i(e,t,n,r){return new(n||(n=Promise))((function(i,o){function u(e){try{l(r.next(e))}catch(e){o(e)}}function c(e){try{l(r.throw(e))}catch(e){o(e)}}function l(e){var t;e.done?i(e.value):(t=e.value,t instanceof n?t:new n((function(e){e(t)}))).then(u,c)}l((r=r.apply(e,t||[])).next())}))}function o(e,t){var n,r,i,o={label:0,sent:function(){if(1&i[0])throw i[1];return i[1]},trys:[],ops:[]},u=Object.create(("function"==typeof Iterator?Iterator:Object).prototype);return u.next=c(0),u.throw=c(1),u.return=c(2),"function"==typeof Symbol&&(u[Symbol.iterator]=function(){return this}),u;function c(c){return function(l){return function(c){if(n)throw new TypeError("Generator is already executing.");for(;u&&(u=0,c[0]&&(o=0)),o;)try{if(n=1,r&&(i=2&c[0]?r.return:c[0]?r.throw||((i=r.return)&&i.call(r),0):r.next)&&!(i=i.call(r,c[1])).done)return i;switch(r=0,i&&(c=[2&c[0],i.value]),c[0]){case 0:case 1:i=c;break;case 4:return o.label++,{value:c[1],done:!1};case 5:o.label++,r=c[1],c=[0];continue;case 7:c=o.ops.pop(),o.trys.pop();continue;default:if(!(i=o.trys,(i=i.length>0&&i[i.length-1])||6!==c[0]&&2!==c[0])){o=0;continue}if(3===c[0]&&(!i||c[1]>i[0]&&c[1]<i[3])){o.label=c[1];break}if(6===c[0]&&o.label<i[1]){o.label=i[1],i=c;break}if(i&&o.label<i[2]){o.label=i[2],o.ops.push(c);break}i[2]&&o.ops.pop(),o.trys.pop();continue}c=t.call(e,o)}catch(e){c=[6,e],r=0}finally{n=i=0}if(5&c[0])throw c[1];return{value:c[0]?c[1]:void 0,done:!0}}([c,l])}}}function u(e){var t="function"==typeof Symbol&&Symbol.iterator,n=t&&e[t],r=0;if(n)return n.call(e);if(e&&"number"==typeof e.length)return{next:function(){return e&&r>=e.length&&(e=void 0),{value:e&&e[r++],done:!e}}};throw new TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")}function c(e,t){var n="function"==typeof Symbol&&e[Symbol.iterator];if(!n)return e;var r,i,o=n.call(e),u=[];try{for(;(void 0===t||t-- >0)&&!(r=o.next()).done;)u.push(r.value)}catch(e){i={error:e}}finally{try{r&&!r.done&&(n=o.return)&&n.call(o)}finally{if(i)throw i.error}}return u}function l(e,t,n){if(n||2===arguments.length)for(var r,i=0,o=t.length;i<o;i++)!r&&i in t||(r||(r=Array.prototype.slice.call(t,0,i)),r[i]=t[i]);return e.concat(r||Array.prototype.slice.call(t))}function s(e){return this instanceof s?(this.v=e,this):new s(e)}function a(e,t,n){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var r,i=n.apply(e,t||[]),o=[];return r=Object.create(("function"==typeof AsyncIterator?AsyncIterator:Object).prototype),u("next"),u("throw"),u("return",(function(e){return function(t){return Promise.resolve(t).then(e,a)}})),r[Symbol.asyncIterator]=function(){return this},r;function u(e,t){i[e]&&(r[e]=function(t){return new Promise((function(n,r){o.push([e,t,n,r])>1||c(e,t)}))},t&&(r[e]=t(r[e])))}function c(e,t){try{(n=i[e](t)).value instanceof s?Promise.resolve(n.value.v).then(l,a):f(o[0][2],n)}catch(e){f(o[0][3],e)}var n}function l(e){c("next",e)}function a(e){c("throw",e)}function f(e,t){e(t),o.shift(),o.length&&c(o[0][0],o[0][1])}}function f(e){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var t,n=e[Symbol.asyncIterator];return n?n.call(e):(e=u(e),t={},r("next"),r("throw"),r("return"),t[Symbol.asyncIterator]=function(){return this},t);function r(n){t[n]=e[n]&&function(t){return new Promise((function(r,i){(function(e,t,n,r){Promise.resolve(r).then((function(t){e({value:t,done:n})}),t)})(r,i,(t=e[n](t)).done,t.value)}))}}}"function"==typeof SuppressedError&&SuppressedError;var d,v,h=["a","button","input","select","textarea","label","video","audio",'[contenteditable="true" i]',"[data-amp-default-track]",".amp-default-track"],p="data-amp-track-",b=["div","span","h1","h2","h3","h4","h5","h6"],y=l(['input[type="button"]','input[type="submit"]','input[type="reset"]','input[type="image"]','input[type="file"]'],c(["a","button",'[role="button"]','[role="link"]','[role="menuitem"]','[role="menuitemcheckbox"]','[role="menuitemradio"]','[role="option"]','[role="tab"]','[role="treeitem"]','[contenteditable="true" i]']),!1),m=["*"];!function(e){e.US="US",e.EU="EU",e.STAGING="STAGING"}(d||(d={})),function(e){e.Unknown="unknown",e.Skipped="skipped",e.Success="success",e.RateLimit="rate_limit",e.PayloadTooLarge="payload_too_large",e.Invalid="invalid",e.Failed="failed",e.Timeout="Timeout",e.SystemError="SystemError"}(v||(v={}));var g=function(){function e(){}return e.prototype.send=function(e,t){return Promise.resolve(null)},e.prototype.buildResponse=function(e){var t,n,r,i,o,u,c,l,s,a,f,d,h,p,b,y,m,g,w,_,A,x;if("object"!=typeof e)return null;var E=e.code||0,S=this.buildStatus(E);switch(S){case v.Success:return{status:S,statusCode:E,body:{eventsIngested:null!==(t=e.events_ingested)&&void 0!==t?t:0,payloadSizeBytes:null!==(n=e.payload_size_bytes)&&void 0!==n?n:0,serverUploadTime:null!==(r=e.server_upload_time)&&void 0!==r?r:0}};case v.Invalid:return{status:S,statusCode:E,body:{error:null!==(i=e.error)&&void 0!==i?i:"",missingField:null!==(o=e.missing_field)&&void 0!==o?o:"",eventsWithInvalidFields:null!==(u=e.events_with_invalid_fields)&&void 0!==u?u:{},eventsWithMissingFields:null!==(c=e.events_with_missing_fields)&&void 0!==c?c:{},eventsWithInvalidIdLengths:null!==(l=e.events_with_invalid_id_lengths)&&void 0!==l?l:{},epsThreshold:null!==(s=e.eps_threshold)&&void 0!==s?s:0,exceededDailyQuotaDevices:null!==(a=e.exceeded_daily_quota_devices)&&void 0!==a?a:{},silencedDevices:null!==(f=e.silenced_devices)&&void 0!==f?f:[],silencedEvents:null!==(d=e.silenced_events)&&void 0!==d?d:[],throttledDevices:null!==(h=e.throttled_devices)&&void 0!==h?h:{},throttledEvents:null!==(p=e.throttled_events)&&void 0!==p?p:[]}};case v.PayloadTooLarge:return{status:S,statusCode:E,body:{error:null!==(b=e.error)&&void 0!==b?b:""}};case v.RateLimit:return{status:S,statusCode:E,body:{error:null!==(y=e.error)&&void 0!==y?y:"",epsThreshold:null!==(m=e.eps_threshold)&&void 0!==m?m:0,throttledDevices:null!==(g=e.throttled_devices)&&void 0!==g?g:{},throttledUsers:null!==(w=e.throttled_users)&&void 0!==w?w:{},exceededDailyQuotaDevices:null!==(_=e.exceeded_daily_quota_devices)&&void 0!==_?_:{},exceededDailyQuotaUsers:null!==(A=e.exceeded_daily_quota_users)&&void 0!==A?A:{},throttledEvents:null!==(x=e.throttled_events)&&void 0!==x?x:[]}};case v.Timeout:default:return{status:S,statusCode:E}}},e.prototype.buildStatus=function(e){return e>=200&&e<300?v.Success:429===e?v.RateLimit:413===e?v.PayloadTooLarge:408===e?v.Timeout:e>=400&&e<500?v.Invalid:e>=500?v.Failed:v.Unknown},e}(),w="Remote config fetch rejected due to timeout after 5 seconds",_="Unexpected error occurred",A=function(){function e(e){var t=e.localConfig,n=e.configKeys,c=this;this.retryTimeout=1e3,this.attempts=0,this.sessionTargetingMatch=!1,this.metrics={},this.getRemoteNamespaceConfig=function(e,t){return i(c,void 0,void 0,(function(){var n,r,i;return o(this,(function(o){switch(o.label){case 0:return n=Date.now(),[4,this.fetchWithTimeout(t)];case 1:return(r=o.sent())&&(i=r.configs&&r.configs[e])?(this.metrics.fetchTimeAPISuccess=Date.now()-n,[2,i]):(this.metrics.fetchTimeAPIFail=Date.now()-n,[2,void 0])}}))}))},this.getRemoteConfig=function(e,t,n){return i(c,void 0,void 0,(function(){var r;return o(this,(function(i){switch(i.label){case 0:return[4,this.getRemoteNamespaceConfig(e,n)];case 1:return[2,null==(r=i.sent())?void 0:r[t]]}}))}))},this.fetchWithTimeout=function(e){return i(c,void 0,void 0,(function(){var t,n,r;return o(this,(function(i){switch(i.label){case 0:return t=new AbortController,n=setTimeout((function(){return t.abort()}),5e3),[4,this.fetchRemoteConfig(t.signal,e)];case 1:return r=i.sent(),clearTimeout(n),[2,r]}}))}))},this.fetchRemoteConfig=function(e,t){return i(c,void 0,void 0,(function(){var n,i,c,l,s,a,f,d,h,p,b,y;return o(this,(function(o){switch(o.label){case 0:if(t===this.lastFetchedSessionId&&this.attempts>=this.localConfig.flushMaxRetries)return[2,this.completeRequest({err:"Remote config fetch rejected due to exceeded retry count"})];if(e.aborted)return[2,this.completeRequest({err:w})];t!==this.lastFetchedSessionId&&(this.lastFetchedSessionId=t,this.attempts=0),o.label=1;case 1:o.trys.push([1,3,,4]),n=new URLSearchParams({api_key:this.localConfig.apiKey});try{for(i=u(this.configKeys),c=i.next();!c.done;c=i.next())l=c.value,n.append("config_keys",l)}catch(e){p={error:e}}finally{try{c&&!c.done&&(b=i.return)&&b.call(i)}finally{if(p)throw p.error}}return t&&n.set("session_id",String(t)),s={headers:{Accept:"*/*"},method:"GET"},a="".concat(this.getServerUrl(),"?").concat(n.toString()),this.attempts+=1,[4,fetch(a,r(r({},s),{signal:e}))];case 2:if(null===(f=o.sent()))return[2,this.completeRequest({err:_})];switch((new g).buildStatus(f.status)){case v.Success:return this.attempts=0,[2,this.parseAndStoreConfig(f)];case v.Failed:return[2,this.retryFetch(e,t)];default:return[2,this.completeRequest({err:"Network error occurred, remote config fetch failed"})]}case 3:return d=o.sent(),h=d,e.aborted?[2,this.completeRequest({err:w})]:[2,this.completeRequest({err:null!==(y=h.message)&&void 0!==y?y:_})];case 4:return[2]}}))}))},this.retryFetch=function(e,t){return i(c,void 0,void 0,(function(){var n=this;return o(this,(function(r){switch(r.label){case 0:return[4,new Promise((function(e){return setTimeout(e,n.attempts*n.retryTimeout)}))];case 1:return r.sent(),[2,this.fetchRemoteConfig(e,t)]}}))}))},this.parseAndStoreConfig=function(e){return i(c,void 0,void 0,(function(){var t;return o(this,(function(n){switch(n.label){case 0:return[4,e.json()];case 1:return t=n.sent(),this.completeRequest({success:"Remote config successfully fetched"}),[2,t]}}))}))},this.localConfig=t,this.configKeys=n}return e.prototype.getServerUrl=function(){return this.localConfig.configServerUrl?this.localConfig.configServerUrl:this.localConfig.serverZone===d.STAGING?"https://sr-client-cfg.stag2.amplitude.com/config":this.localConfig.serverZone===d.EU?"https://sr-client-cfg.eu.amplitude.com/config":"https://sr-client-cfg.amplitude.com/config"},e.prototype.completeRequest=function(e){var t=e.err,n=e.success;if(t)throw new Error(t);n&&this.localConfig.loggerProvider.log(n)},e}(),x=function(e){var t=e.localConfig,n=e.configKeys;return i(void 0,void 0,void 0,(function(){return o(this,(function(e){return[2,new A({localConfig:t,configKeys:n})]}))}))},E="[Amplitude] Element Clicked",S="[Amplitude] Element Tag",k="[Amplitude] Element Text",T="[Amplitude] Page URL",C="https://app.amplitude.com",O={US:C,EU:"https://app.eu.amplitude.com",STAGING:"https://apps.stag2.amplitude.com"};function P(e){return"function"==typeof e}function I(e){var t=e((function(e){Error.call(e),e.stack=(new Error).stack}));return t.prototype=Object.create(Error.prototype),t.prototype.constructor=t,t}var j=I((function(e){return function(t){e(this),this.message=t?t.length+" errors occurred during unsubscription:\n"+t.map((function(e,t){return t+1+") "+e.toString()})).join("\n "):"",this.name="UnsubscriptionError",this.errors=t}}));function R(e,t){if(e){var n=e.indexOf(t);0<=n&&e.splice(n,1)}}var L=function(){function e(e){this.initialTeardown=e,this.closed=!1,this._parentage=null,this._finalizers=null}var t;return e.prototype.unsubscribe=function(){var e,t,n,r,i;if(!this.closed){this.closed=!0;var o=this._parentage;if(o)if(this._parentage=null,Array.isArray(o))try{for(var s=u(o),a=s.next();!a.done;a=s.next()){a.value.remove(this)}}catch(t){e={error:t}}finally{try{a&&!a.done&&(t=s.return)&&t.call(s)}finally{if(e)throw e.error}}else o.remove(this);var f=this.initialTeardown;if(P(f))try{f()}catch(e){i=e instanceof j?e.errors:[e]}var d=this._finalizers;if(d){this._finalizers=null;try{for(var v=u(d),h=v.next();!h.done;h=v.next()){var p=h.value;try{q(p)}catch(e){i=null!=i?i:[],e instanceof j?i=l(l([],c(i)),c(e.errors)):i.push(e)}}}catch(e){n={error:e}}finally{try{h&&!h.done&&(r=v.return)&&r.call(v)}finally{if(n)throw n.error}}}if(i)throw new j(i)}},e.prototype.add=function(t){var n;if(t&&t!==this)if(this.closed)q(t);else{if(t instanceof e){if(t.closed||t._hasParent(this))return;t._addParent(this)}(this._finalizers=null!==(n=this._finalizers)&&void 0!==n?n:[]).push(t)}},e.prototype._hasParent=function(e){var t=this._parentage;return t===e||Array.isArray(t)&&t.includes(e)},e.prototype._addParent=function(e){var t=this._parentage;this._parentage=Array.isArray(t)?(t.push(e),t):t?[t,e]:e},e.prototype._removeParent=function(e){var t=this._parentage;t===e?this._parentage=null:Array.isArray(t)&&R(t,e)},e.prototype.remove=function(t){var n=this._finalizers;n&&R(n,t),t instanceof e&&t._removeParent(this)},e.EMPTY=((t=new e).closed=!0,t),e}(),F=L.EMPTY;function N(e){return e instanceof L||e&&"closed"in e&&P(e.remove)&&P(e.add)&&P(e.unsubscribe)}function q(e){P(e)?e():e.unsubscribe()}var M={onUnhandledError:null,onStoppedNotification:null,Promise:void 0,useDeprecatedSynchronousErrorHandling:!1,useDeprecatedNextContext:!1},D=function(e,t){for(var n=[],r=2;r<arguments.length;r++)n[r-2]=arguments[r];return setTimeout.apply(void 0,l([e,t],c(n)))};function U(e){D((function(){throw e}))}function z(){}function W(e){e()}var V=function(e){function t(t){var n=e.call(this)||this;return n.isStopped=!1,t?(n.destination=t,N(t)&&t.add(n)):n.destination=X,n}return n(t,e),t.create=function(e,t,n){return new K(e,t,n)},t.prototype.next=function(e){this.isStopped||this._next(e)},t.prototype.error=function(e){this.isStopped||(this.isStopped=!0,this._error(e))},t.prototype.complete=function(){this.isStopped||(this.isStopped=!0,this._complete())},t.prototype.unsubscribe=function(){this.closed||(this.isStopped=!0,e.prototype.unsubscribe.call(this),this.destination=null)},t.prototype._next=function(e){this.destination.next(e)},t.prototype._error=function(e){try{this.destination.error(e)}finally{this.unsubscribe()}},t.prototype._complete=function(){try{this.destination.complete()}finally{this.unsubscribe()}},t}(L),Y=Function.prototype.bind;function H(e,t){return Y.call(e,t)}var G=function(){function e(e){this.partialObserver=e}return e.prototype.next=function(e){var t=this.partialObserver;if(t.next)try{t.next(e)}catch(e){B(e)}},e.prototype.error=function(e){var t=this.partialObserver;if(t.error)try{t.error(e)}catch(e){B(e)}else B(e)},e.prototype.complete=function(){var e=this.partialObserver;if(e.complete)try{e.complete()}catch(e){B(e)}},e}(),K=function(e){function t(t,n,r){var i,o,u=e.call(this)||this;P(t)||!t?i={next:null!=t?t:void 0,error:null!=n?n:void 0,complete:null!=r?r:void 0}:u&&M.useDeprecatedNextContext?((o=Object.create(t)).unsubscribe=function(){return u.unsubscribe()},i={next:t.next&&H(t.next,o),error:t.error&&H(t.error,o),complete:t.complete&&H(t.complete,o)}):i=t;return u.destination=new G(i),u}return n(t,e),t}(V);function B(e){U(e)}var X={closed:!0,next:z,error:function(e){throw e},complete:z},Z="function"==typeof Symbol&&Symbol.observable||"@@observable";function J(e){return e}var Q=function(){function e(e){e&&(this._subscribe=e)}return e.prototype.lift=function(t){var n=new e;return n.source=this,n.operator=t,n},e.prototype.subscribe=function(e,t,n){var r,i=this,o=(r=e)&&r instanceof V||function(e){return e&&P(e.next)&&P(e.error)&&P(e.complete)}(r)&&N(r)?e:new K(e,t,n);return W((function(){var e=i,t=e.operator,n=e.source;o.add(t?t.call(o,n):n?i._subscribe(o):i._trySubscribe(o))})),o},e.prototype._trySubscribe=function(e){try{return this._subscribe(e)}catch(t){e.error(t)}},e.prototype.forEach=function(e,t){var n=this;return new(t=$(t))((function(t,r){var i=new K({next:function(t){try{e(t)}catch(e){r(e),i.unsubscribe()}},error:r,complete:t});n.subscribe(i)}))},e.prototype._subscribe=function(e){var t;return null===(t=this.source)||void 0===t?void 0:t.subscribe(e)},e.prototype[Z]=function(){return this},e.prototype.pipe=function(){for(var e,t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];return(0===(e=t).length?J:1===e.length?e[0]:function(t){return e.reduce((function(e,t){return t(e)}),t)})(this)},e.prototype.toPromise=function(e){var t=this;return new(e=$(e))((function(e,n){var r;t.subscribe((function(e){return r=e}),(function(e){return n(e)}),(function(){return e(r)}))}))},e.create=function(t){return new e(t)},e}();function $(e){var t;return null!==(t=null!=e?e:M.Promise)&&void 0!==t?t:Promise}function ee(e){return P(null==e?void 0:e.lift)}function te(e){return function(t){if(ee(t))return t.lift((function(t){try{return e(t,this)}catch(e){this.error(e)}}));throw new TypeError("Unable to lift unknown Observable type")}}function ne(e,t,n,r,i){return new re(e,t,n,r,i)}var re=function(e){function t(t,n,r,i,o,u){var c=e.call(this,t)||this;return c.onFinalize=o,c.shouldUnsubscribe=u,c._next=n?function(e){try{n(e)}catch(e){t.error(e)}}:e.prototype._next,c._error=i?function(e){try{i(e)}catch(e){t.error(e)}finally{this.unsubscribe()}}:e.prototype._error,c._complete=r?function(){try{r()}catch(e){t.error(e)}finally{this.unsubscribe()}}:e.prototype._complete,c}return n(t,e),t.prototype.unsubscribe=function(){var t;if(!this.shouldUnsubscribe||this.shouldUnsubscribe()){var n=this.closed;e.prototype.unsubscribe.call(this),!n&&(null===(t=this.onFinalize)||void 0===t||t.call(this))}},t}(V);!function(e){function t(t,n){var r=e.call(this)||this;return r.source=t,r.subjectFactory=n,r._subject=null,r._refCount=0,r._connection=null,ee(t)&&(r.lift=t.lift),r}n(t,e),t.prototype._subscribe=function(e){return this.getSubject().subscribe(e)},t.prototype.getSubject=function(){var e=this._subject;return e&&!e.isStopped||(this._subject=this.subjectFactory()),this._subject},t.prototype._teardown=function(){this._refCount=0;var e=this._connection;this._subject=this._connection=null,null==e||e.unsubscribe()},t.prototype.connect=function(){var e=this,t=this._connection;if(!t){t=this._connection=new L;var n=this.getSubject();t.add(this.source.subscribe(ne(n,void 0,(function(){e._teardown(),n.complete()}),(function(t){e._teardown(),n.error(t)}),(function(){return e._teardown()})))),t.closed&&(this._connection=null,t=L.EMPTY)}return t},t.prototype.refCount=function(){return te((function(e,t){var n=null;e._refCount++;var r=ne(t,void 0,void 0,void 0,(function(){if(!e||e._refCount<=0||0<--e._refCount)n=null;else{var r=e._connection,i=n;n=null,!r||i&&r!==i||r.unsubscribe(),t.unsubscribe()}}));e.subscribe(r),r.closed||(n=e.connect())}))(this)}}(Q);var ie,oe={now:function(){return(oe.delegate||performance).now()},delegate:void 0},ue={schedule:function(e){var t=requestAnimationFrame,n=cancelAnimationFrame,r=t((function(t){n=void 0,e(t)}));return new L((function(){return null==n?void 0:n(r)}))},requestAnimationFrame:function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];var n=ue.delegate;return((null==n?void 0:n.requestAnimationFrame)||requestAnimationFrame).apply(void 0,l([],c(e)))},cancelAnimationFrame:function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];return cancelAnimationFrame.apply(void 0,l([],c(e)))},delegate:void 0};new Q((function(e){var t=ie||oe,n=t.now(),r=0,i=function(){e.closed||(r=ue.requestAnimationFrame((function(o){r=0;var u=t.now();e.next({timestamp:ie?u:o,elapsed:u-n}),i()})))};return i(),function(){r&&ue.cancelAnimationFrame(r)}}));var ce=I((function(e){return function(){e(this),this.name="ObjectUnsubscribedError",this.message="object unsubscribed"}})),le=function(e){function t(){var t=e.call(this)||this;return t.closed=!1,t.currentObservers=null,t.observers=[],t.isStopped=!1,t.hasError=!1,t.thrownError=null,t}return n(t,e),t.prototype.lift=function(e){var t=new se(this,this);return t.operator=e,t},t.prototype._throwIfClosed=function(){if(this.closed)throw new ce},t.prototype.next=function(e){var t=this;W((function(){var n,r;if(t._throwIfClosed(),!t.isStopped){t.currentObservers||(t.currentObservers=Array.from(t.observers));try{for(var i=u(t.currentObservers),o=i.next();!o.done;o=i.next()){o.value.next(e)}}catch(e){n={error:e}}finally{try{o&&!o.done&&(r=i.return)&&r.call(i)}finally{if(n)throw n.error}}}}))},t.prototype.error=function(e){var t=this;W((function(){if(t._throwIfClosed(),!t.isStopped){t.hasError=t.isStopped=!0,t.thrownError=e;for(var n=t.observers;n.length;)n.shift().error(e)}}))},t.prototype.complete=function(){var e=this;W((function(){if(e._throwIfClosed(),!e.isStopped){e.isStopped=!0;for(var t=e.observers;t.length;)t.shift().complete()}}))},t.prototype.unsubscribe=function(){this.isStopped=this.closed=!0,this.observers=this.currentObservers=null},Object.defineProperty(t.prototype,"observed",{get:function(){var e;return(null===(e=this.observers)||void 0===e?void 0:e.length)>0},enumerable:!1,configurable:!0}),t.prototype._trySubscribe=function(t){return this._throwIfClosed(),e.prototype._trySubscribe.call(this,t)},t.prototype._subscribe=function(e){return this._throwIfClosed(),this._checkFinalizedStatuses(e),this._innerSubscribe(e)},t.prototype._innerSubscribe=function(e){var t=this,n=this,r=n.hasError,i=n.isStopped,o=n.observers;return r||i?F:(this.currentObservers=null,o.push(e),new L((function(){t.currentObservers=null,R(o,e)})))},t.prototype._checkFinalizedStatuses=function(e){var t=this,n=t.hasError,r=t.thrownError,i=t.isStopped;n?e.error(r):i&&e.complete()},t.prototype.asObservable=function(){var e=new Q;return e.source=this,e},t.create=function(e,t){return new se(e,t)},t}(Q),se=function(e){function t(t,n){var r=e.call(this)||this;return r.destination=t,r.source=n,r}return n(t,e),t.prototype.next=function(e){var t,n;null===(n=null===(t=this.destination)||void 0===t?void 0:t.next)||void 0===n||n.call(t,e)},t.prototype.error=function(e){var t,n;null===(n=null===(t=this.destination)||void 0===t?void 0:t.error)||void 0===n||n.call(t,e)},t.prototype.complete=function(){var e,t;null===(t=null===(e=this.destination)||void 0===e?void 0:e.complete)||void 0===t||t.call(e)},t.prototype._subscribe=function(e){var t,n;return null!==(n=null===(t=this.source)||void 0===t?void 0:t.subscribe(e))&&void 0!==n?n:F},t}(le);!function(e){function t(t){var n=e.call(this)||this;return n._value=t,n}n(t,e),Object.defineProperty(t.prototype,"value",{get:function(){return this.getValue()},enumerable:!1,configurable:!0}),t.prototype._subscribe=function(t){var n=e.prototype._subscribe.call(this,t);return!n.closed&&t.next(this._value),n},t.prototype.getValue=function(){var e=this,t=e.hasError,n=e.thrownError,r=e._value;if(t)throw n;return this._throwIfClosed(),r},t.prototype.next=function(t){e.prototype.next.call(this,this._value=t)}}(le);var ae={now:function(){return(ae.delegate||Date).now()},delegate:void 0};!function(e){function t(t,n,r){void 0===t&&(t=1/0),void 0===n&&(n=1/0),void 0===r&&(r=ae);var i=e.call(this)||this;return i._bufferSize=t,i._windowTime=n,i._timestampProvider=r,i._buffer=[],i._infiniteTimeWindow=!0,i._infiniteTimeWindow=n===1/0,i._bufferSize=Math.max(1,t),i._windowTime=Math.max(1,n),i}n(t,e),t.prototype.next=function(t){var n=this,r=n.isStopped,i=n._buffer,o=n._infiniteTimeWindow,u=n._timestampProvider,c=n._windowTime;r||(i.push(t),!o&&i.push(u.now()+c)),this._trimBuffer(),e.prototype.next.call(this,t)},t.prototype._subscribe=function(e){this._throwIfClosed(),this._trimBuffer();for(var t=this._innerSubscribe(e),n=this._infiniteTimeWindow,r=this._buffer.slice(),i=0;i<r.length&&!e.closed;i+=n?1:2)e.next(r[i]);return this._checkFinalizedStatuses(e),t},t.prototype._trimBuffer=function(){var e=this,t=e._bufferSize,n=e._timestampProvider,r=e._buffer,i=e._infiniteTimeWindow,o=(i?1:2)*t;if(t<1/0&&o<r.length&&r.splice(0,r.length-o),!i){for(var u=n.now(),c=0,l=1;l<r.length&&r[l]<=u;l+=2)c=l;c&&r.splice(0,c+1)}}}(le),function(e){function t(){var t=null!==e&&e.apply(this,arguments)||this;return t._value=null,t._hasValue=!1,t._isComplete=!1,t}n(t,e),t.prototype._checkFinalizedStatuses=function(e){var t=this,n=t.hasError,r=t._hasValue,i=t._value,o=t.thrownError,u=t.isStopped,c=t._isComplete;n?e.error(o):(u||c)&&(r&&e.next(i),e.complete())},t.prototype.next=function(e){this.isStopped||(this._value=e,this._hasValue=!0)},t.prototype.complete=function(){var t=this,n=t._hasValue,r=t._value;t._isComplete||(this._isComplete=!0,n&&e.prototype.next.call(this,r),e.prototype.complete.call(this))}}(le);var fe,de=function(e){function t(t,n){return e.call(this)||this}return n(t,e),t.prototype.schedule=function(e,t){return this},t}(L),ve=function(e,t){for(var n=[],r=2;r<arguments.length;r++)n[r-2]=arguments[r];return setInterval.apply(void 0,l([e,t],c(n)))},he=function(e){return clearInterval(e)},pe=function(e){function t(t,n){var r=e.call(this,t,n)||this;return r.scheduler=t,r.work=n,r.pending=!1,r}return n(t,e),t.prototype.schedule=function(e,t){var n;if(void 0===t&&(t=0),this.closed)return this;this.state=e;var r=this.id,i=this.scheduler;return null!=r&&(this.id=this.recycleAsyncId(i,r,t)),this.pending=!0,this.delay=t,this.id=null!==(n=this.id)&&void 0!==n?n:this.requestAsyncId(i,this.id,t),this},t.prototype.requestAsyncId=function(e,t,n){return void 0===n&&(n=0),ve(e.flush.bind(e,this),n)},t.prototype.recycleAsyncId=function(e,t,n){if(void 0===n&&(n=0),null!=n&&this.delay===n&&!1===this.pending)return t;null!=t&&he(t)},t.prototype.execute=function(e,t){if(this.closed)return new Error("executing a cancelled action");this.pending=!1;var n=this._execute(e,t);if(n)return n;!1===this.pending&&null!=this.id&&(this.id=this.recycleAsyncId(this.scheduler,this.id,null))},t.prototype._execute=function(e,t){var n,r=!1;try{this.work(e)}catch(e){r=!0,n=e||new Error("Scheduled action threw falsy error")}if(r)return this.unsubscribe(),n},t.prototype.unsubscribe=function(){if(!this.closed){var t=this.id,n=this.scheduler,r=n.actions;this.work=this.state=this.scheduler=null,this.pending=!1,R(r,this),null!=t&&(this.id=this.recycleAsyncId(n,t,null)),this.delay=null,e.prototype.unsubscribe.call(this)}},t}(de),be=1,ye={};function me(e){return e in ye&&(delete ye[e],!0)}var ge=function(e){var t=be++;return ye[t]=!0,fe||(fe=Promise.resolve()),fe.then((function(){return me(t)&&e()})),t},we=function(e){me(e)},_e={setImmediate:function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];var n=_e.delegate;return((null==n?void 0:n.setImmediate)||ge).apply(void 0,l([],c(e)))},clearImmediate:function(e){return we(e)},delegate:void 0},Ae=function(e){function t(t,n){var r=e.call(this,t,n)||this;return r.scheduler=t,r.work=n,r}return n(t,e),t.prototype.requestAsyncId=function(t,n,r){return void 0===r&&(r=0),null!==r&&r>0?e.prototype.requestAsyncId.call(this,t,n,r):(t.actions.push(this),t._scheduled||(t._scheduled=_e.setImmediate(t.flush.bind(t,void 0))))},t.prototype.recycleAsyncId=function(t,n,r){var i;if(void 0===r&&(r=0),null!=r?r>0:this.delay>0)return e.prototype.recycleAsyncId.call(this,t,n,r);var o=t.actions;null!=n&&(null===(i=o[o.length-1])||void 0===i?void 0:i.id)!==n&&(_e.clearImmediate(n),t._scheduled===n&&(t._scheduled=void 0))},t}(pe),xe=function(){function e(t,n){void 0===n&&(n=e.now),this.schedulerActionCtor=t,this.now=n}return e.prototype.schedule=function(e,t,n){return void 0===t&&(t=0),new this.schedulerActionCtor(this,e).schedule(n,t)},e.now=ae.now,e}(),Ee=function(e){function t(t,n){void 0===n&&(n=xe.now);var r=e.call(this,t,n)||this;return r.actions=[],r._active=!1,r}return n(t,e),t.prototype.flush=function(e){var t=this.actions;if(this._active)t.push(e);else{var n;this._active=!0;do{if(n=e.execute(e.state,e.delay))break}while(e=t.shift());if(this._active=!1,n){for(;e=t.shift();)e.unsubscribe();throw n}}},t}(xe),Se=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return n(t,e),t.prototype.flush=function(e){this._active=!0;var t=this._scheduled;this._scheduled=void 0;var n,r=this.actions;e=e||r.shift();do{if(n=e.execute(e.state,e.delay))break}while((e=r[0])&&e.id===t&&r.shift());if(this._active=!1,n){for(;(e=r[0])&&e.id===t&&r.shift();)e.unsubscribe();throw n}},t}(Ee);new Se(Ae);var ke=new Ee(pe),Te=ke,Ce=function(e){function t(t,n){var r=e.call(this,t,n)||this;return r.scheduler=t,r.work=n,r}return n(t,e),t.prototype.schedule=function(t,n){return void 0===n&&(n=0),n>0?e.prototype.schedule.call(this,t,n):(this.delay=n,this.state=t,this.scheduler.flush(this),this)},t.prototype.execute=function(t,n){return n>0||this.closed?e.prototype.execute.call(this,t,n):this._execute(t,n)},t.prototype.requestAsyncId=function(t,n,r){return void 0===r&&(r=0),null!=r&&r>0||null==r&&this.delay>0?e.prototype.requestAsyncId.call(this,t,n,r):(t.flush(this),0)},t}(pe),Oe=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return n(t,e),t}(Ee);new Oe(Ce);var Pe=function(e){function t(t,n){var r=e.call(this,t,n)||this;return r.scheduler=t,r.work=n,r}return n(t,e),t.prototype.requestAsyncId=function(t,n,r){return void 0===r&&(r=0),null!==r&&r>0?e.prototype.requestAsyncId.call(this,t,n,r):(t.actions.push(this),t._scheduled||(t._scheduled=ue.requestAnimationFrame((function(){return t.flush(void 0)}))))},t.prototype.recycleAsyncId=function(t,n,r){var i;if(void 0===r&&(r=0),null!=r?r>0:this.delay>0)return e.prototype.recycleAsyncId.call(this,t,n,r);var o=t.actions;null!=n&&n===t._scheduled&&(null===(i=o[o.length-1])||void 0===i?void 0:i.id)!==n&&(ue.cancelAnimationFrame(n),t._scheduled=void 0)},t}(pe),Ie=function(e){function t(){return null!==e&&e.apply(this,arguments)||this}return n(t,e),t.prototype.flush=function(e){var t;this._active=!0,e?t=e.id:(t=this._scheduled,this._scheduled=void 0);var n,r=this.actions;e=e||r.shift();do{if(n=e.execute(e.state,e.delay))break}while((e=r[0])&&e.id===t&&r.shift());if(this._active=!1,n){for(;(e=r[0])&&e.id===t&&r.shift();)e.unsubscribe();throw n}},t}(Ee);new Ie(Pe),function(e){function t(t,n){void 0===t&&(t=je),void 0===n&&(n=1/0);var r=e.call(this,t,(function(){return r.frame}))||this;return r.maxFrames=n,r.frame=0,r.index=-1,r}n(t,e),t.prototype.flush=function(){for(var e,t,n=this.actions,r=this.maxFrames;(t=n[0])&&t.delay<=r&&(n.shift(),this.frame=t.delay,!(e=t.execute(t.state,t.delay))););if(e){for(;t=n.shift();)t.unsubscribe();throw e}},t.frameTimeFactor=10}(Ee);var je=function(e){function t(t,n,r){void 0===r&&(r=t.index+=1);var i=e.call(this,t,n)||this;return i.scheduler=t,i.work=n,i.index=r,i.active=!0,i.index=t.index=r,i}return n(t,e),t.prototype.schedule=function(n,r){if(void 0===r&&(r=0),Number.isFinite(r)){if(!this.id)return e.prototype.schedule.call(this,n,r);this.active=!1;var i=new t(this.scheduler,this.work);return this.add(i),i.schedule(n,r)}return L.EMPTY},t.prototype.requestAsyncId=function(e,n,r){void 0===r&&(r=0),this.delay=e.frame+r;var i=e.actions;return i.push(this),i.sort(t.sortActions),1},t.prototype.recycleAsyncId=function(e,t,n){},t.prototype._execute=function(t,n){if(!0===this.active)return e.prototype._execute.call(this,t,n)},t.sortActions=function(e,t){return e.delay===t.delay?e.index===t.index?0:e.index>t.index?1:-1:e.delay>t.delay?1:-1},t}(pe),Re=new Q((function(e){return e.complete()}));function Le(e){return e&&P(e.schedule)}function Fe(e){return e[e.length-1]}function Ne(e){return Le(Fe(e))?e.pop():void 0}var qe=function(e){return e&&"number"==typeof e.length&&"function"!=typeof e};function Me(e){return P(null==e?void 0:e.then)}function De(e){return P(e[Z])}function Ue(e){return Symbol.asyncIterator&&P(null==e?void 0:e[Symbol.asyncIterator])}function ze(e){return new TypeError("You provided "+(null!==e&&"object"==typeof e?"an invalid object":"'"+e+"'")+" where a stream was expected. You can provide an Observable, Promise, ReadableStream, Array, AsyncIterable, or Iterable.")}var We,Ve="function"==typeof Symbol&&Symbol.iterator?Symbol.iterator:"@@iterator";function Ye(e){return P(null==e?void 0:e[Ve])}function He(e){return a(this,arguments,(function(){var t,n,r;return o(this,(function(i){switch(i.label){case 0:t=e.getReader(),i.label=1;case 1:i.trys.push([1,,9,10]),i.label=2;case 2:return[4,s(t.read())];case 3:return n=i.sent(),r=n.value,n.done?[4,s(void 0)]:[3,5];case 4:return[2,i.sent()];case 5:return[4,s(r)];case 6:return[4,i.sent()];case 7:return i.sent(),[3,2];case 8:return[3,10];case 9:return t.releaseLock(),[7];case 10:return[2]}}))}))}function Ge(e){return P(null==e?void 0:e.getReader)}function Ke(e){if(e instanceof Q)return e;if(null!=e){if(De(e))return i=e,new Q((function(e){var t=i[Z]();if(P(t.subscribe))return t.subscribe(e);throw new TypeError("Provided object does not correctly implement Symbol.observable")}));if(qe(e))return r=e,new Q((function(e){for(var t=0;t<r.length&&!e.closed;t++)e.next(r[t]);e.complete()}));if(Me(e))return n=e,new Q((function(e){n.then((function(t){e.closed||(e.next(t),e.complete())}),(function(t){return e.error(t)})).then(null,U)}));if(Ue(e))return Be(e);if(Ye(e))return t=e,new Q((function(e){var n,r;try{for(var i=u(t),o=i.next();!o.done;o=i.next()){var c=o.value;if(e.next(c),e.closed)return}}catch(e){n={error:e}}finally{try{o&&!o.done&&(r=i.return)&&r.call(i)}finally{if(n)throw n.error}}e.complete()}));if(Ge(e))return Be(He(e))}var t,n,r,i;throw ze(e)}function Be(e){return new Q((function(t){(function(e,t){var n,r,u,c;return i(this,void 0,void 0,(function(){var i,l;return o(this,(function(o){switch(o.label){case 0:o.trys.push([0,5,6,11]),n=f(e),o.label=1;case 1:return[4,n.next()];case 2:if((r=o.sent()).done)return[3,4];if(i=r.value,t.next(i),t.closed)return[2];o.label=3;case 3:return[3,1];case 4:return[3,11];case 5:return l=o.sent(),u={error:l},[3,11];case 6:return o.trys.push([6,,9,10]),r&&!r.done&&(c=n.return)?[4,c.call(n)]:[3,8];case 7:o.sent(),o.label=8;case 8:return[3,10];case 9:if(u)throw u.error;return[7];case 10:return[7];case 11:return t.complete(),[2]}}))}))})(e,t).catch((function(e){return t.error(e)}))}))}function Xe(e,t,n,r,i){void 0===r&&(r=0),void 0===i&&(i=!1);var o=t.schedule((function(){n(),i?e.add(this.schedule(null,r)):this.unsubscribe()}),r);if(e.add(o),!i)return o}function Ze(e,t){return void 0===t&&(t=0),te((function(n,r){n.subscribe(ne(r,(function(n){return Xe(r,e,(function(){return r.next(n)}),t)}),(function(){return Xe(r,e,(function(){return r.complete()}),t)}),(function(n){return Xe(r,e,(function(){return r.error(n)}),t)})))}))}function Je(e,t){return void 0===t&&(t=0),te((function(n,r){r.add(e.schedule((function(){return n.subscribe(r)}),t))}))}function Qe(e,t){if(!e)throw new Error("Iterable cannot be null");return new Q((function(n){Xe(n,t,(function(){var r=e[Symbol.asyncIterator]();Xe(n,t,(function(){r.next().then((function(e){e.done?n.complete():n.next(e.value)}))}),0,!0)}))}))}function $e(e,t){if(null!=e){if(De(e))return function(e,t){return Ke(e).pipe(Je(t),Ze(t))}(e,t);if(qe(e))return function(e,t){return new Q((function(n){var r=0;return t.schedule((function(){r===e.length?n.complete():(n.next(e[r++]),n.closed||this.schedule())}))}))}(e,t);if(Me(e))return function(e,t){return Ke(e).pipe(Je(t),Ze(t))}(e,t);if(Ue(e))return Qe(e,t);if(Ye(e))return function(e,t){return new Q((function(n){var r;return Xe(n,t,(function(){r=e[Ve](),Xe(n,t,(function(){var e,t,i;try{t=(e=r.next()).value,i=e.done}catch(e){return void n.error(e)}i?n.complete():n.next(t)}),0,!0)})),function(){return P(null==r?void 0:r.return)&&r.return()}}))}(e,t);if(Ge(e))return function(e,t){return Qe(He(e),t)}(e,t)}throw ze(e)}function et(e,t){return t?$e(e,t):Ke(e)}function tt(e){return e instanceof Date&&!isNaN(e)}!function(e){e.NEXT="N",e.ERROR="E",e.COMPLETE="C"}(We||(We={})),I((function(e){return function(){e(this),this.name="EmptyError",this.message="no elements in sequence"}})),I((function(e){return function(){e(this),this.name="ArgumentOutOfRangeError",this.message="argument out of range"}})),I((function(e){return function(t){e(this),this.name="NotFoundError",this.message=t}})),I((function(e){return function(t){e(this),this.name="SequenceError",this.message=t}}));var nt=I((function(e){return function(t){void 0===t&&(t=null),e(this),this.message="Timeout has occurred",this.name="TimeoutError",this.info=t}}));function rt(e){throw new nt(e)}function it(e,t){return te((function(n,r){var i=0;n.subscribe(ne(r,(function(n){r.next(e.call(t,n,i++))})))}))}var ot=Array.isArray;function ut(e){return it((function(t){return function(e,t){return ot(t)?e.apply(void 0,l([],c(t))):e(t)}(e,t)}))}function ct(e,t,n){return void 0===n&&(n=1/0),P(t)?ct((function(n,r){return it((function(e,i){return t(n,e,r,i)}))(Ke(e(n,r)))}),n):("number"==typeof t&&(n=t),te((function(t,r){return function(e,t,n,r,i,o,u,c){var l=[],s=0,a=0,f=!1,d=function(){!f||l.length||s||t.complete()},v=function(e){return s<r?h(e):l.push(e)},h=function(e){o&&t.next(e),s++;var c=!1;Ke(n(e,a++)).subscribe(ne(t,(function(e){null==i||i(e),o?v(e):t.next(e)}),(function(){c=!0}),void 0,(function(){if(c)try{s--;for(var e=function(){var e=l.shift();u?Xe(t,u,(function(){return h(e)})):h(e)};l.length&&s<r;)e();d()}catch(e){t.error(e)}})))};return e.subscribe(ne(t,v,(function(){f=!0,d()}))),function(){null==c||c()}}(t,r,e,n)})))}function lt(e){return void 0===e&&(e=1/0),ct(J,e)}function st(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];return lt(1)(et(e,Ne(e)))}var at=["addListener","removeListener"],ft=["addEventListener","removeEventListener"],dt=["on","off"];function vt(e,t,n,r){if(P(n)&&(r=n,n=void 0),r)return vt(e,t,n).pipe(ut(r));var i=c(function(e){return P(e.addEventListener)&&P(e.removeEventListener)}(e)?ft.map((function(r){return function(i){return e[r](t,i,n)}})):function(e){return P(e.addListener)&&P(e.removeListener)}(e)?at.map(ht(e,t)):function(e){return P(e.on)&&P(e.off)}(e)?dt.map(ht(e,t)):[],2),o=i[0],u=i[1];if(!o&&qe(e))return ct((function(e){return vt(e,t,n)}))(Ke(e));if(!o)throw new TypeError("Invalid event target");return new Q((function(e){var t=function(){for(var t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];return e.next(1<t.length?t:t[0])};return o(t),function(){return u(t)}}))}function ht(e,t){return function(n){return function(r){return e[n](t,r)}}}function pt(e,t,n){void 0===e&&(e=0),void 0===n&&(n=Te);var r=-1;return null!=t&&(Le(t)?n=t:r=t),new Q((function(t){var i=tt(e)?+e-n.now():e;i<0&&(i=0);var o=0;return n.schedule((function(){t.closed||(t.next(o++),0<=r?this.schedule(void 0,r):t.complete())}),i)}))}function bt(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];var n=Ne(e),r=function(e,t){return"number"==typeof Fe(e)?e.pop():t}(e,1/0),i=e;return i.length?1===i.length?Ke(i[0]):lt(r)(et(i,n)):Re}new Q(z);var yt=Array.isArray;function mt(e,t){return te((function(n,r){var i=0;n.subscribe(ne(r,(function(n){return e.call(t,n,i++)&&r.next(n)})))}))}function gt(){for(var e,t=[],n=0;n<arguments.length;n++)t[n]=arguments[n];return 1===(t=1===(e=t).length&&yt(e[0])?e[0]:e).length?Ke(t[0]):new Q(function(e){return function(t){for(var n=[],r=function(r){n.push(Ke(e[r]).subscribe(ne(t,(function(e){if(n){for(var i=0;i<n.length;i++)i!==r&&n[i].unsubscribe();n=null}t.next(e)}))))},i=0;n&&!t.closed&&i<e.length;i++)r(i)}}(t))}function wt(e){return e<=0?function(){return Re}:te((function(t,n){var r=0;t.subscribe(ne(n,(function(t){++r<=e&&(n.next(t),e<=r&&n.complete())})))}))}function _t(e,t){return t?function(n){return st(t.pipe(wt(1),te((function(e,t){e.subscribe(ne(t,z))}))),n.pipe(_t(e)))}:ct((function(t,n){return Ke(e(t,n)).pipe(wt(1),function(e){return it((function(){return e}))}(t))}))}function At(e){void 0===e&&(e={});var t=e.connector,n=void 0===t?function(){return new le}:t,r=e.resetOnError,i=void 0===r||r,o=e.resetOnComplete,u=void 0===o||o,c=e.resetOnRefCountZero,l=void 0===c||c;return function(e){var t,r,o,c=0,s=!1,a=!1,f=function(){null==r||r.unsubscribe(),r=void 0},d=function(){f(),t=o=void 0,s=a=!1},v=function(){var e=t;d(),null==e||e.unsubscribe()};return te((function(e,h){c++,a||s||f();var p=o=null!=o?o:n();h.add((function(){0!==--c||a||s||(r=xt(v,l))})),p.subscribe(h),!t&&c>0&&(t=new K({next:function(e){return p.next(e)},error:function(e){a=!0,f(),r=xt(d,i,e),p.error(e)},complete:function(){s=!0,f(),r=xt(d,u),p.complete()}}),Ke(e).subscribe(t))}))(e)}}function xt(e,t){for(var n=[],r=2;r<arguments.length;r++)n[r-2]=arguments[r];if(!0!==t){if(!1!==t){var i=new K({next:function(){i.unsubscribe(),e()}});return Ke(t.apply(void 0,l([],c(n)))).subscribe(i)}}else e()}function Et(e,t,n){void 0===t&&(t=ke);var r=pt(e,t);return function(e,t){return te((function(n,r){var i=null!=t?t:{},o=i.leading,u=void 0===o||o,c=i.trailing,l=void 0!==c&&c,s=!1,a=null,f=null,d=!1,v=function(){null==f||f.unsubscribe(),f=null,l&&(b(),d&&r.complete())},h=function(){f=null,d&&r.complete()},p=function(t){return f=Ke(e(t)).subscribe(ne(r,v,h))},b=function(){if(s){s=!1;var e=a;a=null,r.next(e),!d&&p(e)}};n.subscribe(ne(r,(function(e){s=!0,a=e,(!f||f.closed)&&(u?b():p(e))}),(function(){d=!0,(!(l&&s&&f)||f.closed)&&r.complete()})))}))}((function(){return r}),n)}var St=["id","class","style","value","onclick","onchange","oninput","onblur","onsubmit","onfocus","onkeydown","onkeyup","onkeypress","data-reactid","data-react-checksum","data-reactroot"],kt=["type"],Tt=["svg","path","g"],Ct=["password","hidden"];var Ot=function(e){var t;return e?(t=function(e,t){for(var n=0,r=0;r<e.length;r++){var i=e[r];if(null===i)n+=4;else{var o=Pt(i);n+=o?Array.from(o).length:4}if(n>t)return e.slice(0,r)}return e}(function(e){var t=[];if(!e)return t;t.push(e);for(var n=e.parentElement;n&&"HTML"!==n.tagName;)t.push(n),n=n.parentElement;return t}(e).map((function(e){return function(e){var t,n,r,i,o,c;if(null===e)return null;var l=String(e.tagName).toLowerCase(),s={tag:l},a=Array.from(null!==(i=null===(r=e.parentElement)||void 0===r?void 0:r.children)&&void 0!==i?i:[]);a.length&&(s.index=a.indexOf(e),s.indexOfType=a.filter((function(t){return t.tagName===e.tagName})).indexOf(e));var f=null===(c=null===(o=e.previousElementSibling)||void 0===o?void 0:o.tagName)||void 0===c?void 0:c.toLowerCase();f&&(s.prevSib=String(f));var d=e.getAttribute("id");d&&(s.id=String(d));var v=Array.from(e.classList);v.length&&(s.classes=v);var h={},p=Array.from(e.attributes).filter((function(e){return!St.includes(e.name)})),b=!Ft(e);if(!Ct.includes(String(e.getAttribute("type")))&&!Tt.includes(l))try{for(var y=u(p),m=y.next();!m.done;m=y.next()){var g=m.value;b&&!kt.includes(g.name)||(h[g.name]=String(g.value).substring(0,128))}}catch(e){t={error:e}}finally{try{m&&!m.done&&(n=y.return)&&n.call(y)}finally{if(t)throw t.error}}return Object.keys(h).length&&(s.attrs=h),s}(e)})),1024),t):[]};function Pt(e,t){void 0===t&&(t=!1);try{if(null==e)return t?"None":null;if("string"==typeof e)return t?(e=e.replace(/\\/g,"\\\\").replace(/\n/g,"\\n").replace(/\t/g,"\\t").replace(/\r/g,"\\r")).includes('"')?"'".concat(e,"'"):e.includes("'")?'"'.concat(e.replace(/'/g,"\\'"),'"'):"'".concat(e,"'"):e;if("boolean"==typeof e)return e?"True":"False";if(Array.isArray(e)){var n=e.map((function(e){return Pt(e,!0)}));return"[".concat(n.join(", "),"]")}if("object"==typeof e){var r=Object.entries(e).filter((function(e){return null!=c(e,1)[0]})).map((function(e){var t=c(e,2),n=t[0],r=t[1];return"".concat(String(Pt(n,!0)),": ").concat(String(Pt(r,!0)))})),i="{".concat(r.join(", "),"}");return i.includes("\\'")&&(i=i.replace(/'/g,"'").replace(/'/g,"\\'")),i}return e.toString()}catch(e){return null}}var It=["input","select","textarea"],jt=function(e,t){var n,r=null===(n=null===window||void 0===window?void 0:window.getComputedStyle)||void 0===n?void 0:n.call(window,e);return"pointer"===(null==r?void 0:r.getPropertyValue("cursor"))&&"click"===t},Rt=function(e,t,n){return void 0===n&&(n=!1),function(r,i){var o,u,c=e.pageUrlAllowlist,l=e.shouldTrackEventResolver,s=null===(u=null===(o=null==i?void 0:i.tagName)||void 0===o?void 0:o.toLowerCase)||void 0===u?void 0:u.call(o);if(!s)return!1;if(l)return l(r,i);if(!qt(window.location.href,c))return!1;var a=String(null==i?void 0:i.getAttribute("type"))||"";if("string"==typeof a)switch(a.toLowerCase()){case"hidden":case"password":return!1}var f=jt(i,r);if(n&&f)return!0;if(t){var d=t.some((function(e){var t;return!!(null===(t=null==i?void 0:i.matches)||void 0===t?void 0:t.call(i,e))}));if(!d)return!1}switch(s){case"input":case"select":case"textarea":return"change"===r||"click"===r;default:return!!f||"click"===r}}},Lt=function(e){if(null==e)return!1;if("string"==typeof e){if(/^(?:(4[0-9]{12}(?:[0-9]{3})?)|(5[1-5][0-9]{14})|(6(?:011|5[0-9]{2})[0-9]{12})|(3[47][0-9]{13})|(3(?:0[0-5]|[68][0-9])[0-9]{11})|((?:2131|1800|35[0-9]{3})[0-9]{11}))$/.test((e||"").replace(/[- ]/g,"")))return!1;if(/(^\d{3}-?\d{2}-?\d{4}$)/.test(e))return!1}return!0},Ft=function(e){var t,n,r,i=null===(n=null===(t=null==e?void 0:e.tagName)||void 0===t?void 0:t.toLowerCase)||void 0===n?void 0:n.call(t),o=e instanceof HTMLElement&&"true"===(null===(r=e.getAttribute("contenteditable"))||void 0===r?void 0:r.toLowerCase());return!It.includes(i)&&!o},Nt=function(e){var t="";return Ft(e)&&e.childNodes&&e.childNodes.length&&e.childNodes.forEach((function(e){var n,r="";(n=e)&&3===n.nodeType?e.textContent&&(r=e.textContent):r=Nt(e),t+=r.split(/(\s+)/).filter(Lt).join("").replace(/[\r\n]/g," ").replace(/[ ]+/g," ").substring(0,255)})),t},qt=function(e,t){return!t||!t.length||t.some((function(t){return"string"==typeof t?e===t:e.match(t)}))},Mt=function(e){return Object.keys(e).reduce((function(t,n){var r=e[n];return function(e){return null==e||"object"==typeof e&&0===Object.keys(e).length||"string"==typeof e&&0===e.trim().length}(r)||(t[n]=r),t}),{})},Dt=function(e){var t,n=e.parentElement;if(!n)return"";try{t=n.querySelector(":scope>span,h1,h2,h3,h4,h5,h6")}catch(e){t=null}if(t){var r=t.textContent||"";return Lt(r)?r:""}return Dt(n)},Ut=function(e,t){return e?t.some((function(t){var n;return null===(n=null==e?void 0:e.matches)||void 0===n?void 0:n.call(e,t)}))?e:Ut(null==e?void 0:e.parentElement,t):null},zt=function(e){var t,n,r;if(!e)return{};var i=null===(r=null===(n=null==e?void 0:e.tagName)||void 0===n?void 0:n.toLowerCase)||void 0===r?void 0:r.call(n),o=((t={})[S]=i,t[k]=Nt(e),t[T]=window.location.href.split("?")[0],t);return Mt(o)};var Wt=function(e){return!(null===e.event.target||!e.closestTrackedAncestor)},Vt=function(e,t,n){var r,i,o,u=null===(o=null===(i=null==t?void 0:t.tagName)||void 0===i?void 0:i.toLowerCase)||void 0===o?void 0:o.call(i),c="function"==typeof t.getBoundingClientRect?t.getBoundingClientRect():{left:null,top:null},l=t.getAttribute("aria-label"),s=function(e,t){return e.getAttributeNames().reduce((function(n,r){if(r.startsWith(t)){var i=r.replace(t,""),o=e.getAttribute(r);i&&(n[i]=o||"")}return n}),{})}(t,n),a=Dt(t),f=((r={})["[Amplitude] Element ID"]=t.getAttribute("id")||"",r["[Amplitude] Element Class"]=t.getAttribute("class"),r["[Amplitude] Element Hierarchy"]=Ot(t),r[S]=u,r[k]=Nt(t),r["[Amplitude] Element Position Left"]=null==c.left?null:Math.round(c.left),r["[Amplitude] Element Position Top"]=null==c.top?null:Math.round(c.top),r["[Amplitude] Element Aria Label"]=l,r["[Amplitude] Element Attributes"]=s,r["[Amplitude] Element Parent Label"]=a,r[T]=window.location.href.split("?")[0],r["[Amplitude] Page Title"]="undefined"!=typeof document&&document.title||"",r["[Amplitude] Viewport Height"]=window.innerHeight,r["[Amplitude] Viewport Width"]=window.innerWidth,r);return"a"===u&&"click"===e&&t instanceof HTMLAnchorElement&&(f["[Amplitude] Element Href"]=t.href),Mt(f)},Yt=function(e,t,n,r,i){void 0===i&&(i=!1);var o={event:e,timestamp:Date.now(),type:t};if(function(e){return"click"===e.type||"change"===e.type}(o)&&null!==o.event.target){if(i)if(jt(o.event.target,o.type))return o.closestTrackedAncestor=o.event.target,o.targetElementProperties=Vt(o.type,o.closestTrackedAncestor,r),o;var u=Ut(o.event.target,n);return u&&(o.closestTrackedAncestor=u,o.targetElementProperties=Vt(o.type,u,r)),o}return o};var Ht=function(e,t){if("DOM_ELEMENT"===e.sourceType){var n=function(e,t){if("DOM_ELEMENT"===e.sourceType){var n=document.documentElement;return e.scope&&t&&(n=t.closest(e.scope)),n&&e.selector?n.querySelector(e.selector):n}}(e,t);if(!n)return;return"TEXT"===e.elementExtractType?n.textContent:"ATTRIBUTE"===e.elementExtractType&&e.attribute?n.getAttribute(e.attribute):void 0}},Gt=function(e,t){e.forEach((function(e){if("string"!=typeof e&&"ATTACH_EVENT_PROPERTY"===e.actionType){var n=Ht(e.dataSource,t.closestTrackedAncestor);t.targetElementProperties[e.destinationKey]=n}}))},Kt=function(){function e(e){var t=(void 0===e?{}:e).origin,n=void 0===t?C:t,r=this;this.endpoint=C,this.requestCallbacks={},this.onSelect=function(e){r.notify({action:"element-selected",data:e})},this.onTrack=function(e,t){"selector-mode-changed"===e?r.notify({action:"track-selector-mode-changed",data:t}):"selector-moved"===e&&r.notify({action:"track-selector-moved",data:t})},this.endpoint=n}return e.prototype.notify=function(e){var t,n,r,i;null===(n=null===(t=this.logger)||void 0===t?void 0:t.debug)||void 0===n||n.call(t,"Message sent: ",JSON.stringify(e)),null===(i=null===(r=window.opener)||void 0===r?void 0:r.postMessage)||void 0===i||i.call(r,e,this.endpoint)},e.prototype.sendRequest=function(e,t,n){var r=this;void 0===n&&(n={timeout:15e3});var i="".concat(Date.now(),"-").concat(Math.random().toString(36).substr(2,9)),o={id:i,action:e,args:t};return new Promise((function(t,u){r.requestCallbacks[i]={resolve:t,reject:u},r.notify(o),(null==n?void 0:n.timeout)>0&&setTimeout((function(){u(new Error("".concat(e," timed out (id: ").concat(i,")"))),delete r.requestCallbacks[i]}),n.timeout)}))},e.prototype.handleResponse=function(e){var t;this.requestCallbacks[e.id]?(this.requestCallbacks[e.id].resolve(e.responseData),delete this.requestCallbacks[e.id]):null===(t=this.logger)||void 0===t||t.warn("No callback found for request id: ".concat(e.id))},e.prototype.setup=function(e){var t=this,n=void 0===e?{}:e,r=n.logger,i=n.endpoint,o=n.isElementSelectable,u=n.cssSelectorAllowlist,c=n.actionClickAllowlist;this.logger=r,i&&this.endpoint===C&&(this.endpoint=i);var l=null;window.addEventListener("message",(function(e){var n,r,i,s,a;if(null===(r=null===(n=t.logger)||void 0===n?void 0:n.debug)||void 0===r||r.call(n,"Message received: ",JSON.stringify(e)),t.endpoint===e.origin){var f,d=null==e?void 0:e.data,v=null==d?void 0:d.action;if(v)if("id"in d)null===(s=null===(i=t.logger)||void 0===i?void 0:i.debug)||void 0===s||s.call(i,"Received Response to previous request: ",JSON.stringify(e)),t.handleResponse(d);else if("ping"===v)t.notify({action:"pong"});else if("initialize-visual-tagging-selector"===v){var h=null==d?void 0:d.data;(f="https://cdn.amplitude.com/libs/visual-tagging-selector-1.0.0-alpha.js.gz",new Promise((function(e,t){var n;try{var r=document.createElement("script");r.type="text/javascript",r.async=!0,r.src=f,r.addEventListener("load",(function(){e({status:!0})}),{once:!0}),r.addEventListener("error",(function(){t({status:!1,message:"Failed to load the script ".concat(f)})})),null===(n=document.head)||void 0===n||n.appendChild(r)}catch(e){t(e)}}))).then((function(){var e;l=null===(e=null===window||void 0===window?void 0:window.amplitudeVisualTaggingSelector)||void 0===e?void 0:e.call(window,{getEventTagProps:zt,isElementSelectable:function(e){return!o||o((null==h?void 0:h.actionType)||"click",e)},onTrack:t.onTrack,onSelect:t.onSelect,visualHighlightClass:"amp-visual-tagging-selector-highlight",messenger:t,cssSelectorAllowlist:u,actionClickAllowlist:c,extractDataFromDataSource:Ht}),t.notify({action:"selector-loaded"})})).catch((function(){var e;null===(e=t.logger)||void 0===e||e.warn("Failed to initialize visual tagging selector")}))}else"close-visual-tagging-selector"===v&&(null===(a=null==l?void 0:l.close)||void 0===a||a.call(l))}})),this.notify({action:"page-loaded"})},e}();function Bt(e){var t,n,r,i=e.amplitude,o=e.allObservables,l=e.options,s=e.shouldTrackEvent,a=e.evaluateTriggers,f=o.clickObservable,d=f.pipe(te((function(e,t){var n,r=!1;e.subscribe(ne(t,(function(e){var i=n;n=e,r&&t.next([i,e]),r=!0})))})),mt((function(e){var t=c(e,2),n=t[0],r=t[1],i=n.event.target!==r.event.target,o=Math.abs(r.event.screenX-n.event.screenX)<=20&&Math.abs(r.event.screenY-n.event.screenY)<=20;return i&&!o}))),v=bt(d,f.pipe((t=l.debounceTime,void 0===n&&(n=ke),te((function(e,r){var i=null,o=null,u=null,c=function(){if(i){i.unsubscribe(),i=null;var e=o;o=null,r.next(e)}};function l(){var e=u+t,o=n.now();if(o<e)return i=this.schedule(void 0,e-o),void r.add(i);c()}e.subscribe(ne(r,(function(e){o=e,u=n.now(),i||(i=n.schedule(l,t),r.add(i))}),(function(){c(),r.complete()}),void 0,(function(){o=i=null})))}))),it((function(){return"timeout"})))),h=f.pipe(function(e,t){void 0===t&&(t=ke);var n=pt(e,t);return _t((function(){return n}))}(0),mt(Wt),mt((function(e){return s("click",e.closestTrackedAncestor)})),it((function(e){return a(e)})),(r=v,te((function(e,t){var n=[];return e.subscribe(ne(t,(function(e){return n.push(e)}),(function(){t.next(n),t.complete()}))),Ke(r).subscribe(ne(t,(function(){var e=n;n=[],t.next(e)}),z)),function(){n=null}}))));return h.subscribe((function(e){var t,n,r=(e.length,E);try{for(var o=u(e),c=o.next();!c.done;c=o.next()){var l=c.value;null==i||i.track(r,l.targetElementProperties)}}catch(e){t={error:e}}finally{try{c&&!c.done&&(n=o.return)&&n.call(o)}finally{if(t)throw t.error}}}))}function Xt(e){var t=e.amplitude,n=e.allObservables,r=e.options,i=e.getEventProperties,o=e.shouldTrackEvent,u=e.shouldTrackActionClick,s=n.clickObservable,a=n.mutationObservable,f=n.navigateObservable,d=s.pipe(mt((function(e){return!o("click",e.closestTrackedAncestor)})),it((function(e){var t=Ut(e.event.target,r.actionClickAllowlist);return e.closestTrackedAncestor=t,null!==e.closestTrackedAncestor&&(e.targetElementProperties=i(e.type,e.closestTrackedAncestor)),e})),mt(Wt),mt((function(e){return u("click",e.closestTrackedAncestor)}))),v=[a];f&&v.push(f);var h,p,b=bt.apply(void 0,l([],c(v),!1)),y=d.pipe((h=function(e){return b.pipe(wt(1),function(e,t){var n=tt(e)?{first:e}:"number"==typeof e?{each:e}:e,r=n.first,i=n.each,o=n.with,u=void 0===o?rt:o,c=n.scheduler,l=void 0===c?null!=t?t:ke:c,s=n.meta,a=void 0===s?null:s;if(null==r&&null==i)throw new TypeError("No timeout provided.");return te((function(e,t){var n,o,c=null,s=0,f=function(e){o=Xe(t,l,(function(){try{n.unsubscribe(),Ke(u({meta:a,lastValue:c,seen:s})).subscribe(t)}catch(e){t.error(e)}}),e)};n=e.subscribe(ne(t,(function(e){null==o||o.unsubscribe(),s++,t.next(c=e),i>0&&f(i)}),void 0,void 0,(function(){(null==o?void 0:o.closed)||null==o||o.unsubscribe(),c=null}))),!s&&f(null!=r?"number"==typeof r?r:+r-l.now():i)}))}({first:500,with:function(){return Re}}),it((function(){return e})))},te((function(e,t){var n=null,r=0,i=!1,o=function(){return i&&!n&&t.complete()};e.subscribe(ne(t,(function(e){null==n||n.unsubscribe();var i=0,u=r++;Ke(h(e,u)).subscribe(n=ne(t,(function(n){return t.next(p?p(e,n,u,i++):n)}),(function(){n=null,o()})))}),(function(){i=!0,o()})))}))));return y.subscribe((function(e){null==t||t.track(E,i("click",e.closestTrackedAncestor))}))}var Zt,Jt=function(){return new Q((function(e){var t=new MutationObserver((function(t){e.next(t)}));return t.observe(document.body,{childList:!0,attributes:!0,characterData:!0,subtree:!0}),function(){return t.disconnect()}}))},Qt=function(e){return void 0===e&&(e="click"),vt(document,e,{capture:!0})},$t={"[Amplitude] Element Clicked":"click","[Amplitude] Element Changed":"change"},en=function(e){var t,n,r,i,o=Object.values($t).reduce((function(e,t){return e[t]=new Set,e}),{});if(!e)return o;try{for(var c=u(e),l=c.next();!l.done;l=c.next()){var s=l.value;try{try{for(var a=(r=void 0,u(s.definition)),f=a.next();!f.done;f=a.next()){var d=f.value,v=$t[d.event_type];v&&o[v].add(s.id)}}catch(e){r={error:e}}finally{try{f&&!f.done&&(i=a.return)&&i.call(a)}finally{if(r)throw r.error}}}catch(e){console.warn("Skipping Labeled Event due to malformed definition",null==s?void 0:s.id,e)}}}catch(e){t={error:e}}finally{try{l&&!l.done&&(n=c.return)&&n.call(c)}finally{if(t)throw t.error}}return o},tn=function(e){var t,n,r,i,o=new Map;try{for(var c=u(e),l=c.next();!l.done;l=c.next()){var s=l.value;try{for(var a=(r=void 0,u(s.conditions)),f=a.next();!f.done;f=a.next()){var d=f.value;if("LABELED_EVENT"===d.type){var v=d.match.eventId,h=o.get(v);h||(h=[],o.set(v,h)),h.push(s)}}}catch(e){r={error:e}}finally{try{f&&!f.done&&(i=a.return)&&i.call(a)}finally{if(r)throw r.error}}}}catch(e){t={error:e}}finally{try{l&&!l.done&&(n=c.return)&&n.call(c)}finally{if(t)throw t.error}}return o},nn=function(e,t){return t.filter((function(t){return t.definition.some((function(t){return $t[t.event_type]===e.type&&t.filters.every((function(t){return function(e,t){try{if("[Amplitude] Element Text"===t.subprop_key)return"is"===t.subprop_op&&t.subprop_value.includes(e.targetElementProperties["[Amplitude] Element Text"]);if("[Amplitude] Element Hierarchy"===t.subprop_key)return"autotrack css match"===t.subprop_op&&!!e.closestTrackedAncestor.closest(t.subprop_value.toString())}catch(e){return console.error("Error matching event to filter",e),!1}return!1}(e,t)}))}))}))},rn=function(){function e(e,t,n){this.groupedLabeledEvents=e,this.labeledEventToTriggerMap=t,this.options=n}return e.prototype.evaluate=function(e){var t,n,r=this.options.pageActions;if(!r)return e;var i=function(e,t){var n,r,i,o,c=new Set;try{for(var l=u(e),s=l.next();!s.done;s=l.next()){var a=s.value,f=t.get(a.id);if(f)try{for(var d=(i=void 0,u(f)),v=d.next();!v.done;v=d.next()){var h=v.value;c.add(h)}}catch(e){i={error:e}}finally{try{v&&!v.done&&(o=d.return)&&o.call(d)}finally{if(i)throw i.error}}}}catch(e){n={error:e}}finally{try{s&&!s.done&&(r=l.return)&&r.call(l)}finally{if(n)throw n.error}}return Array.from(c)}(nn(e,Array.from(this.groupedLabeledEvents[e.type]).map((function(e){return r.labeledEvents[e]}))),this.labeledEventToTriggerMap);try{for(var o=u(i),c=o.next();!c.done;c=o.next()){var l=c.value;Gt(l.actions,e)}}catch(e){t={error:e}}finally{try{c&&!c.done&&(n=o.return)&&n.call(o)}finally{if(t)throw t.error}}return e},e.prototype.update=function(e,t,n){this.groupedLabeledEvents=e,this.labeledEventToTriggerMap=t,this.options=n},e}();!function(e){e.ClickObservable="clickObservable",e.ChangeObservable="changeObservable",e.NavigateObservable="navigateObservable",e.MutationObservable="mutationObservable"}(Zt||(Zt={}));var on=function(e){var t,n,s,a,f,d,v;void 0===e&&(e={});var y=e.dataAttributePrefix,m=void 0===y?p:y,g=e.visualTaggingOptions,w=void 0===g?{enabled:!0,messenger:new Kt}:g;e.cssSelectorAllowlist=null!==(t=e.cssSelectorAllowlist)&&void 0!==t?t:h,e.actionClickAllowlist=null!==(n=e.actionClickAllowlist)&&void 0!==n?n:b,e.debounceTime=null!==(s=e.debounceTime)&&void 0!==s?s:0;var _="@amplitude/plugin-autocapture-browser",A=[],E=en(Object.values(null!==(f=null===(a=e.pageActions)||void 0===a?void 0:a.labeledEvents)&&void 0!==f?f:{})),S=tn(null!==(v=null===(d=e.pageActions)||void 0===d?void 0:d.triggers)&&void 0!==v?v:[]),k=function(e,t,n){return new rn(e,t,n)}(E,S,e);return{name:_,type:"enrichment",setup:function(t,n){return i(void 0,void 0,void 0,(function(){var u,s,a,f,d,v,h,p,b,y;return o(this,(function(g){return"undefined"==typeof document||(t.fetchRemoteConfig&&x({localConfig:t,configKeys:["analyticsSDK.pageActions"]}).then((function(n){return i(void 0,void 0,void 0,(function(){var i,u;return o(this,(function(o){switch(o.label){case 0:return o.trys.push([0,2,,3]),[4,n.getRemoteConfig("analyticsSDK","pageActions")];case 1:return function(t){var n,i;t&&(e.pageActions=r(r({},e.pageActions),t),E=en(Object.values(null!==(n=e.pageActions.labeledEvents)&&void 0!==n?n:{})),S=tn(null!==(i=e.pageActions.triggers)&&void 0!==i?i:[]),k.update(E,S,e))}(o.sent()),[3,3];case 2:return i=o.sent(),null===(u=null==t?void 0:t.loggerProvider)||void 0===u||u.error("Failed to fetch remote config: ".concat(String(i))),[3,3];case 3:return[2]}}))}))})).catch((function(e){var n;null===(n=null==t?void 0:t.loggerProvider)||void 0===n||n.error("Failed to create remote config fetch: ".concat(String(e)))})),u=Rt(e,e.cssSelectorAllowlist),s=Rt(e,e.actionClickAllowlist),a=function(){var t,n,r=Qt().pipe(it((function(t){return Yt(t,"click",e.cssSelectorAllowlist,m)})),At()),i=vt(document,"change",{capture:!0}).pipe(it((function(t){return Yt(t,"change",e.cssSelectorAllowlist,m)})),At());window.navigation&&(n=vt(window.navigation,"navigate").pipe(it((function(t){return Yt(t,"navigate",e.cssSelectorAllowlist,m)})),At()));var o=Jt().pipe(it((function(t){return Yt(t,"mutation",e.cssSelectorAllowlist,m)})),At());return(t={})[Zt.ClickObservable]=r,t[Zt.ChangeObservable]=i,t[Zt.NavigateObservable]=n,t[Zt.MutationObservable]=o,t}(),f=Bt({allObservables:a,options:e,amplitude:n,shouldTrackEvent:u,evaluateTriggers:k.evaluate.bind(k)}),A.push(f),d=function(e){var t=e.amplitude,n=e.allObservables,r=e.getEventProperties,i=e.shouldTrackEvent,o=e.evaluateTriggers;return n.changeObservable.pipe(mt(Wt),mt((function(e){return i("change",e.closestTrackedAncestor)})),it((function(e){return o(e)}))).subscribe((function(e){null==t||t.track("[Amplitude] Element Changed",r("change",e.closestTrackedAncestor))}))}({allObservables:a,getEventProperties:function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];return Vt.apply(void 0,l(l([],c(e),!1),[m],!1))},amplitude:n,shouldTrackEvent:u,evaluateTriggers:k.evaluate.bind(k)}),A.push(d),v=Xt({allObservables:a,options:e,getEventProperties:function(){for(var e=[],t=0;t<arguments.length;t++)e[t]=arguments[t];return Vt.apply(void 0,l(l([],c(e),!1),[m],!1))},amplitude:n,shouldTrackEvent:u,shouldTrackActionClick:s}),A.push(v),null===(b=null==t?void 0:t.loggerProvider)||void 0===b||b.log("".concat(_," has been successfully added.")),window.opener&&w.enabled&&(h=e.cssSelectorAllowlist,p=e.actionClickAllowlist,null===(y=w.messenger)||void 0===y||y.setup(r(r({logger:null==t?void 0:t.loggerProvider},(null==t?void 0:t.serverZone)&&{endpoint:O[t.serverZone]}),{isElementSelectable:Rt(e,l(l([],c(h),!1),c(p),!1)),cssSelectorAllowlist:h,actionClickAllowlist:p})))),[2]}))}))},execute:function(e){return i(void 0,void 0,void 0,(function(){return o(this,(function(t){return[2,e]}))}))},teardown:function(){return i(void 0,void 0,void 0,(function(){var e,t,n,r;return o(this,(function(i){try{for(e=u(A),t=e.next();!t.done;t=e.next())t.value.unsubscribe()}catch(e){n={error:e}}finally{try{t&&!t.done&&(r=e.return)&&r.call(e)}finally{if(n)throw n.error}}return[2]}))}))}}};return e.WindowMessenger=Kt,e.autocapturePlugin=on,e.frustrationPlugin=function(e){var t,n,s,a,f;void 0===e&&(e={});var d="@amplitude/plugin-frustration-browser",v=[],h=null!==(n=null===(t=e.rageClicks)||void 0===t?void 0:t.cssSelectorAllowlist)&&void 0!==n?n:m,b=null!==(a=null===(s=e.deadClicks)||void 0===s?void 0:s.cssSelectorAllowlist)&&void 0!==a?a:y,g=null!==(f=e.dataAttributePrefix)&&void 0!==f?f:p,w=l([],c(new Set(l(l([],c(h),!1),c(b),!1))),!1);return{name:d,type:"enrichment",setup:function(t,n){return i(void 0,void 0,void 0,(function(){var i,u,s,a,f,p;return o(this,(function(o){return"undefined"==typeof document||(i=Rt(e,h),u=Rt(e,b),s=function(){var e,t,n=Qt("pointerdown").pipe(it((function(e){return Yt(e,"click",w,g,!0)})),At());window.navigation&&(t=vt(window.navigation,"navigate").pipe(it((function(e){return Yt(e,"navigate",w,g)})),At()));var r=Jt().pipe(it((function(e){return Yt(e,"mutation",w,g)})),At());return(e={})[Zt.ClickObservable]=n,e[Zt.ChangeObservable]=new Q,e[Zt.NavigateObservable]=t,e[Zt.MutationObservable]=r,e}(),a=function(e){var t=e.amplitude,n=e.allObservables,i=e.shouldTrackRageClick,o=n.clickObservable,u=[];return o.pipe(mt(Wt),mt((function(e){return i("click",e.closestTrackedAncestor)})),it((function(e){var t=e.timestamp;u.length>0&&u[u.length-1].closestTrackedAncestor!==e.closestTrackedAncestor&&u.splice(0,u.length);for(var n=0;n<u.length&&!(t-u[n].timestamp<1e3);n++);if(u.splice(0,n),u.push(e),u.length<4)return null;var i=u[0],o=u[u.length-1],c=r({"[Amplitude] Begin Time":new Date(i.timestamp).toISOString(),"[Amplitude] End Time":new Date(o.timestamp).toISOString(),"[Amplitude] Duration":o.timestamp-i.timestamp,"[Amplitude] Clicks":u.map((function(e){return{X:e.event.clientX,Y:e.event.clientY,Time:e.timestamp}})),"[Amplitude] Click Count":u.length},i.targetElementProperties);return u.splice(0,u.length),{rageClickEvent:c,time:i.timestamp}})),mt((function(e){return null!==e}))).subscribe((function(e){null!==e&&t.track("[Amplitude] Rage Click",e.rageClickEvent,{time:e.time})}))}({allObservables:s,amplitude:n,shouldTrackRageClick:i}),v.push(a),f=function(e){var t=e.amplitude,n=e.allObservables,i=e.getEventProperties,o=e.shouldTrackDeadClick,u=n.clickObservable,s=n.mutationObservable,a=n.navigateObservable,f=u.pipe(mt(Wt),mt((function(e){return o("click",e.closestTrackedAncestor)}))),d=[s];a&&d.push(a);var v=bt.apply(void 0,l([],c(d),!1));return f.pipe(ct((function(e){var t;return gt(new Q((function(n){return t=setTimeout((function(){return n.next(e)}),3e3),function(){clearTimeout(t)}})),v.pipe(wt(1),it((function(){return null})))).pipe(mt((function(e){return null!==e})))})),Et(3e3)).subscribe((function(e){var n={"[Amplitude] X":e.event.clientX,"[Amplitude] Y":e.event.clientY};t.track("[Amplitude] Dead Click",r(r({},i("click",e.closestTrackedAncestor)),n),{time:e.timestamp})}))}({amplitude:n,allObservables:s,getEventProperties:function(e,t){return Vt(e,t,g)},shouldTrackDeadClick:u}),v.push(f),null===(p=null==t?void 0:t.loggerProvider)||void 0===p||p.log("".concat(d," has been successfully added."))),[2]}))}))},execute:function(e){return i(void 0,void 0,void 0,(function(){return o(this,(function(t){return[2,e]}))}))},teardown:function(){return i(void 0,void 0,void 0,(function(){var e,t,n,r;return o(this,(function(i){try{for(e=u(v),t=e.next();!t.done;t=e.next())t.value.unsubscribe()}catch(e){n={error:e}}finally{try{t&&!t.done&&(r=e.return)&&r.call(e)}finally{if(n)throw n.error}}return[2]}))}))}}},e.plugin=on,Object.defineProperty(e,"__esModule",{value:!0}),e}({});
2
2
  //# sourceMappingURL=amplitude-min.js.map
Binary file