sitepong 0.0.7 → 0.0.10
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/{breadcrumbs-DwXK5gNn.d.ts → breadcrumbs-Cydh62b1.d.mts} +6 -0
- package/dist/{breadcrumbs-DwXK5gNn.d.mts → breadcrumbs-DRlJ9h_B.d.ts} +6 -0
- package/dist/index.d.mts +10 -59
- package/dist/index.d.ts +10 -59
- package/dist/index.js +9 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +8 -1
- package/dist/index.mjs.map +1 -1
- package/dist/nextjs/index.d.mts +3 -2
- package/dist/nextjs/index.d.ts +3 -2
- package/dist/react/index.d.mts +10 -12
- package/dist/react/index.d.ts +10 -12
- package/dist/react/index.js +2705 -2700
- package/dist/react/index.js.map +1 -1
- package/dist/react/index.mjs +2698 -2695
- package/dist/react/index.mjs.map +1 -1
- package/dist/server/index.d.mts +3 -2
- package/dist/server/index.d.ts +3 -2
- package/dist/types-CLEYbaV8.d.mts +88 -0
- package/dist/types-CLEYbaV8.d.ts +88 -0
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -4172,6 +4172,12 @@ var SitePongClient = class {
|
|
|
4172
4172
|
});
|
|
4173
4173
|
}
|
|
4174
4174
|
}
|
|
4175
|
+
/**
|
|
4176
|
+
* Check if the SDK is initialized
|
|
4177
|
+
*/
|
|
4178
|
+
isInitialized() {
|
|
4179
|
+
return this.initialized;
|
|
4180
|
+
}
|
|
4175
4181
|
/**
|
|
4176
4182
|
* Get a feature flag value
|
|
4177
4183
|
* Returns the cached evaluated result or default value
|
|
@@ -4608,6 +4614,7 @@ var setContext = sitepong.setContext.bind(sitepong);
|
|
|
4608
4614
|
var setUser = sitepong.setUser.bind(sitepong);
|
|
4609
4615
|
var setTags = sitepong.setTags.bind(sitepong);
|
|
4610
4616
|
var flush = sitepong.flush.bind(sitepong);
|
|
4617
|
+
var isInitialized = sitepong.isInitialized.bind(sitepong);
|
|
4611
4618
|
var getFlag = sitepong.getFlag.bind(sitepong);
|
|
4612
4619
|
var getAllFlags = sitepong.getAllFlags.bind(sitepong);
|
|
4613
4620
|
var getVariant = sitepong.getVariant.bind(sitepong);
|
|
@@ -4654,6 +4661,6 @@ var getLatestProfile = sitepong.getLatestProfile.bind(sitepong);
|
|
|
4654
4661
|
var flushProfiles = sitepong.flushProfiles.bind(sitepong);
|
|
4655
4662
|
var src_default = sitepong;
|
|
4656
4663
|
|
|
4657
|
-
export { TracePropagator, areFlagsReady, captureError, captureMessage, clearAnonymousId, createTraceContext, cronCheckin, cronStart, cronWrap, dbTrack, dbTrackSync, src_default as default, endSpan, endTransaction, extractTrace, flush, flushMetrics, flushProfiles, generateSpanId, generateTraceId, getAllFlags, getAnonymousId, getDbNPlusOnePatterns, getDbQueryCount, getDeviceSignals, getFlag, getFraudCheck, getLatestProfile, getProfiles, getReplaySessionId, getVariant, getVariantPayload2 as getVariantPayload, getVisitorId, getWebVitals, group, identify, init, isReplayRecording, metricDistribution, metricGauge, metricHistogram, metricIncrement, metricStartTimer, metricTime, profile, propagateTrace, refreshFlags, resetAnalytics, resetDbQueryCount, setAnonymousId, setContext, setTags, setUser, startProfileSpan, startReplay, startSpan, startTransaction, stopReplay, track, trackPageView, waitForFlags };
|
|
4664
|
+
export { TracePropagator, areFlagsReady, captureError, captureMessage, clearAnonymousId, sitepong as client, createTraceContext, cronCheckin, cronStart, cronWrap, dbTrack, dbTrackSync, src_default as default, endSpan, endTransaction, extractTrace, flush, flushMetrics, flushProfiles, generateSpanId, generateTraceId, getAllFlags, getAnonymousId, getDbNPlusOnePatterns, getDbQueryCount, getDeviceSignals, getFlag, getFraudCheck, getLatestProfile, getProfiles, getReplaySessionId, getVariant, getVariantPayload2 as getVariantPayload, getVisitorId, getWebVitals, group, identify, init, isInitialized, isReplayRecording, metricDistribution, metricGauge, metricHistogram, metricIncrement, metricStartTimer, metricTime, profile, propagateTrace, refreshFlags, resetAnalytics, resetDbQueryCount, setAnonymousId, setContext, setTags, setUser, startProfileSpan, startReplay, startSpan, startTransaction, stopReplay, track, trackPageView, waitForFlags };
|
|
4658
4665
|
//# sourceMappingURL=index.mjs.map
|
|
4659
4666
|
//# sourceMappingURL=index.mjs.map
|