@hanzo/event 0.3.35 → 0.3.36
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/index.cjs +18 -2
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.mjs +18 -2
- package/dist/index.mjs.map +1 -1
- package/dist/react.cjs +18 -2
- package/dist/react.cjs.map +1 -1
- package/dist/react.mjs +18 -2
- package/dist/react.mjs.map +1 -1
- package/package.json +1 -1
- package/src/org.test.ts +16 -0
- package/src/org.ts +17 -1
- package/src/version.ts +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -8,7 +8,7 @@ declare function getFirstTouch(): Attribution | undefined;
|
|
|
8
8
|
/** Read persisted cohort dimensions. */
|
|
9
9
|
declare function getCohort(): Cohort | undefined;
|
|
10
10
|
|
|
11
|
-
declare const VERSION = "0.3.
|
|
11
|
+
declare const VERSION = "0.3.36";
|
|
12
12
|
|
|
13
13
|
/**
|
|
14
14
|
* parseDsn parses "https://<version>:<hmac>@<host>/v1/event/<projectId>" into its
|
package/dist/index.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ declare function getFirstTouch(): Attribution | undefined;
|
|
|
8
8
|
/** Read persisted cohort dimensions. */
|
|
9
9
|
declare function getCohort(): Cohort | undefined;
|
|
10
10
|
|
|
11
|
-
declare const VERSION = "0.3.
|
|
11
|
+
declare const VERSION = "0.3.36";
|
|
12
12
|
|
|
13
13
|
/**
|
|
14
14
|
* parseDsn parses "https://<version>:<hmac>@<host>/v1/event/<projectId>" into its
|
package/dist/index.mjs
CHANGED
|
@@ -92,7 +92,23 @@ function dsnForProduct(product, key) {
|
|
|
92
92
|
|
|
93
93
|
// src/org.ts
|
|
94
94
|
var ORG_DOMAIN = Object.freeze({
|
|
95
|
-
|
|
95
|
+
// A brand's domains are not a pattern — `hanzoskills.com` is Hanzo's and does
|
|
96
|
+
// not end in `hanzo.ai`, while `hanzo.works` is a registrable domain of its own
|
|
97
|
+
// rather than a subdomain of anything here. Each is stated because each is a
|
|
98
|
+
// separate fact, which is the whole reason this is a table.
|
|
99
|
+
hanzo: Object.freeze([
|
|
100
|
+
"hanzo.ai",
|
|
101
|
+
"hanzo.app",
|
|
102
|
+
"hanzo.bot",
|
|
103
|
+
"hanzo.chat",
|
|
104
|
+
"hanzo.codes",
|
|
105
|
+
"hanzo.id",
|
|
106
|
+
"hanzo.sh",
|
|
107
|
+
"hanzo.team",
|
|
108
|
+
"hanzo.ventures",
|
|
109
|
+
"hanzo.works",
|
|
110
|
+
"hanzoskills.com"
|
|
111
|
+
]),
|
|
96
112
|
lux: Object.freeze([
|
|
97
113
|
"lux.network",
|
|
98
114
|
"lux.exchange",
|
|
@@ -375,7 +391,7 @@ function uuidv7Time(id) {
|
|
|
375
391
|
}
|
|
376
392
|
|
|
377
393
|
// src/version.ts
|
|
378
|
-
var VERSION = "0.3.
|
|
394
|
+
var VERSION = "0.3.36";
|
|
379
395
|
|
|
380
396
|
// src/sentry.ts
|
|
381
397
|
var MAX_FRAMES = 50;
|