Skip to content

Commit c2fb120

Browse files
committed
v13.7.8
1 parent 98804a6 commit c2fb120

File tree

6 files changed

+22
-21
lines changed

6 files changed

+22
-21
lines changed

build/cjs/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

build/esm/index.mjs

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

index.d.ts

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -105,28 +105,28 @@ export namespace Gleap {
105105
function identify(
106106
userId: string,
107107
customerData: {
108-
name?: string;
109-
email?: string;
110-
phone?: string;
111-
value?: number;
112-
companyId?: string;
113-
companyName?: string;
114-
plan?: string;
115-
customData?: object;
116-
createdAt?: Date;
108+
name?: string | null;
109+
email?: string | null;
110+
phone?: string | null;
111+
value?: number | null;
112+
companyId?: string | null;
113+
companyName?: string | null;
114+
plan?: string | null;
115+
customData?: object | null;
116+
createdAt?: Date | null;
117117
},
118118
userHash?: string
119119
): void;
120120
function updateContact(
121121
customerData: {
122-
name?: string;
123-
email?: string;
124-
phone?: string;
125-
value?: number;
126-
companyId?: string;
127-
companyName?: string;
128-
plan?: string;
129-
customData?: object;
122+
name?: string | null;
123+
email?: string | null;
124+
phone?: string | null;
125+
value?: number | null;
126+
companyId?: string | null;
127+
companyName?: string | null;
128+
plan?: string | null;
129+
customData?: object | null;
130130
}
131131
): void;
132132
function getInstance(): any;

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "gleap",
3-
"version": "13.7.7",
3+
"version": "13.7.8",
44
"main": "build/cjs/index.js",
55
"module": "build/esm/index.mjs",
66
"exports": {

published/13.7.8/index.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

published/latest/index.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)