From 3b10c60faa5943501ab1f7cfa0d5f3c5317cdbbd Mon Sep 17 00:00:00 2001 From: Almeida Date: Fri, 17 Jun 2022 20:41:12 +0100 Subject: [PATCH] refactor(GatewayIdentifyProperties): remove `$` prefix from keys (#493) BREAKING CHANGE: The fields for identify no longer use the `$` prefix for the values. --- deno/gateway/v10.ts | 6 +++--- deno/gateway/v9.ts | 6 +++--- gateway/v10.ts | 6 +++--- gateway/v9.ts | 6 +++--- 4 files changed, 12 insertions(+), 12 deletions(-) diff --git a/deno/gateway/v10.ts b/deno/gateway/v10.ts index ced2c6b0..91092536 100644 --- a/deno/gateway/v10.ts +++ b/deno/gateway/v10.ts @@ -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; } /** diff --git a/deno/gateway/v9.ts b/deno/gateway/v9.ts index 36b9991d..951f7c7e 100644 --- a/deno/gateway/v9.ts +++ b/deno/gateway/v9.ts @@ -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; } /** diff --git a/gateway/v10.ts b/gateway/v10.ts index c22076f1..9795f31f 100644 --- a/gateway/v10.ts +++ b/gateway/v10.ts @@ -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; } /** diff --git a/gateway/v9.ts b/gateway/v9.ts index 593f1be9..4a34aa61 100644 --- a/gateway/v9.ts +++ b/gateway/v9.ts @@ -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; } /**