Skip to content

Commit

Permalink
refactor(GatewayIdentifyProperties): remove $ prefix from keys (#493)
Browse files Browse the repository at this point in the history
BREAKING CHANGE: The fields for identify no longer use the `$` prefix for the values.
  • Loading branch information
almeidx authored Jun 17, 2022
1 parent c6e320b commit 3b10c60
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions deno/gateway/v10.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1602,15 +1602,15 @@ export interface GatewayIdentifyProperties {
/**
* Your operating system
*/
$os: string;
os: string;
/**
* Your library name
*/
$browser: string;
browser: string;
/**
* Your library name
*/
$device: string;
device: string;
}

/**
Expand Down
6 changes: 3 additions & 3 deletions deno/gateway/v9.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1601,15 +1601,15 @@ export interface GatewayIdentifyProperties {
/**
* Your operating system
*/
$os: string;
os: string;
/**
* Your library name
*/
$browser: string;
browser: string;
/**
* Your library name
*/
$device: string;
device: string;
}

/**
Expand Down
6 changes: 3 additions & 3 deletions gateway/v10.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1602,15 +1602,15 @@ export interface GatewayIdentifyProperties {
/**
* Your operating system
*/
$os: string;
os: string;
/**
* Your library name
*/
$browser: string;
browser: string;
/**
* Your library name
*/
$device: string;
device: string;
}

/**
Expand Down
6 changes: 3 additions & 3 deletions gateway/v9.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1601,15 +1601,15 @@ export interface GatewayIdentifyProperties {
/**
* Your operating system
*/
$os: string;
os: string;
/**
* Your library name
*/
$browser: string;
browser: string;
/**
* Your library name
*/
$device: string;
device: string;
}

/**
Expand Down

1 comment on commit 3b10c60

@vercel
Copy link

@vercel vercel bot commented on 3b10c60 Jun 17, 2022

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.