Skip to content

Commit 3b10c60

Browse files
authored
refactor(GatewayIdentifyProperties): remove $ prefix from keys (#493)
BREAKING CHANGE: The fields for identify no longer use the `$` prefix for the values.
1 parent c6e320b commit 3b10c60

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

deno/gateway/v10.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1602,15 +1602,15 @@ export interface GatewayIdentifyProperties {
16021602
/**
16031603
* Your operating system
16041604
*/
1605-
$os: string;
1605+
os: string;
16061606
/**
16071607
* Your library name
16081608
*/
1609-
$browser: string;
1609+
browser: string;
16101610
/**
16111611
* Your library name
16121612
*/
1613-
$device: string;
1613+
device: string;
16141614
}
16151615

16161616
/**

deno/gateway/v9.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1601,15 +1601,15 @@ export interface GatewayIdentifyProperties {
16011601
/**
16021602
* Your operating system
16031603
*/
1604-
$os: string;
1604+
os: string;
16051605
/**
16061606
* Your library name
16071607
*/
1608-
$browser: string;
1608+
browser: string;
16091609
/**
16101610
* Your library name
16111611
*/
1612-
$device: string;
1612+
device: string;
16131613
}
16141614

16151615
/**

gateway/v10.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1602,15 +1602,15 @@ export interface GatewayIdentifyProperties {
16021602
/**
16031603
* Your operating system
16041604
*/
1605-
$os: string;
1605+
os: string;
16061606
/**
16071607
* Your library name
16081608
*/
1609-
$browser: string;
1609+
browser: string;
16101610
/**
16111611
* Your library name
16121612
*/
1613-
$device: string;
1613+
device: string;
16141614
}
16151615

16161616
/**

gateway/v9.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1601,15 +1601,15 @@ export interface GatewayIdentifyProperties {
16011601
/**
16021602
* Your operating system
16031603
*/
1604-
$os: string;
1604+
os: string;
16051605
/**
16061606
* Your library name
16071607
*/
1608-
$browser: string;
1608+
browser: string;
16091609
/**
16101610
* Your library name
16111611
*/
1612-
$device: string;
1612+
device: string;
16131613
}
16141614

16151615
/**

0 commit comments

Comments
 (0)