From a1ef49cd0389c6a32725a74ad01298069552ae0f Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Tue, 13 Jul 2021 06:44:17 -0700 Subject: [PATCH] feat: roll driver, fix validfrom/to type (#516) --- .../com/microsoft/playwright/options/SecurityDetails.java | 4 ++-- scripts/CLI_VERSION | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/playwright/src/main/java/com/microsoft/playwright/options/SecurityDetails.java b/playwright/src/main/java/com/microsoft/playwright/options/SecurityDetails.java index 740c2e84..551931ef 100644 --- a/playwright/src/main/java/com/microsoft/playwright/options/SecurityDetails.java +++ b/playwright/src/main/java/com/microsoft/playwright/options/SecurityDetails.java @@ -34,10 +34,10 @@ public class SecurityDetails { /** * Unix timestamp (in seconds) specifying when this cert becomes valid. Optional. */ - public Integer validFrom; + public Double validFrom; /** * Unix timestamp (in seconds) specifying when this cert becomes invalid. Optional. */ - public Integer validTo; + public Double validTo; } \ No newline at end of file diff --git a/scripts/CLI_VERSION b/scripts/CLI_VERSION index 15e2ae2a..6581d5d1 100644 --- a/scripts/CLI_VERSION +++ b/scripts/CLI_VERSION @@ -1 +1 @@ -1.13.0-next-1626084467000 +1.13.0-next-1626177968000