tinybird 0.0.1.dev130__py3-none-any.whl → 0.0.1.dev132__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 tinybird might be problematic. Click here for more details.

@@ -910,6 +910,9 @@ Ready? """
910
910
  success_delete_rows_datasource = success_message(
911
911
  "** Data Source '{datasource}' rows deleted matching condition \"{delete_condition}\""
912
912
  )
913
+ success_delete_rows_datasource_no_rows = success_message(
914
+ "** Data Source '{datasource}' no rows to delete matching condition \"{delete_condition}\""
915
+ )
913
916
  success_dry_run_delete_rows_datasource = success_message(
914
917
  "** [DRY RUN] Data Source '{datasource}' rows '{rows}' matching condition \"{delete_condition}\" to be deleted"
915
918
  )
tinybird/tb/__cli__.py CHANGED
@@ -4,5 +4,5 @@ __description__ = 'Tinybird Command Line Tool'
4
4
  __url__ = 'https://www.tinybird.co/docs/cli/introduction.html'
5
5
  __author__ = 'Tinybird'
6
6
  __author_email__ = 'support@tinybird.co'
7
- __version__ = '0.0.1.dev130'
8
- __revision__ = '6134043'
7
+ __version__ = '0.0.1.dev132'
8
+ __revision__ = '1b7e7c7'
tinybird/tb/client.py CHANGED
@@ -568,12 +568,8 @@ class TinyB:
568
568
  populate_subset: bool = False,
569
569
  populate_condition: Optional[str] = None,
570
570
  truncate: bool = True,
571
- unlink_on_populate_error: bool = False,
572
571
  ):
573
- params: Dict[str, Any] = {
574
- "truncate": "true" if truncate else "false",
575
- "unlink_on_populate_error": "true" if unlink_on_populate_error else "false",
576
- }
572
+ params: Dict[str, Any] = {"truncate": "true" if truncate else "false", "unlink_on_populate_error": "false"}
577
573
  if populate_subset:
578
574
  params.update({"populate_subset": populate_subset})
579
575
  if populate_condition:
@@ -43,7 +43,7 @@ jobs:
43
43
  working-directory: '{{ data_project_dir }}'
44
44
  services:
45
45
  tinybird:
46
- image: tinybirdco/tinybird-local:beta
46
+ image: tinybirdco/tinybird-local:latest
47
47
  ports:
48
48
  - 7181:7181
49
49
  steps:
@@ -118,7 +118,7 @@ tinybird_ci_workflow:
118
118
  - tb test run
119
119
  - tb --cloud --host ${{! TINYBIRD_HOST }} --token ${{! TINYBIRD_TOKEN }} deploy --check
120
120
  services:
121
- - name: tinybirdco/tinybird-local:beta
121
+ - name: tinybirdco/tinybird-local:latest
122
122
  alias: tinybird-local
123
123
  """
124
124
 
@@ -183,21 +183,21 @@ class DatafileKind(Enum):
183
183
  return extension_map[extension]
184
184
 
185
185
 
186
- KAFKA_PARAMS = {
186
+ REQUIRED_KAFKA_PARAMS = {
187
187
  "kafka_connection_name",
188
188
  "kafka_topic",
189
189
  "kafka_group_id",
190
190
  }
191
191
 
192
- REQUIRED_KAFKA_PARAMS = KAFKA_PARAMS
192
+ KAFKA_PARAMS = REQUIRED_KAFKA_PARAMS
193
193
 
194
- S3_PARAMS = {
194
+ REQUIRED_S3_PARAMS = {
195
195
  "import_connection_name",
196
196
  "import_schedule",
197
197
  "import_bucket_uri",
198
198
  }
199
199
 
200
- REQUIRED_S3_PARAMS = S3_PARAMS
200
+ S3_PARAMS = REQUIRED_S3_PARAMS.union({"import_from_timestamp"})
201
201
 
202
202
 
203
203
  class Datafile:
@@ -294,7 +294,7 @@ class Datafile:
294
294
  )
295
295
  # Validate S3 params
296
296
  if any(param in node for param in S3_PARAMS) and not all(param in node for param in REQUIRED_S3_PARAMS):
297
- missing = [param for param in S3_PARAMS if param not in node]
297
+ missing = [param for param in REQUIRED_S3_PARAMS if param not in node]
298
298
  raise DatafileValidationError(
299
299
  f"Some S3 params have been provided, but the following required ones are missing: {missing}"
300
300
  )
@@ -322,6 +322,13 @@ async def datasource_delete_rows(ctx, datasource_name, sql_condition, yes, wait,
322
322
  )
323
323
  )
324
324
  return
325
+ if res is None: # 204,205
326
+ click.echo(
327
+ FeedbackManager.success_delete_rows_datasource_no_rows(
328
+ datasource=datasource_name, delete_condition=sql_condition
329
+ )
330
+ )
331
+ return
325
332
  job_id = res["job_id"]
326
333
  job_url = res["job_url"]
327
334
  click.echo(FeedbackManager.info_datasource_delete_rows_job_url(url=job_url))
@@ -686,6 +686,7 @@ Please enter the ARN of the role you just created"""
686
686
  warning_confirm_delete_rows_datasource = prompt_message(
687
687
  "Do you want to delete {datasource}'s rows matching condition \"{delete_condition}\"? Once deleted, they can't be recovered"
688
688
  )
689
+
689
690
  warning_confirm_delete_pipe = prompt_message('Do you want to remove the pipe "{pipe}"?')
690
691
  warning_confirm_copy_pipe = prompt_message('Do you want to run a copy job from the pipe "{pipe}"?')
691
692
  warning_confirm_sink_job = prompt_message('Do you want to run a sink job from the pipe "{pipe}"?')
@@ -1004,6 +1005,9 @@ Please enter the ARN of the role you just created"""
1004
1005
  success_delete_rows_datasource = success_message(
1005
1006
  "** Data Source '{datasource}' rows deleted matching condition \"{delete_condition}\""
1006
1007
  )
1008
+ success_delete_rows_datasource_no_rows = success_message(
1009
+ "** Data Source '{datasource}' no rows to delete matching condition \"{delete_condition}\""
1010
+ )
1007
1011
  success_dry_run_delete_rows_datasource = success_message(
1008
1012
  "** [DRY RUN] Data Source '{datasource}' rows '{rows}' matching condition \"{delete_condition}\" to be deleted"
1009
1013
  )
@@ -9,7 +9,7 @@ from tinybird.tb.client import AuthNoTokenException, TinyB
9
9
  from tinybird.tb.modules.config import CLIConfig
10
10
  from tinybird.tb.modules.exceptions import CLIException
11
11
 
12
- TB_IMAGE_NAME = "tinybirdco/tinybird-local:beta"
12
+ TB_IMAGE_NAME = "tinybirdco/tinybird-local:latest"
13
13
  TB_CONTAINER_NAME = "tinybird-local"
14
14
  TB_LOCAL_PORT = int(os.getenv("TB_LOCAL_PORT", 7181))
15
15
  TB_LOCAL_HOST = f"http://localhost:{TB_LOCAL_PORT}"
@@ -7,7 +7,6 @@ from tinybird.tb.client import TinyB
7
7
  from tinybird.tb.modules.cli import cli
8
8
  from tinybird.tb.modules.common import (
9
9
  coro,
10
- create_tb_client,
11
10
  echo_safe_humanfriendly_tables_format_smart_table,
12
11
  wait_job,
13
12
  )
@@ -84,12 +83,6 @@ async def materialization_ls(ctx: click.Context, match: str, format_: str):
84
83
  @click.option(
85
84
  "--truncate", is_flag=True, default=False, help="Truncates the materialized data source before populating it."
86
85
  )
87
- @click.option(
88
- "--unlink-on-populate-error",
89
- is_flag=True,
90
- default=False,
91
- help="If the populate job fails the materialized view is unlinked and new data won't be ingested in the materialized view. First time a populate job fails, the materialized view is always unlinked.",
92
- )
93
86
  @click.option(
94
87
  "--wait",
95
88
  is_flag=True,
@@ -104,11 +97,10 @@ async def pipe_populate(
104
97
  node: str,
105
98
  sql_condition: str,
106
99
  truncate: bool,
107
- unlink_on_populate_error: bool,
108
100
  wait: bool,
109
101
  ):
110
102
  """Populate the result of a Materialized Node into the target materialized view"""
111
- cl = create_tb_client(ctx)
103
+ cl: TinyB = ctx.ensure_object(dict)["client"]
112
104
 
113
105
  pipe = await cl.pipe(pipe_name)
114
106
 
@@ -126,13 +118,7 @@ async def pipe_populate(
126
118
 
127
119
  node = materialized_ids[0]
128
120
 
129
- response = await cl.populate_node(
130
- pipe_name,
131
- node,
132
- populate_condition=sql_condition,
133
- truncate=truncate,
134
- unlink_on_populate_error=unlink_on_populate_error,
135
- )
121
+ response = await cl.populate_node(pipe_name, node, populate_condition=sql_condition, truncate=truncate)
136
122
  if "job" not in response:
137
123
  raise CLIPipeException(response)
138
124
 
@@ -20,7 +20,6 @@ from tinybird.prompts import test_create_prompt
20
20
  from tinybird.tb.client import TinyB
21
21
  from tinybird.tb.modules.build import process
22
22
  from tinybird.tb.modules.cli import cli
23
- from tinybird.tb.modules.common import coro
24
23
  from tinybird.tb.modules.config import CLIConfig
25
24
  from tinybird.tb.modules.exceptions import CLIException
26
25
  from tinybird.tb.modules.feedback_manager import FeedbackManager
@@ -71,13 +70,15 @@ def test(ctx: click.Context) -> None:
71
70
  "--prompt", type=str, default="Create a test for the selected pipe", help="Prompt to be used to create the test"
72
71
  )
73
72
  @click.pass_context
74
- @coro
75
- async def test_create(ctx: click.Context, name_or_filename: str, prompt: str) -> None:
73
+ def test_create(ctx: click.Context, name_or_filename: str, prompt: str) -> None:
76
74
  """
77
75
  Create a test for an existing pipe
78
76
  """
79
77
  project: Project = ctx.ensure_object(dict)["project"]
80
78
  client: TinyB = ctx.ensure_object(dict)["client"]
79
+ click.echo(FeedbackManager.highlight(message="\n» Building project"))
80
+ process(project=project, tb_client=client, watch=False, silent=True)
81
+ click.echo(FeedbackManager.info(message="✓ Done!"))
81
82
  config = CLIConfig.get_project_config()
82
83
  root_path = project.path
83
84
  folder = project.folder
@@ -100,7 +101,7 @@ async def test_create(ctx: click.Context, name_or_filename: str, prompt: str) ->
100
101
  pipe_name = pipe_path.stem
101
102
  click.echo(FeedbackManager.highlight(message=f"\n» Creating tests for {pipe_name} endpoint..."))
102
103
  pipe_content = pipe_path.read_text()
103
- pipe = await client._req(f"/v0/pipes/{pipe_name}")
104
+ pipe = asyncio.run(client._req(f"/v0/pipes/{pipe_name}"))
104
105
  parameters = set([param["name"] for node in pipe["nodes"] for param in node["params"]])
105
106
 
106
107
  system_prompt = test_create_prompt.format(
@@ -129,7 +130,7 @@ async def test_create(ctx: click.Context, name_or_filename: str, prompt: str) ->
129
130
 
130
131
  response = None
131
132
  try:
132
- response = await get_pipe_data(client, pipe_name=pipe_name, test_params=test["parameters"])
133
+ response = asyncio.run(get_pipe_data(client, pipe_name=pipe_name, test_params=test["parameters"]))
133
134
  except Exception:
134
135
  pass
135
136
 
@@ -163,12 +164,14 @@ async def test_create(ctx: click.Context, name_or_filename: str, prompt: str) ->
163
164
  )
164
165
  @click.argument("pipe", type=str)
165
166
  @click.pass_context
166
- @coro
167
- async def test_update(ctx: click.Context, pipe: str) -> None:
167
+ def test_update(ctx: click.Context, pipe: str) -> None:
168
168
  try:
169
169
  client: TinyB = ctx.ensure_object(dict)["client"]
170
170
  project: Project = ctx.ensure_object(dict)["project"]
171
171
  folder = project.folder
172
+ click.echo(FeedbackManager.highlight(message="\n» Building project"))
173
+ process(project=project, tb_client=client, watch=False, silent=True)
174
+ click.echo(FeedbackManager.info(message="✓ Done!"))
172
175
  pipe_tests_path = Path(pipe)
173
176
  pipe_name = pipe
174
177
  if pipe_tests_path.suffix == ".yaml":
@@ -183,7 +186,7 @@ async def test_update(ctx: click.Context, pipe: str) -> None:
183
186
  test_params = test["parameters"].split("?")[1] if "?" in test["parameters"] else test["parameters"]
184
187
  response = None
185
188
  try:
186
- response = await get_pipe_data(client, pipe_name=pipe_name, test_params=test_params)
189
+ response = asyncio.run(get_pipe_data(client, pipe_name=pipe_name, test_params=test_params))
187
190
  except Exception:
188
191
  continue
189
192
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: tinybird
3
- Version: 0.0.1.dev130
3
+ Version: 0.0.1.dev132
4
4
  Summary: Tinybird Command Line Tool
5
5
  Home-page: https://www.tinybird.co/docs/cli/introduction.html
6
6
  Author: Tinybird
@@ -1,7 +1,7 @@
1
1
  tinybird/connectors.py,sha256=7Gjms7b5MAaBFGi3xytsJurCylprONpFcYrzp4Fw2Rc,15241
2
2
  tinybird/context.py,sha256=FfqYfrGX_I7PKGTQo93utaKPDNVYWelg4Hsp3evX5wM,1291
3
3
  tinybird/datatypes.py,sha256=r4WCvspmrXTJHiPjjyOTiZyZl31FO3Ynkwq4LQsYm6E,11059
4
- tinybird/feedback_manager.py,sha256=a_ZhFX2zcB7vRknIcmHKMdQbb0c7TqlTBQ_5hPuWh88,69267
4
+ tinybird/feedback_manager.py,sha256=PNWgeLuwNCvPMkjkRt5j1l4ax1I3NYxtSoH5izN0R5Q,69435
5
5
  tinybird/git_settings.py,sha256=Sw_8rGmribEFJ4Z_6idrVytxpFYk7ez8ei0qHULzs3E,3934
6
6
  tinybird/prompts.py,sha256=6J-dE0gOSOaIwdEwJUhEQS1Ztllz_qZnpnrv-tDoJWA,35511
7
7
  tinybird/sql.py,sha256=C_B81wwv3BsqyXGhF5oTk9DcTUkrp7NwIFqSzd3Dmjc,47854
@@ -12,33 +12,33 @@ tinybird/syncasync.py,sha256=IPnOx6lMbf9SNddN1eBtssg8vCLHMt76SuZ6YNYm-Yk,27761
12
12
  tinybird/tornado_template.py,sha256=jjNVDMnkYFWXflmT8KU_Ssbo5vR8KQq3EJMk5vYgXRw,41959
13
13
  tinybird/ch_utils/constants.py,sha256=aYvg2C_WxYWsnqPdZB1ZFoIr8ZY-XjUXYyHKE9Ansj0,3890
14
14
  tinybird/ch_utils/engine.py,sha256=BZuPM7MFS7vaEKK5tOMR2bwSAgJudPrJt27uVEwZmTY,40512
15
- tinybird/tb/__cli__.py,sha256=-AtcXiCw4SKisvTlgGN0aOq4Rv2DwqyD7CnyzPOBK5w,252
15
+ tinybird/tb/__cli__.py,sha256=oGseGD1BpjIsbfv7MK9OQ6bk6IsHyIvx7ge95AfHy0s,252
16
16
  tinybird/tb/cli.py,sha256=Xw5EhwCQu6Xx55DzoJsZJODdi7tkA391mii-xgGnpEU,1066
17
- tinybird/tb/client.py,sha256=oa0pR46WvzDoqpyaDU-lRu33I0cZhtZVDqDQz2RHMWQ,56085
17
+ tinybird/tb/client.py,sha256=aaPKq5C77e72kR7IMv9WrvnvNki8mKMOTi9EsCp0eUc,55962
18
18
  tinybird/tb/config.py,sha256=iIia7F67UI9p51Ja4jALonyttIi4eH7PwOn3HvcvOb8,4008
19
19
  tinybird/tb/modules/auth.py,sha256=_OeYnmTH83lnqCgQEdS6K0bx1KBUeRmZk2M7JnRmWpk,9037
20
20
  tinybird/tb/modules/build.py,sha256=KqXMJJW8JEuTlH3KyV1ylCLUob_oFhwDTM7bYLgrK9s,17359
21
- tinybird/tb/modules/cicd.py,sha256=A7zJZF9HkJ6NPokplgNjmefMrpUlRbFxBbjMZhq5OTI,7110
21
+ tinybird/tb/modules/cicd.py,sha256=Ug7LijuHDIqKR6rm8OLZispWp75Zv6TyonAme8K9jaI,7114
22
22
  tinybird/tb/modules/cli.py,sha256=Y_5hu9xwyTIZw4bQoe0MYLnRIzmR7hUjql_oZBxd4Qg,13407
23
23
  tinybird/tb/modules/common.py,sha256=bdKNjHtQKcsZFyZIsLY8vEoTD0Xf-1UNBnh1pAyWPZU,83456
24
24
  tinybird/tb/modules/config.py,sha256=ziqW_t_mRVvWOd85VoB4vKyvgMkEfpXDf9H4v38p2xc,11422
25
25
  tinybird/tb/modules/connection.py,sha256=7qJGhTG0U__ZhY2HBWP8F1Z6tXrxwgAU-eOup6pXhhU,6905
26
26
  tinybird/tb/modules/copy.py,sha256=2Mm4FWKehOG7CoOhiF1m9UZJgJn0W1_cMolqju8ONYg,5805
27
27
  tinybird/tb/modules/create.py,sha256=PDAuzeBiqN9q7GY2p4zcMWDojdNjz6_aJgI5dxR-FVM,16701
28
- tinybird/tb/modules/datasource.py,sha256=XvY7iTRefG9iEBLQkqBSF47bK-CrLu2AzDnigGI2mSc,16925
28
+ tinybird/tb/modules/datasource.py,sha256=IzWF7wpsmIEYt6NwjYFHkuiAqgC7fXM0kzR8du8xxz0,17214
29
29
  tinybird/tb/modules/deployment.py,sha256=4Zt7jPbqt18fB5kPx7DbO91Bh6xzBBTEUFY7O89shuU,19560
30
30
  tinybird/tb/modules/endpoint.py,sha256=XySDt3pk66vxOZ0egUfz4bY8bEk3BjOXkv-L0OIJ3sc,12083
31
31
  tinybird/tb/modules/exceptions.py,sha256=4A2sSjCEqKUMqpP3WI00zouCWW4uLaghXXLZBSw04mY,3363
32
- tinybird/tb/modules/feedback_manager.py,sha256=8I6n5JFPS4xP-Pfb9iu7hqx5VX773uGDXH2E5QeANeg,74179
32
+ tinybird/tb/modules/feedback_manager.py,sha256=B8RsN2fV6ZwcKBXVvS4gVkwl-Mb0QgezVeMc3vHNvDI,74348
33
33
  tinybird/tb/modules/infra.py,sha256=eX0StUipaXaxIhMxO82cnAnFKTCa7EPOt-e8pWoSLX0,33206
34
34
  tinybird/tb/modules/job.py,sha256=n4dSSBgnA8NqD7srGahf2xRj6wxkmX9Vl0J-QJ_a2w0,2966
35
35
  tinybird/tb/modules/llm.py,sha256=KfsCYmKeW1VQz0iDZhGKCRkQv_Y3kTHh6JuxvofOguE,1076
36
36
  tinybird/tb/modules/llm_utils.py,sha256=nS9r4FAElJw8yXtmdYrx-rtI2zXR8qXfi1QqUDCfxvg,3469
37
37
  tinybird/tb/modules/local.py,sha256=702U0p9pPFwZHkVNEsp2Y5gJxBKtOvd2XoS4dn1p-m8,11111
38
- tinybird/tb/modules/local_common.py,sha256=DqTHHcq4JitohYvHiqCz2Av4REPhmwwS6naQTOf1Mdk,3191
38
+ tinybird/tb/modules/local_common.py,sha256=75Mje9_vkq7VehSKHS1zJB8UyVsJpqDFmuJGWwQmrXQ,3193
39
39
  tinybird/tb/modules/login.py,sha256=rLYdV7MLCTT1F4VBAWGv6SO9efMiM9-977ayLecUzjI,6842
40
40
  tinybird/tb/modules/logout.py,sha256=ULooy1cDBD02-r7voZmhV7udA0ML5tVuflJyShrh56Y,1022
41
- tinybird/tb/modules/materialization.py,sha256=yIns8ypdFVLWwuCcvAZPBChsuJl2DIxJe6M8UCBHNsU,5752
41
+ tinybird/tb/modules/materialization.py,sha256=GvnItYXzBKRZjcuOIuOEwtdM4LxYbTH4M5vGZR233Hc,5323
42
42
  tinybird/tb/modules/mock.py,sha256=KScG2WohfCjxakBS2Rfb4-7QKS4OSkoVgiMyUvkCWWE,4924
43
43
  tinybird/tb/modules/open.py,sha256=OuctINN77oexpSjth9uoIZPCelKO4Li-yyVxeSnk1io,1371
44
44
  tinybird/tb/modules/pipe.py,sha256=AQKEDagO6e3psPVjJkS_MDbn8aK-apAiLp26k7jgAV0,2432
@@ -49,7 +49,7 @@ tinybird/tb/modules/shell.py,sha256=cvT0EKpnSRHfuo3avykBRMsCwLBqmzSR7sNUdbQ6lXA,
49
49
  tinybird/tb/modules/table.py,sha256=4XrtjM-N0zfNtxVkbvLDQQazno1EPXnxTyo7llivfXk,11035
50
50
  tinybird/tb/modules/tag.py,sha256=anPmMUBc-TbFovlpFi8GPkKA18y7Y0GczMsMms5TZsU,3502
51
51
  tinybird/tb/modules/telemetry.py,sha256=FcFw_70-0SyC_2BdToF_sjVpXpMD7i00fCm2SO4cHx8,11397
52
- tinybird/tb/modules/test.py,sha256=yJcRtlhQPRXNbifj36v7Lpr1gElL2x7Ke4O5vFazX5o,11755
52
+ tinybird/tb/modules/test.py,sha256=9qNIM5bosYlaZYd5rorC5zcrTmjZeTUSuOIP-wkjXXI,12132
53
53
  tinybird/tb/modules/token.py,sha256=2fmKwu10_M0pqs6YmJVeILR9ZQB0ejRAET86agASbKM,13488
54
54
  tinybird/tb/modules/watch.py,sha256=_92co0BjTikQuy7MbHr4TDu9A75QdHsrAO8v7DlYLg4,8898
55
55
  tinybird/tb/modules/workspace.py,sha256=SlK08psp0tu5t_URHyIczm696buW6KD6FPs9Lg1aNRE,6614
@@ -58,7 +58,7 @@ tinybird/tb/modules/datafile/build.py,sha256=d_h3pRFDPFrDKGhpFx2iejY25GuB2k8yfNo
58
58
  tinybird/tb/modules/datafile/build_common.py,sha256=LU24kAQmxDJIyoIapDaYG-SU3P4FrMG9UBf8m9PgVSI,4565
59
59
  tinybird/tb/modules/datafile/build_datasource.py,sha256=nXEQ0qHdq2ai7jJTv8H2d7eeDPBYzLn8VY7zMtOYb8M,17382
60
60
  tinybird/tb/modules/datafile/build_pipe.py,sha256=6Cwjf3BKEF3-oQ9PipsQfK-Z43nSwtA4qJAUoysI7Uc,11385
61
- tinybird/tb/modules/datafile/common.py,sha256=R22oaipDTFOHlkvzy26RFsOVFlSVMQ7RR63C0bs6VeU,85542
61
+ tinybird/tb/modules/datafile/common.py,sha256=pmomEsAb6qzIfub86ZSvLJnVDcmpSg4M4kOocjVtqpQ,85602
62
62
  tinybird/tb/modules/datafile/diff.py,sha256=MTmj53RYjER4neLgWVjabn-FKVFgh8h8uYiBo55lFQg,6757
63
63
  tinybird/tb/modules/datafile/exceptions.py,sha256=8rw2umdZjtby85QbuRKFO5ETz_eRHwUY5l7eHsy1wnI,556
64
64
  tinybird/tb/modules/datafile/fixture.py,sha256=DrRWivcvo_1rn7LlVUnHcXccdgx9yVj63mzBkUwCzk8,1420
@@ -78,8 +78,8 @@ tinybird/tb_cli_modules/config.py,sha256=IsgdtFRnUrkY8-Zo32lmk6O7u3bHie1QCxLwgp4
78
78
  tinybird/tb_cli_modules/exceptions.py,sha256=pmucP4kTF4irIt7dXiG-FcnI-o3mvDusPmch1L8RCWk,3367
79
79
  tinybird/tb_cli_modules/regions.py,sha256=QjsL5H6Kg-qr0aYVLrvb1STeJ5Sx_sjvbOYO0LrEGMk,166
80
80
  tinybird/tb_cli_modules/telemetry.py,sha256=Hh2Io8ZPROSunbOLuMvuIFU4TqwWPmQTqal4WS09K1A,10449
81
- tinybird-0.0.1.dev130.dist-info/METADATA,sha256=LS-tfAXGt_ltN6df38UOgl_52cY-n-utbyOzLvMbLSM,1612
82
- tinybird-0.0.1.dev130.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
83
- tinybird-0.0.1.dev130.dist-info/entry_points.txt,sha256=LwdHU6TfKx4Qs7BqqtaczEZbImgU7Abe9Lp920zb_fo,43
84
- tinybird-0.0.1.dev130.dist-info/top_level.txt,sha256=VqqqEmkAy7UNaD8-V51FCoMMWXjLUlR0IstvK7tJYVY,54
85
- tinybird-0.0.1.dev130.dist-info/RECORD,,
81
+ tinybird-0.0.1.dev132.dist-info/METADATA,sha256=dOzbUCj5EukHPN7y4-N3AiXFKRnQNUYz9QgSONHq30I,1612
82
+ tinybird-0.0.1.dev132.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
83
+ tinybird-0.0.1.dev132.dist-info/entry_points.txt,sha256=LwdHU6TfKx4Qs7BqqtaczEZbImgU7Abe9Lp920zb_fo,43
84
+ tinybird-0.0.1.dev132.dist-info/top_level.txt,sha256=VqqqEmkAy7UNaD8-V51FCoMMWXjLUlR0IstvK7tJYVY,54
85
+ tinybird-0.0.1.dev132.dist-info/RECORD,,