From 2494d4e5da45aa31251fc549a372c79dd66fcab8 Mon Sep 17 00:00:00 2001 From: David Lev Date: Sun, 14 Jan 2024 02:37:36 +0200 Subject: [PATCH] [utils] bump `FLOW_JSON` version to 3.1 --- pywa/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pywa/utils.py b/pywa/utils.py index 6868abd6..4dc3a356 100644 --- a/pywa/utils.py +++ b/pywa/utils.py @@ -49,8 +49,8 @@ class Version(enum.Enum): # KEY = (MIN_VERSION: str, LATEST_VERSION: str) GRAPH_API = ("17.0", "18.0") - FLOW_JSON = ("2.1", "3.0") - FLOW_DATA_API = ("3.0", "3.1") + FLOW_JSON = ("2.1", "3.1") + FLOW_DATA_API = ("3.0", "3.0") FLOW_MSG = ("3", "3") def __new__(cls, min_version: str, latest_version: str):