sillo-framework 0.3.0__tar.gz → 0.3.2.dev1__tar.gz

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 (1838) hide show
  1. sillo_framework-0.3.2.dev1/.github/workflows/coverage.yml +72 -0
  2. sillo_framework-0.3.2.dev1/.github/workflows/format-code.yml +43 -0
  3. sillo_framework-0.3.2.dev1/.github/workflows/lint.yaml +48 -0
  4. sillo_framework-0.3.2.dev1/.github/workflows/merge-to-main.yml +58 -0
  5. sillo_framework-0.3.2.dev1/.github/workflows/run-tests.yaml +88 -0
  6. sillo_framework-0.3.2.dev1/.github/workflows/type-check.yaml +44 -0
  7. sillo_framework-0.3.2.dev1/CHANGELOG.md +753 -0
  8. sillo_framework-0.3.2.dev1/PKG-INFO +443 -0
  9. sillo_framework-0.3.2.dev1/README.md +343 -0
  10. sillo_framework-0.3.2.dev1/V1.md +191 -0
  11. sillo_framework-0.3.2.dev1/coverage.json +1 -0
  12. sillo_framework-0.3.2.dev1/docs/docs/astro.config.mjs +762 -0
  13. sillo_framework-0.3.2.dev1/docs/docs/src/components/MarkdownContent.astro +85 -0
  14. sillo_framework-0.3.2.dev1/docs/docs/src/components/SectionNav.astro +309 -0
  15. sillo_framework-0.3.2.dev1/docs/docs/src/components/Sidebar.astro +112 -0
  16. sillo_framework-0.3.2.dev1/docs/docs/src/components/SiteFooter.astro +399 -0
  17. sillo_framework-0.3.2.dev1/docs/docs/src/components/VersionSwitcher.astro +206 -0
  18. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/graphql/context.md +162 -0
  19. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/graphql/errors.md +177 -0
  20. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/graphql/index.md +124 -0
  21. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/graphql/limits.md +179 -0
  22. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/graphql/loaders.md +159 -0
  23. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/graphql/observability.md +154 -0
  24. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/graphql/persisted.md +146 -0
  25. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/graphql/resolvers.md +195 -0
  26. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/graphql/subscriptions.md +191 -0
  27. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/graphql/testing.md +223 -0
  28. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/graphql/transport.md +186 -0
  29. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/index.md +61 -0
  30. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/warder/actions.md +101 -0
  31. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/warder/auth.md +130 -0
  32. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/warder/cli.md +103 -0
  33. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/warder/columns.md +115 -0
  34. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/warder/dashboard.md +89 -0
  35. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/warder/declarations.md +142 -0
  36. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/warder/detail.md +86 -0
  37. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/warder/embedding.md +94 -0
  38. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/warder/filters.md +81 -0
  39. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/warder/forms.md +146 -0
  40. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/warder/images/dashboard.png +0 -0
  41. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/warder/images/detail.png +0 -0
  42. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/warder/images/form.png +0 -0
  43. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/warder/images/list.png +0 -0
  44. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/warder/images/login.png +0 -0
  45. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/warder/images/many-to-many.png +0 -0
  46. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/warder/images/money.png +0 -0
  47. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/warder/images/page.png +0 -0
  48. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/warder/images/panels.png +0 -0
  49. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/warder/images/picker.png +0 -0
  50. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/warder/images/results.png +0 -0
  51. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/warder/images/staff.png +0 -0
  52. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/warder/index.md +113 -0
  53. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/warder/lists.md +137 -0
  54. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/warder/pages.md +74 -0
  55. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/warder/permissions.md +161 -0
  56. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/warder/quickstart.md +101 -0
  57. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/warder/reference.md +151 -0
  58. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/warder/relations.md +101 -0
  59. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/warder/resources.md +102 -0
  60. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/warder/theming.md +104 -0
  61. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/warder/widgets.md +89 -0
  62. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/wire/backlog.md +169 -0
  63. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/wire/consumers.md +151 -0
  64. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/wire/hub.md +158 -0
  65. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/wire/index.md +127 -0
  66. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/wire/peers.md +148 -0
  67. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/wire/presence.md +132 -0
  68. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/wire/reference.md +178 -0
  69. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/packages/wire/testing.md +181 -0
  70. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/advanced/configuration.md +839 -0
  71. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/advanced/dependency-injection.md +883 -0
  72. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/advanced/index.md +150 -0
  73. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/advanced/mail.md +816 -0
  74. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/advanced/storage.md +414 -0
  75. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/cli/arguments.md +221 -0
  76. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/cli/custom-commands.md +208 -0
  77. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/cli/database.md +231 -0
  78. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/cli/index.md +120 -0
  79. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/cli/output.md +201 -0
  80. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/cli/queues.md +184 -0
  81. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/cli/scheduler.md +124 -0
  82. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/cli/standalone-consoles.md +280 -0
  83. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/cli/styling.md +150 -0
  84. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/cli/users.md +189 -0
  85. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/api-keys.md +160 -0
  86. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/authentication.md +418 -0
  87. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/coming-from.md +225 -0
  88. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/concurrency.md +399 -0
  89. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/configuration.md +705 -0
  90. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/cookies.mdx +381 -0
  91. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/cors.md +507 -0
  92. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/csrf.md +476 -0
  93. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/dependency-injection.md +452 -0
  94. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/ecosystem.md +215 -0
  95. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/environment.md +202 -0
  96. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/events.mdx +551 -0
  97. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/faq.md +257 -0
  98. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/graphql.md +205 -0
  99. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/handlers.md +472 -0
  100. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/hashing.md +1055 -0
  101. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/headers.mdx +440 -0
  102. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/helpers/async.mdx +453 -0
  103. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/helpers/crypto.mdx +378 -0
  104. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/helpers/deprecation.mdx +377 -0
  105. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/helpers/files.mdx +377 -0
  106. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/helpers/hashing.mdx +379 -0
  107. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/helpers/html.mdx +399 -0
  108. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/helpers/index.mdx +276 -0
  109. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/helpers/jwt.mdx +388 -0
  110. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/helpers/network.mdx +434 -0
  111. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/helpers/retry.mdx +378 -0
  112. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/helpers/strings.mdx +417 -0
  113. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/helpers/text.mdx +370 -0
  114. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/http/client.md +576 -0
  115. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/inertia/assets.md +135 -0
  116. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/inertia/forms.md +158 -0
  117. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/inertia/index.md +108 -0
  118. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/inertia/pages.md +204 -0
  119. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/inertia/start.mdx +157 -0
  120. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/inertia/structure.md +145 -0
  121. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/installation.mdx +256 -0
  122. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/introduction.md +319 -0
  123. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/jwt-auth.md +335 -0
  124. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/middleware.md +435 -0
  125. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/oauth/index.md +158 -0
  126. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/oauth/persisting-logins.md +212 -0
  127. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/oauth/providers.md +198 -0
  128. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/oauth/security.md +163 -0
  129. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/openapi/customizing-openapi-configuration.md +753 -0
  130. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/openapi/documentation-ui.md +347 -0
  131. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/openapi/index.md +723 -0
  132. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/permissions.md +515 -0
  133. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/philosophy.md +219 -0
  134. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/protecting-routes.md +418 -0
  135. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/record/casting-collections.mdx +413 -0
  136. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/record/exceptions-pydantic.mdx +454 -0
  137. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/record/index.mdx +421 -0
  138. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/record/migrations.mdx +362 -0
  139. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/record/models.mdx +566 -0
  140. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/record/pagination.mdx +469 -0
  141. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/record/scopes-events.mdx +452 -0
  142. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/record/transactions-factories.mdx +453 -0
  143. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/request-info.md +460 -0
  144. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/request-inputs.md +157 -0
  145. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/request-lifecycle.md +501 -0
  146. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/request-parameters.mdx +413 -0
  147. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/routers-and-subapps.md +277 -0
  148. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/security.md +356 -0
  149. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/serialization.md +371 -0
  150. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/services/mail.mdx +460 -0
  151. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/session-auth.md +429 -0
  152. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/start/admin.md +316 -0
  153. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/start/authentication.md +346 -0
  154. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/start/background-work.md +391 -0
  155. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/start/console.md +389 -0
  156. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/start/database.md +374 -0
  157. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/start/deployment.md +338 -0
  158. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/start/index.mdx +434 -0
  159. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/start/structure.md +468 -0
  160. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/start/testing.md +336 -0
  161. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/startups-and-shutdowns.mdx +428 -0
  162. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/static-files.mdx +349 -0
  163. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/storage.mdx +654 -0
  164. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/streaming-response.mdx +491 -0
  165. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/templating/advanced.mdx +484 -0
  166. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/templating/index.mdx +676 -0
  167. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/url-normalization.md +183 -0
  168. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/users.md +484 -0
  169. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/validation/forms-and-files.md +465 -0
  170. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/validation/index.md +367 -0
  171. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/validation/openapi.md +482 -0
  172. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/validation/parameters.md +489 -0
  173. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/validation/request-bodies.md +580 -0
  174. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/websockets/channels.mdx +435 -0
  175. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/websockets/consumer.mdx +457 -0
  176. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/websockets/events.mdx +464 -0
  177. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/websockets/groups.mdx +434 -0
  178. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/websockets/index.mdx +407 -0
  179. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/work/background.mdx +432 -0
  180. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/work/events.mdx +451 -0
  181. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/work/index.mdx +441 -0
  182. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/work/jobs.mdx +727 -0
  183. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/guides/work/queue.mdx +1270 -0
  184. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/orm/admin-customising.md +220 -0
  185. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/orm/admin-permissions.md +253 -0
  186. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/orm/admin-registering.md +198 -0
  187. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/orm/admin.md +182 -0
  188. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/orm/aggregation.md +247 -0
  189. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/orm/bulk.md +167 -0
  190. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/orm/casting.md +179 -0
  191. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/orm/collections.md +152 -0
  192. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/orm/configuration.md +170 -0
  193. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/orm/connections.md +212 -0
  194. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/orm/eager-loading.md +213 -0
  195. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/orm/events.md +158 -0
  196. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/orm/exceptions.md +148 -0
  197. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/orm/factories.md +215 -0
  198. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/orm/field-reference.md +305 -0
  199. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/orm/fields.md +190 -0
  200. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/orm/filtering.md +248 -0
  201. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/orm/index.md +135 -0
  202. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/orm/lookups.md +252 -0
  203. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/orm/mass-assignment.md +144 -0
  204. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/orm/meta.md +295 -0
  205. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/orm/migrations-applying.md +177 -0
  206. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/orm/migrations-programmatic.md +201 -0
  207. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/orm/migrations.md +169 -0
  208. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/orm/mixins.md +196 -0
  209. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/orm/models.md +175 -0
  210. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/orm/pagination.md +153 -0
  211. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/orm/pydantic.md +156 -0
  212. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/orm/queries.md +181 -0
  213. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/orm/queryset.md +315 -0
  214. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/orm/raw-sql.md +204 -0
  215. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/orm/relationships.md +294 -0
  216. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/orm/scopes.md +174 -0
  217. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/orm/seeding.md +190 -0
  218. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/orm/setup.md +166 -0
  219. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/orm/transactions.md +202 -0
  220. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/orm/values.md +204 -0
  221. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/pydantic/config.md +236 -0
  222. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/pydantic/errors.md +245 -0
  223. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/pydantic/fields.md +257 -0
  224. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/pydantic/index.md +105 -0
  225. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/pydantic/models.md +249 -0
  226. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/pydantic/nested.md +220 -0
  227. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/pydantic/openapi.md +252 -0
  228. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/pydantic/orm-bridge.md +250 -0
  229. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/pydantic/parameters.md +285 -0
  230. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/pydantic/patterns.md +295 -0
  231. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/pydantic/request-models.md +254 -0
  232. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/pydantic/response-models.md +242 -0
  233. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/pydantic/serialization.md +245 -0
  234. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/pydantic/types.md +308 -0
  235. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/pydantic/validators.md +296 -0
  236. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/start/after-creating.mdx +145 -0
  237. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/start/create-app.md +171 -0
  238. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/start/custom-starters.md +157 -0
  239. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/start/errors.md +147 -0
  240. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/start/index.md +91 -0
  241. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/start/install.mdx +159 -0
  242. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/start/internals.md +177 -0
  243. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/start/package-managers.md +156 -0
  244. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/start/personalisation.md +124 -0
  245. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/start/secrets.md +122 -0
  246. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x/start/starters.md +148 -0
  247. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/application-lifecycle.md +921 -0
  248. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/architecture-overview.md +814 -0
  249. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/atlas.md +975 -0
  250. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/auth-backends.md +1009 -0
  251. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/authentication.md +1031 -0
  252. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/cache.md +815 -0
  253. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/change-impact.md +917 -0
  254. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/configuration.md +773 -0
  255. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/console.md +1046 -0
  256. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/context-binding.md +152 -0
  257. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/debugging.md +621 -0
  258. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/decisions.md +761 -0
  259. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/dependency-injection.md +885 -0
  260. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/events.md +898 -0
  261. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/exception-handling.md +1714 -0
  262. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/extending.md +1353 -0
  263. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/glossary.md +1478 -0
  264. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/hashing.md +1027 -0
  265. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/helpers.md +1192 -0
  266. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/http-correctness.md +1571 -0
  267. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/http-request.md +1627 -0
  268. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/http-response.md +1749 -0
  269. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/index.md +148 -0
  270. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/inertia.md +875 -0
  271. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/mail.md +818 -0
  272. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/middleware.md +1998 -0
  273. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/oauth.md +988 -0
  274. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/openapi.md +1131 -0
  275. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/pagination.md +605 -0
  276. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/parameters.md +1055 -0
  277. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/permissions.md +995 -0
  278. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/record-factories.md +1115 -0
  279. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/record-migrations.md +1050 -0
  280. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/record-models.md +1083 -0
  281. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/record-queries.md +1043 -0
  282. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/record-transactions.md +983 -0
  283. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/records-orm.md +613 -0
  284. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/routing.md +1479 -0
  285. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/security.md +875 -0
  286. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/sessions.md +888 -0
  287. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/start.md +810 -0
  288. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/storage.md +414 -0
  289. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/test-client.md +644 -0
  290. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/types-and-encoding.md +924 -0
  291. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/users.md +1162 -0
  292. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/validation.md +1185 -0
  293. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/websockets.md +482 -0
  294. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/work-background.md +1231 -0
  295. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/work-queues.md +874 -0
  296. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/work-scheduler.md +1253 -0
  297. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/advanced/work-tasks.md +857 -0
  298. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/cli/arguments.md +221 -0
  299. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/cli/custom-commands.md +208 -0
  300. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/cli/database.md +231 -0
  301. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/cli/discovery.md +98 -0
  302. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/cli/framework-commands.md +97 -0
  303. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/cli/index.md +120 -0
  304. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/cli/output.md +201 -0
  305. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/cli/prompts.md +171 -0
  306. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/cli/queues.md +184 -0
  307. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/cli/scheduler.md +124 -0
  308. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/cli/standalone-consoles.md +280 -0
  309. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/cli/styling.md +150 -0
  310. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/cli/users.md +189 -0
  311. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/api-keys.md +162 -0
  312. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/authentication.md +426 -0
  313. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/cache.mdx +437 -0
  314. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/coming-from.md +223 -0
  315. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/concurrency.md +405 -0
  316. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/configuration.md +705 -0
  317. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/console.md +632 -0
  318. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/content-negotiation.md +584 -0
  319. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/cookies.mdx +391 -0
  320. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/cors.md +507 -0
  321. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/csrf.md +388 -0
  322. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/dependency-injection.md +471 -0
  323. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/ecosystem.md +173 -0
  324. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/environment.md +202 -0
  325. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/error-handling.mdx +391 -0
  326. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/events.mdx +553 -0
  327. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/faq.md +247 -0
  328. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/file-upload.md +199 -0
  329. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/frontend.md +53 -0
  330. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/handlers.md +536 -0
  331. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/hashing.md +1062 -0
  332. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/headers.mdx +458 -0
  333. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/helpers/async.mdx +453 -0
  334. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/helpers/crypto.mdx +381 -0
  335. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/helpers/deprecation.mdx +377 -0
  336. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/helpers/files.mdx +382 -0
  337. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/helpers/hashing.mdx +382 -0
  338. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/helpers/html.mdx +398 -0
  339. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/helpers/index.mdx +276 -0
  340. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/helpers/jwt.mdx +392 -0
  341. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/helpers/network.mdx +435 -0
  342. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/helpers/retry.mdx +380 -0
  343. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/helpers/strings.mdx +422 -0
  344. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/helpers/text.mdx +372 -0
  345. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/http/client.md +576 -0
  346. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/inertia/assets.md +135 -0
  347. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/inertia/forms.md +164 -0
  348. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/inertia/index.md +110 -0
  349. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/inertia/pages.md +212 -0
  350. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/inertia/start.mdx +157 -0
  351. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/inertia/structure.md +146 -0
  352. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/installation.mdx +256 -0
  353. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/introduction.md +314 -0
  354. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/jwt-auth.md +340 -0
  355. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/middleware.md +446 -0
  356. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/oauth/index.md +160 -0
  357. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/oauth/openapi.md +266 -0
  358. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/oauth/persisting-logins.md +224 -0
  359. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/oauth/providers.md +199 -0
  360. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/oauth/security.md +163 -0
  361. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/openapi/authentication-documentation.md +865 -0
  362. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/openapi/basic-config.png +0 -0
  363. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/openapi/bearerAuth.png +0 -0
  364. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/openapi/custom.png +0 -0
  365. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/openapi/custom2.png +0 -0
  366. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/openapi/customizing-openapi-configuration.md +761 -0
  367. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/openapi/description.png +0 -0
  368. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/openapi/documentation-ui.md +347 -0
  369. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/openapi/headers.png +0 -0
  370. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/openapi/index.md +746 -0
  371. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/openapi/multi-response.png +0 -0
  372. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/openapi/path-params.png +0 -0
  373. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/openapi/query-params.png +0 -0
  374. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/openapi/request-body.png +0 -0
  375. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/openapi/request-parameters.md +663 -0
  376. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/openapi/request-schemas.mdx +536 -0
  377. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/openapi/response-list.png +0 -0
  378. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/openapi/response-models.md +626 -0
  379. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/openapi/response.png +0 -0
  380. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/pagination.mdx +535 -0
  381. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/permissions.md +518 -0
  382. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/philosophy.md +218 -0
  383. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/protecting-routes.md +432 -0
  384. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/rate-limiting.md +266 -0
  385. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/request-info.md +498 -0
  386. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/request-inputs.md +166 -0
  387. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/request-lifecycle.md +510 -0
  388. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/request-parameters.mdx +447 -0
  389. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/routers-and-subapps.md +282 -0
  390. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/routing.mdx +1270 -0
  391. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/security.md +359 -0
  392. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/sending-responses.mdx +493 -0
  393. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/serialization.md +386 -0
  394. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/services/mail.mdx +465 -0
  395. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/session-auth.md +436 -0
  396. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/sessions.md +607 -0
  397. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/start/authentication.md +349 -0
  398. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/start/background-work.md +393 -0
  399. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/start/console.md +389 -0
  400. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/start/database.md +370 -0
  401. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/start/deployment.md +340 -0
  402. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/start/index.mdx +426 -0
  403. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/start/structure.md +430 -0
  404. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/start/testing.md +338 -0
  405. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/startups-and-shutdowns.mdx +431 -0
  406. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/static-files.mdx +353 -0
  407. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/storage.mdx +657 -0
  408. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/streaming-response.mdx +505 -0
  409. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/url-normalization.md +183 -0
  410. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/users.md +484 -0
  411. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/validation/errors.md +400 -0
  412. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/validation/forms-and-files.md +471 -0
  413. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/validation/index.md +369 -0
  414. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/validation/openapi.md +491 -0
  415. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/validation/parameters.md +498 -0
  416. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/validation/request-bodies.md +590 -0
  417. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/validation/response-models.md +454 -0
  418. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/websockets/events.mdx +478 -0
  419. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/websockets/index.mdx +489 -0
  420. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/work/background.mdx +438 -0
  421. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/work/events.mdx +453 -0
  422. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/work/index.mdx +443 -0
  423. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/work/jobs.mdx +729 -0
  424. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/work/queue.mdx +1276 -0
  425. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/guides/work/scheduler.mdx +526 -0
  426. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/orm/aggregation.md +247 -0
  427. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/orm/bulk.md +167 -0
  428. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/orm/casting.md +179 -0
  429. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/orm/collections.md +152 -0
  430. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/orm/configuration.md +170 -0
  431. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/orm/connections.md +216 -0
  432. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/orm/eager-loading.md +212 -0
  433. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/orm/events.md +158 -0
  434. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/orm/exceptions.md +150 -0
  435. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/orm/factories.md +215 -0
  436. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/orm/field-reference.md +305 -0
  437. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/orm/fields.md +191 -0
  438. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/orm/filtering.md +248 -0
  439. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/orm/index.md +134 -0
  440. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/orm/lookups.md +252 -0
  441. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/orm/mass-assignment.md +148 -0
  442. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/orm/meta.md +296 -0
  443. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/orm/migrations-applying.md +177 -0
  444. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/orm/migrations-programmatic.md +201 -0
  445. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/orm/migrations.md +169 -0
  446. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/orm/mixins.md +196 -0
  447. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/orm/models.md +176 -0
  448. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/orm/pagination.md +150 -0
  449. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/orm/pydantic.md +158 -0
  450. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/orm/queries.md +185 -0
  451. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/orm/queryset.md +315 -0
  452. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/orm/raw-sql.md +204 -0
  453. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/orm/relationships.md +294 -0
  454. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/orm/scopes.md +174 -0
  455. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/orm/seeding.md +190 -0
  456. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/orm/setup.md +169 -0
  457. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/orm/transactions.md +202 -0
  458. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/orm/values.md +204 -0
  459. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/pydantic/config.md +236 -0
  460. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/pydantic/errors.md +249 -0
  461. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/pydantic/fields.md +257 -0
  462. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/pydantic/index.md +107 -0
  463. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/pydantic/models.md +249 -0
  464. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/pydantic/nested.md +220 -0
  465. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/pydantic/openapi.md +252 -0
  466. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/pydantic/orm-bridge.md +254 -0
  467. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/pydantic/parameters.md +287 -0
  468. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/pydantic/patterns.md +297 -0
  469. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/pydantic/request-models.md +264 -0
  470. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/pydantic/response-models.md +253 -0
  471. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/pydantic/serialization.md +249 -0
  472. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/pydantic/types.md +308 -0
  473. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/pydantic/validators.md +296 -0
  474. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/start/after-creating.mdx +148 -0
  475. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/start/create-app.md +171 -0
  476. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/start/custom-starters.md +157 -0
  477. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/start/errors.md +147 -0
  478. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/start/index.md +91 -0
  479. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/start/install.mdx +159 -0
  480. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/start/internals.md +178 -0
  481. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/start/naming.md +135 -0
  482. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/start/package-managers.md +156 -0
  483. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/start/personalisation.md +124 -0
  484. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/start/secrets.md +122 -0
  485. sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v1.0/start/starters.md +140 -0
  486. sillo_framework-0.3.2.dev1/docs/docs/src/content.config.ts +45 -0
  487. sillo_framework-0.3.2.dev1/docs/docs/src/versions.mjs +168 -0
  488. sillo_framework-0.3.2.dev1/docs/vercel.json +27 -0
  489. sillo_framework-0.3.2.dev1/examples/README.md +64 -0
  490. sillo_framework-0.3.2.dev1/examples/auth/01_session_auth.py +97 -0
  491. sillo_framework-0.3.2.dev1/examples/auth/03_custom_backend.py +120 -0
  492. sillo_framework-0.3.2.dev1/examples/auth/04_multiple_backends.py +167 -0
  493. sillo_framework-0.3.2.dev1/examples/auth/05_router_integration.py +87 -0
  494. sillo_framework-0.3.2.dev1/examples/database/01_sqlite_todo.py +178 -0
  495. sillo_framework-0.3.2.dev1/examples/database/02_tortoise_notes.py +175 -0
  496. sillo_framework-0.3.2.dev1/examples/exception_handling/01_basic.py +21 -0
  497. sillo_framework-0.3.2.dev1/examples/file_handling/01_upload_download.py +203 -0
  498. sillo_framework-0.3.2.dev1/examples/getting_started/04_lifespan.py +213 -0
  499. sillo_framework-0.3.2.dev1/examples/hashing/02_multiple_algorithms.py +177 -0
  500. sillo_framework-0.3.2.dev1/examples/middleware/02_class_based.py +29 -0
  501. sillo_framework-0.3.2.dev1/examples/middleware/03_asgi_middleware.py +40 -0
  502. sillo_framework-0.3.2.dev1/examples/request_inputs/01_json_data.py +25 -0
  503. sillo_framework-0.3.2.dev1/examples/responses/03_response_types.py +28 -0
  504. sillo_framework-0.3.2.dev1/examples/responses/04_response_classes.py +37 -0
  505. sillo_framework-0.3.2.dev1/examples/responses/index.html +5 -0
  506. sillo_framework-0.3.2.dev1/examples/routing/03_routes_class.py +36 -0
  507. sillo_framework-0.3.2.dev1/examples/validation/02_pydantic.py +28 -0
  508. sillo_framework-0.3.2.dev1/plans/admin-declarations.md +637 -0
  509. sillo_framework-0.3.2.dev1/pyproject.toml +394 -0
  510. sillo_framework-0.3.2.dev1/sillo/__init__.py +215 -0
  511. sillo_framework-0.3.2.dev1/sillo/__main__.py +451 -0
  512. sillo_framework-0.3.2.dev1/sillo/application.py +3115 -0
  513. sillo_framework-0.3.2.dev1/sillo/auth/__init__.py +69 -0
  514. sillo_framework-0.3.2.dev1/sillo/auth/apikey/__init__.py +40 -0
  515. sillo_framework-0.3.2.dev1/sillo/auth/apikey/backend.py +123 -0
  516. sillo_framework-0.3.2.dev1/sillo/auth/backend.py +144 -0
  517. sillo_framework-0.3.2.dev1/sillo/auth/exceptions.py +193 -0
  518. sillo_framework-0.3.2.dev1/sillo/auth/jwt_auth/backend.py +173 -0
  519. sillo_framework-0.3.2.dev1/sillo/auth/jwt_auth/models.py +277 -0
  520. sillo_framework-0.3.2.dev1/sillo/auth/middleware.py +186 -0
  521. sillo_framework-0.3.2.dev1/sillo/auth/session_auth/backend.py +214 -0
  522. sillo_framework-0.3.2.dev1/sillo/auth/session_auth/guard.py +283 -0
  523. sillo_framework-0.3.2.dev1/sillo/auth/use_auth.py +490 -0
  524. sillo_framework-0.3.2.dev1/sillo/cache/backends.py +842 -0
  525. sillo_framework-0.3.2.dev1/sillo/cache/base.py +652 -0
  526. sillo_framework-0.3.2.dev1/sillo/cache/decorator.py +369 -0
  527. sillo_framework-0.3.2.dev1/sillo/core/dependencies/base.py +580 -0
  528. sillo_framework-0.3.2.dev1/sillo/core/error/handler.py +1677 -0
  529. sillo_framework-0.3.2.dev1/sillo/core/http/__init__.py +3 -0
  530. sillo_framework-0.3.2.dev1/sillo/core/http/context.py +1653 -0
  531. sillo_framework-0.3.2.dev1/sillo/core/http/response.py +1192 -0
  532. sillo_framework-0.3.2.dev1/sillo/core/routing/base.py +279 -0
  533. sillo_framework-0.3.2.dev1/sillo/core/routing/grouping.py +263 -0
  534. sillo_framework-0.3.2.dev1/sillo/core/routing/router.py +3318 -0
  535. sillo_framework-0.3.2.dev1/sillo/core/routing/websocket.py +352 -0
  536. sillo_framework-0.3.2.dev1/sillo/events/__init__.py +33 -0
  537. sillo_framework-0.3.2.dev1/sillo/events/emitter.py +626 -0
  538. sillo_framework-0.3.2.dev1/sillo/exception_handler.py +505 -0
  539. sillo_framework-0.3.2.dev1/sillo/exceptions.py +242 -0
  540. sillo_framework-0.3.2.dev1/sillo/formparser.py +700 -0
  541. sillo_framework-0.3.2.dev1/sillo/handlers/not_found.py +161 -0
  542. sillo_framework-0.3.2.dev1/sillo/hashing/core.py +344 -0
  543. sillo_framework-0.3.2.dev1/sillo/helpers/crypto.py +279 -0
  544. sillo_framework-0.3.2.dev1/sillo/helpers/jwt.py +424 -0
  545. sillo_framework-0.3.2.dev1/sillo/helpers/lazy.py +71 -0
  546. sillo_framework-0.3.2.dev1/sillo/helpers/registry.py +101 -0
  547. sillo_framework-0.3.2.dev1/sillo/http/accepts.py +1344 -0
  548. sillo_framework-0.3.2.dev1/sillo/http/etag.py +262 -0
  549. sillo_framework-0.3.2.dev1/sillo/http/lifecycle/helpers.py +184 -0
  550. sillo_framework-0.3.2.dev1/sillo/http/lifecycle/middleware.py +194 -0
  551. sillo_framework-0.3.2.dev1/sillo/http/sse.py +237 -0
  552. sillo_framework-0.3.2.dev1/sillo/mail/client.py +296 -0
  553. sillo_framework-0.3.2.dev1/sillo/mail/context.py +49 -0
  554. sillo_framework-0.3.2.dev1/sillo/middleware/__init__.py +39 -0
  555. sillo_framework-0.3.2.dev1/sillo/middleware/base.py +109 -0
  556. sillo_framework-0.3.2.dev1/sillo/middleware/bridge.py +478 -0
  557. sillo_framework-0.3.2.dev1/sillo/middleware/define.py +114 -0
  558. sillo_framework-0.3.2.dev1/sillo/middleware/response_headers.py +52 -0
  559. sillo_framework-0.3.2.dev1/sillo/middleware/utils.py +102 -0
  560. sillo_framework-0.3.2.dev1/sillo/normalize/middleware.py +324 -0
  561. sillo_framework-0.3.2.dev1/sillo/objects/common.py +209 -0
  562. sillo_framework-0.3.2.dev1/sillo/objects/routing.py +780 -0
  563. sillo_framework-0.3.2.dev1/sillo/record/exceptions.py +106 -0
  564. sillo_framework-0.3.2.dev1/sillo/record/fields.py +141 -0
  565. sillo_framework-0.3.2.dev1/sillo/record/manager.py +330 -0
  566. sillo_framework-0.3.2.dev1/sillo/record/models.py +462 -0
  567. sillo_framework-0.3.2.dev1/sillo/record/pydantic.py +113 -0
  568. sillo_framework-0.3.2.dev1/sillo/responses.py +699 -0
  569. sillo_framework-0.3.2.dev1/sillo/security/__init__.py +60 -0
  570. sillo_framework-0.3.2.dev1/sillo/security/cors/_middleware.py +320 -0
  571. sillo_framework-0.3.2.dev1/sillo/security/cors/config.py +130 -0
  572. sillo_framework-0.3.2.dev1/sillo/security/csrf/_middleware.py +288 -0
  573. sillo_framework-0.3.2.dev1/sillo/security/ratelimit/__init__.py +94 -0
  574. sillo_framework-0.3.2.dev1/sillo/security/ratelimit/_middleware.py +130 -0
  575. sillo_framework-0.3.2.dev1/sillo/security/ratelimit/backends/__init__.py +57 -0
  576. sillo_framework-0.3.2.dev1/sillo/security/ratelimit/backends/base.py +54 -0
  577. sillo_framework-0.3.2.dev1/sillo/security/ratelimit/config.py +71 -0
  578. sillo_framework-0.3.2.dev1/sillo/security/shield.py +279 -0
  579. sillo_framework-0.3.2.dev1/sillo/session/base.py +76 -0
  580. sillo_framework-0.3.2.dev1/sillo/session/file.py +144 -0
  581. sillo_framework-0.3.2.dev1/sillo/session/middleware.py +207 -0
  582. sillo_framework-0.3.2.dev1/sillo/session/session_objects.py +359 -0
  583. sillo_framework-0.3.2.dev1/sillo/static.py +235 -0
  584. sillo_framework-0.3.2.dev1/sillo/storage/context.py +58 -0
  585. sillo_framework-0.3.2.dev1/sillo/storage/policies.py +335 -0
  586. sillo_framework-0.3.2.dev1/sillo/storage/routes.py +170 -0
  587. sillo_framework-0.3.2.dev1/sillo/storage/storage.py +219 -0
  588. sillo_framework-0.3.2.dev1/sillo/storage/uploads.py +66 -0
  589. sillo_framework-0.3.2.dev1/sillo/testclient/_internal/transport.py +703 -0
  590. sillo_framework-0.3.2.dev1/sillo/testclient/_internal/websockets.py +295 -0
  591. sillo_framework-0.3.2.dev1/sillo/testclient/async_client.py +277 -0
  592. sillo_framework-0.3.2.dev1/sillo/testclient/base.py +527 -0
  593. sillo_framework-0.3.2.dev1/sillo/testclient/exceptions.py +17 -0
  594. sillo_framework-0.3.2.dev1/sillo/types.py +70 -0
  595. sillo_framework-0.3.2.dev1/sillo/users/__init__.py +54 -0
  596. sillo_framework-0.3.2.dev1/sillo/users/console.py +423 -0
  597. sillo_framework-0.3.2.dev1/sillo/users/protocol.py +243 -0
  598. sillo_framework-0.3.2.dev1/sillo/validation/__init__.py +89 -0
  599. sillo_framework-0.3.2.dev1/sillo/validation/compiler.py +534 -0
  600. sillo_framework-0.3.2.dev1/sillo/validation/fields.py +659 -0
  601. sillo_framework-0.3.2.dev1/sillo/websockets/__init__.py +30 -0
  602. sillo_framework-0.3.2.dev1/sillo/websockets/base.py +231 -0
  603. sillo_framework-0.3.2.dev1/sillo/websockets/errors.py +40 -0
  604. sillo_framework-0.3.2.dev1/sillo/websockets/status.py +64 -0
  605. sillo_framework-0.3.2.dev1/sillo/work/backends.py +383 -0
  606. sillo_framework-0.3.2.dev1/sillo/work/background/supervisor.py +149 -0
  607. sillo_framework-0.3.2.dev1/sillo/work/background/tasks.py +239 -0
  608. sillo_framework-0.3.2.dev1/sillo/work/dependency.py +47 -0
  609. sillo_framework-0.3.2.dev1/sillo/work/queue/connection.py +453 -0
  610. sillo_framework-0.3.2.dev1/sillo/work/queue/failed.py +117 -0
  611. sillo_framework-0.3.2.dev1/sillo/work/queue/job.py +294 -0
  612. sillo_framework-0.3.2.dev1/sillo/work/queue/listener.py +157 -0
  613. sillo_framework-0.3.2.dev1/sillo/work/queue/middleware.py +150 -0
  614. sillo_framework-0.3.2.dev1/sillo/work/scheduler/manager.py +250 -0
  615. sillo_framework-0.3.2.dev1/sillo/work/scheduler/middleware.py +100 -0
  616. sillo_framework-0.3.2.dev1/tests/test_applications/test_application.py +680 -0
  617. sillo_framework-0.3.2.dev1/tests/test_applications/test_middleware_chain_cache.py +161 -0
  618. sillo_framework-0.3.2.dev1/tests/test_applications/test_route_kwargs.py +112 -0
  619. sillo_framework-0.3.2.dev1/tests/test_auth/test_apikey_backend.py +147 -0
  620. sillo_framework-0.3.2.dev1/tests/test_auth/test_apikey_models.py +160 -0
  621. sillo_framework-0.3.2.dev1/tests/test_auth/test_auth_middleware.py +280 -0
  622. sillo_framework-0.3.2.dev1/tests/test_auth/test_auth_utilities.py +206 -0
  623. sillo_framework-0.3.2.dev1/tests/test_auth/test_custom_backend.py +195 -0
  624. sillo_framework-0.3.2.dev1/tests/test_auth/test_jwt_backend.py +246 -0
  625. sillo_framework-0.3.2.dev1/tests/test_auth/test_jwt_token_model.py +128 -0
  626. sillo_framework-0.3.2.dev1/tests/test_auth/test_security_schemes.py +607 -0
  627. sillo_framework-0.3.2.dev1/tests/test_auth/test_session_backend.py +197 -0
  628. sillo_framework-0.3.2.dev1/tests/test_auth/test_session_guard.py +231 -0
  629. sillo_framework-0.3.2.dev1/tests/test_auth/test_session_model_extend.py +138 -0
  630. sillo_framework-0.3.2.dev1/tests/test_auth/test_use_auth.py +651 -0
  631. sillo_framework-0.3.2.dev1/tests/test_cache/test_base.py +215 -0
  632. sillo_framework-0.3.2.dev1/tests/test_cache/test_decorator.py +262 -0
  633. sillo_framework-0.3.2.dev1/tests/test_cache/test_memory_cache.py +182 -0
  634. sillo_framework-0.3.2.dev1/tests/test_cache/test_redis_cache_fake.py +320 -0
  635. sillo_framework-0.3.2.dev1/tests/test_console/test_builtin_work.py +449 -0
  636. sillo_framework-0.3.2.dev1/tests/test_console/test_cli.py +852 -0
  637. sillo_framework-0.3.2.dev1/tests/test_cors/test_configuration.py +459 -0
  638. sillo_framework-0.3.2.dev1/tests/test_cors/test_credentials_security.py +117 -0
  639. sillo_framework-0.3.2.dev1/tests/test_cors/test_error_handling.py +498 -0
  640. sillo_framework-0.3.2.dev1/tests/test_cors/test_integration.py +456 -0
  641. sillo_framework-0.3.2.dev1/tests/test_cors/test_preflight_requests.py +413 -0
  642. sillo_framework-0.3.2.dev1/tests/test_cors/test_simple_requests.py +237 -0
  643. sillo_framework-0.3.2.dev1/tests/test_dependencies/test_dependency_injection.py +848 -0
  644. sillo_framework-0.3.2.dev1/tests/test_encoding/test_custom_encoder.py +106 -0
  645. sillo_framework-0.3.2.dev1/tests/test_events/test_comprehensive_events.py +830 -0
  646. sillo_framework-0.3.2.dev1/tests/test_events/test_emitter_paths.py +342 -0
  647. sillo_framework-0.3.2.dev1/tests/test_exception_handlers/test_basic_exception_handlers.py +451 -0
  648. sillo_framework-0.3.2.dev1/tests/test_exception_handlers/test_concurrent_error_pages.py +145 -0
  649. sillo_framework-0.3.2.dev1/tests/test_exception_handlers/test_dispatch_internals.py +418 -0
  650. sillo_framework-0.3.2.dev1/tests/test_exception_handlers/test_exception_handler_integration.py +498 -0
  651. sillo_framework-0.3.2.dev1/tests/test_exception_handlers/test_not_found_handler.py +127 -0
  652. sillo_framework-0.3.2.dev1/tests/test_exception_handlers/test_server_error_debug.py +232 -0
  653. sillo_framework-0.3.2.dev1/tests/test_forms/test_form_parser.py +610 -0
  654. sillo_framework-0.3.2.dev1/tests/test_hashing/test_core.py +175 -0
  655. sillo_framework-0.3.2.dev1/tests/test_hashing/test_utils.py +87 -0
  656. sillo_framework-0.3.2.dev1/tests/test_helpers/test_accepts.py +230 -0
  657. sillo_framework-0.3.2.dev1/tests/test_helpers/test_hashing_crypto.py +285 -0
  658. sillo_framework-0.3.2.dev1/tests/test_helpers/test_jwt.py +270 -0
  659. sillo_framework-0.3.2.dev1/tests/test_helpers/test_registry.py +81 -0
  660. sillo_framework-0.3.2.dev1/tests/test_http/test_accepts_middleware.py +453 -0
  661. sillo_framework-0.3.2.dev1/tests/test_http/test_accepts_negotiation.py +261 -0
  662. sillo_framework-0.3.2.dev1/tests/test_http/test_etag_full.py +255 -0
  663. sillo_framework-0.3.2.dev1/tests/test_http/test_http_etag.py +72 -0
  664. sillo_framework-0.3.2.dev1/tests/test_http/test_sse.py +299 -0
  665. sillo_framework-0.3.2.dev1/tests/test_lifecycle/test_request_id.py +185 -0
  666. sillo_framework-0.3.2.dev1/tests/test_mail/test_context.py +80 -0
  667. sillo_framework-0.3.2.dev1/tests/test_mail/test_mail_client.py +292 -0
  668. sillo_framework-0.3.2.dev1/tests/test_mail/test_mail_transport.py +556 -0
  669. sillo_framework-0.3.2.dev1/tests/test_middleware/test_app_level_middleware.py +370 -0
  670. sillo_framework-0.3.2.dev1/tests/test_middleware/test_asgi_middleware.py +694 -0
  671. sillo_framework-0.3.2.dev1/tests/test_middleware/test_bridge.py +245 -0
  672. sillo_framework-0.3.2.dev1/tests/test_middleware/test_gzip.py +166 -0
  673. sillo_framework-0.3.2.dev1/tests/test_middleware/test_raw_asgi_layers.py +612 -0
  674. sillo_framework-0.3.2.dev1/tests/test_middleware/test_route_level_middleware.py +475 -0
  675. sillo_framework-0.3.2.dev1/tests/test_middleware/test_router_level_middleware.py +431 -0
  676. sillo_framework-0.3.2.dev1/tests/test_middleware/test_security_middleware.py +531 -0
  677. sillo_framework-0.3.2.dev1/tests/test_middleware/test_use_for_route.py +226 -0
  678. sillo_framework-0.3.2.dev1/tests/test_normalize/test_middleware.py +161 -0
  679. sillo_framework-0.3.2.dev1/tests/test_openapi/test_docs_ui.py +546 -0
  680. sillo_framework-0.3.2.dev1/tests/test_openapi/test_openapi_spec.py +691 -0
  681. sillo_framework-0.3.2.dev1/tests/test_openapi/test_openapi_utils.py +159 -0
  682. sillo_framework-0.3.2.dev1/tests/test_optional_imports.py +226 -0
  683. sillo_framework-0.3.2.dev1/tests/test_pagination/test_integration.py +352 -0
  684. sillo_framework-0.3.2.dev1/tests/test_pagination/test_response_paginate.py +366 -0
  685. sillo_framework-0.3.2.dev1/tests/test_parameters/test_cookie.py +105 -0
  686. sillo_framework-0.3.2.dev1/tests/test_parameters/test_header.py +129 -0
  687. sillo_framework-0.3.2.dev1/tests/test_parameters/test_nested.py +200 -0
  688. sillo_framework-0.3.2.dev1/tests/test_parameters/test_openapi.py +177 -0
  689. sillo_framework-0.3.2.dev1/tests/test_parameters/test_query.py +211 -0
  690. sillo_framework-0.3.2.dev1/tests/test_record/test_factories.py +97 -0
  691. sillo_framework-0.3.2.dev1/tests/test_record/test_pagination_and_exceptions.py +194 -0
  692. sillo_framework-0.3.2.dev1/tests/test_requests/test_basic_properties.py +482 -0
  693. sillo_framework-0.3.2.dev1/tests/test_requests/test_body_data.py +400 -0
  694. sillo_framework-0.3.2.dev1/tests/test_requests/test_cookies_auth.py +163 -0
  695. sillo_framework-0.3.2.dev1/tests/test_requests/test_path_params.py +159 -0
  696. sillo_framework-0.3.2.dev1/tests/test_requests/test_query_params.py +344 -0
  697. sillo_framework-0.3.2.dev1/tests/test_requests/test_request_flags.py +296 -0
  698. sillo_framework-0.3.2.dev1/tests/test_requests/test_request_surface.py +275 -0
  699. sillo_framework-0.3.2.dev1/tests/test_responses/test_abort_not_found.py +113 -0
  700. sillo_framework-0.3.2.dev1/tests/test_responses/test_advanced_responses.py +295 -0
  701. sillo_framework-0.3.2.dev1/tests/test_responses/test_basic_responses.py +323 -0
  702. sillo_framework-0.3.2.dev1/tests/test_responses/test_file_responses.py +549 -0
  703. sillo_framework-0.3.2.dev1/tests/test_responses/test_header_override.py +116 -0
  704. sillo_framework-0.3.2.dev1/tests/test_responses/test_headers_cookies.py +460 -0
  705. sillo_framework-0.3.2.dev1/tests/test_responses/test_redirect_streaming.py +411 -0
  706. sillo_framework-0.3.2.dev1/tests/test_responses/test_response_properties.py +281 -0
  707. sillo_framework-0.3.2.dev1/tests/test_responses/test_responses_module.py +328 -0
  708. sillo_framework-0.3.2.dev1/tests/test_routing/test_base_route.py +34 -0
  709. sillo_framework-0.3.2.dev1/tests/test_routing/test_basic_routing.py +257 -0
  710. sillo_framework-0.3.2.dev1/tests/test_routing/test_grouping.py +325 -0
  711. sillo_framework-0.3.2.dev1/tests/test_routing/test_http_methods.py +667 -0
  712. sillo_framework-0.3.2.dev1/tests/test_routing/test_nested_routes.py +264 -0
  713. sillo_framework-0.3.2.dev1/tests/test_routing/test_path_parameters.py +312 -0
  714. sillo_framework-0.3.2.dev1/tests/test_routing/test_route_builder.py +45 -0
  715. sillo_framework-0.3.2.dev1/tests/test_routing/test_router_wrap_asgi.py +71 -0
  716. sillo_framework-0.3.2.dev1/tests/test_security/test_backends.py +69 -0
  717. sillo_framework-0.3.2.dev1/tests/test_security/test_csrf.py +141 -0
  718. sillo_framework-0.3.2.dev1/tests/test_security/test_csrf_predicates.py +336 -0
  719. sillo_framework-0.3.2.dev1/tests/test_security/test_csrf_regressions.py +227 -0
  720. sillo_framework-0.3.2.dev1/tests/test_security/test_middleware.py +224 -0
  721. sillo_framework-0.3.2.dev1/tests/test_sessions/test_base.py +414 -0
  722. sillo_framework-0.3.2.dev1/tests/test_sessions/test_config_and_objects_internals.py +76 -0
  723. sillo_framework-0.3.2.dev1/tests/test_sessions/test_expiry.py +225 -0
  724. sillo_framework-0.3.2.dev1/tests/test_sessions/test_file_sessions.py +237 -0
  725. sillo_framework-0.3.2.dev1/tests/test_sessions/test_integration.py +119 -0
  726. sillo_framework-0.3.2.dev1/tests/test_sessions/test_middleware.py +324 -0
  727. sillo_framework-0.3.2.dev1/tests/test_sessions/test_security.py +335 -0
  728. sillo_framework-0.3.2.dev1/tests/test_sessions/test_settings.py +194 -0
  729. sillo_framework-0.3.2.dev1/tests/test_small_module_gaps.py +172 -0
  730. sillo_framework-0.3.2.dev1/tests/test_static/test_static_files.py +353 -0
  731. sillo_framework-0.3.2.dev1/tests/test_static/test_static_files_internals.py +70 -0
  732. sillo_framework-0.3.2.dev1/tests/test_storage/contract.py +245 -0
  733. sillo_framework-0.3.2.dev1/tests/test_storage/test_bucket.py +327 -0
  734. sillo_framework-0.3.2.dev1/tests/test_storage/test_config.py +13 -0
  735. sillo_framework-0.3.2.dev1/tests/test_storage/test_context.py +97 -0
  736. sillo_framework-0.3.2.dev1/tests/test_storage/test_drivers.py +50 -0
  737. sillo_framework-0.3.2.dev1/tests/test_storage/test_local_driver_internals.py +156 -0
  738. sillo_framework-0.3.2.dev1/tests/test_storage/test_paths_helpers.py +34 -0
  739. sillo_framework-0.3.2.dev1/tests/test_storage/test_policies.py +72 -0
  740. sillo_framework-0.3.2.dev1/tests/test_storage/test_safety.py +268 -0
  741. sillo_framework-0.3.2.dev1/tests/test_testclient/test_client_lifecycle.py +190 -0
  742. sillo_framework-0.3.2.dev1/tests/test_testclient/test_lifespan_internals.py +98 -0
  743. sillo_framework-0.3.2.dev1/tests/test_testclient/test_transport_internals.py +196 -0
  744. sillo_framework-0.3.2.dev1/tests/test_testclient/test_websocket_session_internals.py +78 -0
  745. sillo_framework-0.3.2.dev1/tests/test_users/test_protocol.py +125 -0
  746. sillo_framework-0.3.2.dev1/tests/test_validation/test_body_form.py +217 -0
  747. sillo_framework-0.3.2.dev1/tests/test_validation/test_legacy_compat.py +101 -0
  748. sillo_framework-0.3.2.dev1/tests/test_validation/test_markers_unit.py +234 -0
  749. sillo_framework-0.3.2.dev1/tests/test_validation/test_openapi_generation.py +129 -0
  750. sillo_framework-0.3.2.dev1/tests/test_validation/test_params.py +178 -0
  751. sillo_framework-0.3.2.dev1/tests/test_validation/test_request_model.py +110 -0
  752. sillo_framework-0.3.2.dev1/tests/test_validation/test_response_model.py +94 -0
  753. sillo_framework-0.3.2.dev1/tests/test_websockets/test_websocket_dependencies.py +178 -0
  754. sillo_framework-0.3.2.dev1/tests/test_websockets/test_websocket_errors.py +216 -0
  755. sillo_framework-0.3.2.dev1/tests/test_websockets/test_websocket_protocol.py +498 -0
  756. sillo_framework-0.3.2.dev1/tests/test_websockets/test_websocket_routing.py +298 -0
  757. sillo_framework-0.3.2.dev1/tests/test_websockets/test_websocket_state_machine.py +218 -0
  758. sillo_framework-0.3.2.dev1/tests/test_work/test_backends_full.py +333 -0
  759. sillo_framework-0.3.2.dev1/tests/test_work/test_background.py +317 -0
  760. sillo_framework-0.3.2.dev1/tests/test_work/test_events.py +261 -0
  761. sillo_framework-0.3.2.dev1/tests/test_work/test_job_queue.py +157 -0
  762. sillo_framework-0.3.2.dev1/tests/test_work/test_job_round_trip.py +169 -0
  763. sillo_framework-0.3.2.dev1/tests/test_work/test_middleware.py +109 -0
  764. sillo_framework-0.3.2.dev1/tests/test_work/test_queue.py +370 -0
  765. sillo_framework-0.3.2.dev1/tests/test_work/test_queue_middleware.py +91 -0
  766. sillo_framework-0.3.2.dev1/tests/test_work/test_queue_worker.py +271 -0
  767. sillo_framework-0.3.2.dev1/tests/test_work/test_redis_connection_internals.py +56 -0
  768. sillo_framework-0.3.2.dev1/tests/test_work/test_routes.py +164 -0
  769. sillo_framework-0.3.2.dev1/tests/test_work/test_scheduler.py +451 -0
  770. sillo_framework-0.3.2.dev1/tests/test_work/test_task.py +287 -0
  771. sillo_framework-0.3.2.dev1/tests/test_work/test_types.py +102 -0
  772. sillo_framework-0.3.2.dev1/tests/test_work/test_work_commands.py +160 -0
  773. sillo_framework-0.3.2.dev1/tests/test_work/test_work_di.py +73 -0
  774. sillo_framework-0.3.2.dev1/uv.lock +1445 -0
  775. sillo_framework-0.3.0/.github/workflows/coverage.yml +0 -69
  776. sillo_framework-0.3.0/.github/workflows/format-code.yml +0 -40
  777. sillo_framework-0.3.0/.github/workflows/lint.yaml +0 -45
  778. sillo_framework-0.3.0/.github/workflows/merge-to-main.yml +0 -55
  779. sillo_framework-0.3.0/.github/workflows/run-tests.yaml +0 -85
  780. sillo_framework-0.3.0/.github/workflows/type-check.yaml +0 -41
  781. sillo_framework-0.3.0/CHANGELOG.md +0 -694
  782. sillo_framework-0.3.0/PKG-INFO +0 -341
  783. sillo_framework-0.3.0/README.md +0 -238
  784. sillo_framework-0.3.0/coverage.json +0 -1
  785. sillo_framework-0.3.0/docs/docs/astro.config.mjs +0 -608
  786. sillo_framework-0.3.0/docs/docs/community-unpublished/README.md +0 -15
  787. sillo_framework-0.3.0/docs/docs/community-unpublished/contribution-guide.md +0 -367
  788. sillo_framework-0.3.0/docs/docs/community-unpublished/index.md +0 -87
  789. sillo_framework-0.3.0/docs/docs/community-unpublished/installation.md +0 -131
  790. sillo_framework-0.3.0/docs/docs/community-unpublished/integrations/jrpc.md +0 -2257
  791. sillo_framework-0.3.0/docs/docs/community-unpublished/integrations/mail.md +0 -607
  792. sillo_framework-0.3.0/docs/docs/community-unpublished/integrations/redis.md +0 -546
  793. sillo_framework-0.3.0/docs/docs/community-unpublished/integrations/scheduler.md +0 -368
  794. sillo_framework-0.3.0/docs/docs/community-unpublished/integrations/tasks.md +0 -921
  795. sillo_framework-0.3.0/docs/docs/community-unpublished/integrations/tortoise.md +0 -296
  796. sillo_framework-0.3.0/docs/docs/community-unpublished/middleware/etag.md +0 -161
  797. sillo_framework-0.3.0/docs/docs/community-unpublished/middleware/proxy.md +0 -450
  798. sillo_framework-0.3.0/docs/docs/community-unpublished/middleware/timeout.md +0 -419
  799. sillo_framework-0.3.0/docs/docs/community-unpublished/middleware/trusted-host.md +0 -291
  800. sillo_framework-0.3.0/docs/docs/src/components/SectionNav.astro +0 -314
  801. sillo_framework-0.3.0/docs/docs/src/components/SiteFooter.astro +0 -384
  802. sillo_framework-0.3.0/docs/docs/src/content/docs/advanced/configuration.md +0 -839
  803. sillo_framework-0.3.0/docs/docs/src/content/docs/advanced/dependency-injection.md +0 -883
  804. sillo_framework-0.3.0/docs/docs/src/content/docs/advanced/index.md +0 -150
  805. sillo_framework-0.3.0/docs/docs/src/content/docs/advanced/mail.md +0 -816
  806. sillo_framework-0.3.0/docs/docs/src/content/docs/advanced/storage.md +0 -414
  807. sillo_framework-0.3.0/docs/docs/src/content/docs/cli/arguments.md +0 -221
  808. sillo_framework-0.3.0/docs/docs/src/content/docs/cli/custom-commands.md +0 -208
  809. sillo_framework-0.3.0/docs/docs/src/content/docs/cli/database.md +0 -231
  810. sillo_framework-0.3.0/docs/docs/src/content/docs/cli/index.md +0 -120
  811. sillo_framework-0.3.0/docs/docs/src/content/docs/cli/output.md +0 -201
  812. sillo_framework-0.3.0/docs/docs/src/content/docs/cli/queues.md +0 -184
  813. sillo_framework-0.3.0/docs/docs/src/content/docs/cli/scheduler.md +0 -124
  814. sillo_framework-0.3.0/docs/docs/src/content/docs/cli/standalone-consoles.md +0 -280
  815. sillo_framework-0.3.0/docs/docs/src/content/docs/cli/styling.md +0 -150
  816. sillo_framework-0.3.0/docs/docs/src/content/docs/cli/users.md +0 -189
  817. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/api-keys.md +0 -160
  818. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/authentication.md +0 -418
  819. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/concurrency.md +0 -399
  820. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/configuration.md +0 -705
  821. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/cookies.mdx +0 -381
  822. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/cors.md +0 -507
  823. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/csrf.md +0 -476
  824. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/dependency-injection.md +0 -452
  825. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/environment.md +0 -202
  826. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/events.mdx +0 -551
  827. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/graphql.md +0 -205
  828. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/handlers.md +0 -472
  829. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/hashing.md +0 -1055
  830. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/headers.mdx +0 -440
  831. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/helpers/async.mdx +0 -453
  832. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/helpers/crypto.mdx +0 -378
  833. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/helpers/deprecation.mdx +0 -377
  834. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/helpers/files.mdx +0 -377
  835. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/helpers/hashing.mdx +0 -379
  836. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/helpers/html.mdx +0 -399
  837. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/helpers/index.mdx +0 -276
  838. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/helpers/jwt.mdx +0 -388
  839. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/helpers/network.mdx +0 -434
  840. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/helpers/retry.mdx +0 -378
  841. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/helpers/strings.mdx +0 -417
  842. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/helpers/text.mdx +0 -370
  843. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/http/client.md +0 -576
  844. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/inertia/assets.md +0 -135
  845. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/inertia/forms.md +0 -158
  846. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/inertia/index.md +0 -108
  847. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/inertia/pages.md +0 -204
  848. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/inertia/start.mdx +0 -157
  849. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/inertia/structure.md +0 -145
  850. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/installation.mdx +0 -256
  851. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/introduction.md +0 -319
  852. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/jwt-auth.md +0 -335
  853. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/middleware.md +0 -435
  854. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/oauth/index.md +0 -158
  855. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/oauth/persisting-logins.md +0 -212
  856. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/oauth/providers.md +0 -198
  857. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/oauth/security.md +0 -163
  858. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/openapi/customizing-openapi-configuration.md +0 -753
  859. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/openapi/documentation-ui.md +0 -347
  860. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/openapi/index.md +0 -723
  861. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/permissions.md +0 -515
  862. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/protecting-routes.md +0 -418
  863. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/record/casting-collections.mdx +0 -413
  864. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/record/exceptions-pydantic.mdx +0 -454
  865. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/record/index.mdx +0 -421
  866. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/record/migrations.mdx +0 -362
  867. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/record/models.mdx +0 -566
  868. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/record/pagination.mdx +0 -469
  869. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/record/scopes-events.mdx +0 -452
  870. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/record/transactions-factories.mdx +0 -453
  871. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/request-info.md +0 -460
  872. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/request-inputs.md +0 -157
  873. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/request-lifecycle.md +0 -501
  874. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/request-parameters.mdx +0 -413
  875. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/routers-and-subapps.md +0 -277
  876. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/security.md +0 -356
  877. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/serialization.md +0 -371
  878. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/services/mail.mdx +0 -460
  879. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/session-auth.md +0 -418
  880. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/start/admin.md +0 -316
  881. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/start/authentication.md +0 -346
  882. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/start/background-work.md +0 -391
  883. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/start/console.md +0 -389
  884. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/start/database.md +0 -374
  885. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/start/deployment.md +0 -338
  886. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/start/index.mdx +0 -434
  887. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/start/structure.md +0 -468
  888. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/start/testing.md +0 -336
  889. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/startups-and-shutdowns.mdx +0 -428
  890. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/static-files.mdx +0 -349
  891. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/storage.mdx +0 -654
  892. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/streaming-response.mdx +0 -491
  893. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/templating/advanced.mdx +0 -484
  894. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/templating/index.mdx +0 -676
  895. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/url-normalization.md +0 -183
  896. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/users.md +0 -484
  897. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/validation/forms-and-files.md +0 -465
  898. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/validation/index.md +0 -367
  899. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/validation/openapi.md +0 -482
  900. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/validation/parameters.md +0 -489
  901. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/validation/request-bodies.md +0 -580
  902. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/websockets/channels.mdx +0 -435
  903. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/websockets/consumer.mdx +0 -457
  904. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/websockets/events.mdx +0 -464
  905. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/websockets/groups.mdx +0 -434
  906. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/websockets/index.mdx +0 -407
  907. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/work/background.mdx +0 -432
  908. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/work/events.mdx +0 -451
  909. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/work/index.mdx +0 -441
  910. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/work/jobs.mdx +0 -727
  911. sillo_framework-0.3.0/docs/docs/src/content/docs/guides/work/queue.mdx +0 -1270
  912. sillo_framework-0.3.0/docs/docs/src/content/docs/orm/admin-customising.md +0 -220
  913. sillo_framework-0.3.0/docs/docs/src/content/docs/orm/admin-permissions.md +0 -253
  914. sillo_framework-0.3.0/docs/docs/src/content/docs/orm/admin-registering.md +0 -198
  915. sillo_framework-0.3.0/docs/docs/src/content/docs/orm/admin.md +0 -182
  916. sillo_framework-0.3.0/docs/docs/src/content/docs/orm/aggregation.md +0 -247
  917. sillo_framework-0.3.0/docs/docs/src/content/docs/orm/bulk.md +0 -167
  918. sillo_framework-0.3.0/docs/docs/src/content/docs/orm/casting.md +0 -179
  919. sillo_framework-0.3.0/docs/docs/src/content/docs/orm/collections.md +0 -152
  920. sillo_framework-0.3.0/docs/docs/src/content/docs/orm/configuration.md +0 -170
  921. sillo_framework-0.3.0/docs/docs/src/content/docs/orm/connections.md +0 -212
  922. sillo_framework-0.3.0/docs/docs/src/content/docs/orm/eager-loading.md +0 -213
  923. sillo_framework-0.3.0/docs/docs/src/content/docs/orm/events.md +0 -158
  924. sillo_framework-0.3.0/docs/docs/src/content/docs/orm/exceptions.md +0 -148
  925. sillo_framework-0.3.0/docs/docs/src/content/docs/orm/factories.md +0 -215
  926. sillo_framework-0.3.0/docs/docs/src/content/docs/orm/field-reference.md +0 -305
  927. sillo_framework-0.3.0/docs/docs/src/content/docs/orm/fields.md +0 -190
  928. sillo_framework-0.3.0/docs/docs/src/content/docs/orm/filtering.md +0 -248
  929. sillo_framework-0.3.0/docs/docs/src/content/docs/orm/index.md +0 -135
  930. sillo_framework-0.3.0/docs/docs/src/content/docs/orm/lookups.md +0 -252
  931. sillo_framework-0.3.0/docs/docs/src/content/docs/orm/mass-assignment.md +0 -144
  932. sillo_framework-0.3.0/docs/docs/src/content/docs/orm/meta.md +0 -295
  933. sillo_framework-0.3.0/docs/docs/src/content/docs/orm/migrations-applying.md +0 -177
  934. sillo_framework-0.3.0/docs/docs/src/content/docs/orm/migrations-programmatic.md +0 -201
  935. sillo_framework-0.3.0/docs/docs/src/content/docs/orm/migrations.md +0 -169
  936. sillo_framework-0.3.0/docs/docs/src/content/docs/orm/mixins.md +0 -196
  937. sillo_framework-0.3.0/docs/docs/src/content/docs/orm/models.md +0 -175
  938. sillo_framework-0.3.0/docs/docs/src/content/docs/orm/pagination.md +0 -153
  939. sillo_framework-0.3.0/docs/docs/src/content/docs/orm/pydantic.md +0 -156
  940. sillo_framework-0.3.0/docs/docs/src/content/docs/orm/queries.md +0 -181
  941. sillo_framework-0.3.0/docs/docs/src/content/docs/orm/queryset.md +0 -315
  942. sillo_framework-0.3.0/docs/docs/src/content/docs/orm/raw-sql.md +0 -204
  943. sillo_framework-0.3.0/docs/docs/src/content/docs/orm/relationships.md +0 -294
  944. sillo_framework-0.3.0/docs/docs/src/content/docs/orm/scopes.md +0 -174
  945. sillo_framework-0.3.0/docs/docs/src/content/docs/orm/seeding.md +0 -190
  946. sillo_framework-0.3.0/docs/docs/src/content/docs/orm/setup.md +0 -166
  947. sillo_framework-0.3.0/docs/docs/src/content/docs/orm/transactions.md +0 -202
  948. sillo_framework-0.3.0/docs/docs/src/content/docs/orm/values.md +0 -204
  949. sillo_framework-0.3.0/docs/docs/src/content/docs/pydantic/config.md +0 -236
  950. sillo_framework-0.3.0/docs/docs/src/content/docs/pydantic/errors.md +0 -245
  951. sillo_framework-0.3.0/docs/docs/src/content/docs/pydantic/fields.md +0 -257
  952. sillo_framework-0.3.0/docs/docs/src/content/docs/pydantic/index.md +0 -105
  953. sillo_framework-0.3.0/docs/docs/src/content/docs/pydantic/models.md +0 -249
  954. sillo_framework-0.3.0/docs/docs/src/content/docs/pydantic/nested.md +0 -220
  955. sillo_framework-0.3.0/docs/docs/src/content/docs/pydantic/openapi.md +0 -252
  956. sillo_framework-0.3.0/docs/docs/src/content/docs/pydantic/orm-bridge.md +0 -250
  957. sillo_framework-0.3.0/docs/docs/src/content/docs/pydantic/parameters.md +0 -285
  958. sillo_framework-0.3.0/docs/docs/src/content/docs/pydantic/patterns.md +0 -295
  959. sillo_framework-0.3.0/docs/docs/src/content/docs/pydantic/request-models.md +0 -254
  960. sillo_framework-0.3.0/docs/docs/src/content/docs/pydantic/response-models.md +0 -242
  961. sillo_framework-0.3.0/docs/docs/src/content/docs/pydantic/serialization.md +0 -245
  962. sillo_framework-0.3.0/docs/docs/src/content/docs/pydantic/types.md +0 -308
  963. sillo_framework-0.3.0/docs/docs/src/content/docs/pydantic/validators.md +0 -296
  964. sillo_framework-0.3.0/docs/docs/src/content/docs/start/after-creating.mdx +0 -145
  965. sillo_framework-0.3.0/docs/docs/src/content/docs/start/create-app.md +0 -171
  966. sillo_framework-0.3.0/docs/docs/src/content/docs/start/custom-starters.md +0 -157
  967. sillo_framework-0.3.0/docs/docs/src/content/docs/start/errors.md +0 -147
  968. sillo_framework-0.3.0/docs/docs/src/content/docs/start/index.md +0 -91
  969. sillo_framework-0.3.0/docs/docs/src/content/docs/start/install.mdx +0 -159
  970. sillo_framework-0.3.0/docs/docs/src/content/docs/start/internals.md +0 -177
  971. sillo_framework-0.3.0/docs/docs/src/content/docs/start/package-managers.md +0 -156
  972. sillo_framework-0.3.0/docs/docs/src/content/docs/start/personalisation.md +0 -124
  973. sillo_framework-0.3.0/docs/docs/src/content/docs/start/secrets.md +0 -122
  974. sillo_framework-0.3.0/docs/docs/src/content/docs/start/starters.md +0 -148
  975. sillo_framework-0.3.0/docs/docs/src/content.config.ts +0 -11
  976. sillo_framework-0.3.0/docs/vercel.json +0 -22
  977. sillo_framework-0.3.0/examples/README.md +0 -66
  978. sillo_framework-0.3.0/examples/auth/01_session_auth.py +0 -97
  979. sillo_framework-0.3.0/examples/auth/03_custom_backend.py +0 -119
  980. sillo_framework-0.3.0/examples/auth/04_multiple_backends.py +0 -167
  981. sillo_framework-0.3.0/examples/auth/05_router_integration.py +0 -86
  982. sillo_framework-0.3.0/examples/database/01_sqlite_todo.py +0 -177
  983. sillo_framework-0.3.0/examples/database/02_tortoise_notes.py +0 -174
  984. sillo_framework-0.3.0/examples/exception_handling/01_basic.py +0 -21
  985. sillo_framework-0.3.0/examples/file_handling/01_upload_download.py +0 -202
  986. sillo_framework-0.3.0/examples/getting_started/04_lifespan.py +0 -214
  987. sillo_framework-0.3.0/examples/hashing/02_multiple_algorithms.py +0 -177
  988. sillo_framework-0.3.0/examples/middleware/02_class_based.py +0 -29
  989. sillo_framework-0.3.0/examples/middleware/03_asgi_middleware.py +0 -39
  990. sillo_framework-0.3.0/examples/request_inputs/01_json_data.py +0 -25
  991. sillo_framework-0.3.0/examples/responses/03_response_types.py +0 -28
  992. sillo_framework-0.3.0/examples/responses/04_response_classes.py +0 -37
  993. sillo_framework-0.3.0/examples/routing/03_routes_class.py +0 -36
  994. sillo_framework-0.3.0/examples/templating/01_basic.py +0 -52
  995. sillo_framework-0.3.0/examples/templating/02_inheritance.py +0 -120
  996. sillo_framework-0.3.0/examples/templating/03_custom_filters.py +0 -110
  997. sillo_framework-0.3.0/examples/templating/README.md +0 -87
  998. sillo_framework-0.3.0/examples/templating/requirements.txt +0 -4
  999. sillo_framework-0.3.0/examples/templating/templates/index.html +0 -25
  1000. sillo_framework-0.3.0/examples/templating/templates/user_profile.html +0 -20
  1001. sillo_framework-0.3.0/examples/validation/02_pydantic.py +0 -28
  1002. sillo_framework-0.3.0/pyproject.toml +0 -391
  1003. sillo_framework-0.3.0/sillo/__init__.py +0 -169
  1004. sillo_framework-0.3.0/sillo/__main__.py +0 -451
  1005. sillo_framework-0.3.0/sillo/_internals/_middleware.py +0 -554
  1006. sillo_framework-0.3.0/sillo/_internals/lazy.py +0 -71
  1007. sillo_framework-0.3.0/sillo/_internals/registry.py +0 -101
  1008. sillo_framework-0.3.0/sillo/admin/__init__.py +0 -222
  1009. sillo_framework-0.3.0/sillo/admin/auth.py +0 -185
  1010. sillo_framework-0.3.0/sillo/admin/default_user.py +0 -97
  1011. sillo_framework-0.3.0/sillo/admin/models.py +0 -41
  1012. sillo_framework-0.3.0/sillo/admin/registry.py +0 -143
  1013. sillo_framework-0.3.0/sillo/admin/router.py +0 -205
  1014. sillo_framework-0.3.0/sillo/admin/routes.py +0 -1365
  1015. sillo_framework-0.3.0/sillo/admin/static/logo.png +0 -0
  1016. sillo_framework-0.3.0/sillo/admin/templates/base.html +0 -497
  1017. sillo_framework-0.3.0/sillo/admin/templates/create.html +0 -76
  1018. sillo_framework-0.3.0/sillo/admin/templates/dashboard.html +0 -45
  1019. sillo_framework-0.3.0/sillo/admin/templates/delete.html +0 -15
  1020. sillo_framework-0.3.0/sillo/admin/templates/detail.html +0 -61
  1021. sillo_framework-0.3.0/sillo/admin/templates/list.html +0 -117
  1022. sillo_framework-0.3.0/sillo/admin/templates/login.html +0 -54
  1023. sillo_framework-0.3.0/sillo/admin/templates/query.html +0 -56
  1024. sillo_framework-0.3.0/sillo/admin/templates/update.html +0 -85
  1025. sillo_framework-0.3.0/sillo/admin/templating.py +0 -52
  1026. sillo_framework-0.3.0/sillo/application.py +0 -3019
  1027. sillo_framework-0.3.0/sillo/auth/__init__.py +0 -69
  1028. sillo_framework-0.3.0/sillo/auth/apikey/__init__.py +0 -72
  1029. sillo_framework-0.3.0/sillo/auth/apikey/backend.py +0 -123
  1030. sillo_framework-0.3.0/sillo/auth/backend.py +0 -144
  1031. sillo_framework-0.3.0/sillo/auth/exceptions.py +0 -197
  1032. sillo_framework-0.3.0/sillo/auth/jwt_auth/backend.py +0 -173
  1033. sillo_framework-0.3.0/sillo/auth/jwt_auth/models.py +0 -277
  1034. sillo_framework-0.3.0/sillo/auth/middleware.py +0 -168
  1035. sillo_framework-0.3.0/sillo/auth/session_auth/backend.py +0 -214
  1036. sillo_framework-0.3.0/sillo/auth/session_auth/guard.py +0 -287
  1037. sillo_framework-0.3.0/sillo/auth/use_auth.py +0 -492
  1038. sillo_framework-0.3.0/sillo/cache/backends.py +0 -842
  1039. sillo_framework-0.3.0/sillo/cache/base.py +0 -647
  1040. sillo_framework-0.3.0/sillo/cache/decorator.py +0 -355
  1041. sillo_framework-0.3.0/sillo/core/dependencies/base.py +0 -589
  1042. sillo_framework-0.3.0/sillo/core/error/handler.py +0 -1687
  1043. sillo_framework-0.3.0/sillo/core/http/__init__.py +0 -4
  1044. sillo_framework-0.3.0/sillo/core/http/request.py +0 -1653
  1045. sillo_framework-0.3.0/sillo/core/http/response.py +0 -2143
  1046. sillo_framework-0.3.0/sillo/core/routing/base.py +0 -265
  1047. sillo_framework-0.3.0/sillo/core/routing/grouping.py +0 -263
  1048. sillo_framework-0.3.0/sillo/core/routing/router.py +0 -3363
  1049. sillo_framework-0.3.0/sillo/core/routing/websocket.py +0 -308
  1050. sillo_framework-0.3.0/sillo/events/__init__.py +0 -35
  1051. sillo_framework-0.3.0/sillo/events/emitter.py +0 -691
  1052. sillo_framework-0.3.0/sillo/exception_handler.py +0 -512
  1053. sillo_framework-0.3.0/sillo/exceptions.py +0 -242
  1054. sillo_framework-0.3.0/sillo/formparser.py +0 -682
  1055. sillo_framework-0.3.0/sillo/graphql/__init__.py +0 -3
  1056. sillo_framework-0.3.0/sillo/graphql/handler.py +0 -333
  1057. sillo_framework-0.3.0/sillo/handlers/not_found.py +0 -162
  1058. sillo_framework-0.3.0/sillo/hashing/core.py +0 -339
  1059. sillo_framework-0.3.0/sillo/helpers/crypto.py +0 -277
  1060. sillo_framework-0.3.0/sillo/helpers/jwt.py +0 -424
  1061. sillo_framework-0.3.0/sillo/http/accepts.py +0 -1313
  1062. sillo_framework-0.3.0/sillo/http/etag.py +0 -211
  1063. sillo_framework-0.3.0/sillo/http/lifecycle/helpers.py +0 -183
  1064. sillo_framework-0.3.0/sillo/http/lifecycle/middleware.py +0 -205
  1065. sillo_framework-0.3.0/sillo/http/sse.py +0 -237
  1066. sillo_framework-0.3.0/sillo/mail/client.py +0 -296
  1067. sillo_framework-0.3.0/sillo/mail/context.py +0 -49
  1068. sillo_framework-0.3.0/sillo/middleware/__init__.py +0 -16
  1069. sillo_framework-0.3.0/sillo/middleware/base.py +0 -168
  1070. sillo_framework-0.3.0/sillo/middleware/utils.py +0 -113
  1071. sillo_framework-0.3.0/sillo/normalize/middleware.py +0 -304
  1072. sillo_framework-0.3.0/sillo/objects/common.py +0 -209
  1073. sillo_framework-0.3.0/sillo/objects/routing.py +0 -780
  1074. sillo_framework-0.3.0/sillo/record/exceptions.py +0 -110
  1075. sillo_framework-0.3.0/sillo/record/fields.py +0 -141
  1076. sillo_framework-0.3.0/sillo/record/manager.py +0 -330
  1077. sillo_framework-0.3.0/sillo/record/models.py +0 -462
  1078. sillo_framework-0.3.0/sillo/record/pydantic.py +0 -113
  1079. sillo_framework-0.3.0/sillo/security/__init__.py +0 -60
  1080. sillo_framework-0.3.0/sillo/security/cors/_middleware.py +0 -296
  1081. sillo_framework-0.3.0/sillo/security/cors/config.py +0 -130
  1082. sillo_framework-0.3.0/sillo/security/csrf/_middleware.py +0 -253
  1083. sillo_framework-0.3.0/sillo/security/ratelimit/__init__.py +0 -94
  1084. sillo_framework-0.3.0/sillo/security/ratelimit/_middleware.py +0 -100
  1085. sillo_framework-0.3.0/sillo/security/ratelimit/backends/__init__.py +0 -57
  1086. sillo_framework-0.3.0/sillo/security/ratelimit/backends/base.py +0 -54
  1087. sillo_framework-0.3.0/sillo/security/ratelimit/config.py +0 -71
  1088. sillo_framework-0.3.0/sillo/security/shield.py +0 -245
  1089. sillo_framework-0.3.0/sillo/session/base.py +0 -76
  1090. sillo_framework-0.3.0/sillo/session/file.py +0 -140
  1091. sillo_framework-0.3.0/sillo/session/middleware.py +0 -185
  1092. sillo_framework-0.3.0/sillo/session/session_objects.py +0 -359
  1093. sillo_framework-0.3.0/sillo/static.py +0 -253
  1094. sillo_framework-0.3.0/sillo/storage/context.py +0 -58
  1095. sillo_framework-0.3.0/sillo/storage/policies.py +0 -335
  1096. sillo_framework-0.3.0/sillo/storage/routes.py +0 -172
  1097. sillo_framework-0.3.0/sillo/storage/storage.py +0 -219
  1098. sillo_framework-0.3.0/sillo/storage/uploads.py +0 -66
  1099. sillo_framework-0.3.0/sillo/templating/__init__.py +0 -135
  1100. sillo_framework-0.3.0/sillo/templating/middleware.py +0 -109
  1101. sillo_framework-0.3.0/sillo/templating/utils.py +0 -124
  1102. sillo_framework-0.3.0/sillo/testclient/_internal/transport.py +0 -697
  1103. sillo_framework-0.3.0/sillo/testclient/_internal/websockets.py +0 -295
  1104. sillo_framework-0.3.0/sillo/testclient/async_client.py +0 -273
  1105. sillo_framework-0.3.0/sillo/testclient/base.py +0 -523
  1106. sillo_framework-0.3.0/sillo/testclient/exceptions.py +0 -17
  1107. sillo_framework-0.3.0/sillo/types.py +0 -67
  1108. sillo_framework-0.3.0/sillo/users/__init__.py +0 -54
  1109. sillo_framework-0.3.0/sillo/users/console.py +0 -389
  1110. sillo_framework-0.3.0/sillo/users/protocol.py +0 -240
  1111. sillo_framework-0.3.0/sillo/validation/__init__.py +0 -89
  1112. sillo_framework-0.3.0/sillo/validation/compiler.py +0 -534
  1113. sillo_framework-0.3.0/sillo/validation/fields.py +0 -667
  1114. sillo_framework-0.3.0/sillo/websockets/__init__.py +0 -26
  1115. sillo_framework-0.3.0/sillo/websockets/base.py +0 -231
  1116. sillo_framework-0.3.0/sillo/websockets/channels.py +0 -277
  1117. sillo_framework-0.3.0/sillo/websockets/consumers.py +0 -213
  1118. sillo_framework-0.3.0/sillo/websockets/errors.py +0 -40
  1119. sillo_framework-0.3.0/sillo/websockets/history.py +0 -124
  1120. sillo_framework-0.3.0/sillo/websockets/status.py +0 -67
  1121. sillo_framework-0.3.0/sillo/websockets/utils.py +0 -48
  1122. sillo_framework-0.3.0/sillo/work/backends.py +0 -379
  1123. sillo_framework-0.3.0/sillo/work/background/supervisor.py +0 -137
  1124. sillo_framework-0.3.0/sillo/work/background/tasks.py +0 -235
  1125. sillo_framework-0.3.0/sillo/work/dependency.py +0 -49
  1126. sillo_framework-0.3.0/sillo/work/queue/connection.py +0 -453
  1127. sillo_framework-0.3.0/sillo/work/queue/failed.py +0 -117
  1128. sillo_framework-0.3.0/sillo/work/queue/job.py +0 -292
  1129. sillo_framework-0.3.0/sillo/work/queue/listener.py +0 -154
  1130. sillo_framework-0.3.0/sillo/work/queue/middleware.py +0 -145
  1131. sillo_framework-0.3.0/sillo/work/scheduler/manager.py +0 -250
  1132. sillo_framework-0.3.0/sillo/work/scheduler/middleware.py +0 -97
  1133. sillo_framework-0.3.0/tests/test_admin/test_admin_export_query.py +0 -830
  1134. sillo_framework-0.3.0/tests/test_admin/test_admin_helpers.py +0 -338
  1135. sillo_framework-0.3.0/tests/test_admin/test_admin_models.py +0 -165
  1136. sillo_framework-0.3.0/tests/test_admin/test_admin_startup_order.py +0 -131
  1137. sillo_framework-0.3.0/tests/test_admin/test_admin_views.py +0 -450
  1138. sillo_framework-0.3.0/tests/test_applications/test_application.py +0 -679
  1139. sillo_framework-0.3.0/tests/test_applications/test_middleware_chain_cache.py +0 -160
  1140. sillo_framework-0.3.0/tests/test_applications/test_route_kwargs.py +0 -112
  1141. sillo_framework-0.3.0/tests/test_auth/test_apikey_backend.py +0 -146
  1142. sillo_framework-0.3.0/tests/test_auth/test_auth_middleware.py +0 -239
  1143. sillo_framework-0.3.0/tests/test_auth/test_auth_utilities.py +0 -206
  1144. sillo_framework-0.3.0/tests/test_auth/test_custom_backend.py +0 -194
  1145. sillo_framework-0.3.0/tests/test_auth/test_jwt_backend.py +0 -245
  1146. sillo_framework-0.3.0/tests/test_auth/test_security_schemes.py +0 -606
  1147. sillo_framework-0.3.0/tests/test_auth/test_session_backend.py +0 -196
  1148. sillo_framework-0.3.0/tests/test_auth/test_session_guard.py +0 -230
  1149. sillo_framework-0.3.0/tests/test_auth/test_session_model_extend.py +0 -85
  1150. sillo_framework-0.3.0/tests/test_auth/test_use_auth.py +0 -649
  1151. sillo_framework-0.3.0/tests/test_cache/test_base.py +0 -73
  1152. sillo_framework-0.3.0/tests/test_cache/test_decorator.py +0 -183
  1153. sillo_framework-0.3.0/tests/test_cache/test_memory_cache.py +0 -147
  1154. sillo_framework-0.3.0/tests/test_cache/test_redis_cache_fake.py +0 -209
  1155. sillo_framework-0.3.0/tests/test_console/test_builtin_work.py +0 -355
  1156. sillo_framework-0.3.0/tests/test_console/test_cli.py +0 -852
  1157. sillo_framework-0.3.0/tests/test_cors/test_configuration.py +0 -458
  1158. sillo_framework-0.3.0/tests/test_cors/test_credentials_security.py +0 -116
  1159. sillo_framework-0.3.0/tests/test_cors/test_error_handling.py +0 -336
  1160. sillo_framework-0.3.0/tests/test_cors/test_integration.py +0 -455
  1161. sillo_framework-0.3.0/tests/test_cors/test_preflight_requests.py +0 -381
  1162. sillo_framework-0.3.0/tests/test_cors/test_simple_requests.py +0 -236
  1163. sillo_framework-0.3.0/tests/test_dependencies/test_dependency_injection.py +0 -863
  1164. sillo_framework-0.3.0/tests/test_encoding/test_custom_encoder.py +0 -105
  1165. sillo_framework-0.3.0/tests/test_events/test_comprehensive_events.py +0 -841
  1166. sillo_framework-0.3.0/tests/test_events/test_emitter_paths.py +0 -390
  1167. sillo_framework-0.3.0/tests/test_exception_handlers/test_basic_exception_handlers.py +0 -450
  1168. sillo_framework-0.3.0/tests/test_exception_handlers/test_concurrent_error_pages.py +0 -145
  1169. sillo_framework-0.3.0/tests/test_exception_handlers/test_dispatch_internals.py +0 -413
  1170. sillo_framework-0.3.0/tests/test_exception_handlers/test_exception_handler_integration.py +0 -499
  1171. sillo_framework-0.3.0/tests/test_exception_handlers/test_not_found_handler.py +0 -126
  1172. sillo_framework-0.3.0/tests/test_exception_handlers/test_server_error_debug.py +0 -231
  1173. sillo_framework-0.3.0/tests/test_forms/test_form_parser.py +0 -534
  1174. sillo_framework-0.3.0/tests/test_graphql/test_graphql_schema.py +0 -73
  1175. sillo_framework-0.3.0/tests/test_graphql/test_handler_paths.py +0 -119
  1176. sillo_framework-0.3.0/tests/test_hashing/test_core.py +0 -104
  1177. sillo_framework-0.3.0/tests/test_helpers/test_accepts.py +0 -195
  1178. sillo_framework-0.3.0/tests/test_helpers/test_hashing_crypto.py +0 -265
  1179. sillo_framework-0.3.0/tests/test_helpers/test_jwt.py +0 -222
  1180. sillo_framework-0.3.0/tests/test_http/test_accepts_middleware.py +0 -269
  1181. sillo_framework-0.3.0/tests/test_http/test_accepts_negotiation.py +0 -190
  1182. sillo_framework-0.3.0/tests/test_http/test_etag_full.py +0 -257
  1183. sillo_framework-0.3.0/tests/test_http/test_http_etag.py +0 -71
  1184. sillo_framework-0.3.0/tests/test_http/test_sse.py +0 -298
  1185. sillo_framework-0.3.0/tests/test_internals/test_registry.py +0 -81
  1186. sillo_framework-0.3.0/tests/test_lifecycle/test_request_id.py +0 -103
  1187. sillo_framework-0.3.0/tests/test_mail/test_context.py +0 -80
  1188. sillo_framework-0.3.0/tests/test_mail/test_mail_client.py +0 -245
  1189. sillo_framework-0.3.0/tests/test_mail/test_mail_transport.py +0 -541
  1190. sillo_framework-0.3.0/tests/test_middleware/test_app_level_middleware.py +0 -377
  1191. sillo_framework-0.3.0/tests/test_middleware/test_asgi_middleware.py +0 -693
  1192. sillo_framework-0.3.0/tests/test_middleware/test_gzip.py +0 -165
  1193. sillo_framework-0.3.0/tests/test_middleware/test_internals_bridge.py +0 -247
  1194. sillo_framework-0.3.0/tests/test_middleware/test_raw_asgi_layers.py +0 -477
  1195. sillo_framework-0.3.0/tests/test_middleware/test_route_level_middleware.py +0 -474
  1196. sillo_framework-0.3.0/tests/test_middleware/test_router_level_middleware.py +0 -430
  1197. sillo_framework-0.3.0/tests/test_middleware/test_security_middleware.py +0 -365
  1198. sillo_framework-0.3.0/tests/test_middleware/test_use_for_route.py +0 -225
  1199. sillo_framework-0.3.0/tests/test_normalize/test_middleware.py +0 -74
  1200. sillo_framework-0.3.0/tests/test_openapi/test_docs_ui.py +0 -580
  1201. sillo_framework-0.3.0/tests/test_openapi/test_openapi_spec.py +0 -694
  1202. sillo_framework-0.3.0/tests/test_openapi/test_openapi_utils.py +0 -158
  1203. sillo_framework-0.3.0/tests/test_optional_imports.py +0 -226
  1204. sillo_framework-0.3.0/tests/test_pagination/test_integration.py +0 -351
  1205. sillo_framework-0.3.0/tests/test_pagination/test_response_paginate.py +0 -365
  1206. sillo_framework-0.3.0/tests/test_parameters/test_cookie.py +0 -107
  1207. sillo_framework-0.3.0/tests/test_parameters/test_header.py +0 -132
  1208. sillo_framework-0.3.0/tests/test_parameters/test_nested.py +0 -218
  1209. sillo_framework-0.3.0/tests/test_parameters/test_openapi.py +0 -185
  1210. sillo_framework-0.3.0/tests/test_parameters/test_query.py +0 -213
  1211. sillo_framework-0.3.0/tests/test_record/test_pagination_and_exceptions.py +0 -202
  1212. sillo_framework-0.3.0/tests/test_requests/test_basic_properties.py +0 -481
  1213. sillo_framework-0.3.0/tests/test_requests/test_body_data.py +0 -399
  1214. sillo_framework-0.3.0/tests/test_requests/test_cookies_auth.py +0 -162
  1215. sillo_framework-0.3.0/tests/test_requests/test_path_params.py +0 -159
  1216. sillo_framework-0.3.0/tests/test_requests/test_query_params.py +0 -343
  1217. sillo_framework-0.3.0/tests/test_requests/test_request_flags.py +0 -295
  1218. sillo_framework-0.3.0/tests/test_requests/test_request_surface.py +0 -275
  1219. sillo_framework-0.3.0/tests/test_responses/test_abort_not_found.py +0 -119
  1220. sillo_framework-0.3.0/tests/test_responses/test_advanced_responses.py +0 -294
  1221. sillo_framework-0.3.0/tests/test_responses/test_basic_responses.py +0 -322
  1222. sillo_framework-0.3.0/tests/test_responses/test_file_responses.py +0 -548
  1223. sillo_framework-0.3.0/tests/test_responses/test_header_override.py +0 -246
  1224. sillo_framework-0.3.0/tests/test_responses/test_headers_cookies.py +0 -459
  1225. sillo_framework-0.3.0/tests/test_responses/test_redirect_streaming.py +0 -412
  1226. sillo_framework-0.3.0/tests/test_responses/test_response_properties.py +0 -282
  1227. sillo_framework-0.3.0/tests/test_routing/test_basic_routing.py +0 -256
  1228. sillo_framework-0.3.0/tests/test_routing/test_grouping.py +0 -324
  1229. sillo_framework-0.3.0/tests/test_routing/test_http_methods.py +0 -665
  1230. sillo_framework-0.3.0/tests/test_routing/test_nested_routes.py +0 -263
  1231. sillo_framework-0.3.0/tests/test_routing/test_path_parameters.py +0 -311
  1232. sillo_framework-0.3.0/tests/test_routing/test_router_wrap_asgi.py +0 -70
  1233. sillo_framework-0.3.0/tests/test_security/test_backends.py +0 -58
  1234. sillo_framework-0.3.0/tests/test_security/test_csrf.py +0 -140
  1235. sillo_framework-0.3.0/tests/test_security/test_csrf_predicates.py +0 -210
  1236. sillo_framework-0.3.0/tests/test_security/test_csrf_regressions.py +0 -226
  1237. sillo_framework-0.3.0/tests/test_security/test_middleware.py +0 -177
  1238. sillo_framework-0.3.0/tests/test_sessions/test_base.py +0 -394
  1239. sillo_framework-0.3.0/tests/test_sessions/test_expiry.py +0 -224
  1240. sillo_framework-0.3.0/tests/test_sessions/test_file_sessions.py +0 -237
  1241. sillo_framework-0.3.0/tests/test_sessions/test_integration.py +0 -118
  1242. sillo_framework-0.3.0/tests/test_sessions/test_middleware.py +0 -279
  1243. sillo_framework-0.3.0/tests/test_sessions/test_security.py +0 -334
  1244. sillo_framework-0.3.0/tests/test_sessions/test_settings.py +0 -193
  1245. sillo_framework-0.3.0/tests/test_small_module_gaps.py +0 -176
  1246. sillo_framework-0.3.0/tests/test_static/test_static_files.py +0 -304
  1247. sillo_framework-0.3.0/tests/test_storage/__init__.py +0 -0
  1248. sillo_framework-0.3.0/tests/test_storage/contract.py +0 -231
  1249. sillo_framework-0.3.0/tests/test_storage/test_bucket.py +0 -296
  1250. sillo_framework-0.3.0/tests/test_storage/test_context.py +0 -97
  1251. sillo_framework-0.3.0/tests/test_storage/test_drivers.py +0 -29
  1252. sillo_framework-0.3.0/tests/test_storage/test_safety.py +0 -247
  1253. sillo_framework-0.3.0/tests/test_templating/__init__.py +0 -0
  1254. sillo_framework-0.3.0/tests/test_templating/test_template_utils.py +0 -190
  1255. sillo_framework-0.3.0/tests/test_templating/test_templates.py +0 -83
  1256. sillo_framework-0.3.0/tests/test_users/__init__.py +0 -0
  1257. sillo_framework-0.3.0/tests/test_validation/__init__.py +0 -0
  1258. sillo_framework-0.3.0/tests/test_validation/test_body_form.py +0 -221
  1259. sillo_framework-0.3.0/tests/test_validation/test_legacy_compat.py +0 -100
  1260. sillo_framework-0.3.0/tests/test_validation/test_markers_unit.py +0 -234
  1261. sillo_framework-0.3.0/tests/test_validation/test_openapi_generation.py +0 -128
  1262. sillo_framework-0.3.0/tests/test_validation/test_params.py +0 -178
  1263. sillo_framework-0.3.0/tests/test_validation/test_request_model.py +0 -103
  1264. sillo_framework-0.3.0/tests/test_validation/test_response_model.py +0 -93
  1265. sillo_framework-0.3.0/tests/test_websockets/test_channel_history.py +0 -400
  1266. sillo_framework-0.3.0/tests/test_websockets/test_consumer_encodings.py +0 -509
  1267. sillo_framework-0.3.0/tests/test_websockets/test_group_removal.py +0 -115
  1268. sillo_framework-0.3.0/tests/test_websockets/test_history_contract.py +0 -146
  1269. sillo_framework-0.3.0/tests/test_websockets/test_websocket_consumers.py +0 -255
  1270. sillo_framework-0.3.0/tests/test_websockets/test_websocket_errors.py +0 -216
  1271. sillo_framework-0.3.0/tests/test_websockets/test_websocket_groups.py +0 -398
  1272. sillo_framework-0.3.0/tests/test_websockets/test_websocket_protocol.py +0 -497
  1273. sillo_framework-0.3.0/tests/test_websockets/test_websocket_routing.py +0 -251
  1274. sillo_framework-0.3.0/tests/test_websockets/test_websocket_state_machine.py +0 -218
  1275. sillo_framework-0.3.0/tests/test_work/__init__.py +0 -0
  1276. sillo_framework-0.3.0/tests/test_work/test_backends_full.py +0 -257
  1277. sillo_framework-0.3.0/tests/test_work/test_background.py +0 -177
  1278. sillo_framework-0.3.0/tests/test_work/test_events.py +0 -175
  1279. sillo_framework-0.3.0/tests/test_work/test_job_queue.py +0 -143
  1280. sillo_framework-0.3.0/tests/test_work/test_job_round_trip.py +0 -163
  1281. sillo_framework-0.3.0/tests/test_work/test_queue.py +0 -314
  1282. sillo_framework-0.3.0/tests/test_work/test_queue_worker.py +0 -165
  1283. sillo_framework-0.3.0/tests/test_work/test_routes.py +0 -163
  1284. sillo_framework-0.3.0/tests/test_work/test_scheduler.py +0 -150
  1285. sillo_framework-0.3.0/tests/test_work/test_task.py +0 -176
  1286. sillo_framework-0.3.0/tests/test_work/test_work_commands.py +0 -91
  1287. sillo_framework-0.3.0/tests/test_work/test_work_di.py +0 -72
  1288. sillo_framework-0.3.0/uv.lock +0 -1511
  1289. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/.github/CODE_OF_CONDUCT.md +0 -0
  1290. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/.github/CONTRIBUTING.MD +0 -0
  1291. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/.github/ISSUE_TEMPLATE/bug_report.md +0 -0
  1292. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/.github/ISSUE_TEMPLATE/feature_request.md +0 -0
  1293. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/.github/dependabot.yml +0 -0
  1294. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/.github/funding.yml +0 -0
  1295. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/.github/workflows/release.yml +0 -0
  1296. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/.github/workflows/triage.yml +0 -0
  1297. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/.gitignore +0 -0
  1298. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/LICENSE +0 -0
  1299. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/SECURITY.md +0 -0
  1300. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/benchmarks/.gitignore +0 -0
  1301. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/benchmarks/README.md +0 -0
  1302. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/benchmarks/pyproject.toml +0 -0
  1303. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/benchmarks/results/.gitkeep +0 -0
  1304. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/benchmarks/sillo_bench/__init__.py +0 -0
  1305. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/benchmarks/sillo_bench/__main__.py +0 -0
  1306. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/benchmarks/sillo_bench/apps/__init__.py +0 -0
  1307. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/benchmarks/sillo_bench/apps/django_app.py +0 -0
  1308. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/benchmarks/sillo_bench/apps/fastapi_app.py +0 -0
  1309. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/benchmarks/sillo_bench/apps/flask_app.py +0 -0
  1310. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/benchmarks/sillo_bench/apps/sillo_app.py +0 -0
  1311. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/benchmarks/sillo_bench/apps/starlette_app.py +0 -0
  1312. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/benchmarks/sillo_bench/cli.py +0 -0
  1313. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/benchmarks/sillo_bench/environment.py +0 -0
  1314. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/benchmarks/sillo_bench/loadtools.py +0 -0
  1315. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/benchmarks/sillo_bench/payloads.py +0 -0
  1316. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/benchmarks/sillo_bench/report.py +0 -0
  1317. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/benchmarks/sillo_bench/runner.py +0 -0
  1318. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/benchmarks/sillo_bench/scenarios.py +0 -0
  1319. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/.github/workflows/ci.yml +0 -0
  1320. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/.github/workflows/deploy-docs-preview.yml +0 -0
  1321. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/.github/workflows/deploy-docs.yml +0 -0
  1322. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/.github/workflows/publish-package.yml +0 -0
  1323. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/.gitignore +0 -0
  1324. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/.prettierrc +0 -0
  1325. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/README.md +0 -0
  1326. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/bun.lock +0 -0
  1327. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/docs/README.md +0 -0
  1328. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/docs/package.json +0 -0
  1329. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/docs/public/favicon.svg +0 -0
  1330. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/docs/public/logo-white.svg +0 -0
  1331. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/docs/public/logo.ico +0 -0
  1332. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/docs/public/logo.png +0 -0
  1333. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/docs/src/assets/houston.webp +0 -0
  1334. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/docs/src/assets/logo-black.svg +0 -0
  1335. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/docs/src/assets/logo-white.svg +0 -0
  1336. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/docs/src/assets/placeholder.svg +0 -0
  1337. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/docs/src/assets/placeholder169.svg +0 -0
  1338. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/docs/src/components/Header.astro +0 -0
  1339. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/docs/src/components/MermaidRenderer.astro +0 -0
  1340. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/docs/src/components/PageFrame.astro +0 -0
  1341. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/docs/src/content/docs/reference/components.mdx +0 -0
  1342. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/docs/src/content/docs/reference/plugin-api.md +0 -0
  1343. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/docs/src/content/docs/showcase/splash/banner.mdx +0 -0
  1344. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/docs/src/content/docs/showcase/splash/centered-top.mdx +0 -0
  1345. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/docs/src/content/docs/showcase/splash/centered.mdx +0 -0
  1346. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/docs/src/content/docs/showcase/splash/split-left.mdx +0 -0
  1347. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/docs/src/content/docs/showcase/splash/split-right.mdx +0 -0
  1348. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/docs/src/content/docs/showcase/splash-pages.mdx +0 -0
  1349. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/docs/src/content/docs/showcase/starlight-components.mdx +0 -0
  1350. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/docs/src/content/docs/showcase/typography.md +0 -0
  1351. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/advanced/admin.md +0 -0
  1352. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/advanced/application-lifecycle.md +0 -0
  1353. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/advanced/architecture-overview.md +0 -0
  1354. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/advanced/atlas.md +0 -0
  1355. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/advanced/auth-backends.md +0 -0
  1356. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/advanced/authentication.md +0 -0
  1357. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/advanced/cache.md +0 -0
  1358. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/advanced/change-impact.md +0 -0
  1359. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/advanced/console.md +0 -0
  1360. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/advanced/context-binding.md +0 -0
  1361. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/advanced/debugging.md +0 -0
  1362. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/advanced/decisions.md +0 -0
  1363. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/advanced/events.md +0 -0
  1364. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/advanced/exception-handling.md +0 -0
  1365. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/advanced/extending.md +0 -0
  1366. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/advanced/glossary.md +0 -0
  1367. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/advanced/hashing.md +0 -0
  1368. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/advanced/helpers.md +0 -0
  1369. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/advanced/http-correctness.md +0 -0
  1370. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/advanced/http-request.md +0 -0
  1371. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/advanced/http-response.md +0 -0
  1372. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/advanced/inertia.md +0 -0
  1373. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/advanced/middleware.md +0 -0
  1374. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/advanced/oauth.md +0 -0
  1375. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/advanced/openapi.md +0 -0
  1376. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/advanced/pagination.md +0 -0
  1377. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/advanced/parameters.md +0 -0
  1378. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/advanced/permissions.md +0 -0
  1379. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/advanced/record-factories.md +0 -0
  1380. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/advanced/record-migrations.md +0 -0
  1381. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/advanced/record-models.md +0 -0
  1382. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/advanced/record-queries.md +0 -0
  1383. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/advanced/record-transactions.md +0 -0
  1384. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/advanced/records-orm.md +0 -0
  1385. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/advanced/routing.md +0 -0
  1386. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/advanced/security.md +0 -0
  1387. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/advanced/sessions.md +0 -0
  1388. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/advanced/start.md +0 -0
  1389. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/advanced/templating.md +0 -0
  1390. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/advanced/test-client.md +0 -0
  1391. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/advanced/types-and-encoding.md +0 -0
  1392. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/advanced/users.md +0 -0
  1393. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/advanced/validation.md +0 -0
  1394. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/advanced/websockets.md +0 -0
  1395. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/advanced/work-background.md +0 -0
  1396. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/advanced/work-queues.md +0 -0
  1397. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/advanced/work-scheduler.md +0 -0
  1398. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/advanced/work-tasks.md +0 -0
  1399. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/cli/discovery.md +0 -0
  1400. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/cli/framework-commands.md +0 -0
  1401. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/cli/prompts.md +0 -0
  1402. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/guides/cache.mdx +0 -0
  1403. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/guides/console.md +0 -0
  1404. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/guides/content-negotiation.md +0 -0
  1405. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/guides/error-handling.mdx +0 -0
  1406. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/guides/file-upload.md +0 -0
  1407. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/guides/frontend.md +0 -0
  1408. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/guides/oauth/openapi.md +0 -0
  1409. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/guides/openapi/authentication-documentation.md +0 -0
  1410. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/guides/openapi/basic-config.png +0 -0
  1411. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/guides/openapi/bearerAuth.png +0 -0
  1412. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/guides/openapi/custom.png +0 -0
  1413. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/guides/openapi/custom2.png +0 -0
  1414. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/guides/openapi/description.png +0 -0
  1415. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/guides/openapi/headers.png +0 -0
  1416. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/guides/openapi/multi-response.png +0 -0
  1417. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/guides/openapi/path-params.png +0 -0
  1418. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/guides/openapi/query-params.png +0 -0
  1419. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/guides/openapi/request-body.png +0 -0
  1420. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/guides/openapi/request-parameters.md +0 -0
  1421. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/guides/openapi/request-schemas.mdx +0 -0
  1422. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/guides/openapi/response-list.png +0 -0
  1423. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/guides/openapi/response-models.md +0 -0
  1424. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/guides/openapi/response.png +0 -0
  1425. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/guides/pagination.mdx +0 -0
  1426. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/guides/rate-limiting.md +0 -0
  1427. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/guides/routing.mdx +0 -0
  1428. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/guides/sending-responses.mdx +0 -0
  1429. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/guides/sessions.md +0 -0
  1430. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/guides/validation/errors.md +0 -0
  1431. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/guides/validation/response-models.md +0 -0
  1432. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/guides/work/scheduler.mdx +0 -0
  1433. {sillo_framework-0.3.0/docs/docs/src/content/docs → sillo_framework-0.3.2.dev1/docs/docs/src/content/docs/v0.x}/start/naming.md +0 -0
  1434. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/docs/src/plugins/remark-mermaid.mjs +0 -0
  1435. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/docs/src/styles/global.css +0 -0
  1436. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/docs/tsconfig.json +0 -0
  1437. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/package.json +0 -0
  1438. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/packages/lucode-starlight/README.md +0 -0
  1439. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/packages/lucode-starlight/components/custom/ContainerSection.astro +0 -0
  1440. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/packages/lucode-starlight/components/custom/LinkButton.astro +0 -0
  1441. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/packages/lucode-starlight/components/custom/dropdown/Dropdown.astro +0 -0
  1442. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/packages/lucode-starlight/components/custom/dropdown/DropdownContent.astro +0 -0
  1443. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/packages/lucode-starlight/components/custom/dropdown/DropdownItem.astro +0 -0
  1444. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/packages/lucode-starlight/components/custom/dropdown/DropdownLabel.astro +0 -0
  1445. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/packages/lucode-starlight/components/custom/dropdown/DropdownSeparator.astro +0 -0
  1446. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/packages/lucode-starlight/components/custom/dropdown/DropdownShortcut.astro +0 -0
  1447. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/packages/lucode-starlight/components/custom/dropdown/DropdownTrigger.astro +0 -0
  1448. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/packages/lucode-starlight/components/custom/dropdown/index.ts +0 -0
  1449. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/packages/lucode-starlight/components/overrides/ContentPanel.astro +0 -0
  1450. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/packages/lucode-starlight/components/overrides/Footer.astro +0 -0
  1451. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/packages/lucode-starlight/components/overrides/Header.astro +0 -0
  1452. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/packages/lucode-starlight/components/overrides/Hero.astro +0 -0
  1453. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/packages/lucode-starlight/components/overrides/MarkdownContent.astro +0 -0
  1454. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/packages/lucode-starlight/components/overrides/PageFrame.astro +0 -0
  1455. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/packages/lucode-starlight/components/overrides/PageSidebar.astro +0 -0
  1456. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/packages/lucode-starlight/components/overrides/PageTitle.astro +0 -0
  1457. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/packages/lucode-starlight/components/overrides/Pagination.astro +0 -0
  1458. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/packages/lucode-starlight/components/overrides/Search.astro +0 -0
  1459. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/packages/lucode-starlight/components/overrides/Sidebar.astro +0 -0
  1460. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/packages/lucode-starlight/components/overrides/SiteTitle.astro +0 -0
  1461. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/packages/lucode-starlight/components/overrides/SocialIcons.astro +0 -0
  1462. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/packages/lucode-starlight/components/overrides/TableOfContents.astro +0 -0
  1463. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/packages/lucode-starlight/components/overrides/ThemeSelect.astro +0 -0
  1464. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/packages/lucode-starlight/components/overrides/TwoColumnContent.astro +0 -0
  1465. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/packages/lucode-starlight/components/overrides/parts/Drawer.astro +0 -0
  1466. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/packages/lucode-starlight/components/overrides/parts/MobileMenuToggle.astro +0 -0
  1467. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/packages/lucode-starlight/components/overrides/parts/NavBar.astro +0 -0
  1468. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/packages/lucode-starlight/components/overrides/parts/SidebarSublist.astro +0 -0
  1469. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/packages/lucode-starlight/components/overrides/parts/toc/TableOfContentsList.astro +0 -0
  1470. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/packages/lucode-starlight/components/overrides/parts/toc/starlight-toc.ts +0 -0
  1471. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/packages/lucode-starlight/core/config/constants.ts +0 -0
  1472. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/packages/lucode-starlight/core/config/expresive-code.ts +0 -0
  1473. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/packages/lucode-starlight/core/config/override.ts +0 -0
  1474. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/packages/lucode-starlight/core/config/schemas.ts +0 -0
  1475. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/packages/lucode-starlight/core/config/vite.ts +0 -0
  1476. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/packages/lucode-starlight/core/plugin.ts +0 -0
  1477. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/packages/lucode-starlight/global.d.ts +0 -0
  1478. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/packages/lucode-starlight/index.ts +0 -0
  1479. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/packages/lucode-starlight/package.json +0 -0
  1480. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/packages/lucode-starlight/schema.ts +0 -0
  1481. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/packages/lucode-starlight/styles/base.css +0 -0
  1482. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/packages/lucode-starlight/styles/layers.css +0 -0
  1483. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/packages/lucode-starlight/styles/theme.css +0 -0
  1484. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/packages/lucode-starlight/user-components.ts +0 -0
  1485. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/packages/lucode-starlight/virtual.d.ts +0 -0
  1486. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/renovate.json +0 -0
  1487. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/test/lucode-starlight/config.test.ts +0 -0
  1488. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/test/lucode-starlight/plugin.test.ts +0 -0
  1489. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/test/lucode-starlight/starlight-toc.test.ts +0 -0
  1490. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/tsconfig.json +0 -0
  1491. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/docs/vitest.config.ts +0 -0
  1492. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/examples/auth/02_jwt_auth.py +0 -0
  1493. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/examples/config/.env.development +0 -0
  1494. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/examples/config/.env.example +0 -0
  1495. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/examples/config/.env.production +0 -0
  1496. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/examples/config/01_basic_config.py +0 -0
  1497. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/examples/config/02_web_app.py +0 -0
  1498. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/examples/config/README.md +0 -0
  1499. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/examples/database/03_tortoise_blog.py +0 -0
  1500. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/examples/exception_handling/02_custom.py +0 -0
  1501. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/examples/file_handling/02_simple_upload.py +0 -0
  1502. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/examples/getting_started/01_hello_world.py +0 -0
  1503. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/examples/getting_started/02_basic_rest.py +0 -0
  1504. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/examples/getting_started/03_enhanced_api.py +0 -0
  1505. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/examples/getting_started/05_streaming_middleware.py +0 -0
  1506. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/examples/getting_started/README.md +0 -0
  1507. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/examples/hashing/01_basic_password_hashing.py +0 -0
  1508. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/examples/hashing/01_basic_usage.py +0 -0
  1509. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/examples/hashing/02_schemes.py +0 -0
  1510. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/examples/hashing/03_web_api.py +0 -0
  1511. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/examples/hashing/README.md +0 -0
  1512. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/examples/middleware/01_basic.py +0 -0
  1513. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/examples/request_inputs/02_form_data.py +0 -0
  1514. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/examples/request_inputs/03_raw_body.py +0 -0
  1515. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/examples/request_inputs/04_streaming.py +0 -0
  1516. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/examples/responses/01_return_values.py +0 -0
  1517. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/examples/responses/02_json_with_headers.py +0 -0
  1518. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/examples/routing/01_basic_routes.py +0 -0
  1519. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/examples/routing/02_path_parameters.py +0 -0
  1520. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/examples/routing/04_routers.py +0 -0
  1521. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/examples/validation/01_advanced.py +0 -0
  1522. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/examples/websockets/01_basic_echo.py +0 -0
  1523. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/examples/websockets/02_chat_rooms.py +0 -0
  1524. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/examples/websockets/03_custom_history.py +0 -0
  1525. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/requirements-dev.txt +0 -0
  1526. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/requirements.txt +0 -0
  1527. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/auth/apikey/mixins.py +0 -0
  1528. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/auth/apikey/models.py +0 -0
  1529. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/auth/jwt_auth/__init__.py +0 -0
  1530. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/auth/jwt_auth/mixins.py +0 -0
  1531. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/auth/jwt_auth/tokens.py +0 -0
  1532. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/auth/model.py +0 -0
  1533. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/auth/session_auth/__init__.py +0 -0
  1534. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/auth/session_auth/mixins.py +0 -0
  1535. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/auth/session_auth/models.py +0 -0
  1536. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/cache/__init__.py +0 -0
  1537. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/cache/config.py +0 -0
  1538. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/config/__init__.py +0 -0
  1539. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/config/core.py +0 -0
  1540. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/console/__init__.py +0 -0
  1541. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/console/arguments.py +0 -0
  1542. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/console/command.py +0 -0
  1543. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/console/console.py +0 -0
  1544. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/console/exceptions.py +0 -0
  1545. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/console/output.py +0 -0
  1546. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/console/prompt.py +0 -0
  1547. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/console/style.py +0 -0
  1548. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/console/terminal.py +0 -0
  1549. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/core/__init__.py +0 -0
  1550. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/core/converters.py +0 -0
  1551. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/core/dependencies/__init__.py +0 -0
  1552. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/core/encoding.py +0 -0
  1553. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/core/error/__init__.py +0 -0
  1554. {sillo_framework-0.3.0/sillo/_internals → sillo_framework-0.3.2.dev1/sillo/core/helpers}/__init__.py +0 -0
  1555. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/core/helpers/async_helpers.py +0 -0
  1556. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/core/helpers/deprecation.py +0 -0
  1557. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/core/http/cookies.py +0 -0
  1558. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/core/routing/__init__.py +0 -0
  1559. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/core/routing/_utils.py +0 -0
  1560. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/encoding.py +0 -0
  1561. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/env/__init__.py +0 -0
  1562. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/env/_loader.py +0 -0
  1563. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/events/core.py +0 -0
  1564. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/events/enums.py +0 -0
  1565. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/events/exceptions.py +0 -0
  1566. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/events/mixins.py +0 -0
  1567. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/events/transports/__init__.py +0 -0
  1568. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/events/transports/base.py +0 -0
  1569. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/events/transports/memory.py +0 -0
  1570. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/events/transports/persistent.py +0 -0
  1571. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/events/transports/record.py +0 -0
  1572. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/events/transports/redis.py +0 -0
  1573. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/events/types.py +0 -0
  1574. {sillo_framework-0.3.0/sillo/core/helpers → sillo_framework-0.3.2.dev1/sillo/handlers}/__init__.py +0 -0
  1575. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/hashing/__init__.py +0 -0
  1576. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/hashing/config.py +0 -0
  1577. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/hashing/exceptions.py +0 -0
  1578. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/hashing/utils.py +0 -0
  1579. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/helpers/__init__.py +0 -0
  1580. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/helpers/concurrency.py +0 -0
  1581. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/helpers/files.py +0 -0
  1582. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/helpers/hashing.py +0 -0
  1583. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/helpers/html.py +0 -0
  1584. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/helpers/network.py +0 -0
  1585. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/helpers/retry.py +0 -0
  1586. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/helpers/signing.py +0 -0
  1587. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/helpers/strings.py +0 -0
  1588. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/helpers/text.py +0 -0
  1589. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/http/__init__.py +0 -0
  1590. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/http/client/__init__.py +0 -0
  1591. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/http/client/caching.py +0 -0
  1592. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/http/client/client.py +0 -0
  1593. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/http/client/config.py +0 -0
  1594. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/http/client/errors.py +0 -0
  1595. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/http/client/middleware.py +0 -0
  1596. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/http/client/models.py +0 -0
  1597. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/http/client/retry.py +0 -0
  1598. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/http/client/transport.py +0 -0
  1599. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/http/client/utils.py +0 -0
  1600. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/http/lifecycle/__init__.py +0 -0
  1601. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/http/lifecycle/context.py +0 -0
  1602. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/http/status.py +0 -0
  1603. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/logging.py +0 -0
  1604. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/mail/__init__.py +0 -0
  1605. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/mail/config.py +0 -0
  1606. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/mail/models.py +0 -0
  1607. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/middleware/gzip.py +0 -0
  1608. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/middleware/security.py +0 -0
  1609. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/normalize/__init__.py +0 -0
  1610. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/normalize/helpers.py +0 -0
  1611. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/objects/__init__.py +0 -0
  1612. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/objects/datastructures.py +0 -0
  1613. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/objects/http.py +0 -0
  1614. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/openapi/__init__.py +0 -0
  1615. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/openapi/_builder.py +0 -0
  1616. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/openapi/config.py +0 -0
  1617. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/openapi/models.py +0 -0
  1618. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/openapi/ui.py +0 -0
  1619. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/openapi/utils.py +0 -0
  1620. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/pagination.py +0 -0
  1621. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/parameters.py +0 -0
  1622. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/permissions/__init__.py +0 -0
  1623. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/permissions/mixins.py +0 -0
  1624. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/permissions/models.py +0 -0
  1625. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/py.typed +0 -0
  1626. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/record/__init__.py +0 -0
  1627. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/record/_bridge.py +0 -0
  1628. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/record/casting.py +0 -0
  1629. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/record/collection.py +0 -0
  1630. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/record/commands/__init__.py +0 -0
  1631. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/record/commands/functions.py +0 -0
  1632. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/record/config.py +0 -0
  1633. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/record/console.py +0 -0
  1634. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/record/events.py +0 -0
  1635. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/record/factories.py +0 -0
  1636. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/record/helpers.py +0 -0
  1637. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/record/logging.py +0 -0
  1638. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/record/mixins/__init__.py +0 -0
  1639. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/record/pagination.py +0 -0
  1640. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/record/queries.py +0 -0
  1641. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/record/scopes.py +0 -0
  1642. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/record/transactions.py +0 -0
  1643. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/route_builder.py +0 -0
  1644. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/security/cors/__init__.py +0 -0
  1645. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/security/csrf/__init__.py +0 -0
  1646. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/security/csrf/config.py +0 -0
  1647. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/security/ratelimit/backends/memory.py +0 -0
  1648. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/security/ratelimit/backends/record.py +0 -0
  1649. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/security/ratelimit/backends/redis.py +0 -0
  1650. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/security/ratelimit/models.py +0 -0
  1651. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/security/ratelimit/strategies/__init__.py +0 -0
  1652. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/security/ratelimit/strategies/base.py +0 -0
  1653. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/security/ratelimit/strategies/fixed_window.py +0 -0
  1654. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/security/ratelimit/strategies/sliding_window.py +0 -0
  1655. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/security/ratelimit/strategies/token_bucket.py +0 -0
  1656. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/session/__init__.py +0 -0
  1657. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/session/config.py +0 -0
  1658. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/session/signed_cookies.py +0 -0
  1659. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/storage/__init__.py +0 -0
  1660. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/storage/base.py +0 -0
  1661. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/storage/bucket.py +0 -0
  1662. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/storage/config.py +0 -0
  1663. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/storage/drivers/__init__.py +0 -0
  1664. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/storage/drivers/local.py +0 -0
  1665. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/storage/drivers/memory.py +0 -0
  1666. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/storage/errors.py +0 -0
  1667. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/storage/paths.py +0 -0
  1668. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/storage/signing.py +0 -0
  1669. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/storage/sniff.py +0 -0
  1670. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/testclient/__init__.py +0 -0
  1671. {sillo_framework-0.3.0/sillo/handlers → sillo_framework-0.3.2.dev1/sillo/testclient/_internal}/__init__.py +0 -0
  1672. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/testclient/_internal/inputs.py +0 -0
  1673. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/testclient/_internal/types.py +0 -0
  1674. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/testclient/_internal/utils.py +0 -0
  1675. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/testclient/helpers.py +0 -0
  1676. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/users/base.py +0 -0
  1677. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/users/commands.py +0 -0
  1678. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/users/managers.py +0 -0
  1679. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/users/simple.py +0 -0
  1680. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/validation/errors.py +0 -0
  1681. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/work/__init__.py +0 -0
  1682. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/work/background/__init__.py +0 -0
  1683. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/work/commands.py +0 -0
  1684. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/work/console.py +0 -0
  1685. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/work/middleware.py +0 -0
  1686. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/work/queue/__init__.py +0 -0
  1687. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/work/queue/batches.py +0 -0
  1688. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/work/queue/events.py +0 -0
  1689. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/work/queue/payloads.py +0 -0
  1690. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/work/queue/workers.py +0 -0
  1691. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/work/scheduler/__init__.py +0 -0
  1692. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/work/scheduler/cron.py +0 -0
  1693. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/work/scheduler/jobs.py +0 -0
  1694. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/work/scheduler/triggers.py +0 -0
  1695. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/work/task.py +0 -0
  1696. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/sillo/work/types.py +0 -0
  1697. {sillo_framework-0.3.0/sillo/testclient/_internal → sillo_framework-0.3.2.dev1/tests}/__init__.py +0 -0
  1698. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/conftest.py +0 -0
  1699. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/static/example.txt +0 -0
  1700. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/static/page.html +0 -0
  1701. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/static/script.js +0 -0
  1702. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/static/style.css +0 -0
  1703. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/static/subfolder/subfile.txt +0 -0
  1704. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/templates/base.html +0 -0
  1705. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/templates/product.html +0 -0
  1706. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/templates/welcome.html +0 -0
  1707. {sillo_framework-0.3.0/tests → sillo_framework-0.3.2.dev1/tests/test_applications}/__init__.py +0 -0
  1708. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_applications/test_app_class_name.py +0 -0
  1709. {sillo_framework-0.3.0/tests/test_admin → sillo_framework-0.3.2.dev1/tests/test_auth}/__init__.py +0 -0
  1710. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_auth/test_jwt_user_mixin.py +0 -0
  1711. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_auth/test_token_for_user.py +0 -0
  1712. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_auth/test_user_models.py +0 -0
  1713. {sillo_framework-0.3.0/tests/test_applications → sillo_framework-0.3.2.dev1/tests/test_cache}/__init__.py +0 -0
  1714. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_cache/test_redis_backend.py +0 -0
  1715. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_config/__init__.py +0 -0
  1716. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_config/conftest.py +0 -0
  1717. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_config/test_config_loading.py +0 -0
  1718. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_config/test_env_loading.py +0 -0
  1719. {sillo_framework-0.3.0/tests/test_auth → sillo_framework-0.3.2.dev1/tests/test_console}/__init__.py +0 -0
  1720. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_console/test_arguments.py +0 -0
  1721. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_console/test_builtin_record.py +0 -0
  1722. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_console/test_builtin_users.py +0 -0
  1723. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_console/test_command.py +0 -0
  1724. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_console/test_console.py +0 -0
  1725. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_console/test_output.py +0 -0
  1726. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_console/test_prompt.py +0 -0
  1727. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_console/test_style.py +0 -0
  1728. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_console/test_terminal.py +0 -0
  1729. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_cors/__init__.py +0 -0
  1730. {sillo_framework-0.3.0/tests/test_cache → sillo_framework-0.3.2.dev1/tests/test_dependencies}/__init__.py +0 -0
  1731. {sillo_framework-0.3.0/tests/test_console → sillo_framework-0.3.2.dev1/tests/test_encoding}/__init__.py +0 -0
  1732. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_encoding/test_encoding_shim.py +0 -0
  1733. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_encoding/test_jsonable_encoder.py +0 -0
  1734. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_encoding/test_passthrough_fast_path.py +0 -0
  1735. {sillo_framework-0.3.0/tests/test_dependencies → sillo_framework-0.3.2.dev1/tests/test_env}/__init__.py +0 -0
  1736. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_env/conftest.py +0 -0
  1737. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_env/test_load.py +0 -0
  1738. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_env/test_parse.py +0 -0
  1739. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_events/__init__.py +0 -0
  1740. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_events/test_core_propagation.py +0 -0
  1741. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_events/test_events_backends.py +0 -0
  1742. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_events/test_persistent_transport_fake.py +0 -0
  1743. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_events/test_record_transport.py +0 -0
  1744. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_events/test_redis_transport_fake.py +0 -0
  1745. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_events/test_transport_registry_and_base.py +0 -0
  1746. {sillo_framework-0.3.0/tests/test_encoding → sillo_framework-0.3.2.dev1/tests/test_exception_handlers}/__init__.py +0 -0
  1747. {sillo_framework-0.3.0/tests/test_env → sillo_framework-0.3.2.dev1/tests/test_forms}/__init__.py +0 -0
  1748. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_forms/test_uploaded_file_save.py +0 -0
  1749. {sillo_framework-0.3.0/tests/test_exception_handlers → sillo_framework-0.3.2.dev1/tests/test_hashing}/__init__.py +0 -0
  1750. {sillo_framework-0.3.0/tests/test_forms → sillo_framework-0.3.2.dev1/tests/test_helpers}/__init__.py +0 -0
  1751. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_helpers/test_async.py +0 -0
  1752. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_helpers/test_concurrency.py +0 -0
  1753. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_helpers/test_deprecation.py +0 -0
  1754. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_helpers/test_files.py +0 -0
  1755. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_helpers/test_html.py +0 -0
  1756. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_helpers/test_network.py +0 -0
  1757. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_helpers/test_retry.py +0 -0
  1758. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_helpers/test_signing.py +0 -0
  1759. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_helpers/test_strings.py +0 -0
  1760. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_helpers/test_text.py +0 -0
  1761. {sillo_framework-0.3.0/tests/test_graphql → sillo_framework-0.3.2.dev1/tests/test_http}/__init__.py +0 -0
  1762. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_http/test_accepts.py +0 -0
  1763. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_http/test_cookie_parsing.py +0 -0
  1764. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_http/test_http_client.py +0 -0
  1765. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_http/test_http_module_exports.py +0 -0
  1766. {sillo_framework-0.3.0/tests/test_hashing → sillo_framework-0.3.2.dev1/tests/test_lifecycle}/__init__.py +0 -0
  1767. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_lifecycle/test_context.py +0 -0
  1768. {sillo_framework-0.3.0/tests/test_helpers → sillo_framework-0.3.2.dev1/tests/test_mail}/__init__.py +0 -0
  1769. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_mail/test_mail_service.py +0 -0
  1770. {sillo_framework-0.3.0/tests/test_http → sillo_framework-0.3.2.dev1/tests/test_middleware}/__init__.py +0 -0
  1771. {sillo_framework-0.3.0/tests/test_internals → sillo_framework-0.3.2.dev1/tests/test_normalize}/__init__.py +0 -0
  1772. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_normalize/test_helpers.py +0 -0
  1773. {sillo_framework-0.3.0/tests/test_lifecycle → sillo_framework-0.3.2.dev1/tests/test_objects}/__init__.py +0 -0
  1774. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_objects/test_headers.py +0 -0
  1775. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_objects/test_multidict.py +0 -0
  1776. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_objects/test_url.py +0 -0
  1777. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_objects/test_url_building.py +0 -0
  1778. {sillo_framework-0.3.0/tests/test_mail → sillo_framework-0.3.2.dev1/tests/test_openapi}/__init__.py +0 -0
  1779. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_openapi/test_openapi_config.py +0 -0
  1780. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_pagination/__init__.py +0 -0
  1781. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_pagination/test_data_handlers.py +0 -0
  1782. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_pagination/test_edge_cases.py +0 -0
  1783. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_pagination/test_error_handling.py +0 -0
  1784. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_pagination/test_pagination_strategies.py +0 -0
  1785. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_pagination/test_paginators.py +0 -0
  1786. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_pagination/test_response_classes.py +0 -0
  1787. {sillo_framework-0.3.0/tests/test_middleware → sillo_framework-0.3.2.dev1/tests/test_parameters}/__init__.py +0 -0
  1788. {sillo_framework-0.3.0/tests/test_normalize → sillo_framework-0.3.2.dev1/tests/test_permissions}/__init__.py +0 -0
  1789. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_permissions/test_permissions.py +0 -0
  1790. {sillo_framework-0.3.0/tests/test_objects → sillo_framework-0.3.2.dev1/tests/test_record}/__init__.py +0 -0
  1791. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_record/test_backend_config.py +0 -0
  1792. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_record/test_collection.py +0 -0
  1793. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_record/test_events.py +0 -0
  1794. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_record/test_mass_assignment.py +0 -0
  1795. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_record/test_mixins.py +0 -0
  1796. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_record/test_model_features.py +0 -0
  1797. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_record/test_pydantic_bridge.py +0 -0
  1798. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_record/test_queries.py +0 -0
  1799. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_record/test_query_logging.py +0 -0
  1800. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_record/test_record_commands.py +0 -0
  1801. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_record/test_release_fixes.py +0 -0
  1802. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_record/test_savepoints.py +0 -0
  1803. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_record/test_seeding.py +0 -0
  1804. {sillo_framework-0.3.0/tests/test_openapi → sillo_framework-0.3.2.dev1/tests/test_redis}/__init__.py +0 -0
  1805. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_redis/test_redis_cache.py +0 -0
  1806. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_redis/test_redis_transport.py +0 -0
  1807. {sillo_framework-0.3.0/tests/test_parameters → sillo_framework-0.3.2.dev1/tests/test_requests}/__init__.py +0 -0
  1808. {sillo_framework-0.3.0/tests/test_permissions → sillo_framework-0.3.2.dev1/tests/test_responses}/__init__.py +0 -0
  1809. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_responses/test_cookie_attributes.py +0 -0
  1810. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_responses/test_json_serialization.py +0 -0
  1811. {sillo_framework-0.3.0/tests/test_record → sillo_framework-0.3.2.dev1/tests/test_routing}/__init__.py +0 -0
  1812. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_routing/test_converters.py +0 -0
  1813. {sillo_framework-0.3.0/tests/test_redis → sillo_framework-0.3.2.dev1/tests/test_security}/__init__.py +0 -0
  1814. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_security/test_ratelimit_redis_backend.py +0 -0
  1815. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_security/test_record_backend.py +0 -0
  1816. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_security/test_strategies.py +0 -0
  1817. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_sessions/__init__.py +0 -0
  1818. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_sessions/test_signed_cookies.py +0 -0
  1819. {sillo_framework-0.3.0/tests/test_requests → sillo_framework-0.3.2.dev1/tests/test_static}/__init__.py +0 -0
  1820. {sillo_framework-0.3.0/tests/test_responses → sillo_framework-0.3.2.dev1/tests/test_storage}/__init__.py +0 -0
  1821. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_storage/test_integration.py +0 -0
  1822. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_storage/test_routes.py +0 -0
  1823. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_storage/test_uploads.py +0 -0
  1824. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_supported_python_versions.py +0 -0
  1825. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_type_comments.py +0 -0
  1826. {sillo_framework-0.3.0/tests/test_routing → sillo_framework-0.3.2.dev1/tests/test_users}/__init__.py +0 -0
  1827. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_users/test_password.py +0 -0
  1828. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_users/test_user_commands.py +0 -0
  1829. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_users/test_user_model.py +0 -0
  1830. {sillo_framework-0.3.0/tests/test_security → sillo_framework-0.3.2.dev1/tests/test_validation}/__init__.py +0 -0
  1831. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_validation/conftest.py +0 -0
  1832. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_websockets/__init__.py +0 -0
  1833. {sillo_framework-0.3.0/tests/test_static → sillo_framework-0.3.2.dev1/tests/test_work}/__init__.py +0 -0
  1834. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_work/test_job_dispatch.py +0 -0
  1835. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_work/test_memory_backend.py +0 -0
  1836. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_work/test_redis_queue_reliability.py +0 -0
  1837. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_work/test_scheduler_middleware.py +0 -0
  1838. {sillo_framework-0.3.0 → sillo_framework-0.3.2.dev1}/tests/test_work/work_jobs.py +0 -0
@@ -0,0 +1,72 @@
1
+ name: Coverage
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - main
7
+ # The released 0.x line, which still takes dependency bumps and
8
+ # fixes. `main` above is the 1.0 branch.
9
+ - v0.x
10
+ pull_request:
11
+
12
+ jobs:
13
+ coverage:
14
+ runs-on: ubuntu-latest
15
+
16
+ # Without a Redis server, the cache backend and event transport
17
+ # can skip themselves quietly, making coverage look healthy while
18
+ # those paths were never actually measured.
19
+ services:
20
+ redis:
21
+ image: redis:7-alpine
22
+ ports:
23
+ - 6379:6379
24
+ options: >-
25
+ --health-cmd "redis-cli ping"
26
+ --health-interval 10s
27
+ --health-timeout 5s
28
+ --health-retries 5
29
+
30
+ env:
31
+ REDIS_URL: redis://localhost:6379/0
32
+ SILLO_TEST_REDIS_URL: redis://localhost:6379/15
33
+
34
+ steps:
35
+ - name: Checkout code
36
+ uses: actions/checkout@v4
37
+
38
+ - name: Set up Python
39
+ uses: actions/setup-python@v5
40
+ with:
41
+ python-version: "3.13"
42
+
43
+ # The install script has moved between ~/.cargo/bin and
44
+ # ~/.local/bin across uv versions. Add both locations so PATH
45
+ # does not depend on the installer layout.
46
+ - name: Install uv
47
+ run: |
48
+ curl -LsSf https://astral.sh/uv/install.sh | sh
49
+ echo "$HOME/.local/bin" >> "$GITHUB_PATH"
50
+ echo "$HOME/.cargo/bin" >> "$GITHUB_PATH"
51
+
52
+ - name: Setup Virtual Environment
53
+ run: uv venv
54
+
55
+ - name: Install dependencies
56
+ run: uv pip install -e ".[dev]"
57
+
58
+ # pytest runs under coverage so the report is scoped to the
59
+ # sillo package according to [tool.coverage] in pyproject.toml.
60
+ # fail_under is enforced here before anything reaches Codecov.
61
+ - name: Run tests under coverage
62
+ run: uv run coverage run -m pytest tests
63
+
64
+ - name: Emit coverage.xml
65
+ run: uv run coverage xml -o coverage.xml
66
+
67
+ - name: Upload coverage to Codecov
68
+ uses: codecov/codecov-action@v5
69
+ with:
70
+ token: ${{ secrets.CODECOV_TOKEN }}
71
+ files: ./coverage.xml
72
+ fail_ci_if_error: true
@@ -0,0 +1,43 @@
1
+ name: Format Python
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ # The released line. This workflow is an auto-formatter that commits and pushes,
7
+ # so it follows the branch that actually ships rather than the
8
+ # one being built.
9
+ - v0.x
10
+
11
+ permissions:
12
+ contents: write
13
+
14
+ jobs:
15
+ format:
16
+ name: Run Code Formatters
17
+ runs-on: ubuntu-latest
18
+
19
+ steps:
20
+ - name: Checkout Repository
21
+ uses: actions/checkout@v4
22
+
23
+ - name: Set up Python
24
+ uses: actions/setup-python@v5
25
+ with:
26
+ python-version: "3.x"
27
+
28
+ - name: Install Formatters
29
+ run: |
30
+ pip install ruff ty
31
+
32
+ - name: Run Ruff Linter and Auto-fix
33
+ run: |
34
+ ruff format .
35
+
36
+
37
+ - name: Commit and Push Changes
38
+ run: |
39
+ git config --global user.name 'github-actions'
40
+ git config --global user.email 'github-actions@github.com'
41
+ git add .
42
+ git commit -m 'Auto-format Python code with isort, Black, and Ruff' || echo "No changes to commit"
43
+ git push
@@ -0,0 +1,48 @@
1
+ name: Lint
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - main
7
+ # The released 0.x line, which still takes dependency bumps and
8
+ # fixes. `main` above is the 1.0 branch.
9
+ - v0.x
10
+
11
+ pull_request:
12
+
13
+ # The formatter job (format-code.yml) runs `ruff format` on main and pushes the
14
+ # result. It has never run `ruff check`, which is how 2991 lint findings
15
+ # accumulated unnoticed. This gates on them instead of rewriting the tree.
16
+ jobs:
17
+ lint:
18
+ runs-on: ubuntu-latest
19
+
20
+ steps:
21
+ - name: Checkout code
22
+ uses: actions/checkout@v4
23
+
24
+ - name: Set up Python
25
+ uses: actions/setup-python@v5
26
+ with:
27
+ python-version: "3.11"
28
+
29
+ # The install script has moved between ~/.cargo/bin and ~/.local/bin
30
+ # across uv versions. Add both so the PATH does not depend on which
31
+ # installer layout ships today.
32
+ - name: Install uv
33
+ run: |
34
+ curl -LsSf https://astral.sh/uv/install.sh | sh
35
+ echo "$HOME/.local/bin" >> $GITHUB_PATH
36
+ echo "$HOME/.cargo/bin" >> $GITHUB_PATH
37
+
38
+ - name: Setup Virtual Environment
39
+ run: uv venv
40
+
41
+ - name: Install dependencies
42
+ run: uv pip install -e ".[dev]"
43
+
44
+ - name: Lint
45
+ run: uv run ruff check sillo
46
+
47
+ - name: Check formatting
48
+ run: uv run ruff format --check sillo
@@ -0,0 +1,58 @@
1
+ name: Merge to Main
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ # The released line. This workflow is cz bump, which tags and so publishes to PyPI,
7
+ # so it follows the branch that actually ships rather than the
8
+ # one being built.
9
+ - v0.x
10
+
11
+ jobs:
12
+ release:
13
+ runs-on: ubuntu-latest
14
+ permissions:
15
+ contents: write
16
+ id-token: write
17
+ steps:
18
+ - name: Checkout Repository
19
+ uses: actions/checkout@v4
20
+ with:
21
+ fetch-depth: 0
22
+ token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
23
+
24
+ - name: Setup Python
25
+ uses: actions/setup-python@v5
26
+ with:
27
+ python-version: "3.11"
28
+
29
+ - name: Install uv
30
+ run: |
31
+ curl -LsSf https://astral.sh/uv/install.sh | sh
32
+ echo "$HOME/.cargo/bin" >> $GITHUB_PATH
33
+
34
+ - name: Setup Virtual Environment
35
+ run: uv venv
36
+
37
+ - name: Install dependencies
38
+ run: uv pip install commitizen
39
+
40
+ - name: Configure Git
41
+ run: |
42
+ git config --global user.name "github-actions[bot]"
43
+ git config --global user.email "github-actions[bot]@users.noreply.github.com"
44
+
45
+ - name: Check for version bump
46
+ id: check_version
47
+ run: |
48
+ cz check --rev-range HEAD~1..HEAD || echo "no_version_bump=true" >> $GITHUB_OUTPUT
49
+
50
+ - name: Bump version and update changelog
51
+ if: steps.check_version.outputs.no_version_bump != 'true'
52
+ run: |
53
+ cz bump --yes
54
+
55
+ - name: Push changes
56
+ if: steps.check_version.outputs.no_version_bump != 'true'
57
+ run: |
58
+ git push --follow-tags
@@ -0,0 +1,88 @@
1
+ name: Run Tests
2
+ on:
3
+ push:
4
+ branches:
5
+ - main
6
+ # The released 0.x line, which still takes dependency bumps and
7
+ # fixes. `main` above is the 1.0 branch.
8
+ - v0.x
9
+
10
+ pull_request:
11
+
12
+ jobs:
13
+ test:
14
+ runs-on: ubuntu-latest
15
+ # 3.15 runs but does not gate the branch, because a beta can regress under
16
+ # us and that is not a reason to block a merge.
17
+ #
18
+ # The suite does pass on it: 4,738 tests against 3.15.0b4 with every extra
19
+ # installed, which is what the `Programming Language :: Python :: 3.15`
20
+ # classifier rests on. The second half of the reason this used to give --
21
+ # that pydantic-core had no 3.15 wheel, so the leg compiled Rust and was
22
+ # slow -- is no longer true; it installs from a wheel.
23
+ continue-on-error: ${{ matrix.python-version == '3.15' }}
24
+ strategy:
25
+ # One version failing should not cancel the others. Knowing 3.14 broke
26
+ # while 3.10 is fine is most of the diagnosis.
27
+ fail-fast: false
28
+ matrix:
29
+ python-version: ["3.10", "3.11", "3.12", "3.13", "3.14", "3.15"]
30
+
31
+ # Without a Redis server the cache backend and the transport skip
32
+ # themselves, quietly, on every version — so two shipped features were
33
+ # covered by tests that never ran anywhere.
34
+ services:
35
+ redis:
36
+ image: redis:7-alpine
37
+ ports:
38
+ - 6379:6379
39
+ options: >-
40
+ --health-cmd "redis-cli ping"
41
+ --health-interval 10s
42
+ --health-timeout 5s
43
+ --health-retries 5
44
+
45
+ env:
46
+ REDIS_URL: redis://localhost:6379/0
47
+ SILLO_TEST_REDIS_URL: redis://localhost:6379/15
48
+
49
+ steps:
50
+ - name: Checkout code
51
+ uses: actions/checkout@v4
52
+
53
+ - name: Set up Python
54
+ uses: actions/setup-python@v5
55
+ with:
56
+ python-version: ${{ matrix.python-version }}
57
+ # Without this, setup-python cannot resolve 3.15 while it is a beta.
58
+ allow-prereleases: true
59
+
60
+ # The install script has moved between ~/.cargo/bin and ~/.local/bin
61
+ # across uv versions. Add both so the PATH does not depend on which
62
+ # installer layout ships today.
63
+ - name: Install uv
64
+ run: |
65
+ curl -LsSf https://astral.sh/uv/install.sh | sh
66
+ echo "$HOME/.local/bin" >> $GITHUB_PATH
67
+ echo "$HOME/.cargo/bin" >> $GITHUB_PATH
68
+
69
+ - name: Setup Virtual Environment
70
+ run: uv venv
71
+
72
+ - name: Install dependencies
73
+ run: uv pip install -e ".[dev]"
74
+
75
+ - name: Run Tests
76
+ run: uv run pytest tests
77
+
78
+ # A skip is how these tests report "no Redis here", which is exactly the
79
+ # failure this job exists to prevent. Assert they actually ran.
80
+ - name: The Redis tests must not have skipped
81
+ run: |
82
+ uv run pytest tests/test_redis tests/test_cache/test_redis_backend.py \
83
+ -q --tb=short -p no:randomly -rs > redis.log 2>&1 || (cat redis.log; exit 1)
84
+ cat redis.log
85
+ if grep -qi "no Redis" redis.log; then
86
+ echo "::error::Redis tests skipped — the service container is not reachable."
87
+ exit 1
88
+ fi
@@ -0,0 +1,44 @@
1
+ name: Type Check
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - main
7
+ # The released 0.x line, which still takes dependency bumps and
8
+ # fixes. `main` above is the 1.0 branch.
9
+ - v0.x
10
+ pull_request:
11
+
12
+ jobs:
13
+ type-check:
14
+ runs-on: ubuntu-latest
15
+ # See run-tests.yaml: 3.15 is informational while it is a beta.
16
+ continue-on-error: ${{ matrix.python-version == '3.15' }}
17
+ strategy:
18
+ fail-fast: false
19
+ matrix:
20
+ python-version: ["3.10", "3.11", "3.12", "3.13", "3.14", "3.15"]
21
+
22
+ steps:
23
+ - name: Checkout code
24
+ uses: actions/checkout@v4
25
+
26
+ - name: Set up Python
27
+ uses: actions/setup-python@v5
28
+ with:
29
+ python-version: ${{ matrix.python-version }}
30
+ allow-prereleases: true
31
+
32
+ - name: Install uv
33
+ run: |
34
+ curl -LsSf https://astral.sh/uv/install.sh | sh
35
+ echo "$HOME/.cargo/bin" >> $GITHUB_PATH
36
+
37
+ - name: Setup Virtual Environment
38
+ run: uv venv
39
+
40
+ - name: Install dependencies
41
+ run: uv pip install -e ".[dev]"
42
+
43
+ - name: Run ty
44
+ run: uv run ty check sillo