mage-ai 0.9.75__py3-none-any.whl → 0.9.77__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of mage-ai might be problematic. Click here for more details.
- mage_ai/api/policies/PipelineSchedulePolicy.py +1 -0
- mage_ai/api/presenters/PipelineSchedulePresenter.py +11 -2
- mage_ai/api/resources/GitFileResource.py +8 -0
- mage_ai/api/resources/PipelineScheduleResource.py +11 -3
- mage_ai/api/resources/PipelineTriggerResource.py +3 -1
- mage_ai/api/resources/SessionResource.py +2 -2
- mage_ai/api/resources/SyncResource.py +1 -1
- mage_ai/api/resources/UserResource.py +1 -1
- mage_ai/cli/main.py +6 -1
- mage_ai/data_integrations/destinations/constants.py +2 -0
- mage_ai/data_integrations/sources/constants.py +2 -0
- mage_ai/data_preparation/executors/block_executor.py +8 -3
- mage_ai/data_preparation/executors/pipeline_executor.py +35 -19
- mage_ai/data_preparation/models/block/__init__.py +29 -23
- mage_ai/data_preparation/models/block/dbt/dbt_adapter.py +20 -8
- mage_ai/data_preparation/models/block/dynamic/constants.py +0 -1
- mage_ai/data_preparation/models/block/dynamic/counter.py +1 -3
- mage_ai/data_preparation/models/block/outputs.py +1 -1
- mage_ai/data_preparation/models/block/r/__init__.py +16 -5
- mage_ai/data_preparation/models/block/sql/__init__.py +2 -0
- mage_ai/data_preparation/models/block/sql/mssql.py +8 -0
- mage_ai/data_preparation/models/block/sql/utils/shared.py +6 -2
- mage_ai/data_preparation/models/constants.py +3 -0
- mage_ai/data_preparation/models/pipeline.py +1 -1
- mage_ai/data_preparation/storage/local_storage.py +4 -1
- mage_ai/data_preparation/templates/constants.py +7 -0
- mage_ai/data_preparation/templates/data_loaders/airtable.py +28 -0
- mage_ai/data_preparation/templates/repo/io_config.yaml +2 -0
- mage_ai/io/airtable.py +104 -0
- mage_ai/io/base.py +1 -0
- mage_ai/io/bigquery.py +36 -0
- mage_ai/io/config.py +6 -0
- mage_ai/io/mssql.py +21 -9
- mage_ai/io/mysql.py +6 -1
- mage_ai/io/postgres.py +3 -0
- mage_ai/io/redshift.py +13 -0
- mage_ai/io/sql.py +1 -0
- mage_ai/orchestration/db/__init__.py +20 -0
- mage_ai/orchestration/db/migrations/versions/39d36f1dab73_create_genericjob.py +47 -0
- mage_ai/orchestration/db/models/oauth.py +2 -1
- mage_ai/orchestration/db/models/schedules.py +107 -5
- mage_ai/orchestration/db/models/secrets.py +11 -1
- mage_ai/orchestration/job_manager.py +19 -0
- mage_ai/orchestration/metrics/pipeline_run.py +1 -1
- mage_ai/orchestration/notification/sender.py +2 -2
- mage_ai/orchestration/pipeline_scheduler_original.py +150 -6
- mage_ai/orchestration/pipeline_scheduler_project_platform.py +4 -5
- mage_ai/orchestration/queue/config.py +11 -1
- mage_ai/orchestration/queue/process_queue.py +2 -0
- mage_ai/orchestration/utils/distributed_lock.py +8 -1
- mage_ai/server/api/base.py +41 -0
- mage_ai/server/api/constants.py +1 -0
- mage_ai/server/api/triggers.py +9 -0
- mage_ai/server/constants.py +1 -1
- mage_ai/server/frontend_dist/404.html +2 -2
- mage_ai/server/frontend_dist/_next/static/chunks/449-5e2253c6aba42557.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/pages/_app-782dd4a6b13e1c42.js +2 -0
- mage_ai/server/frontend_dist/_next/static/chunks/pages/manage/users-5db54821a3059c69.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/pages/overview-f65416f6dbe30ad3.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/settings-03d9bca3bc5e6088.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines-d25d07db166cbb04.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/users-fa61dc6c1370e6a5.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/{webpack-0bc44da590c7cf85.js → webpack-b9a067f3bd0a3a05.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/{38-PtskJFUTYUpRhT1qF_ → qR0jauUABqPaFMjUsYeoG}/_buildManifest.js +1 -1
- mage_ai/server/frontend_dist/block-layout.html +2 -2
- mage_ai/server/frontend_dist/compute.html +2 -2
- mage_ai/server/frontend_dist/files.html +2 -2
- mage_ai/server/frontend_dist/global-data-products/[...slug].html +2 -2
- mage_ai/server/frontend_dist/global-data-products.html +2 -2
- mage_ai/server/frontend_dist/global-hooks/[...slug].html +2 -2
- mage_ai/server/frontend_dist/global-hooks.html +2 -2
- mage_ai/server/frontend_dist/index.html +2 -2
- mage_ai/server/frontend_dist/manage/files.html +2 -2
- mage_ai/server/frontend_dist/manage/overview.html +2 -2
- mage_ai/server/frontend_dist/manage/pipeline-runs.html +2 -2
- mage_ai/server/frontend_dist/manage/settings.html +2 -2
- mage_ai/server/frontend_dist/manage/users/[user].html +2 -2
- mage_ai/server/frontend_dist/manage/users/new.html +2 -2
- mage_ai/server/frontend_dist/manage/users.html +2 -2
- mage_ai/server/frontend_dist/manage.html +2 -2
- mage_ai/server/frontend_dist/oauth.html +3 -3
- mage_ai/server/frontend_dist/overview.html +2 -2
- mage_ai/server/frontend_dist/pipeline-runs.html +2 -2
- mage_ai/server/frontend_dist/pipelines/[pipeline]/backfills/[...slug].html +2 -2
- mage_ai/server/frontend_dist/pipelines/[pipeline]/backfills.html +2 -2
- mage_ai/server/frontend_dist/pipelines/[pipeline]/dashboard.html +2 -2
- mage_ai/server/frontend_dist/pipelines/[pipeline]/edit.html +2 -2
- mage_ai/server/frontend_dist/pipelines/[pipeline]/logs.html +2 -2
- mage_ai/server/frontend_dist/pipelines/[pipeline]/monitors/block-runs.html +2 -2
- mage_ai/server/frontend_dist/pipelines/[pipeline]/monitors/block-runtime.html +2 -2
- mage_ai/server/frontend_dist/pipelines/[pipeline]/monitors.html +2 -2
- mage_ai/server/frontend_dist/pipelines/[pipeline]/runs/[run].html +2 -2
- mage_ai/server/frontend_dist/pipelines/[pipeline]/runs.html +2 -2
- mage_ai/server/frontend_dist/pipelines/[pipeline]/settings.html +2 -2
- mage_ai/server/frontend_dist/pipelines/[pipeline]/syncs.html +2 -2
- mage_ai/server/frontend_dist/pipelines/[pipeline]/triggers/[...slug].html +2 -2
- mage_ai/server/frontend_dist/pipelines/[pipeline]/triggers.html +2 -2
- mage_ai/server/frontend_dist/pipelines/[pipeline].html +2 -2
- mage_ai/server/frontend_dist/pipelines.html +2 -2
- mage_ai/server/frontend_dist/platform/global-hooks/[...slug].html +2 -2
- mage_ai/server/frontend_dist/platform/global-hooks.html +2 -2
- mage_ai/server/frontend_dist/settings/account/profile.html +2 -2
- mage_ai/server/frontend_dist/settings/platform/preferences.html +2 -2
- mage_ai/server/frontend_dist/settings/platform/settings.html +2 -2
- mage_ai/server/frontend_dist/settings/workspace/permissions/[...slug].html +2 -2
- mage_ai/server/frontend_dist/settings/workspace/permissions.html +2 -2
- mage_ai/server/frontend_dist/settings/workspace/preferences.html +2 -2
- mage_ai/server/frontend_dist/settings/workspace/roles/[...slug].html +2 -2
- mage_ai/server/frontend_dist/settings/workspace/roles.html +2 -2
- mage_ai/server/frontend_dist/settings/workspace/sync-data.html +2 -2
- mage_ai/server/frontend_dist/settings/workspace/users/[...slug].html +2 -2
- mage_ai/server/frontend_dist/settings/workspace/users.html +2 -2
- mage_ai/server/frontend_dist/settings.html +2 -2
- mage_ai/server/frontend_dist/sign-in.html +5 -5
- mage_ai/server/frontend_dist/templates/[...slug].html +2 -2
- mage_ai/server/frontend_dist/templates.html +2 -2
- mage_ai/server/frontend_dist/terminal.html +2 -2
- mage_ai/server/frontend_dist/test.html +2 -2
- mage_ai/server/frontend_dist/triggers.html +2 -2
- mage_ai/server/frontend_dist/v2/canvas.html +2 -2
- mage_ai/server/frontend_dist/v2.html +2 -2
- mage_ai/server/frontend_dist/version-control.html +2 -2
- mage_ai/server/frontend_dist_base_path_template/404.html +2 -2
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/449-5e2253c6aba42557.js +1 -0
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/_app-ee5e328aaf51c698.js +2 -0
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/manage/users-5db54821a3059c69.js +1 -0
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/overview-f65416f6dbe30ad3.js +1 -0
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/settings-03d9bca3bc5e6088.js +1 -0
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines-d25d07db166cbb04.js +1 -0
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settings/workspace/users-fa61dc6c1370e6a5.js +1 -0
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/{webpack-12ad70eb5c31aa92.js → webpack-5f4be622608d9267.js} +1 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/{dxnSzgIvSG4Ke5LM-tPQX → iCySon3_GCldnbC5U7C-s}/_buildManifest.js +1 -1
- mage_ai/server/frontend_dist_base_path_template/block-layout.html +2 -2
- mage_ai/server/frontend_dist_base_path_template/compute.html +2 -2
- mage_ai/server/frontend_dist_base_path_template/files.html +2 -2
- mage_ai/server/frontend_dist_base_path_template/global-data-products/[...slug].html +2 -2
- mage_ai/server/frontend_dist_base_path_template/global-data-products.html +2 -2
- mage_ai/server/frontend_dist_base_path_template/global-hooks/[...slug].html +2 -2
- mage_ai/server/frontend_dist_base_path_template/global-hooks.html +2 -2
- mage_ai/server/frontend_dist_base_path_template/index.html +2 -2
- mage_ai/server/frontend_dist_base_path_template/manage/files.html +2 -2
- mage_ai/server/frontend_dist_base_path_template/manage/overview.html +2 -2
- mage_ai/server/frontend_dist_base_path_template/manage/pipeline-runs.html +2 -2
- mage_ai/server/frontend_dist_base_path_template/manage/settings.html +2 -2
- mage_ai/server/frontend_dist_base_path_template/manage/users/[user].html +2 -2
- mage_ai/server/frontend_dist_base_path_template/manage/users/new.html +2 -2
- mage_ai/server/frontend_dist_base_path_template/manage/users.html +2 -2
- mage_ai/server/frontend_dist_base_path_template/manage.html +2 -2
- mage_ai/server/frontend_dist_base_path_template/oauth.html +3 -3
- mage_ai/server/frontend_dist_base_path_template/overview.html +2 -2
- mage_ai/server/frontend_dist_base_path_template/pipeline-runs.html +2 -2
- mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/backfills/[...slug].html +2 -2
- mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/backfills.html +2 -2
- mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/dashboard.html +2 -2
- mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/edit.html +2 -2
- mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/logs.html +2 -2
- mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/monitors/block-runs.html +2 -2
- mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/monitors/block-runtime.html +2 -2
- mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/monitors.html +2 -2
- mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/runs/[run].html +2 -2
- mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/runs.html +2 -2
- mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/settings.html +2 -2
- mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/syncs.html +2 -2
- mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/triggers/[...slug].html +2 -2
- mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/triggers.html +2 -2
- mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline].html +2 -2
- mage_ai/server/frontend_dist_base_path_template/pipelines.html +2 -2
- mage_ai/server/frontend_dist_base_path_template/platform/global-hooks/[...slug].html +2 -2
- mage_ai/server/frontend_dist_base_path_template/platform/global-hooks.html +2 -2
- mage_ai/server/frontend_dist_base_path_template/settings/account/profile.html +2 -2
- mage_ai/server/frontend_dist_base_path_template/settings/platform/preferences.html +2 -2
- mage_ai/server/frontend_dist_base_path_template/settings/platform/settings.html +2 -2
- mage_ai/server/frontend_dist_base_path_template/settings/workspace/permissions/[...slug].html +2 -2
- mage_ai/server/frontend_dist_base_path_template/settings/workspace/permissions.html +2 -2
- mage_ai/server/frontend_dist_base_path_template/settings/workspace/preferences.html +2 -2
- mage_ai/server/frontend_dist_base_path_template/settings/workspace/roles/[...slug].html +2 -2
- mage_ai/server/frontend_dist_base_path_template/settings/workspace/roles.html +2 -2
- mage_ai/server/frontend_dist_base_path_template/settings/workspace/sync-data.html +2 -2
- mage_ai/server/frontend_dist_base_path_template/settings/workspace/users/[...slug].html +2 -2
- mage_ai/server/frontend_dist_base_path_template/settings/workspace/users.html +2 -2
- mage_ai/server/frontend_dist_base_path_template/settings.html +2 -2
- mage_ai/server/frontend_dist_base_path_template/sign-in.html +5 -5
- mage_ai/server/frontend_dist_base_path_template/templates/[...slug].html +2 -2
- mage_ai/server/frontend_dist_base_path_template/templates.html +2 -2
- mage_ai/server/frontend_dist_base_path_template/terminal.html +2 -2
- mage_ai/server/frontend_dist_base_path_template/test.html +2 -2
- mage_ai/server/frontend_dist_base_path_template/triggers.html +2 -2
- mage_ai/server/frontend_dist_base_path_template/v2/canvas.html +2 -2
- mage_ai/server/frontend_dist_base_path_template/v2.html +2 -2
- mage_ai/server/frontend_dist_base_path_template/version-control.html +2 -2
- mage_ai/server/scheduler_manager.py +2 -0
- mage_ai/server/terminal_server.py +3 -0
- mage_ai/settings/server.py +4 -0
- mage_ai/streaming/sources/kafka.py +2 -1
- mage_ai/tests/data_preparation/executors/test_block_executor.py +3 -3
- mage_ai/tests/data_preparation/models/block/dynamic/test_counter.py +1 -3
- mage_ai/tests/data_preparation/models/test_variable.py +2 -0
- mage_ai/tests/io/create_table/test_postgresql.py +3 -2
- mage_ai/tests/orchestration/notification/test_sender.py +5 -1
- mage_ai/tests/streaming/sources/test_kafka.py +2 -2
- mage_ai/usage_statistics/logger.py +99 -15
- mage_ai-0.9.77.dist-info/METADATA +356 -0
- {mage_ai-0.9.75.dist-info → mage_ai-0.9.77.dist-info}/RECORD +211 -208
- {mage_ai-0.9.75.dist-info → mage_ai-0.9.77.dist-info}/WHEEL +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/449-f689774546860ca4.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/_app-13bf3b7dcef50c29.js +0 -2
- mage_ai/server/frontend_dist/_next/static/chunks/pages/manage/users-b99379d0aa6a8c25.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/overview-e51cd04bd4d1fffe.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/settings-0abf8a1b7243f93b.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines-38187954b6ec4b40.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/users-3ee783f5139c76a1.js +0 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/449-f689774546860ca4.js +0 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/_app-0392ef723ea2c6f8.js +0 -2
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/manage/users-b99379d0aa6a8c25.js +0 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/overview-e51cd04bd4d1fffe.js +0 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/settings-0abf8a1b7243f93b.js +0 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines-38187954b6ec4b40.js +0 -1
- mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settings/workspace/users-3ee783f5139c76a1.js +0 -1
- mage_ai-0.9.75.dist-info/METADATA +0 -377
- /mage_ai/server/frontend_dist/_next/static/chunks/pages/{_app-13bf3b7dcef50c29.js.LICENSE.txt → _app-782dd4a6b13e1c42.js.LICENSE.txt} +0 -0
- /mage_ai/server/frontend_dist/_next/static/{38-PtskJFUTYUpRhT1qF_ → qR0jauUABqPaFMjUsYeoG}/_ssgManifest.js +0 -0
- /mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/{_app-0392ef723ea2c6f8.js.LICENSE.txt → _app-ee5e328aaf51c698.js.LICENSE.txt} +0 -0
- /mage_ai/server/frontend_dist_base_path_template/_next/static/{dxnSzgIvSG4Ke5LM-tPQX → iCySon3_GCldnbC5U7C-s}/_ssgManifest.js +0 -0
- {mage_ai-0.9.75.dist-info → mage_ai-0.9.77.dist-info}/entry_points.txt +0 -0
- {mage_ai-0.9.75.dist-info → mage_ai-0.9.77.dist-info/licenses}/LICENSE +0 -0
- {mage_ai-0.9.75.dist-info → mage_ai-0.9.77.dist-info}/top_level.txt +0 -0
|
@@ -85,7 +85,7 @@ mage_ai/api/policies/PipelineExecutionFrameworkPolicy.py,sha256=L1MO66Luctqik9VE
|
|
|
85
85
|
mage_ai/api/policies/PipelineInteractionPolicy.py,sha256=3dERSCgdkGeTyZccuqPuQ7r_RsIm97dco2zwWHlPWRs,1582
|
|
86
86
|
mage_ai/api/policies/PipelinePolicy.py,sha256=03nrVucEJ-z6Rno2I_IbDA9qGEUvyEbiNxjXWQIVvpc,5170
|
|
87
87
|
mage_ai/api/policies/PipelineRunPolicy.py,sha256=gdsZbvfQvS80xoCdQ2dZTUN_9neVVyGc4AybBVmWgGY,3470
|
|
88
|
-
mage_ai/api/policies/PipelineSchedulePolicy.py,sha256=
|
|
88
|
+
mage_ai/api/policies/PipelineSchedulePolicy.py,sha256=l4Pa04Ip2INnAq8NU-esCRFMe5W63ANTCnoRC5OKREA,5837
|
|
89
89
|
mage_ai/api/policies/PipelineTriggerPolicy.py,sha256=KAI8mQTxZGcsRXmGps7KlcDul1x0I_v-UwqKin9um6c,1315
|
|
90
90
|
mage_ai/api/policies/ProjectPolicy.py,sha256=G5FKSwfnNX7rRtF6c-9oLwKYEpQJIcl-tE-qENORI_8,1938
|
|
91
91
|
mage_ai/api/policies/PullRequestPolicy.py,sha256=hKixhArZIAuES6mdw3ozMk2Leoy2u3bUP19KEgAlcHw,1605
|
|
@@ -174,7 +174,7 @@ mage_ai/api/presenters/PipelineExecutionFrameworkPresenter.py,sha256=_DDBLinfoAG
|
|
|
174
174
|
mage_ai/api/presenters/PipelineInteractionPresenter.py,sha256=hgewuxLiPtT0_eeUWQzp0jl83p3_zW-8uR5bM8qu0Qo,362
|
|
175
175
|
mage_ai/api/presenters/PipelinePresenter.py,sha256=PLjeLzedBlqRgeyrZHoQ0JNTAAmd2djr6SifRwwbf4s,4397
|
|
176
176
|
mage_ai/api/presenters/PipelineRunPresenter.py,sha256=0MUfkmhCNIsFoyEbidf27ZxR5C3pi0jdHvklXRHpD0M,3551
|
|
177
|
-
mage_ai/api/presenters/PipelineSchedulePresenter.py,sha256=
|
|
177
|
+
mage_ai/api/presenters/PipelineSchedulePresenter.py,sha256=bYGbMpkdlvMk947KSAuJEX_wXMS7KdhXA1UYJswwv_c,3078
|
|
178
178
|
mage_ai/api/presenters/PipelineTriggerPresenter.py,sha256=I7joUucxdzxGTS-6T27Kyo0oaH6yESFeLCS6T5tLrr0,445
|
|
179
179
|
mage_ai/api/presenters/ProjectPresenter.py,sha256=GY__wXyq850jRIT7-3sx_lBNeSCC0zPusvrmxXgON4A,604
|
|
180
180
|
mage_ai/api/presenters/PullRequestPresenter.py,sha256=c7YTcsqUJw8fKjEYzBUnhEYnYvc2V_R-PO8WxCJsAS4,322
|
|
@@ -245,7 +245,7 @@ mage_ai/api/resources/FolderResource.py,sha256=uRckWnBbma5XT6qkcYe33sa26-y6V_uK-
|
|
|
245
245
|
mage_ai/api/resources/GenericResource.py,sha256=rknlwnMY4ed0TIFc64X9JhflCPEl8g8B2ks7RXGeLDw,312
|
|
246
246
|
mage_ai/api/resources/GitBranchResource.py,sha256=rim2livt4zybpVmMAZk5r5IVQUn3MW6l0qP4sW-0J-w,20149
|
|
247
247
|
mage_ai/api/resources/GitCustomBranchResource.py,sha256=fWECl8SduiJX7WWWJryD2SnEt50KDfmBs8IU4p4Z0Mg,2094
|
|
248
|
-
mage_ai/api/resources/GitFileResource.py,sha256=
|
|
248
|
+
mage_ai/api/resources/GitFileResource.py,sha256=AY0F1VveoUfBADFbilo9ecErfY7thcFl7nNP20reyfA,2942
|
|
249
249
|
mage_ai/api/resources/GlobalDataProductResource.py,sha256=zOO7JvnxwbrhsQ6Gv7eh3mPxTrgD7CrTZLmcCsAL8vM,2682
|
|
250
250
|
mage_ai/api/resources/GlobalHookResource.py,sha256=xpdlFPYteiaKz9R_HhkY-vzjl7IyI1ubtHJvFAb6I6s,8518
|
|
251
251
|
mage_ai/api/resources/IntegrationDestinationResource.py,sha256=QgmGV0Ri3B7jC4xa5UhYWPAUqteV44LoifEi7UtZWl0,1551
|
|
@@ -266,8 +266,8 @@ mage_ai/api/resources/PipelineExecutionFrameworkResource.py,sha256=oVZQRSabdEtLl
|
|
|
266
266
|
mage_ai/api/resources/PipelineInteractionResource.py,sha256=J8Zj1B2N_oIgyG57-8Ag2fBzXqtRpqieAsLd0nTu_jw,2672
|
|
267
267
|
mage_ai/api/resources/PipelineResource.py,sha256=WOLeDd45LBGmYB8_KFkZ0lqcXUGmPfq-NzB1cVcz2dM,33862
|
|
268
268
|
mage_ai/api/resources/PipelineRunResource.py,sha256=Emhf_ya4WWWX1NnpK_rPOZIninAqbKH1EbhtlnOa-DM,16614
|
|
269
|
-
mage_ai/api/resources/PipelineScheduleResource.py,sha256=
|
|
270
|
-
mage_ai/api/resources/PipelineTriggerResource.py,sha256=
|
|
269
|
+
mage_ai/api/resources/PipelineScheduleResource.py,sha256=Yq51KQDcqYloQzEYzcqgd98FinnExUpvhBGXXTBLDLE,18198
|
|
270
|
+
mage_ai/api/resources/PipelineTriggerResource.py,sha256=gs3Yads4KdC8YG4lhbMIqZqj5Pu5TeDWNtsXVZfnS4w,2579
|
|
271
271
|
mage_ai/api/resources/ProjectResource.py,sha256=811jy0kxnSu8KYmrMYiWeq6adkOCSxDaLrGtH-8F3N4,8880
|
|
272
272
|
mage_ai/api/resources/PullRequestResource.py,sha256=MmoTzwOFvjXmm1N30SOF6AFLdmFJZlpY8LKREAB4lEc,3403
|
|
273
273
|
mage_ai/api/resources/Resource.py,sha256=6qB6hRs5Ik3SPe7zQjy49aOT1vD4hcGR28KMJqCuDk0,356
|
|
@@ -277,7 +277,7 @@ mage_ai/api/resources/SchedulerResource.py,sha256=27lvvoq6_gM0wmDpA6sK2E9zryrlHp
|
|
|
277
277
|
mage_ai/api/resources/SearchResultResource.py,sha256=GLbgYgQN1DzzjDX1QII2VA73oWOCMMNduWhdivKVlY4,2596
|
|
278
278
|
mage_ai/api/resources/SecretResource.py,sha256=GAO_WI90scyXE-vcjqvOS1R41swQdacqaPSKjU5PODk,2688
|
|
279
279
|
mage_ai/api/resources/SeedResource.py,sha256=Co-nlrgnMG7fh_w1E8LRshC1aMElIPjOygzAjXnoyrQ,622
|
|
280
|
-
mage_ai/api/resources/SessionResource.py,sha256=
|
|
280
|
+
mage_ai/api/resources/SessionResource.py,sha256=zQZaV-XOd62FllA2xmflztsGXR9VIGMiGIWqvv5nUKI,6271
|
|
281
281
|
mage_ai/api/resources/SparkApplicationResource.py,sha256=X3V6_-NnR7UzF4IB6YpWVl_dHobTx7wQSK3mSbGbiv8,1099
|
|
282
282
|
mage_ai/api/resources/SparkEnvironmentResource.py,sha256=wcyOG7YOIn2R7cZfIVNZMiG3u09uzq2VP2Iup2fQUDU,396
|
|
283
283
|
mage_ai/api/resources/SparkExecutorResource.py,sha256=G5u9GUxmG4KC81F31DQK70Uqq18QIlF7d0dxLdZZBCY,689
|
|
@@ -289,9 +289,9 @@ mage_ai/api/resources/SparkStageAttemptTaskSummaryResource.py,sha256=_SeKGpDF_tM
|
|
|
289
289
|
mage_ai/api/resources/SparkStageResource.py,sha256=DnZuIJBwidhQi4C0OkTtoIIveTHQtuzdukzq3JZQxfo,1869
|
|
290
290
|
mage_ai/api/resources/SparkThreadResource.py,sha256=As3ewzpNqdFErxpLUzsqlac-gF1oY8EvgUrgeZ4G7K0,527
|
|
291
291
|
mage_ai/api/resources/StatusResource.py,sha256=CybShtXBIFMDdGQ6DJNkLNj2g0xq2Df1Vtj7rC7SyWU,4621
|
|
292
|
-
mage_ai/api/resources/SyncResource.py,sha256=
|
|
292
|
+
mage_ai/api/resources/SyncResource.py,sha256=CnVgPmqiE9T3rPinzxHgDUk8nKxoupQxaI0P8sgNnNA,6704
|
|
293
293
|
mage_ai/api/resources/TagResource.py,sha256=TLw7BYEYPVioPWd7Ox3BbUhat0vmNpYPPHbgwWrek8Q,833
|
|
294
|
-
mage_ai/api/resources/UserResource.py,sha256=
|
|
294
|
+
mage_ai/api/resources/UserResource.py,sha256=TUl8og23lDLlMF5FP6ZI_suZ3OLQeGaWJ2rbsqBoOFM,9714
|
|
295
295
|
mage_ai/api/resources/UserRoleResource.py,sha256=xHMOeXWF61DgdTuXw_eCTqxtV1X-6-gRfSSYDRbM9X4,262
|
|
296
296
|
mage_ai/api/resources/VariableResource.py,sha256=oJKjleEdpIy7E3sSdUbk3rdCYOCvpAxMAZxTqJDSfG4,6059
|
|
297
297
|
mage_ai/api/resources/VersionControlBranchResource.py,sha256=sFQhI9ElIw_QdGbbWNj6dZWCpmR7-nzV-0FD-UpUdp8,2527
|
|
@@ -356,7 +356,7 @@ mage_ai/cache/dbt/constants.py,sha256=jItufZIrMSnGj_b8UhY55MbZg6yJ8dDmQMtHRiwTYt
|
|
|
356
356
|
mage_ai/cache/dbt/models.py,sha256=6LjJKmlCQI4trUM0RMLfi8n7ic5R3bxIOSA2AhDS-xU,416
|
|
357
357
|
mage_ai/cache/dbt/utils.py,sha256=TgoQmwHVT5l2swBqRCv4gOdmc2Sfay8zZKHXh8GfwYY,6962
|
|
358
358
|
mage_ai/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
359
|
-
mage_ai/cli/main.py,sha256=
|
|
359
|
+
mage_ai/cli/main.py,sha256=xXu5DcWzLuKs4noaKugYOd9SH6Gs4NN5w8yKNd-jI2g,11433
|
|
360
360
|
mage_ai/cli/utils.py,sha256=Y8TvvMbh0dUvZZV4rHo64TNC2WGQMqCUXLWuMVLBft4,919
|
|
361
361
|
mage_ai/cluster_manager/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
362
362
|
mage_ai/cluster_manager/cluster_manager.py,sha256=DzFGOFJp2TqJWCdswSqiFCSqt-c_JoOKWQKJWBDAdLQ,269
|
|
@@ -507,11 +507,11 @@ mage_ai/data_cleaner/transformer_actions/udf/string_split.py,sha256=Xk7BpKrPcjK6
|
|
|
507
507
|
mage_ai/data_cleaner/transformer_actions/udf/substring.py,sha256=77s-JPnAQY5u0EBdxzpKenjA2WHKG5lN2Zn2J0R6c1Q,408
|
|
508
508
|
mage_ai/data_integrations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
509
509
|
mage_ai/data_integrations/destinations/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
510
|
-
mage_ai/data_integrations/destinations/constants.py,sha256=
|
|
510
|
+
mage_ai/data_integrations/destinations/constants.py,sha256=iogbESrfdgng_ApeZT9Beu19XaumKy5Xoj0ZxLJHze8,691
|
|
511
511
|
mage_ai/data_integrations/logger/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
512
512
|
mage_ai/data_integrations/logger/utils.py,sha256=5XNDhI21eMFU0iPTI6NXBomHjDkq0ePprZ2Einla98U,3165
|
|
513
513
|
mage_ai/data_integrations/sources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
514
|
-
mage_ai/data_integrations/sources/constants.py,sha256=
|
|
514
|
+
mage_ai/data_integrations/sources/constants.py,sha256=dg8WYWl3s3QaiTOK_Pykk0_fv2YYwofh4aEOuNVRcoM,1595
|
|
515
515
|
mage_ai/data_integrations/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
516
516
|
mage_ai/data_integrations/utils/config.py,sha256=lvuFfU48iNuRIB776XNIkSZ64YZhutfnyKgzDQmjY-0,4893
|
|
517
517
|
mage_ai/data_integrations/utils/parsers.py,sha256=MdR6DlvLu5_tFqQVlhVNPm5v8cm3LoZGhjlCeQPNy3c,1644
|
|
@@ -524,14 +524,14 @@ mage_ai/data_preparation/repo_manager.py,sha256=xI8h3oYypRyAJrl9qrcveIYY2TDwQmw4
|
|
|
524
524
|
mage_ai/data_preparation/variable_manager.py,sha256=TWySToWXx9Tc5b-pbwup_aNkSF-5B6VZ2Fs7K1TND6w,22238
|
|
525
525
|
mage_ai/data_preparation/executors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
526
526
|
mage_ai/data_preparation/executors/azure_container_instance_executor.py,sha256=hXxQJVwFTEKZYimpkbCnhbbygi85lE22vfqBSERKw9Q,1157
|
|
527
|
-
mage_ai/data_preparation/executors/block_executor.py,sha256
|
|
527
|
+
mage_ai/data_preparation/executors/block_executor.py,sha256=-559JyeqGZ1H2JagaWsA7D3JNRAxGTHE0Od2J9Gj-D4,66061
|
|
528
528
|
mage_ai/data_preparation/executors/ecs_block_executor.py,sha256=o6NDO8Lu4XgG3B7ZsDKWKhMe756k7mn1B6v4yHVYYPY,991
|
|
529
529
|
mage_ai/data_preparation/executors/ecs_pipeline_executor.py,sha256=UFu5NVEuSkMTcOkmVJLEEWatNDUf8UVnKRfVrgbSpBw,964
|
|
530
530
|
mage_ai/data_preparation/executors/executor_factory.py,sha256=2zgRpkbFrWFsCeNDUJvkD3Z8aeckRhNxugSj5vX2928,7724
|
|
531
531
|
mage_ai/data_preparation/executors/gcp_cloud_run_block_executor.py,sha256=YyWEYJV_KPFoK52sw0FDL4ezZlQMJRX87_8r_pudzDI,1350
|
|
532
532
|
mage_ai/data_preparation/executors/k8s_block_executor.py,sha256=pwpWd7ufNVZEcc2nxoKQDlWP0fnII9-T_Cxf13fn4WA,2934
|
|
533
533
|
mage_ai/data_preparation/executors/k8s_pipeline_executor.py,sha256=bMfR6gwFy9jyo265e71wMai5jO8pvfIdXcIAdvBZY-U,3725
|
|
534
|
-
mage_ai/data_preparation/executors/pipeline_executor.py,sha256=
|
|
534
|
+
mage_ai/data_preparation/executors/pipeline_executor.py,sha256=59iQjcD7pl6lBIs0OHwZpq2ZYMDu_ZI6FQ74ou0og5Q,8766
|
|
535
535
|
mage_ai/data_preparation/executors/pyspark_block_executor.py,sha256=LoFUEsr-jSWMThKJLnGmwwW152Ty8wEOrlRZf3HUfik,3924
|
|
536
536
|
mage_ai/data_preparation/executors/pyspark_pipeline_executor.py,sha256=kQEPl4SZFh9iYEEGNoIe552odnW7QUPcJy4f4su52tY,3299
|
|
537
537
|
mage_ai/data_preparation/executors/streaming_pipeline_executor.py,sha256=TyFyn1oJlG9uCsJ1CaupmtB0WoozGDBqaPLDUecu18s,12919
|
|
@@ -553,19 +553,19 @@ mage_ai/data_preparation/logging/logger_manager.py,sha256=XezUsBACGXe-8LY01MQm85
|
|
|
553
553
|
mage_ai/data_preparation/logging/logger_manager_factory.py,sha256=uIk-WHAHo1MSkD4_rOtmhGPVp1Nqh_u9jN-IlP_tDCg,988
|
|
554
554
|
mage_ai/data_preparation/logging/s3_logger_manager.py,sha256=Za5aPbXzcaDAVfphC1jnZRn9ZyoDsJA-Yu9pMU8FiDY,1964
|
|
555
555
|
mage_ai/data_preparation/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
556
|
-
mage_ai/data_preparation/models/constants.py,sha256=
|
|
556
|
+
mage_ai/data_preparation/models/constants.py,sha256=PwG0KA7R46HsJ8NXAhIfp0lv67NLbegFAcPFiALacdk,4428
|
|
557
557
|
mage_ai/data_preparation/models/errors.py,sha256=tANqAOf5Ki73kbVmhXrEloZ8dNjinjCM7EtYyWeJyZg,393
|
|
558
558
|
mage_ai/data_preparation/models/file.py,sha256=3Lykr5TPtKHipifGrufoJLsROZBljvS2tFRNe78_qd4,20665
|
|
559
559
|
mage_ai/data_preparation/models/interfaces.py,sha256=5I2R3TDwKwoyXW3blsS_nzV8xiysJIFux78ZVmEtYho,796
|
|
560
|
-
mage_ai/data_preparation/models/pipeline.py,sha256=
|
|
560
|
+
mage_ai/data_preparation/models/pipeline.py,sha256=viy9BpJWhnX2h-ogbDIFSDrvXdNOI705xea_a2aaUNU,98755
|
|
561
561
|
mage_ai/data_preparation/models/utils.py,sha256=lkSCkSvDbivC_qA-yps5ZhK_Zji5ao0rrxeCazAM4TQ,19678
|
|
562
562
|
mage_ai/data_preparation/models/variable.py,sha256=T2SkN0R0MjEHBF-g7kCOOmppQdNreXOOKo4jyWj-oy4,64649
|
|
563
|
-
mage_ai/data_preparation/models/block/__init__.py,sha256
|
|
563
|
+
mage_ai/data_preparation/models/block/__init__.py,sha256=-yiLXk-fYh4KFdCxsEsPeCewhMGuVB34U9gyoR-rL-g,175832
|
|
564
564
|
mage_ai/data_preparation/models/block/block_factory.py,sha256=OfjOm4ucuJ6pcM6yv4uhI1tH_7WdeO5mrFxPSJBhS7Q,2793
|
|
565
565
|
mage_ai/data_preparation/models/block/constants.py,sha256=_HTgssMN9Nr8Lq1FjyDV9-xGgmrBadYi7IHYbjnMlM4,1071
|
|
566
566
|
mage_ai/data_preparation/models/block/content.py,sha256=pxqkgAUMKOOL6ZxruM_2C-8vbp6BIv7k0lcEv33_njg,3444
|
|
567
567
|
mage_ai/data_preparation/models/block/errors.py,sha256=2h1cT76EvdzJaceO1rfwQwIVLOtCBR40pCnQoPQJ5tM,182
|
|
568
|
-
mage_ai/data_preparation/models/block/outputs.py,sha256=
|
|
568
|
+
mage_ai/data_preparation/models/block/outputs.py,sha256=cAzXIEfxv8nFZcGUffh93PbgR0e9E-U1pSabS-b-P9U,25962
|
|
569
569
|
mage_ai/data_preparation/models/block/seed.py,sha256=Omv6VQj8HAU1EN8te-mmd4kyARZcMFOswF7J8e-mKoM,2883
|
|
570
570
|
mage_ai/data_preparation/models/block/utils.py,sha256=nZiXQH1Bejeyf0W_naPveTIdfvEQ0FULU4lRL0aO06E,34794
|
|
571
571
|
mage_ai/data_preparation/models/block/data_integration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -579,7 +579,7 @@ mage_ai/data_preparation/models/block/dbt/block.py,sha256=0ST0Q1b8Q6cc2N0ZE92Hd0
|
|
|
579
579
|
mage_ai/data_preparation/models/block/dbt/block_sql.py,sha256=2RiOEWfCJTYzF1p5IcSK9jTYrr3U3DTG5aI_-ZikZe0,23039
|
|
580
580
|
mage_ai/data_preparation/models/block/dbt/block_yaml.py,sha256=n8wag07F0-KCdWZL_Xw-q1Ch7q8xIXMz2F9s4ZxHDyc,6895
|
|
581
581
|
mage_ai/data_preparation/models/block/dbt/constants.py,sha256=7gEUtcY7QjiPdaDDOPKRBluRY9WnL4bPfUZCHilv8PA,496
|
|
582
|
-
mage_ai/data_preparation/models/block/dbt/dbt_adapter.py,sha256=
|
|
582
|
+
mage_ai/data_preparation/models/block/dbt/dbt_adapter.py,sha256=fEKvUt7pKcirvxvWBBlpeJxltx80vqQglmNFrPy82DQ,8850
|
|
583
583
|
mage_ai/data_preparation/models/block/dbt/dbt_cli.py,sha256=sWo6V4b2JHFMMNlFPuPjEMKBSAf1w7zE8KUibJqTc58,4204
|
|
584
584
|
mage_ai/data_preparation/models/block/dbt/profiles.py,sha256=QAkqMNEXqtdGT4ANXDSNrvfZrp82Fe5cRubWC-M07nE,6812
|
|
585
585
|
mage_ai/data_preparation/models/block/dbt/project.py,sha256=7T74n-lMlukzRYQXzUHKLcj2YtWWkbaPkxjQ9YCkpW4,3422
|
|
@@ -587,8 +587,8 @@ mage_ai/data_preparation/models/block/dbt/sources.py,sha256=wVqZZiaYgwR9B41aRzNS
|
|
|
587
587
|
mage_ai/data_preparation/models/block/dbt/utils.py,sha256=pfMk5zqsbQAzwOr65TrzgJRxubJ2n6k79_zAur-oCGQ,191
|
|
588
588
|
mage_ai/data_preparation/models/block/dynamic/__init__.py,sha256=xeLnwRq7Jh4ekdwNQ2RNG-vEBvcUkP40f8x362UoTME,3380
|
|
589
589
|
mage_ai/data_preparation/models/block/dynamic/child.py,sha256=UH4o-m7R2USMLGLpydg70gahzThNxbMGEUrpTZUfunM,6747
|
|
590
|
-
mage_ai/data_preparation/models/block/dynamic/constants.py,sha256=
|
|
591
|
-
mage_ai/data_preparation/models/block/dynamic/counter.py,sha256=
|
|
590
|
+
mage_ai/data_preparation/models/block/dynamic/constants.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
591
|
+
mage_ai/data_preparation/models/block/dynamic/counter.py,sha256=mDy7_7bVvijmDJ76adU80oXKvGo2LnqBREPSTLtXr9Y,9921
|
|
592
592
|
mage_ai/data_preparation/models/block/dynamic/data.py,sha256=nA-3NsmhdDbqyYO_w-H7O9KKYUwII6XOwUHdCDGYW5U,1364
|
|
593
593
|
mage_ai/data_preparation/models/block/dynamic/dynamic_child.py,sha256=4AQhzIcDNHGqXKqlnVyTEWFOw57L1FgpDf6h2VFYviU,30262
|
|
594
594
|
mage_ai/data_preparation/models/block/dynamic/factory.py,sha256=QjWH20IyY_Uhcsk3Mmr4H3sYklP8PAekWeSZH8q5cPU,12645
|
|
@@ -608,7 +608,7 @@ mage_ai/data_preparation/models/block/integration/__init__.py,sha256=IHic_77UkIO
|
|
|
608
608
|
mage_ai/data_preparation/models/block/platform/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
609
609
|
mage_ai/data_preparation/models/block/platform/mixins.py,sha256=fh1Trdx3ugE8wl6S7Hmso6GAsfkshvmwjnxmmF4eiZA,10532
|
|
610
610
|
mage_ai/data_preparation/models/block/platform/utils.py,sha256=swjlT4pnyUIBNSNQkQshLvsoL74ZfG3eDd1duQbv5AM,3375
|
|
611
|
-
mage_ai/data_preparation/models/block/r/__init__.py,sha256=
|
|
611
|
+
mage_ai/data_preparation/models/block/r/__init__.py,sha256=WGlTD4QZ7o7NnAoNlSvYdmLWjhXiYF_o5ldpQMFuZrc,5179
|
|
612
612
|
mage_ai/data_preparation/models/block/r/templates/data_exporter.jinja,sha256=k5MCQgZ75LpcKMA_j9ABvbUIQpU_iDTTtLeiY9Spsio,228
|
|
613
613
|
mage_ai/data_preparation/models/block/r/templates/data_loader.jinja,sha256=pRiRlFCAyLPlqQDJuc9Q8r2FqkaS-K_3Oa-qXdgMepI,312
|
|
614
614
|
mage_ai/data_preparation/models/block/r/templates/transformer.jinja,sha256=6zorVvoeqxyIUFgb3SJgHuo1jTG-HpswTX1zPsTOjPY,307
|
|
@@ -628,13 +628,13 @@ mage_ai/data_preparation/models/block/settings/variables/models.py,sha256=DRQiv6
|
|
|
628
628
|
mage_ai/data_preparation/models/block/spark/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
629
629
|
mage_ai/data_preparation/models/block/spark/constants.py,sha256=Q8L-Pd5NIdsxyUHKnPZYgnSxSXpILQRB1vDZBXUAlhw,60
|
|
630
630
|
mage_ai/data_preparation/models/block/spark/mixins.py,sha256=85Su7JmijBCDoBdaiiWA4UErKiE0Tm3TO-COJOCve-Y,12998
|
|
631
|
-
mage_ai/data_preparation/models/block/sql/__init__.py,sha256=
|
|
631
|
+
mage_ai/data_preparation/models/block/sql/__init__.py,sha256=GDFU1Sc81zCMjrwjjYy_ugloneHtruSp7_Dm0VjXxV4,27063
|
|
632
632
|
mage_ai/data_preparation/models/block/sql/bigquery.py,sha256=fc4-JTtKZhzyIano7RiU98mfNbWjdfJKop09Jo-xDHM,4670
|
|
633
633
|
mage_ai/data_preparation/models/block/sql/clickhouse.py,sha256=Bt14RHI9thMwPU4ALM4ziU09UDzI_z-91vtpZ4OT31I,1674
|
|
634
634
|
mage_ai/data_preparation/models/block/sql/constants.py,sha256=sMUAbID23PpCyQR2u54JaZGRkaKfYSjBWIjC97DTyRs,139
|
|
635
635
|
mage_ai/data_preparation/models/block/sql/druid.py,sha256=658yhjhokzf53TGp1mf45_nfnzUjl3mfNu9yrjkr7W8,1606
|
|
636
636
|
mage_ai/data_preparation/models/block/sql/duckdb.py,sha256=wRL78AFk9RkGJfjFKXVOI0LJqbZWJgs9D3tBhhuClME,1501
|
|
637
|
-
mage_ai/data_preparation/models/block/sql/mssql.py,sha256=
|
|
637
|
+
mage_ai/data_preparation/models/block/sql/mssql.py,sha256=MAEDaMAHLz4HB7TMtWsFi6BdKUzk-l0OKkOwUBiZsx8,2932
|
|
638
638
|
mage_ai/data_preparation/models/block/sql/mysql.py,sha256=jq3-p75mOKXBWHCXWS_AgwnSSJCE_L9h2_I0rKgMH4A,1468
|
|
639
639
|
mage_ai/data_preparation/models/block/sql/postgres.py,sha256=4QUHavU4b8_mRPVO2FWMtZHDSHnOkudH_jWmOo8WCZ0,1702
|
|
640
640
|
mage_ai/data_preparation/models/block/sql/redshift.py,sha256=xxg0zYTjvvW775yfXI6yRvKk8FX294FyW3ZncPXO_Fc,1673
|
|
@@ -642,7 +642,7 @@ mage_ai/data_preparation/models/block/sql/snowflake.py,sha256=h9vqtjgpjvxuiTDP2c
|
|
|
642
642
|
mage_ai/data_preparation/models/block/sql/spark.py,sha256=_q9frwPaGPiSg_CRJrTa0O43FA0NZvbdcI-OQHd0M6U,1036
|
|
643
643
|
mage_ai/data_preparation/models/block/sql/trino.py,sha256=UdG_wLefu6M3o4-vSH0z0AQxN_Qn9nYFDX0QCdagHAs,4483
|
|
644
644
|
mage_ai/data_preparation/models/block/sql/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
645
|
-
mage_ai/data_preparation/models/block/sql/utils/shared.py,sha256=
|
|
645
|
+
mage_ai/data_preparation/models/block/sql/utils/shared.py,sha256=9eQD2cdlLPejK41mIbA-yziPYliM18CD_51_F4dBeAU,19794
|
|
646
646
|
mage_ai/data_preparation/models/custom_templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
647
647
|
mage_ai/data_preparation/models/custom_templates/constants.py,sha256=1CbpBnb91Iz_f_M2AnT8I0nqgDLdjxfBqBc-QH13V_k,268
|
|
648
648
|
mage_ai/data_preparation/models/custom_templates/custom_block_template.py,sha256=DhnKdrYAm-4Q1HpCSCZ5zQXjaQ6EsvzXgGPWjmbw5Po,5445
|
|
@@ -685,14 +685,14 @@ mage_ai/data_preparation/shared/utils.py,sha256=MnpG4vX_AQU49QNzI6MFbZeqwqD4dXm_
|
|
|
685
685
|
mage_ai/data_preparation/storage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
686
686
|
mage_ai/data_preparation/storage/base_storage.py,sha256=9LlzTBa2S5o-bPSF0EzjlUm7IwreVJeiDaS-8gpCCM8,2992
|
|
687
687
|
mage_ai/data_preparation/storage/gcs_storage.py,sha256=wnIyRHmvUkn3xEzmrz9dp8Bk8qVK7N_FNjcjBaLaqg8,6048
|
|
688
|
-
mage_ai/data_preparation/storage/local_storage.py,sha256=
|
|
688
|
+
mage_ai/data_preparation/storage/local_storage.py,sha256=JzyTVXGF0rLNUjMIDMCNj4w-nrqvFanL50QY9pPQEh0,5682
|
|
689
689
|
mage_ai/data_preparation/storage/s3_storage.py,sha256=DW-3CJGzGVSMUTX5F2IIGzcrOxzuCbPJWa2LlXaS4b0,4262
|
|
690
690
|
mage_ai/data_preparation/storage/utils.py,sha256=hBvfdRVWDpoh-tZUm3TP0TbY92lnFmKdh-Pwycs-u6w,2729
|
|
691
691
|
mage_ai/data_preparation/sync/__init__.py,sha256=r9sqRZEdjRJR1W1-DddHmvRmHAEfgtiV8wMxvw4wq-o,1723
|
|
692
692
|
mage_ai/data_preparation/sync/base_sync.py,sha256=ISj1quDeDJttBfYw0-YsOc13e5fAMISrQsa1JINLpDU,125
|
|
693
693
|
mage_ai/data_preparation/sync/git_sync.py,sha256=BzI5gDG0PnwP0nYTtpiQs-CM_DjpSfjh9zKKjfETaWI,2112
|
|
694
694
|
mage_ai/data_preparation/templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
695
|
-
mage_ai/data_preparation/templates/constants.py,sha256=
|
|
695
|
+
mage_ai/data_preparation/templates/constants.py,sha256=YoRKoGkQh0OpTPDQFX5s3xRhAt0wlI9wr9P_E_xbEGI,22778
|
|
696
696
|
mage_ai/data_preparation/templates/template.py,sha256=SKiZK4eVaEr84cLX1D3G8bunhPbPKryKMcYjs6HremY,11110
|
|
697
697
|
mage_ai/data_preparation/templates/testable.jinja,sha256=i_SSr-xbeZvd-gpUZYdiy_MMa0suckmmn5gfPZOxx3A,333
|
|
698
698
|
mage_ai/data_preparation/templates/utils.py,sha256=sXUIip1-opMYTX5XDVSQkMyqHSElqoa1wu2SjUhjxOE,2460
|
|
@@ -763,6 +763,7 @@ mage_ai/data_preparation/templates/data_integrations/destinations/base.yaml,sha2
|
|
|
763
763
|
mage_ai/data_preparation/templates/data_integrations/sources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
764
764
|
mage_ai/data_preparation/templates/data_integrations/sources/base.py,sha256=nXZMK52Npk3d3nTc3i5LgKnJBoDGmIMy4yFqjqV3_pQ,1280
|
|
765
765
|
mage_ai/data_preparation/templates/data_integrations/sources/base.yaml,sha256=cfldsX5XCXeZPJOQ2x7mTp2QeVR3aA4qasauKTi6whA,57
|
|
766
|
+
mage_ai/data_preparation/templates/data_loaders/airtable.py,sha256=fsMSNdzHyLCbDUH4OxWtJxkAKnd5x50NN4X6X6X-fvU,773
|
|
766
767
|
mage_ai/data_preparation/templates/data_loaders/algolia.py,sha256=dpNWg1W2wt7QX-glWxFKcOSPTpXsKEOPQbL8wpKNBWg,866
|
|
767
768
|
mage_ai/data_preparation/templates/data_loaders/api.py,sha256=CqiM7RjkoHi6Rq4tMAa_uSC3i2Kj6BT087n8cZXzkc4,391
|
|
768
769
|
mage_ai/data_preparation/templates/data_loaders/azure_blob_storage.py,sha256=gGlLXZdvJxTwfKGb7610Rv-dQR6_8EtE7izKBGd1Mds,885
|
|
@@ -815,7 +816,7 @@ mage_ai/data_preparation/templates/pipeline_execution/emr_bootstrap.sh,sha256=1s
|
|
|
815
816
|
mage_ai/data_preparation/templates/pipeline_execution/spark_script.jinja,sha256=VTX_r1601I6zzo4fXIHC8j6HHzBOA4LclXlwfcEmBzw,2736
|
|
816
817
|
mage_ai/data_preparation/templates/repo/.gitignore,sha256=5xUJSnHX0OFC9mcUyZSuUt2QWL2JFbnnuzdimxVjl-Q,174
|
|
817
818
|
mage_ai/data_preparation/templates/repo/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
818
|
-
mage_ai/data_preparation/templates/repo/io_config.yaml,sha256=
|
|
819
|
+
mage_ai/data_preparation/templates/repo/io_config.yaml,sha256=5alwrAiLrW58lU5orp9xyxWuNnqBkYaISMvvVVvyCp8,4767
|
|
819
820
|
mage_ai/data_preparation/templates/repo/metadata.yaml,sha256=0BTp7wOVs9bGWZwoclz6i6nCVe9k1NEFJi0PDoLM25Y,1953
|
|
820
821
|
mage_ai/data_preparation/templates/repo/requirements.txt,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
821
822
|
mage_ai/data_preparation/templates/repo/charts/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -910,13 +911,14 @@ mage_ai/frameworks/execution/models/pipeline/adapter.py,sha256=vkPVucAl1JUj_ijOg
|
|
|
910
911
|
mage_ai/frameworks/execution/models/pipeline/base.py,sha256=VhmbyrOjKXr6BTEZjDXIB13Jk27q5CwYrXCBAdG4vR4,8637
|
|
911
912
|
mage_ai/frameworks/execution/models/pipeline/constants.py,sha256=2M0NNf0CcJ6KhEiiu3M2WR-QnN7YtBBlBL-ztyYtleU,1244
|
|
912
913
|
mage_ai/io/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
914
|
+
mage_ai/io/airtable.py,sha256=1sBE21ayniLAkAXSY6Avr4W5RFcY5g0prvOQt3em_fU,3332
|
|
913
915
|
mage_ai/io/algolia.py,sha256=wuS6bUe6J2d-JORQNcN2SnW5RpX9Wg3on0DL-YKxuQY,2802
|
|
914
916
|
mage_ai/io/azure_blob_storage.py,sha256=0A2ChxAsDstT5gcNotecJTqKmzTy_lUIh_9sRKTlYjM,4900
|
|
915
|
-
mage_ai/io/base.py,sha256=
|
|
916
|
-
mage_ai/io/bigquery.py,sha256=
|
|
917
|
+
mage_ai/io/base.py,sha256=yWC0l6OVk8KjF_WNXcr96E9jkKAIEw8nF9TADd5WJlA,13392
|
|
918
|
+
mage_ai/io/bigquery.py,sha256=rK1JSdqEaRfsQmZUSJ3u2bFTGN2nGI2cjyUav3hDWIM,24470
|
|
917
919
|
mage_ai/io/chroma.py,sha256=oMjh9I18J4MSgVSmi73wGYSrKf632ER5_tLOItgky0c,5801
|
|
918
920
|
mage_ai/io/clickhouse.py,sha256=wlnm1Z93W1j7f1mpR9cpUyPHSx_OWN1yx1q_M3h_gEI,10700
|
|
919
|
-
mage_ai/io/config.py,sha256=
|
|
921
|
+
mage_ai/io/config.py,sha256=FIz1jiI6ZacUKplrbeZTW3o52Kc-m-FTkoR44grFbqU,22280
|
|
920
922
|
mage_ai/io/constants.py,sha256=RFGp6m57u842N-LrIpC0a6LlDCHsBiSQQsZbTy65taI,13399
|
|
921
923
|
mage_ai/io/druid.py,sha256=V1Af65rHU7DIxP71LM3yBYYxI3_cwhRc56HtCLvtZy8,5628
|
|
922
924
|
mage_ai/io/duckdb.py,sha256=mrTp6Mu6N85ihLDWJK23pVDKEzNr701IN7RlDVdqKyE,4747
|
|
@@ -926,17 +928,17 @@ mage_ai/io/google_cloud_storage.py,sha256=wEeeILfe8xtvfq6ditTnhJlk6JP6wl2T3rpYY4
|
|
|
926
928
|
mage_ai/io/google_sheets.py,sha256=W6MU9oyj2ofzeEYvxbF-gk2_XhfSzgwhvs2aToFjoSA,11738
|
|
927
929
|
mage_ai/io/io_config.py,sha256=bTlvZVuNZLUm_Z4y3bK69N22GZzs25-vLR5Vxr667sY,1463
|
|
928
930
|
mage_ai/io/mongodb.py,sha256=BhJcwgQELONuDQRIMCjFO8Lq0FgsJ-S7L6MEGPhtkmk,3273
|
|
929
|
-
mage_ai/io/mssql.py,sha256=
|
|
930
|
-
mage_ai/io/mysql.py,sha256=
|
|
931
|
+
mage_ai/io/mssql.py,sha256=XMHxgLp0LD6vi1Cq-7-ubFF2tZWMrspM0KcV2pegHGQ,11717
|
|
932
|
+
mage_ai/io/mysql.py,sha256=DOLZ_yfEJfI9hMffq041JMX191cB2TbH4-N9nDfKHNI,8341
|
|
931
933
|
mage_ai/io/oracledb.py,sha256=UYtlik565uvfrwfw1v1-QJ0EutuIxvgUMDfmYMk3xno,9037
|
|
932
934
|
mage_ai/io/pinot.py,sha256=tFxLQsgxZhNIq3lQ4dm_6r0Cwbmilg4W1K-qcqzz-WI,4838
|
|
933
|
-
mage_ai/io/postgres.py,sha256=
|
|
935
|
+
mage_ai/io/postgres.py,sha256=ATMSrLIqYSYLKg1hIlmqNG_VWudM83zmXWdGk0TbDWM,16057
|
|
934
936
|
mage_ai/io/qdrant.py,sha256=9mCx5z9HAujbWgyFUidpItaMVGazYwfxCKOgTEUozTI,5576
|
|
935
|
-
mage_ai/io/redshift.py,sha256
|
|
937
|
+
mage_ai/io/redshift.py,sha256=-RQwMpb5vmIRAEm7YcQTtoo7q1BBh5Mkti-1mTxv-H8,15450
|
|
936
938
|
mage_ai/io/s3.py,sha256=WuKcjRc2gX8QhSzyHFucuU3GYyoM7-52WDIuZ41MbM0,6324
|
|
937
939
|
mage_ai/io/snowflake.py,sha256=DX3ddEHXruYdd6EZeM49v5YI8y-Bp81Aki2v_R9Ns40,17760
|
|
938
940
|
mage_ai/io/spark.py,sha256=T3ULoETSRJr64McbnnxNs22otmRksDjwZG-6qeg39Eg,8355
|
|
939
|
-
mage_ai/io/sql.py,sha256=
|
|
941
|
+
mage_ai/io/sql.py,sha256=EhCNsiFi-SG-HJXr6ePktKxqbD8Qr1t1w_U7qQQIHtc,14220
|
|
940
942
|
mage_ai/io/trino.py,sha256=ZBC-IijvJmZnOfCXi5oiRnLZHAYxfJB08-FlGz9Lubk,13502
|
|
941
943
|
mage_ai/io/utils.py,sha256=YfXybPcBx0vzl34t2b-P3uG0gAy4VR7Wcu3pllYoBcw,1250
|
|
942
944
|
mage_ai/io/weaviate.py,sha256=Fe8hkHSwGxmJn2yVrb60vD6jh_7t8dbazA15QHlE9MI,4348
|
|
@@ -966,16 +968,16 @@ mage_ai/orchestration/airflow.py,sha256=8OaU4-EVmfgiGYmG-h1OvcZJw30ndutR7l0xV1Vf
|
|
|
966
968
|
mage_ai/orchestration/concurrency.py,sha256=Ry73xMmpvHqN0pIrY0ZGCechEVGsnO_R71E160kh71c,563
|
|
967
969
|
mage_ai/orchestration/constants.py,sha256=9ua1wMffrQ218fPnCYeXpLrRSV6apdYIc6hA6zh4ArM,718
|
|
968
970
|
mage_ai/orchestration/execution_process_manager.py,sha256=hKkVMu9FEePh8aT2zOk57gl9VNBsQpvJ9WQZOQ78OhY,3827
|
|
969
|
-
mage_ai/orchestration/job_manager.py,sha256=
|
|
971
|
+
mage_ai/orchestration/job_manager.py,sha256=vglx0FUWBcD3EeXWO0doBHPHtSPJpT8XLzmbjs7Ke8c,3487
|
|
970
972
|
mage_ai/orchestration/pipeline_scheduler.py,sha256=9mhlW8viMC5FxNXbUYaZpq5i3s2DxGcLIZpY4EHp6Y4,84
|
|
971
|
-
mage_ai/orchestration/pipeline_scheduler_original.py,sha256=
|
|
972
|
-
mage_ai/orchestration/pipeline_scheduler_project_platform.py,sha256=
|
|
973
|
+
mage_ai/orchestration/pipeline_scheduler_original.py,sha256=_sIqnmHKrjVrf06MqhSduqyrcVAOGDsE0ZlDIKgkiow,79979
|
|
974
|
+
mage_ai/orchestration/pipeline_scheduler_project_platform.py,sha256=RN0sAEzFQoCayNAh1gZq128QbjrgVpLLXqNKeuUjBEc,69885
|
|
973
975
|
mage_ai/orchestration/run_status_checker.py,sha256=6_kaxXqK0vaulYJtEIRuSs7YC2d-1QOS2l1-29_z5hY,2655
|
|
974
976
|
mage_ai/orchestration/ai/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
975
977
|
mage_ai/orchestration/ai/config.py,sha256=HXOs2-ZEDZhxBc9842iKw32CmrboRChBVkdpfA6VaXA,533
|
|
976
978
|
mage_ai/orchestration/backfills/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
977
979
|
mage_ai/orchestration/backfills/service.py,sha256=K1CtYj5fzkL7DR40lxLpxPkPqgh4Nk7fVmzQyIRinl4,5637
|
|
978
|
-
mage_ai/orchestration/db/__init__.py,sha256=
|
|
980
|
+
mage_ai/orchestration/db/__init__.py,sha256=D2fiEowOKzyBobdBgErE4CYctn3OrBIVynj4HhR4Sco,6685
|
|
979
981
|
mage_ai/orchestration/db/alembic.ini,sha256=f5DpoW63bVPUsMu8NlCfYg8CENVuspKpTBEesOJazmo,3262
|
|
980
982
|
mage_ai/orchestration/db/cache.py,sha256=eVRDDbLTDPCM8qYEZ0rLY42m5OOr7xKE51XrC2RssCs,2444
|
|
981
983
|
mage_ai/orchestration/db/constants.py,sha256=F2X7Pi9BtlvC4Jx_Rb5aBnoWSmbpVmFQ_BILOJcnPqs,123
|
|
@@ -1001,6 +1003,7 @@ mage_ai/orchestration/db/migrations/versions/21e31d66ccea_add_pipeline_uuid_inde
|
|
|
1001
1003
|
mage_ai/orchestration/db/migrations/versions/2266370f589b_add_indexes_to_pipeline_run.py,sha256=AdGgza-dl2FO3yoV2a8VYlH80Dj4sjaK_K_GCXzPI1E,1124
|
|
1002
1004
|
mage_ai/orchestration/db/migrations/versions/26305e46df52_create_backfills_table.py,sha256=otXeqYzcAmXjLAREH_idJpaoVT7KS6nhhqXJ3ifJD9w,2579
|
|
1003
1005
|
mage_ai/orchestration/db/migrations/versions/386bcfebd48d_create_tag_and_tagassociation_tables.py,sha256=SYuVspWXnNuxBz1B0vjZ9SrA_gPa1IJ_Z4CAzodW-AE,2479
|
|
1006
|
+
mage_ai/orchestration/db/migrations/versions/39d36f1dab73_create_genericjob.py,sha256=6UfQrSlgHC6zrR9pES_dG7fsKOTgKaN3Pym6dqPYH48,1973
|
|
1004
1007
|
mage_ai/orchestration/db/migrations/versions/3fafd217efa7_add_event_matcher_model.py,sha256=zOOmB4-p23UrEuue8k4ufhNyDIYy15ttLvdyIlGIyAw,1607
|
|
1005
1008
|
mage_ai/orchestration/db/migrations/versions/42a14d6143f1_update_token_column_type.py,sha256=Y8I6jFIws9_EQ9w9iIJf3kiCM6t1ifG02zqzNC_8nCQ,1442
|
|
1006
1009
|
mage_ai/orchestration/db/migrations/versions/526c4523d5d5_add_user_id_to_roles_and_more_entity_.py,sha256=UhhkeQzCmuDQJq1hyFERjqmqe-kUjtpW65jpEXrRhSQ,1807
|
|
@@ -1029,26 +1032,26 @@ mage_ai/orchestration/db/migrations/versions/e7beb59b44f9_add_repo_path_to_pipel
|
|
|
1029
1032
|
mage_ai/orchestration/db/migrations/versions/ec5df57a1c60_add_metrics_to_block_runs.py,sha256=6yGww3f8GptOPgk8i2UfdpJJa3VPrCJMUd8oC4l1jP8,685
|
|
1030
1033
|
mage_ai/orchestration/db/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1031
1034
|
mage_ai/orchestration/db/models/base.py,sha256=K3jd7r1OQnHzIS8IhEXDoi2FTdiH5iT4V8drNuTmZ38,3790
|
|
1032
|
-
mage_ai/orchestration/db/models/oauth.py,sha256=
|
|
1035
|
+
mage_ai/orchestration/db/models/oauth.py,sha256=B9fJ0-oEK6aotFLVNo_XAvWShbmR164B6g1uFXePz-A,29330
|
|
1033
1036
|
mage_ai/orchestration/db/models/projects.py,sha256=gyr_F7o69D-jU8WfrSFu-xrjGAiHipsW3GFjYKaNp-k,368
|
|
1034
|
-
mage_ai/orchestration/db/models/schedules.py,sha256=
|
|
1037
|
+
mage_ai/orchestration/db/models/schedules.py,sha256=kuWZOE4Pcz4BWEoMavAUwz9g1uXftbOb4hNDl8htVOw,79526
|
|
1035
1038
|
mage_ai/orchestration/db/models/schedules_project_platform.py,sha256=w1isPuhFJyDEjWOo6OuSCRZXr9B_faXo5lfFXdsAdlI,15521
|
|
1036
|
-
mage_ai/orchestration/db/models/secrets.py,sha256=
|
|
1039
|
+
mage_ai/orchestration/db/models/secrets.py,sha256=Ko1ElaEbJSsei5amuuW92O1Y7_tV6mVHw0xyBfBbf3s,1180
|
|
1037
1040
|
mage_ai/orchestration/db/models/tags.py,sha256=wUuq0dK-aCO6kCSm1vbig1mCf4Vuc1ZnvGYorP0LEUY,1354
|
|
1038
1041
|
mage_ai/orchestration/db/models/utils.py,sha256=Ejsi_GCcd8Vcx1wu_jAlhpJsNh3YN3WrP3pSCBFDOjE,2152
|
|
1039
1042
|
mage_ai/orchestration/db/models/dynamic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1040
1043
|
mage_ai/orchestration/db/models/dynamic/controller.py,sha256=6i4p3oC9SAnv93zYQmG4XoT1egGSD5OAXWZW1OPolJ4,2454
|
|
1041
1044
|
mage_ai/orchestration/metrics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1042
|
-
mage_ai/orchestration/metrics/pipeline_run.py,sha256=
|
|
1045
|
+
mage_ai/orchestration/metrics/pipeline_run.py,sha256=OhjWJtBR2zBT8U2gLJUTrbCSwvO4Wo2hW_3ZIwh-BQU,10090
|
|
1043
1046
|
mage_ai/orchestration/monitor/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1044
1047
|
mage_ai/orchestration/monitor/monitor_stats.py,sha256=CWukxm9Q7rVQzDCLN4yOiPzLlt9n7_FHuX2GuKtz7qs,14016
|
|
1045
1048
|
mage_ai/orchestration/notification/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1046
1049
|
mage_ai/orchestration/notification/config.py,sha256=1eLvWi2SFi1EnQwUUysfO4BZh-fpgwLUACewIkKEuyc,1559
|
|
1047
|
-
mage_ai/orchestration/notification/sender.py,sha256=
|
|
1050
|
+
mage_ai/orchestration/notification/sender.py,sha256=jV5MeVytnUZGpGokFJUJ7sSyNZ5SIhvgw2A-BExTczU,10645
|
|
1048
1051
|
mage_ai/orchestration/queue/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1049
1052
|
mage_ai/orchestration/queue/celery_queue.py,sha256=UG6-8Yg7VYAiXcJROYiXqlkss11nqLCeMF8W8yAe-Qo,761
|
|
1050
|
-
mage_ai/orchestration/queue/config.py,sha256=
|
|
1051
|
-
mage_ai/orchestration/queue/process_queue.py,sha256=
|
|
1053
|
+
mage_ai/orchestration/queue/config.py,sha256=4MsGKoK3YH0em6_wr7SImNwD_k6N97GRFG411i4bam8,706
|
|
1054
|
+
mage_ai/orchestration/queue/process_queue.py,sha256=rke7maweXCAGB6_-a5aOgsPrkwKu2fOU_UEakFqe4AU,11389
|
|
1052
1055
|
mage_ai/orchestration/queue/queue.py,sha256=BnaXvG5qByu5LJYH-K8uQmmPkZ8rA14gax93kEqXyYw,594
|
|
1053
1056
|
mage_ai/orchestration/queue/queue_factory.py,sha256=XUXpRP1gOmnCytY6gb12mvk-IOEE32IzAE9ZYjh4-I0,728
|
|
1054
1057
|
mage_ai/orchestration/triggers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -1060,7 +1063,7 @@ mage_ai/orchestration/triggers/loop_time_trigger.py,sha256=Y6GEso_cc7FzlDJNGetef
|
|
|
1060
1063
|
mage_ai/orchestration/triggers/time_trigger.py,sha256=woYBvRgDmEjUzLayQ4qU8iE8VbGpFl2FdlU0xvyDohE,383
|
|
1061
1064
|
mage_ai/orchestration/triggers/utils.py,sha256=OctYGeM7uVBhKUVzTNCRpK5hQ9k4y_4Z0NkTx59kvHE,4594
|
|
1062
1065
|
mage_ai/orchestration/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1063
|
-
mage_ai/orchestration/utils/distributed_lock.py,sha256=
|
|
1066
|
+
mage_ai/orchestration/utils/distributed_lock.py,sha256=Oc3_BXcQI9uxEvBIwdUb75mV91PLg4FPTkpN8C2Tuus,1232
|
|
1064
1067
|
mage_ai/orchestration/utils/git.py,sha256=JhtSPTFWt1yStBnvOiS2XcmI-PcFPOPMNN9bPnRGhQQ,2047
|
|
1065
1068
|
mage_ai/orchestration/utils/resources.py,sha256=KqakK2bKJtdZnqxqH79Spalq-YQsHrmmXysNaKqs0Ec,843
|
|
1066
1069
|
mage_ai/presenters/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -1111,30 +1114,30 @@ mage_ai/sample_datasets/titanic_survival.csv,sha256=SkN_3gX-UmThcBpzh6xvt1OTdyuj
|
|
|
1111
1114
|
mage_ai/sample_datasets/user_emails.csv,sha256=yokgn3bmkkrSZBFC-crJxPXFzKdgLaQbp7VJVzGLZiA,258700
|
|
1112
1115
|
mage_ai/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1113
1116
|
mage_ai/server/active_kernel.py,sha256=kknHr2ooUbFRiTkAvM81jTYXcpAGe-XCz4E6CTTdEnc,4962
|
|
1114
|
-
mage_ai/server/constants.py,sha256=
|
|
1117
|
+
mage_ai/server/constants.py,sha256=D7Y11PA_uscSxMpmfr4IyV_5ramwARV0yWCjYxaZk_c,421
|
|
1115
1118
|
mage_ai/server/docs_server.py,sha256=jeSlvxsJHvHHkiuDwL76cFv1HFazCqPWbX23B2PTOlg,606
|
|
1116
1119
|
mage_ai/server/execution_manager.py,sha256=jB8K0_aCO15fZdgE2Kd1zdROiv2VBOLGXWiigvb6rKQ,3457
|
|
1117
1120
|
mage_ai/server/file_observer.py,sha256=3LreT_Ll5x2irHk2QRL4UL2Cca91Xm8raGz1eZFd1Qw,340
|
|
1118
1121
|
mage_ai/server/kernel_output_parser.py,sha256=G9Z7nEPPHgp6Xh-vhwcto_NrVYE8T7i9OjCnWTLeQTo,2618
|
|
1119
1122
|
mage_ai/server/kernels.py,sha256=43RnLxfu_BTAUayh5JGkmUj1v0Y4KWHsw2BEJqwROl0,803
|
|
1120
1123
|
mage_ai/server/logger.py,sha256=psqBnb2ORm8i9XFeXtUQQ2ScYvo3uJtUrDE1zDPv1MA,747
|
|
1121
|
-
mage_ai/server/scheduler_manager.py,sha256=
|
|
1124
|
+
mage_ai/server/scheduler_manager.py,sha256=H4EtqWUEflsQuCX88IOV5XCloLuxf_B9xFfMVDyLO8U,4006
|
|
1122
1125
|
mage_ai/server/server.py,sha256=KVneReG_xP_bUdyrQ0LqVMFahBxeocqEJmaMHueiuwQ,31598
|
|
1123
1126
|
mage_ai/server/setup.py,sha256=7vOM_UaKyjil7LpnU-Q1faEgWrUGD3mbW6TkbnBZkOQ,409
|
|
1124
1127
|
mage_ai/server/subscriber.py,sha256=DiHuAe1xLIhHsiCHD7J4OAVF0jrTcqsE2iO94vV1EjI,712
|
|
1125
|
-
mage_ai/server/terminal_server.py,sha256=
|
|
1128
|
+
mage_ai/server/terminal_server.py,sha256=0ge2xGDhQg21yelZpMJ5ze23_BgN8R4Svkvb3zCJ-9I,6115
|
|
1126
1129
|
mage_ai/server/websocket_server.py,sha256=QGPp-Yu-VTvPl2--8OuGqQM95D6T57pZ-iaMCCvTj1o,28091
|
|
1127
1130
|
mage_ai/server/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1128
|
-
mage_ai/server/api/base.py,sha256=
|
|
1131
|
+
mage_ai/server/api/base.py,sha256=o0AFv12UYdN8cd1fm06TWOvEANX7qKQtmm2QtbEOxro,6769
|
|
1129
1132
|
mage_ai/server/api/blocks.py,sha256=CU6ekJKtCXl9WuLc4bjytTb5chgcFoGwlIu2CQ1Zi8k,583
|
|
1130
|
-
mage_ai/server/api/constants.py,sha256=
|
|
1133
|
+
mage_ai/server/api/constants.py,sha256=eElqW_MJ56H_Z7X4pRhmI3-i0dQSTLrHzkIYA0A04Tg,261
|
|
1131
1134
|
mage_ai/server/api/downloads.py,sha256=hBN4lqGMqsivrj7lRhKlQCF6o3J_9bb5HA5oOLQ84zE,6173
|
|
1132
1135
|
mage_ai/server/api/errors.py,sha256=9p9jSjVEmeeA6lKFf3Y8Yua-Y2GdwHee2xqTRE1mZ0I,119
|
|
1133
1136
|
mage_ai/server/api/events.py,sha256=9yifYQJkmha4Bmw2MDem-84vFNB3K4Dob-wjBiQ1zEc,2106
|
|
1134
1137
|
mage_ai/server/api/integration_sources.py,sha256=TcUQagGd_qnWaXFnNPscZWAzKpHGvsxYty2bC_5F59Y,2566
|
|
1135
1138
|
mage_ai/server/api/projects.py,sha256=D7JD8ayWEzw6-nyblPuXR4MMQm_kzZJ7ZuDcsumc5Ng,931
|
|
1136
1139
|
mage_ai/server/api/runs.py,sha256=0FCaq0Xc7zGiinzZ86kAR0RJB6-XbxLxNgo7dcgVhDw,5439
|
|
1137
|
-
mage_ai/server/api/triggers.py,sha256=
|
|
1140
|
+
mage_ai/server/api/triggers.py,sha256=j4VGjJCLPsSMiSMG8TGsV3PZNrNPw7Zbd6KmGCTVYL8,2440
|
|
1138
1141
|
mage_ai/server/api/v1.py,sha256=LdSc0b7TV41jq6UrcauGgYxuDviD8ddKpeHTfsCt-Dg,2312
|
|
1139
1142
|
mage_ai/server/client/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1140
1143
|
mage_ai/server/client/mage.py,sha256=P_uT4tettbdT8eLnjrb6TnBvJ3522RHEUg2sO7KjMzg,2754
|
|
@@ -1143,33 +1146,31 @@ mage_ai/server/data/base.py,sha256=mEenR7pyQ_ETa795RcOx134M6DkSpszcv41FzEu_khM,3
|
|
|
1143
1146
|
mage_ai/server/data/models.py,sha256=nLLmDv476_eKqzuPWgeVAWcVnBuMZp8Csf4X-xYysgQ,9317
|
|
1144
1147
|
mage_ai/server/events/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1145
1148
|
mage_ai/server/events/stream.py,sha256=myZ3a3PwrLURGMecUc0X-NWAgeAK8OxmAtKW236nXxk,2088
|
|
1146
|
-
mage_ai/server/frontend_dist/404.html,sha256=
|
|
1147
|
-
mage_ai/server/frontend_dist/block-layout.html,sha256=
|
|
1148
|
-
mage_ai/server/frontend_dist/compute.html,sha256=
|
|
1149
|
+
mage_ai/server/frontend_dist/404.html,sha256=e9BsjckHrrmfv7QQ5KM67wirgi_dD3dfk8b2XMan4mo,11759
|
|
1150
|
+
mage_ai/server/frontend_dist/block-layout.html,sha256=6Bwhjz0QZQNkl9GcD94s55tdFai9zl3CfPVkpLYfRh0,10177
|
|
1151
|
+
mage_ai/server/frontend_dist/compute.html,sha256=xU_bJ3b7QXfukD0MO_6y5it1ZImEsrrOE9i-916bXQk,11275
|
|
1149
1152
|
mage_ai/server/frontend_dist/favicon-pro.ico,sha256=kFkKmuH0-ZGuqsQnZOEg8fc776DKddryiHfxzGwxI8I,141677
|
|
1150
1153
|
mage_ai/server/frontend_dist/favicon.ico,sha256=ZSTSGm_csS09e9wbk5aYBDuzaccwVAQWpslG3mN9A30,15406
|
|
1151
|
-
mage_ai/server/frontend_dist/files.html,sha256=
|
|
1152
|
-
mage_ai/server/frontend_dist/global-data-products.html,sha256=
|
|
1153
|
-
mage_ai/server/frontend_dist/global-hooks.html,sha256=
|
|
1154
|
-
mage_ai/server/frontend_dist/index.html,sha256=
|
|
1154
|
+
mage_ai/server/frontend_dist/files.html,sha256=VN5cnbMoTHan_BMuuTVVKCL1aG8i1nOHwXdmUR4ixRQ,11191
|
|
1155
|
+
mage_ai/server/frontend_dist/global-data-products.html,sha256=HR7F0A29HzwJdDgWHIkaW3TYGNFSBJm3FIznkZ9vDdA,11459
|
|
1156
|
+
mage_ai/server/frontend_dist/global-hooks.html,sha256=7SaRh0P0HQXgrTWUXNy_-bIVbnT0YzhSlZ7RC6JDSLs,11279
|
|
1157
|
+
mage_ai/server/frontend_dist/index.html,sha256=yHk7iQvGSIMWkVtM6dQ4-9LXHsoE1DTI03PHTpnDNMw,9315
|
|
1155
1158
|
mage_ai/server/frontend_dist/m24.png,sha256=jLEkQAh5uMazS_DpwY2UfqzWwuojpa0KfHd7PuoSHic,1247777
|
|
1156
1159
|
mage_ai/server/frontend_dist/m24.svg,sha256=Pgxwy73-TWwoMwpxy-lIFSMlZ9GXWgT5kzwxatnD4kQ,1220211
|
|
1157
|
-
mage_ai/server/frontend_dist/manage.html,sha256=
|
|
1158
|
-
mage_ai/server/frontend_dist/oauth.html,sha256=
|
|
1159
|
-
mage_ai/server/frontend_dist/overview.html,sha256=
|
|
1160
|
-
mage_ai/server/frontend_dist/pipeline-runs.html,sha256=
|
|
1161
|
-
mage_ai/server/frontend_dist/pipelines.html,sha256=
|
|
1162
|
-
mage_ai/server/frontend_dist/settings.html,sha256=
|
|
1163
|
-
mage_ai/server/frontend_dist/sign-in.html,sha256=
|
|
1164
|
-
mage_ai/server/frontend_dist/templates.html,sha256=
|
|
1165
|
-
mage_ai/server/frontend_dist/terminal.html,sha256=
|
|
1166
|
-
mage_ai/server/frontend_dist/test.html,sha256=
|
|
1167
|
-
mage_ai/server/frontend_dist/triggers.html,sha256=
|
|
1168
|
-
mage_ai/server/frontend_dist/v2.html,sha256=
|
|
1160
|
+
mage_ai/server/frontend_dist/manage.html,sha256=2yg21KJFowhL3uCnDA_zNy6a1My7y8UoU7hxvP3Or2Y,11343
|
|
1161
|
+
mage_ai/server/frontend_dist/oauth.html,sha256=blrdId_fyJTWCWRZZ8cBSDfW7kcXSTxuuO-p-6rykk8,10959
|
|
1162
|
+
mage_ai/server/frontend_dist/overview.html,sha256=_wewtQib4lpvExt1NfFeKHvGQDkZL0ythDsWhAjozI4,12449
|
|
1163
|
+
mage_ai/server/frontend_dist/pipeline-runs.html,sha256=76D3oqrHIUHbRi7qvcORGdRPDBTkQXVxtVmm1YyYhO8,11360
|
|
1164
|
+
mage_ai/server/frontend_dist/pipelines.html,sha256=oxgHFtYviBkWnZD4O6KnIP4iPdxUkktDouTJdvQtAhw,11581
|
|
1165
|
+
mage_ai/server/frontend_dist/settings.html,sha256=jM7d8n8JyuMof10UzrUlCyerktZAI-y51tC4NG5qaUA,9387
|
|
1166
|
+
mage_ai/server/frontend_dist/sign-in.html,sha256=BxwS2wZpZEVx19vNQt5x7Grse6Vnanx6ey2gb9b8-VE,20288
|
|
1167
|
+
mage_ai/server/frontend_dist/templates.html,sha256=YTuCVI0_AAddNAlS08s3A3ADh35E53dHiPOTFDGcs2I,11347
|
|
1168
|
+
mage_ai/server/frontend_dist/terminal.html,sha256=If8L88zmIRbR7G1jO2J_VBEeCtobv-B3GUnMUZ8pmP8,11189
|
|
1169
|
+
mage_ai/server/frontend_dist/test.html,sha256=ewhxEf5HneF3dfmFsPYFvIEBkK3G3lH5PrmSz8GxJuM,13648
|
|
1170
|
+
mage_ai/server/frontend_dist/triggers.html,sha256=STPvws4fxAjSXxATjfBINCpw69E2Zhv7VhMD5a2__I0,11267
|
|
1171
|
+
mage_ai/server/frontend_dist/v2.html,sha256=bJJS8r8Na-TwaZCAvnWmwyzA3IQVUwSYRT6tFRQHkkU,18596
|
|
1169
1172
|
mage_ai/server/frontend_dist/vercel.svg,sha256=wPvODNXNDTx7iJgazQaNE7lhRgu5TTxLpKDsXCgFH9E,1101
|
|
1170
|
-
mage_ai/server/frontend_dist/version-control.html,sha256=
|
|
1171
|
-
mage_ai/server/frontend_dist/_next/static/38-PtskJFUTYUpRhT1qF_/_buildManifest.js,sha256=g6FtK1G3Ar7cawfkuT3QX1tj1n-hPUuCkeUhzb3S9vI,8855
|
|
1172
|
-
mage_ai/server/frontend_dist/_next/static/38-PtskJFUTYUpRhT1qF_/_ssgManifest.js,sha256=b1tKoA0vjWrtmTW0cYBr96zvRk0MHTkCYOX-J_gAxn4,77
|
|
1173
|
+
mage_ai/server/frontend_dist/version-control.html,sha256=UaabICkcW8PHD_RkAZ3fXKV_YJRcMBhrJuQDRZ39RAc,11210
|
|
1173
1174
|
mage_ai/server/frontend_dist/_next/static/chunks/1004.a4db096bf00e5748.js,sha256=xkdDfWP0Y45S9EigKBWk-zKu43VkF8zlhmzTz6Kpdbw,3076
|
|
1174
1175
|
mage_ai/server/frontend_dist/_next/static/chunks/1004.a4db096bf00e5748.js.LICENSE.txt,sha256=MDov8tAf6tU89D5bupNoGlJKZ9XsKnOYuk8644UaiMc,387
|
|
1175
1176
|
mage_ai/server/frontend_dist/_next/static/chunks/1040.5ce2658611163884.js,sha256=rfKgJPBCdxnsVIVIAC1ZPvMeOLBddb45kaiY4iuaaWc,2845
|
|
@@ -1290,7 +1291,7 @@ mage_ai/server/frontend_dist/_next/static/chunks/4454.13a2404adecaa39e.js,sha256
|
|
|
1290
1291
|
mage_ai/server/frontend_dist/_next/static/chunks/4478.1eafc50141421dcc.js,sha256=IMrGsLPGOV9a_63e00K85AEt0ejEmUPHnBCIC_XmVfo,2468
|
|
1291
1292
|
mage_ai/server/frontend_dist/_next/static/chunks/4487.0465f09dc04c8008.js,sha256=hI7m4nqc4OhgetnBDjFf6LSx7iQoEpoq3EQlN1afjUI,3469
|
|
1292
1293
|
mage_ai/server/frontend_dist/_next/static/chunks/4487.0465f09dc04c8008.js.LICENSE.txt,sha256=MDov8tAf6tU89D5bupNoGlJKZ9XsKnOYuk8644UaiMc,387
|
|
1293
|
-
mage_ai/server/frontend_dist/_next/static/chunks/449-
|
|
1294
|
+
mage_ai/server/frontend_dist/_next/static/chunks/449-5e2253c6aba42557.js,sha256=3xrxKIeI9XV0GB076iYeMXXJmZdIPIOfAieneqXYHgw,36361
|
|
1294
1295
|
mage_ai/server/frontend_dist/_next/static/chunks/4541.ffd561a6902db77e.js,sha256=mwm2T70Ef-hRkNgSSkvedpGGgigzZ190ujdz-lvo1Xc,11881
|
|
1295
1296
|
mage_ai/server/frontend_dist/_next/static/chunks/4541.ffd561a6902db77e.js.LICENSE.txt,sha256=MDov8tAf6tU89D5bupNoGlJKZ9XsKnOYuk8644UaiMc,387
|
|
1296
1297
|
mage_ai/server/frontend_dist/_next/static/chunks/4640.eeead6d972644382.js,sha256=GdA20vxx40bstjixCqCAk7tPv3BVqkaM2hI_weOFa6Q,1848
|
|
@@ -1486,10 +1487,10 @@ mage_ai/server/frontend_dist/_next/static/chunks/framework-ea07653270784974.js,s
|
|
|
1486
1487
|
mage_ai/server/frontend_dist/_next/static/chunks/framework-ea07653270784974.js.LICENSE.txt,sha256=c5vNQ22N4R7qRc436IuUyG4sPRoYCEtVo-VypeXFjps,1492
|
|
1487
1488
|
mage_ai/server/frontend_dist/_next/static/chunks/main-f39b6301263551db.js,sha256=UEGhR6DcpPItI_VWmI5PcwIC-_m-6G1gGAqpv_ti_hw,99677
|
|
1488
1489
|
mage_ai/server/frontend_dist/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js,sha256=AiXrA00CSgO9yQ6mx59WGTZi58Pu6QlpYpiCDlF8u4M,91460
|
|
1489
|
-
mage_ai/server/frontend_dist/_next/static/chunks/webpack-
|
|
1490
|
+
mage_ai/server/frontend_dist/_next/static/chunks/webpack-b9a067f3bd0a3a05.js,sha256=vzJNW2viqoyRevBkT_LKsvyKx3PxLJXXwAshjiPNZxE,10156
|
|
1490
1491
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/404-8ecd93274c427b76.js,sha256=lmeHQIPtqqXqhdnEE3rTu4f1MK-Bm08mCCbv4X16C40,962
|
|
1491
|
-
mage_ai/server/frontend_dist/_next/static/chunks/pages/_app-
|
|
1492
|
-
mage_ai/server/frontend_dist/_next/static/chunks/pages/_app-
|
|
1492
|
+
mage_ai/server/frontend_dist/_next/static/chunks/pages/_app-782dd4a6b13e1c42.js,sha256=uarV9leNje0U_LVeoaacy1ElvyAx5uDP-O1QfftviIE,3065543
|
|
1493
|
+
mage_ai/server/frontend_dist/_next/static/chunks/pages/_app-782dd4a6b13e1c42.js.LICENSE.txt,sha256=0aaoGhGApZjPgUzReWiqgHCG0JG92p6MooxRuaYGgTI,3124
|
|
1493
1494
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/_error-b2c101c3f6329265.js,sha256=2UMATuWn3KjFrAhRAhdO4XR05zmR4XEhKjASn6cfKHw,3205
|
|
1494
1495
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/block-layout-9bed8fa86d923ab9.js,sha256=KkdyGdDe-c7mCk_EbN_7teegWCdZnIs3EpM7JSnu09c,5680
|
|
1495
1496
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/compute-9e2dea78024e3bb4.js,sha256=_PHXX3qibuKVzapA2GoxHSRhRyMyQ3FJSToJ4KT-Bv4,71670
|
|
@@ -1499,9 +1500,9 @@ mage_ai/server/frontend_dist/_next/static/chunks/pages/global-hooks-4ff959d51b8a
|
|
|
1499
1500
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/index-00ff043e2b1e43f2.js,sha256=uCkzMuzbyep3m624XdX8t9RVHgpaEOgYykRGu6XHHvc,954
|
|
1500
1501
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/manage-868fcd8cbeb265f0.js,sha256=nM-MyyBuNXrIb8heDJ26jU0A3P1uW-g1vkoCf3h5b5A,30889
|
|
1501
1502
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/oauth-6ceceb62191dfe8a.js,sha256=rEa0Dk5ARHGB8v6r4iAWKyXLk7N38VAypDXNefDw7Hc,3412
|
|
1502
|
-
mage_ai/server/frontend_dist/_next/static/chunks/pages/overview-
|
|
1503
|
+
mage_ai/server/frontend_dist/_next/static/chunks/pages/overview-f65416f6dbe30ad3.js,sha256=jZyWoO7hedx4hfzBMSqhPQNP-Eg7feIYrWVMXmfbDww,19356
|
|
1503
1504
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/pipeline-runs-2d0136b51b57de93.js,sha256=C38UPW-uxzIgDHltCdLE0ibEXgqeFlJxKw4pSEXyTv0,9959
|
|
1504
|
-
mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines-
|
|
1505
|
+
mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines-d25d07db166cbb04.js,sha256=POFkuoDW5AIKlgSVgcUnxH7JYuL2Tw9detUb4JaFLhY,24634
|
|
1505
1506
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/settings-8097291375b16889.js,sha256=stqfdYX2Fpgei0s_ewspgxPY_Rk1Z4sNJ8xJd4FUAnE,4253
|
|
1506
1507
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/sign-in-593c40985d63fcf7.js,sha256=pe9xsVI2HvbN45PFXYVe0Ilt2hifqZiPEBM4qgMwwfQ,10916
|
|
1507
1508
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/templates-ca528bc607753ab8.js,sha256=aGIHe-RNXwYGzsWCKQkqV-W-6wEF_bligJSqmJEdxoo,5364
|
|
@@ -1516,7 +1517,7 @@ mage_ai/server/frontend_dist/_next/static/chunks/pages/manage/files-d08a460641d0
|
|
|
1516
1517
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/manage/overview-aae747f487e08d51.js,sha256=s2ukVoYdaBdClLlq4-lQz8eppP5Zuji2TEE2msYKNuI,11631
|
|
1517
1518
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/manage/pipeline-runs-09a842d64a6ada62.js,sha256=YK9n1SvuJ57tS9x5752gZj3_j16EJDvVq5bzzM_BJ18,4211
|
|
1518
1519
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/manage/settings-2e98e57d9376a458.js,sha256=7MrsRAKxECDtpOb5x5GIGlSYQhYU2ccCbon3hq6wLSY,2003
|
|
1519
|
-
mage_ai/server/frontend_dist/_next/static/chunks/pages/manage/users-
|
|
1520
|
+
mage_ai/server/frontend_dist/_next/static/chunks/pages/manage/users-5db54821a3059c69.js,sha256=QClC4nvtu8z4qT6VSMrSirBxueNDdLtKvwZUw4fD5Yo,6311
|
|
1520
1521
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/manage/users/[user]-7be6e41ad66089bb.js,sha256=CBmRJyNDy8NLUSs1koPBdFk_AN3uiJrZJeICzJyuF0g,15887
|
|
1521
1522
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/manage/users/new-4c088833063bfa07.js,sha256=agmD1jyYyE5cUHbOUVhg0aLtlsaW2EN6MRDGD26To4A,9410
|
|
1522
1523
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]-1a0d1ab496183686.js,sha256=bvb-Bba0xjPCQM2WLL-2HZzITpV2j5FiSjKAHu7UMU8,4432
|
|
@@ -1526,7 +1527,7 @@ mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/edit
|
|
|
1526
1527
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/logs-fe91dfb0091f6bc6.js,sha256=wUDBmSFMEwomjaaE4dyn-RaGX6fqaIk-nr-bTRGZcPI,33538
|
|
1527
1528
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/monitors-80bebb4401eefe25.js,sha256=hDblXIMuBSAiIOUNjmJ3gfA09NnvhkNu6IqELj99qrU,12306
|
|
1528
1529
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/runs-e3d7fdfeb7f806f7.js,sha256=OtiBtEM6AKUUFsukH6Fo4BT0Wvv8liuVTbLXLHX94rE,21544
|
|
1529
|
-
mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/settings-
|
|
1530
|
+
mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/settings-03d9bca3bc5e6088.js,sha256=IY6GriPVzLyQeXYVmdbVsrR2sf9VXFHI7wiSliDvjfI,19140
|
|
1530
1531
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/syncs-707ed8ca942ca802.js,sha256=hEWfRM8bcPsCT4jy2cSgJ4_u6jchbkOzHawDau9ZS_0,30158
|
|
1531
1532
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/triggers-193045d9836d8d80.js,sha256=grm36FzvKFK-EpePFLg99mYcarSuXvX8pptAfq5PYq8,24426
|
|
1532
1533
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/backfills/[...slug]-1ad5238742e25b4c.js,sha256=eOGO99GD8331wHGgANo39r9pi-h9JwYAdO6QYnPrVU8,33759
|
|
@@ -1543,7 +1544,7 @@ mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/permis
|
|
|
1543
1544
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/preferences-040f83d75d0f6537.js,sha256=4NGTVHcxVJYj_SnLQ2Y-0rmxhon9CwK4DwOkliEywi4,11542
|
|
1544
1545
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/roles-e9149e1fcf218f42.js,sha256=xH5illDs60-nX-4FZBaGfhTCtuZ6Yy96FrCZq-GLxyU,3502
|
|
1545
1546
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/sync-data-75b67ae4a00818ef.js,sha256=5b0XdMSCd3xBp4myNeL7sCMCjZORf3HEQaiQmlP5nNE,19823
|
|
1546
|
-
mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/users-
|
|
1547
|
+
mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/users-fa61dc6c1370e6a5.js,sha256=eSY6RReZSHnuncl7NVDL01ak1bmgevnRlUHaHBIR9LM,5472
|
|
1547
1548
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/permissions/[...slug]-2e5c098c21ea32b7.js,sha256=Ekcd-g2F-fqRO3cNDUGCNAsrAJgsNnJBflV0V_8pr6o,810
|
|
1548
1549
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/roles/[...slug]-95088f43034e3c95.js,sha256=lpmtFeq37jtaS8z_7ns2IOi30DJ4Rt9-WFs7NsU5DaA,805
|
|
1549
1550
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/users/[...slug]-557dda05ca6c6124.js,sha256=rbWbIauUHWuu5_eitPTh1ZOCF2KCZkIFgQYQvh1lnK0,807
|
|
@@ -1586,6 +1587,8 @@ mage_ai/server/frontend_dist/_next/static/media/root-folder-open-dark.eca1c8fe.s
|
|
|
1586
1587
|
mage_ai/server/frontend_dist/_next/static/media/root-folder-open-light.67f329d5.svg,sha256=CpAieZgGZneyp98IBCZSCZrpFf0f7jtK4CXWrWaabc8,930
|
|
1587
1588
|
mage_ai/server/frontend_dist/_next/static/media/vs_minimal-icon-theme.881c595b.json,sha256=CU9g5KEAv5m8DE88KAJTbUFkTjv5Adf-q3wyJcVZhd8,1094
|
|
1588
1589
|
mage_ai/server/frontend_dist/_next/static/media/webWorkerExtensionHostIframe.c4103280.html,sha256=FjPq75l00BbTCf43hmTUk24XqyI8q0h1RZaFiX42UtI,4022
|
|
1590
|
+
mage_ai/server/frontend_dist/_next/static/qR0jauUABqPaFMjUsYeoG/_buildManifest.js,sha256=vOeF0lOd3KCybVSbPxyoc9V6XM0htESKinynYz5_Cnc,8855
|
|
1591
|
+
mage_ai/server/frontend_dist/_next/static/qR0jauUABqPaFMjUsYeoG/_ssgManifest.js,sha256=b1tKoA0vjWrtmTW0cYBr96zvRk0MHTkCYOX-J_gAxn4,77
|
|
1589
1592
|
mage_ai/server/frontend_dist/fonts/Fira_Code/ttf/FiraCode-Bold.ttf,sha256=QfZVToReL1twra05UBIjNLhmqsQ2eTt3Qq3mAAZ3Ab4,319368
|
|
1590
1593
|
mage_ai/server/frontend_dist/fonts/Fira_Code/ttf/FiraCode-BoldItalic.otf,sha256=hZtTph0dKS37TLrDbJ-Mnhvaf2rG9sFP9RSV2sx2zgw,130052
|
|
1591
1594
|
mage_ai/server/frontend_dist/fonts/Fira_Code/ttf/FiraCode-Light.ttf,sha256=wUbJp6YZFPn1pH0kwZnFDI8UP1cQuT79OjlTr1CBZEM,288380
|
|
@@ -1632,8 +1635,8 @@ mage_ai/server/frontend_dist/fonts/Roboto_Mono/static/RobotoMono-SemiBoldItalic.
|
|
|
1632
1635
|
mage_ai/server/frontend_dist/fonts/Roboto_Mono/static/RobotoMono-Thin.ttf,sha256=zlgstcLhG4408Fo8JS7sZRC6Mt2XftUXpop3Ja8FywI,87872
|
|
1633
1636
|
mage_ai/server/frontend_dist/fonts/Roboto_Mono/static/RobotoMono-ThinItalic.ttf,sha256=JfREOX6nw1mHlEYBq_j9_7rLfI3CIcQ5bOBytV-pUi8,93056
|
|
1634
1637
|
mage_ai/server/frontend_dist/fonts/codicon/codicon.ttf,sha256=izSevKNd2mT7WHZYsm4XzDTGwdk0_FCb7wRObtuJ20k,73624
|
|
1635
|
-
mage_ai/server/frontend_dist/global-data-products/[...slug].html,sha256=
|
|
1636
|
-
mage_ai/server/frontend_dist/global-hooks/[...slug].html,sha256=
|
|
1638
|
+
mage_ai/server/frontend_dist/global-data-products/[...slug].html,sha256=vT5NYOMvGdDuOduwfoEiuRzw1ROPptSHNOYqFA-8CMk,11475
|
|
1639
|
+
mage_ai/server/frontend_dist/global-hooks/[...slug].html,sha256=deCbHcFXEhMkiUuIpgwzUw2j0FegPcIrLR8GgnP6oJM,11288
|
|
1637
1640
|
mage_ai/server/frontend_dist/images/backfill.jpg,sha256=0cUfwkvBISDC9yXxiDV7o2RPqKI_9OIydX90gw54azk,4404
|
|
1638
1641
|
mage_ai/server/frontend_dist/images/banner-shape-purple-peach.jpg,sha256=b6fpPLZfxxm7hiWf6Ci1Dv01P3d68k0eK_uu4v43Vss,4854
|
|
1639
1642
|
mage_ai/server/frontend_dist/images/dashboard-api-key.webp,sha256=5IwOoTLp3RKDrHVQsdCADoQkjcTbh5MTZGqlgyqcXNk,57024
|
|
@@ -1644,13 +1647,13 @@ mage_ai/server/frontend_dist/images/blocks/grey_block.webp,sha256=cAGmkcJ6edDr3B
|
|
|
1644
1647
|
mage_ai/server/frontend_dist/images/extensions/dbt/logo.png,sha256=-ssfqyt73pSkqsA_UBfYf2U2h2P62yr6fCe5SIwBurc,6001
|
|
1645
1648
|
mage_ai/server/frontend_dist/images/extensions/great_expectations/logo.png,sha256=RK76yAE_SHMHiFxf2aq-Ox00Gw6Khap9CCkdT7ucfQw,22785
|
|
1646
1649
|
mage_ai/server/frontend_dist/images/sessions/abstract.png,sha256=1oNvrU66riRKJOeF2siaMEINPZatcu7kdDPliEVACyQ,256616
|
|
1647
|
-
mage_ai/server/frontend_dist/manage/files.html,sha256=
|
|
1648
|
-
mage_ai/server/frontend_dist/manage/overview.html,sha256=
|
|
1649
|
-
mage_ai/server/frontend_dist/manage/pipeline-runs.html,sha256=
|
|
1650
|
-
mage_ai/server/frontend_dist/manage/settings.html,sha256=
|
|
1651
|
-
mage_ai/server/frontend_dist/manage/users.html,sha256=
|
|
1652
|
-
mage_ai/server/frontend_dist/manage/users/[user].html,sha256=
|
|
1653
|
-
mage_ai/server/frontend_dist/manage/users/new.html,sha256=
|
|
1650
|
+
mage_ai/server/frontend_dist/manage/files.html,sha256=rTEZOoqvNb5qzAUYX65WNtD3djbK0wWC-xovmoUTgFM,11277
|
|
1651
|
+
mage_ai/server/frontend_dist/manage/overview.html,sha256=ZkVg5r2ZuVSCobv7vGodXG3zBnNUD7v19pVapvOOUAk,11605
|
|
1652
|
+
mage_ai/server/frontend_dist/manage/pipeline-runs.html,sha256=huwvZHBwVxaDwVGEQPtTvBICi_xYgUPNOkiK9pNBwqs,11449
|
|
1653
|
+
mage_ai/server/frontend_dist/manage/settings.html,sha256=1ncngXfy-1KaBC5jkIxk4Qx9COnu_B6nZRistjQCQcw,11283
|
|
1654
|
+
mage_ai/server/frontend_dist/manage/users.html,sha256=PNAe663Eb2n8H3K4hLuVOuDS2ENHAT-Z-8VFY1II_jQ,11277
|
|
1655
|
+
mage_ai/server/frontend_dist/manage/users/[user].html,sha256=eRLo4pU3SJC0awrRaPSVyn8j_lr653bXtPHrbtYjidU,11305
|
|
1656
|
+
mage_ai/server/frontend_dist/manage/users/new.html,sha256=9KgWbS5scofktARsLrlvnHNCo7EiRGr9g-qKBtEasos,11285
|
|
1654
1657
|
mage_ai/server/frontend_dist/monaco-editor/min/vs/loader.js,sha256=-g736o6tNxP1uWgDa4GNMLu0cVw5rpd9iv_JkFqjJYg,30051
|
|
1655
1658
|
mage_ai/server/frontend_dist/monaco-editor/min/vs/base/browser/ui/codicons/codicon/codicon.ttf,sha256=izSevKNd2mT7WHZYsm4XzDTGwdk0_FCb7wRObtuJ20k,73624
|
|
1656
1659
|
mage_ai/server/frontend_dist/monaco-editor/min/vs/base/common/worker/simpleWorker.nls.de.js,sha256=f6eZPSfW6q0TZXRHJH9Ot3KDmzXRrnAwUrGz6zTWa5c,869
|
|
@@ -1764,62 +1767,62 @@ mage_ai/server/frontend_dist/monaco-editor/min/vs/language/json/jsonMode.js,sha2
|
|
|
1764
1767
|
mage_ai/server/frontend_dist/monaco-editor/min/vs/language/json/jsonWorker.js,sha256=zgcNdzxOPbIH9mjg7oUxO3FHBwTvv9EQRMOKQWdjLF4,128871
|
|
1765
1768
|
mage_ai/server/frontend_dist/monaco-editor/min/vs/language/typescript/tsMode.js,sha256=GL-DBXaHEUZHBE6SZA_HY0m326feu9NjFduSIp_6o8o,23674
|
|
1766
1769
|
mage_ai/server/frontend_dist/monaco-editor/min/vs/language/typescript/tsWorker.js,sha256=GDkXJvtDJ6BGEWF6fLxQrtAlWx1PqCn78i1sEdOnrIY,4602226
|
|
1767
|
-
mage_ai/server/frontend_dist/pipelines/[pipeline].html,sha256=
|
|
1768
|
-
mage_ai/server/frontend_dist/pipelines/[pipeline]/backfills.html,sha256=
|
|
1769
|
-
mage_ai/server/frontend_dist/pipelines/[pipeline]/dashboard.html,sha256=
|
|
1770
|
-
mage_ai/server/frontend_dist/pipelines/[pipeline]/edit.html,sha256=
|
|
1771
|
-
mage_ai/server/frontend_dist/pipelines/[pipeline]/logs.html,sha256=
|
|
1772
|
-
mage_ai/server/frontend_dist/pipelines/[pipeline]/monitors.html,sha256=
|
|
1773
|
-
mage_ai/server/frontend_dist/pipelines/[pipeline]/runs.html,sha256=
|
|
1774
|
-
mage_ai/server/frontend_dist/pipelines/[pipeline]/settings.html,sha256=
|
|
1775
|
-
mage_ai/server/frontend_dist/pipelines/[pipeline]/syncs.html,sha256=
|
|
1776
|
-
mage_ai/server/frontend_dist/pipelines/[pipeline]/triggers.html,sha256=
|
|
1777
|
-
mage_ai/server/frontend_dist/pipelines/[pipeline]/backfills/[...slug].html,sha256=
|
|
1778
|
-
mage_ai/server/frontend_dist/pipelines/[pipeline]/monitors/block-runs.html,sha256=
|
|
1779
|
-
mage_ai/server/frontend_dist/pipelines/[pipeline]/monitors/block-runtime.html,sha256=
|
|
1780
|
-
mage_ai/server/frontend_dist/pipelines/[pipeline]/runs/[run].html,sha256=
|
|
1781
|
-
mage_ai/server/frontend_dist/pipelines/[pipeline]/triggers/[...slug].html,sha256=
|
|
1782
|
-
mage_ai/server/frontend_dist/platform/global-hooks.html,sha256=
|
|
1783
|
-
mage_ai/server/frontend_dist/platform/global-hooks/[...slug].html,sha256=
|
|
1784
|
-
mage_ai/server/frontend_dist/settings/account/profile.html,sha256=
|
|
1785
|
-
mage_ai/server/frontend_dist/settings/platform/preferences.html,sha256=
|
|
1786
|
-
mage_ai/server/frontend_dist/settings/platform/settings.html,sha256=
|
|
1787
|
-
mage_ai/server/frontend_dist/settings/workspace/permissions.html,sha256=
|
|
1788
|
-
mage_ai/server/frontend_dist/settings/workspace/preferences.html,sha256=
|
|
1789
|
-
mage_ai/server/frontend_dist/settings/workspace/roles.html,sha256=
|
|
1790
|
-
mage_ai/server/frontend_dist/settings/workspace/sync-data.html,sha256=
|
|
1791
|
-
mage_ai/server/frontend_dist/settings/workspace/users.html,sha256=
|
|
1792
|
-
mage_ai/server/frontend_dist/settings/workspace/permissions/[...slug].html,sha256=
|
|
1793
|
-
mage_ai/server/frontend_dist/settings/workspace/roles/[...slug].html,sha256=
|
|
1794
|
-
mage_ai/server/frontend_dist/settings/workspace/users/[...slug].html,sha256
|
|
1795
|
-
mage_ai/server/frontend_dist/templates/[...slug].html,sha256=
|
|
1796
|
-
mage_ai/server/frontend_dist/v2/canvas.html,sha256=
|
|
1770
|
+
mage_ai/server/frontend_dist/pipelines/[pipeline].html,sha256=ihuGl2gJ1p6aNB5uJF6vOS1ho9EmBSN_j7aEFmVL7OU,9429
|
|
1771
|
+
mage_ai/server/frontend_dist/pipelines/[pipeline]/backfills.html,sha256=HfvQaFcW4-HXgG0Ja7bBXV-n_7goH_TyOVLaV2kUm38,11318
|
|
1772
|
+
mage_ai/server/frontend_dist/pipelines/[pipeline]/dashboard.html,sha256=jJlBK42PqwTYKzjUBrHEeNGsdt5a-xPyn2V8IJVikwo,12100
|
|
1773
|
+
mage_ai/server/frontend_dist/pipelines/[pipeline]/edit.html,sha256=FuKp8F_PtYAu5RnyRcckjGl6OFbaQSiSIEvrXPZKls4,10777
|
|
1774
|
+
mage_ai/server/frontend_dist/pipelines/[pipeline]/logs.html,sha256=_TzKtHY6awE74hWezMAZvKY0nGf89pIPYz5CC12hwuc,11386
|
|
1775
|
+
mage_ai/server/frontend_dist/pipelines/[pipeline]/monitors.html,sha256=LxmwKr-GBS9z9VpS8qaZm_K9vDxHsf9FNRbPu78wS7w,11549
|
|
1776
|
+
mage_ai/server/frontend_dist/pipelines/[pipeline]/runs.html,sha256=e6KMQYz_QPdYv24UTFFl5yS5ulEuCJ2HrGCZKV-KEhU,11464
|
|
1777
|
+
mage_ai/server/frontend_dist/pipelines/[pipeline]/settings.html,sha256=9KpOvHBFjRTfUveAnpDu-wfaV2H_wIlrdyc0uT2P23I,11316
|
|
1778
|
+
mage_ai/server/frontend_dist/pipelines/[pipeline]/syncs.html,sha256=U6Qeg6W3fo-Xl-O0xs6tHvNHPz44DWrw6-qPPbD2-Ps,11310
|
|
1779
|
+
mage_ai/server/frontend_dist/pipelines/[pipeline]/triggers.html,sha256=KkSGlMuok5Dj0GhAW4YMp2GBckvp5NQyoG_w2W18mEM,11782
|
|
1780
|
+
mage_ai/server/frontend_dist/pipelines/[pipeline]/backfills/[...slug].html,sha256=GmIiFLLw94PXUv36V9F0o-H2HiXAy9Ugt3EdOUT3cWA,11562
|
|
1781
|
+
mage_ai/server/frontend_dist/pipelines/[pipeline]/monitors/block-runs.html,sha256=DEytI7n4M2mKOfZrdnyfj858mPkFAbpywQratUYxkNE,11493
|
|
1782
|
+
mage_ai/server/frontend_dist/pipelines/[pipeline]/monitors/block-runtime.html,sha256=D-zMh0qZDjDwmVM2745Bx0yzz_o5txS3J45KHq0brIQ,11737
|
|
1783
|
+
mage_ai/server/frontend_dist/pipelines/[pipeline]/runs/[run].html,sha256=je4jG7z8nmfP6q4rJmDXFfIx_gwhKlimbp5y1iA_CNY,11807
|
|
1784
|
+
mage_ai/server/frontend_dist/pipelines/[pipeline]/triggers/[...slug].html,sha256=nQEPop-Q9tqz7OmGLuhWmXhpqsn5zwGzat_rvrDF0U0,11714
|
|
1785
|
+
mage_ai/server/frontend_dist/platform/global-hooks.html,sha256=5R0b89Tckdl22TYTL3Sla7YdZP2ZPQDzQPPOcnQU3zs,11306
|
|
1786
|
+
mage_ai/server/frontend_dist/platform/global-hooks/[...slug].html,sha256=iIvTVRpOnp7DTLKIAJrvPhplfO6z217ktuZtNi_R4t4,11306
|
|
1787
|
+
mage_ai/server/frontend_dist/settings/account/profile.html,sha256=Noms0MFCdoP03FeURdz0dGA6p-x1y-H_EoN49S-mTXo,11377
|
|
1788
|
+
mage_ai/server/frontend_dist/settings/platform/preferences.html,sha256=9e_AafmI2EnhKBh-6ytfsOSElzQBqtVM_NzqNTaoIpE,11309
|
|
1789
|
+
mage_ai/server/frontend_dist/settings/platform/settings.html,sha256=tYcsKriCH6ds-184Is_f8navPkq-X0GUdBjgakTuJa0,11303
|
|
1790
|
+
mage_ai/server/frontend_dist/settings/workspace/permissions.html,sha256=4XOgTsBAS7-5_ebj-oI_VKUZiAaVDgISimD5Ie_WoKY,11392
|
|
1791
|
+
mage_ai/server/frontend_dist/settings/workspace/preferences.html,sha256=xPuIUaXsWZAqa2Sihmq5DYKjmgEKNxEpke8x9s6qrXA,11311
|
|
1792
|
+
mage_ai/server/frontend_dist/settings/workspace/roles.html,sha256=oVNq3jZr2sx_CVSNZyC61hIBGc4Oy2_Td4CBm7q0g8U,11374
|
|
1793
|
+
mage_ai/server/frontend_dist/settings/workspace/sync-data.html,sha256=nilTzK_aKZ5qyTL5oogUoab28Mq89xFbI6R6B2ob2Mk,11695
|
|
1794
|
+
mage_ai/server/frontend_dist/settings/workspace/users.html,sha256=law9fPo-8iO8p8tLfiI968w2ge_bxG5j16jhSe3JNDQ,11374
|
|
1795
|
+
mage_ai/server/frontend_dist/settings/workspace/permissions/[...slug].html,sha256=jlpTkrodN-mAVBZowJ3zCpo-WFbC6SQsvolXIT6EO6g,11419
|
|
1796
|
+
mage_ai/server/frontend_dist/settings/workspace/roles/[...slug].html,sha256=OZ93b1S4sUxSo-sSyqcWL8GgkTO_-WFbZXtDdVbfb_8,11401
|
|
1797
|
+
mage_ai/server/frontend_dist/settings/workspace/users/[...slug].html,sha256=Y7XQmuxtb_xw8qabm4d8PlmvLCotFKs6UJOsI7cxIro,11401
|
|
1798
|
+
mage_ai/server/frontend_dist/templates/[...slug].html,sha256=SRuMzw3vzc3KCnjdNxcegDUkgomBMKOM8x8byeKs8sw,11282
|
|
1799
|
+
mage_ai/server/frontend_dist/v2/canvas.html,sha256=_2LcNPlm-ZUadNWbhEp-gaPO_Iw-DZLPrMz5ZLWXOWg,18610
|
|
1797
1800
|
mage_ai/server/frontend_dist/workers/worker.ts,sha256=uH_b7ZH76lKgCbHI0SS1fhp7HGhxKQJWpp-Wlv9GiBw,406
|
|
1798
|
-
mage_ai/server/frontend_dist_base_path_template/404.html,sha256=
|
|
1799
|
-
mage_ai/server/frontend_dist_base_path_template/block-layout.html,sha256=
|
|
1800
|
-
mage_ai/server/frontend_dist_base_path_template/compute.html,sha256
|
|
1801
|
+
mage_ai/server/frontend_dist_base_path_template/404.html,sha256=77quadfpTxskgNwWdb_B8pIfzY10WI8Y6b7Lk5mcSVY,12232
|
|
1802
|
+
mage_ai/server/frontend_dist_base_path_template/block-layout.html,sha256=nIfkEGMIsFj8tXiyTvzm5-Paj7H9FYc3KTKpB7nUMdU,11030
|
|
1803
|
+
mage_ai/server/frontend_dist_base_path_template/compute.html,sha256=-IVwF9WjNYueu9H5CS12L5NP72b5MRxgDJ4yPXjIHbM,11862
|
|
1801
1804
|
mage_ai/server/frontend_dist_base_path_template/favicon-pro.ico,sha256=kFkKmuH0-ZGuqsQnZOEg8fc776DKddryiHfxzGwxI8I,141677
|
|
1802
1805
|
mage_ai/server/frontend_dist_base_path_template/favicon.ico,sha256=ZSTSGm_csS09e9wbk5aYBDuzaccwVAQWpslG3mN9A30,15406
|
|
1803
|
-
mage_ai/server/frontend_dist_base_path_template/files.html,sha256=
|
|
1804
|
-
mage_ai/server/frontend_dist_base_path_template/global-data-products.html,sha256=
|
|
1805
|
-
mage_ai/server/frontend_dist_base_path_template/global-hooks.html,sha256=
|
|
1806
|
-
mage_ai/server/frontend_dist_base_path_template/index.html,sha256=
|
|
1806
|
+
mage_ai/server/frontend_dist_base_path_template/files.html,sha256=i2rwTv8x-207GOyS6K2lkER99_ozce4DO7kL77pKHbs,11740
|
|
1807
|
+
mage_ai/server/frontend_dist_base_path_template/global-data-products.html,sha256=7T8psXwWeaCuX2a4rQlCvdDmDkYEJANCmubYAOQ1lGo,12122
|
|
1808
|
+
mage_ai/server/frontend_dist_base_path_template/global-hooks.html,sha256=Q16pukUC9xtokprE3Jzxd01WRKKR87OG_yHRkck6U_M,11866
|
|
1809
|
+
mage_ai/server/frontend_dist_base_path_template/index.html,sha256=AGEKuTB7c-SnwE6wlhciSIf-wg4PxvFDEkT-8A2U0_o,9788
|
|
1807
1810
|
mage_ai/server/frontend_dist_base_path_template/m24.png,sha256=jLEkQAh5uMazS_DpwY2UfqzWwuojpa0KfHd7PuoSHic,1247777
|
|
1808
1811
|
mage_ai/server/frontend_dist_base_path_template/m24.svg,sha256=Pgxwy73-TWwoMwpxy-lIFSMlZ9GXWgT5kzwxatnD4kQ,1220211
|
|
1809
|
-
mage_ai/server/frontend_dist_base_path_template/manage.html,sha256=
|
|
1810
|
-
mage_ai/server/frontend_dist_base_path_template/oauth.html,sha256=
|
|
1811
|
-
mage_ai/server/frontend_dist_base_path_template/overview.html,sha256=
|
|
1812
|
-
mage_ai/server/frontend_dist_base_path_template/pipeline-runs.html,sha256=
|
|
1813
|
-
mage_ai/server/frontend_dist_base_path_template/pipelines.html,sha256=
|
|
1814
|
-
mage_ai/server/frontend_dist_base_path_template/settings.html,sha256=
|
|
1815
|
-
mage_ai/server/frontend_dist_base_path_template/sign-in.html,sha256=
|
|
1816
|
-
mage_ai/server/frontend_dist_base_path_template/templates.html,sha256=
|
|
1817
|
-
mage_ai/server/frontend_dist_base_path_template/terminal.html,sha256=
|
|
1818
|
-
mage_ai/server/frontend_dist_base_path_template/test.html,sha256=
|
|
1819
|
-
mage_ai/server/frontend_dist_base_path_template/triggers.html,sha256=
|
|
1820
|
-
mage_ai/server/frontend_dist_base_path_template/v2.html,sha256=
|
|
1812
|
+
mage_ai/server/frontend_dist_base_path_template/manage.html,sha256=VOnSdMOvCfhIyB5FQ2kYH3ZzSPxWb2UNW2DDsVCeJ2Y,11968
|
|
1813
|
+
mage_ai/server/frontend_dist_base_path_template/oauth.html,sha256=N6E10Vt1TJlIxsfp5gKQN-oebgEehZyCQ6no1KAVYoI,11508
|
|
1814
|
+
mage_ai/server/frontend_dist_base_path_template/overview.html,sha256=GTYnt9bsRFycGJ7saOp0js3W2xJdOz6tfcfzoiqcdYk,13606
|
|
1815
|
+
mage_ai/server/frontend_dist_base_path_template/pipeline-runs.html,sha256=4ZDvlA9H9LqADkLb6CAVcQ8MppP9x1v_yEZXpqewH44,11985
|
|
1816
|
+
mage_ai/server/frontend_dist_base_path_template/pipelines.html,sha256=BiJC27XwtUi3XR08sKpDE4YyC1bQBjVWKgjPjH0SX8g,12320
|
|
1817
|
+
mage_ai/server/frontend_dist_base_path_template/settings.html,sha256=7iDSI318JQYaw_rVCrXe9hI7iPExPPdm_StQ_aqUwqo,9860
|
|
1818
|
+
mage_ai/server/frontend_dist_base_path_template/sign-in.html,sha256=fc95AqnrjdWlePCs4VWG3rX5S_PkToGPFuc4y_4GE6I,20913
|
|
1819
|
+
mage_ai/server/frontend_dist_base_path_template/templates.html,sha256=YHnDKYWXCP9CUHuEAjjgeW71BXsxxHvDgPuloQj8cgE,11972
|
|
1820
|
+
mage_ai/server/frontend_dist_base_path_template/terminal.html,sha256=ykmHtNso_r5gld1uodyXCMNn7im3qjJuZSH3ni0wPyc,11738
|
|
1821
|
+
mage_ai/server/frontend_dist_base_path_template/test.html,sha256=ialiFrgYhVLClDqK7dI1X6r-t3PUkWs6RblJgpZfiDw,14121
|
|
1822
|
+
mage_ai/server/frontend_dist_base_path_template/triggers.html,sha256=hQ3deuU5ZTMOcrDBeowrM2mV2ZjcEkOhOoUgxuguO5A,11854
|
|
1823
|
+
mage_ai/server/frontend_dist_base_path_template/v2.html,sha256=1ekEHQU2Zk_HqXMTVUZUt8g7Fv2ArjlbN1am7_slzO8,19107
|
|
1821
1824
|
mage_ai/server/frontend_dist_base_path_template/vercel.svg,sha256=wPvODNXNDTx7iJgazQaNE7lhRgu5TTxLpKDsXCgFH9E,1101
|
|
1822
|
-
mage_ai/server/frontend_dist_base_path_template/version-control.html,sha256=
|
|
1825
|
+
mage_ai/server/frontend_dist_base_path_template/version-control.html,sha256=60q5CHu8mGNpj2zlfoRsBhoodrh0IO-M1JSYD35kV6Q,11759
|
|
1823
1826
|
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/1004.a4db096bf00e5748.js,sha256=xkdDfWP0Y45S9EigKBWk-zKu43VkF8zlhmzTz6Kpdbw,3076
|
|
1824
1827
|
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/1004.a4db096bf00e5748.js.LICENSE.txt,sha256=MDov8tAf6tU89D5bupNoGlJKZ9XsKnOYuk8644UaiMc,387
|
|
1825
1828
|
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/1040.5ce2658611163884.js,sha256=rfKgJPBCdxnsVIVIAC1ZPvMeOLBddb45kaiY4iuaaWc,2845
|
|
@@ -1940,7 +1943,7 @@ mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/4454.13a2404
|
|
|
1940
1943
|
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/4478.1eafc50141421dcc.js,sha256=IMrGsLPGOV9a_63e00K85AEt0ejEmUPHnBCIC_XmVfo,2468
|
|
1941
1944
|
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/4487.0465f09dc04c8008.js,sha256=hI7m4nqc4OhgetnBDjFf6LSx7iQoEpoq3EQlN1afjUI,3469
|
|
1942
1945
|
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/4487.0465f09dc04c8008.js.LICENSE.txt,sha256=MDov8tAf6tU89D5bupNoGlJKZ9XsKnOYuk8644UaiMc,387
|
|
1943
|
-
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/449-
|
|
1946
|
+
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/449-5e2253c6aba42557.js,sha256=3xrxKIeI9XV0GB076iYeMXXJmZdIPIOfAieneqXYHgw,36361
|
|
1944
1947
|
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/4541.ffd561a6902db77e.js,sha256=mwm2T70Ef-hRkNgSSkvedpGGgigzZ190ujdz-lvo1Xc,11881
|
|
1945
1948
|
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/4541.ffd561a6902db77e.js.LICENSE.txt,sha256=MDov8tAf6tU89D5bupNoGlJKZ9XsKnOYuk8644UaiMc,387
|
|
1946
1949
|
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/4640.eeead6d972644382.js,sha256=GdA20vxx40bstjixCqCAk7tPv3BVqkaM2hI_weOFa6Q,1848
|
|
@@ -2136,10 +2139,10 @@ mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/framework-ea
|
|
|
2136
2139
|
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/framework-ea07653270784974.js.LICENSE.txt,sha256=c5vNQ22N4R7qRc436IuUyG4sPRoYCEtVo-VypeXFjps,1492
|
|
2137
2140
|
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/main-342bedfde9cd81cf.js,sha256=uHH6JoeocZj2ABwdpUHbBFd1uWOUt7IsSZXsPZSeelg,99867
|
|
2138
2141
|
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/polyfills-c67a75d1b6f99dc8.js,sha256=AiXrA00CSgO9yQ6mx59WGTZi58Pu6QlpYpiCDlF8u4M,91460
|
|
2139
|
-
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/webpack-
|
|
2142
|
+
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/webpack-5f4be622608d9267.js,sha256=S1IR9a6VLX3SzrV0H7I8ey5uFgHmQo7ZF_xFTryfCyI,10195
|
|
2140
2143
|
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/404-8ecd93274c427b76.js,sha256=lmeHQIPtqqXqhdnEE3rTu4f1MK-Bm08mCCbv4X16C40,962
|
|
2141
|
-
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/_app-
|
|
2142
|
-
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/_app-
|
|
2144
|
+
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/_app-ee5e328aaf51c698.js,sha256=3vrnDVdSoDAA7ghN3LHiho3GvClVD4ZmbQXKKDgef0Y,3065581
|
|
2145
|
+
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/_app-ee5e328aaf51c698.js.LICENSE.txt,sha256=0aaoGhGApZjPgUzReWiqgHCG0JG92p6MooxRuaYGgTI,3124
|
|
2143
2146
|
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/_error-b2c101c3f6329265.js,sha256=2UMATuWn3KjFrAhRAhdO4XR05zmR4XEhKjASn6cfKHw,3205
|
|
2144
2147
|
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/block-layout-9bed8fa86d923ab9.js,sha256=KkdyGdDe-c7mCk_EbN_7teegWCdZnIs3EpM7JSnu09c,5680
|
|
2145
2148
|
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/compute-9e2dea78024e3bb4.js,sha256=_PHXX3qibuKVzapA2GoxHSRhRyMyQ3FJSToJ4KT-Bv4,71670
|
|
@@ -2149,9 +2152,9 @@ mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/global
|
|
|
2149
2152
|
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/index-00ff043e2b1e43f2.js,sha256=uCkzMuzbyep3m624XdX8t9RVHgpaEOgYykRGu6XHHvc,954
|
|
2150
2153
|
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/manage-868fcd8cbeb265f0.js,sha256=nM-MyyBuNXrIb8heDJ26jU0A3P1uW-g1vkoCf3h5b5A,30889
|
|
2151
2154
|
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/oauth-6ceceb62191dfe8a.js,sha256=rEa0Dk5ARHGB8v6r4iAWKyXLk7N38VAypDXNefDw7Hc,3412
|
|
2152
|
-
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/overview-
|
|
2155
|
+
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/overview-f65416f6dbe30ad3.js,sha256=jZyWoO7hedx4hfzBMSqhPQNP-Eg7feIYrWVMXmfbDww,19356
|
|
2153
2156
|
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipeline-runs-2d0136b51b57de93.js,sha256=C38UPW-uxzIgDHltCdLE0ibEXgqeFlJxKw4pSEXyTv0,9959
|
|
2154
|
-
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines-
|
|
2157
|
+
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines-d25d07db166cbb04.js,sha256=POFkuoDW5AIKlgSVgcUnxH7JYuL2Tw9detUb4JaFLhY,24634
|
|
2155
2158
|
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settings-8097291375b16889.js,sha256=stqfdYX2Fpgei0s_ewspgxPY_Rk1Z4sNJ8xJd4FUAnE,4253
|
|
2156
2159
|
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/sign-in-593c40985d63fcf7.js,sha256=pe9xsVI2HvbN45PFXYVe0Ilt2hifqZiPEBM4qgMwwfQ,10916
|
|
2157
2160
|
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/templates-ca528bc607753ab8.js,sha256=aGIHe-RNXwYGzsWCKQkqV-W-6wEF_bligJSqmJEdxoo,5364
|
|
@@ -2166,7 +2169,7 @@ mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/manage
|
|
|
2166
2169
|
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/manage/overview-aae747f487e08d51.js,sha256=s2ukVoYdaBdClLlq4-lQz8eppP5Zuji2TEE2msYKNuI,11631
|
|
2167
2170
|
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/manage/pipeline-runs-09a842d64a6ada62.js,sha256=YK9n1SvuJ57tS9x5752gZj3_j16EJDvVq5bzzM_BJ18,4211
|
|
2168
2171
|
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/manage/settings-2e98e57d9376a458.js,sha256=7MrsRAKxECDtpOb5x5GIGlSYQhYU2ccCbon3hq6wLSY,2003
|
|
2169
|
-
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/manage/users-
|
|
2172
|
+
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/manage/users-5db54821a3059c69.js,sha256=QClC4nvtu8z4qT6VSMrSirBxueNDdLtKvwZUw4fD5Yo,6311
|
|
2170
2173
|
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/manage/users/[user]-7be6e41ad66089bb.js,sha256=CBmRJyNDy8NLUSs1koPBdFk_AN3uiJrZJeICzJyuF0g,15887
|
|
2171
2174
|
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/manage/users/new-4c088833063bfa07.js,sha256=agmD1jyYyE5cUHbOUVhg0aLtlsaW2EN6MRDGD26To4A,9410
|
|
2172
2175
|
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]-1a0d1ab496183686.js,sha256=bvb-Bba0xjPCQM2WLL-2HZzITpV2j5FiSjKAHu7UMU8,4432
|
|
@@ -2176,7 +2179,7 @@ mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipeli
|
|
|
2176
2179
|
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/logs-fe91dfb0091f6bc6.js,sha256=wUDBmSFMEwomjaaE4dyn-RaGX6fqaIk-nr-bTRGZcPI,33538
|
|
2177
2180
|
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/monitors-80bebb4401eefe25.js,sha256=hDblXIMuBSAiIOUNjmJ3gfA09NnvhkNu6IqELj99qrU,12306
|
|
2178
2181
|
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/runs-e3d7fdfeb7f806f7.js,sha256=OtiBtEM6AKUUFsukH6Fo4BT0Wvv8liuVTbLXLHX94rE,21544
|
|
2179
|
-
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/settings-
|
|
2182
|
+
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/settings-03d9bca3bc5e6088.js,sha256=IY6GriPVzLyQeXYVmdbVsrR2sf9VXFHI7wiSliDvjfI,19140
|
|
2180
2183
|
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/syncs-707ed8ca942ca802.js,sha256=hEWfRM8bcPsCT4jy2cSgJ4_u6jchbkOzHawDau9ZS_0,30158
|
|
2181
2184
|
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/triggers-193045d9836d8d80.js,sha256=grm36FzvKFK-EpePFLg99mYcarSuXvX8pptAfq5PYq8,24426
|
|
2182
2185
|
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/pipelines/[pipeline]/backfills/[...slug]-1ad5238742e25b4c.js,sha256=eOGO99GD8331wHGgANo39r9pi-h9JwYAdO6QYnPrVU8,33759
|
|
@@ -2193,7 +2196,7 @@ mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settin
|
|
|
2193
2196
|
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settings/workspace/preferences-040f83d75d0f6537.js,sha256=4NGTVHcxVJYj_SnLQ2Y-0rmxhon9CwK4DwOkliEywi4,11542
|
|
2194
2197
|
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settings/workspace/roles-e9149e1fcf218f42.js,sha256=xH5illDs60-nX-4FZBaGfhTCtuZ6Yy96FrCZq-GLxyU,3502
|
|
2195
2198
|
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settings/workspace/sync-data-75b67ae4a00818ef.js,sha256=5b0XdMSCd3xBp4myNeL7sCMCjZORf3HEQaiQmlP5nNE,19823
|
|
2196
|
-
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settings/workspace/users-
|
|
2199
|
+
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settings/workspace/users-fa61dc6c1370e6a5.js,sha256=eSY6RReZSHnuncl7NVDL01ak1bmgevnRlUHaHBIR9LM,5472
|
|
2197
2200
|
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settings/workspace/permissions/[...slug]-2e5c098c21ea32b7.js,sha256=Ekcd-g2F-fqRO3cNDUGCNAsrAJgsNnJBflV0V_8pr6o,810
|
|
2198
2201
|
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settings/workspace/roles/[...slug]-95088f43034e3c95.js,sha256=lpmtFeq37jtaS8z_7ns2IOi30DJ4Rt9-WFs7NsU5DaA,805
|
|
2199
2202
|
mage_ai/server/frontend_dist_base_path_template/_next/static/chunks/pages/settings/workspace/users/[...slug]-557dda05ca6c6124.js,sha256=rbWbIauUHWuu5_eitPTh1ZOCF2KCZkIFgQYQvh1lnK0,807
|
|
@@ -2207,8 +2210,8 @@ mage_ai/server/frontend_dist_base_path_template/_next/static/css/93632f5b9a6a749
|
|
|
2207
2210
|
mage_ai/server/frontend_dist_base_path_template/_next/static/css/9754555763f038b5.css,sha256=jdz-pCDHq1PG7EkOk49tqbStsc8YPbjXrCNhBHXrm9A,1529
|
|
2208
2211
|
mage_ai/server/frontend_dist_base_path_template/_next/static/css/ab28aa164f43cb7c.css,sha256=llbDq_8g5Y8Qan-Aau9WTneI6Bub5ABXxvYYF9UMEDA,2382828
|
|
2209
2212
|
mage_ai/server/frontend_dist_base_path_template/_next/static/css/f4a98ab2f1d50f04.css,sha256=q7Mk1RImmlq_fM6m2XeUOSkJtqvVL6msHkn7JR0eNHQ,268
|
|
2210
|
-
mage_ai/server/frontend_dist_base_path_template/_next/static/
|
|
2211
|
-
mage_ai/server/frontend_dist_base_path_template/_next/static/
|
|
2213
|
+
mage_ai/server/frontend_dist_base_path_template/_next/static/iCySon3_GCldnbC5U7C-s/_buildManifest.js,sha256=vOeF0lOd3KCybVSbPxyoc9V6XM0htESKinynYz5_Cnc,8855
|
|
2214
|
+
mage_ai/server/frontend_dist_base_path_template/_next/static/iCySon3_GCldnbC5U7C-s/_ssgManifest.js,sha256=b1tKoA0vjWrtmTW0cYBr96zvRk0MHTkCYOX-J_gAxn4,77
|
|
2212
2215
|
mage_ai/server/frontend_dist_base_path_template/_next/static/media/MagicPython.tmLanguage.c9ce5464.json,sha256=qOwnznnssf2gV4PUdjbv7kVBNWX2LdFaLrxB1_DXFqA,78248
|
|
2213
2216
|
mage_ai/server/frontend_dist_base_path_template/_next/static/media/MagicRegExp.tmLanguage.d57a0961.json,sha256=ElVgRDnKLCe2dUxaGOwLSJ5kCNGcQT7aEnDUBMCyqbg,8371
|
|
2214
2217
|
mage_ai/server/frontend_dist_base_path_template/_next/static/media/config.38e6bc60.json,sha256=nXGfRSHP-PpT4e2MI-VHcAvqqosodwDlxHa9v0TUL4s,2252
|
|
@@ -2284,8 +2287,8 @@ mage_ai/server/frontend_dist_base_path_template/fonts/Roboto_Mono/static/RobotoM
|
|
|
2284
2287
|
mage_ai/server/frontend_dist_base_path_template/fonts/Roboto_Mono/static/RobotoMono-Thin.ttf,sha256=zlgstcLhG4408Fo8JS7sZRC6Mt2XftUXpop3Ja8FywI,87872
|
|
2285
2288
|
mage_ai/server/frontend_dist_base_path_template/fonts/Roboto_Mono/static/RobotoMono-ThinItalic.ttf,sha256=JfREOX6nw1mHlEYBq_j9_7rLfI3CIcQ5bOBytV-pUi8,93056
|
|
2286
2289
|
mage_ai/server/frontend_dist_base_path_template/fonts/codicon/codicon.ttf,sha256=izSevKNd2mT7WHZYsm4XzDTGwdk0_FCb7wRObtuJ20k,73624
|
|
2287
|
-
mage_ai/server/frontend_dist_base_path_template/global-data-products/[...slug].html,sha256=
|
|
2288
|
-
mage_ai/server/frontend_dist_base_path_template/global-hooks/[...slug].html,sha256=
|
|
2290
|
+
mage_ai/server/frontend_dist_base_path_template/global-data-products/[...slug].html,sha256=yH3J3ax1Yu0Ix44LbQHzt-EyTK9gJUnBCxFpZ-OJi1E,12138
|
|
2291
|
+
mage_ai/server/frontend_dist_base_path_template/global-hooks/[...slug].html,sha256=vADpnSYCboP9gOQvbjeRCagbp7aLPukaNJYjkFk3ptY,11875
|
|
2289
2292
|
mage_ai/server/frontend_dist_base_path_template/images/backfill.jpg,sha256=0cUfwkvBISDC9yXxiDV7o2RPqKI_9OIydX90gw54azk,4404
|
|
2290
2293
|
mage_ai/server/frontend_dist_base_path_template/images/banner-shape-purple-peach.jpg,sha256=b6fpPLZfxxm7hiWf6Ci1Dv01P3d68k0eK_uu4v43Vss,4854
|
|
2291
2294
|
mage_ai/server/frontend_dist_base_path_template/images/dashboard-api-key.webp,sha256=5IwOoTLp3RKDrHVQsdCADoQkjcTbh5MTZGqlgyqcXNk,57024
|
|
@@ -2296,13 +2299,13 @@ mage_ai/server/frontend_dist_base_path_template/images/blocks/grey_block.webp,sh
|
|
|
2296
2299
|
mage_ai/server/frontend_dist_base_path_template/images/extensions/dbt/logo.png,sha256=-ssfqyt73pSkqsA_UBfYf2U2h2P62yr6fCe5SIwBurc,6001
|
|
2297
2300
|
mage_ai/server/frontend_dist_base_path_template/images/extensions/great_expectations/logo.png,sha256=RK76yAE_SHMHiFxf2aq-Ox00Gw6Khap9CCkdT7ucfQw,22785
|
|
2298
2301
|
mage_ai/server/frontend_dist_base_path_template/images/sessions/abstract.png,sha256=1oNvrU66riRKJOeF2siaMEINPZatcu7kdDPliEVACyQ,256616
|
|
2299
|
-
mage_ai/server/frontend_dist_base_path_template/manage/files.html,sha256=
|
|
2300
|
-
mage_ai/server/frontend_dist_base_path_template/manage/overview.html,sha256=
|
|
2301
|
-
mage_ai/server/frontend_dist_base_path_template/manage/pipeline-runs.html,sha256=
|
|
2302
|
-
mage_ai/server/frontend_dist_base_path_template/manage/settings.html,sha256=
|
|
2303
|
-
mage_ai/server/frontend_dist_base_path_template/manage/users.html,sha256=
|
|
2304
|
-
mage_ai/server/frontend_dist_base_path_template/manage/users/[user].html,sha256=
|
|
2305
|
-
mage_ai/server/frontend_dist_base_path_template/manage/users/new.html,sha256=
|
|
2302
|
+
mage_ai/server/frontend_dist_base_path_template/manage/files.html,sha256=W0Xl_VBBx5jpmcmDWnlZ9Xm6C9PGZb-BJs3HkQ6hnFE,11864
|
|
2303
|
+
mage_ai/server/frontend_dist_base_path_template/manage/overview.html,sha256=Ejk98Om_-Y1y3c0QA9p5RiPu4t9-w2zl7OOhSDKrOhM,12344
|
|
2304
|
+
mage_ai/server/frontend_dist_base_path_template/manage/pipeline-runs.html,sha256=hq028c16kgykQBOFGkYgds_21GLQdh9dnUudwTLVvgs,12112
|
|
2305
|
+
mage_ai/server/frontend_dist_base_path_template/manage/settings.html,sha256=nkB2MTo67aFx5iRhuEstb6_pTEQIN-MTYBONw5GgGT8,11870
|
|
2306
|
+
mage_ai/server/frontend_dist_base_path_template/manage/users.html,sha256=OlkJ7FjB0DNtbk2w_5QgtK5D5TsJJ6mY1ExnrRLXWQc,11864
|
|
2307
|
+
mage_ai/server/frontend_dist_base_path_template/manage/users/[user].html,sha256=jKPgV7cuFFmW-Xgdqsn0LE1YZzIDU2u-jdU7Pnf2MvI,11892
|
|
2308
|
+
mage_ai/server/frontend_dist_base_path_template/manage/users/new.html,sha256=RJ20r49qq_SwwjV4dmPqMpHtNjulMY8OjKXOHoSX5U8,11872
|
|
2306
2309
|
mage_ai/server/frontend_dist_base_path_template/monaco-editor/min/vs/loader.js,sha256=-g736o6tNxP1uWgDa4GNMLu0cVw5rpd9iv_JkFqjJYg,30051
|
|
2307
2310
|
mage_ai/server/frontend_dist_base_path_template/monaco-editor/min/vs/base/browser/ui/codicons/codicon/codicon.ttf,sha256=izSevKNd2mT7WHZYsm4XzDTGwdk0_FCb7wRObtuJ20k,73624
|
|
2308
2311
|
mage_ai/server/frontend_dist_base_path_template/monaco-editor/min/vs/base/common/worker/simpleWorker.nls.de.js,sha256=f6eZPSfW6q0TZXRHJH9Ot3KDmzXRrnAwUrGz6zTWa5c,869
|
|
@@ -2416,36 +2419,36 @@ mage_ai/server/frontend_dist_base_path_template/monaco-editor/min/vs/language/js
|
|
|
2416
2419
|
mage_ai/server/frontend_dist_base_path_template/monaco-editor/min/vs/language/json/jsonWorker.js,sha256=zgcNdzxOPbIH9mjg7oUxO3FHBwTvv9EQRMOKQWdjLF4,128871
|
|
2417
2420
|
mage_ai/server/frontend_dist_base_path_template/monaco-editor/min/vs/language/typescript/tsMode.js,sha256=GL-DBXaHEUZHBE6SZA_HY0m326feu9NjFduSIp_6o8o,23674
|
|
2418
2421
|
mage_ai/server/frontend_dist_base_path_template/monaco-editor/min/vs/language/typescript/tsWorker.js,sha256=GDkXJvtDJ6BGEWF6fLxQrtAlWx1PqCn78i1sEdOnrIY,4602226
|
|
2419
|
-
mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline].html,sha256=
|
|
2420
|
-
mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/backfills.html,sha256=
|
|
2421
|
-
mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/dashboard.html,sha256=
|
|
2422
|
-
mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/edit.html,sha256=
|
|
2423
|
-
mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/logs.html,sha256=
|
|
2424
|
-
mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/monitors.html,sha256=
|
|
2425
|
-
mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/runs.html,sha256=
|
|
2426
|
-
mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/settings.html,sha256=
|
|
2427
|
-
mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/syncs.html,sha256=
|
|
2428
|
-
mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/triggers.html,sha256=
|
|
2429
|
-
mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/backfills/[...slug].html,sha256=
|
|
2430
|
-
mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/monitors/block-runs.html,sha256=
|
|
2431
|
-
mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/monitors/block-runtime.html,sha256=
|
|
2432
|
-
mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/runs/[run].html,sha256=
|
|
2433
|
-
mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/triggers/[...slug].html,sha256=
|
|
2434
|
-
mage_ai/server/frontend_dist_base_path_template/platform/global-hooks.html,sha256=
|
|
2435
|
-
mage_ai/server/frontend_dist_base_path_template/platform/global-hooks/[...slug].html,sha256=
|
|
2436
|
-
mage_ai/server/frontend_dist_base_path_template/settings/account/profile.html,sha256=
|
|
2437
|
-
mage_ai/server/frontend_dist_base_path_template/settings/platform/preferences.html,sha256
|
|
2438
|
-
mage_ai/server/frontend_dist_base_path_template/settings/platform/settings.html,sha256=
|
|
2439
|
-
mage_ai/server/frontend_dist_base_path_template/settings/workspace/permissions.html,sha256=
|
|
2440
|
-
mage_ai/server/frontend_dist_base_path_template/settings/workspace/preferences.html,sha256=
|
|
2441
|
-
mage_ai/server/frontend_dist_base_path_template/settings/workspace/roles.html,sha256=
|
|
2442
|
-
mage_ai/server/frontend_dist_base_path_template/settings/workspace/sync-data.html,sha256=
|
|
2443
|
-
mage_ai/server/frontend_dist_base_path_template/settings/workspace/users.html,sha256
|
|
2444
|
-
mage_ai/server/frontend_dist_base_path_template/settings/workspace/permissions/[...slug].html,sha256=
|
|
2445
|
-
mage_ai/server/frontend_dist_base_path_template/settings/workspace/roles/[...slug].html,sha256=
|
|
2446
|
-
mage_ai/server/frontend_dist_base_path_template/settings/workspace/users/[...slug].html,sha256=
|
|
2447
|
-
mage_ai/server/frontend_dist_base_path_template/templates/[...slug].html,sha256=
|
|
2448
|
-
mage_ai/server/frontend_dist_base_path_template/v2/canvas.html,sha256=
|
|
2422
|
+
mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline].html,sha256=6c25c8hPt7jXOBpi4IqBxNhGw3mCv8YUQ6gMmaPafR4,9902
|
|
2423
|
+
mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/backfills.html,sha256=R0QZ5w3LOyyK5lB8QVMkuK2j73ZBObZ9QL7sIfX_q-0,11905
|
|
2424
|
+
mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/dashboard.html,sha256=akk3r3W07m9MezBJ_D6lw5q1DeS5mVt66dT5Po2MLog,13067
|
|
2425
|
+
mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/edit.html,sha256=K_Vz5vq6861jM-lCFSNvdJWeEmu9mkVPfCv5DGxmo90,11934
|
|
2426
|
+
mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/logs.html,sha256=4_jK_CHD_eMI8KpbBpRy1hr4BmRipL5YGMVq0fYgOrk,12011
|
|
2427
|
+
mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/monitors.html,sha256=50wT5zPUPWEPBQHri-B27Bl5MCm3KJSMX32g_qIBwsk,12250
|
|
2428
|
+
mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/runs.html,sha256=8FF-vUTBkl6Q85kcWEkl67Rpg17SD4QkAIANf5Vy4p0,12127
|
|
2429
|
+
mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/settings.html,sha256=3WXrBpAVN_P9GMUI2H4Z9anJFm8THPTiriE5gh3-Rbg,11903
|
|
2430
|
+
mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/syncs.html,sha256=yYdJ40zb9oLyrBMOecZaVodJG28n67phSQtG2kSUrrY,11897
|
|
2431
|
+
mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/triggers.html,sha256=HC19_m3RQrIOGDWZwUSxPBcSR-5KCpeVbIyvcgD9Eqw,12597
|
|
2432
|
+
mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/backfills/[...slug].html,sha256=PC_FCwkMk4PHibVKczZ3DBdP8cIv-lnrGaixBBMy6ms,12263
|
|
2433
|
+
mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/monitors/block-runs.html,sha256=hakGCgYA74cgpwF8VVRyJrBD_hsSbtT8k1Rafpj3rG0,12156
|
|
2434
|
+
mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/monitors/block-runtime.html,sha256=9FdnJSr5r1jBrjPhPrBdZVrwqtxczYhOV5gIdCMbee0,12514
|
|
2435
|
+
mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/runs/[run].html,sha256=7v0-h3fcjNZ714neTNNUqO6LkuGX68CHDL5nVvV7ayk,12622
|
|
2436
|
+
mage_ai/server/frontend_dist_base_path_template/pipelines/[pipeline]/triggers/[...slug].html,sha256=9MBhxzPSCfHr7PI9xOApx-d5tIiUTWulzP78q6rl_B0,12491
|
|
2437
|
+
mage_ai/server/frontend_dist_base_path_template/platform/global-hooks.html,sha256=Ejk9ne7OseAIKM-ExDOReeasYYte1qYeigBLmOFSDbo,11893
|
|
2438
|
+
mage_ai/server/frontend_dist_base_path_template/platform/global-hooks/[...slug].html,sha256=R0aolvxrfQEEpBxv-Bdk2vzCd2GtPy7nWBH20AbmITE,11893
|
|
2439
|
+
mage_ai/server/frontend_dist_base_path_template/settings/account/profile.html,sha256=zrhOiMlA5Anj96oOOGQRCyd976raK0GvP00hEiUyVXs,12002
|
|
2440
|
+
mage_ai/server/frontend_dist_base_path_template/settings/platform/preferences.html,sha256=biIX3PO8NCrJ87cf5scA5y3x807SgzgShcBd-eB2d4U,11896
|
|
2441
|
+
mage_ai/server/frontend_dist_base_path_template/settings/platform/settings.html,sha256=QLAH43VWpYa8Q4ekLAOV8eRlHjdngTHXvwzRqs68teI,11890
|
|
2442
|
+
mage_ai/server/frontend_dist_base_path_template/settings/workspace/permissions.html,sha256=qpajj5BNxd3IxGqPr5cIh8oLUsAgLl5j25oSdSa3bzI,12017
|
|
2443
|
+
mage_ai/server/frontend_dist_base_path_template/settings/workspace/preferences.html,sha256=9vyNI6GZYG9HnNrBh09Y85yE0W8WWCKHQmfPhaMk44g,11898
|
|
2444
|
+
mage_ai/server/frontend_dist_base_path_template/settings/workspace/roles.html,sha256=iNJuuUwsZX6byqiA6N8VnOwpMrtwoMz0YOoBXVGxnq0,11999
|
|
2445
|
+
mage_ai/server/frontend_dist_base_path_template/settings/workspace/sync-data.html,sha256=Z2Uf1auL0HAhD0lqA1aVwWg8OnFeU1gRuzb6wZlLnJE,12472
|
|
2446
|
+
mage_ai/server/frontend_dist_base_path_template/settings/workspace/users.html,sha256=4yp6Pj16XQ8PNqTgvgCno7AG_daGqN2JI2sniBZF1Qk,11999
|
|
2447
|
+
mage_ai/server/frontend_dist_base_path_template/settings/workspace/permissions/[...slug].html,sha256=4GpoWYOz8rpjqmu1v9dAWrg8TQrH_7aFaTSsr6A2NAk,12044
|
|
2448
|
+
mage_ai/server/frontend_dist_base_path_template/settings/workspace/roles/[...slug].html,sha256=H5lviO1fex7iKRjmcH9D2hNo6iM1OlbhO4TuzHA5U78,12026
|
|
2449
|
+
mage_ai/server/frontend_dist_base_path_template/settings/workspace/users/[...slug].html,sha256=fRgvj8915HjIji4PZnB7sj6MtF9GAmhN5njOyJC-HIg,12026
|
|
2450
|
+
mage_ai/server/frontend_dist_base_path_template/templates/[...slug].html,sha256=CSB5rrU4ILO1-TW50KZOVsNCXkhsNQjymS877QKOiSs,11869
|
|
2451
|
+
mage_ai/server/frontend_dist_base_path_template/v2/canvas.html,sha256=SIswDgDwgzwkaCheJDAfRCI99c9dPJXbrLE69KoUh5E,19121
|
|
2449
2452
|
mage_ai/server/frontend_dist_base_path_template/workers/worker.ts,sha256=uH_b7ZH76lKgCbHI0SS1fhp7HGhxKQJWpp-Wlv9GiBw,406
|
|
2450
2453
|
mage_ai/server/static/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2451
2454
|
mage_ai/server/static/files.py,sha256=JAJUbWUv6UcS8sctewwbxT0cv_XLEuoMV90BHPWiBW8,1330
|
|
@@ -2585,7 +2588,7 @@ mage_ai/settings/backends.py,sha256=BnIwl_DOYr93DfOXTfWeNQeGW9N1BQipdKuLmXYPiv4,
|
|
|
2585
2588
|
mage_ai/settings/constants.py,sha256=iEGrZXx1peumWVNgwkKZ5r5ZE3u-8LsBqj9Ve99w42s,81
|
|
2586
2589
|
mage_ai/settings/repo.py,sha256=vVabWFQG_rUujy-TAykFp-Ea-mI-pcul4HBNAjRcCHY,8065
|
|
2587
2590
|
mage_ai/settings/secret_generation.py,sha256=YYVnO_lt3FEg5tSxkVy5KQlaGehmecvri2o3HEMmPEU,191
|
|
2588
|
-
mage_ai/settings/server.py,sha256=
|
|
2591
|
+
mage_ai/settings/server.py,sha256=72Wmx_DnUcb56AY2OOsd4OAE8ALr_IjMzz2nS1WsTJ4,10664
|
|
2589
2592
|
mage_ai/settings/utils.py,sha256=Ufi3F5z4vZ3FaK8242zlcZWCdc2bWl2-t1ISo9iTm2g,310
|
|
2590
2593
|
mage_ai/settings/keys/__init__.py,sha256=nu7jPI1n0xMql3ud3zCPMJIKYtSLE-IaxKN5aMhXjiE,61
|
|
2591
2594
|
mage_ai/settings/keys/auth.py,sha256=TS6ZOP6CP_QuZNZf8SY1feHODXS5i7lOolpJ_QXzEyY,2523
|
|
@@ -2659,7 +2662,7 @@ mage_ai/streaming/sources/base.py,sha256=5blUj8cyw8aFzkHGJuc8Jba2uvDZxx2XLr-Brj8
|
|
|
2659
2662
|
mage_ai/streaming/sources/base_python.py,sha256=WVOMhzgqktvqkTLGICh5LN1gyOAG0tix_qLZYvZ50nk,837
|
|
2660
2663
|
mage_ai/streaming/sources/google_cloud_pubsub.py,sha256=sO_scPcUpmfsfqq0EHJbECV3mU5VDZ7iLVaeeacisss,6703
|
|
2661
2664
|
mage_ai/streaming/sources/influxdb.py,sha256=TzSKynjSneNYxqI6va0LKJFMxduzKJfkOUL_Nj6EDqc,8247
|
|
2662
|
-
mage_ai/streaming/sources/kafka.py,sha256=
|
|
2665
|
+
mage_ai/streaming/sources/kafka.py,sha256=vJilCd_0idAtQkgj9HRy7FISYsClWl2Bz6ckVwv-O3c,12230
|
|
2663
2666
|
mage_ai/streaming/sources/kinesis.py,sha256=KisyHYYSW4oE1cROHjea2sma2FWC6B657-q_pEB0UWE,3950
|
|
2664
2667
|
mage_ai/streaming/sources/mongodb.py,sha256=qg82im_KCB33JZthiRdnf8LxCsFDizp725HNo55ZmVM,2567
|
|
2665
2668
|
mage_ai/streaming/sources/nats_js.py,sha256=P8Uh3kq4CBRWOPAIOL-PdYdkJXf9HOMjPSF-i36Lv3I,8755
|
|
@@ -2800,7 +2803,7 @@ mage_ai/tests/data_preparation/test_templates.py,sha256=o1T_aHNoszgny3kxIe1MJQh9
|
|
|
2800
2803
|
mage_ai/tests/data_preparation/test_variable_manager.py,sha256=ZIMzmqGUgXz-9Olsyd-8ejAH-ENng5_p4O-IFZPG2Wo,4737
|
|
2801
2804
|
mage_ai/tests/data_preparation/test_variable_manager_project_platform.py,sha256=QqMZkHRmqifdDCCbE9Lxks0qbNKKt3b_bQ_5QySNjx4,1539
|
|
2802
2805
|
mage_ai/tests/data_preparation/executors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2803
|
-
mage_ai/tests/data_preparation/executors/test_block_executor.py,sha256=
|
|
2806
|
+
mage_ai/tests/data_preparation/executors/test_block_executor.py,sha256=5ZYb_mzDmIgykJRd4250DNEwmEa2DCsfdI1vA56SFDI,17974
|
|
2804
2807
|
mage_ai/tests/data_preparation/executors/test_k8s_block_executor.py,sha256=bVXUnM4C8ZqIFOntvw0Dr49-C_hRCidPgNN4tihZG0g,3049
|
|
2805
2808
|
mage_ai/tests/data_preparation/executors/test_pipeline_executor.py,sha256=iS1eJAAe8Tp_uk40ZAuvjjTAwnvCCmEmOOi2WI-tD_k,2525
|
|
2806
2809
|
mage_ai/tests/data_preparation/git/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -2816,7 +2819,7 @@ mage_ai/tests/data_preparation/models/test_global_data_product.py,sha256=MArll0y
|
|
|
2816
2819
|
mage_ai/tests/data_preparation/models/test_pipeline.py,sha256=KPWJ1jnGtOMQuDdielVOKV5KjAaR0EEiTLMKKLlWTFQ,43705
|
|
2817
2820
|
mage_ai/tests/data_preparation/models/test_project.py,sha256=KgMLndtarBHEsofopYSe8BXT4C_0XG7S2v1ZkfxI4jQ,8194
|
|
2818
2821
|
mage_ai/tests/data_preparation/models/test_utils.py,sha256=c-dl2FkbBfHcaA67ahSsDs46509dEkUZv6Sv0xCvNoM,3229
|
|
2819
|
-
mage_ai/tests/data_preparation/models/test_variable.py,sha256=
|
|
2822
|
+
mage_ai/tests/data_preparation/models/test_variable.py,sha256=L1qoiUDYNmwDi3Hz1ZOJwzQChysq1jf0T1vSwkPEfpc,13595
|
|
2820
2823
|
mage_ai/tests/data_preparation/models/block/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2821
2824
|
mage_ai/tests/data_preparation/models/block/test_global_data_product.py,sha256=EJIrcRMfZ5g-tEK1LVVhpyBUbtFa612uffkyrQaDw3k,2809
|
|
2822
2825
|
mage_ai/tests/data_preparation/models/block/test_sql.py,sha256=LcTkzHVoQGitCouea9cmlKCXkXSP1I7_TLQ2QbgJ3kA,2558
|
|
@@ -2832,7 +2835,7 @@ mage_ai/tests/data_preparation/models/block/dbt/test_project.py,sha256=jWJ3BrC0D
|
|
|
2832
2835
|
mage_ai/tests/data_preparation/models/block/dbt/test_sources.py,sha256=LmqdD6HMb1xtaW4TzCvjLwkJ9y7j_YsfVeWIsELEbJM,11033
|
|
2833
2836
|
mage_ai/tests/data_preparation/models/block/dynamic/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2834
2837
|
mage_ai/tests/data_preparation/models/block/dynamic/test_combos.py,sha256=4B8xD3OI7vblXmIBcye12EdtwxzHmJm5KlDmNMWErkU,11982
|
|
2835
|
-
mage_ai/tests/data_preparation/models/block/dynamic/test_counter.py,sha256=
|
|
2838
|
+
mage_ai/tests/data_preparation/models/block/dynamic/test_counter.py,sha256=E-p6KpCbSrO8uXcPDK3cDb1Jt8dQfj14G_ZqL-CBPbU,7580
|
|
2836
2839
|
mage_ai/tests/data_preparation/models/block/dynamic/test_factory.py,sha256=LqAyERPCX4JlvH5xfO69M-oj7S359g8wIp4pcfgZ0y0,13109
|
|
2837
2840
|
mage_ai/tests/data_preparation/models/block/dynamic/test_utils.py,sha256=P0S9ZDytwegJV86S12J6n5Ma5QiX6AQ7xRY1_FCscp0,6424
|
|
2838
2841
|
mage_ai/tests/data_preparation/models/block/dynamic/test_variables.py,sha256=r-nq2BdlkKqoo6MA_Z9BJUW6XoGFShB7bBXo-hDi9ik,12770
|
|
@@ -2868,7 +2871,7 @@ mage_ai/tests/io/create_table/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5N
|
|
|
2868
2871
|
mage_ai/tests/io/create_table/test_bigquery.py,sha256=kTOfRkZpItP5iDV8gTATsskqRioE0Gqn4P8IFa_4LBo,3008
|
|
2869
2872
|
mage_ai/tests/io/create_table/test_mssql.py,sha256=yNQ4OokU5OiknJpFXKiSRWSWigOm2DQLqCy5cRnU9AA,1038
|
|
2870
2873
|
mage_ai/tests/io/create_table/test_mysql.py,sha256=TuOOOjnsz22ttHxa360GJTMxejWl_014VckKKmJxohU,1063
|
|
2871
|
-
mage_ai/tests/io/create_table/test_postgresql.py,sha256=
|
|
2874
|
+
mage_ai/tests/io/create_table/test_postgresql.py,sha256=PxHRgF9-xAfSuBg51NWuefHJqrmmt5l_oZ3ZIVVyfoc,1966
|
|
2872
2875
|
mage_ai/tests/io/create_table/test_redshift.py,sha256=DudbiVzXfwXBUuh5yk8IMLsX68TfzBMSElFSIOtfgJI,1318
|
|
2873
2876
|
mage_ai/tests/io/create_table/test_trino.py,sha256=NdNfmJxY4OhjiLLe8TSO1End5ApwhPr_tqjosZ9SPTo,1039
|
|
2874
2877
|
mage_ai/tests/orchestration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -2885,7 +2888,7 @@ mage_ai/tests/orchestration/db/models/test_schedules_dynamic_blocks.py,sha256=PP
|
|
|
2885
2888
|
mage_ai/tests/orchestration/notification/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2886
2889
|
mage_ai/tests/orchestration/notification/constants.py,sha256=x1ScqchOupAhgy2LPCJFr9e6iwlZa2kuqYBibH5ZiNc,1659
|
|
2887
2890
|
mage_ai/tests/orchestration/notification/test_config.py,sha256=UHH95JdWYPOmTZ_BbwLl2QLJ4JwZXw7deILnJDZNZho,2517
|
|
2888
|
-
mage_ai/tests/orchestration/notification/test_sender.py,sha256=
|
|
2891
|
+
mage_ai/tests/orchestration/notification/test_sender.py,sha256=oJskdz_H5Q6TFgHFy75I1bRfnYvRZORS0_F3XJIjQVc,8169
|
|
2889
2892
|
mage_ai/tests/orchestration/queue/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2890
2893
|
mage_ai/tests/orchestration/queue/test_process_queue.py,sha256=puK7yRILrZP3bhGw6Sxc1t0SkwJUZFhKRDVS9eHKSlw,2567
|
|
2891
2894
|
mage_ai/tests/orchestration/triggers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -2952,7 +2955,7 @@ mage_ai/tests/streaming/sources/test_amazon_sqs.py,sha256=5gbIsYYdHeB1pVfX8QIWun
|
|
|
2952
2955
|
mage_ai/tests/streaming/sources/test_azure_event_hub.py,sha256=YEj-sB9QChdO5KUEgyA84gUMbxa0Z06ZohnpIBZG-wM,1041
|
|
2953
2956
|
mage_ai/tests/streaming/sources/test_google_cloud_pubsub.py,sha256=BuD7dMxjAOgjBSj53IW56V8CjbNuI-vvjLLd1dFHzes,1318
|
|
2954
2957
|
mage_ai/tests/streaming/sources/test_influxdb.py,sha256=eI1zOIJH48Tjkd4ZS5zrXRBuxapEbOiHQN0-eCoq9bA,1124
|
|
2955
|
-
mage_ai/tests/streaming/sources/test_kafka.py,sha256=
|
|
2958
|
+
mage_ai/tests/streaming/sources/test_kafka.py,sha256=g-hH7hOgsBJB4DMzGz79BQKi0Y5uNE2VnldCq2xSyMk,4201
|
|
2956
2959
|
mage_ai/tests/streaming/sources/test_kinesis.py,sha256=_iK3utAPBb-6BL3Z-iszwS3HMw2zvzBGf20Q3QHTPpc,1030
|
|
2957
2960
|
mage_ai/tests/streaming/sources/test_mongodb.py,sha256=iQfOlsfR9MgBADDL9JFrYRp6znUNGHf3Eccut8J-m-s,1757
|
|
2958
2961
|
mage_ai/tests/streaming/sources/test_nats_js.py,sha256=LiSsZdfeTZLqEUTxIRc9-XNDIPfuYQeeGd7XAyaccuo,1191
|
|
@@ -2960,7 +2963,7 @@ mage_ai/tests/streaming/sources/test_rabbitmq.py,sha256=-NwOf4QumuhTfZoo49O2_kFP
|
|
|
2960
2963
|
mage_ai/tests/streaming/sources/test_source_factory.py,sha256=9mDeKpWgDsn5W9iUY1V_M1bQF9pT6kadseZJyQQvoR0,3573
|
|
2961
2964
|
mage_ai/usage_statistics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2962
2965
|
mage_ai/usage_statistics/constants.py,sha256=fNYcKDzbmsKaQ2PZwuQu-6C0lD9JE2SrX793bZG8eu0,836
|
|
2963
|
-
mage_ai/usage_statistics/logger.py,sha256=
|
|
2966
|
+
mage_ai/usage_statistics/logger.py,sha256=prKwN1kRyLHO3rCdvDwEes6ceaIj-eHwL37u6wTh5Qw,19174
|
|
2964
2967
|
mage_ai/usage_statistics/utils.py,sha256=6iUOI-SKeYPPz6uyfdH2RapVBQFvDiDqzV2PMG265lQ,572
|
|
2965
2968
|
mage_ai/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2966
2969
|
mage_ai/utils/code.py,sha256=5NaqafjvZhdNmBNCyGIqxh1ieyBlBl2-oTDIDgiO97Y,2744
|
|
@@ -2970,9 +2973,9 @@ mage_ai/version_control/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG
|
|
|
2970
2973
|
mage_ai/version_control/models.py,sha256=synqylfkRPVl_E6dl_1yWiYk2t_KO14nlFpB3RPfKbk,22904
|
|
2971
2974
|
mage_ai/version_control/branch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
2972
2975
|
mage_ai/version_control/branch/utils.py,sha256=tscNg2-sLqVR-YEqET4t9HiPTZ_IW1xN-435v3fmSN8,7302
|
|
2973
|
-
mage_ai-0.9.
|
|
2974
|
-
mage_ai-0.9.
|
|
2975
|
-
mage_ai-0.9.
|
|
2976
|
-
mage_ai-0.9.
|
|
2977
|
-
mage_ai-0.9.
|
|
2978
|
-
mage_ai-0.9.
|
|
2976
|
+
mage_ai-0.9.77.dist-info/licenses/LICENSE,sha256=XSS8WC34KIH1c9SeL-rOUlz9YL7vU-8Zz8yPMXSD55E,11351
|
|
2977
|
+
mage_ai-0.9.77.dist-info/METADATA,sha256=s_7OlG9o1MaparWvTiuSeAQeNByXPXhZF-XvKNA1Ihg,14297
|
|
2978
|
+
mage_ai-0.9.77.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
2979
|
+
mage_ai-0.9.77.dist-info/entry_points.txt,sha256=OMjG1dNRclr-6hTA8-KY4DKhCR7FNVPNPcR_fqMf2lY,46
|
|
2980
|
+
mage_ai-0.9.77.dist-info/top_level.txt,sha256=hg9hr-jNWFq9_mVwGpLWLS-X8Yx6iSGpTkqEpTbZEO8,8
|
|
2981
|
+
mage_ai-0.9.77.dist-info/RECORD,,
|