@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.
- package/{dist copy/api/AnalyticsApi.d.ts → dist/api/AnalyticsApi.d.ts} +1 -1
- package/{dist copy/api/EventsApi.d.ts → dist/api/EventsApi.d.ts} +1 -1
- package/{dist copy/api/WidgetApi.d.ts → dist/api/WidgetApi.d.ts} +1 -1
- package/{dist copy/async.d.ts → dist/async.d.ts} +1 -1
- package/dist/squatch.cjs.js +2120 -7
- package/dist/squatch.cjs.js.map +1 -0
- package/{dist copy/squatch.d.ts → dist/squatch.d.ts} +9 -9
- package/dist/squatch.esm.js +2161 -0
- package/dist/squatch.esm.js.map +1 -0
- package/dist/squatch.js +2126 -9
- package/dist/squatch.js.map +1 -0
- package/dist/squatch.min.js +6 -0
- package/{dist copy/types.d.ts → dist/types.d.ts} +1 -1
- package/{dist copy/utils/decodeUserJwt.d.ts → dist/utils/decodeUserJwt.d.ts} +1 -1
- package/{dist copy/utils/io.d.ts → dist/utils/io.d.ts} +1 -1
- package/{dist copy/utils/utmUtils.d.ts → dist/utils/utmUtils.d.ts} +1 -1
- package/{dist copy/utils/validate.d.ts → dist/utils/validate.d.ts} +1 -1
- package/{dist copy/widgets/EmbedWidget.d.ts → dist/widgets/EmbedWidget.d.ts} +1 -1
- package/{dist copy/widgets/PopupWidget.d.ts → dist/widgets/PopupWidget.d.ts} +1 -1
- package/{dist copy/widgets/Widget.d.ts → dist/widgets/Widget.d.ts} +3 -3
- package/{dist copy/widgets/Widgets.d.ts → dist/widgets/Widgets.d.ts} +2 -2
- package/{dist copy/widgets/declarative/DeclarativeWidget.d.ts → dist/widgets/declarative/DeclarativeWidget.d.ts} +5 -5
- package/{dist copy/widgets/declarative/DeclarativeWidgets.d.ts → dist/widgets/declarative/DeclarativeWidgets.d.ts} +1 -1
- package/package.json +9 -8
- package/vite.config.ts +19 -4
- package/coverage/clover.xml +0 -917
- package/coverage/coverage-final.json +0 -21
- package/coverage/lcov-report/base.css +0 -224
- package/coverage/lcov-report/block-navigation.js +0 -87
- package/coverage/lcov-report/favicon.png +0 -0
- package/coverage/lcov-report/prettify.css +0 -1
- package/coverage/lcov-report/prettify.js +0 -2
- package/coverage/lcov-report/sort-arrow-sprite.png +0 -0
- package/coverage/lcov-report/sorter.js +0 -196
- package/coverage/lcov.info +0 -1669
- package/dist/squatch.es.js +0 -1622
- package/dist copy/squatch.cjs.js +0 -48
- package/dist copy/squatch.es.js +0 -1622
- package/dist copy/squatch.esm.js +0 -2317
- package/dist copy/squatch.esm.js.map +0 -1
- package/dist copy/squatch.js +0 -2337
- package/dist copy/squatch.js.map +0 -1
- /package/{dist copy → dist}/api/graphql.d.ts +0 -0
- /package/{dist copy → dist}/docs.d.ts +0 -0
- /package/{dist copy → dist}/globals.d.ts +0 -0
- /package/{dist copy → dist}/utils/cookieUtils.d.ts +0 -0
- /package/{dist copy → dist}/utils/domready.d.ts +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { ConfigOptions, ReferralCookie, WidgetConfig, WithRequired } from
|
|
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.
|