@hanzo/event 0.3.34 → 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/README.md +19 -7
- 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 +10 -10
- package/src/anon.test.ts +1 -1
- package/src/org.test.ts +16 -0
- package/src/org.ts +17 -1
- package/src/version.ts +1 -1
- package/LICENSE.md +0 -21
package/dist/react.cjs
CHANGED
|
@@ -88,7 +88,23 @@ function dsnForProduct(product, key) {
|
|
|
88
88
|
|
|
89
89
|
// src/org.ts
|
|
90
90
|
var ORG_DOMAIN = Object.freeze({
|
|
91
|
-
|
|
91
|
+
// A brand's domains are not a pattern — `hanzoskills.com` is Hanzo's and does
|
|
92
|
+
// not end in `hanzo.ai`, while `hanzo.works` is a registrable domain of its own
|
|
93
|
+
// rather than a subdomain of anything here. Each is stated because each is a
|
|
94
|
+
// separate fact, which is the whole reason this is a table.
|
|
95
|
+
hanzo: Object.freeze([
|
|
96
|
+
"hanzo.ai",
|
|
97
|
+
"hanzo.app",
|
|
98
|
+
"hanzo.bot",
|
|
99
|
+
"hanzo.chat",
|
|
100
|
+
"hanzo.codes",
|
|
101
|
+
"hanzo.id",
|
|
102
|
+
"hanzo.sh",
|
|
103
|
+
"hanzo.team",
|
|
104
|
+
"hanzo.ventures",
|
|
105
|
+
"hanzo.works",
|
|
106
|
+
"hanzoskills.com"
|
|
107
|
+
]),
|
|
92
108
|
lux: Object.freeze([
|
|
93
109
|
"lux.network",
|
|
94
110
|
"lux.exchange",
|
|
@@ -366,7 +382,7 @@ function hzAnonId() {
|
|
|
366
382
|
}
|
|
367
383
|
|
|
368
384
|
// src/version.ts
|
|
369
|
-
var VERSION = "0.3.
|
|
385
|
+
var VERSION = "0.3.36";
|
|
370
386
|
|
|
371
387
|
// src/sentry.ts
|
|
372
388
|
var MAX_FRAMES = 50;
|