orionis 0.484.0__py3-none-any.whl → 0.485.0__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.
@@ -0,0 +1,312 @@
1
+ from pathlib import Path
2
+ from orionis.foundation.contracts.application import IApplication
3
+
4
+ class Directory:
5
+ """
6
+ Provides convenient access to various application directories.
7
+
8
+ This class uses the application instance to resolve and return
9
+ paths to different directories within the application's structure.
10
+
11
+ Parameters
12
+ ----------
13
+ app : IApplication
14
+ The application instance used to resolve directory paths.
15
+ """
16
+
17
+ def __init__(self, app: IApplication) -> None:
18
+ """
19
+ Initialize the Directory with an application instance.
20
+
21
+ Parameters
22
+ ----------
23
+ app : IApplication
24
+ The application instance used to resolve directory paths.
25
+ """
26
+ self.__app = app
27
+
28
+ def root(self) -> Path:
29
+ """
30
+ Get the root directory path of the application.
31
+
32
+ Returns
33
+ -------
34
+ Path
35
+ The path to the application's root directory.
36
+ """
37
+ return Path(self.__app.path('root'))
38
+
39
+ def commands(self) -> Path:
40
+ """
41
+ Get the commands directory path.
42
+
43
+ Returns
44
+ -------
45
+ Path
46
+ The path to the commands directory.
47
+ """
48
+ return Path(self.__app.path('commands'))
49
+
50
+ def controllers(self) -> Path:
51
+ """
52
+ Get the controllers directory path.
53
+
54
+ Returns
55
+ -------
56
+ Path
57
+ The path to the controllers directory.
58
+ """
59
+ return Path(self.__app.path('controllers'))
60
+
61
+ def middleware(self) -> Path:
62
+ """
63
+ Get the middleware directory path.
64
+
65
+ Returns
66
+ -------
67
+ Path
68
+ The path to the middleware directory.
69
+ """
70
+ return Path(self.__app.path('middleware'))
71
+
72
+ def requests(self) -> Path:
73
+ """
74
+ Get the requests directory path.
75
+
76
+ Returns
77
+ -------
78
+ Path
79
+ The path to the requests directory.
80
+ """
81
+ return Path(self.__app.path('requests'))
82
+
83
+ def models(self) -> Path:
84
+ """
85
+ Get the models directory path.
86
+
87
+ Returns
88
+ -------
89
+ Path
90
+ The path to the models directory.
91
+ """
92
+ return Path(self.__app.path('models'))
93
+
94
+ def providers(self) -> Path:
95
+ """
96
+ Get the providers directory path.
97
+
98
+ Returns
99
+ -------
100
+ Path
101
+ The path to the providers directory.
102
+ """
103
+ return Path(self.__app.path('providers'))
104
+
105
+ def events(self) -> Path:
106
+ """
107
+ Get the events directory path.
108
+
109
+ Returns
110
+ -------
111
+ Path
112
+ The path to the events directory.
113
+ """
114
+ return Path(self.__app.path('events'))
115
+
116
+ def listeners(self) -> Path:
117
+ """
118
+ Get the listeners directory path.
119
+
120
+ Returns
121
+ -------
122
+ Path
123
+ The path to the listeners directory.
124
+ """
125
+ return Path(self.__app.path('listeners'))
126
+
127
+ def notifications(self) -> Path:
128
+ """
129
+ Get the notifications directory path.
130
+
131
+ Returns
132
+ -------
133
+ Path
134
+ The path to the notifications directory.
135
+ """
136
+ return Path(self.__app.path('notifications'))
137
+
138
+ def jobs(self) -> Path:
139
+ """
140
+ Get the jobs directory path.
141
+
142
+ Returns
143
+ -------
144
+ Path
145
+ The path to the jobs directory.
146
+ """
147
+ return Path(self.__app.path('jobs'))
148
+
149
+ def policies(self) -> Path:
150
+ """
151
+ Get the policies directory path.
152
+
153
+ Returns
154
+ -------
155
+ Path
156
+ The path to the policies directory.
157
+ """
158
+ return Path(self.__app.path('policies'))
159
+
160
+ def exceptions(self) -> Path:
161
+ """
162
+ Get the exceptions directory path.
163
+
164
+ Returns
165
+ -------
166
+ Path
167
+ The path to the exceptions directory.
168
+ """
169
+ return Path(self.__app.path('exceptions'))
170
+
171
+ def services(self) -> Path:
172
+ """
173
+ Get the services directory path.
174
+
175
+ Returns
176
+ -------
177
+ Path
178
+ The path to the services directory.
179
+ """
180
+ return Path(self.__app.path('services'))
181
+
182
+ def views(self) -> Path:
183
+ """
184
+ Get the views directory path.
185
+
186
+ Returns
187
+ -------
188
+ Path
189
+ The path to the views directory.
190
+ """
191
+ return Path(self.__app.path('views'))
192
+
193
+ def lang(self) -> Path:
194
+ """
195
+ Get the language files directory path.
196
+
197
+ Returns
198
+ -------
199
+ Path
200
+ The path to the language files directory.
201
+ """
202
+ return Path(self.__app.path('lang'))
203
+
204
+ def assets(self) -> Path:
205
+ """
206
+ Get the assets directory path.
207
+
208
+ Returns
209
+ -------
210
+ Path
211
+ The path to the assets directory.
212
+ """
213
+ return Path(self.__app.path('assets'))
214
+
215
+ def routes(self) -> Path:
216
+ """
217
+ Get the routes directory path.
218
+
219
+ Returns
220
+ -------
221
+ Path
222
+ The path to the routes directory.
223
+ """
224
+ return Path(self.__app.path('routes'))
225
+
226
+ def config(self) -> Path:
227
+ """
228
+ Get the configuration directory path.
229
+
230
+ Returns
231
+ -------
232
+ Path
233
+ The path to the configuration directory.
234
+ """
235
+ return Path(self.__app.path('config'))
236
+
237
+ def migrations(self) -> Path:
238
+ """
239
+ Get the migrations directory path.
240
+
241
+ Returns
242
+ -------
243
+ Path
244
+ The path to the migrations directory.
245
+ """
246
+ return Path(self.__app.path('migrations'))
247
+
248
+ def seeders(self) -> Path:
249
+ """
250
+ Get the seeders directory path.
251
+
252
+ Returns
253
+ -------
254
+ Path
255
+ The path to the seeders directory.
256
+ """
257
+ return Path(self.__app.path('seeders'))
258
+
259
+ def factories(self) -> Path:
260
+ """
261
+ Get the factories directory path.
262
+
263
+ Returns
264
+ -------
265
+ Path
266
+ The path to the factories directory.
267
+ """
268
+ return Path(self.__app.path('factories'))
269
+
270
+ def logs(self) -> Path:
271
+ """
272
+ Get the logs directory path.
273
+
274
+ Returns
275
+ -------
276
+ Path
277
+ The path to the logs directory.
278
+ """
279
+ return Path(self.__app.path('logs'))
280
+
281
+ def sessions(self) -> Path:
282
+ """
283
+ Get the sessions directory path.
284
+
285
+ Returns
286
+ -------
287
+ Path
288
+ The path to the sessions directory.
289
+ """
290
+ return Path(self.__app.path('sessions'))
291
+
292
+ def cache(self) -> Path:
293
+ """
294
+ Get the cache directory path.
295
+
296
+ Returns
297
+ -------
298
+ Path
299
+ The path to the cache directory.
300
+ """
301
+ return Path(self.__app.path('cache'))
302
+
303
+ def testing(self) -> Path:
304
+ """
305
+ Get the testing directory path.
306
+
307
+ Returns
308
+ -------
309
+ Path
310
+ The path to the testing directory.
311
+ """
312
+ return Path(self.__app.path('testing'))
@@ -0,0 +1,7 @@
1
+ from pathlib import Path
2
+ from orionis.foundation.contracts.application import IApplication
3
+
4
+ class Storage:
5
+
6
+ def __init__(self, app:IApplication) -> None:
7
+ self.__root = app.path('root')
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: orionis
3
- Version: 0.484.0
3
+ Version: 0.485.0
4
4
  Summary: Orionis Framework – Elegant, Fast, and Powerful.
5
5
  Home-page: https://github.com/orionis-framework/framework
6
6
  Author: Raul Mauricio Uñate Castro
@@ -8,24 +8,26 @@ orionis/console/args/enums/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJ
8
8
  orionis/console/args/enums/actions.py,sha256=S3T-vWS6DJSGtANrq3od3-90iYAjPvJwaOZ2V02y34c,1222
9
9
  orionis/console/base/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
10
10
  orionis/console/base/command.py,sha256=nasVPyKEvuv8sDFEWXhHyBCWAmSLfPPm2XlKaYYt_pM,6642
11
+ orionis/console/base/scheduler.py,sha256=_wFjQ6xo2lBgIiydm-g2SXe0sBAuIRMu5ZvKmokunDU,1601
11
12
  orionis/console/base/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
12
13
  orionis/console/base/contracts/command.py,sha256=vmAJD0yMQ5-AD_s9_xCFEAl64sKk65z7U2E196dALQM,5760
13
14
  orionis/console/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
15
  orionis/console/commands/cache.py,sha256=8DsYoRzSBLn0P9qkGVItRbo0R6snWBDBg0_Xa7tmVhs,2322
15
16
  orionis/console/commands/help.py,sha256=ooPoenP08ArMAWiL89_oUGD9l1Faen2QjLTG90i4zCQ,3187
16
17
  orionis/console/commands/publisher.py,sha256=FUg-EUzK7LLXsla10ZUZro8V0Z5S-KjmsaSdRHSSGbA,21381
17
- orionis/console/commands/scheduler_list.py,sha256=SXaD1XJFV1bbyjlDuQhlHz2y1kW-VVCxQxuKJMtQRtA,5956
18
- orionis/console/commands/scheduler_work.py,sha256=eRd-IbburgcitIOpDo757F6lY_KQqO9oyKxszdQZsuU,6102
19
- orionis/console/commands/test.py,sha256=_Tb-I9vabiqhqGeLfRbV5Y1LEVCdhZhBAwoEQZCzQuM,2435
18
+ orionis/console/commands/scheduler_list.py,sha256=-SSxLG7In0gfCpTjaFG1_j-GkcHChXlC6jFQyX2EKW4,4851
19
+ orionis/console/commands/scheduler_work.py,sha256=BV9Fev13S479j6nz6XA3Uh2z3At-Y3277Pn4pSBC6Nc,4315
20
+ orionis/console/commands/test.py,sha256=-EmQwFwMBuby3OI9HwqMIwuJzd2CGbWbOqmwrR25sOE,2402
20
21
  orionis/console/commands/version.py,sha256=SUuNDJ40f2uq69OQUmPQXJKaa9Bm_iVRDPmBd7zc1Yc,3658
21
22
  orionis/console/commands/workflow.py,sha256=NYOmjTSvm2o6AE4h9LSTZMFSYPQreNmEJtronyOxaYk,2451
22
23
  orionis/console/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
23
24
  orionis/console/contracts/event.py,sha256=pxoxNjk31bt6yGvUFRTo_TI_SaZZar6iSIJARWR6KbM,5170
25
+ orionis/console/contracts/event_listener.py,sha256=88UKH20bcwHlJh61O_qXKqUD9qe0jMQVXXZdlwMkc2s,482
24
26
  orionis/console/contracts/kernel.py,sha256=mh4LlhEYHh3FuGZZQ0GBhD6ZLa5YQvaNj2r01IIHI5Y,826
25
27
  orionis/console/contracts/reactor.py,sha256=Xeq7Zrw6WE5MV_XOQfiQEchAFbb6-0TjLpjWOxYW--g,4554
26
28
  orionis/console/contracts/schedule.py,sha256=eGjcOH7kgdf0fWDZRfOFUQsIx4E8G38ayX5JwpkpN8E,4977
27
29
  orionis/console/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
28
- orionis/console/core/reactor.py,sha256=XE4VvUPnOSQ_qmkLMYEDfwKaqDZyFxCiVtoSJVqpk_M,30372
30
+ orionis/console/core/reactor.py,sha256=wT0osBlPRMqseRG0UGqwt2t1nezPR8tnUhU4sXvYUzY,30342
29
31
  orionis/console/dumper/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
30
32
  orionis/console/dumper/dump.py,sha256=CATERiQ6XuIrKQsDaWcVxzTtlAJI9qLJX44fQxEX8ws,22443
31
33
  orionis/console/dumper/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -53,9 +55,10 @@ orionis/console/output/contracts/executor.py,sha256=7l3kwnvv6GlH9EYk0v94YE1olex_
53
55
  orionis/console/output/enums/__init__.py,sha256=LAaAxg-DpArCjf_jqZ0_9s3p8899gntDYkSU_ppTdC8,66
54
56
  orionis/console/output/enums/styles.py,sha256=6a4oQCOBOKMh2ARdeq5GlIskJ3wjiylYmh66tUKKmpQ,4053
55
57
  orionis/console/tasks/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
56
- orionis/console/tasks/event.py,sha256=NdOht_yXqKW0EIsIVrctIgOhQDWAR5fuMPEF05zTWtI,12029
58
+ orionis/console/tasks/event.py,sha256=6XHUKm5N-vXoj9m0zKl_PlpbA_6jkxq3ILJY4Ys8eUM,12210
57
59
  orionis/console/tasks/exception_report.py,sha256=IN1PCQ08ZHs1sivUpzi2f9U9eW8ydZyb8GO6KiT56LY,3643
58
- orionis/console/tasks/schedule.py,sha256=3bELvGlYzsvPdwkUKrkMd_UxXT8Xp2bpOaMY1bRGwGY,20301
60
+ orionis/console/tasks/listener.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
61
+ orionis/console/tasks/schedule.py,sha256=YsS4mdPToAsjQ90iGB1nCku0Et3AN_-eT1zXA482sBo,20356
59
62
  orionis/container/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
60
63
  orionis/container/container.py,sha256=aF_b6lTUpG4YCo9yFJEzsntTdIzgMMXFW5LyWqAJVBQ,87987
61
64
  orionis/container/context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -88,7 +91,7 @@ orionis/container/validators/is_subclass.py,sha256=4sBaGLoRs8nUhuWjlP0VJqyTwVHYq
88
91
  orionis/container/validators/is_valid_alias.py,sha256=4uAYcq8xov7jZbXnpKpjNkxcZtlTNnL5RRctVPMwJes,1424
89
92
  orionis/container/validators/lifetime.py,sha256=IQ43fDNrxYHMlZH2zlYDJnlkLO_eS4U7Fs3UJgQBidI,1844
90
93
  orionis/foundation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
91
- orionis/foundation/application.py,sha256=VSTVDs366fHMWM6QIB5ABolmqA0d5yl0km9RVn-T36c,77469
94
+ orionis/foundation/application.py,sha256=VhafZWfd1IHi7KpaCcG62lKAxJAYwUoKWwCZO_-doPY,78480
92
95
  orionis/foundation/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
93
96
  orionis/foundation/config/startup.py,sha256=vbzduprRCNyYeR2nnMaqc1uKXw6PTzAY2jVfXNQKN8I,9691
94
97
  orionis/foundation/config/app/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -166,7 +169,7 @@ orionis/foundation/config/queue/entities/queue.py,sha256=YiWPeEg5e0fd_DJM2ogska6
166
169
  orionis/foundation/config/queue/enums/__init__.py,sha256=oWY8GWwr5mex7szs_bLVqAS1jbyuIAvKl7XFGSlU9A0,64
167
170
  orionis/foundation/config/queue/enums/strategy.py,sha256=S_kw7KZtoCk5FTOkbuXepdy_fOl9Eav4uT2K0OyzBa0,602
168
171
  orionis/foundation/config/roots/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
169
- orionis/foundation/config/roots/paths.py,sha256=EsMHLfOejYvS_N3B2LfY-SJioHFXMUOqEo0BEiHwQAI,10675
172
+ orionis/foundation/config/roots/paths.py,sha256=etI-rnXARmH_75BqLQGnmjFVpdHZQfEDz2-Qfx6BbsY,10284
170
173
  orionis/foundation/config/session/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
171
174
  orionis/foundation/config/session/entities/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
172
175
  orionis/foundation/config/session/entities/session.py,sha256=sJoD-_CiwUR88tva-rO22bagG3RTcHXrQGWbq4B5joM,5998
@@ -182,7 +185,7 @@ orionis/foundation/config/testing/enums/drivers.py,sha256=mwv47FcKDXEOxydQXAGtkd
182
185
  orionis/foundation/config/testing/enums/mode.py,sha256=IbFpauu7J-iSAfmC8jDbmTEYl8eZr-AexL-lyOh8_74,337
183
186
  orionis/foundation/config/testing/enums/verbosity.py,sha256=Z-FQ6C3rxbRwP8HoVibbgRMGcsen2SwTuEy3wnjdIhc,486
184
187
  orionis/foundation/contracts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
185
- orionis/foundation/contracts/application.py,sha256=DQbSbnlfTTPgqo6qxEoTC216_QmJ8KJRT7QBudKCoN4,27033
188
+ orionis/foundation/contracts/application.py,sha256=Pr1-fl3SMuaq9WYQko9N8DhYtRXcuZG3tMNgBMUdsEs,28972
186
189
  orionis/foundation/contracts/config.py,sha256=mCyA43f0n_e-CEL0f-sWWgE-M7GicS_aEtC_TNbn_yc,802
187
190
  orionis/foundation/exceptions/__init__.py,sha256=q6we1N8kcd6j6GjUJY30WQhhHnqF9RXA0c6-ksEztlc,294
188
191
  orionis/foundation/exceptions/integrity.py,sha256=mc4pL1UMoYRHEmphnpW2oGk5URhu7DJRREyzHaV-cs8,472
@@ -202,7 +205,7 @@ orionis/foundation/providers/scheduler_provider.py,sha256=72SoixFog9IOE9Ve9Xcfw6
202
205
  orionis/foundation/providers/testing_provider.py,sha256=SrJRpdvcblx9WvX7x9Y3zc7OQfiTf7la0HAJrm2ESlE,3725
203
206
  orionis/foundation/providers/workers_provider.py,sha256=oa_2NIDH6UxZrtuGkkoo_zEoNIMGgJ46vg5CCgAm7wI,3926
204
207
  orionis/metadata/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
205
- orionis/metadata/framework.py,sha256=QHaUaU9LFBgHK8Xe_11Y_EDNM2zMoDL5Jq7FviFSCIg,4109
208
+ orionis/metadata/framework.py,sha256=RCvtTiMT3HlMt4o45Tl7o4JPASKtuvjg0BpAL7WU7g4,4109
206
209
  orionis/metadata/package.py,sha256=k7Yriyp5aUcR-iR8SK2ec_lf0_Cyc-C7JczgXa-I67w,16039
207
210
  orionis/services/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
208
211
  orionis/services/asynchrony/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -232,6 +235,9 @@ orionis/services/environment/key/key_generator.py,sha256=q39GD-VgRhH0uYB0ZdfUnq9
232
235
  orionis/services/environment/validators/__init__.py,sha256=S0Us4_BtKPuOMQZf4uFFqUINB8l6Eb9vJbbxUCzIhfc,135
233
236
  orionis/services/environment/validators/key_name.py,sha256=TSwVhQCbBYPZ_4zZ-o16yT_2pOe3WRWl9d8KzfDzWyg,1660
234
237
  orionis/services/environment/validators/types.py,sha256=hiTszo7hS_1zQLclUIDOFUTGy2Kg2n3dZe7jU8Pmf1I,2839
238
+ orionis/services/file/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
239
+ orionis/services/file/directory.py,sha256=MdIc3hQXAcUaMFYujexScJ6-UIFgHCRN-TbGNr651Hg,7326
240
+ orionis/services/file/storage.py,sha256=d3wdG3991fNbyGw9S9xAQ6PI28bA1wXHjzCtnLAK5Ls,202
235
241
  orionis/services/inspirational/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
236
242
  orionis/services/inspirational/inspire.py,sha256=dUxwkNLjKC4jdi06cVB1gfyB2zHjfgdhYhwKtsOTf0Q,4090
237
243
  orionis/services/inspirational/quotes.py,sha256=9hCIEFE0DdfXLaGq_SzFpXlC2AbGSnuFLzyec4Rd1H0,53455
@@ -374,7 +380,7 @@ orionis/test/validators/web_report.py,sha256=n9BfzOZz6aEiNTypXcwuWbFRG0OdHNSmCNu
374
380
  orionis/test/validators/workers.py,sha256=rWcdRexINNEmGaO7mnc1MKUxkHKxrTsVuHgbnIfJYgc,1206
375
381
  orionis/test/view/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
376
382
  orionis/test/view/render.py,sha256=f-zNhtKSg9R5Njqujbg2l2amAs2-mRVESneLIkWOZjU,4082
377
- orionis-0.484.0.dist-info/licenses/LICENCE,sha256=JhC-z_9mbpUrCfPjcl3DhDA8trNDMzb57cvRSam1avc,1463
383
+ orionis-0.485.0.dist-info/licenses/LICENCE,sha256=JhC-z_9mbpUrCfPjcl3DhDA8trNDMzb57cvRSam1avc,1463
378
384
  tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
379
385
  tests/container/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
380
386
  tests/container/context/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -456,7 +462,7 @@ tests/foundation/config/queue/test_foundation_config_queue.py,sha256=1qeov00ibVD
456
462
  tests/foundation/config/queue/test_foundation_config_queue_brokers.py,sha256=pgdOtasyAkKOBscdb8T4GP5JeYRSBtGfpQIB4li0It8,2594
457
463
  tests/foundation/config/queue/test_foundation_config_queue_database.py,sha256=qLYXjG8YVIp_NWYcZA9A2GmOdjFyt3snq9X1cdIok8M,4830
458
464
  tests/foundation/config/root/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
459
- tests/foundation/config/root/test_foundation_config_root_paths.py,sha256=_0jH-vuDH_4IEvGK1WSlZFTRpA6TIGbeofXjl9Kjz5U,3944
465
+ tests/foundation/config/root/test_foundation_config_root_paths.py,sha256=cdXhXDa6BzfrgaUFjLTsBDeiAQQStdcvxZpflBiej2o,3935
460
466
  tests/foundation/config/session/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
461
467
  tests/foundation/config/session/test_foundation_config_session.py,sha256=itTV_OxTsUUsS4AVvcrNntkuEmMPmEO6YZLjVLRwP50,7380
462
468
  tests/foundation/config/startup/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -521,8 +527,8 @@ tests/testing/validators/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZ
521
527
  tests/testing/validators/test_testing_validators.py,sha256=WPo5GxTP6xE-Dw3X1vZoqOMpb6HhokjNSbgDsDRDvy4,16588
522
528
  tests/testing/view/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
523
529
  tests/testing/view/test_render.py,sha256=tnnMBwS0iKUIbogLvu-7Rii50G6Koddp3XT4wgdFEYM,1050
524
- orionis-0.484.0.dist-info/METADATA,sha256=JmsYHngCZy4ZwPJhAEqLVHng4Z58Mih5g6baeieDABQ,4801
525
- orionis-0.484.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
526
- orionis-0.484.0.dist-info/top_level.txt,sha256=2bdoHgyGZhOtLAXS6Om8OCTmL24dUMC_L1quMe_ETbk,14
527
- orionis-0.484.0.dist-info/zip-safe,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
528
- orionis-0.484.0.dist-info/RECORD,,
530
+ orionis-0.485.0.dist-info/METADATA,sha256=sAUSO3l6yPg80tLGa_g-alhNK3f1fHgwb7Bxp00R2eE,4801
531
+ orionis-0.485.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
532
+ orionis-0.485.0.dist-info/top_level.txt,sha256=2bdoHgyGZhOtLAXS6Om8OCTmL24dUMC_L1quMe_ETbk,14
533
+ orionis-0.485.0.dist-info/zip-safe,sha256=frcCV1k9oG9oKj3dpUqdJg1PxRT2RSN_XKdLCPjaYaY,2
534
+ orionis-0.485.0.dist-info/RECORD,,
@@ -53,7 +53,7 @@ class TestFoundationConfigRootPaths(AsyncTestCase):
53
53
  None
54
54
  """
55
55
  with self.assertRaises(OrionisIntegrityException):
56
- Paths(console_scheduler=123)
56
+ Paths(commands=123)
57
57
 
58
58
  def testToDictReturnsCompleteDictionary(self):
59
59
  """