@saasquatch/squatch-js 2.7.0-2 → 2.7.0-4

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 (47) hide show
  1. package/{dist copy/api/AnalyticsApi.d.ts → dist/api/AnalyticsApi.d.ts} +1 -1
  2. package/{dist copy/api/EventsApi.d.ts → dist/api/EventsApi.d.ts} +1 -1
  3. package/{dist copy/api/WidgetApi.d.ts → dist/api/WidgetApi.d.ts} +1 -1
  4. package/{dist copy/async.d.ts → dist/async.d.ts} +1 -1
  5. package/dist/squatch.cjs.js +2120 -7
  6. package/dist/squatch.cjs.js.map +1 -0
  7. package/{dist copy/squatch.d.ts → dist/squatch.d.ts} +9 -9
  8. package/dist/squatch.esm.js +2161 -0
  9. package/dist/squatch.esm.js.map +1 -0
  10. package/dist/squatch.js +2126 -9
  11. package/dist/squatch.js.map +1 -0
  12. package/dist/squatch.min.js +6 -0
  13. package/{dist copy/types.d.ts → dist/types.d.ts} +1 -1
  14. package/{dist copy/utils/decodeUserJwt.d.ts → dist/utils/decodeUserJwt.d.ts} +1 -1
  15. package/{dist copy/utils/io.d.ts → dist/utils/io.d.ts} +1 -1
  16. package/{dist copy/utils/utmUtils.d.ts → dist/utils/utmUtils.d.ts} +1 -1
  17. package/{dist copy/utils/validate.d.ts → dist/utils/validate.d.ts} +1 -1
  18. package/{dist copy/widgets/EmbedWidget.d.ts → dist/widgets/EmbedWidget.d.ts} +1 -1
  19. package/{dist copy/widgets/PopupWidget.d.ts → dist/widgets/PopupWidget.d.ts} +1 -1
  20. package/{dist copy/widgets/Widget.d.ts → dist/widgets/Widget.d.ts} +3 -3
  21. package/{dist copy/widgets/Widgets.d.ts → dist/widgets/Widgets.d.ts} +2 -2
  22. package/{dist copy/widgets/declarative/DeclarativeWidget.d.ts → dist/widgets/declarative/DeclarativeWidget.d.ts} +5 -5
  23. package/{dist copy/widgets/declarative/DeclarativeWidgets.d.ts → dist/widgets/declarative/DeclarativeWidgets.d.ts} +1 -1
  24. package/package.json +9 -8
  25. package/vite.config.ts +19 -4
  26. package/coverage/clover.xml +0 -917
  27. package/coverage/coverage-final.json +0 -21
  28. package/coverage/lcov-report/base.css +0 -224
  29. package/coverage/lcov-report/block-navigation.js +0 -87
  30. package/coverage/lcov-report/favicon.png +0 -0
  31. package/coverage/lcov-report/prettify.css +0 -1
  32. package/coverage/lcov-report/prettify.js +0 -2
  33. package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
  34. package/coverage/lcov-report/sorter.js +0 -196
  35. package/coverage/lcov.info +0 -1669
  36. package/dist/squatch.es.js +0 -1622
  37. package/dist copy/squatch.cjs.js +0 -48
  38. package/dist copy/squatch.es.js +0 -1622
  39. package/dist copy/squatch.esm.js +0 -2317
  40. package/dist copy/squatch.esm.js.map +0 -1
  41. package/dist copy/squatch.js +0 -2337
  42. package/dist copy/squatch.js.map +0 -1
  43. /package/{dist copy → dist}/api/graphql.d.ts +0 -0
  44. /package/{dist copy → dist}/docs.d.ts +0 -0
  45. /package/{dist copy → dist}/globals.d.ts +0 -0
  46. /package/{dist copy → dist}/utils/cookieUtils.d.ts +0 -0
  47. /package/{dist copy → dist}/utils/domready.d.ts +0 -0
@@ -1,4 +1,4 @@
1
- import { EngagementMedium } from "../types";
1
+ import { EngagementMedium } from '../types';
2
2
  /**
3
3
  *
4
4
  * The AnalyticsApi class is a wrapper around the Analytics Endpoints of
@@ -1,4 +1,4 @@
1
- import { ConfigOptions, JWT } from "../types";
1
+ import { ConfigOptions, JWT } from '../types';
2
2
  type TrackOptions = {
3
3
  jwt?: JWT;
4
4
  };
@@ -1,4 +1,4 @@
1
- import { ConfigOptions, ReferralCookie, WidgetConfig, WithRequired } from "../types";
1
+ import { ConfigOptions, ReferralCookie, WidgetConfig, WithRequired } from '../types';
2
2
  /**
3
3
  *
4
4
  * The WidgetApi class is a wrapper around the Widget Endpoints of the SaaSquatch REST API.
@@ -1,4 +1,4 @@
1
- import { ConfigOptions } from "./types";
1
+ import { ConfigOptions } from './types';
2
2
  declare global {
3
3
  interface Window {
4
4
  __squatchjsNamespace?: string;