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