From f693b8de97a44ec7cf3021deb022fd1acbb23a02 Mon Sep 17 00:00:00 2001 From: "maxime.quentin" Date: Thu, 12 Oct 2023 10:47:59 +0200 Subject: [PATCH] introduce webviewId --- lib/cjs/generated/browserSessionReplay.d.ts | 4 ++++ lib/cjs/generated/mobileSessionReplay.d.ts | 4 ++++ lib/cjs/generated/sessionReplay.d.ts | 4 ++++ lib/esm/generated/browserSessionReplay.d.ts | 4 ++++ lib/esm/generated/mobileSessionReplay.d.ts | 4 ++++ lib/esm/generated/sessionReplay.d.ts | 4 ++++ schemas/session-replay/common/_common-record-schema.json | 5 +++++ 7 files changed, 29 insertions(+) diff --git a/lib/cjs/generated/browserSessionReplay.d.ts b/lib/cjs/generated/browserSessionReplay.d.ts index 5aa04924..e5fa426c 100644 --- a/lib/cjs/generated/browserSessionReplay.d.ts +++ b/lib/cjs/generated/browserSessionReplay.d.ts @@ -359,6 +359,10 @@ export interface CommonRecordSchema { * Defines the UTC time in milliseconds when this Record was performed. */ timestamp: number; + /** + * Defines the unique ID of the webview. + */ + readonly webViewId?: number; } /** * Schema of a Node type. diff --git a/lib/cjs/generated/mobileSessionReplay.d.ts b/lib/cjs/generated/mobileSessionReplay.d.ts index 81236735..24b39ab6 100644 --- a/lib/cjs/generated/mobileSessionReplay.d.ts +++ b/lib/cjs/generated/mobileSessionReplay.d.ts @@ -488,6 +488,10 @@ export interface CommonRecordSchema { * Defines the UTC time in milliseconds when this Record was performed. */ timestamp: number; + /** + * Defines the unique ID of the webview. + */ + readonly webViewId?: number; } /** * Schema of common properties for Wireframe events type. diff --git a/lib/cjs/generated/sessionReplay.d.ts b/lib/cjs/generated/sessionReplay.d.ts index 17424968..dda2abc8 100644 --- a/lib/cjs/generated/sessionReplay.d.ts +++ b/lib/cjs/generated/sessionReplay.d.ts @@ -731,6 +731,10 @@ export interface CommonRecordSchema { * Defines the UTC time in milliseconds when this Record was performed. */ timestamp: number; + /** + * Defines the unique ID of the webview. + */ + readonly webViewId?: number; } /** * Schema of a Node type. diff --git a/lib/esm/generated/browserSessionReplay.d.ts b/lib/esm/generated/browserSessionReplay.d.ts index 5aa04924..e5fa426c 100644 --- a/lib/esm/generated/browserSessionReplay.d.ts +++ b/lib/esm/generated/browserSessionReplay.d.ts @@ -359,6 +359,10 @@ export interface CommonRecordSchema { * Defines the UTC time in milliseconds when this Record was performed. */ timestamp: number; + /** + * Defines the unique ID of the webview. + */ + readonly webViewId?: number; } /** * Schema of a Node type. diff --git a/lib/esm/generated/mobileSessionReplay.d.ts b/lib/esm/generated/mobileSessionReplay.d.ts index 81236735..24b39ab6 100644 --- a/lib/esm/generated/mobileSessionReplay.d.ts +++ b/lib/esm/generated/mobileSessionReplay.d.ts @@ -488,6 +488,10 @@ export interface CommonRecordSchema { * Defines the UTC time in milliseconds when this Record was performed. */ timestamp: number; + /** + * Defines the unique ID of the webview. + */ + readonly webViewId?: number; } /** * Schema of common properties for Wireframe events type. diff --git a/lib/esm/generated/sessionReplay.d.ts b/lib/esm/generated/sessionReplay.d.ts index 17424968..dda2abc8 100644 --- a/lib/esm/generated/sessionReplay.d.ts +++ b/lib/esm/generated/sessionReplay.d.ts @@ -731,6 +731,10 @@ export interface CommonRecordSchema { * Defines the UTC time in milliseconds when this Record was performed. */ timestamp: number; + /** + * Defines the unique ID of the webview. + */ + readonly webViewId?: number; } /** * Schema of a Node type. diff --git a/schemas/session-replay/common/_common-record-schema.json b/schemas/session-replay/common/_common-record-schema.json index c1abe37d..15021f57 100644 --- a/schemas/session-replay/common/_common-record-schema.json +++ b/schemas/session-replay/common/_common-record-schema.json @@ -9,6 +9,11 @@ "timestamp": { "type": "integer", "description": "Defines the UTC time in milliseconds when this Record was performed." + }, + "webViewId": { + "type": "integer", + "description": "Defines the unique ID of the webview.", + "readOnly": true } } }