mage-ai 0.8.79__py3-none-any.whl → 0.8.80__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/PipelineRunPolicy.py +1 -0
- mage_ai/api/presenters/StatusPresenter.py +1 -0
- mage_ai/api/resources/StatusResource.py +2 -0
- mage_ai/data_preparation/executors/streaming_pipeline_executor.py +73 -57
- mage_ai/data_preparation/models/constants.py +2 -0
- mage_ai/data_preparation/models/widget/charts.py +23 -4
- mage_ai/orchestration/notification/sender.py +18 -5
- mage_ai/server/constants.py +1 -1
- 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/{idk86oPaHvilJ9Afk8jIL → K62oaHK5x3k16vVxdvIWf}/_buildManifest.js +1 -1
- mage_ai/server/frontend_dist/_next/static/chunks/8312-71137409aea5d028.js +1 -0
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/edit-d90d32812b2be89e.js +1 -0
- mage_ai/server/frontend_dist/index.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 +3 -3
- mage_ai/server/frontend_dist/triggers.html +2 -2
- mage_ai/server/kernel_output_parser.py +5 -0
- mage_ai/services/gcp/cloud_run/cloud_run.py +37 -18
- mage_ai/services/gcp/cloud_run/config.py +2 -1
- mage_ai/tests/orchestration/notification/test_sender.py +6 -4
- mage_ai/usage_statistics/logger.py +2 -0
- {mage_ai-0.8.79.dist-info → mage_ai-0.8.80.dist-info}/METADATA +1 -1
- {mage_ai-0.8.79.dist-info → mage_ai-0.8.80.dist-info}/RECORD +53 -53
- mage_ai/server/frontend_dist/_next/static/chunks/8312-ade1ed2fd71120f8.js +0 -1
- mage_ai/server/frontend_dist/_next/static/chunks/pages/pipelines/[pipeline]/edit-22d76e8fa386ba37.js +0 -1
- /mage_ai/server/frontend_dist/_next/static/{idk86oPaHvilJ9Afk8jIL → K62oaHK5x3k16vVxdvIWf}/_middlewareManifest.js +0 -0
- /mage_ai/server/frontend_dist/_next/static/{idk86oPaHvilJ9Afk8jIL → K62oaHK5x3k16vVxdvIWf}/_ssgManifest.js +0 -0
- {mage_ai-0.8.79.dist-info → mage_ai-0.8.80.dist-info}/LICENSE +0 -0
- {mage_ai-0.8.79.dist-info → mage_ai-0.8.80.dist-info}/WHEEL +0 -0
- {mage_ai-0.8.79.dist-info → mage_ai-0.8.80.dist-info}/entry_points.txt +0 -0
- {mage_ai-0.8.79.dist-info → mage_ai-0.8.80.dist-info}/top_level.txt +0 -0
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import os
|
|
2
2
|
|
|
3
3
|
from mage_ai.api.resources.GenericResource import GenericResource
|
|
4
|
+
from mage_ai.data_preparation.models.constants import MAX_PRINT_OUTPUT_LINES
|
|
4
5
|
from mage_ai.data_preparation.repo_manager import (
|
|
5
6
|
ProjectType,
|
|
6
7
|
get_project_type,
|
|
@@ -53,6 +54,7 @@ class StatusResource(GenericResource):
|
|
|
53
54
|
'scheduler_status': scheduler_manager.get_status(),
|
|
54
55
|
'instance_type': instance_type,
|
|
55
56
|
'disable_pipeline_edit_access': is_disable_pipeline_edit_access(),
|
|
57
|
+
'max_print_output_lines': MAX_PRINT_OUTPUT_LINES,
|
|
56
58
|
'require_user_authentication': REQUIRE_USER_AUTHENTICATION,
|
|
57
59
|
}
|
|
58
60
|
return self.build_result_set([status], user, **kwargs)
|
|
@@ -1,15 +1,18 @@
|
|
|
1
|
+
import asyncio
|
|
2
|
+
import copy
|
|
3
|
+
import logging
|
|
4
|
+
import os
|
|
1
5
|
from contextlib import redirect_stderr, redirect_stdout
|
|
6
|
+
from typing import Callable, Dict, List, Union
|
|
7
|
+
|
|
8
|
+
import yaml
|
|
9
|
+
|
|
2
10
|
from mage_ai.data_preparation.executors.pipeline_executor import PipelineExecutor
|
|
3
11
|
from mage_ai.data_preparation.logging.logger import DictLogger
|
|
4
12
|
from mage_ai.data_preparation.models.constants import BlockType
|
|
5
13
|
from mage_ai.data_preparation.models.pipeline import Pipeline
|
|
6
14
|
from mage_ai.data_preparation.shared.stream import StreamToLogger
|
|
7
15
|
from mage_ai.shared.hash import merge_dict
|
|
8
|
-
from typing import Callable, Dict, List, Union
|
|
9
|
-
import asyncio
|
|
10
|
-
import logging
|
|
11
|
-
import os
|
|
12
|
-
import yaml
|
|
13
16
|
|
|
14
17
|
|
|
15
18
|
class StreamingPipelineExecutor(PipelineExecutor):
|
|
@@ -21,7 +24,9 @@ class StreamingPipelineExecutor(PipelineExecutor):
|
|
|
21
24
|
def parse_and_validate_blocks(self):
|
|
22
25
|
"""
|
|
23
26
|
Find the first valid streaming pipeline is in the structure:
|
|
24
|
-
source ->
|
|
27
|
+
source -> transformer1 -> sink2
|
|
28
|
+
-> transformer2 -> sink2
|
|
29
|
+
-> transformer3 -> sink3
|
|
25
30
|
"""
|
|
26
31
|
blocks = self.pipeline.blocks_by_uuid.values()
|
|
27
32
|
source_blocks = []
|
|
@@ -29,24 +34,23 @@ class StreamingPipelineExecutor(PipelineExecutor):
|
|
|
29
34
|
transformer_blocks = []
|
|
30
35
|
for b in blocks:
|
|
31
36
|
if b.type == BlockType.DATA_LOADER:
|
|
37
|
+
# Data loader block should be root block
|
|
32
38
|
if len(b.upstream_blocks or []) > 0:
|
|
33
39
|
raise Exception(f'Data loader {b.uuid} can\'t have upstream blocks.')
|
|
34
|
-
if len(b.downstream_blocks or [])
|
|
35
|
-
raise Exception(f'Data loader {b.uuid} must have one transformer or
|
|
36
|
-
' exporter as the downstream block.')
|
|
40
|
+
if len(b.downstream_blocks or []) < 1:
|
|
41
|
+
raise Exception(f'Data loader {b.uuid} must have at least one transformer or'
|
|
42
|
+
' data exporter as the downstream block.')
|
|
37
43
|
source_blocks.append(b)
|
|
38
44
|
if b.type == BlockType.DATA_EXPORTER:
|
|
45
|
+
# Data exporter block should be leaf block
|
|
39
46
|
if len(b.downstream_blocks or []) > 0:
|
|
40
47
|
raise Exception(f'Data expoter {b.uuid} can\'t have downstream blocks.')
|
|
41
48
|
if len(b.upstream_blocks or []) != 1:
|
|
42
|
-
raise Exception(f'Data
|
|
43
|
-
'
|
|
49
|
+
raise Exception(f'Data exporter {b.uuid} must have a transformer or data'
|
|
50
|
+
' loader as the upstream block.')
|
|
44
51
|
sink_blocks.append(b)
|
|
45
52
|
if b.type == BlockType.TRANSFORMER:
|
|
46
|
-
|
|
47
|
-
raise Exception(
|
|
48
|
-
f'Transformer {b.uuid} should (only) have one downstream block.',
|
|
49
|
-
)
|
|
53
|
+
# Each transformer block can only have one upstream block
|
|
50
54
|
if len(b.upstream_blocks or []) != 1:
|
|
51
55
|
raise Exception(f'Transformer {b.uuid} should (only) have one upstream block.')
|
|
52
56
|
transformer_blocks.append(b)
|
|
@@ -54,15 +58,8 @@ class StreamingPipelineExecutor(PipelineExecutor):
|
|
|
54
58
|
if len(source_blocks) != 1:
|
|
55
59
|
raise Exception('Please provide (only) one data loader block as the source.')
|
|
56
60
|
|
|
57
|
-
if len(transformer_blocks) > 1:
|
|
58
|
-
raise Exception('Please provide no more than one transformer block.')
|
|
59
|
-
|
|
60
|
-
if len(sink_blocks) != 1:
|
|
61
|
-
raise Exception('Please provide (only) one data expoter block as the sink.')
|
|
62
|
-
|
|
63
61
|
self.source_block = source_blocks[0]
|
|
64
|
-
self.
|
|
65
|
-
self.transformer_block = transformer_blocks[0] if len(transformer_blocks) > 0 else None
|
|
62
|
+
self.sink_blocks = sink_blocks
|
|
66
63
|
|
|
67
64
|
def execute(
|
|
68
65
|
self,
|
|
@@ -97,11 +94,10 @@ class StreamingPipelineExecutor(PipelineExecutor):
|
|
|
97
94
|
raise e
|
|
98
95
|
|
|
99
96
|
def __execute_in_python(self, build_block_output_stdout: Callable[..., object] = None):
|
|
97
|
+
from mage_ai.streaming.sinks.sink_factory import SinkFactory
|
|
100
98
|
from mage_ai.streaming.sources.base import SourceConsumeMethod
|
|
101
99
|
from mage_ai.streaming.sources.source_factory import SourceFactory
|
|
102
|
-
from mage_ai.streaming.sinks.sink_factory import SinkFactory
|
|
103
100
|
source_config = yaml.safe_load(self.source_block.content)
|
|
104
|
-
sink_config = yaml.safe_load(self.sink_block.content)
|
|
105
101
|
source = SourceFactory.get_source(
|
|
106
102
|
source_config,
|
|
107
103
|
checkpoint_path=os.path.join(
|
|
@@ -109,47 +105,67 @@ class StreamingPipelineExecutor(PipelineExecutor):
|
|
|
109
105
|
'streaming_checkpoint',
|
|
110
106
|
),
|
|
111
107
|
)
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
108
|
+
|
|
109
|
+
sinks_by_uuid = dict()
|
|
110
|
+
for sink_block in self.sink_blocks:
|
|
111
|
+
sink_config = yaml.safe_load(sink_block.content)
|
|
112
|
+
sinks_by_uuid[sink_block.uuid] = SinkFactory.get_sink(
|
|
113
|
+
sink_config,
|
|
114
|
+
buffer_path=os.path.join(
|
|
115
|
+
self.pipeline.pipeline_variables_dir,
|
|
116
|
+
'buffer',
|
|
117
|
+
),
|
|
118
|
+
)
|
|
119
|
+
|
|
120
|
+
def handle_batch_events_recursively(curr_block, outputs_by_block: Dict, **kwargs):
|
|
121
|
+
curr_block_output = outputs_by_block[curr_block.uuid]
|
|
122
|
+
for downstream_block in curr_block.downstream_blocks:
|
|
123
|
+
if downstream_block.type == BlockType.TRANSFORMER:
|
|
124
|
+
execute_block_kwargs = dict(
|
|
125
|
+
global_vars=kwargs,
|
|
126
|
+
input_args=[copy.deepcopy(curr_block_output)],
|
|
127
|
+
logger=self.logger,
|
|
128
|
+
)
|
|
129
|
+
if build_block_output_stdout:
|
|
130
|
+
execute_block_kwargs['build_block_output_stdout'] = \
|
|
131
|
+
build_block_output_stdout
|
|
132
|
+
outputs_by_block[downstream_block.uuid] = \
|
|
133
|
+
downstream_block.execute_block(
|
|
134
|
+
**execute_block_kwargs,
|
|
135
|
+
)['output']
|
|
136
|
+
elif downstream_block.type == BlockType.DATA_EXPORTER:
|
|
137
|
+
sinks_by_uuid[downstream_block.uuid].batch_write(
|
|
138
|
+
copy.deepcopy(curr_block_output))
|
|
139
|
+
if downstream_block.downstream_blocks:
|
|
140
|
+
handle_batch_events_recursively(
|
|
141
|
+
downstream_block,
|
|
142
|
+
outputs_by_block,
|
|
143
|
+
**kwargs,
|
|
144
|
+
)
|
|
119
145
|
|
|
120
146
|
def handle_batch_events(messages: List[Union[Dict, str]], **kwargs):
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
if build_block_output_stdout:
|
|
128
|
-
execute_block_kwargs['build_block_output_stdout'] = build_block_output_stdout
|
|
129
|
-
messages = self.transformer_block.execute_block(
|
|
130
|
-
**execute_block_kwargs,
|
|
131
|
-
)['output']
|
|
132
|
-
sink.batch_write(messages)
|
|
147
|
+
# Handle the events with DFS
|
|
148
|
+
|
|
149
|
+
outputs_by_block = dict()
|
|
150
|
+
outputs_by_block[self.source_block.uuid] = messages
|
|
151
|
+
|
|
152
|
+
handle_batch_events_recursively(self.source_block, outputs_by_block)
|
|
133
153
|
|
|
134
154
|
async def handle_event_async(message, **kwargs):
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
logger=self.logger,
|
|
140
|
-
)
|
|
141
|
-
if build_block_output_stdout:
|
|
142
|
-
execute_block_kwargs['build_block_output_stdout'] = build_block_output_stdout
|
|
143
|
-
messages = self.transformer_block.execute_block(
|
|
144
|
-
**execute_block_kwargs,
|
|
145
|
-
)['output']
|
|
146
|
-
sink.batch_write(messages)
|
|
155
|
+
outputs_by_block = dict()
|
|
156
|
+
outputs_by_block[self.source_block.uuid] = [message]
|
|
157
|
+
|
|
158
|
+
handle_batch_events_recursively(self.source_block, outputs_by_block)
|
|
147
159
|
|
|
148
160
|
# Long running method
|
|
149
161
|
if source.consume_method == SourceConsumeMethod.BATCH_READ:
|
|
150
162
|
source.batch_read(handler=handle_batch_events)
|
|
151
163
|
elif source.consume_method == SourceConsumeMethod.READ_ASYNC:
|
|
152
|
-
asyncio.
|
|
164
|
+
loop = asyncio.get_event_loop()
|
|
165
|
+
if loop is not None:
|
|
166
|
+
loop.run_until_complete(source.read_async(handler=handle_event_async))
|
|
167
|
+
else:
|
|
168
|
+
asyncio.run(source.read_async(handler=handle_event_async))
|
|
153
169
|
|
|
154
170
|
def __excute_in_flink(self):
|
|
155
171
|
"""
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import os
|
|
1
2
|
from enum import Enum
|
|
2
3
|
|
|
3
4
|
PIPELINES_FOLDER = 'pipelines'
|
|
@@ -19,6 +20,7 @@ DATAFRAME_ANALYSIS_MAX_COLUMNS = 100
|
|
|
19
20
|
DATAFRAME_SAMPLE_COUNT_PREVIEW = 10
|
|
20
21
|
DATAFRAME_SAMPLE_COUNT = 1000
|
|
21
22
|
DATAFRAME_SAMPLE_MAX_COLUMNS = 1000
|
|
23
|
+
MAX_PRINT_OUTPUT_LINES = int(os.getenv('MAX_PRINT_OUTPUT_LINES', 1000) or 1000)
|
|
22
24
|
VARIABLE_DIR = '.variables'
|
|
23
25
|
LOGS_DIR = '.logs'
|
|
24
26
|
|
|
@@ -82,10 +82,29 @@ def build_time_series_buckets(df, datetime_column, time_interval, metrics):
|
|
|
82
82
|
return []
|
|
83
83
|
|
|
84
84
|
datetimes = datetimes.unique()
|
|
85
|
-
min_value_datetime =
|
|
86
|
-
max_value_datetime =
|
|
87
|
-
|
|
88
|
-
|
|
85
|
+
min_value_datetime = datetimes.min()
|
|
86
|
+
max_value_datetime = datetimes.max()
|
|
87
|
+
|
|
88
|
+
if type(min_value_datetime) is str:
|
|
89
|
+
min_value_datetime = dateutil.parser.parse(min_value_datetime)
|
|
90
|
+
if type(max_value_datetime) is str:
|
|
91
|
+
max_value_datetime = dateutil.parser.parse(max_value_datetime)
|
|
92
|
+
|
|
93
|
+
# If you manually convert the datetime column to a datetime, Pandas will use numpy.datetime64
|
|
94
|
+
# type. This type does not have the methods year, month, day, etc that is used down below.
|
|
95
|
+
datetimes_temp = []
|
|
96
|
+
for dt in datetimes:
|
|
97
|
+
if type(dt) is np.datetime64:
|
|
98
|
+
datetimes_temp.append(pd.to_datetime(dt.astype(datetime)).to_pydatetime())
|
|
99
|
+
else:
|
|
100
|
+
datetimes_temp.append(dt)
|
|
101
|
+
datetimes = datetimes_temp
|
|
102
|
+
if type(min_value_datetime) is np.datetime64:
|
|
103
|
+
min_value_datetime = pd.to_datetime(min_value_datetime.astype(datetime)).to_pydatetime()
|
|
104
|
+
if type(max_value_datetime) is np.datetime64:
|
|
105
|
+
max_value_datetime = pd.to_datetime(max_value_datetime.astype(datetime)).to_pydatetime()
|
|
106
|
+
|
|
107
|
+
a, b = [dateutil.parser.parse(d) if type(d) is str else d for d in sorted(datetimes)[:2]]
|
|
89
108
|
|
|
90
109
|
year = min_value_datetime.year
|
|
91
110
|
month = min_value_datetime.month
|
|
@@ -1,11 +1,12 @@
|
|
|
1
|
+
import os
|
|
2
|
+
|
|
1
3
|
from mage_ai.orchestration.notification.config import AlertOn, NotificationConfig
|
|
2
4
|
from mage_ai.services.email.email import send_email
|
|
5
|
+
from mage_ai.services.google_chat.google_chat import send_google_chat_message
|
|
3
6
|
from mage_ai.services.opsgenie.opsgenie import send_opsgenie_alert
|
|
4
7
|
from mage_ai.services.slack.slack import send_slack_message
|
|
5
8
|
from mage_ai.services.teams.teams import send_teams_message
|
|
6
|
-
from mage_ai.services.google_chat.google_chat import send_google_chat_message
|
|
7
9
|
from mage_ai.settings import MAGE_PUBLIC_HOST
|
|
8
|
-
import os
|
|
9
10
|
|
|
10
11
|
|
|
11
12
|
class NotificationSender:
|
|
@@ -18,10 +19,17 @@ class NotificationSender:
|
|
|
18
19
|
summary: str = None,
|
|
19
20
|
details: str = None,
|
|
20
21
|
) -> None:
|
|
22
|
+
"""Send messages to the notification channels.
|
|
23
|
+
|
|
24
|
+
Args:
|
|
25
|
+
title (str, optional): Short sentence, used as title (e.g. Email subject)
|
|
26
|
+
summary (str, optional): Mid-length sentences, used as the summary of the message.
|
|
27
|
+
details (str, optional): Long message, used as the body of the message (e.g. Email body)
|
|
28
|
+
"""
|
|
21
29
|
if summary is None:
|
|
22
30
|
return
|
|
23
31
|
if self.config.slack_config is not None and self.config.slack_config.is_valid:
|
|
24
|
-
send_slack_message(self.config.slack_config, summary)
|
|
32
|
+
send_slack_message(self.config.slack_config, details or summary)
|
|
25
33
|
|
|
26
34
|
if self.config.teams_config is not None and self.config.teams_config.is_valid:
|
|
27
35
|
send_teams_message(self.config.teams_config, summary)
|
|
@@ -75,9 +83,14 @@ class NotificationSender:
|
|
|
75
83
|
f'at execution time `{pipeline_run.execution_date}`.'
|
|
76
84
|
)
|
|
77
85
|
email_content = f'{message}\n'
|
|
78
|
-
if os.getenv('ENV') != 'production':
|
|
86
|
+
if os.getenv('ENV') != 'production' or MAGE_PUBLIC_HOST != 'http://localhost:6789':
|
|
87
|
+
"""
|
|
88
|
+
Include the URL for the following cases
|
|
89
|
+
1. Dev environment: Use the default localhost as host in URL
|
|
90
|
+
2. Production environment: If MAGE_PUBLIC_HOST is set, use it as host.
|
|
91
|
+
"""
|
|
79
92
|
email_content += f'Open {self.__pipeline_run_url(pipeline, pipeline_run)} '\
|
|
80
|
-
|
|
93
|
+
'to check pipeline run results and logs.'
|
|
81
94
|
self.send(
|
|
82
95
|
title=f'Failed to run Mage pipeline {pipeline.uuid}',
|
|
83
96
|
summary=message,
|
mage_ai/server/constants.py
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><meta content="width=device-width, initial-scale=1.0, maximum-scale=5.0, user-scalable=0" name="viewport"/><title>404: This page could not be found</title><meta name="next-head-count" content="3"/><link href="/favicon.ico" rel="icon"/><link rel="preload" href="/_next/static/css/d1e8e64d0b07af2f.css" as="style"/><link rel="stylesheet" href="/_next/static/css/d1e8e64d0b07af2f.css" data-n-g=""/><noscript data-n-css=""></noscript><script defer="" nomodule="" src="/_next/static/chunks/polyfills-5cd94c89d3acac5f.js"></script><script src="/_next/static/chunks/webpack-bc5e4eb2c1ff587c.js" defer=""></script><script src="/_next/static/chunks/framework-7c365855dab1bf41.js" defer=""></script><script src="/_next/static/chunks/main-bb0dd5375146d7fd.js" defer=""></script><script src="/_next/static/chunks/pages/_app-b25383366d854e8e.js" defer=""></script><script src="/_next/static/chunks/pages/_error-235304e5badb19eb.js" defer=""></script><script src="/_next/static/
|
|
1
|
+
<!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><meta content="width=device-width, initial-scale=1.0, maximum-scale=5.0, user-scalable=0" name="viewport"/><title>404: This page could not be found</title><meta name="next-head-count" content="3"/><link href="/favicon.ico" rel="icon"/><link rel="preload" href="/_next/static/css/d1e8e64d0b07af2f.css" as="style"/><link rel="stylesheet" href="/_next/static/css/d1e8e64d0b07af2f.css" data-n-g=""/><noscript data-n-css=""></noscript><script defer="" nomodule="" src="/_next/static/chunks/polyfills-5cd94c89d3acac5f.js"></script><script src="/_next/static/chunks/webpack-bc5e4eb2c1ff587c.js" defer=""></script><script src="/_next/static/chunks/framework-7c365855dab1bf41.js" defer=""></script><script src="/_next/static/chunks/main-bb0dd5375146d7fd.js" defer=""></script><script src="/_next/static/chunks/pages/_app-b25383366d854e8e.js" defer=""></script><script src="/_next/static/chunks/pages/_error-235304e5badb19eb.js" defer=""></script><script src="/_next/static/K62oaHK5x3k16vVxdvIWf/_buildManifest.js" defer=""></script><script src="/_next/static/K62oaHK5x3k16vVxdvIWf/_ssgManifest.js" defer=""></script><script src="/_next/static/K62oaHK5x3k16vVxdvIWf/_middlewareManifest.js" defer=""></script><style data-styled="" data-styled-version="5.3.6">html{-webkit-box-sizing:border-box;box-sizing:border-box;-ms-overflow-style:scrollbar;}/*!sc*/
|
|
2
2
|
*,*::before,*::after{-webkit-box-sizing:inherit;box-sizing:inherit;}/*!sc*/
|
|
3
3
|
data-styled.g4[id="sc-global-czSCUT1"]{content:"sc-global-czSCUT1,"}/*!sc*/
|
|
4
4
|
.kOVcuR .Toastify__toast-container{margin-top:24px;padding:0 !important;width:500px !important;}/*!sc*/
|
|
@@ -19,4 +19,4 @@ data-styled.g5[id="ToastWrapper-sc-1a33ph1-0"]{content:"kOVcuR,"}/*!sc*/
|
|
|
19
19
|
.next-error-h1 {
|
|
20
20
|
border-right: 1px solid rgba(255, 255, 255, .3);
|
|
21
21
|
}
|
|
22
|
-
}</style><h1 class="next-error-h1" style="display:inline-block;margin:0;margin-right:20px;padding:10px 23px 10px 0;font-size:24px;font-weight:500;vertical-align:top">404<!-- --></h1><div style="display:inline-block;text-align:left;line-height:49px;height:49px;vertical-align:middle"><h2 style="font-size:14px;font-weight:normal;line-height:inherit;margin:0;padding:0">This page could not be found<!-- -->.<!-- --></h2></div></div></div><div></div><div></div><div></div><div class="ToastWrapper-sc-1a33ph1-0 kOVcuR"><div class="Toastify"></div></div></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{"statusCode":404},"currentTheme":{"accent":{"alert":"#F6540B","blue":"#4877FF","blueLight":"rgba(72, 119, 255, 0.5)","contentDefaultTransparent":"rgba(174, 174, 174, 0.5)","cyan":"#65E3FF","cyanLight":"rgba(101, 227, 255, 0.3)","cyanTransparent":"rgba(101, 227, 255, 0.12)","dbt":"#fc6949","dbtLight":"rgba(252, 105, 73, 0.5)","info":"#00ABFF","infoTransparent":"rgba(0, 171, 255, 0.5)","negative":"#FF1E59","negativeTransparent":"rgba(255, 30, 89, 0.3)","pink":"#FF4FF8","pinkLight":"rgb(255, 79, 248, 0.5)","positive":"#00A81A","primaryTransparent":"rgba(155, 108, 167, 0.5)","purple":"#7D55EC","purpleLight":"rgba(125, 85, 236, 0.5)","rose":"#D1A2AB","roseLight":"rgba(209, 162, 171, 0.5)","sky":"#6AA1E0","skyLight":"rgba(106, 161, 224, 0.05)","teal":"#00B4CC","tealLight":"rgba(0, 180, 204, 0.5)","warning":"#DD9900","warningTransparent":"rgba(221, 153, 0, 0.5)","yellow":"#FFCC19","yellowLight":"rgba(255, 204, 25, 0.5)"},"background":{"chartBlock":"#2E3036","codeArea":"#1E1F24","codeTextarea":"#000000","content":"#1B1C20","danger":"#FFD0DB","dark":"#B1B8C3","header":"#1B1B1B","menu":"#0F4CFF","muted":"#F9FAFC","navigation":"#EDEDED","output":"#2E3036","page":"#1E1F24","panel":"#232429","popup":"#27292E","row":"#2C2C2C","row2":"#51535C","scrollbarThumb":"rgba(100, 100, 100, 0.5)","scrollbarThumbHover":"rgba(255, 255, 255, 0.3)","scrollbarTrack":"#2E3036","success":"#8ADE00","successLight":"rgb(138, 222, 0, 0.3)","table":"#292A2F"},"borders":{"button":"#454850","contrast":"#FFFFFF","danger":"#FF144D","dark":"#000000","info":"#FFCC19","light":"#2F3034","medium":"#1C1C1C","medium2":"#141414","success":"#2FCB52"},"brand":{"earth100":"#C6EEDB","earth200":"#9DDFBF","earth300":"#6BBF96","earth400":"#37A46F","earth400Transparent":"rgba(55, 164, 111, 0.4)","earth500":"#00954C","energy100":"#FFF4BA","energy200":"#FFED92","energy300":"#FFE662","energy400":"#FFDA19","energy400Transparent":"rgba(255, 218, 25, 0.04)","energy500":"#F6C000","fire100":"#FFD7E0","fire200":"#FFA3B9","fire300":"#FF547D","fire400":"#FF144D","fire400Transparent":"rgba(255, 20, 77, 0.4)","fire500":"#EB0032","stone100":"#F3E6D7","stone200":"#E3D4C2","stone400":"#BFA78B","stone500":"#AF8859","water100":"#BDCEFF","water200":"#81A1FF","water300":"#517DFF","water400":"#2A60FE","water400Transparent":"rgba(42, 96, 254, 0.4)","water500":"#0F4CFF","wind100":"#EEEAFF","wind200":"#CCC1F4","wind300":"#A698DD","wind400":"#6B50D7","wind400SuperTransparent":"rgba(107, 80, 215, 0.12)","wind400Transparent":"rgba(107, 80, 215, 0.4)","wind500":"#4E32BC"},"chart":{"backgroundPrimary":"#7D55EC","backgroundSecondary":"#FF144D","backgroundTertiary":"#86E2FF","button1":"#4877FF","button2":"#FFCC19","button3":"#8ADE00","button4":"#FF4FF8","button5":"#B98D95","lines":"#9B6CA7","primary":"#6B50D7","secondary":"#FF144D","tertiary":"#2A60FE"},"content":{"active":"#FFFFFF","default":"#AEAEAE","disabled":"rgba(255, 255, 255, 0.3)","inverted":"#2C2C2C","muted":"#787A85"},"elevation":{"visualizationAccent":"#996CFF","visualizationAccentAlt":"#C1ACF7"},"feature":{"active":"rgba(250, 248, 254, 0.14)","disabled":"rgba(201, 206, 218, 0.12)"},"icons":{"neutral":"#787878"},"interactive":{"activeBorder":"#060606","checked":"#060606","dangerBorder":"#FF144D","defaultBackground":"#36383F","defaultBorder":"#2E3036","disabledBorder":"#B1B8C3","focusBackground":"#B1B8C3","focusBorder":"#86E2FF","hoverBackground":"#4E4E4E","hoverBorder":"#B9BFCA","hoverOverlay":"rgba(255, 255, 255, 0.1)","linkPrimary":"#1752FF","linkPrimaryHover":"#4877FF","linkPrimaryLight":"#5982ff","linkSecondary":"#6B50D7","linkSecondaryDisabled":"#C4B9EF","linkText":"#6AA1E0","rowHoverBackground":"rgba(0, 0, 0, 0.1)","transparent":"rgba(255, 255, 255, 0)"},"loader":{"color":"#EB0032","colorInverted":"#8ADE00"},"logo":{"color":"#FFFFFF"},"monotone":{"black":"#060606","blackTransparent":"rgba(0, 0, 0, 0.6)","gray":"#B1B8C3","grey100":"#F2F2F2","grey200":"#D5D7DC","grey300":"#B4B8C0","grey400":"#70747C","grey500":"#51535C","purple":"#6B50D7","white":"#FFFFFF"},"neutral":{"n100":"#E7E8EA","n200":"#D8DADE","n300":"#CBCCD0","n400":"#BCBEC4","n500":"#AEB0B6"},"progress":{"negative":"#FF144D","positive":"#6B50D7"},"shadow":{"base":"12px 40px 120px rgba(106, 117, 139, 0.4)","frame":"0px 10px 40px rgba(0, 0, 0, 0.26)","menu":"4px 10px 20px rgba(6, 6, 6, 0.12)","popup":"10px 20px 40px rgba(0, 0, 0, 0.2)","small":"0px, 4px, rgba(0, 0, 0, 0.25)","window":"0px 10px 60px rgba(0, 0, 0, 0.7)"},"status":{"negative":"#FF144D","positive":"#24B400"},"text":{"fileBrowser":"#787A85"}}},"page":"/_error","query":{},"buildId":"
|
|
22
|
+
}</style><h1 class="next-error-h1" style="display:inline-block;margin:0;margin-right:20px;padding:10px 23px 10px 0;font-size:24px;font-weight:500;vertical-align:top">404<!-- --></h1><div style="display:inline-block;text-align:left;line-height:49px;height:49px;vertical-align:middle"><h2 style="font-size:14px;font-weight:normal;line-height:inherit;margin:0;padding:0">This page could not be found<!-- -->.<!-- --></h2></div></div></div><div></div><div></div><div></div><div class="ToastWrapper-sc-1a33ph1-0 kOVcuR"><div class="Toastify"></div></div></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{"statusCode":404},"currentTheme":{"accent":{"alert":"#F6540B","blue":"#4877FF","blueLight":"rgba(72, 119, 255, 0.5)","contentDefaultTransparent":"rgba(174, 174, 174, 0.5)","cyan":"#65E3FF","cyanLight":"rgba(101, 227, 255, 0.3)","cyanTransparent":"rgba(101, 227, 255, 0.12)","dbt":"#fc6949","dbtLight":"rgba(252, 105, 73, 0.5)","info":"#00ABFF","infoTransparent":"rgba(0, 171, 255, 0.5)","negative":"#FF1E59","negativeTransparent":"rgba(255, 30, 89, 0.3)","pink":"#FF4FF8","pinkLight":"rgb(255, 79, 248, 0.5)","positive":"#00A81A","primaryTransparent":"rgba(155, 108, 167, 0.5)","purple":"#7D55EC","purpleLight":"rgba(125, 85, 236, 0.5)","rose":"#D1A2AB","roseLight":"rgba(209, 162, 171, 0.5)","sky":"#6AA1E0","skyLight":"rgba(106, 161, 224, 0.05)","teal":"#00B4CC","tealLight":"rgba(0, 180, 204, 0.5)","warning":"#DD9900","warningTransparent":"rgba(221, 153, 0, 0.5)","yellow":"#FFCC19","yellowLight":"rgba(255, 204, 25, 0.5)"},"background":{"chartBlock":"#2E3036","codeArea":"#1E1F24","codeTextarea":"#000000","content":"#1B1C20","danger":"#FFD0DB","dark":"#B1B8C3","header":"#1B1B1B","menu":"#0F4CFF","muted":"#F9FAFC","navigation":"#EDEDED","output":"#2E3036","page":"#1E1F24","panel":"#232429","popup":"#27292E","row":"#2C2C2C","row2":"#51535C","scrollbarThumb":"rgba(100, 100, 100, 0.5)","scrollbarThumbHover":"rgba(255, 255, 255, 0.3)","scrollbarTrack":"#2E3036","success":"#8ADE00","successLight":"rgb(138, 222, 0, 0.3)","table":"#292A2F"},"borders":{"button":"#454850","contrast":"#FFFFFF","danger":"#FF144D","dark":"#000000","info":"#FFCC19","light":"#2F3034","medium":"#1C1C1C","medium2":"#141414","success":"#2FCB52"},"brand":{"earth100":"#C6EEDB","earth200":"#9DDFBF","earth300":"#6BBF96","earth400":"#37A46F","earth400Transparent":"rgba(55, 164, 111, 0.4)","earth500":"#00954C","energy100":"#FFF4BA","energy200":"#FFED92","energy300":"#FFE662","energy400":"#FFDA19","energy400Transparent":"rgba(255, 218, 25, 0.04)","energy500":"#F6C000","fire100":"#FFD7E0","fire200":"#FFA3B9","fire300":"#FF547D","fire400":"#FF144D","fire400Transparent":"rgba(255, 20, 77, 0.4)","fire500":"#EB0032","stone100":"#F3E6D7","stone200":"#E3D4C2","stone400":"#BFA78B","stone500":"#AF8859","water100":"#BDCEFF","water200":"#81A1FF","water300":"#517DFF","water400":"#2A60FE","water400Transparent":"rgba(42, 96, 254, 0.4)","water500":"#0F4CFF","wind100":"#EEEAFF","wind200":"#CCC1F4","wind300":"#A698DD","wind400":"#6B50D7","wind400SuperTransparent":"rgba(107, 80, 215, 0.12)","wind400Transparent":"rgba(107, 80, 215, 0.4)","wind500":"#4E32BC"},"chart":{"backgroundPrimary":"#7D55EC","backgroundSecondary":"#FF144D","backgroundTertiary":"#86E2FF","button1":"#4877FF","button2":"#FFCC19","button3":"#8ADE00","button4":"#FF4FF8","button5":"#B98D95","lines":"#9B6CA7","primary":"#6B50D7","secondary":"#FF144D","tertiary":"#2A60FE"},"content":{"active":"#FFFFFF","default":"#AEAEAE","disabled":"rgba(255, 255, 255, 0.3)","inverted":"#2C2C2C","muted":"#787A85"},"elevation":{"visualizationAccent":"#996CFF","visualizationAccentAlt":"#C1ACF7"},"feature":{"active":"rgba(250, 248, 254, 0.14)","disabled":"rgba(201, 206, 218, 0.12)"},"icons":{"neutral":"#787878"},"interactive":{"activeBorder":"#060606","checked":"#060606","dangerBorder":"#FF144D","defaultBackground":"#36383F","defaultBorder":"#2E3036","disabledBorder":"#B1B8C3","focusBackground":"#B1B8C3","focusBorder":"#86E2FF","hoverBackground":"#4E4E4E","hoverBorder":"#B9BFCA","hoverOverlay":"rgba(255, 255, 255, 0.1)","linkPrimary":"#1752FF","linkPrimaryHover":"#4877FF","linkPrimaryLight":"#5982ff","linkSecondary":"#6B50D7","linkSecondaryDisabled":"#C4B9EF","linkText":"#6AA1E0","rowHoverBackground":"rgba(0, 0, 0, 0.1)","transparent":"rgba(255, 255, 255, 0)"},"loader":{"color":"#EB0032","colorInverted":"#8ADE00"},"logo":{"color":"#FFFFFF"},"monotone":{"black":"#060606","blackTransparent":"rgba(0, 0, 0, 0.6)","gray":"#B1B8C3","grey100":"#F2F2F2","grey200":"#D5D7DC","grey300":"#B4B8C0","grey400":"#70747C","grey500":"#51535C","purple":"#6B50D7","white":"#FFFFFF"},"neutral":{"n100":"#E7E8EA","n200":"#D8DADE","n300":"#CBCCD0","n400":"#BCBEC4","n500":"#AEB0B6"},"progress":{"negative":"#FF144D","positive":"#6B50D7"},"shadow":{"base":"12px 40px 120px rgba(106, 117, 139, 0.4)","frame":"0px 10px 40px rgba(0, 0, 0, 0.26)","menu":"4px 10px 20px rgba(6, 6, 6, 0.12)","popup":"10px 20px 40px rgba(0, 0, 0, 0.2)","small":"0px, 4px, rgba(0, 0, 0, 0.25)","window":"0px 10px 60px rgba(0, 0, 0, 0.7)"},"status":{"negative":"#FF144D","positive":"#24B400"},"text":{"fileBrowser":"#787A85"}}},"page":"/_error","query":{},"buildId":"K62oaHK5x3k16vVxdvIWf","nextExport":true,"isFallback":false,"gip":true,"appGip":true,"scriptLoader":[]}</script></body></html>
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
<!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><meta content="width=device-width, initial-scale=1.0, maximum-scale=5.0, user-scalable=0" name="viewport"/><title>404: This page could not be found</title><meta name="next-head-count" content="3"/><link href="/favicon.ico" rel="icon"/><link rel="preload" href="/_next/static/css/d1e8e64d0b07af2f.css" as="style"/><link rel="stylesheet" href="/_next/static/css/d1e8e64d0b07af2f.css" data-n-g=""/><noscript data-n-css=""></noscript><script defer="" nomodule="" src="/_next/static/chunks/polyfills-5cd94c89d3acac5f.js"></script><script src="/_next/static/chunks/webpack-bc5e4eb2c1ff587c.js" defer=""></script><script src="/_next/static/chunks/framework-7c365855dab1bf41.js" defer=""></script><script src="/_next/static/chunks/main-bb0dd5375146d7fd.js" defer=""></script><script src="/_next/static/chunks/pages/_app-b25383366d854e8e.js" defer=""></script><script src="/_next/static/chunks/pages/_error-235304e5badb19eb.js" defer=""></script><script src="/_next/static/
|
|
1
|
+
<!DOCTYPE html><html lang="en"><head><meta charSet="utf-8"/><meta content="width=device-width, initial-scale=1.0, maximum-scale=5.0, user-scalable=0" name="viewport"/><title>404: This page could not be found</title><meta name="next-head-count" content="3"/><link href="/favicon.ico" rel="icon"/><link rel="preload" href="/_next/static/css/d1e8e64d0b07af2f.css" as="style"/><link rel="stylesheet" href="/_next/static/css/d1e8e64d0b07af2f.css" data-n-g=""/><noscript data-n-css=""></noscript><script defer="" nomodule="" src="/_next/static/chunks/polyfills-5cd94c89d3acac5f.js"></script><script src="/_next/static/chunks/webpack-bc5e4eb2c1ff587c.js" defer=""></script><script src="/_next/static/chunks/framework-7c365855dab1bf41.js" defer=""></script><script src="/_next/static/chunks/main-bb0dd5375146d7fd.js" defer=""></script><script src="/_next/static/chunks/pages/_app-b25383366d854e8e.js" defer=""></script><script src="/_next/static/chunks/pages/_error-235304e5badb19eb.js" defer=""></script><script src="/_next/static/K62oaHK5x3k16vVxdvIWf/_buildManifest.js" defer=""></script><script src="/_next/static/K62oaHK5x3k16vVxdvIWf/_ssgManifest.js" defer=""></script><script src="/_next/static/K62oaHK5x3k16vVxdvIWf/_middlewareManifest.js" defer=""></script><style data-styled="" data-styled-version="5.3.6">html{-webkit-box-sizing:border-box;box-sizing:border-box;-ms-overflow-style:scrollbar;}/*!sc*/
|
|
2
2
|
*,*::before,*::after{-webkit-box-sizing:inherit;box-sizing:inherit;}/*!sc*/
|
|
3
3
|
data-styled.g4[id="sc-global-czSCUT1"]{content:"sc-global-czSCUT1,"}/*!sc*/
|
|
4
4
|
.kOVcuR .Toastify__toast-container{margin-top:24px;padding:0 !important;width:500px !important;}/*!sc*/
|
|
@@ -19,4 +19,4 @@ data-styled.g5[id="ToastWrapper-sc-1a33ph1-0"]{content:"kOVcuR,"}/*!sc*/
|
|
|
19
19
|
.next-error-h1 {
|
|
20
20
|
border-right: 1px solid rgba(255, 255, 255, .3);
|
|
21
21
|
}
|
|
22
|
-
}</style><h1 class="next-error-h1" style="display:inline-block;margin:0;margin-right:20px;padding:10px 23px 10px 0;font-size:24px;font-weight:500;vertical-align:top">404<!-- --></h1><div style="display:inline-block;text-align:left;line-height:49px;height:49px;vertical-align:middle"><h2 style="font-size:14px;font-weight:normal;line-height:inherit;margin:0;padding:0">This page could not be found<!-- -->.<!-- --></h2></div></div></div><div></div><div></div><div></div><div class="ToastWrapper-sc-1a33ph1-0 kOVcuR"><div class="Toastify"></div></div></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{"statusCode":404},"currentTheme":{"accent":{"alert":"#F6540B","blue":"#4877FF","blueLight":"rgba(72, 119, 255, 0.5)","contentDefaultTransparent":"rgba(174, 174, 174, 0.5)","cyan":"#65E3FF","cyanLight":"rgba(101, 227, 255, 0.3)","cyanTransparent":"rgba(101, 227, 255, 0.12)","dbt":"#fc6949","dbtLight":"rgba(252, 105, 73, 0.5)","info":"#00ABFF","infoTransparent":"rgba(0, 171, 255, 0.5)","negative":"#FF1E59","negativeTransparent":"rgba(255, 30, 89, 0.3)","pink":"#FF4FF8","pinkLight":"rgb(255, 79, 248, 0.5)","positive":"#00A81A","primaryTransparent":"rgba(155, 108, 167, 0.5)","purple":"#7D55EC","purpleLight":"rgba(125, 85, 236, 0.5)","rose":"#D1A2AB","roseLight":"rgba(209, 162, 171, 0.5)","sky":"#6AA1E0","skyLight":"rgba(106, 161, 224, 0.05)","teal":"#00B4CC","tealLight":"rgba(0, 180, 204, 0.5)","warning":"#DD9900","warningTransparent":"rgba(221, 153, 0, 0.5)","yellow":"#FFCC19","yellowLight":"rgba(255, 204, 25, 0.5)"},"background":{"chartBlock":"#2E3036","codeArea":"#1E1F24","codeTextarea":"#000000","content":"#1B1C20","danger":"#FFD0DB","dark":"#B1B8C3","header":"#1B1B1B","menu":"#0F4CFF","muted":"#F9FAFC","navigation":"#EDEDED","output":"#2E3036","page":"#1E1F24","panel":"#232429","popup":"#27292E","row":"#2C2C2C","row2":"#51535C","scrollbarThumb":"rgba(100, 100, 100, 0.5)","scrollbarThumbHover":"rgba(255, 255, 255, 0.3)","scrollbarTrack":"#2E3036","success":"#8ADE00","successLight":"rgb(138, 222, 0, 0.3)","table":"#292A2F"},"borders":{"button":"#454850","contrast":"#FFFFFF","danger":"#FF144D","dark":"#000000","info":"#FFCC19","light":"#2F3034","medium":"#1C1C1C","medium2":"#141414","success":"#2FCB52"},"brand":{"earth100":"#C6EEDB","earth200":"#9DDFBF","earth300":"#6BBF96","earth400":"#37A46F","earth400Transparent":"rgba(55, 164, 111, 0.4)","earth500":"#00954C","energy100":"#FFF4BA","energy200":"#FFED92","energy300":"#FFE662","energy400":"#FFDA19","energy400Transparent":"rgba(255, 218, 25, 0.04)","energy500":"#F6C000","fire100":"#FFD7E0","fire200":"#FFA3B9","fire300":"#FF547D","fire400":"#FF144D","fire400Transparent":"rgba(255, 20, 77, 0.4)","fire500":"#EB0032","stone100":"#F3E6D7","stone200":"#E3D4C2","stone400":"#BFA78B","stone500":"#AF8859","water100":"#BDCEFF","water200":"#81A1FF","water300":"#517DFF","water400":"#2A60FE","water400Transparent":"rgba(42, 96, 254, 0.4)","water500":"#0F4CFF","wind100":"#EEEAFF","wind200":"#CCC1F4","wind300":"#A698DD","wind400":"#6B50D7","wind400SuperTransparent":"rgba(107, 80, 215, 0.12)","wind400Transparent":"rgba(107, 80, 215, 0.4)","wind500":"#4E32BC"},"chart":{"backgroundPrimary":"#7D55EC","backgroundSecondary":"#FF144D","backgroundTertiary":"#86E2FF","button1":"#4877FF","button2":"#FFCC19","button3":"#8ADE00","button4":"#FF4FF8","button5":"#B98D95","lines":"#9B6CA7","primary":"#6B50D7","secondary":"#FF144D","tertiary":"#2A60FE"},"content":{"active":"#FFFFFF","default":"#AEAEAE","disabled":"rgba(255, 255, 255, 0.3)","inverted":"#2C2C2C","muted":"#787A85"},"elevation":{"visualizationAccent":"#996CFF","visualizationAccentAlt":"#C1ACF7"},"feature":{"active":"rgba(250, 248, 254, 0.14)","disabled":"rgba(201, 206, 218, 0.12)"},"icons":{"neutral":"#787878"},"interactive":{"activeBorder":"#060606","checked":"#060606","dangerBorder":"#FF144D","defaultBackground":"#36383F","defaultBorder":"#2E3036","disabledBorder":"#B1B8C3","focusBackground":"#B1B8C3","focusBorder":"#86E2FF","hoverBackground":"#4E4E4E","hoverBorder":"#B9BFCA","hoverOverlay":"rgba(255, 255, 255, 0.1)","linkPrimary":"#1752FF","linkPrimaryHover":"#4877FF","linkPrimaryLight":"#5982ff","linkSecondary":"#6B50D7","linkSecondaryDisabled":"#C4B9EF","linkText":"#6AA1E0","rowHoverBackground":"rgba(0, 0, 0, 0.1)","transparent":"rgba(255, 255, 255, 0)"},"loader":{"color":"#EB0032","colorInverted":"#8ADE00"},"logo":{"color":"#FFFFFF"},"monotone":{"black":"#060606","blackTransparent":"rgba(0, 0, 0, 0.6)","gray":"#B1B8C3","grey100":"#F2F2F2","grey200":"#D5D7DC","grey300":"#B4B8C0","grey400":"#70747C","grey500":"#51535C","purple":"#6B50D7","white":"#FFFFFF"},"neutral":{"n100":"#E7E8EA","n200":"#D8DADE","n300":"#CBCCD0","n400":"#BCBEC4","n500":"#AEB0B6"},"progress":{"negative":"#FF144D","positive":"#6B50D7"},"shadow":{"base":"12px 40px 120px rgba(106, 117, 139, 0.4)","frame":"0px 10px 40px rgba(0, 0, 0, 0.26)","menu":"4px 10px 20px rgba(6, 6, 6, 0.12)","popup":"10px 20px 40px rgba(0, 0, 0, 0.2)","small":"0px, 4px, rgba(0, 0, 0, 0.25)","window":"0px 10px 60px rgba(0, 0, 0, 0.7)"},"status":{"negative":"#FF144D","positive":"#24B400"},"text":{"fileBrowser":"#787A85"}}},"page":"/_error","query":{},"buildId":"
|
|
22
|
+
}</style><h1 class="next-error-h1" style="display:inline-block;margin:0;margin-right:20px;padding:10px 23px 10px 0;font-size:24px;font-weight:500;vertical-align:top">404<!-- --></h1><div style="display:inline-block;text-align:left;line-height:49px;height:49px;vertical-align:middle"><h2 style="font-size:14px;font-weight:normal;line-height:inherit;margin:0;padding:0">This page could not be found<!-- -->.<!-- --></h2></div></div></div><div></div><div></div><div></div><div class="ToastWrapper-sc-1a33ph1-0 kOVcuR"><div class="Toastify"></div></div></div><script id="__NEXT_DATA__" type="application/json">{"props":{"pageProps":{"statusCode":404},"currentTheme":{"accent":{"alert":"#F6540B","blue":"#4877FF","blueLight":"rgba(72, 119, 255, 0.5)","contentDefaultTransparent":"rgba(174, 174, 174, 0.5)","cyan":"#65E3FF","cyanLight":"rgba(101, 227, 255, 0.3)","cyanTransparent":"rgba(101, 227, 255, 0.12)","dbt":"#fc6949","dbtLight":"rgba(252, 105, 73, 0.5)","info":"#00ABFF","infoTransparent":"rgba(0, 171, 255, 0.5)","negative":"#FF1E59","negativeTransparent":"rgba(255, 30, 89, 0.3)","pink":"#FF4FF8","pinkLight":"rgb(255, 79, 248, 0.5)","positive":"#00A81A","primaryTransparent":"rgba(155, 108, 167, 0.5)","purple":"#7D55EC","purpleLight":"rgba(125, 85, 236, 0.5)","rose":"#D1A2AB","roseLight":"rgba(209, 162, 171, 0.5)","sky":"#6AA1E0","skyLight":"rgba(106, 161, 224, 0.05)","teal":"#00B4CC","tealLight":"rgba(0, 180, 204, 0.5)","warning":"#DD9900","warningTransparent":"rgba(221, 153, 0, 0.5)","yellow":"#FFCC19","yellowLight":"rgba(255, 204, 25, 0.5)"},"background":{"chartBlock":"#2E3036","codeArea":"#1E1F24","codeTextarea":"#000000","content":"#1B1C20","danger":"#FFD0DB","dark":"#B1B8C3","header":"#1B1B1B","menu":"#0F4CFF","muted":"#F9FAFC","navigation":"#EDEDED","output":"#2E3036","page":"#1E1F24","panel":"#232429","popup":"#27292E","row":"#2C2C2C","row2":"#51535C","scrollbarThumb":"rgba(100, 100, 100, 0.5)","scrollbarThumbHover":"rgba(255, 255, 255, 0.3)","scrollbarTrack":"#2E3036","success":"#8ADE00","successLight":"rgb(138, 222, 0, 0.3)","table":"#292A2F"},"borders":{"button":"#454850","contrast":"#FFFFFF","danger":"#FF144D","dark":"#000000","info":"#FFCC19","light":"#2F3034","medium":"#1C1C1C","medium2":"#141414","success":"#2FCB52"},"brand":{"earth100":"#C6EEDB","earth200":"#9DDFBF","earth300":"#6BBF96","earth400":"#37A46F","earth400Transparent":"rgba(55, 164, 111, 0.4)","earth500":"#00954C","energy100":"#FFF4BA","energy200":"#FFED92","energy300":"#FFE662","energy400":"#FFDA19","energy400Transparent":"rgba(255, 218, 25, 0.04)","energy500":"#F6C000","fire100":"#FFD7E0","fire200":"#FFA3B9","fire300":"#FF547D","fire400":"#FF144D","fire400Transparent":"rgba(255, 20, 77, 0.4)","fire500":"#EB0032","stone100":"#F3E6D7","stone200":"#E3D4C2","stone400":"#BFA78B","stone500":"#AF8859","water100":"#BDCEFF","water200":"#81A1FF","water300":"#517DFF","water400":"#2A60FE","water400Transparent":"rgba(42, 96, 254, 0.4)","water500":"#0F4CFF","wind100":"#EEEAFF","wind200":"#CCC1F4","wind300":"#A698DD","wind400":"#6B50D7","wind400SuperTransparent":"rgba(107, 80, 215, 0.12)","wind400Transparent":"rgba(107, 80, 215, 0.4)","wind500":"#4E32BC"},"chart":{"backgroundPrimary":"#7D55EC","backgroundSecondary":"#FF144D","backgroundTertiary":"#86E2FF","button1":"#4877FF","button2":"#FFCC19","button3":"#8ADE00","button4":"#FF4FF8","button5":"#B98D95","lines":"#9B6CA7","primary":"#6B50D7","secondary":"#FF144D","tertiary":"#2A60FE"},"content":{"active":"#FFFFFF","default":"#AEAEAE","disabled":"rgba(255, 255, 255, 0.3)","inverted":"#2C2C2C","muted":"#787A85"},"elevation":{"visualizationAccent":"#996CFF","visualizationAccentAlt":"#C1ACF7"},"feature":{"active":"rgba(250, 248, 254, 0.14)","disabled":"rgba(201, 206, 218, 0.12)"},"icons":{"neutral":"#787878"},"interactive":{"activeBorder":"#060606","checked":"#060606","dangerBorder":"#FF144D","defaultBackground":"#36383F","defaultBorder":"#2E3036","disabledBorder":"#B1B8C3","focusBackground":"#B1B8C3","focusBorder":"#86E2FF","hoverBackground":"#4E4E4E","hoverBorder":"#B9BFCA","hoverOverlay":"rgba(255, 255, 255, 0.1)","linkPrimary":"#1752FF","linkPrimaryHover":"#4877FF","linkPrimaryLight":"#5982ff","linkSecondary":"#6B50D7","linkSecondaryDisabled":"#C4B9EF","linkText":"#6AA1E0","rowHoverBackground":"rgba(0, 0, 0, 0.1)","transparent":"rgba(255, 255, 255, 0)"},"loader":{"color":"#EB0032","colorInverted":"#8ADE00"},"logo":{"color":"#FFFFFF"},"monotone":{"black":"#060606","blackTransparent":"rgba(0, 0, 0, 0.6)","gray":"#B1B8C3","grey100":"#F2F2F2","grey200":"#D5D7DC","grey300":"#B4B8C0","grey400":"#70747C","grey500":"#51535C","purple":"#6B50D7","white":"#FFFFFF"},"neutral":{"n100":"#E7E8EA","n200":"#D8DADE","n300":"#CBCCD0","n400":"#BCBEC4","n500":"#AEB0B6"},"progress":{"negative":"#FF144D","positive":"#6B50D7"},"shadow":{"base":"12px 40px 120px rgba(106, 117, 139, 0.4)","frame":"0px 10px 40px rgba(0, 0, 0, 0.26)","menu":"4px 10px 20px rgba(6, 6, 6, 0.12)","popup":"10px 20px 40px rgba(0, 0, 0, 0.2)","small":"0px, 4px, rgba(0, 0, 0, 0.25)","window":"0px 10px 60px rgba(0, 0, 0, 0.7)"},"status":{"negative":"#FF144D","positive":"#24B400"},"text":{"fileBrowser":"#787A85"}}},"page":"/_error","query":{},"buildId":"K62oaHK5x3k16vVxdvIWf","nextExport":true,"isFallback":false,"gip":true,"appGip":true,"scriptLoader":[]}</script></body></html>
|
|
@@ -1 +1 @@
|
|
|
1
|
-
self.__BUILD_MANIFEST=function(s,e,i,p,n,t,c,a,l,u,d,r,f,g,k,b,h,j,o,_,m,E,w,O,A,B){return{__rewrites:{beforeFiles:[],afterFiles:[{source:"/CLOUD_NOTEBOOK_BASE_PATH_PLACEHOLDER_/datasets",destination:j},{source:"/CLOUD_NOTEBOOK_BASE_PATH_PLACEHOLDER_",destination:j}],fallback:[]},"/":["static/chunks/pages/index-b6cd94a079629572.js"],"/_error":["static/chunks/pages/_error-235304e5badb19eb.js"],"/manage":[s,p,o,e,i,n,_,"static/chunks/pages/manage-eba67ac0edfdea1b.js"],"/pipeline-runs":[s,p,e,i,n,g,"static/chunks/pages/pipeline-runs-128dd171c6fff7ac.js"],"/pipelines":[s,p,e,i,n,"static/chunks/pages/pipelines-c73dab1d63317556.js"],"/pipelines/[pipeline]":["static/chunks/pages/pipelines/[pipeline]-ca9457e1a6bced4b.js"],"/pipelines/[pipeline]/backfills":[s,p,e,i,n,t,"static/chunks/pages/pipelines/[pipeline]/backfills-f08b51d9dc56eab5.js"],"/pipelines/[pipeline]/backfills/[...slug]":[s,p,c,a,l,d,r,h,e,i,n,t,u,f,g,"static/chunks/pages/pipelines/[pipeline]/backfills/[...slug]-9e519ad50f639e00.js"],"/pipelines/[pipeline]/edit":[m,s,p,c,a,l,d,r,k,E,w,o,"static/chunks/7107-b89772bb2a2669df.js",e,i,n,u,f,_,O,A,"static/chunks/pages/pipelines/[pipeline]/edit-
|
|
1
|
+
self.__BUILD_MANIFEST=function(s,e,i,p,n,t,c,a,l,u,d,r,f,g,k,b,h,j,o,_,m,E,w,O,A,B){return{__rewrites:{beforeFiles:[],afterFiles:[{source:"/CLOUD_NOTEBOOK_BASE_PATH_PLACEHOLDER_/datasets",destination:j},{source:"/CLOUD_NOTEBOOK_BASE_PATH_PLACEHOLDER_",destination:j}],fallback:[]},"/":["static/chunks/pages/index-b6cd94a079629572.js"],"/_error":["static/chunks/pages/_error-235304e5badb19eb.js"],"/manage":[s,p,o,e,i,n,_,"static/chunks/pages/manage-eba67ac0edfdea1b.js"],"/pipeline-runs":[s,p,e,i,n,g,"static/chunks/pages/pipeline-runs-128dd171c6fff7ac.js"],"/pipelines":[s,p,e,i,n,"static/chunks/pages/pipelines-c73dab1d63317556.js"],"/pipelines/[pipeline]":["static/chunks/pages/pipelines/[pipeline]-ca9457e1a6bced4b.js"],"/pipelines/[pipeline]/backfills":[s,p,e,i,n,t,"static/chunks/pages/pipelines/[pipeline]/backfills-f08b51d9dc56eab5.js"],"/pipelines/[pipeline]/backfills/[...slug]":[s,p,c,a,l,d,r,h,e,i,n,t,u,f,g,"static/chunks/pages/pipelines/[pipeline]/backfills/[...slug]-9e519ad50f639e00.js"],"/pipelines/[pipeline]/edit":[m,s,p,c,a,l,d,r,k,E,w,o,"static/chunks/7107-b89772bb2a2669df.js",e,i,n,u,f,_,O,A,"static/chunks/pages/pipelines/[pipeline]/edit-d90d32812b2be89e.js"],"/pipelines/[pipeline]/logs":[s,p,a,h,e,i,n,t,"static/chunks/pages/pipelines/[pipeline]/logs-0751190c3f720f8c.js"],"/pipelines/[pipeline]/monitors":[s,p,c,k,e,i,t,B,"static/chunks/pages/pipelines/[pipeline]/monitors-5244d6c5d80af010.js"],"/pipelines/[pipeline]/monitors/block-runs":[s,p,c,k,e,i,t,B,"static/chunks/pages/pipelines/[pipeline]/monitors/block-runs-302e1bd9fbf39994.js"],"/pipelines/[pipeline]/monitors/block-runtime":[m,s,p,c,k,"static/chunks/9832-f97919376d52e3bf.js",e,i,t,A,"static/chunks/pages/pipelines/[pipeline]/monitors/block-runtime-7635e7031335de0f.js"],"/pipelines/[pipeline]/runs":[s,p,a,l,d,e,i,n,t,u,g,"static/chunks/pages/pipelines/[pipeline]/runs-88994d0bcf41cf9e.js"],"/pipelines/[pipeline]/runs/[run]":[s,p,c,a,l,d,r,E,e,i,n,t,u,f,O,"static/chunks/pages/pipelines/[pipeline]/runs/[run]-90170de1e6fe8f04.js"],"/pipelines/[pipeline]/settings":[s,p,e,i,t,"static/chunks/pages/pipelines/[pipeline]/settings-3c42f05001416811.js"],"/pipelines/[pipeline]/syncs":[s,p,e,i,n,t,"static/chunks/pages/pipelines/[pipeline]/syncs-891c3d3f7a2b634b.js"],"/pipelines/[pipeline]/triggers":[s,p,c,a,l,r,e,i,n,t,u,f,"static/chunks/pages/pipelines/[pipeline]/triggers-05f43f9eaf6528db.js"],"/pipelines/[pipeline]/triggers/[...slug]":[s,p,c,a,l,d,r,h,e,i,n,t,u,f,g,"static/chunks/pages/pipelines/[pipeline]/triggers/[...slug]-456d84426ffe5025.js"],"/settings":["static/chunks/pages/settings-d594a66a568306da.js"],"/settings/account/profile":[s,e,i,b,"static/chunks/pages/settings/account/profile-f5626eb662337ad5.js"],"/settings/workspace/preferences":[s,e,i,b,"static/chunks/pages/settings/workspace/preferences-292e840e9386335e.js"],"/settings/workspace/sync-data":[s,e,i,b,"static/chunks/pages/settings/workspace/sync-data-353dc1ef2fadf70b.js"],"/settings/workspace/users":[s,p,e,i,n,b,"static/chunks/pages/settings/workspace/users-cd838435ed1b8383.js"],"/sign-in":[s,e,"static/chunks/pages/sign-in-56fb21d1b7d55ca9.js"],"/terminal":[s,e,i,"static/chunks/pages/terminal-d15ea617ef145b32.js"],"/test":[w,"static/chunks/pages/test-bd801bde63db7c9e.js"],"/triggers":[s,p,e,i,n,"static/chunks/pages/triggers-df30a0006fd775b8.js"],sortedPages:["/","/_app","/_error","/manage","/pipeline-runs","/pipelines","/pipelines/[pipeline]","/pipelines/[pipeline]/backfills","/pipelines/[pipeline]/backfills/[...slug]","/pipelines/[pipeline]/edit","/pipelines/[pipeline]/logs","/pipelines/[pipeline]/monitors","/pipelines/[pipeline]/monitors/block-runs","/pipelines/[pipeline]/monitors/block-runtime","/pipelines/[pipeline]/runs","/pipelines/[pipeline]/runs/[run]","/pipelines/[pipeline]/settings","/pipelines/[pipeline]/syncs","/pipelines/[pipeline]/triggers","/pipelines/[pipeline]/triggers/[...slug]","/settings","/settings/account/profile","/settings/workspace/preferences","/settings/workspace/sync-data","/settings/workspace/users","/sign-in","/terminal","/test","/triggers"]}}("static/chunks/844-1e171f361e63b36d.js","static/chunks/1424-fbc7f741303c0aa0.js","static/chunks/1005-38fa861ca54679db.js","static/chunks/7607-324c3a1e4e7d0628.js","static/chunks/8180-325d712ecbed97ce.js","static/chunks/547-833b70469e82cb2b.js","static/chunks/5896-10a676bcc86978cc.js","static/chunks/4804-01a10103ebe26ca8.js","static/chunks/1774-aa51ef1da7217ff9.js","static/chunks/8957-6edafc5a2521efdf.js","static/chunks/9350-1ff50f1d7b9ee754.js","static/chunks/5872-1767c45ee6690ae5.js","static/chunks/1286-a62050b3f897c6be.js","static/chunks/8312-71137409aea5d028.js","static/chunks/2714-1e79e9f2e998b544.js","static/chunks/3077-187a4db6073d95df.js","static/chunks/4495-4f0340aa82e0c623.js","/datasets","static/chunks/8789-4f858e520d46973b.js","static/chunks/5540-1025c6b3e65558b3.js","static/chunks/29107295-989a0767a635d9d5.js","static/chunks/2125-0b537dc53fe71b18.js","static/chunks/7011-81dd8269c4806d26.js","static/chunks/5682-c0d87b28bf381aae.js","static/chunks/6567-2488118bb39a9d99.js","static/chunks/9129-8ae88897c3817909.js"),self.__BUILD_MANIFEST_CB&&self.__BUILD_MANIFEST_CB();
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"use strict";(self.webpackChunk_N_E=self.webpackChunk_N_E||[]).push([[8312],{65597:function(e,n,i){i.d(n,{f:function(){return l}});var t=i(9518),r=i(23831),o=i(49125),u=i(73942),l=t.default.div.withConfig({displayName:"Tablestyle__PopupContainerStyle",componentId:"sc-8ammqd-0"})(["position:absolute;max-height:","px;z-index:10;border-radius:","px;padding:","px;"," "," "," ",""],58*o.iI,u.TR,2*o.iI,(function(e){return"\n box-shadow: ".concat((e.theme.shadow||r.Z.shadow).popup,";\n background-color: ").concat((e.theme.interactive||r.Z.interactive).defaultBackground,";\n ")}),(function(e){return e.leftOffset&&"\n left: ".concat(e.leftOffset,"px;\n ")}),(function(e){return e.topOffset&&"\n top: ".concat(e.topOffset,"px;\n ")}),(function(e){return e.width&&"\n width: ".concat(e.width,"px;\n ")}))},97496:function(e,n,i){var t=i(82394),r=i(75582),o=i(12691),u=i.n(o),l=i(34376),c=i.n(l),s=i(82684),d=i(83455),a=i(60328),p=i(38341),f=i(47999),h=i(93461),x=i(67971),j=i(10919),g=i(47409),b=i(86673),Z=i(54283),m=i(58180),_=i(19711),v=i(82531),C=i(23831),O=i(73942),E=i(10503),I=i(65597),k=i(93348),P=i(45838),w=i(49125),y=i(19395),N=i(24224),D=i(9736),A=i(96510),L=i(28598);function R(e,n){var i=Object.keys(e);if(Object.getOwnPropertySymbols){var t=Object.getOwnPropertySymbols(e);n&&(t=t.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),i.push.apply(i,t)}return i}function T(e){for(var n=1;n<arguments.length;n++){var i=null!=arguments[n]?arguments[n]:{};n%2?R(Object(i),!0).forEach((function(n){(0,t.Z)(e,n,i[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(i)):R(Object(i)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(i,n))}))}return e}function S(e){var n=e.cancelingRunId,i=e.disabled,t=e.isLoadingCancelPipeline,o=e.onCancel,u=e.onSuccess,l=e.pipelineRun,c=e.setCancelingRunId,p=e.setErrors,h=e.setShowConfirmationId,j=e.showConfirmationId,m=(0,D.Ct)(),P=l||{},y=P.id,N=P.pipeline_schedule_id,R=P.pipeline_schedule_token,T=P.pipeline_schedule_type,S=P.status,V=t&&y===n&&g.VO.RUNNING===S,U=(0,d.Db)(k.Xm.API===T&&R?v.ZP.pipeline_runs.pipeline_schedules.useCreateWithParent(N,R):v.ZP.pipeline_runs.pipeline_schedules.useCreate(N),{onSuccess:function(e){return(0,A.wD)(e,{callback:function(){u()},onErrorCallback:function(e,n){return null===p||void 0===p?void 0:p({errors:n,response:e})}})}}),F=(0,r.Z)(U,1)[0],M=(0,s.useCallback)((function(){h(null),F({pipeline_run:{backfill_id:null===l||void 0===l?void 0:l.backfill_id,event_variables:(null===l||void 0===l?void 0:l.event_variables)||{},execution_date:null===l||void 0===l?void 0:l.execution_date,pipeline_schedule_id:null===l||void 0===l?void 0:l.pipeline_schedule_id,pipeline_uuid:null===l||void 0===l?void 0:l.pipeline_uuid,variables:(null===l||void 0===l?void 0:l.variables)||{}}})}),[F,l,h]),B=(0,s.useCallback)((function(){h(null),c(y),o({id:y,status:g.VO.CANCELLED})}),[o,y,c,h]);return(0,L.jsxs)("div",{style:{position:"relative"},children:[(0,L.jsx)(a.Z,{backgroundColor:V&&C.Z.accent.yellow,beforeIcon:g.VO.INITIAL!==S&&!i&&(0,L.jsxs)(L.Fragment,{children:[g.VO.COMPLETED===S&&(0,L.jsx)(E.Jr,{size:2*w.iI}),[g.VO.FAILED,g.VO.CANCELLED].includes(S)&&(0,L.jsx)(E.Py,{inverted:g.VO.CANCELLED===S&&!m,size:2*w.iI}),[g.VO.RUNNING].includes(S)&&(0,L.jsx)(Z.Z,{color:V?C.Z.status.negative:C.Z.monotone.white,small:!0})]}),borderRadius:O.D7,danger:g.VO.FAILED===S&&!m,default:g.VO.INITIAL===S,disabled:i||m,loading:!l,onClick:function(){return h(y)},padding:"6px",primary:g.VO.RUNNING===S&&!V&&!m,warning:g.VO.CANCELLED===S&&!m,children:i?"Ready":V?"Canceling":g.Do[S]}),(0,L.jsx)(f.Z,{onClickOutside:function(){return h(null)},open:j===y,children:(0,L.jsxs)(I.f,{children:[[g.VO.RUNNING,g.VO.INITIAL].includes(S)&&(0,L.jsxs)(L.Fragment,{children:[(0,L.jsx)(_.ZP,{bold:!0,color:"#9ECBFF",children:"Run is in progress"}),(0,L.jsx)(b.Z,{mb:1}),(0,L.jsxs)(_.ZP,{children:["This pipeline run is currently ongoing. Retrying will cancel",(0,L.jsx)("br",{}),"the current pipeline run."]}),(0,L.jsx)(_.ZP,{}),(0,L.jsx)(b.Z,{mt:1,children:(0,L.jsxs)(x.Z,{children:[(0,L.jsx)(a.Z,{onClick:function(){B(),M()},children:"Retry run"}),(0,L.jsx)(b.Z,{ml:1}),(0,L.jsx)(a.Z,{onClick:B,children:"Cancel run"})]})})]}),[g.VO.CANCELLED,g.VO.FAILED,g.VO.COMPLETED].includes(S)&&(0,L.jsxs)(L.Fragment,{children:[(0,L.jsxs)(_.ZP,{bold:!0,color:"#9ECBFF",children:["Run ",S]}),(0,L.jsx)(b.Z,{mb:1}),(0,L.jsx)(_.ZP,{children:"Retry the run with changes you have made to the pipeline."}),(0,L.jsx)(b.Z,{mb:1}),(0,L.jsx)(a.Z,{onClick:M,children:"Retry run"})]})]})})]})}n.Z=function(e){var n=e.allowBulkSelect,i=e.disableRowSelect,o=e.emptyMessage,l=void 0===o?"No runs available":o,f=e.fetchPipelineRuns,Z=e.onClickRow,C=e.pipelineRuns,I=e.selectedRun,k=e.selectedRuns,D=e.setSelectedRuns,R=e.setErrors,V=(0,s.useState)(null),U=V[0],F=V[1],M=(0,s.useState)(null),B=M[0],H=M[1],z=(0,d.Db)((function(e){var n=e.id,i=e.status;return v.ZP.pipeline_runs.useUpdate(n)({pipeline_run:{status:i}})}),{onSuccess:function(e){return(0,A.wD)(e,{callback:function(){F(null),f()},onErrorCallback:function(e,n){F(null),null===R||void 0===R||R({errors:n,response:e})}})}}),Y=(0,r.Z)(z,2),G=Y[0],J=Y[1].isLoading,K=[null,1,2,1,1,null],q=[{uuid:"Status"},{uuid:"Pipeline UUID"},{uuid:"Date"},{uuid:"Trigger"},{uuid:"Block runs"},{uuid:"Completed"},{uuid:"Logs"}],Q=(0,s.useMemo)((function(){return C.every((function(e){var n=e.id;return!(null===k||void 0===k||!k[n])}))}),[C,k]);return n&&(K.unshift(null),q.unshift({label:function(){return(0,L.jsx)(p.Z,{checked:Q,onClick:function(){var e=(0,N.HK)(C||[],(function(e){return e.id}));D(Q?{}:e)}})},uuid:"Selected"})),!i&&Z&&(K.push(null),q.push({label:function(){return""},uuid:"action"})),(0,L.jsx)(P.cl,{minHeight:30*w.iI,overflowVisible:!!B,children:0===(null===C||void 0===C?void 0:C.length)?(0,L.jsx)(b.Z,{px:3,py:1,children:(0,L.jsx)(_.ZP,{bold:!0,default:!0,monospace:!0,muted:!0,children:l})}):(0,L.jsx)(m.Z,{columnFlex:K,columns:q,isSelectedRow:function(e){return!i&&C[e].id===(null===I||void 0===I?void 0:I.id)},onClickRow:i?null:Z,rowVerticalPadding:6,rows:null===C||void 0===C?void 0:C.map((function(e,r){var o=e.block_runs_count,l=e.completed_at,s=e.execution_date,d=e.id,m=e.pipeline_schedule_id,v=e.pipeline_schedule_name,I=e.pipeline_uuid,P=e.status,N=!d&&!P,A=[];if(A=r>0&&C[r-1].execution_date===e.execution_date&&C[r-1].pipeline_schedule_id===e.pipeline_schedule_id?[(0,L.jsx)(b.Z,{ml:1,children:(0,L.jsxs)(x.Z,{alignItems:"center",children:[(0,L.jsx)(E.TT,{size:2*w.iI,useStroke:!0}),(0,L.jsx)(a.Z,{borderRadius:O.D7,notClickable:!0,padding:"6px",children:(0,L.jsx)(_.ZP,{muted:!0,children:g.Do[P]})})]})},"row_status"),(0,L.jsx)(_.ZP,{default:!0,monospace:!0,muted:!0,children:I},"row_pipeline_uuid"),(0,L.jsx)(_.ZP,{default:!0,monospace:!0,muted:!0,children:"-"},"row_date_retry"),(0,L.jsx)(_.ZP,{default:!0,monospace:!0,muted:!0,children:"-"},"row_trigger_retry"),(0,L.jsx)(u(),{as:"/pipelines/".concat(I,"/runs/").concat(d),href:"/pipelines/[pipeline]/runs/[run]",passHref:!0,children:(0,L.jsx)(j.Z,{bold:!0,muted:!0,children:"See block runs (".concat(o,")")})},"row_block_runs"),(0,L.jsx)(_.ZP,{monospace:!0,muted:!0,children:l&&(0,y.Vx)(l)||"-"},"row_completed"),(0,L.jsx)(a.Z,{default:!0,iconOnly:!0,noBackground:!0,onClick:function(){return c().push("/pipelines/".concat(I,"/logs?pipeline_run_id[]=").concat(d))},children:(0,L.jsx)(E.B4,{default:!0,size:2*w.iI})},"row_logs")]:[(0,L.jsx)(S,{cancelingRunId:U,disabled:N,isLoadingCancelPipeline:J,onCancel:G,onSuccess:f,pipelineRun:e,setCancelingRunId:F,setErrors:R,setShowConfirmationId:H,showConfirmationId:B},"row_retry_button"),(0,L.jsx)(_.ZP,{default:!0,monospace:!0,children:I},"row_pipeline_uuid"),(0,L.jsx)(_.ZP,{default:!0,monospace:!0,children:s&&(0,y.Vx)(s)||"-"},"row_date"),(0,L.jsx)(u(),{as:"/pipelines/".concat(I,"/triggers/").concat(m),href:"/pipelines/[pipeline]/triggers/[...slug]",passHref:!0,children:(0,L.jsx)(j.Z,{bold:!0,sameColorAsText:!0,children:v})},"row_trigger"),(0,L.jsx)(u(),{as:"/pipelines/".concat(I,"/runs/").concat(d),href:"/pipelines/[pipeline]/runs/[run]",passHref:!0,children:(0,L.jsx)(j.Z,{bold:!0,disabled:N,sameColorAsText:!0,children:N?"":"See block runs (".concat(o,")")})},"row_block_runs"),(0,L.jsx)(_.ZP,{default:!0,monospace:!0,children:l&&(0,y.Vx)(l)||"-"},"row_completed"),(0,L.jsx)(a.Z,{default:!0,disabled:N,iconOnly:!0,noBackground:!0,onClick:function(){return c().push("/pipelines/".concat(I,"/logs?pipeline_run_id[]=").concat(d))},children:(0,L.jsx)(E.B4,{default:!0,size:2*w.iI})},"row_item_13")],n){var V=!(null===k||void 0===k||!k[d]);A.unshift((0,L.jsx)(p.Z,{checked:V,onClick:function(){D((function(n){return T(T({},n),{},(0,t.Z)({},d,V?null:e))}))}},"selected-pipeline-run-".concat(d)))}return!i&&Z&&A.push((0,L.jsx)(h.Z,{flex:1,justifyContent:"flex-end",children:(0,L.jsx)(E._Q,{default:!0,size:2*w.iI})})),A})),uuid:"pipeline-runs"})})}},19395:function(e,n,i){i.d(n,{IJ:function(){return d},Vx:function(){return p},eI:function(){return a},gU:function(){return h},tL:function(){return f},vJ:function(){return x}});var t,r,o=i(82394),u=i(92083),l=i.n(u);function c(e,n){var i=Object.keys(e);if(Object.getOwnPropertySymbols){var t=Object.getOwnPropertySymbols(e);n&&(t=t.filter((function(n){return Object.getOwnPropertyDescriptor(e,n).enumerable}))),i.push.apply(i,t)}return i}function s(e){for(var n=1;n<arguments.length;n++){var i=null!=arguments[n]?arguments[n]:{};n%2?c(Object(i),!0).forEach((function(n){(0,o.Z)(e,n,i[n])})):Object.getOwnPropertyDescriptors?Object.defineProperties(e,Object.getOwnPropertyDescriptors(i)):c(Object(i)).forEach((function(n){Object.defineProperty(e,n,Object.getOwnPropertyDescriptor(i,n))}))}return e}function d(e){return null===e||void 0===e?void 0:e.reduce((function(e,n){var i=n.block_uuid,t=n.completed_at,r=n.started_at,u=n.status,c=null;r&&t&&(c=l()(t).valueOf()-l()(r).valueOf());return s(s({},e),{},(0,o.Z)({},i,{runtime:c,status:u}))}),{})}function a(e){if(!e)return null;var n=new Date(l()(e).valueOf()),i=Date.UTC(n.getFullYear(),n.getMonth(),n.getDate(),n.getHours(),n.getMinutes(),n.getSeconds());return new Date(i)}function p(e){return"string"!==typeof e?e:a(e.split("+")[0]).toISOString().split(".")[0]}!function(e){e.DAY="day",e.HOUR="hour",e.MINUTE="minute",e.SECOND="second"}(r||(r={}));var f=(t={},(0,o.Z)(t,r.DAY,86400),(0,o.Z)(t,r.HOUR,3600),(0,o.Z)(t,r.MINUTE,60),(0,o.Z)(t,r.SECOND,1),t);function h(e){var n=r.SECOND,i=e;return e%86400===0?(i/=86400,n=r.DAY):e%3600===0?(i/=3600,n=r.HOUR):e%60===0&&(i/=60,n=r.MINUTE),{time:i,unit:n}}function x(e,n){return e*f[n]}},51099:function(e,n,i){i.d(n,{Q:function(){return d}});i(82684);var t=i(60328),r=i(67971),o=i(86673),u=i(10503),l=i(73899),c=i(49125),s=i(28598),d=22;n.Z=function(e){var n=e.page,i=e.maxPages,d=e.onUpdate,a=e.totalPages,p=[],f=i;if(f>a)p=Array.from({length:a},(function(e,n){return n}));else{var h=Math.floor(f/2),x=n-h;n+h>=a?(x=a-f+2,f-=2):n-h<=0?(x=0,f-=2):(f-=4,x=n-Math.floor(f/2)),p=Array.from({length:f},(function(e,n){return n+x}))}return(0,s.jsx)(s.Fragment,{children:a>0&&(0,s.jsxs)(r.Z,{alignItems:"center",children:[(0,s.jsx)(t.Z,{disabled:0===n,onClick:function(){return d(n-1)},children:(0,s.jsx)(u.Hd,{size:1.5*c.iI,stroke:"#AEAEAE"})}),!p.includes(0)&&(0,s.jsxs)(s.Fragment,{children:[(0,s.jsx)(o.Z,{ml:1,children:(0,s.jsx)(t.Z,{onClick:function(){return d(0)},borderLess:!0,noBackground:!0,children:1})},0),!p.includes(1)&&(0,s.jsx)(o.Z,{ml:1,children:(0,s.jsx)(t.Z,{notClickable:!0,noBackground:!0,noPadding:!0,children:"..."})},0)]}),p.map((function(e){return(0,s.jsx)(o.Z,{ml:1,children:(0,s.jsx)(t.Z,{onClick:function(){e!==n&&d(e)},notClickable:e===n,backgroundColor:e===n&&l.a$,borderLess:!0,noBackground:!0,children:e+1})},e)})),!p.includes(a-1)&&(0,s.jsxs)(s.Fragment,{children:[!p.includes(a-2)&&(0,s.jsx)(o.Z,{ml:1,children:(0,s.jsx)(t.Z,{notClickable:!0,noBackground:!0,noPadding:!0,children:"..."})},0),(0,s.jsx)(o.Z,{ml:1,children:(0,s.jsx)(t.Z,{onClick:function(){return d(a-1)},borderLess:!0,noBackground:!0,children:a})},a-1)]}),(0,s.jsx)(o.Z,{ml:1}),(0,s.jsx)(t.Z,{disabled:n===a-1,onClick:function(){return d(n+1)},children:(0,s.jsx)(u.Kw,{size:1.5*c.iI,stroke:"#AEAEAE"})})]})})}},47409:function(e,n,i){i.d(n,{Az:function(){return l},BF:function(){return u},Do:function(){return s},VO:function(){return o},sZ:function(){return c}});var t,r=i(82394),o=i(66050).V,u=[o.INITIAL,o.RUNNING],l=[o.CANCELLED,o.COMPLETED,o.FAILED],c="__mage_variables",s=(t={},(0,r.Z)(t,o.CANCELLED,"Cancelled"),(0,r.Z)(t,o.COMPLETED,"Done"),(0,r.Z)(t,o.FAILED,"Failed"),(0,r.Z)(t,o.INITIAL,"Ready"),(0,r.Z)(t,o.RUNNING,"Running"),t)},93348:function(e,n,i){i.d(n,{TR:function(){return a},U5:function(){return c},Xm:function(){return o},Z4:function(){return d},fq:function(){return l},kJ:function(){return s}});var t,r,o,u=i(82394);!function(e){e.API="api",e.EVENT="event",e.TIME="time"}(o||(o={}));var l,c,s,d=(t={},(0,u.Z)(t,o.API,(function(){return"API"})),(0,u.Z)(t,o.EVENT,(function(){return"event"})),(0,u.Z)(t,o.TIME,(function(){return"schedule"})),t);!function(e){e.ACTIVE="active",e.INACTIVE="inactive"}(l||(l={})),function(e){e.ONCE="@once",e.HOURLY="@hourly",e.DAILY="@daily",e.WEEKLY="@weekly",e.MONTHLY="@monthly"}(c||(c={})),function(e){e.CREATED_AT="created_at",e.NAME="name",e.PIPELINE="pipeline_uuid",e.STATUS="status",e.TYPE="schedule_type"}(s||(s={}));var a=(r={},(0,u.Z)(r,s.CREATED_AT,"Created at"),(0,u.Z)(r,s.NAME,"Name"),(0,u.Z)(r,s.PIPELINE,"Pipeline"),(0,u.Z)(r,s.STATUS,"Status"),(0,u.Z)(r,s.TYPE,"Type"),r)}}]);
|