@posthog/browser-common 0.5.0 → 0.5.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/client.d.ts CHANGED
@@ -27,7 +27,7 @@ export interface CapturedEventInfo {
27
27
  }
28
28
  /** Per-call capture overrides, mirroring the client's public capture options. */
29
29
  export interface CaptureOptions {
30
- /** Override the event timestamp sent to PostHog. */
30
+ /** Override the event timestamp sent to PostHog. UTC is preferred; non-UTC input is converted to UTC. */
31
31
  timestamp?: Date;
32
32
  /** Override the event UUID used for de-duplication. */
33
33
  uuid?: string;
package/dist/config.js CHANGED
@@ -26,7 +26,7 @@ __webpack_require__.r(__webpack_exports__);
26
26
  __webpack_require__.d(__webpack_exports__, {
27
27
  default: ()=>__WEBPACK_DEFAULT_EXPORT__
28
28
  });
29
- const packageVersion = "0.5.0";
29
+ const packageVersion = "0.5.1";
30
30
  const Config = {
31
31
  DEBUG: false,
32
32
  LIB_VERSION: packageVersion,
package/dist/config.mjs CHANGED
@@ -1,4 +1,4 @@
1
- const packageVersion = "0.5.0";
1
+ const packageVersion = "0.5.1";
2
2
  const Config = {
3
3
  DEBUG: false,
4
4
  LIB_VERSION: packageVersion,
@@ -0,0 +1,3 @@
1
+ export type MaybePromise<T> = T | Promise<T>;
2
+ /** Chain sync and async values without deferring synchronous work to a microtask. */
3
+ export declare const continueWith: <T, R>(result: MaybePromise<T>, callback: (value: T) => MaybePromise<R>) => MaybePromise<R>;
@@ -0,0 +1,39 @@
1
+ "use strict";
2
+ var __webpack_require__ = {};
3
+ (()=>{
4
+ __webpack_require__.d = (exports1, definition)=>{
5
+ for(var key in definition)if (__webpack_require__.o(definition, key) && !__webpack_require__.o(exports1, key)) Object.defineProperty(exports1, key, {
6
+ enumerable: true,
7
+ get: definition[key]
8
+ });
9
+ };
10
+ })();
11
+ (()=>{
12
+ __webpack_require__.o = (obj, prop)=>Object.prototype.hasOwnProperty.call(obj, prop);
13
+ })();
14
+ (()=>{
15
+ __webpack_require__.r = (exports1)=>{
16
+ if ('undefined' != typeof Symbol && Symbol.toStringTag) Object.defineProperty(exports1, Symbol.toStringTag, {
17
+ value: 'Module'
18
+ });
19
+ Object.defineProperty(exports1, '__esModule', {
20
+ value: true
21
+ });
22
+ };
23
+ })();
24
+ var __webpack_exports__ = {};
25
+ __webpack_require__.r(__webpack_exports__);
26
+ __webpack_require__.d(__webpack_exports__, {
27
+ continueWith: ()=>continueWith
28
+ });
29
+ const continueWith = (result, callback)=>{
30
+ const promise = result;
31
+ return promise?.then ? promise.then(callback) : callback(result);
32
+ };
33
+ exports.continueWith = __webpack_exports__.continueWith;
34
+ for(var __webpack_i__ in __webpack_exports__)if (-1 === [
35
+ "continueWith"
36
+ ].indexOf(__webpack_i__)) exports[__webpack_i__] = __webpack_exports__[__webpack_i__];
37
+ Object.defineProperty(exports, '__esModule', {
38
+ value: true
39
+ });
@@ -0,0 +1,5 @@
1
+ const continueWith = (result, callback)=>{
2
+ const promise = result;
3
+ return promise?.then ? promise.then(callback) : callback(result);
4
+ };
5
+ export { continueWith };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@posthog/browser-common",
3
- "version": "0.5.0",
3
+ "version": "0.5.1",
4
4
  "description": "Internal shared browser utilities and extension primitives for PostHog Browser SDKs",
5
5
  "license": "MIT",
6
6
  "repository": {
@@ -65,8 +65,8 @@
65
65
  }
66
66
  },
67
67
  "dependencies": {
68
- "@posthog/core": "^1.47.0",
69
- "@posthog/types": "^1.402.2"
68
+ "@posthog/core": "^1.48.10",
69
+ "@posthog/types": "^1.405.2"
70
70
  },
71
71
  "devDependencies": {
72
72
  "@rslib/core": "0.10.6",