|
1 | 1 | .github/workflows/python.yml |
2 | 2 | .gitignore |
3 | 3 | .gitlab-ci.yml |
4 | | -.openapi-generator-ignore |
5 | 4 | .travis.yml |
6 | 5 | README.md |
7 | 6 | docs/CreateTransactionDto.md |
@@ -44,79 +43,46 @@ setup.cfg |
44 | 43 | setup.py |
45 | 44 | test-requirements.txt |
46 | 45 | test/__init__.py |
47 | | -test/test_create_transaction_dto.py |
48 | | -test/test_creator_dto.py |
49 | | -test/test_creator_order_by.py |
50 | | -test/test_creator_partial_dto.py |
51 | | -test/test_creator_partial_dto_pagination_dto.py |
52 | | -test/test_creator_rarity_dto.py |
53 | | -test/test_creator_share_dto.py |
54 | | -test/test_creator_transaction_dto.py |
55 | | -test/test_creators_api.py |
56 | | -test/test_discord_token_dto.py |
57 | | -test/test_link_discord_twitch_dto.py |
58 | | -test/test_loot_box_dto.py |
59 | | -test/test_loot_box_result_dto.py |
60 | | -test/test_model_id.py |
61 | | -test/test_order_direction.py |
62 | | -test/test_player_dto.py |
63 | | -test/test_player_dto_pagination_dto.py |
64 | | -test/test_player_order_by.py |
65 | | -test/test_player_partial_dto.py |
66 | | -test/test_player_share_dto.py |
67 | | -test/test_player_transaction_dto.py |
68 | | -test/test_player_type.py |
69 | | -test/test_players_api.py |
70 | | -test/test_portfolio_snapshot_dto.py |
71 | | -test/test_rarity.py |
72 | | -test/test_sessions_api.py |
73 | | -test/test_stream_status_dto.py |
74 | | -test/test_time_step.py |
75 | | -test/test_token_dto.py |
76 | | -test/test_transaction_action.py |
77 | | -test/test_transactions_api.py |
78 | | -test/test_twitch_user_dto.py |
79 | | -test/test_vote_dto.py |
80 | 46 | tox.ini |
81 | | -ttx_py/__init__.py |
82 | | -ttx_py/api/__init__.py |
83 | | -ttx_py/api/creators_api.py |
84 | | -ttx_py/api/players_api.py |
85 | | -ttx_py/api/sessions_api.py |
86 | | -ttx_py/api/transactions_api.py |
87 | | -ttx_py/api_client.py |
88 | | -ttx_py/api_response.py |
89 | | -ttx_py/configuration.py |
90 | | -ttx_py/exceptions.py |
91 | | -ttx_py/models/__init__.py |
92 | | -ttx_py/models/create_transaction_dto.py |
93 | | -ttx_py/models/creator_dto.py |
94 | | -ttx_py/models/creator_order_by.py |
95 | | -ttx_py/models/creator_partial_dto.py |
96 | | -ttx_py/models/creator_partial_dto_pagination_dto.py |
97 | | -ttx_py/models/creator_rarity_dto.py |
98 | | -ttx_py/models/creator_share_dto.py |
99 | | -ttx_py/models/creator_transaction_dto.py |
100 | | -ttx_py/models/discord_token_dto.py |
101 | | -ttx_py/models/link_discord_twitch_dto.py |
102 | | -ttx_py/models/loot_box_dto.py |
103 | | -ttx_py/models/loot_box_result_dto.py |
104 | | -ttx_py/models/model_id.py |
105 | | -ttx_py/models/order_direction.py |
106 | | -ttx_py/models/player_dto.py |
107 | | -ttx_py/models/player_dto_pagination_dto.py |
108 | | -ttx_py/models/player_order_by.py |
109 | | -ttx_py/models/player_partial_dto.py |
110 | | -ttx_py/models/player_share_dto.py |
111 | | -ttx_py/models/player_transaction_dto.py |
112 | | -ttx_py/models/player_type.py |
113 | | -ttx_py/models/portfolio_snapshot_dto.py |
114 | | -ttx_py/models/rarity.py |
115 | | -ttx_py/models/stream_status_dto.py |
116 | | -ttx_py/models/time_step.py |
117 | | -ttx_py/models/token_dto.py |
118 | | -ttx_py/models/transaction_action.py |
119 | | -ttx_py/models/twitch_user_dto.py |
120 | | -ttx_py/models/vote_dto.py |
121 | | -ttx_py/py.typed |
122 | | -ttx_py/rest.py |
| 47 | +ttx/__init__.py |
| 48 | +ttx/api/__init__.py |
| 49 | +ttx/api/creators_api.py |
| 50 | +ttx/api/players_api.py |
| 51 | +ttx/api/sessions_api.py |
| 52 | +ttx/api/transactions_api.py |
| 53 | +ttx/api_client.py |
| 54 | +ttx/api_response.py |
| 55 | +ttx/configuration.py |
| 56 | +ttx/exceptions.py |
| 57 | +ttx/models/__init__.py |
| 58 | +ttx/models/create_transaction_dto.py |
| 59 | +ttx/models/creator_dto.py |
| 60 | +ttx/models/creator_order_by.py |
| 61 | +ttx/models/creator_partial_dto.py |
| 62 | +ttx/models/creator_partial_dto_pagination_dto.py |
| 63 | +ttx/models/creator_rarity_dto.py |
| 64 | +ttx/models/creator_share_dto.py |
| 65 | +ttx/models/creator_transaction_dto.py |
| 66 | +ttx/models/discord_token_dto.py |
| 67 | +ttx/models/link_discord_twitch_dto.py |
| 68 | +ttx/models/loot_box_dto.py |
| 69 | +ttx/models/loot_box_result_dto.py |
| 70 | +ttx/models/model_id.py |
| 71 | +ttx/models/order_direction.py |
| 72 | +ttx/models/player_dto.py |
| 73 | +ttx/models/player_dto_pagination_dto.py |
| 74 | +ttx/models/player_order_by.py |
| 75 | +ttx/models/player_partial_dto.py |
| 76 | +ttx/models/player_share_dto.py |
| 77 | +ttx/models/player_transaction_dto.py |
| 78 | +ttx/models/player_type.py |
| 79 | +ttx/models/portfolio_snapshot_dto.py |
| 80 | +ttx/models/rarity.py |
| 81 | +ttx/models/stream_status_dto.py |
| 82 | +ttx/models/time_step.py |
| 83 | +ttx/models/token_dto.py |
| 84 | +ttx/models/transaction_action.py |
| 85 | +ttx/models/twitch_user_dto.py |
| 86 | +ttx/models/vote_dto.py |
| 87 | +ttx/py.typed |
| 88 | +ttx/rest.py |
0 commit comments