yeref 0.25.28__py3-none-any.whl → 0.25.29__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
yeref/yeref.py
CHANGED
@@ -8627,19 +8627,20 @@ async def upd_user_data_main(data, web_app_init_data, BASE_P, BOT_TOKEN_E18B, re
|
|
8627
8627
|
|
8628
8628
|
sql = f"""
|
8629
8629
|
INSERT INTO \"USER\" (
|
8630
|
-
USER_TID, USER_USERNAME, USER_FULLNAME, USER_GAMES, USER_VARS, USER_LSTS
|
8630
|
+
USER_TID, USER_USERNAME, USER_FULLNAME, USER_LZ, USER_DT, USER_GAMES, USER_VARS, USER_LSTS
|
8631
8631
|
)
|
8632
|
-
VALUES ($1, $2, $3, $4, $5, $6, $7)
|
8632
|
+
VALUES ($1, $2, $3, $4, $5, $6, $7, $8)
|
8633
8633
|
ON CONFLICT (USER_TID) DO UPDATE
|
8634
8634
|
SET
|
8635
8635
|
USER_USERNAME = EXCLUDED.USER_USERNAME,
|
8636
8636
|
USER_FULLNAME = EXCLUDED.USER_FULLNAME,
|
8637
8637
|
USER_LZ = EXCLUDED.USER_LZ,
|
8638
|
+
USER_DT = EXCLUDED.USER_DT,
|
8638
8639
|
USER_GAMES = EXCLUDED.USER_GAMES,
|
8639
8640
|
USER_VARS = EXCLUDED.USER_VARS,
|
8640
8641
|
USER_LSTS = EXCLUDED.USER_LSTS
|
8641
8642
|
"""
|
8642
|
-
await db_change_pg(sql, (USER_TID, username, full_name, lz,
|
8643
|
+
await db_change_pg(sql, (USER_TID, username, full_name, lz, USER_VARS['USER_DT'],
|
8643
8644
|
json.dumps(USER_GAMES, ensure_ascii=False),
|
8644
8645
|
json.dumps(USER_VARS, ensure_ascii=False),
|
8645
8646
|
json.dumps(USER_LSTS, ensure_ascii=False),), BASE_P)
|
@@ -0,0 +1,8 @@
|
|
1
|
+
yeref/__init__.py,sha256=Qpv3o6Xa78VdLcsSRmctGtpnYE9btpAkCekgGhgJyXM,49
|
2
|
+
yeref/l_.py,sha256=LsciHUN0b5NbsLsRRbG12blZGXVr_i4Fhj2aQItIZbI,1173447
|
3
|
+
yeref/tonweb.js,sha256=Jf6aFOQ1OIY4q7fINYz-m5LsI3seMus124M5SYYZmtE,443659
|
4
|
+
yeref/yeref.py,sha256=wLWW0GQh9scSuo76sKs5160BpWDwI87C7Pw5oobh54o,1024466
|
5
|
+
yeref-0.25.29.dist-info/METADATA,sha256=F93GjEMMa6x2DnLSgyr2_ne-meFFv22lytOLnktxwgg,119
|
6
|
+
yeref-0.25.29.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
7
|
+
yeref-0.25.29.dist-info/top_level.txt,sha256=yCQKchWHbfV-3OuQPYRdi2loypD-nmbDJbtt3OuKKkY,6
|
8
|
+
yeref-0.25.29.dist-info/RECORD,,
|
yeref-0.25.28.dist-info/RECORD
DELETED
@@ -1,8 +0,0 @@
|
|
1
|
-
yeref/__init__.py,sha256=Qpv3o6Xa78VdLcsSRmctGtpnYE9btpAkCekgGhgJyXM,49
|
2
|
-
yeref/l_.py,sha256=LsciHUN0b5NbsLsRRbG12blZGXVr_i4Fhj2aQItIZbI,1173447
|
3
|
-
yeref/tonweb.js,sha256=Jf6aFOQ1OIY4q7fINYz-m5LsI3seMus124M5SYYZmtE,443659
|
4
|
-
yeref/yeref.py,sha256=M5xBK8SCq-slZv0hP34oY89KwViCaU2yyq0ZSzkQUFw,1024382
|
5
|
-
yeref-0.25.28.dist-info/METADATA,sha256=sVKi5gkDRYEWHNXFzrWfT8fCCtyjcECzar3p9TThgmo,119
|
6
|
-
yeref-0.25.28.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
7
|
-
yeref-0.25.28.dist-info/top_level.txt,sha256=yCQKchWHbfV-3OuQPYRdi2loypD-nmbDJbtt3OuKKkY,6
|
8
|
-
yeref-0.25.28.dist-info/RECORD,,
|
File without changes
|
File without changes
|