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/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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gleap",
3
- "version": "16.2.8",
3
+ "version": "16.3.0",
4
4
  "main": "build/cjs/index.js",
5
5
  "module": "build/esm/index.mjs",
6
6
  "exports": {