gleap 16.2.8 → 16.3.0
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/.claude/worktrees/happy-wiles-5f22a0/build/browser/index.js +1 -1
- package/.claude/worktrees/happy-wiles-5f22a0/build/browser/index.js.map +1 -1
- package/.claude/worktrees/happy-wiles-5f22a0/build/cjs/index.js +1 -1
- package/.claude/worktrees/happy-wiles-5f22a0/build/cjs/index.js.map +1 -1
- package/.claude/worktrees/happy-wiles-5f22a0/build/esm/index.mjs +1 -1
- package/.claude/worktrees/happy-wiles-5f22a0/build/esm/index.mjs.map +1 -1
- package/build/browser/index.js +1 -1
- package/build/browser/index.js.map +1 -1
- package/build/cjs/index.js +1 -1
- package/build/cjs/index.js.map +1 -1
- package/build/esm/index.mjs +1 -1
- package/build/esm/index.mjs.map +1 -1
- package/index.d.ts +6 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -150,8 +150,11 @@ export namespace Gleap {
|
|
|
150
150
|
email?: string | null;
|
|
151
151
|
phone?: string | null;
|
|
152
152
|
value?: number | null;
|
|
153
|
+
/** @deprecated Use `company` instead. */
|
|
153
154
|
companyId?: string | null;
|
|
155
|
+
/** @deprecated Use `company` instead. */
|
|
154
156
|
companyName?: string | null;
|
|
157
|
+
company?: { id: string | number; name?: string | null } | null;
|
|
155
158
|
sla?: number | null;
|
|
156
159
|
plan?: string | null;
|
|
157
160
|
customData?: object | null;
|
|
@@ -166,8 +169,11 @@ export namespace Gleap {
|
|
|
166
169
|
email?: string | null;
|
|
167
170
|
phone?: string | null;
|
|
168
171
|
value?: number | null;
|
|
172
|
+
/** @deprecated Use `company` instead. */
|
|
169
173
|
companyId?: string | null;
|
|
174
|
+
/** @deprecated Use `company` instead. */
|
|
170
175
|
companyName?: string | null;
|
|
176
|
+
company?: { id: string | number; name?: string | null } | null;
|
|
171
177
|
sla?: number | null;
|
|
172
178
|
plan?: string | null;
|
|
173
179
|
avatar?: string | null;
|