From 5644d9f8e5676ada18012c7d710a4347fc05cbca Mon Sep 17 00:00:00 2001 From: Dmitry Nadein Date: Tue, 5 Mar 2024 14:56:26 +0100 Subject: [PATCH] Add existing operation codes for us client (#369) Co-authored-by: dnadein --- lib/dl_us_client/dl_us_client/constants.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lib/dl_us_client/dl_us_client/constants.py b/lib/dl_us_client/dl_us_client/constants.py index 429c7ee32..36acf9f92 100644 --- a/lib/dl_us_client/dl_us_client/constants.py +++ b/lib/dl_us_client/dl_us_client/constants.py @@ -7,3 +7,8 @@ class OpCode: WB_BASIC_INFO_GET: str = "workbook_basic_info_get" WB_PRIVATE_INFO_GET: str = "private_workbook_info_get" COLLECTION_CONTENT_GET: str = "collection_content_get" + COLLECTION_CREATE: str = "collection_create" + COLLECTION_GET: str = "collection_get" + COLLECTION_UPDATE: str = "collection_update" + COLLECTION_DELETE: str = "collection_delete" + COLLECTION_MOVE: str = "collection_move"