Skip to content

Commit

Permalink
v13.7.8
Browse files Browse the repository at this point in the history
  • Loading branch information
boehlerlukas committed Jul 11, 2024
1 parent 98804a6 commit c2fb120
Show file tree
Hide file tree
Showing 6 changed files with 22 additions and 21 deletions.
2 changes: 1 addition & 1 deletion build/cjs/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion build/esm/index.mjs

Large diffs are not rendered by default.

34 changes: 17 additions & 17 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -105,28 +105,28 @@ export namespace Gleap {
function identify(
userId: string,
customerData: {
name?: string;
email?: string;
phone?: string;
value?: number;
companyId?: string;
companyName?: string;
plan?: string;
customData?: object;
createdAt?: Date;
name?: string | null;
email?: string | null;
phone?: string | null;
value?: number | null;
companyId?: string | null;
companyName?: string | null;
plan?: string | null;
customData?: object | null;
createdAt?: Date | null;
},
userHash?: string
): void;
function updateContact(
customerData: {
name?: string;
email?: string;
phone?: string;
value?: number;
companyId?: string;
companyName?: string;
plan?: string;
customData?: object;
name?: string | null;
email?: string | null;
phone?: string | null;
value?: number | null;
companyId?: string | null;
companyName?: string | null;
plan?: string | null;
customData?: object | null;
}
): void;
function getInstance(): any;
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "gleap",
"version": "13.7.7",
"version": "13.7.8",
"main": "build/cjs/index.js",
"module": "build/esm/index.mjs",
"exports": {
Expand Down
1 change: 1 addition & 0 deletions published/13.7.8/index.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion published/latest/index.js

Large diffs are not rendered by default.

0 comments on commit c2fb120

Please sign in to comment.