matrx-orm 3.0.31__tar.gz → 3.1.0__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.
- matrx_orm-3.1.0/.gitignore +271 -0
- matrx_orm-3.1.0/BASE_CLASS_METHODS.md +743 -0
- matrx_orm-3.1.0/CLAUDE.md +101 -0
- matrx_orm-3.1.0/MODEL_API.md +312 -0
- matrx_orm-3.1.0/PKG-INFO +136 -0
- matrx_orm-3.1.0/README.md +99 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/__init__.py +342 -149
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/adapters/__init__.py +5 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/adapters/async_postgresql.py +2 -1
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/adapters/base_adapter.py +7 -1
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/adapters/postgrest_client_adapter.py +25 -14
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/adapters/supabase_adapter.py +4 -3
- matrx_orm-3.1.0/matrx_orm/admin/__init__.py +3 -0
- matrx_orm-3.1.0/matrx_orm/admin/router.py +885 -0
- matrx_orm-3.1.0/matrx_orm/associations.py +346 -0
- matrx_orm-3.1.0/matrx_orm/cache_debug.py +120 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/client/postgres_connection.py +42 -8
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/client/postgrest.py +4 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/client/supabase_auth.py +2 -2
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/client/supabase_config.py +18 -12
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/client/supabase_manager.py +1 -1
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/core/MODULE_README.md +6 -0
- matrx_orm-3.1.0/matrx_orm/core/async_db_manager.py +1102 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/core/base.py +679 -117
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/core/config.py +261 -38
- matrx_orm-3.1.0/matrx_orm/core/db_function.py +193 -0
- matrx_orm-3.1.0/matrx_orm/core/diagnostics.py +115 -0
- matrx_orm-3.1.0/matrx_orm/core/expressions.py +1400 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/core/extended.py +548 -273
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/core/fields.py +285 -83
- matrx_orm-3.1.0/matrx_orm/core/introspection.py +121 -0
- matrx_orm-3.1.0/matrx_orm/core/listen.py +115 -0
- matrx_orm-3.1.0/matrx_orm/core/loop_filters.py +95 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/core/model_dto.py +1 -1
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/core/pydantic_bridge.py +122 -0
- matrx_orm-3.1.0/matrx_orm/core/registry.py +315 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/core/relations.py +36 -4
- matrx_orm-3.1.0/matrx_orm/core/resilience.py +132 -0
- matrx_orm-3.1.0/matrx_orm/core/rls_session.py +98 -0
- matrx_orm-3.1.0/matrx_orm/core/transaction.py +472 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/core/write_queue.py +20 -6
- matrx_orm-3.1.0/matrx_orm/entity.py +240 -0
- matrx_orm-3.1.0/matrx_orm/error_handling.py +135 -0
- matrx_orm-3.1.0/matrx_orm/exceptions.py +2002 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/extended/app_error_handler.py +75 -15
- matrx_orm-3.1.0/matrx_orm/operations/bulk_update_values.py +151 -0
- matrx_orm-3.1.0/matrx_orm/operations/conflict.py +87 -0
- matrx_orm-3.1.0/matrx_orm/operations/conflict_writes.py +503 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/operations/create.py +48 -5
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/operations/delete.py +9 -3
- matrx_orm-3.1.0/matrx_orm/operations/dynamic_admin.py +227 -0
- matrx_orm-3.1.0/matrx_orm/operations/queue_claim.py +193 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/operations/read.py +3 -2
- matrx_orm-3.1.0/matrx_orm/operations/staging_load.py +375 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/operations/update.py +26 -9
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/python_sql/db_objects.py +11 -3
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/python_sql/table_detailed_relationships.py +25 -2
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/query/MODULE_README.md +2 -0
- matrx_orm-3.1.0/matrx_orm/query/builder.py +1047 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/query/executor.py +648 -151
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/schema_builder/columns.py +137 -94
- matrx_orm-3.1.0/matrx_orm/schema_builder/common.py +198 -0
- matrx_orm-3.1.0/matrx_orm/schema_builder/entity_capabilities.py +142 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/schema_builder/helpers/base_generators.py +30 -23
- matrx_orm-3.1.0/matrx_orm/schema_builder/package_wiring.py +461 -0
- matrx_orm-3.1.0/matrx_orm/schema_builder/runner.py +461 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/schema_builder/schema.py +313 -79
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/schema_builder/schema_manager.py +10 -3
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/schema_builder/tables.py +150 -54
- matrx_orm-3.1.0/matrx_orm/schema_builder/views.py +180 -0
- matrx_orm-3.1.0/matrx_orm/session/README.md +220 -0
- matrx_orm-3.1.0/matrx_orm/session/__init__.py +128 -0
- matrx_orm-3.1.0/matrx_orm/session/coalesce.py +250 -0
- matrx_orm-3.1.0/matrx_orm/session/dag.py +158 -0
- matrx_orm-3.1.0/matrx_orm/session/errors.py +73 -0
- matrx_orm-3.1.0/matrx_orm/session/fallback.py +661 -0
- matrx_orm-3.1.0/matrx_orm/session/flush.py +139 -0
- matrx_orm-3.1.0/matrx_orm/session/lifecycle.py +640 -0
- matrx_orm-3.1.0/matrx_orm/session/managed.py +591 -0
- matrx_orm-3.1.0/matrx_orm/session/op.py +195 -0
- matrx_orm-3.1.0/matrx_orm/session/reads.py +197 -0
- matrx_orm-3.1.0/matrx_orm/session/session.py +655 -0
- matrx_orm-3.1.0/matrx_orm/session/telemetry.py +171 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/state.py +99 -39
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/utils/sql_utils.py +26 -7
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/pyproject.toml +27 -56
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/scripts/git-branches.sh +1 -1
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/scripts/publish.sh +2 -2
- matrx_orm-3.1.0/scripts/release.sh +5 -0
- matrx_orm-3.1.0/tests/level1/test_admin_db_columns.py +86 -0
- matrx_orm-3.1.0/tests/level1/test_admin_search_sentinels.py +20 -0
- matrx_orm-3.1.0/tests/level1/test_advisory_lock.py +129 -0
- matrx_orm-3.1.0/tests/level1/test_agent_message.py +133 -0
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/level1/test_api_handlers.py +3 -2
- matrx_orm-3.1.0/tests/level1/test_array_agg_order_by.py +44 -0
- matrx_orm-3.1.0/tests/level1/test_associations.py +291 -0
- matrx_orm-3.1.0/tests/level1/test_bulk_update_by_pk.py +113 -0
- matrx_orm-3.1.0/tests/level1/test_bulk_upsert_increment_set_fields.py +173 -0
- matrx_orm-3.1.0/tests/level1/test_cache_debug.py +37 -0
- matrx_orm-3.1.0/tests/level1/test_call_function.py +208 -0
- matrx_orm-3.1.0/tests/level1/test_case_when.py +266 -0
- matrx_orm-3.1.0/tests/level1/test_composite_pk_filter.py +86 -0
- matrx_orm-3.1.0/tests/level1/test_conflict_target.py +191 -0
- matrx_orm-3.1.0/tests/level1/test_conflict_writes.py +461 -0
- matrx_orm-3.1.0/tests/level1/test_connection_poison_guard.py +106 -0
- matrx_orm-3.1.0/tests/level1/test_count_composite_distinct.py +45 -0
- matrx_orm-3.1.0/tests/level1/test_db_function_field.py +124 -0
- matrx_orm-3.1.0/tests/level1/test_dirty_tracking.py +181 -0
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/level1/test_exceptions.py +98 -21
- matrx_orm-3.1.0/tests/level1/test_execute_admin_sql.py +142 -0
- matrx_orm-3.1.0/tests/level1/test_expression_primitives.py +264 -0
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/level1/test_fields.py +162 -13
- matrx_orm-3.1.0/tests/level1/test_filter_jsonb_agg_array_index.py +71 -0
- matrx_orm-3.1.0/tests/level1/test_filter_raw.py +198 -0
- matrx_orm-3.1.0/tests/level1/test_from_alias.py +152 -0
- matrx_orm-3.1.0/tests/level1/test_fts.py +110 -0
- matrx_orm-3.1.0/tests/level1/test_func_expression_args.py +53 -0
- matrx_orm-3.1.0/tests/level1/test_having_annotate_alias.py +262 -0
- matrx_orm-3.1.0/tests/level1/test_insert_ignore_and_admin_primitives.py +465 -0
- matrx_orm-3.1.0/tests/level1/test_introspect_rls_policies.py +79 -0
- matrx_orm-3.1.0/tests/level1/test_join_and_aggregate.py +391 -0
- matrx_orm-3.1.0/tests/level1/test_listen_notify.py +115 -0
- matrx_orm-3.1.0/tests/level1/test_managed_write_guard.py +104 -0
- matrx_orm-3.1.0/tests/level1/test_matrx_entity.py +140 -0
- matrx_orm-3.1.0/tests/level1/test_order_by_expression.py +153 -0
- matrx_orm-3.1.0/tests/level1/test_patch_jsonb_path.py +246 -0
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/level1/test_postgrest_filters.py +5 -3
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/level1/test_query_builder.py +11 -5
- matrx_orm-3.1.0/tests/level1/test_query_error_detail.py +149 -0
- matrx_orm-3.1.0/tests/level1/test_query_executor_sql.py +397 -0
- matrx_orm-3.1.0/tests/level1/test_query_timeout.py +155 -0
- matrx_orm-3.1.0/tests/level1/test_querybuilder_mutation_semantics.py +114 -0
- matrx_orm-3.1.0/tests/level1/test_queue_claim.py +184 -0
- matrx_orm-3.1.0/tests/level1/test_registry.py +122 -0
- matrx_orm-3.1.0/tests/level1/test_registry_multi_database.py +242 -0
- matrx_orm-3.1.0/tests/level1/test_registry_multi_schema.py +168 -0
- matrx_orm-3.1.0/tests/level1/test_resilience.py +89 -0
- matrx_orm-3.1.0/tests/level1/test_schema_exists.py +78 -0
- matrx_orm-3.1.0/tests/level1/test_session_advisory_lock.py +91 -0
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/level1/test_state_cache.py +10 -4
- matrx_orm-3.1.0/tests/level1/test_subquery_filter_raw.py +120 -0
- matrx_orm-3.1.0/tests/level1/test_subquery_in_filter.py +100 -0
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/level1/test_supabase_config.py +13 -13
- matrx_orm-3.1.0/tests/level1/test_update_case_expression.py +118 -0
- matrx_orm-3.1.0/tests/level1/test_update_subquery.py +92 -0
- matrx_orm-3.1.0/tests/level1/test_upsert_with_conflict.py +133 -0
- matrx_orm-3.1.0/tests/level1/test_values_jsonb_decode.py +67 -0
- matrx_orm-3.1.0/tests/level1/test_watched_lifecycle.py +366 -0
- matrx_orm-3.1.0/tests/level1/test_write_retry_semantics.py +277 -0
- matrx_orm-3.1.0/tests/level2/test_bulk_ops.py +173 -0
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/level2/test_crud.py +17 -1
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/level2/test_manager.py +1 -1
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/sample_project/README.md +2 -2
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/sample_project/matrx_orm.yaml +19 -0
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/sample_project/test_schema_generation.py +13 -6
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/sample_project_desktop/client_supabase_example.py +2 -2
- matrx_orm-3.1.0/tests/schema/test_composite_pk_fk_generation.py +154 -0
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/schema/test_generate_schema.py +67 -2
- matrx_orm-3.1.0/tests/schema/test_multi_schema_output.py +198 -0
- matrx_orm-3.1.0/tests/session/conftest.py +129 -0
- matrx_orm-3.1.0/tests/session/test_capture_poison_proof.py +36 -0
- matrx_orm-3.1.0/tests/session/test_coalesce.py +205 -0
- matrx_orm-3.1.0/tests/session/test_dag.py +81 -0
- matrx_orm-3.1.0/tests/session/test_disk_spill_fallback.py +207 -0
- matrx_orm-3.1.0/tests/session/test_flush_individual_fallback.py +267 -0
- matrx_orm-3.1.0/tests/session/test_governed_write.py +80 -0
- matrx_orm-3.1.0/tests/session/test_managed.py +253 -0
- matrx_orm-3.1.0/tests/session/test_op_enqueue_site.py +21 -0
- matrx_orm-3.1.0/tests/session/test_reads.py +120 -0
- matrx_orm-3.1.0/tests/session/test_session.py +303 -0
- matrx_orm-3.1.0/tests/test_database_name_alias.py +156 -0
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/test_model_cls_refactor.py +20 -8
- matrx_orm-3.1.0/tests/test_sql_param_casts.py +50 -0
- matrx_orm-3.0.31/.arman/pending/versioning/INITIAL.md +0 -218
- matrx_orm-3.0.31/.env.example +0 -11
- matrx_orm-3.0.31/.github/workflows/publish.yml +0 -54
- matrx_orm-3.0.31/.gitignore +0 -212
- matrx_orm-3.0.31/.python-version +0 -1
- matrx_orm-3.0.31/.vscode/settings.json +0 -10
- matrx_orm-3.0.31/CLAUDE.md +0 -316
- matrx_orm-3.0.31/DESKTOP-API-INTEGRATION.md +0 -385
- matrx_orm-3.0.31/MIGRATIONS.md +0 -84
- matrx_orm-3.0.31/MODULE_README.md +0 -1138
- matrx_orm-3.0.31/PKG-INFO +0 -1898
- matrx_orm-3.0.31/README.md +0 -1855
- matrx_orm-3.0.31/RESERVED_NAMES.md +0 -195
- matrx_orm-3.0.31/TASKS-TEMPLATE.md +0 -87
- matrx_orm-3.0.31/TASKS.md +0 -86
- matrx_orm-3.0.31/TRANSACTION_POOLER_PLAN.MD +0 -291
- matrx_orm-3.0.31/WRITE-QUEUE-UPGRADE.md +0 -205
- matrx_orm-3.0.31/extended_jan5_backup.py +0 -1388
- matrx_orm-3.0.31/release.sh +0 -139
- matrx_orm-3.0.31/scripts/release.sh +0 -217
- matrx_orm-3.0.31/src/MODULE_README.md +0 -579
- matrx_orm-3.0.31/src/matrx_orm/core/async_db_manager.py +0 -440
- matrx_orm-3.0.31/src/matrx_orm/core/expressions.py +0 -764
- matrx_orm-3.0.31/src/matrx_orm/core/registry.py +0 -49
- matrx_orm-3.0.31/src/matrx_orm/core/transaction.py +0 -172
- matrx_orm-3.0.31/src/matrx_orm/error_handling.py +0 -29
- matrx_orm-3.0.31/src/matrx_orm/exceptions.py +0 -1065
- matrx_orm-3.0.31/src/matrx_orm/query/builder.py +0 -514
- matrx_orm-3.0.31/src/matrx_orm/schema_builder/common.py +0 -51
- matrx_orm-3.0.31/src/matrx_orm/schema_builder/runner.py +0 -258
- matrx_orm-3.0.31/src/matrx_orm/schema_builder/views.py +0 -85
- matrx_orm-3.0.31/tests/level1/test_query_executor_sql.py +0 -167
- matrx_orm-3.0.31/tests/level1/test_registry.py +0 -70
- matrx_orm-3.0.31/tests/level2/test_bulk_ops.py +0 -70
- matrx_orm-3.0.31/uv.lock +0 -1980
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/database/orm/extended/managers/ai_model_base.py +0 -0
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/docs/migrations.md +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/MODULE_README.md +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/adapters/MODULE_README.md +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/adapters/postgresql.py +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/api/__init__.py +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/api/auth.py +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/api/config.py +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/api/handlers.py +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/api/protocol.py +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/api/server.py +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/client/MODULE_README.md +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/client/__init__.py +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/core/EXTENDED-TASK.md +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/core/RELATIONS-TASKS.md +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/core/TASKS.md +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/core/__init__.py +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/core/model_view.py +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/core/paginator.py +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/core/signals.py +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/core/types.py +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/extended/__init__.py +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/middleware/__init__.py +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/middleware/base.py +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/migrations/MODULE_README.md +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/migrations/__init__.py +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/migrations/cli.py +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/migrations/ddl.py +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/migrations/diff.py +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/migrations/executor.py +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/migrations/integration.py +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/migrations/loader.py +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/migrations/operations.py +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/migrations/state.py +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/migrations/table_filter.py +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/operations/MODULE_README.md +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/operations/__init__.py +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/py.typed +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/python_sql/MODULE_README.md +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/python_sql/__init__.py +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/python_sql/table_typescript_relationship.py +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/query/__init__.py +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/schema_builder/MODULE_README.md +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/schema_builder/__init__.py +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/schema_builder/code_handler.py +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/schema_builder/diff_preview.py +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/schema_builder/generator.py +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/schema_builder/helpers/__init__.py +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/schema_builder/helpers/entity_generators.py +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/schema_builder/helpers/git_checker.py +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/schema_builder/relationships.py +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/sql_executor/MODULE_README.md +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/sql_executor/__init__.py +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/sql_executor/executor.py +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/sql_executor/queries.py +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/sql_executor/registry.py +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/sql_executor/types.py +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/sql_executor/utils.py +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/utils/__init__.py +0 -0
- {matrx_orm-3.0.31/src → matrx_orm-3.1.0}/matrx_orm/utils/type_converters.py +0 -0
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/MODULE_README.md +0 -0
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/__init__.py +0 -0
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/conftest.py +0 -0
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/level1/MODULE_README.md +0 -0
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/level1/__init__.py +0 -0
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/level1/test_api_auth.py +0 -0
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/level1/test_api_config.py +0 -0
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/level1/test_api_protocol.py +0 -0
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/level1/test_config.py +0 -0
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/level1/test_ddl_generator.py +0 -0
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/level1/test_migration_diff_types.py +0 -0
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/level1/test_migration_loader.py +0 -0
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/level1/test_model_instance.py +0 -0
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/level1/test_model_meta.py +0 -0
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/level1/test_relations.py +0 -0
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/level1/test_supabase_auth.py +0 -0
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/level2/MODULE_README.md +0 -0
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/level2/__init__.py +0 -0
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/level2/conftest.py +0 -0
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/level2/test_cache_integration.py +0 -0
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/level2/test_foreign_keys.py +0 -0
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/level2/test_m2m.py +0 -0
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/level2/test_migrations_live.py +0 -0
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/level2/test_query_execution.py +0 -0
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/level2/test_schema_diff.py +0 -0
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/sample_project/.env.example +0 -0
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/sample_project/__init__.py +0 -0
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/sample_project/generate.py +0 -0
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/sample_project/generated/.gitkeep +0 -0
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/sample_project_desktop/.env.example +0 -0
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/sample_project_desktop/README.md +0 -0
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/sample_project_desktop/__init__.py +0 -0
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/sample_project_desktop/client_example.py +0 -0
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/sample_project_desktop/client_example.ts +0 -0
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/sample_project_desktop/server.py +0 -0
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/schema/entity_tests.py +0 -0
- {matrx_orm-3.0.31 → matrx_orm-3.1.0}/tests/schema/test_base_generation.py +0 -0
- /matrx_orm-3.0.31/main.py → /matrx_orm-3.1.0/tests/session/__init__.py +0 -0
|
@@ -0,0 +1,271 @@
|
|
|
1
|
+
*.pyc
|
|
2
|
+
secrets/
|
|
3
|
+
ignore/
|
|
4
|
+
temp/
|
|
5
|
+
logs/
|
|
6
|
+
# The broad `logs/` rule above is for RUNTIME log output, but it also matched
|
|
7
|
+
# the dashboard's SOURCE directory and silently swallowed an entire feature's
|
|
8
|
+
# files (only the pre-existing index.tsx stayed tracked), breaking the prod
|
|
9
|
+
# Docker build with "Could not resolve ./structured-tab". Re-include the source.
|
|
10
|
+
!apps/dashboard/src/features/logs/
|
|
11
|
+
!apps/dashboard/src/features/logs/**
|
|
12
|
+
todo
|
|
13
|
+
text_notes/
|
|
14
|
+
aidream/secrets/2.env
|
|
15
|
+
automation_matrix/matrix_processing/temp/*
|
|
16
|
+
cd
|
|
17
|
+
# Byte-compiled / optimized / DLL files
|
|
18
|
+
__pycache__/
|
|
19
|
+
*.py[cod]
|
|
20
|
+
*$py.class
|
|
21
|
+
|
|
22
|
+
# C extensions
|
|
23
|
+
*.so
|
|
24
|
+
.venv/
|
|
25
|
+
|
|
26
|
+
# Distribution / packaging
|
|
27
|
+
.Python
|
|
28
|
+
build/
|
|
29
|
+
develop-eggs/
|
|
30
|
+
dist/
|
|
31
|
+
downloads/
|
|
32
|
+
eggs/
|
|
33
|
+
.eggs/
|
|
34
|
+
lib/
|
|
35
|
+
lib64/
|
|
36
|
+
# The blanket lib/ rule above is from the standard Python .gitignore template
|
|
37
|
+
# and was silently swallowing TS source under the SPA `src/lib/` folders.
|
|
38
|
+
# Re-allow them explicitly so frontend builds don't ship without their lib layer.
|
|
39
|
+
!apps/dashboard/src/lib/
|
|
40
|
+
!apps/dashboard/src/lib/**
|
|
41
|
+
!apps/workflow-studio/src/lib/
|
|
42
|
+
!apps/workflow-studio/src/lib/**
|
|
43
|
+
parts/
|
|
44
|
+
sdist/
|
|
45
|
+
var/
|
|
46
|
+
wheels/
|
|
47
|
+
share/python-wheels/
|
|
48
|
+
*.egg-info/
|
|
49
|
+
.installed.cfg
|
|
50
|
+
*.egg
|
|
51
|
+
MANIFEST
|
|
52
|
+
|
|
53
|
+
# PyInstaller
|
|
54
|
+
# Usually these files are written by a python script from a template
|
|
55
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
56
|
+
*.manifest
|
|
57
|
+
*.spec
|
|
58
|
+
|
|
59
|
+
# Installer logs
|
|
60
|
+
pip-log.txt
|
|
61
|
+
pip-delete-this-directory.txt
|
|
62
|
+
|
|
63
|
+
# Unit test / coverage reports
|
|
64
|
+
ai/tests/clean_response.json
|
|
65
|
+
ai/tests/cx_storage_response.json
|
|
66
|
+
ai/tests/execution_test.py
|
|
67
|
+
ai/tests/final_response.json
|
|
68
|
+
htmlcov/
|
|
69
|
+
.tox/
|
|
70
|
+
.nox/
|
|
71
|
+
.coverage
|
|
72
|
+
.coverage.*
|
|
73
|
+
.cache
|
|
74
|
+
nosetests.xml
|
|
75
|
+
coverage.xml
|
|
76
|
+
*.cover
|
|
77
|
+
*.py,cover
|
|
78
|
+
.hypothesis/
|
|
79
|
+
.pytest_cache/
|
|
80
|
+
cover/
|
|
81
|
+
|
|
82
|
+
# Translations
|
|
83
|
+
*.mo
|
|
84
|
+
*.pot
|
|
85
|
+
|
|
86
|
+
# Django stuff:
|
|
87
|
+
*.log
|
|
88
|
+
local_settings.py
|
|
89
|
+
db.sqlite3
|
|
90
|
+
db.sqlite3-journal
|
|
91
|
+
|
|
92
|
+
# Flask stuff:
|
|
93
|
+
instance/
|
|
94
|
+
.webassets-cache
|
|
95
|
+
|
|
96
|
+
# Scrapy stuff:
|
|
97
|
+
.scrapy
|
|
98
|
+
|
|
99
|
+
# Sphinx documentation
|
|
100
|
+
docs/_build/
|
|
101
|
+
|
|
102
|
+
# PyBuilder
|
|
103
|
+
.pybuilder/
|
|
104
|
+
target/
|
|
105
|
+
|
|
106
|
+
# Jupyter Notebook
|
|
107
|
+
.ipynb_checkpoints
|
|
108
|
+
|
|
109
|
+
# IPython
|
|
110
|
+
profile_default/
|
|
111
|
+
ipython_config.py
|
|
112
|
+
|
|
113
|
+
# pyenv
|
|
114
|
+
# For a library or package, you might want to ignore these files since the code is
|
|
115
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
116
|
+
# .python-version
|
|
117
|
+
|
|
118
|
+
# pipenv
|
|
119
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
120
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
121
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
122
|
+
# install all needed dependencies.
|
|
123
|
+
#Pipfile.lock
|
|
124
|
+
|
|
125
|
+
# poetry
|
|
126
|
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
|
127
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
128
|
+
# commonly ignored for libraries.
|
|
129
|
+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
|
130
|
+
|
|
131
|
+
# pdm
|
|
132
|
+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
|
133
|
+
#pdm.lock
|
|
134
|
+
# pdm stores project-wide configurations in .pdm.toml, but it is recommended to not include it
|
|
135
|
+
# in version control.
|
|
136
|
+
# https://pdm.fming.dev/#use-with-ide
|
|
137
|
+
.pdm.toml
|
|
138
|
+
|
|
139
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
|
140
|
+
__pypackages__/
|
|
141
|
+
|
|
142
|
+
# Celery stuff
|
|
143
|
+
celerybeat-schedule
|
|
144
|
+
celerybeat.pid
|
|
145
|
+
|
|
146
|
+
# SageMath parsed files
|
|
147
|
+
*.sage.py
|
|
148
|
+
|
|
149
|
+
# Environments
|
|
150
|
+
.env
|
|
151
|
+
.env_remote
|
|
152
|
+
.venv
|
|
153
|
+
env/
|
|
154
|
+
venv/
|
|
155
|
+
ENV/
|
|
156
|
+
env.bak/
|
|
157
|
+
venv.bak/
|
|
158
|
+
.env.armanonly
|
|
159
|
+
|
|
160
|
+
# Spyder project settings
|
|
161
|
+
.spyderproject
|
|
162
|
+
.spyproject
|
|
163
|
+
|
|
164
|
+
# Rope project settings
|
|
165
|
+
.ropeproject
|
|
166
|
+
|
|
167
|
+
# mkdocs documentation
|
|
168
|
+
/site
|
|
169
|
+
|
|
170
|
+
# mypy
|
|
171
|
+
.mypy_cache/
|
|
172
|
+
.dmypy.json
|
|
173
|
+
dmypy.json
|
|
174
|
+
|
|
175
|
+
# Pyre type checker
|
|
176
|
+
.pyre/
|
|
177
|
+
|
|
178
|
+
# random armani files
|
|
179
|
+
/armani_dev/secrets/
|
|
180
|
+
/armani/
|
|
181
|
+
/_armani/
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
# pytype static type analyzer
|
|
186
|
+
.pytype/
|
|
187
|
+
|
|
188
|
+
# Cython debug symbols
|
|
189
|
+
cython_debug/
|
|
190
|
+
|
|
191
|
+
.idea/
|
|
192
|
+
.vscode/
|
|
193
|
+
/node_modules/
|
|
194
|
+
|
|
195
|
+
# Frontend pnpm workspace (apps/) — node_modules at the workspace root and any
|
|
196
|
+
# member, plus Vite caches and build output. The unified lockfile (apps/pnpm-lock.yaml)
|
|
197
|
+
# IS committed; everything below is regenerated.
|
|
198
|
+
node_modules/
|
|
199
|
+
apps/**/.vite/
|
|
200
|
+
apps/**/dist/
|
|
201
|
+
.vite/
|
|
202
|
+
|
|
203
|
+
dump.rdb
|
|
204
|
+
|
|
205
|
+
frontend/
|
|
206
|
+
|
|
207
|
+
# AME Temp Files and directory structure
|
|
208
|
+
# Ignore all files in the temp directory and its subdirectories
|
|
209
|
+
/temp/**/*
|
|
210
|
+
/tmp/**/*
|
|
211
|
+
|
|
212
|
+
# Allow .gitkeep files to retain directory structure
|
|
213
|
+
!/temp/**/.gitkeep
|
|
214
|
+
!/tmp/**/.gitkeep
|
|
215
|
+
|
|
216
|
+
# Armani
|
|
217
|
+
.history*
|
|
218
|
+
.history/
|
|
219
|
+
local_data/
|
|
220
|
+
local_reports_data/
|
|
221
|
+
webscraper/quick_scrapes/temp/
|
|
222
|
+
automation_matrix/ai_apis/fireworks/_dev/*
|
|
223
|
+
automation_matrix/ai_apis/fireworks/_dev/fireworks_sample.py
|
|
224
|
+
*.pdf
|
|
225
|
+
*.flac
|
|
226
|
+
*.mp3
|
|
227
|
+
*.wav
|
|
228
|
+
miniconda.sh
|
|
229
|
+
/database/python_sql/temp_data/
|
|
230
|
+
.history*
|
|
231
|
+
.history/
|
|
232
|
+
.history/
|
|
233
|
+
|
|
234
|
+
_dev/
|
|
235
|
+
/_dev/
|
|
236
|
+
requirements_filtered.txt
|
|
237
|
+
|
|
238
|
+
# matrx-dev-tools backups
|
|
239
|
+
.env-backups/
|
|
240
|
+
# Matrx Ship config (contains API key)
|
|
241
|
+
.matrx-ship.json
|
|
242
|
+
|
|
243
|
+
# Matrx config (contains API keys)
|
|
244
|
+
.matrx.json
|
|
245
|
+
.matrx-tools.conf
|
|
246
|
+
|
|
247
|
+
# Claude Code local worktrees and per-user settings
|
|
248
|
+
.claude/worktrees/
|
|
249
|
+
.claude/settings.local.json
|
|
250
|
+
|
|
251
|
+
# Append-only snapshots from matrx_utils.update_history (unbounded; do not commit)
|
|
252
|
+
common/utils/data_in_code/data_history.json
|
|
253
|
+
packages/matrx-utils/matrx_utils/data_in_code/data_history.json
|
|
254
|
+
|
|
255
|
+
# Tool-dispatch debug logs — one file per server start, never committed
|
|
256
|
+
.matrx-debug/
|
|
257
|
+
|
|
258
|
+
# macOS Finder metadata
|
|
259
|
+
.DS_Store
|
|
260
|
+
**/.DS_Store
|
|
261
|
+
|
|
262
|
+
# Environment files
|
|
263
|
+
.env
|
|
264
|
+
.env.*
|
|
265
|
+
*.env
|
|
266
|
+
*.env.*
|
|
267
|
+
|
|
268
|
+
# Keep safe templates trackable
|
|
269
|
+
!.env.example
|
|
270
|
+
!.env.sample
|
|
271
|
+
!.env.template
|