Skip to content

Commit 8d5a43b

Browse files
Applying documentation updates.
1 parent 3e1f676 commit 8d5a43b

5 files changed

+8
-8
lines changed

trackers/browser-tracker/docs/markdown/browser-tracker.browsertracker.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@ interface BrowserTracker
4242
| [setCookiePath](./browser-tracker.browsertracker.setcookiepath.md) | (path: string) => void | Set first-party cookie path |
4343
| [setCustomUrl](./browser-tracker.browsertracker.setcustomurl.md) | (url: string) => void | Override url |
4444
| [setDocumentTitle](./browser-tracker.browsertracker.setdocumenttitle.md) | (title: string) => void | Override document.title |
45-
| [setOptOutCookie](./browser-tracker.browsertracker.setoptoutcookie.md) | (name: string) => void | Sets the opt out cookie. |
45+
| [setOptOutCookie](./browser-tracker.browsertracker.setoptoutcookie.md) | (name?: string \| null) => void | Sets the opt out cookie. |
4646
| [setReferrerUrl](./browser-tracker.browsertracker.setreferrerurl.md) | (url: string) => void | Override referrer |
47-
| [setUserId](./browser-tracker.browsertracker.setuserid.md) | (userId: string) => void | Set the business-defined user ID for this user. |
47+
| [setUserId](./browser-tracker.browsertracker.setuserid.md) | (userId?: string \| null) => void | Set the business-defined user ID for this user. |
4848
| [setUserIdFromCookie](./browser-tracker.browsertracker.setuseridfromcookie.md) | (cookieName: string) => void | Set the business-defined user ID for this user to the value of a cookie. |
4949
| [setUserIdFromLocation](./browser-tracker.browsertracker.setuseridfromlocation.md) | (querystringField: string) => void | Set the business-defined user ID for this user using the location querystring. |
5050
| [setUserIdFromReferrer](./browser-tracker.browsertracker.setuseridfromreferrer.md) | (querystringField: string) => void | Set the business-defined user ID for this user using the referrer querystring. |

trackers/browser-tracker/docs/markdown/browser-tracker.browsertracker.setoptoutcookie.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ Sets the opt out cookie.
99
<b>Signature:</b>
1010

1111
```typescript
12-
setOptOutCookie: (name: string) => void;
12+
setOptOutCookie: (name?: string | null) => void;
1313
```

trackers/browser-tracker/docs/markdown/browser-tracker.browsertracker.setuserid.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ Set the business-defined user ID for this user.
99
<b>Signature:</b>
1010

1111
```typescript
12-
setUserId: (userId: string) => void;
12+
setUserId: (userId?: string | null) => void;
1313
```

trackers/browser-tracker/docs/markdown/browser-tracker.setoptoutcookie.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ Sets the opt out cookie.
99
<b>Signature:</b>
1010

1111
```typescript
12-
declare function setOptOutCookie(name: string, trackers?: Array<string>): void;
12+
declare function setOptOutCookie(name?: string | null, trackers?: Array<string>): void;
1313
```
1414

1515
## Parameters
1616

1717
| Parameter | Type | Description |
1818
| --- | --- | --- |
19-
| name | string | of the opt out cookie |
19+
| name | string \| null | of the opt out cookie |
2020
| trackers | Array&lt;string&gt; | The tracker identifiers which will be configured |
2121

2222
<b>Returns:</b>

trackers/browser-tracker/docs/markdown/browser-tracker.setuserid.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@ Set the business-defined user ID for this user.
99
<b>Signature:</b>
1010

1111
```typescript
12-
declare function setUserId(userId: string, trackers?: Array<string>): void;
12+
declare function setUserId(userId?: string | null, trackers?: Array<string>): void;
1313
```
1414

1515
## Parameters
1616

1717
| Parameter | Type | Description |
1818
| --- | --- | --- |
19-
| userId | string | The business-defined user ID |
19+
| userId | string \| null | The business-defined user ID |
2020
| trackers | Array&lt;string&gt; | The tracker identifiers which will be configured |
2121

2222
<b>Returns:</b>

0 commit comments

Comments
 (0)