mage-ai 0.8.91__py3-none-any.whl → 0.8.93__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/BlockPolicy.py +1 -0
- mage_ai/api/policies/PipelinePolicy.py +6 -0
- mage_ai/api/presenters/BlockPresenter.py +1 -0
- mage_ai/api/presenters/PipelinePresenter.py +2 -0
- mage_ai/data_preparation/decorators.py +4 -0
- mage_ai/data_preparation/executors/block_executor.py +68 -3
- mage_ai/data_preparation/models/block/__init__.py +212 -67
- mage_ai/data_preparation/models/block/constants.py +3 -1
- mage_ai/data_preparation/models/constants.py +8 -8
- mage_ai/data_preparation/models/pipeline.py +83 -5
- mage_ai/data_preparation/repo_manager.py +5 -2
- mage_ai/data_preparation/shared/constants.py +2 -1
- mage_ai/data_preparation/templates/conditionals/base.jinja +11 -0
- mage_ai/data_preparation/templates/constants.py +7 -0
- mage_ai/io/mssql.py +11 -1
- mage_ai/io/sql.py +8 -1
- mage_ai/orchestration/db/migrations/versions/dfe49d040487_add_condition_failed_status_to_block_.py +39 -0
- mage_ai/orchestration/db/models/schedules.py +5 -1
- mage_ai/orchestration/pipeline_scheduler.py +27 -17
- mage_ai/server/api/downloads.py +64 -0
- mage_ai/server/constants.py +1 -1
- mage_ai/server/execution_manager.py +3 -2
- mage_ai/server/frontend_dist/404.html +2 -2
- mage_ai/server/frontend_dist/404.html.html +2 -2
- mage_ai/server/frontend_dist/_next/static/chunks/1424-321c8c08a2b05c19.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/2786-2b3ad2cf216fae42.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/3714-3bd2a8c979d6d820.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/3752-8f15fe0ca9c23cf4.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/{4476-cdae7a65db573bb7.js → 4476-c1a62e69cd8e14d5.js} +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/_app-8aaee96edc252aa3.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/pages/manage-88c03376d807012e.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipeline-runs-915825c19bf42fa1.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/backfills-bf2d83dabe1bd25a.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/edit-f0940870ff5a17f6.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/logs-8ee12ce8362ed576.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/monitors/block-runs-a64f7a0aba0f481d.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/monitors/block-runtime-3a3a115ab1a86e2f.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/runs/[run]-160881dab5ef66d8.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/runs-69d63c14abf8cf68.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/syncs-6092226e191dd720.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines-549f4708f2912a7a.js +1 -0
- mage_ai/server/frontend_dist/_next/static/zlCBBK90aKYZtPlYLj9_T/_buildManifest.js +1 -0
- mage_ai/server/frontend_dist/files.html +2 -2
- mage_ai/server/frontend_dist/index.html +2 -2
- mage_ai/server/frontend_dist/manage/users/[user].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/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]/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/settings/account/profile.html +2 -2
- mage_ai/server/frontend_dist/settings/workspace/preferences.html +2 -2
- mage_ai/server/frontend_dist/settings/workspace/sync-data.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 +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/server.py +8 -0
- mage_ai/server/websocket_server.py +3 -2
- mage_ai/services/spark/config.py +8 -2
- mage_ai/services/spark/spark.py +64 -22
- mage_ai/shared/environments.py +4 -8
- mage_ai/tests/api/operations/test_syncs.py +1 -1
- mage_ai/tests/data_preparation/models/test_pipeline.py +11 -1
- {mage_ai-0.8.91.dist-info → mage_ai-0.8.93.dist-info}/METADATA +1 -1
- {mage_ai-0.8.91.dist-info → mage_ai-0.8.93.dist-info}/RECORD +87 -83
- mage_ai/server/frontend_dist/_next/static/chunks/1424-c6b0d89ffb4a10b9.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/3714-c70e815b08e3d9be.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/3752-bd78037feb0a755f.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/_app-aa11738683e2250f.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/manage-06aa8a8f1ca2e8d8.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipeline-runs-3260a2dac8df672e.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/backfills-f08b51d9dc56eab5.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/edit-43e71712d3fc0299.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/logs-264439be4f197741.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/monitors/block-runs-91ba61b9030eff1f.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/monitors/block-runtime-0bbae5456b0e6e82.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/runs/[run]-86d1477c6671ea30.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/runs-4b0c098074dd3e6d.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/syncs-891c3d3f7a2b634b.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines-f4d470fe28b74de7.js +0 -1
- mage_ai/server/frontend_dist/_next/static/j-J6532RA0pcVgjHCeKSz/_buildManifest.js +0 -1
- /mage_ai/server/frontend_dist/_next/static/{j-J6532RA0pcVgjHCeKSz → zlCBBK90aKYZtPlYLj9_T}/_middlewareManifest.js +0 -0
- /mage_ai/server/frontend_dist/_next/static/{j-J6532RA0pcVgjHCeKSz → zlCBBK90aKYZtPlYLj9_T}/_ssgManifest.js +0 -0
- {mage_ai-0.8.91.dist-info → mage_ai-0.8.93.dist-info}/LICENSE +0 -0
- {mage_ai-0.8.91.dist-info → mage_ai-0.8.93.dist-info}/WHEEL +0 -0
- {mage_ai-0.8.91.dist-info → mage_ai-0.8.93.dist-info}/entry_points.txt +0 -0
- {mage_ai-0.8.91.dist-info → mage_ai-0.8.93.dist-info}/top_level.txt +0 -0
|
@@ -37,6 +37,7 @@ class PipelineTest(DBTestCase):
|
|
|
37
37
|
executor_type=None,
|
|
38
38
|
name='test pipeline 2',
|
|
39
39
|
uuid='test_pipeline_2',
|
|
40
|
+
spark_config=dict(),
|
|
40
41
|
type='python',
|
|
41
42
|
blocks=[
|
|
42
43
|
dict(
|
|
@@ -105,6 +106,7 @@ class PipelineTest(DBTestCase):
|
|
|
105
106
|
),
|
|
106
107
|
],
|
|
107
108
|
callbacks=[],
|
|
109
|
+
conditionals=[],
|
|
108
110
|
updated_at=None,
|
|
109
111
|
widgets=[
|
|
110
112
|
dict(
|
|
@@ -135,7 +137,7 @@ class PipelineTest(DBTestCase):
|
|
|
135
137
|
'test_pipeline_b',
|
|
136
138
|
repo_path=self.repo_path,
|
|
137
139
|
)
|
|
138
|
-
with self.
|
|
140
|
+
with self.assertRaisesRegex(Exception, 'Pipeline test_pipeline_a already exists.'):
|
|
139
141
|
asyncio.run(pipeline2.update(dict(name='test_pipeline_a', uuid='test_pipeline_b')))
|
|
140
142
|
self.assertEqual(pipeline1.name, 'test_pipeline_a')
|
|
141
143
|
self.assertEqual(pipeline2.name, 'test_pipeline_b')
|
|
@@ -172,6 +174,7 @@ class PipelineTest(DBTestCase):
|
|
|
172
174
|
executor_type=None,
|
|
173
175
|
name='test pipeline 3',
|
|
174
176
|
uuid='test_pipeline_3',
|
|
177
|
+
spark_config=dict(),
|
|
175
178
|
type='python',
|
|
176
179
|
blocks=[
|
|
177
180
|
dict(
|
|
@@ -224,6 +227,7 @@ class PipelineTest(DBTestCase):
|
|
|
224
227
|
)
|
|
225
228
|
],
|
|
226
229
|
callbacks=[],
|
|
230
|
+
conditionals=[],
|
|
227
231
|
updated_at=None,
|
|
228
232
|
widgets=[],
|
|
229
233
|
))
|
|
@@ -250,6 +254,7 @@ class PipelineTest(DBTestCase):
|
|
|
250
254
|
executor_type=None,
|
|
251
255
|
name='test pipeline 4',
|
|
252
256
|
uuid='test_pipeline_4',
|
|
257
|
+
spark_config=dict(),
|
|
253
258
|
type='python',
|
|
254
259
|
blocks=[
|
|
255
260
|
dict(
|
|
@@ -318,6 +323,7 @@ class PipelineTest(DBTestCase):
|
|
|
318
323
|
)
|
|
319
324
|
],
|
|
320
325
|
callbacks=[],
|
|
326
|
+
conditionals=[],
|
|
321
327
|
updated_at=None,
|
|
322
328
|
widgets=[],
|
|
323
329
|
))
|
|
@@ -350,6 +356,7 @@ class PipelineTest(DBTestCase):
|
|
|
350
356
|
executor_type=None,
|
|
351
357
|
name='test pipeline 5',
|
|
352
358
|
uuid='test_pipeline_5',
|
|
359
|
+
spark_config=dict(),
|
|
353
360
|
type='python',
|
|
354
361
|
blocks=[
|
|
355
362
|
dict(
|
|
@@ -466,6 +473,7 @@ class PipelineTest(DBTestCase):
|
|
|
466
473
|
)
|
|
467
474
|
],
|
|
468
475
|
callbacks=[],
|
|
476
|
+
conditionals=[],
|
|
469
477
|
updated_at=None,
|
|
470
478
|
widgets=[],
|
|
471
479
|
))
|
|
@@ -578,6 +586,7 @@ class PipelineTest(DBTestCase):
|
|
|
578
586
|
"executor_type": None,
|
|
579
587
|
"extensions": {},
|
|
580
588
|
"name": "test_pipeline_9",
|
|
589
|
+
"spark_config": {},
|
|
581
590
|
"type": "integration",
|
|
582
591
|
"updated_at": None,
|
|
583
592
|
"uuid": "test_pipeline_9",
|
|
@@ -616,6 +625,7 @@ class PipelineTest(DBTestCase):
|
|
|
616
625
|
},
|
|
617
626
|
],
|
|
618
627
|
"callbacks": [],
|
|
628
|
+
"conditionals": [],
|
|
619
629
|
"widgets": [],
|
|
620
630
|
},
|
|
621
631
|
)
|
|
@@ -18,7 +18,7 @@ mage_ai/api/policies/AutocompleteItemPolicy.py,sha256=DJp6cGhtbNZZcM-kmO8oQuHCpB
|
|
|
18
18
|
mage_ai/api/policies/BackfillPolicy.py,sha256=t9kPZKUWLhvFTONkLFRgBGUYw9TcbIzaPzP-UvpRq_Q,2325
|
|
19
19
|
mage_ai/api/policies/BasePolicy.py,sha256=74KN7Iox4cROYs8xvHfTi5A2EL9iaHNAyn1u4q969ak,12159
|
|
20
20
|
mage_ai/api/policies/BlockOutputPolicy.py,sha256=I9aAS_XXZ-s9rlv7WJ6tzh8EPdVALWpZv4nUURgtRLY,844
|
|
21
|
-
mage_ai/api/policies/BlockPolicy.py,sha256=
|
|
21
|
+
mage_ai/api/policies/BlockPolicy.py,sha256=Lb3SaT8NYoX9kO3RHbLIdvbamyjqWXfLwyFsOGS0G0w,3473
|
|
22
22
|
mage_ai/api/policies/BlockRunPolicy.py,sha256=o9xYrJe02xqiSyOG7rz7jieqr8lwPgFfIOyES8w9z8I,1348
|
|
23
23
|
mage_ai/api/policies/BlockTemplatePolicy.py,sha256=swbucC9QZ-d3qv5cRcpSVDD0wgZK5zlYk8VC0lnUAXM,758
|
|
24
24
|
mage_ai/api/policies/ClusterPolicy.py,sha256=MCAShwqTaiX3gyYi7s2zhXMW5r2QrU93kMWviMPNDto,1044
|
|
@@ -37,7 +37,7 @@ mage_ai/api/policies/KernelPolicy.py,sha256=ndE5kOI2U3VcrTfLFGob4ja2cwRdaWk6eOX4
|
|
|
37
37
|
mage_ai/api/policies/LogPolicy.py,sha256=K4aNB9Tog4g0GBZjy9PPyvq0vc3AC-UPJWu5lFiMyPo,1737
|
|
38
38
|
mage_ai/api/policies/MonitorStatPolicy.py,sha256=DqrNdwTXxGI45jhLcNP76me8WqTvuvbyZ0oaFHzxaQ8,874
|
|
39
39
|
mage_ai/api/policies/OutputPolicy.py,sha256=iXFf6ES2OAf42Wib0pjvMROjS6L2yrbmbxt0NT4hCBY,1111
|
|
40
|
-
mage_ai/api/policies/PipelinePolicy.py,sha256=
|
|
40
|
+
mage_ai/api/policies/PipelinePolicy.py,sha256=O4o3_O7cT1oQjr7vYWzVT2nFEskUaz6m2Xw0j9xtQAg,3851
|
|
41
41
|
mage_ai/api/policies/PipelineRunPolicy.py,sha256=q79I51KUJ7AUMsCtjVIwd3XyUUED7fyrx_aWoGoAZ40,2860
|
|
42
42
|
mage_ai/api/policies/PipelineSchedulePolicy.py,sha256=Andyng55h0X8BrHLRk4YHKfhzxbQF0rlzaAE9jA7ack,2911
|
|
43
43
|
mage_ai/api/policies/ProjectPolicy.py,sha256=XbklLEetlTSDBDHffmH1VP0hpbYfjXNvR4NQ4rj6mWA,1003
|
|
@@ -56,7 +56,7 @@ mage_ai/api/presenters/AutocompleteItemPresenter.py,sha256=4JB3dX_fL8LRDQBWCij1F
|
|
|
56
56
|
mage_ai/api/presenters/BackfillPresenter.py,sha256=1e0r0Z_hgoOiuZ1gKN4K0yuYnB4Sireba1eYWw_ZS98,1556
|
|
57
57
|
mage_ai/api/presenters/BasePresenter.py,sha256=41qzPjM-BBqyX02nOPjQKKuldbXK28vrmp0rGQhEEpY,5877
|
|
58
58
|
mage_ai/api/presenters/BlockOutputPresenter.py,sha256=CVCRAQEzzs3P8AJQjPlZLI8FCBoxfx0OxeRuzfuTvhI,160
|
|
59
|
-
mage_ai/api/presenters/BlockPresenter.py,sha256=
|
|
59
|
+
mage_ai/api/presenters/BlockPresenter.py,sha256=NBIcRc4qCMCWgOrV7A0ohXOz0DweBQLdBn3u_lNTvd0,2480
|
|
60
60
|
mage_ai/api/presenters/BlockRunPresenter.py,sha256=ymBlYyBYTH6MgFuSUIX6C_t7CaVZjlCG6bd3k6BJBaA,464
|
|
61
61
|
mage_ai/api/presenters/BlockTemplatePresenter.py,sha256=StzOMKjdx3CEZQs_d3W3bQ5TffIlNhofWDBJnt-M3pE,258
|
|
62
62
|
mage_ai/api/presenters/ClusterPresenter.py,sha256=gxDmBHx8V0rmzdrJLn26ARnEak2pwVelU8ipRYyXznQ,206
|
|
@@ -75,7 +75,7 @@ mage_ai/api/presenters/KernelPresenter.py,sha256=0xu17lfmzIv0IdARo65cJkYr352RIIN
|
|
|
75
75
|
mage_ai/api/presenters/LogPresenter.py,sha256=EgM95mrAGRgRaGu6fTPy9hDBq96N9yUnbds_00WFebo,265
|
|
76
76
|
mage_ai/api/presenters/MonitorStatPresenter.py,sha256=8nQ4e9c7L4lO4mOKAhvvHDA0aEK5FQg7eSu7QNDYMlg,180
|
|
77
77
|
mage_ai/api/presenters/OutputPresenter.py,sha256=ybbBQLCA0aWL8gy5RKKnckm6U1nQA0xZLtkwsu7qww0,238
|
|
78
|
-
mage_ai/api/presenters/PipelinePresenter.py,sha256=
|
|
78
|
+
mage_ai/api/presenters/PipelinePresenter.py,sha256=zIcWH0SAV3QYWp_8mcQ1R9ueJaP5Ff1ZTCC8ZuZlwNI,2420
|
|
79
79
|
mage_ai/api/presenters/PipelineRunPresenter.py,sha256=z3TjHPwiB2l1-rPppd_exctJq9qaEz4q72ccstJ35SI,1909
|
|
80
80
|
mage_ai/api/presenters/PipelineSchedulePresenter.py,sha256=uOFAhPQA9AyxAgD3u7TA7ZKKRSzsY_rNi36fyvgG29U,1369
|
|
81
81
|
mage_ai/api/presenters/ProjectPresenter.py,sha256=Sa-4NoqQPpXi97nKnl7h2jejhpThwQDY_e9XKYpHp_0,251
|
|
@@ -227,13 +227,13 @@ mage_ai/data_integrations/utils/config.py,sha256=IE_TIl97crP-ZjgmZLRu8BM6KbYfhl9
|
|
|
227
227
|
mage_ai/data_integrations/utils/parsers.py,sha256=xtowXJCkU8gdZ9nj1ILic5F_QMNPl_Fw_pYe3ZMlVNw,1502
|
|
228
228
|
mage_ai/data_integrations/utils/scheduler.py,sha256=2YjGroGvfevKDcA7WB8TYJExbktnX3naohikFRczPcg,7721
|
|
229
229
|
mage_ai/data_preparation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
230
|
-
mage_ai/data_preparation/decorators.py,sha256=
|
|
230
|
+
mage_ai/data_preparation/decorators.py,sha256=j4G2wH-ZhnGqtV71NZlT7Z6ubxaf2Xz-mQ0bR1hwf8c,788
|
|
231
231
|
mage_ai/data_preparation/preferences.py,sha256=sRR-BqeETRXnEY8J7NS-PSPaC5M_CpwaoduLaO4gdo8,3266
|
|
232
|
-
mage_ai/data_preparation/repo_manager.py,sha256
|
|
232
|
+
mage_ai/data_preparation/repo_manager.py,sha256=bOofEeIeiYjIV5rKTOuJqrKh_t74GliVmj00rUTz0eE,8078
|
|
233
233
|
mage_ai/data_preparation/variable_manager.py,sha256=pPNFLTvXpErmYQl8BMj3as50V4apCp3SUZvE0n0-HFs,12094
|
|
234
234
|
mage_ai/data_preparation/executors/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
235
235
|
mage_ai/data_preparation/executors/azure_container_instance_executor.py,sha256=kgqzqYAV8RjRpOjy_6Khlo_pzEdjRa1w4CpYWkdQ95g,1052
|
|
236
|
-
mage_ai/data_preparation/executors/block_executor.py,sha256=
|
|
236
|
+
mage_ai/data_preparation/executors/block_executor.py,sha256=g6F-VIfbiIIhakuVnO6utQhJml8FkCu6c-tQNDrn9eA,15695
|
|
237
237
|
mage_ai/data_preparation/executors/ecs_block_executor.py,sha256=n2pn0RnaUkB1yUupMMdNYLv_lDUlpPz2VxEs3tTNcfE,895
|
|
238
238
|
mage_ai/data_preparation/executors/executor_factory.py,sha256=MMoIBRJ8IQCSBiR_1_Vi0LIaGVMJSC3HRfafO0VcP4M,7135
|
|
239
239
|
mage_ai/data_preparation/executors/gcp_cloud_run_block_executor.py,sha256=Ps6GYcrzJFeOYZR8MvwsLPOE_HDSnxkw2IQFe6rckc4,1255
|
|
@@ -251,15 +251,15 @@ mage_ai/data_preparation/logging/logger_manager.py,sha256=AJGpU_yj1QFD0aVTzLDfeK
|
|
|
251
251
|
mage_ai/data_preparation/logging/logger_manager_factory.py,sha256=uIk-WHAHo1MSkD4_rOtmhGPVp1Nqh_u9jN-IlP_tDCg,988
|
|
252
252
|
mage_ai/data_preparation/logging/s3_logger_manager.py,sha256=34Tpa5Hmhns0CuLVjVuZNxQ9X4kzeEcxQ17cP1uKbvk,1653
|
|
253
253
|
mage_ai/data_preparation/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
254
|
-
mage_ai/data_preparation/models/constants.py,sha256=
|
|
254
|
+
mage_ai/data_preparation/models/constants.py,sha256=yulMXbuP3JD6DHFSFreU8VlwcLnhl0X2nqa1ThHOKp4,3071
|
|
255
255
|
mage_ai/data_preparation/models/errors.py,sha256=NAuStUn8neLBHNT8kmyfkhAAX4gdsW7a-3V0q2sYkK0,103
|
|
256
256
|
mage_ai/data_preparation/models/file.py,sha256=sj0V2zxJu3t1_YfiAr9oLRWgEMCfiRORN7rJp-4pnmc,11392
|
|
257
|
-
mage_ai/data_preparation/models/pipeline.py,sha256=
|
|
257
|
+
mage_ai/data_preparation/models/pipeline.py,sha256=c-FNCCxmdDpzINs9Z5Wn8drMMmhpAAmUh3sQawb8Y0Q,58199
|
|
258
258
|
mage_ai/data_preparation/models/project.py,sha256=WCGzFn8KOFQ-aEJqEbD6-eGvrmI3Y-vJq16X0NZ3qII,1084
|
|
259
259
|
mage_ai/data_preparation/models/utils.py,sha256=ThmJo69b18DK1t5TcIpiLpCNoQ9UpKGn84Z-sYRLOoo,2375
|
|
260
260
|
mage_ai/data_preparation/models/variable.py,sha256=SuO6a46f28JKvYgs4BUwhuOQ1VdqgxdM-AigNIqrWe8,23367
|
|
261
|
-
mage_ai/data_preparation/models/block/__init__.py,sha256=
|
|
262
|
-
mage_ai/data_preparation/models/block/constants.py,sha256=
|
|
261
|
+
mage_ai/data_preparation/models/block/__init__.py,sha256=IAS5ryt9hqn5M5oeTLYRmKgiX1cAsptLp1f593U211Q,92112
|
|
262
|
+
mage_ai/data_preparation/models/block/constants.py,sha256=n4LDaGtuw1bMF4lR2jHKKRbGDavDrs3uMofmR7f4B7M,924
|
|
263
263
|
mage_ai/data_preparation/models/block/errors.py,sha256=2h1cT76EvdzJaceO1rfwQwIVLOtCBR40pCnQoPQJ5tM,182
|
|
264
264
|
mage_ai/data_preparation/models/block/utils.py,sha256=day1X19jt6dt1u07nt-Jt0HvksYoCKO0Xm7IjVuVNQA,20295
|
|
265
265
|
mage_ai/data_preparation/models/block/dbt/__init__.py,sha256=Dg5pmaOVYtmNm1WJwWiGfVZBIUeUvGatzTA72yK_Z80,10558
|
|
@@ -296,7 +296,7 @@ mage_ai/data_preparation/models/widget/charts.py,sha256=-jB0dNXddOmGd-Zn8NKjBU0S
|
|
|
296
296
|
mage_ai/data_preparation/models/widget/constants.py,sha256=f-EjBgITvsZXY12u3xHjyKk6K3fkhXuq1iJh591wBu4,1806
|
|
297
297
|
mage_ai/data_preparation/models/widget/utils.py,sha256=NvHlsQEOPRCcPW9tF04tXIBfd4dv3P37ofTnScvvikg,3117
|
|
298
298
|
mage_ai/data_preparation/shared/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
299
|
-
mage_ai/data_preparation/shared/constants.py,sha256=
|
|
299
|
+
mage_ai/data_preparation/shared/constants.py,sha256=etPOsZYBEedZ8UiO46rgSQhVJby3HUJd2L0WvkpPBU4,120
|
|
300
300
|
mage_ai/data_preparation/shared/retry.py,sha256=FXwptLB6vrJCflhkzPkQohvskfLqIvWxsAp7nndBfGY,225
|
|
301
301
|
mage_ai/data_preparation/shared/secrets.py,sha256=N4Bzz3-rttasL0pmmDdOllyHA2XViRaY8sweWMJoY5c,2857
|
|
302
302
|
mage_ai/data_preparation/shared/stream.py,sha256=jbJt3CGs9qDRTL6oYXu4KE1lNz2D-YosDt9nZnhDMKY,703
|
|
@@ -310,13 +310,14 @@ mage_ai/data_preparation/sync/__init__.py,sha256=jSp1S6IP-NOTTI4EXUVYF4rxZQuR0se
|
|
|
310
310
|
mage_ai/data_preparation/sync/base_sync.py,sha256=ISj1quDeDJttBfYw0-YsOc13e5fAMISrQsa1JINLpDU,125
|
|
311
311
|
mage_ai/data_preparation/sync/git_sync.py,sha256=MEGQTQ1QCsEEEhuPC4oiSINRes_v2wbwQLi2tMScJFQ,865
|
|
312
312
|
mage_ai/data_preparation/templates/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
313
|
-
mage_ai/data_preparation/templates/constants.py,sha256=
|
|
313
|
+
mage_ai/data_preparation/templates/constants.py,sha256=0eTCzQouckrnoLlnpadhtFHpclK1K4XVdGbPuFQEJgg,3733
|
|
314
314
|
mage_ai/data_preparation/templates/template.py,sha256=rf8spMhajTZabuXhzFLeCQI24lzbVW8afyApHwHNHuE,9253
|
|
315
315
|
mage_ai/data_preparation/templates/testable.jinja,sha256=i_SSr-xbeZvd-gpUZYdiy_MMa0suckmmn5gfPZOxx3A,333
|
|
316
316
|
mage_ai/data_preparation/templates/utils.py,sha256=G4BVK4OzFMh1OkyWxy6SIh6COHnqq8wcNIOy_kxzIvk,1951
|
|
317
317
|
mage_ai/data_preparation/templates/callbacks/base.jinja,sha256=uveU-ZteRe_YaNm4ikS-gPLDJEQM_p3qxTk06YiWU_Q,329
|
|
318
318
|
mage_ai/data_preparation/templates/callbacks/default.py,sha256=-uJkpWgnCeNNwq43jfruubRsLEyDIazYeg_3ognEOHo,114
|
|
319
319
|
mage_ai/data_preparation/templates/callbacks/orchestration/triggers/default.jinja,sha256=JJPIm79SYBq2_oRKrcL1g5bia51oiLZbEhqTErdDryY,1028
|
|
320
|
+
mage_ai/data_preparation/templates/conditionals/base.jinja,sha256=zt_Bb8OcHCsfaSc_kteeMrGNUxaE3vv5_iQkELjeXbc,243
|
|
320
321
|
mage_ai/data_preparation/templates/custom/python/default.jinja,sha256=AsYDRBLGi2JyRTXlpEq3hfNYhMz6T_DPgzhdpwNnFvM,551
|
|
321
322
|
mage_ai/data_preparation/templates/data_exporters/azure_blob_storage.py,sha256=FjUCYVISKBDrYURblovkrLBKCkKSq6xGu8wIDYx5D2Y,919
|
|
322
323
|
mage_ai/data_preparation/templates/data_exporters/bigquery.py,sha256=Bmmj87eq3zZJG6JRz4E45K-7izeybqYPirm4p1mpDQM,937
|
|
@@ -463,14 +464,14 @@ mage_ai/io/file.py,sha256=utjld3NWJ6AoTXJQP03SWxPQIEJpIQAUKtrftb1tZxk,2564
|
|
|
463
464
|
mage_ai/io/google_cloud_storage.py,sha256=ij1TeN395izC1eKLz0zQ_4HFT6PzAiQc5apd9i98DuM,6636
|
|
464
465
|
mage_ai/io/io_config.py,sha256=UotqsPwG3EZx31uJWj8IRQhmFnejU6Ok_HIwgX10gtQ,1352
|
|
465
466
|
mage_ai/io/mongodb.py,sha256=aywFwA_2NdyH2xwsqCKuR97ISbfcpWTCt-_EeMRrlsA,2969
|
|
466
|
-
mage_ai/io/mssql.py,sha256=
|
|
467
|
+
mage_ai/io/mssql.py,sha256=8jNjWKTbBmR6gw0UN1R6kyrBvk1OAhkKHrnJu1telys,5977
|
|
467
468
|
mage_ai/io/mysql.py,sha256=Udzsl77t0bbgy4Z_knaQv8Q8tkv58WT1olhV3I0cjHg,4927
|
|
468
469
|
mage_ai/io/postgres.py,sha256=izqnfqk1wVLquXDhB4cXfP-MPnmMoNGttFUNvO_Zc9c,13425
|
|
469
470
|
mage_ai/io/redshift.py,sha256=mdwwujJpvULabWs2lyTAzhjSJB1iyJonDcZBdwfzK1Q,14269
|
|
470
471
|
mage_ai/io/s3.py,sha256=Mh7PHgeIzqfjaDtumLN_fZB7JW7FYX66-FukDrkJ0s0,5857
|
|
471
472
|
mage_ai/io/snowflake.py,sha256=Y827sWV1ssqQ5xUHCCQ577JxS-sFBGt9DI9e2C_G6qc,13062
|
|
472
473
|
mage_ai/io/spark.py,sha256=1AzySGvg95v6E6OkR9rjqV0sPiiW75SpSmZpFxCgcLA,8258
|
|
473
|
-
mage_ai/io/sql.py,sha256=
|
|
474
|
+
mage_ai/io/sql.py,sha256=1eueGOd7BZUR2CAKVarRp8yFyxwAVVWwnWXnKPGsJn0,11973
|
|
474
475
|
mage_ai/io/trino.py,sha256=SljFhepY8N1yK4olIri1_dV1ySJm--S1xsM1Gk8ugD8,11774
|
|
475
476
|
mage_ai/io/utils.py,sha256=J2OuYRdUM0XErZ_D4X3Sfw_m9MSClIyNN4Kclb0d_gs,653
|
|
476
477
|
mage_ai/orchestration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -478,7 +479,7 @@ mage_ai/orchestration/airflow.py,sha256=ab8uWZ-B3Jg2WYpdD7S7fgvPlKOzSCZd-Wutui6Y
|
|
|
478
479
|
mage_ai/orchestration/constants.py,sha256=2aLqoWjiSEgt3I6vsxyEPsfFBAz3yKeCFPcf_YSsIsc,180
|
|
479
480
|
mage_ai/orchestration/execution_process_manager.py,sha256=hKkVMu9FEePh8aT2zOk57gl9VNBsQpvJ9WQZOQ78OhY,3827
|
|
480
481
|
mage_ai/orchestration/job_manager.py,sha256=CYdt0akJhlO5HccpEHoqP0P5b-zsr06kthersgWD55Q,1515
|
|
481
|
-
mage_ai/orchestration/pipeline_scheduler.py,sha256=
|
|
482
|
+
mage_ai/orchestration/pipeline_scheduler.py,sha256=EDl-ppt2-jfX469CrVCqaHvC3WN_1AYvDpzMBH5ilHU,46799
|
|
482
483
|
mage_ai/orchestration/run_status_checker.py,sha256=nB1gamqEt7_5niU0mKYFvWy-b-0MzK_Mh1W_6UprpXo,2468
|
|
483
484
|
mage_ai/orchestration/backfills/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
484
485
|
mage_ai/orchestration/backfills/service.py,sha256=Fh1YYVzfKkGAhdc5P1NNAGtcpQJc2BXrGgmXH1r4Oks,3930
|
|
@@ -513,12 +514,13 @@ mage_ai/orchestration/db/migrations/versions/8971d4cd5b39_add_event_variables_an
|
|
|
513
514
|
mage_ai/orchestration/db/migrations/versions/97ff9f55a3c0_create_users_oauth2_applications_and_.py,sha256=IttG6aypmOeJ4jUs7jwgn4aTkw0WTO_3-afmQaozDxE,3375
|
|
514
515
|
mage_ai/orchestration/db/migrations/versions/b01be687e537_add_started_at_to_block_run.py,sha256=hY0TiaxFc4zphzOuV3bYmnTOvBlu_yd1zpKtKliLUDM,710
|
|
515
516
|
mage_ai/orchestration/db/migrations/versions/c07a23ff782b_add_initial_tables.py,sha256=HyBr70Y07NkjZGkPyFzqlKUuw2BTmSzIj28oRNg00IQ,3024
|
|
517
|
+
mage_ai/orchestration/db/migrations/versions/dfe49d040487_add_condition_failed_status_to_block_.py,sha256=y0fCbJJDNM9iXqEm0Xk67WOTusf3NCoq-TkofYcExDI,1278
|
|
516
518
|
mage_ai/orchestration/db/migrations/versions/e7beb59b44f9_add_repo_path_to_pipeline_schedule.py,sha256=gvZCXDHJ9xg_maEDJHaKTvq59Zq7mHRmeI32tHTzedM,1127
|
|
517
519
|
mage_ai/orchestration/db/migrations/versions/ec5df57a1c60_add_metrics_to_block_runs.py,sha256=6yGww3f8GptOPgk8i2UfdpJJa3VPrCJMUd8oC4l1jP8,685
|
|
518
520
|
mage_ai/orchestration/db/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
519
521
|
mage_ai/orchestration/db/models/base.py,sha256=8xlecF8_zwTVoiMZKDl3mleopDIy1ULrVimstNP5cHE,3374
|
|
520
522
|
mage_ai/orchestration/db/models/oauth.py,sha256=n2AoKQZ9N40a2znafLCNPdX6Pe3dPx0Ri4Pj_AS0C-I,11311
|
|
521
|
-
mage_ai/orchestration/db/models/schedules.py,sha256=
|
|
523
|
+
mage_ai/orchestration/db/models/schedules.py,sha256=YdkqcaVqRfzXvmXY7KrlkVIxg1ibYuZqr5uJUoMmT_I,23827
|
|
522
524
|
mage_ai/orchestration/db/models/secrets.py,sha256=27vTsVU9tmKM7lF63DAcebqg0XroOXbkulNF6XG93w4,338
|
|
523
525
|
mage_ai/orchestration/metrics/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
524
526
|
mage_ai/orchestration/metrics/pipeline_run.py,sha256=M37sxpy2gEcPZWFlb0CKOsHC8Q3A0QclFsB2cJIi_jU,5563
|
|
@@ -549,22 +551,23 @@ mage_ai/sample_datasets/user_emails.csv,sha256=yokgn3bmkkrSZBFC-crJxPXFzKdgLaQbp
|
|
|
549
551
|
mage_ai/server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
550
552
|
mage_ai/server/active_kernel.py,sha256=YiYl_IwamkMYg9J2oFQeV76vpwQVZJA6u8ryOTZedMI,2235
|
|
551
553
|
mage_ai/server/app.py,sha256=LjdwgFr3OduHaJOGGPhiGNUGZyYvfYz0OUUe56yfCM8,13229
|
|
552
|
-
mage_ai/server/constants.py,sha256=
|
|
554
|
+
mage_ai/server/constants.py,sha256=adDTMak8pTQTDB4GF6BalC_3npND87T7rdIx_a-SZH0,421
|
|
553
555
|
mage_ai/server/docs_server.py,sha256=MxwLjAB0HpkOk-Jb1NSsLRhynIJM1vCiUIJXUqJ-38o,618
|
|
554
|
-
mage_ai/server/execution_manager.py,sha256=
|
|
556
|
+
mage_ai/server/execution_manager.py,sha256=jB8K0_aCO15fZdgE2Kd1zdROiv2VBOLGXWiigvb6rKQ,3457
|
|
555
557
|
mage_ai/server/kernel_output_parser.py,sha256=eOU003y8mkK0w6LmvBNbgrRRZwDTWao2io19UYPO6Co,2436
|
|
556
558
|
mage_ai/server/kernels.py,sha256=Bk_NHLjI05SHVJG91VrUVJqul9VdBFNezWLx6gyyr7w,787
|
|
557
559
|
mage_ai/server/logger.py,sha256=ZQivW37-0K6ty9zOCXQeYfHnSAho-LLvZmSQEI3fOdU,547
|
|
558
560
|
mage_ai/server/scheduler_manager.py,sha256=TPN01XjUZlhSblv7H0zU2HEwJ03eMxWokJz-QTPMxJY,2652
|
|
559
|
-
mage_ai/server/server.py,sha256=
|
|
561
|
+
mage_ai/server/server.py,sha256=eRcNhWKSFyTtCNSCgEJJghWaZejdfr3GFdHFGqEO2GA,12876
|
|
560
562
|
mage_ai/server/subscriber.py,sha256=DiHuAe1xLIhHsiCHD7J4OAVF0jrTcqsE2iO94vV1EjI,712
|
|
561
563
|
mage_ai/server/terminal_server.py,sha256=R9KVHBvKdJjz8jjzbQedgwG1nKjbxOgEJplxB5PBzlo,5290
|
|
562
|
-
mage_ai/server/websocket_server.py,sha256=
|
|
564
|
+
mage_ai/server/websocket_server.py,sha256=3smMixN3EL_bp61M7rO-Mz3AC0cizR4IY_p2R1MVF38,20202
|
|
563
565
|
mage_ai/server/api/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
564
566
|
mage_ai/server/api/base.py,sha256=ZQ7-VDzmCumU1t2ml4TSwb_XFBLPOTqg6Y-UURfIe_o,3660
|
|
565
567
|
mage_ai/server/api/blocks.py,sha256=1aQognsNOG4Bfh-CEXqMgXatoTiw4tjzqm5_tHFtf2I,508
|
|
566
568
|
mage_ai/server/api/clusters.py,sha256=X8M2qILZYyV8vMWZD9b0so0AwZNJhwyWSBfAI1dEeKU,7137
|
|
567
569
|
mage_ai/server/api/constants.py,sha256=SIOZfts7iPsQf23K6adtvO7i_-kchgt1BWc7-9v6uQs,207
|
|
570
|
+
mage_ai/server/api/downloads.py,sha256=-vxjR4d6rhkZPt52Cs245NRIVwvTsDBdp4NLeapWBUM,2875
|
|
568
571
|
mage_ai/server/api/errors.py,sha256=9p9jSjVEmeeA6lKFf3Y8Yua-Y2GdwHee2xqTRE1mZ0I,119
|
|
569
572
|
mage_ai/server/api/events.py,sha256=9yifYQJkmha4Bmw2MDem-84vFNB3K4Dob-wjBiQ1zEc,2106
|
|
570
573
|
mage_ai/server/api/integration_sources.py,sha256=VbkY5fI7vt8hzo27XiMZNpjqUcHuH0rPlIoXATOI0iw,1785
|
|
@@ -576,25 +579,25 @@ mage_ai/server/client/mage.py,sha256=P_uT4tettbdT8eLnjrb6TnBvJ3522RHEUg2sO7KjMzg
|
|
|
576
579
|
mage_ai/server/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
577
580
|
mage_ai/server/data/base.py,sha256=mEenR7pyQ_ETa795RcOx134M6DkSpszcv41FzEu_khM,3862
|
|
578
581
|
mage_ai/server/data/models.py,sha256=K71oIFBs1A3VICS6QIQeF94KkHDu_-XGZRkPnkIWCso,9316
|
|
579
|
-
mage_ai/server/frontend_dist/404.html,sha256=
|
|
580
|
-
mage_ai/server/frontend_dist/404.html.html,sha256=
|
|
582
|
+
mage_ai/server/frontend_dist/404.html,sha256=k3Uwm-dx7ROAYDEZ8aIX9zUUK8Trms3K75jHN3h-864,9033
|
|
583
|
+
mage_ai/server/frontend_dist/404.html.html,sha256=k3Uwm-dx7ROAYDEZ8aIX9zUUK8Trms3K75jHN3h-864,9033
|
|
581
584
|
mage_ai/server/frontend_dist/favicon.ico,sha256=ZSTSGm_csS09e9wbk5aYBDuzaccwVAQWpslG3mN9A30,15406
|
|
582
|
-
mage_ai/server/frontend_dist/files.html,sha256=
|
|
583
|
-
mage_ai/server/frontend_dist/index.html,sha256=
|
|
584
|
-
mage_ai/server/frontend_dist/manage.html,sha256=
|
|
585
|
-
mage_ai/server/frontend_dist/pipeline-runs.html,sha256=
|
|
586
|
-
mage_ai/server/frontend_dist/pipelines.html,sha256
|
|
587
|
-
mage_ai/server/frontend_dist/settings.html,sha256=
|
|
588
|
-
mage_ai/server/frontend_dist/sign-in.html,sha256=
|
|
589
|
-
mage_ai/server/frontend_dist/terminal.html,sha256=
|
|
590
|
-
mage_ai/server/frontend_dist/test.html,sha256=
|
|
591
|
-
mage_ai/server/frontend_dist/triggers.html,sha256=
|
|
585
|
+
mage_ai/server/frontend_dist/files.html,sha256=7cfHU_g_PO6dHyIcHlYqalvTxleXCxl81PxjEBhuWS4,10367
|
|
586
|
+
mage_ai/server/frontend_dist/index.html,sha256=P1OgxVhq11fuphvMJCZKIhNyCY1_Q6z0nrUxRCh7w-c,7795
|
|
587
|
+
mage_ai/server/frontend_dist/manage.html,sha256=BvYd4FHSBVibBO9J2UtLaDa0gpBtG1RNY7vbe1usMyM,10140
|
|
588
|
+
mage_ai/server/frontend_dist/pipeline-runs.html,sha256=8FmrUjgWL8PoTxcKouc1iu9h_KblOhAN_qU2Kdy4Vq0,10079
|
|
589
|
+
mage_ai/server/frontend_dist/pipelines.html,sha256=-ZiGMdq09ZDWds2Zjc4T26YmosQ47kwa9fZszpSYN1s,9989
|
|
590
|
+
mage_ai/server/frontend_dist/settings.html,sha256=0BsnYuhnOtMMDBN_ifpuw9wWUkLGf_LI2xyomGArUes,7867
|
|
591
|
+
mage_ai/server/frontend_dist/sign-in.html,sha256=FSeqw8TaWB5yIxbnoRqc3rk6fRrLcG-l5IN_oAp8934,18656
|
|
592
|
+
mage_ai/server/frontend_dist/terminal.html,sha256=Nnxe_5yWX3Qdb6Gl-60mYqWBSd0b8HxbXAKlXhL59sk,9830
|
|
593
|
+
mage_ai/server/frontend_dist/test.html,sha256=CBLY7ufKtFST9sehWifBtTIJUDvuvA2TjBnBLAnpzLg,8218
|
|
594
|
+
mage_ai/server/frontend_dist/triggers.html,sha256=aLxkBT-lEi5AENWRVkhszqYpOWFtblO1q2feauJgOB0,9986
|
|
592
595
|
mage_ai/server/frontend_dist/vercel.svg,sha256=wPvODNXNDTx7iJgazQaNE7lhRgu5TTxLpKDsXCgFH9E,1101
|
|
593
596
|
mage_ai/server/frontend_dist/_next/static/chunks/1005-5c88ae13680d7023.js,sha256=_KjZuAx5mGdxqR7eRSN1BGB9OHoTxhEe6wvs7ttcX50,29120
|
|
594
597
|
mage_ai/server/frontend_dist/_next/static/chunks/1150.1378afaa474df64a.js,sha256=CAbPzsc6FvScAdGZ26Omo_u0xmNCOcJ9vCPw7FNvxMU,3531
|
|
595
598
|
mage_ai/server/frontend_dist/_next/static/chunks/1240.0819f45820d22263.js,sha256=J0T6Hf6bUPCYwHY9ldwKtZyEe2sZjt7Z0JySRGK5Tno,6458
|
|
596
599
|
mage_ai/server/frontend_dist/_next/static/chunks/1286-a62050b3f897c6be.js,sha256=Ac0MHJsdkIV-vYFgdeYaJi95HbpQGGZ5VQIfdoJU6fw,32475
|
|
597
|
-
mage_ai/server/frontend_dist/_next/static/chunks/1424-
|
|
600
|
+
mage_ai/server/frontend_dist/_next/static/chunks/1424-321c8c08a2b05c19.js,sha256=yc74BE3KozXZ0fEf_y_93GKP6z-pT-qYztE6mB_kPNw,104543
|
|
598
601
|
mage_ai/server/frontend_dist/_next/static/chunks/1450.d383f64c169d4278.js,sha256=Wta_dDXv2gjlzEgdcOzHlEzECgj6-0a4PCMqT9gaEck,5290
|
|
599
602
|
mage_ai/server/frontend_dist/_next/static/chunks/1774-aa51ef1da7217ff9.js,sha256=wuaRR85vM6iruElj1WdTsltMpISo9jg7SdQbs1Rw03U,8652
|
|
600
603
|
mage_ai/server/frontend_dist/_next/static/chunks/2125-e6ce3c9a08d9d3b1.js,sha256=kvAiQMMihFKA1sMPfjX2QxCHLeaHZ2cho4sz5zCk6g8,70920
|
|
@@ -604,12 +607,13 @@ mage_ai/server/frontend_dist/_next/static/chunks/2545.8371b39c898ae92b.js,sha256
|
|
|
604
607
|
mage_ai/server/frontend_dist/_next/static/chunks/261.0a24b4ece1d29aa1.js,sha256=r4nrqe_UqAeacSU7R5eNrt1pLpaq5emR24u4YCScmdc,10519
|
|
605
608
|
mage_ai/server/frontend_dist/_next/static/chunks/266.e301071d22592682.js,sha256=iP7r9afOmCfCOErl59zVuDXUrXy3rU1T-l9hMcOeW0o,2226
|
|
606
609
|
mage_ai/server/frontend_dist/_next/static/chunks/2714-1e79e9f2e998b544.js,sha256=05020XrbnuhL8gtBtnmoWlxA9r837LD2I8SBiDSRW30,9689
|
|
610
|
+
mage_ai/server/frontend_dist/_next/static/chunks/2786-2b3ad2cf216fae42.js,sha256=laQ_QN8yoN69QsDlsZxuJdU_LF_ar9BTvNnViRGH3oA,10662
|
|
607
611
|
mage_ai/server/frontend_dist/_next/static/chunks/29107295-989a0767a635d9d5.js,sha256=uFc2UgaKJ9q_NXBLc5d8rBJfHVQWwr4Vh0F6AcCsVMI,71691
|
|
608
612
|
mage_ai/server/frontend_dist/_next/static/chunks/3077-5f598aed0c29fc0a.js,sha256=k11hB57-mzWJzArAKo9h2sPYrLsxuWQW8vGduOQFJ5Y,11798
|
|
609
613
|
mage_ai/server/frontend_dist/_next/static/chunks/3453.992f4b1667e9882c.js,sha256=PYm5SZCBWpX2kOafRCgG3R9I0Wo8KIW6R0jJ_5-XFCI,3524
|
|
610
614
|
mage_ai/server/frontend_dist/_next/static/chunks/3467.38cd0654ba6f788f.js,sha256=GSh5dCIP7HWFJuchJzpPUJ6TyI3coksbiZwKftDZms8,1618
|
|
611
|
-
mage_ai/server/frontend_dist/_next/static/chunks/3714-
|
|
612
|
-
mage_ai/server/frontend_dist/_next/static/chunks/3752-
|
|
615
|
+
mage_ai/server/frontend_dist/_next/static/chunks/3714-3bd2a8c979d6d820.js,sha256=I1FKOYtE9YFzVwnHI6B4kwOu-Ngk5QriXtijpqw0Zdo,11896
|
|
616
|
+
mage_ai/server/frontend_dist/_next/static/chunks/3752-8f15fe0ca9c23cf4.js,sha256=lCY4mfUjS4YVoa4jkVcw6cRRHjGO8fIBxgE1em1O2ho,27920
|
|
613
617
|
mage_ai/server/frontend_dist/_next/static/chunks/3835.df296b4e4078e985.js,sha256=kD2QFPxjs1XDTi-3diXwSlgCno80VqrgU6OL80IHC6M,30652
|
|
614
618
|
mage_ai/server/frontend_dist/_next/static/chunks/3873.4b3eace753998412.js,sha256=ESeQK_hjQPmYl8BuExGzFU2q9leFZ3TRrMNl8EU7Byc,243728
|
|
615
619
|
mage_ai/server/frontend_dist/_next/static/chunks/3898.880191695bb05845.js,sha256=3scwZ0YVM7CplF4jtmWmwhXngTGOQeJj45hSg4S5_iU,4171
|
|
@@ -619,7 +623,7 @@ mage_ai/server/frontend_dist/_next/static/chunks/4388.04098706f32e69e7.js,sha256
|
|
|
619
623
|
mage_ai/server/frontend_dist/_next/static/chunks/440.3ab77942f659ea0c.js,sha256=mSA4AlBfChpnBO4G0EEAg32vnyd488I3pC545tlnRX4,1122
|
|
620
624
|
mage_ai/server/frontend_dist/_next/static/chunks/4450.79f14f763d55c63e.js,sha256=BGSKp5uPmDbUN0OYEFv4gsjl-azzkJutmQPASRDHOxw,1455
|
|
621
625
|
mage_ai/server/frontend_dist/_next/static/chunks/4454.13a2404adecaa39e.js,sha256=29wfognshKF3KlLejiKaUcbar7ZG2RirgAdwMWDVokg,2243
|
|
622
|
-
mage_ai/server/frontend_dist/_next/static/chunks/4476-
|
|
626
|
+
mage_ai/server/frontend_dist/_next/static/chunks/4476-c1a62e69cd8e14d5.js,sha256=Xk6q_WVnr63tAxRufmXGHTL_q5YEq2NqZDFmWQQXgL0,50292
|
|
623
627
|
mage_ai/server/frontend_dist/_next/static/chunks/4495-4f0340aa82e0c623.js,sha256=BOcfpF4OA38Chwk53n4e1eJEdO9o0Yh0WzXGL93qFWM,57586
|
|
624
628
|
mage_ai/server/frontend_dist/_next/static/chunks/4776.753ad29fa0a29a4a.js,sha256=29FQVF2uUs7tgv6itLoCQIjYCJV5EqAgricKEBmza0A,2720
|
|
625
629
|
mage_ai/server/frontend_dist/_next/static/chunks/4804-01a10103ebe26ca8.js,sha256=itBhkyqGWlMJRtOa8-GTuqDx2Ihsz0zSenW5l4lzLFQ,95131
|
|
@@ -682,13 +686,13 @@ mage_ai/server/frontend_dist/_next/static/chunks/framework-7c365855dab1bf41.js,s
|
|
|
682
686
|
mage_ai/server/frontend_dist/_next/static/chunks/main-bb0dd5375146d7fd.js,sha256=D8WTELFsu6xl-FY23xblYecv7-mxB1cvXhS7LkWANy4,102188
|
|
683
687
|
mage_ai/server/frontend_dist/_next/static/chunks/polyfills-5cd94c89d3acac5f.js,sha256=fLWoemwNBaqyJFy_aiatrYDNMiVA1fY2Dd5iG_kidD8,91434
|
|
684
688
|
mage_ai/server/frontend_dist/_next/static/chunks/webpack-bc5e4eb2c1ff587c.js,sha256=5XjqgzK5119xFRvyYU2XJosUqtKjpvPPNCXOhwZ24fs,5196
|
|
685
|
-
mage_ai/server/frontend_dist/_next/static/chunks/pages/_app-
|
|
689
|
+
mage_ai/server/frontend_dist/_next/static/chunks/pages/_app-8aaee96edc252aa3.js,sha256=yBOOe-vN3ygQ2oQdwul91ZLhdyxfykX64vBEi2Y9320,431514
|
|
686
690
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/_error-235304e5badb19eb.js,sha256=UnruNRSRVtmbfIswQ7oYMowKiJmeSublFaxDjRHcFGo,3190
|
|
687
691
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/files-62c95766fcf47143.js,sha256=xY1rM3berG2Q7YXojWvn2TrtH2aPOUaxRFtqh0_05Pk,17323
|
|
688
692
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/index-b6cd94a079629572.js,sha256=ONhDNQR0vsRwqQwkoaA7-_7gZqWDdTKhH4_csZCvYYE,725
|
|
689
|
-
mage_ai/server/frontend_dist/_next/static/chunks/pages/manage-
|
|
690
|
-
mage_ai/server/frontend_dist/_next/static/chunks/pages/pipeline-runs-
|
|
691
|
-
mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines-
|
|
693
|
+
mage_ai/server/frontend_dist/_next/static/chunks/pages/manage-88c03376d807012e.js,sha256=Y7rhZVDWxkZp2O1wLf6S4W9fZgewmRvrTOJGibfwc5Q,17902
|
|
694
|
+
mage_ai/server/frontend_dist/_next/static/chunks/pages/pipeline-runs-915825c19bf42fa1.js,sha256=y-ySBFTXLAfRO0nsX1bb8ZuX7OtUOPcEhUffI_UHtBM,8465
|
|
695
|
+
mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines-549f4708f2912a7a.js,sha256=6z3DqtLry1nww2Q2Cvl-ZNFIyA-zM8eQJovQp9s0FQw,47451
|
|
692
696
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/settings-d594a66a568306da.js,sha256=aXMAMxjQm_15BZfSU0uQSrYnRy403cFcRZcSYEqEXBg,4347
|
|
693
697
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/sign-in-56fb21d1b7d55ca9.js,sha256=xT7Ijg_nGLd_n4rxH5Hrg1QFeT0ZQVebZeaeLHhRUzk,12539
|
|
694
698
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/terminal-0d2260ad08dfe44a.js,sha256=rHGTe2t3ey7P9z-fR2DoWWc7vS6mVZNXyL1eiou72Ig,5446
|
|
@@ -697,27 +701,27 @@ mage_ai/server/frontend_dist/_next/static/chunks/pages/triggers-d74d0f163157ba65
|
|
|
697
701
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/manage/users-430a971c087e6de4.js,sha256=pB589Cj7WSdlwBoAxhfUEqC3j3T0OXkNrcHgpuZGcCE,14171
|
|
698
702
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/manage/users/[user]-8b2482416f3958b0.js,sha256=iQf4qsgr931KAVn0kGCq2Wsnw7f5DPVZkZmzips1-Zg,22794
|
|
699
703
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]-ca9457e1a6bced4b.js,sha256=arFIXJ6FXE4wpSHaC9BqqNdLafoSrmjlrjmQBB1UR2U,4526
|
|
700
|
-
mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/backfills-
|
|
701
|
-
mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/edit-
|
|
702
|
-
mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/logs-
|
|
704
|
+
mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/backfills-bf2d83dabe1bd25a.js,sha256=LlW4cy_UuT8PeLRE7RBGmuMyeudF2xuPFWjzp4DNJ7g,9468
|
|
705
|
+
mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/edit-f0940870ff5a17f6.js,sha256=KXrWx7DM4Gk30qC4BpZxsUhYkk3QtWfVFZAU3ITWCHQ,339302
|
|
706
|
+
mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/logs-8ee12ce8362ed576.js,sha256=HgWDoqcI_yVj8d2gCYkfbT2sbyTwSHLcF8YuAltLdrA,44013
|
|
703
707
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/monitors-092f364100995ba6.js,sha256=zSkWGwE-hcEolGr4tWarwTNbt5TD6PAqTlnWpl0AOnQ,334
|
|
704
|
-
mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/runs-
|
|
708
|
+
mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/runs-69d63c14abf8cf68.js,sha256=KgAQ3IhdYD1KEX7AfhuQ_qJ5ofW5elT4rCfgVXO1Mj0,12817
|
|
705
709
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/settings-55748e7fcf738d91.js,sha256=SQqUdhaXhnhfYsVxifUC2jArYGX5ULn5tIwDaHl2XkM,8549
|
|
706
|
-
mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/syncs-
|
|
710
|
+
mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/syncs-6092226e191dd720.js,sha256=hXznJlb7kUi8FxsVWSecacnzzJ_YutcLkuKsRTxUfko,28481
|
|
707
711
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/triggers-7990c5c7af475c5f.js,sha256=jFAxwBW8FZe-BXneXvkDUsuvFPGQ9j5mKBxl0Z6Mh54,25787
|
|
708
712
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/backfills/[...slug]-6342d4f39d7f2b5c.js,sha256=vobsoHxHbLfSTzPisX49a9nJjNvBljZQ0cXdgXw_mvg,30328
|
|
709
|
-
mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/monitors/block-runs-
|
|
710
|
-
mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/monitors/block-runtime-
|
|
711
|
-
mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/runs/[run]-
|
|
713
|
+
mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/monitors/block-runs-a64f7a0aba0f481d.js,sha256=e9xLrbT5SiznRTXVqgnFb7b5VzKuFIoRSH4jdc4D7oc,12417
|
|
714
|
+
mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/monitors/block-runtime-3a3a115ab1a86e2f.js,sha256=Vv2Hv6zRvY7hgRmGmsnzF7SQ_Cnr9CdeVhvNp5gg_k8,20306
|
|
715
|
+
mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/runs/[run]-160881dab5ef66d8.js,sha256=BIPmgbglZ8YkXB176bz9saioZrSnYrDkrrIGasoJYb0,10057
|
|
712
716
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/triggers/[...slug]-4acba123203d0a5d.js,sha256=TCrkfg0ylOkszsYjnl9NW47f2stjQ-Hr7yswu6NMjDc,55877
|
|
713
717
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/account/profile-bf83d167f46905c6.js,sha256=KFxZ9uOO0nphuc6IPuY7QXPyqkvh8-MgDXWN7DJvv94,14484
|
|
714
718
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/preferences-3b26db0dd0962783.js,sha256=2dAyRqlxb1yahAC4T3S7MJrDZUqV762MPj2-7yy_rK0,10486
|
|
715
719
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/sync-data-b602fa9b6ffabd12.js,sha256=yjRUfu3O94O4RLFX_Y1Hl2rGSJaHoI4bX7Xi10lWlRs,11130
|
|
716
720
|
mage_ai/server/frontend_dist/_next/static/chunks/pages/settings/workspace/users-70cbb7d5cb54a84a.js,sha256=4W1lutARgVEGuaHNzb3WhuRM9Pk0Yl7GLc5Jx7CMw-k,14101
|
|
717
721
|
mage_ai/server/frontend_dist/_next/static/css/d1e8e64d0b07af2f.css,sha256=mdjfcNHDQ5vXWn5xHrFvRm2QTQUGZlPrrUb0ELexj2g,15565
|
|
718
|
-
mage_ai/server/frontend_dist/_next/static/
|
|
719
|
-
mage_ai/server/frontend_dist/_next/static/
|
|
720
|
-
mage_ai/server/frontend_dist/_next/static/
|
|
722
|
+
mage_ai/server/frontend_dist/_next/static/zlCBBK90aKYZtPlYLj9_T/_buildManifest.js,sha256=pwen3if4ZDgar3FlT_4ZggpaFg4hUVFWaN-6sRFnvxk,5615
|
|
723
|
+
mage_ai/server/frontend_dist/_next/static/zlCBBK90aKYZtPlYLj9_T/_middlewareManifest.js,sha256=3lNBMTpNxdmCylCuSkkehLxegLD0Odh_Bfw5c8G35Zo,92
|
|
724
|
+
mage_ai/server/frontend_dist/_next/static/zlCBBK90aKYZtPlYLj9_T/_ssgManifest.js,sha256=b1tKoA0vjWrtmTW0cYBr96zvRk0MHTkCYOX-J_gAxn4,77
|
|
721
725
|
mage_ai/server/frontend_dist/fonts/Fira_Code/ttf/FiraCode-Bold.ttf,sha256=QfZVToReL1twra05UBIjNLhmqsQ2eTt3Qq3mAAZ3Ab4,319368
|
|
722
726
|
mage_ai/server/frontend_dist/fonts/Fira_Code/ttf/FiraCode-Light.ttf,sha256=wUbJp6YZFPn1pH0kwZnFDI8UP1cQuT79OjlTr1CBZEM,288380
|
|
723
727
|
mage_ai/server/frontend_dist/fonts/Fira_Code/ttf/FiraCode-Medium.ttf,sha256=lwkfkGI2YftPeXnBDRiPMPSAbYzjJrC8jRrMedzCDY8,283684
|
|
@@ -764,26 +768,26 @@ mage_ai/server/frontend_dist/images/run B.jpg,sha256=XCcTHE0uxCnOUlaU1yBhxOc6yVx
|
|
|
764
768
|
mage_ai/server/frontend_dist/images/extensions/dbt/logo.png,sha256=-ssfqyt73pSkqsA_UBfYf2U2h2P62yr6fCe5SIwBurc,6001
|
|
765
769
|
mage_ai/server/frontend_dist/images/extensions/great_expectations/logo.png,sha256=RK76yAE_SHMHiFxf2aq-Ox00Gw6Khap9CCkdT7ucfQw,22785
|
|
766
770
|
mage_ai/server/frontend_dist/images/sessions/abstract.png,sha256=1oNvrU66riRKJOeF2siaMEINPZatcu7kdDPliEVACyQ,256616
|
|
767
|
-
mage_ai/server/frontend_dist/manage/users.html,sha256=
|
|
768
|
-
mage_ai/server/frontend_dist/manage/users/[user].html,sha256=
|
|
769
|
-
mage_ai/server/frontend_dist/pipelines/[pipeline].html,sha256=
|
|
770
|
-
mage_ai/server/frontend_dist/pipelines/[pipeline]/backfills.html,sha256=
|
|
771
|
-
mage_ai/server/frontend_dist/pipelines/[pipeline]/edit.html,sha256=
|
|
772
|
-
mage_ai/server/frontend_dist/pipelines/[pipeline]/logs.html,sha256=
|
|
773
|
-
mage_ai/server/frontend_dist/pipelines/[pipeline]/monitors.html,sha256=
|
|
774
|
-
mage_ai/server/frontend_dist/pipelines/[pipeline]/runs.html,sha256=
|
|
775
|
-
mage_ai/server/frontend_dist/pipelines/[pipeline]/settings.html,sha256=
|
|
776
|
-
mage_ai/server/frontend_dist/pipelines/[pipeline]/syncs.html,sha256=
|
|
777
|
-
mage_ai/server/frontend_dist/pipelines/[pipeline]/triggers.html,sha256=
|
|
778
|
-
mage_ai/server/frontend_dist/pipelines/[pipeline]/backfills/[...slug].html,sha256=
|
|
779
|
-
mage_ai/server/frontend_dist/pipelines/[pipeline]/monitors/block-runs.html,sha256=
|
|
780
|
-
mage_ai/server/frontend_dist/pipelines/[pipeline]/monitors/block-runtime.html,sha256=
|
|
781
|
-
mage_ai/server/frontend_dist/pipelines/[pipeline]/runs/[run].html,sha256=
|
|
782
|
-
mage_ai/server/frontend_dist/pipelines/[pipeline]/triggers/[...slug].html,sha256
|
|
783
|
-
mage_ai/server/frontend_dist/settings/account/profile.html,sha256=
|
|
784
|
-
mage_ai/server/frontend_dist/settings/workspace/preferences.html,sha256=
|
|
785
|
-
mage_ai/server/frontend_dist/settings/workspace/sync-data.html,sha256=
|
|
786
|
-
mage_ai/server/frontend_dist/settings/workspace/users.html,sha256=
|
|
771
|
+
mage_ai/server/frontend_dist/manage/users.html,sha256=zRtUJJ4EnIC70IrI1I75gcQPr2hfzn6P_O9vk1jy5B8,9996
|
|
772
|
+
mage_ai/server/frontend_dist/manage/users/[user].html,sha256=QAZDysnUO8q7EO04-E2jeACFQTgrq659nNif5M0MdKc,10024
|
|
773
|
+
mage_ai/server/frontend_dist/pipelines/[pipeline].html,sha256=6yZvshfMIIZrS98-RZdpKryjpihDY4_L2Vg3_rdMouA,7909
|
|
774
|
+
mage_ai/server/frontend_dist/pipelines/[pipeline]/backfills.html,sha256=Lzza9xsnFP9j1WfC5e7TtQZfbs48xVVIa8U2B2ZEpeA,10114
|
|
775
|
+
mage_ai/server/frontend_dist/pipelines/[pipeline]/edit.html,sha256=RhP_EOxdmPZUZJSq9Z9HBP5zw2vLsIQS_WOqWwbLDkI,9741
|
|
776
|
+
mage_ai/server/frontend_dist/pipelines/[pipeline]/logs.html,sha256=0UjCDjeV3rDmjvKloictbN6y6TErYaCUA3_BSaM_iKY,10416
|
|
777
|
+
mage_ai/server/frontend_dist/pipelines/[pipeline]/monitors.html,sha256=fXu_53ePZitD0HOVIMGgWEUJ_tzhs7Vex7tInqY9_lw,10268
|
|
778
|
+
mage_ai/server/frontend_dist/pipelines/[pipeline]/runs.html,sha256=8zpG975Ip5auq5m0Nrn5onPdp0SUXjvI1B54NtHSlKM,10650
|
|
779
|
+
mage_ai/server/frontend_dist/pipelines/[pipeline]/settings.html,sha256=8O1fPMHnJlic08Li4YhXQ2H-UobZpMvrrB_49H9Ad1w,10034
|
|
780
|
+
mage_ai/server/frontend_dist/pipelines/[pipeline]/syncs.html,sha256=n8N17An404OY55eAqJOr-vGu6ZwCgPvQxbm6caRmBjE,10106
|
|
781
|
+
mage_ai/server/frontend_dist/pipelines/[pipeline]/triggers.html,sha256=q7ZnYSD9rdvVA4bSajuBDc85uNUFxqiQ1h8d2uYQdEU,10658
|
|
782
|
+
mage_ai/server/frontend_dist/pipelines/[pipeline]/backfills/[...slug].html,sha256=OsXHeoc1W8Cv0ICPXL5_QXZtKcJdJEtx6FlYDcWadVk,10904
|
|
783
|
+
mage_ai/server/frontend_dist/pipelines/[pipeline]/monitors/block-runs.html,sha256=GqWWm1R8fn4yyQCzJ9dI89fxQ0W_ZYA9FvaXRvcesQ8,10290
|
|
784
|
+
mage_ai/server/frontend_dist/pipelines/[pipeline]/monitors/block-runtime.html,sha256=3xZwImwEkfc1JDsl79TwPRDW9n1CjIP1txrKRoWiGdk,10456
|
|
785
|
+
mage_ai/server/frontend_dist/pipelines/[pipeline]/runs/[run].html,sha256=lE5w_OC-aonU5t32Li7QEeIgtU4TKJXphty1UeusZH8,10995
|
|
786
|
+
mage_ai/server/frontend_dist/pipelines/[pipeline]/triggers/[...slug].html,sha256=5pt6XhzAwcoZPWUjnoK0-r2CnIT45omcOD9-KPpmTm0,10902
|
|
787
|
+
mage_ai/server/frontend_dist/settings/account/profile.html,sha256=QZ5Kr6rkgO9X5luUGh3fMpEWjJ6fVhV7iyXnr5W2aoc,9940
|
|
788
|
+
mage_ai/server/frontend_dist/settings/workspace/preferences.html,sha256=aW7k4ERwIi4LmTvCTanfM1cmowt4jTGg7UTisZ-HmaU,9952
|
|
789
|
+
mage_ai/server/frontend_dist/settings/workspace/sync-data.html,sha256=ssSS-AR4p076D9TAxBmuHJIUDUdV_8G4M8vRhJ0jEv0,9948
|
|
790
|
+
mage_ai/server/frontend_dist/settings/workspace/users.html,sha256=HhkcDmDTRDG77aX-jfFbMx_HkCkb7b4CWIoD17NlJXE,10096
|
|
787
791
|
mage_ai/server/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
788
792
|
mage_ai/server/utils/frontend_renderer.py,sha256=W3zAlyaF34pX8S9Xvofhu35gETqLBRjj_rET_f3lQ14,3331
|
|
789
793
|
mage_ai/server/utils/output_display.py,sha256=ENEw8oAlz-MMHzSlHAGX6Ll75-QRTDCclIGhsv3H5Ek,12185
|
|
@@ -848,8 +852,8 @@ mage_ai/services/slack/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3
|
|
|
848
852
|
mage_ai/services/slack/config.py,sha256=ZNv8CiWq42_MnIItfA5S0gpu7IdXis4TlKXQSeSfWrM,273
|
|
849
853
|
mage_ai/services/slack/slack.py,sha256=_vHeixCpPWmgZqOgMlEq3gbfdighjlxlvF_rXzaH4-I,244
|
|
850
854
|
mage_ai/services/spark/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
851
|
-
mage_ai/services/spark/config.py,sha256=
|
|
852
|
-
mage_ai/services/spark/spark.py,sha256=
|
|
855
|
+
mage_ai/services/spark/config.py,sha256=gvX6w7GIMcBVkRjuYrvQqP4saBjMfE7z_0BoHBMCOCg,392
|
|
856
|
+
mage_ai/services/spark/spark.py,sha256=9-W_RJXh_4kiPpeXTRKxNCZs3v-khGxHk85rm6E-Koc,3180
|
|
853
857
|
mage_ai/services/stitch/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
854
858
|
mage_ai/services/stitch/config.py,sha256=mvEf_BC5S1EbkQyzn8UnbLTVU1xMuaM87K04CxBNo1A,287
|
|
855
859
|
mage_ai/services/stitch/constants.py,sha256=MvAudR4homQvysDB1rvV41kAspu7EPGUh76usnxz6bU,123
|
|
@@ -868,7 +872,7 @@ mage_ai/shared/constants.py,sha256=YUnU1l8vhgUffXhj_i51ZnA3idH-mTneVNZhG-ZsgQc,2
|
|
|
868
872
|
mage_ai/shared/conversions.py,sha256=ls64_4DaLex-1j-1CsDX9tw5PX76DPiLQy2cCZYzdak,10912
|
|
869
873
|
mage_ai/shared/custom_types.py,sha256=fxNufXA-2cE5aGCFcknb4L2vrS-wcMtKp_RcgLhqgoo,1068
|
|
870
874
|
mage_ai/shared/dates.py,sha256=UfzPZvMYeMiwJ6mrpqS26dM4_lnOmoMzAda5L2lH544,949
|
|
871
|
-
mage_ai/shared/environments.py,sha256=
|
|
875
|
+
mage_ai/shared/environments.py,sha256=zIWehvvupxkl_xq5f7ffZkpdhwxb_ENr6nA_1b_whhg,734
|
|
872
876
|
mage_ai/shared/hash.py,sha256=c15lZMAoYLHRx9GWeEZAPgPVPXS6rfav8lCenrcvvSQ,2428
|
|
873
877
|
mage_ai/shared/http_client.py,sha256=XpZ3DsKlF8b3Obhc8H9TbyjD2ymS2Nm_NkYw1SSf65M,1064
|
|
874
878
|
mage_ai/shared/io.py,sha256=1SbPbg-r-esvszwl800RSG83el-pk8hlUj1vPP0ivaA,1724
|
|
@@ -912,7 +916,7 @@ mage_ai/tests/api/operations/test_base.py,sha256=V5huDpPo13ahpRttlQ4_p2O3vptq6vc
|
|
|
912
916
|
mage_ai/tests/api/operations/test_operations.py,sha256=hQ24CUHnpkvuuMoYAXcSjeH6NEf75i90wnHyqfzGjOE,1118
|
|
913
917
|
mage_ai/tests/api/operations/test_pipeline_schedules.py,sha256=2kS7HxaiOsQw54MwtbAHMI-aijvHJb5YwM8tKCuM160,2269
|
|
914
918
|
mage_ai/tests/api/operations/test_sessions.py,sha256=R17x3BeVns9Zjp-BUnd3O_xUfFWQabpuOGSmwIJhaZc,4455
|
|
915
|
-
mage_ai/tests/api/operations/test_syncs.py,sha256=
|
|
919
|
+
mage_ai/tests/api/operations/test_syncs.py,sha256=lbKhso6nbowMZ8z0pHkvCfSkn5yERcvCJ4HaRkVuR5w,3551
|
|
916
920
|
mage_ai/tests/api/operations/test_users.py,sha256=ivp589T39MoGY2bBcpxflrS7ZVzGea5zEX9CYM-Tgig,3671
|
|
917
921
|
mage_ai/tests/data_cleaner/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
918
922
|
mage_ai/tests/data_cleaner/test_column_type_detector.py,sha256=XMqtc4n96ZtDuvufi6zsSens-DSO8JDo8mQsUgnct9g,19487
|
|
@@ -944,7 +948,7 @@ mage_ai/tests/data_preparation/git/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQe
|
|
|
944
948
|
mage_ai/tests/data_preparation/git/test_git.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
945
949
|
mage_ai/tests/data_preparation/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
946
950
|
mage_ai/tests/data_preparation/models/test_block.py,sha256=bSYx5G_LNKowpud4mc-9-a7cZ3Ai5hsc9e8ZLo4JNOg,17766
|
|
947
|
-
mage_ai/tests/data_preparation/models/test_pipeline.py,sha256=
|
|
951
|
+
mage_ai/tests/data_preparation/models/test_pipeline.py,sha256=X7rcsYpPcTBL-9GnZK9yZFqPyte6ONJOK1yE3zzGpKk,31300
|
|
948
952
|
mage_ai/tests/data_preparation/models/test_variable.py,sha256=D8goA-1mNRN6vP3OkIxzHuAKt0tr5l3wcr7dbJQ4pm0,4893
|
|
949
953
|
mage_ai/tests/data_preparation/models/block/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
950
954
|
mage_ai/tests/data_preparation/models/block/test_sql.py,sha256=t07mMvpfX8YFy94FCuVWozBupiYrxDdaitbfSbRmGnE,2026
|
|
@@ -1001,9 +1005,9 @@ mage_ai/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
1001
1005
|
mage_ai/utils/code.py,sha256=ne10WwWGxwYUmjfnFS8o3Ml17to2jEeJaGP_Tu2OlFA,737
|
|
1002
1006
|
mage_ai/utils/logger/__init__.py,sha256=o-e5hogCtTW0caELRmvMbeaztks5hwPO7xYUggx2hAQ,2518
|
|
1003
1007
|
mage_ai/utils/logger/constants.py,sha256=k0Lnkz4X36AhSEGvKb5K2sI1iDacv2jXav8AC4JWPD0,271
|
|
1004
|
-
mage_ai-0.8.
|
|
1005
|
-
mage_ai-0.8.
|
|
1006
|
-
mage_ai-0.8.
|
|
1007
|
-
mage_ai-0.8.
|
|
1008
|
-
mage_ai-0.8.
|
|
1009
|
-
mage_ai-0.8.
|
|
1008
|
+
mage_ai-0.8.93.dist-info/LICENSE,sha256=XSS8WC34KIH1c9SeL-rOUlz9YL7vU-8Zz8yPMXSD55E,11351
|
|
1009
|
+
mage_ai-0.8.93.dist-info/METADATA,sha256=eXNwX32IG1GNxMIb39ROqfZswDmXFHRSqkde3m9dE8s,21649
|
|
1010
|
+
mage_ai-0.8.93.dist-info/WHEEL,sha256=pkctZYzUS4AYVn6dJ-7367OJZivF2e8RA9b_ZBjif18,92
|
|
1011
|
+
mage_ai-0.8.93.dist-info/entry_points.txt,sha256=OMjG1dNRclr-6hTA8-KY4DKhCR7FNVPNPcR_fqMf2lY,46
|
|
1012
|
+
mage_ai-0.8.93.dist-info/top_level.txt,sha256=hg9hr-jNWFq9_mVwGpLWLS-X8Yx6iSGpTkqEpTbZEO8,8
|
|
1013
|
+
mage_ai-0.8.93.dist-info/RECORD,,
|