dao-treasury 0.0.33__cp310-cp310-win_amd64.whl → 0.0.34__cp310-cp310-win_amd64.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.
Files changed (23) hide show
  1. bf2b4fe1f86ad2ea158b__mypyc.cp310-win_amd64.pyd +0 -0
  2. dao_treasury/.grafana/provisioning/dashboards/transactions/Treasury Transactions.json +7 -7
  3. dao_treasury/.grafana/provisioning/dashboards/treasury/Cashflow (Including Unsorted).json +4 -3
  4. dao_treasury/.grafana/provisioning/dashboards/treasury/Operating Cashflow.json +1 -0
  5. dao_treasury/_docker.cp310-win_amd64.pyd +0 -0
  6. dao_treasury/_nicknames.cp310-win_amd64.pyd +0 -0
  7. dao_treasury/_wallet.cp310-win_amd64.pyd +0 -0
  8. dao_treasury/constants.cp310-win_amd64.pyd +0 -0
  9. dao_treasury/sorting/__init__.cp310-win_amd64.pyd +0 -0
  10. dao_treasury/sorting/_matchers.cp310-win_amd64.pyd +0 -0
  11. dao_treasury/sorting/_rules.cp310-win_amd64.pyd +0 -0
  12. dao_treasury/sorting/factory.cp310-win_amd64.pyd +0 -0
  13. dao_treasury/sorting/rule.cp310-win_amd64.pyd +0 -0
  14. dao_treasury/sorting/rules/__init__.cp310-win_amd64.pyd +0 -0
  15. dao_treasury/sorting/rules/ignore/__init__.cp310-win_amd64.pyd +0 -0
  16. dao_treasury/sorting/rules/ignore/llamapay.cp310-win_amd64.pyd +0 -0
  17. dao_treasury/streams/__init__.cp310-win_amd64.pyd +0 -0
  18. dao_treasury/streams/llamapay.cp310-win_amd64.pyd +0 -0
  19. dao_treasury/types.cp310-win_amd64.pyd +0 -0
  20. {dao_treasury-0.0.33.dist-info → dao_treasury-0.0.34.dist-info}/METADATA +1 -1
  21. {dao_treasury-0.0.33.dist-info → dao_treasury-0.0.34.dist-info}/RECORD +23 -23
  22. {dao_treasury-0.0.33.dist-info → dao_treasury-0.0.34.dist-info}/WHEEL +0 -0
  23. {dao_treasury-0.0.33.dist-info → dao_treasury-0.0.34.dist-info}/top_level.txt +0 -0
@@ -244,7 +244,7 @@
244
244
  "refresh": 2,
245
245
  "regex": "",
246
246
  "skipUrlSync": false,
247
- "sort": 1,
247
+ "sort": 5,
248
248
  "type": "query"
249
249
  },
250
250
  {
@@ -265,7 +265,7 @@
265
265
  "refresh": 2,
266
266
  "regex": "",
267
267
  "skipUrlSync": false,
268
- "sort": 0,
268
+ "sort": 5,
269
269
  "type": "query"
270
270
  },
271
271
  {
@@ -285,7 +285,7 @@
285
285
  "refresh": 2,
286
286
  "regex": "",
287
287
  "skipUrlSync": false,
288
- "sort": 1,
288
+ "sort": 5,
289
289
  "type": "query"
290
290
  },
291
291
  {
@@ -306,7 +306,7 @@
306
306
  "refresh": 2,
307
307
  "regex": "",
308
308
  "skipUrlSync": false,
309
- "sort": 1,
309
+ "sort": 5,
310
310
  "type": "query"
311
311
  },
312
312
  {
@@ -327,7 +327,7 @@
327
327
  "refresh": 2,
328
328
  "regex": "",
329
329
  "skipUrlSync": false,
330
- "sort": 1,
330
+ "sort": 5,
331
331
  "type": "query"
332
332
  },
333
333
  {
@@ -348,7 +348,7 @@
348
348
  "refresh": 2,
349
349
  "regex": "",
350
350
  "skipUrlSync": false,
351
- "sort": 1,
351
+ "sort": 5,
352
352
  "type": "query"
353
353
  },
354
354
  {
@@ -369,7 +369,7 @@
369
369
  "refresh": 2,
370
370
  "regex": "",
371
371
  "skipUrlSync": false,
372
- "sort": 1,
372
+ "sort": 5,
373
373
  "type": "query"
374
374
  }
375
375
  ]
@@ -497,9 +497,9 @@
497
497
  "targets": [
498
498
  {
499
499
  "datasource": "SQLite",
500
- "queryText": "SELECT t.timestamp, SUM(CASE WHEN gh.top_category in ('Revenue', 'Other Income','Sort Me (Inbound)') THEN t.value_usd ELSE 0 END) AS \"Total Received\", SUM(CASE WHEN gh.top_category in ('Cost of Revenue','Expenses','Other Expenses','Sort Me (Outbound)') THEN t.value_usd ELSE 0 END) * -1 AS \"Total Sent\", SUM(CASE WHEN gh.top_category in ('Revenue', 'Other Income','Sort Me (Inbound)') THEN t.value_usd ELSE 0 END) - SUM(CASE WHEN gh.top_category in ('Cost of Revenue','Expenses','Other Expenses','Sort Me (Outbound)') THEN t.value_usd ELSE 0 END) AS \"Net\" FROM general_ledger AS t JOIN txgroup_hierarchy gh ON t.txgroup_id = gh.txgroup_id WHERE t.timestamp >= $__from/1000 AND t.timestamp <= $__to/1000 GROUP BY timestamp ORDER BY timestamp;",
500
+ "queryText": "SELECT t.timestamp,\r\n SUM(CASE WHEN gh.top_category in ('Revenue', 'Other Income','Sort Me (Inbound)') THEN t.value_usd ELSE 0 END) AS \"Total Received\",\r\n SUM(CASE WHEN gh.top_category in ('Cost of Revenue','Expenses','Other Expenses','Sort Me (Outbound)') THEN t.value_usd ELSE 0 END) * -1 AS \"Total Sent\",\r\n SUM(CASE WHEN gh.top_category in ('Revenue', 'Other Income','Sort Me (Inbound)') THEN t.value_usd ELSE 0 END) - SUM(CASE WHEN gh.top_category in ('Cost of Revenue','Expenses','Other Expenses','Sort Me (Outbound)') THEN t.value_usd ELSE 0 END) AS \"Net\"\r\nFROM general_ledger AS t\r\nJOIN txgroup_hierarchy gh ON t.txgroup_id = gh.txgroup_id\r\nWHERE t.timestamp >= $__from/1000 AND t.timestamp <= $__to/1000\r\nGROUP BY timestamp\r\nORDER BY timestamp;",
501
501
  "queryType": "table",
502
- "rawQueryText": "SELECT t.timestamp, SUM(CASE WHEN gh.top_category in ('Revenue', 'Other Income','Sort Me (Inbound)') THEN t.value_usd ELSE 0 END) AS \"Total Received\", SUM(CASE WHEN gh.top_category in ('Cost of Revenue','Expenses','Other Expenses','Sort Me (Outbound)') THEN t.value_usd ELSE 0 END) * -1 AS \"Total Sent\", SUM(CASE WHEN gh.top_category in ('Revenue', 'Other Income','Sort Me (Inbound)') THEN t.value_usd ELSE 0 END) - SUM(CASE WHEN gh.top_category in ('Cost of Revenue','Expenses','Other Expenses','Sort Me (Outbound)') THEN t.value_usd ELSE 0 END) AS \"Net\" FROM general_ledger AS t JOIN txgroup_hierarchy gh ON t.txgroup_id = gh.txgroup_id WHERE t.timestamp >= $__from/1000 AND t.timestamp <= $__to/1000 GROUP BY timestamp ORDER BY timestamp;",
502
+ "rawQueryText": "SELECT t.timestamp,\r\n SUM(CASE WHEN gh.top_category in ('Revenue', 'Other Income','Sort Me (Inbound)') THEN t.value_usd ELSE 0 END) AS \"Total Received\",\r\n SUM(CASE WHEN gh.top_category in ('Cost of Revenue','Expenses','Other Expenses','Sort Me (Outbound)') THEN t.value_usd ELSE 0 END) * -1 AS \"Total Sent\",\r\n SUM(CASE WHEN gh.top_category in ('Revenue', 'Other Income','Sort Me (Inbound)') THEN t.value_usd ELSE 0 END) - SUM(CASE WHEN gh.top_category in ('Cost of Revenue','Expenses','Other Expenses','Sort Me (Outbound)') THEN t.value_usd ELSE 0 END) AS \"Net\"\r\nFROM general_ledger AS t\r\nJOIN txgroup_hierarchy gh ON t.txgroup_id = gh.txgroup_id\r\nWHERE t.timestamp >= $__from/1000 AND t.timestamp <= $__to/1000\r\nGROUP BY timestamp\r\nORDER BY timestamp;",
503
503
  "refId": "A",
504
504
  "timeColumns": [
505
505
  "timestamp"
@@ -522,6 +522,7 @@
522
522
  "options": {
523
523
  "conversions": [
524
524
  {
525
+ "dateFormat": "YYYY-WW",
525
526
  "destinationType": "time",
526
527
  "targetField": "timestamp"
527
528
  }
@@ -815,7 +816,7 @@
815
816
  "type": "stat"
816
817
  }
817
818
  ],
818
- "refresh": "",
819
+ "refresh": false,
819
820
  "schemaVersion": 38,
820
821
  "tags": [],
821
822
  "templating": {
@@ -398,6 +398,7 @@
398
398
  "options": {
399
399
  "conversions": [
400
400
  {
401
+ "dateFormat": "YYYY-WW",
401
402
  "destinationType": "time",
402
403
  "targetField": "timestamp"
403
404
  }
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: dao_treasury
3
- Version: 0.0.33
3
+ Version: 0.0.34
4
4
  Summary: Produce comprehensive financial reports for your on-chain org
5
5
  Classifier: Development Status :: 3 - Alpha
6
6
  Classifier: Intended Audience :: Developers
@@ -1,51 +1,51 @@
1
- bf2b4fe1f86ad2ea158b__mypyc.cp310-win_amd64.pyd,sha256=SUF3nb3Lbi0zcc11AqIwFGqSmFNl_wJay7Cwr4rCT7Q,477696
1
+ bf2b4fe1f86ad2ea158b__mypyc.cp310-win_amd64.pyd,sha256=yFP8mCHpQ5gmTK5tVPLb8U_1b_RdC_7ohOlncjT6pNg,477696
2
2
  dao_treasury/ENVIRONMENT_VARIABLES.py,sha256=ci7djcsXc9uRi6_vBQv-avGQrrIacyftXmcwKuitWWU,203
3
3
  dao_treasury/__init__.py,sha256=U8BsakN_w15wVE_7MjVbHD9LBal48LfJ6a1Icf5oHdY,1052
4
- dao_treasury/_docker.cp310-win_amd64.pyd,sha256=6KVjVEF9AT4Uc6SiJiD_DNbAfuRggEuC8D5D3mDCCoo,10752
4
+ dao_treasury/_docker.cp310-win_amd64.pyd,sha256=Y0cmRHF6Rsb0WbyiPDYwCBlA0N66neurU5bvaFKaTkw,10752
5
5
  dao_treasury/_docker.py,sha256=wY26wCrQ8p-L0KfMJftyzI_YAszHjnBWLw94eh0LxxY,5607
6
- dao_treasury/_nicknames.cp310-win_amd64.pyd,sha256=YWPKJzVXDtl4QYmw5tyqUjfGS_o7gBLXy3krHUESsQs,10752
6
+ dao_treasury/_nicknames.cp310-win_amd64.pyd,sha256=qLKNAAXIVDNOYj21JwQMXtTC262nAxAYqDPeXdB02U4,10752
7
7
  dao_treasury/_nicknames.py,sha256=NpbQ4NtmZF_A_vqTGSal2KzKzkH5t7_wbI8EtMBqEr4,497
8
- dao_treasury/_wallet.cp310-win_amd64.pyd,sha256=hx4f3PcLWt5bJI9shrI4o9pRj8A9LHKKkgv0gBTFQjw,10752
8
+ dao_treasury/_wallet.cp310-win_amd64.pyd,sha256=Ef5NMILhmXjQPJCad6CkoPacx_t_im8PKAgjjLZ3bkI,10752
9
9
  dao_treasury/_wallet.py,sha256=q-H3YrRLWHIjOplVEcY2zqYnv6J--nxXtcx_-a1jcQw,10584
10
- dao_treasury/constants.cp310-win_amd64.pyd,sha256=xyiNbxJAtcA7vwrXsXmZfBjFQLx-xnP7MSzaEKwhnsk,10752
10
+ dao_treasury/constants.cp310-win_amd64.pyd,sha256=rUR5-ULq1UR34tvJ_HMxnWZWUdw3u2sqHSc1j3GX1aE,10752
11
11
  dao_treasury/constants.py,sha256=VNzlrwC8HB8LdKNmoIfncUACKHfXZxp2GtBBrH_lZKE,522
12
12
  dao_treasury/db.py,sha256=FMoPgWtXjg_DjwpkUumpCOgPFqgRBfwmAaSyp_fl9mU,47499
13
13
  dao_treasury/docker-compose.yaml,sha256=trksBUUwNGJGcrsgX0k0xVEsl-SjWzYE_4tpO1DjuJg,1421
14
14
  dao_treasury/main.py,sha256=yVQGwDgO4XKcxV6tQQPxEcLcZPSEEK1yJS8Djfq3Esc,8294
15
15
  dao_treasury/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
16
  dao_treasury/treasury.py,sha256=64_z0lsjOngGFASCVQNUM-QfbC5YqhKMgOdtLh758co,6678
17
- dao_treasury/types.cp310-win_amd64.pyd,sha256=s-uIyrb6e3KwPdi_LOOhWiKh7_EFNk-hMK15vj-_C0I,10752
17
+ dao_treasury/types.cp310-win_amd64.pyd,sha256=S7aeQtsojaDd6sPh74lTjIyO2x5ABwQcGR7mr7KDiKw,10752
18
18
  dao_treasury/types.py,sha256=KFz4WKPp4t_RBwIT6YGwOcgbzw8tdHIOcXTFsUA0pJA,3818
19
19
  dao_treasury/.grafana/provisioning/dashboards/dashboards.yaml,sha256=PwGrxPA5snT37bmpCuP9WE9T7weACm39N9lEsudr7f0,1337
20
20
  dao_treasury/.grafana/provisioning/dashboards/streams/LlamaPay.json,sha256=zKisR5WewEdpPMMSVLe3w-K8YBg30CYEuzrYjW_LZTQ,3518
21
21
  dao_treasury/.grafana/provisioning/dashboards/summary/Monthly.json,sha256=AvwYvGO4BmEKuwkdUQ0lyo2J4dp5E8DsmF0LGDOiA7A,6640
22
- dao_treasury/.grafana/provisioning/dashboards/transactions/Treasury Transactions.json,sha256=Uvl9FlNQwE5QTqXOahKVUq5jCMIdX-iMYXdksVXwUQ8,13617
23
- dao_treasury/.grafana/provisioning/dashboards/treasury/Cashflow (Including Unsorted).json,sha256=QimWaoksNwAMm9tDgsTHeaSCNqmHY0P6YjG4ib1103g,26364
22
+ dao_treasury/.grafana/provisioning/dashboards/transactions/Treasury Transactions.json,sha256=zL_LvdJIpAwHV_YGRn8tjSM2sohz5hNfYVfconD8QeE,13617
23
+ dao_treasury/.grafana/provisioning/dashboards/treasury/Cashflow (Including Unsorted).json,sha256=nF76JC3vvlcSsFixf9M5b3H31HLVNP3VxTrOx02TLZE,26499
24
24
  dao_treasury/.grafana/provisioning/dashboards/treasury/Cashflow.json,sha256=TDDhrZu0RRh3JNMNg-NrF9vhXe7QuuIa4WXn74d1rOw,18754
25
- dao_treasury/.grafana/provisioning/dashboards/treasury/Operating Cashflow.json,sha256=1EyTx0BJoa-s8J9mm_Byho3vNF52n6dNoh1_EzajoOE,14802
25
+ dao_treasury/.grafana/provisioning/dashboards/treasury/Operating Cashflow.json,sha256=_W5Zt-J0YTVGAKPbM5kbMnv0EC3K_eZgJbqLgzkanS4,14844
26
26
  dao_treasury/.grafana/provisioning/dashboards/treasury/Treasury.json,sha256=6y7Fp-2g1iRanRBtWKKN13sXjaKxBvqld7416ZJu4YI,72196
27
27
  dao_treasury/.grafana/provisioning/datasources/datasources.yaml,sha256=gLmJsOkEXNzWRDibShfHFySWeuExW-dSB_U0OSfH868,344
28
- dao_treasury/sorting/__init__.cp310-win_amd64.pyd,sha256=6Eaibz7Gi7CwnKoHH97mkSf2O812HMWA_o59jo4GpHw,10752
28
+ dao_treasury/sorting/__init__.cp310-win_amd64.pyd,sha256=4aDNhBAI-ouWBSvPv87Y4z9f1RhO7hnhLlLg2YPyX8I,10752
29
29
  dao_treasury/sorting/__init__.py,sha256=_uxM_FE1paM8oDAhDdHSyhDwnrlxCYX_lGn2DOqCaHU,10666
30
- dao_treasury/sorting/_matchers.cp310-win_amd64.pyd,sha256=gcCPqTJX99A5DQKHm5rfcPX5LEq3eUP1UUHcsXXLl80,10752
30
+ dao_treasury/sorting/_matchers.cp310-win_amd64.pyd,sha256=pIbqZ3celu314iZCsefQAWWDqWDF-YEWMoxM5LgMKmE,10752
31
31
  dao_treasury/sorting/_matchers.py,sha256=ACi6aXZCKW5OTiztsID7CXCGJounj5c6ivhOCg2436M,14392
32
- dao_treasury/sorting/_rules.cp310-win_amd64.pyd,sha256=HrqVTq1l5sZ7eIp9QLVnx2mPOiWSZuJvBVru40YDnr8,10752
32
+ dao_treasury/sorting/_rules.cp310-win_amd64.pyd,sha256=GXak9X9QD97KHgL8hsYbsYEDoNbqcxEuVhpmSDVtMcE,10752
33
33
  dao_treasury/sorting/_rules.py,sha256=DxhdUgpS0q0LWeLl9W1Bjn5LZz9z4OLA03vQllPMH9k,9229
34
- dao_treasury/sorting/factory.cp310-win_amd64.pyd,sha256=0aaPaqC66cIQ_okeWilW0401iE_MUnqxXm8clCzEusU,10752
34
+ dao_treasury/sorting/factory.cp310-win_amd64.pyd,sha256=d4H8FrsW6CEs2KqOb29ImpqXF0jdlprlWkFQ6_O0Zik,10752
35
35
  dao_treasury/sorting/factory.py,sha256=zlJ18xlMTxv8ACV6_MimCVIDsw3K5AZcyvKaNYY7R14,10484
36
- dao_treasury/sorting/rule.cp310-win_amd64.pyd,sha256=B5mVnasxupw3bj02XmC05wjXxIwv7LcmepsZ3GlKzqo,10752
36
+ dao_treasury/sorting/rule.cp310-win_amd64.pyd,sha256=yBCKCR6YvFQcTVRjMdACVCtdmUqxCmgrrBNhqfMV4Pg,10752
37
37
  dao_treasury/sorting/rule.py,sha256=TsSlaU4UlYr4QWJBdUY7EOAfC_SK6_VA3wEFOFNUUrU,11837
38
- dao_treasury/sorting/rules/__init__.cp310-win_amd64.pyd,sha256=wyWIZ3TTP4zUoLb7NwVCSirRPfH95vQ6lh6BVrFYKPM,10752
38
+ dao_treasury/sorting/rules/__init__.cp310-win_amd64.pyd,sha256=RgRwSz5VQDjBRIrSsD9oRfgY2E8sEqO-EefGhpZh6XA,10752
39
39
  dao_treasury/sorting/rules/__init__.py,sha256=hcLfejOEwD8RaM2RE-38Ej6_WkvL9BVGvIIGY848E6E,49
40
- dao_treasury/sorting/rules/ignore/__init__.cp310-win_amd64.pyd,sha256=U6zTUcMhTiqPvko9-uNuIo8LpYABt6osKRZZHcO21RI,10752
40
+ dao_treasury/sorting/rules/ignore/__init__.cp310-win_amd64.pyd,sha256=oWAS3B0Pfi-sZuPogFKJqho8Xirpmd2LfKS6Rjeh-fw,10752
41
41
  dao_treasury/sorting/rules/ignore/__init__.py,sha256=16THKoGdj6qfkkytuCFVG_R1M6KSErMI4AVE1p0ukS4,58
42
- dao_treasury/sorting/rules/ignore/llamapay.cp310-win_amd64.pyd,sha256=0BkJk9qWAgYrbFuUioIr5nOjuSV9wPkTQaHC6MZZxUw,10752
42
+ dao_treasury/sorting/rules/ignore/llamapay.cp310-win_amd64.pyd,sha256=Jt2H6XLKdXlbKE6jcdSIMNAx0vip94K4sxYOK3l5kGk,10752
43
43
  dao_treasury/sorting/rules/ignore/llamapay.py,sha256=aYyAJRlmv419IeaqkcV5o3ffx0UVfteU0lTl80j0BGo,783
44
- dao_treasury/streams/__init__.cp310-win_amd64.pyd,sha256=t-opiqEpPQZGHG67YiLu_69lBf7A3UzYJ1FO6ooy-EM,10752
44
+ dao_treasury/streams/__init__.cp310-win_amd64.pyd,sha256=wqbO7GsjOB-QNQ9wbYCbsdtPyUKUDGn-JvK90bX_VwU,10752
45
45
  dao_treasury/streams/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
46
- dao_treasury/streams/llamapay.cp310-win_amd64.pyd,sha256=VfJ_qj80MTsGfkfzlqtaEG-hVkTfOJGYgKCpE8mTOzQ,10752
46
+ dao_treasury/streams/llamapay.cp310-win_amd64.pyd,sha256=Ece8i8nwxfexCDgbhxEwp5rRuc_NcuRLMz1VEmBVMew,10752
47
47
  dao_treasury/streams/llamapay.py,sha256=HXG3Qg8R5l1FTVgmSnpOBRoDt2VchjOI-dU9rrC_mjQ,13150
48
- dao_treasury-0.0.33.dist-info/METADATA,sha256=TGhPqs8nC23v-UCxZG9gxCW7cnhTTUZUc9USGmin21I,7149
49
- dao_treasury-0.0.33.dist-info/WHEEL,sha256=KUuBC6lxAbHCKilKua8R9W_TM71_-9Sg5uEP3uDWcoU,101
50
- dao_treasury-0.0.33.dist-info/top_level.txt,sha256=Gw-ri_26lZA_3hwhnOX48mffUbmBGr8NhtoQ0XoMeF8,41
51
- dao_treasury-0.0.33.dist-info/RECORD,,
48
+ dao_treasury-0.0.34.dist-info/METADATA,sha256=a2ES37EqakkEcNfj3cSXlhkKTOcKc39dvwtAXDME3Gg,7149
49
+ dao_treasury-0.0.34.dist-info/WHEEL,sha256=KUuBC6lxAbHCKilKua8R9W_TM71_-9Sg5uEP3uDWcoU,101
50
+ dao_treasury-0.0.34.dist-info/top_level.txt,sha256=Gw-ri_26lZA_3hwhnOX48mffUbmBGr8NhtoQ0XoMeF8,41
51
+ dao_treasury-0.0.34.dist-info/RECORD,,