zrb 1.2.0__py3-none-any.whl → 1.2.1__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.
- zrb/builtin/project/add/fastapp/fastapp_task.py +1 -1
- zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/column/add_column_task.py +40 -40
- zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/column/add_column_util.py +6 -10
- zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/entity/add_entity_util.py +76 -56
- zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/module/add_module_util.py +16 -10
- zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/common/logger_factory.py +1 -1
- zrb/builtin/project/add/fastapp/fastapp_util.py +6 -2
- {zrb-1.2.0.dist-info → zrb-1.2.1.dist-info}/METADATA +2 -3
- {zrb-1.2.0.dist-info → zrb-1.2.1.dist-info}/RECORD +11 -11
- {zrb-1.2.0.dist-info → zrb-1.2.1.dist-info}/WHEEL +0 -0
- {zrb-1.2.0.dist-info → zrb-1.2.1.dist-info}/entry_points.txt +0 -0
@@ -62,7 +62,7 @@ scaffold_fastapp = Scaffolder(
|
|
62
62
|
),
|
63
63
|
# Register fastapp's tasks to project's zrb_init (project_dir/zrb_init.py)
|
64
64
|
ContentTransformer(
|
65
|
-
name="
|
65
|
+
name="transform-zrb-init",
|
66
66
|
match=is_project_zrb_init_file,
|
67
67
|
transform=update_project_zrb_init_file,
|
68
68
|
),
|
@@ -1,12 +1,12 @@
|
|
1
1
|
import os
|
2
2
|
|
3
3
|
from my_app_name._zrb.column.add_column_util import (
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
4
|
+
update_my_app_name_schema,
|
5
|
+
update_my_app_name_test_create,
|
6
|
+
update_my_app_name_test_delete,
|
7
|
+
update_my_app_name_test_read,
|
8
|
+
update_my_app_name_test_update,
|
9
|
+
update_my_app_name_ui,
|
10
10
|
)
|
11
11
|
from my_app_name._zrb.config import APP_DIR
|
12
12
|
from my_app_name._zrb.format_task import format_my_app_name_code
|
@@ -23,14 +23,14 @@ from zrb import AnyContext, Task, make_task
|
|
23
23
|
|
24
24
|
|
25
25
|
@make_task(
|
26
|
-
name="validate-add-
|
26
|
+
name="validate-add-my-app-name-column",
|
27
27
|
input=[
|
28
28
|
existing_module_input,
|
29
29
|
existing_entity_input,
|
30
30
|
],
|
31
31
|
retries=0,
|
32
32
|
)
|
33
|
-
async def
|
33
|
+
async def validate_add_my_app_name_column(ctx: AnyContext):
|
34
34
|
module_name = ctx.input.module
|
35
35
|
if module_name not in get_existing_module_names():
|
36
36
|
raise ValueError(f"Module not exist: {module_name}")
|
@@ -39,96 +39,96 @@ async def validate_add_fastapp_column(ctx: AnyContext):
|
|
39
39
|
raise ValueError(f"Schema not exist: {schema_name}")
|
40
40
|
|
41
41
|
|
42
|
-
|
43
|
-
name="update-
|
42
|
+
update_my_app_name_schema_task = Task(
|
43
|
+
name="update-my-app-name-schema",
|
44
44
|
input=[
|
45
45
|
existing_module_input,
|
46
46
|
existing_entity_input,
|
47
47
|
new_column_input,
|
48
48
|
new_column_type_input,
|
49
49
|
],
|
50
|
-
action=
|
50
|
+
action=update_my_app_name_schema,
|
51
51
|
retries=0,
|
52
|
-
upstream=
|
52
|
+
upstream=validate_add_my_app_name_column,
|
53
53
|
)
|
54
54
|
|
55
|
-
|
56
|
-
name="update-
|
55
|
+
update_my_app_name_ui_task = Task(
|
56
|
+
name="update-my-app-name-ui",
|
57
57
|
input=[
|
58
58
|
existing_module_input,
|
59
59
|
existing_entity_input,
|
60
60
|
new_column_input,
|
61
61
|
new_column_type_input,
|
62
62
|
],
|
63
|
-
action=
|
63
|
+
action=update_my_app_name_ui,
|
64
64
|
retries=0,
|
65
|
-
upstream=
|
65
|
+
upstream=validate_add_my_app_name_column,
|
66
66
|
)
|
67
67
|
|
68
|
-
|
69
|
-
name="update-
|
68
|
+
update_my_app_name_test_create_task = Task(
|
69
|
+
name="update-my-app-name-test-create",
|
70
70
|
input=[
|
71
71
|
existing_module_input,
|
72
72
|
existing_entity_input,
|
73
73
|
new_column_input,
|
74
74
|
new_column_type_input,
|
75
75
|
],
|
76
|
-
action=
|
76
|
+
action=update_my_app_name_test_create,
|
77
77
|
retries=0,
|
78
|
-
upstream=
|
78
|
+
upstream=validate_add_my_app_name_column,
|
79
79
|
)
|
80
80
|
|
81
|
-
|
82
|
-
name="update-
|
81
|
+
update_my_app_name_test_read_task = Task(
|
82
|
+
name="update-my-app-name-test-read",
|
83
83
|
input=[
|
84
84
|
existing_module_input,
|
85
85
|
existing_entity_input,
|
86
86
|
new_column_input,
|
87
87
|
new_column_type_input,
|
88
88
|
],
|
89
|
-
action=
|
89
|
+
action=update_my_app_name_test_read,
|
90
90
|
retries=0,
|
91
|
-
upstream=
|
91
|
+
upstream=validate_add_my_app_name_column,
|
92
92
|
)
|
93
93
|
|
94
|
-
|
95
|
-
name="update-
|
94
|
+
update_my_app_name_test_update_task = Task(
|
95
|
+
name="update-my-app-name-test-update",
|
96
96
|
input=[
|
97
97
|
existing_module_input,
|
98
98
|
existing_entity_input,
|
99
99
|
new_column_input,
|
100
100
|
new_column_type_input,
|
101
101
|
],
|
102
|
-
action=
|
102
|
+
action=update_my_app_name_test_update,
|
103
103
|
retries=0,
|
104
|
-
upstream=
|
104
|
+
upstream=validate_add_my_app_name_column,
|
105
105
|
)
|
106
106
|
|
107
|
-
|
108
|
-
name="update-
|
107
|
+
update_my_app_name_test_delete_task = Task(
|
108
|
+
name="update-my-app-name-test-delete",
|
109
109
|
input=[
|
110
110
|
existing_module_input,
|
111
111
|
existing_entity_input,
|
112
112
|
new_column_input,
|
113
113
|
new_column_type_input,
|
114
114
|
],
|
115
|
-
action=
|
115
|
+
action=update_my_app_name_test_delete,
|
116
116
|
retries=0,
|
117
|
-
upstream=
|
117
|
+
upstream=validate_add_my_app_name_column,
|
118
118
|
)
|
119
119
|
|
120
120
|
|
121
|
-
|
121
|
+
add_my_app_name_column = app_create_group.add_task(
|
122
122
|
Task(
|
123
|
-
name="add-
|
123
|
+
name="add-my-app-name-column",
|
124
124
|
description="📊 Create new column on an entity",
|
125
125
|
upstream=[
|
126
|
-
|
127
|
-
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
126
|
+
update_my_app_name_schema_task,
|
127
|
+
update_my_app_name_ui_task,
|
128
|
+
update_my_app_name_test_create_task,
|
129
|
+
update_my_app_name_test_read_task,
|
130
|
+
update_my_app_name_test_update_task,
|
131
|
+
update_my_app_name_test_delete_task,
|
132
132
|
],
|
133
133
|
successor=format_my_app_name_code,
|
134
134
|
retries=0,
|
@@ -6,11 +6,7 @@ from bs4 import BeautifulSoup, formatter
|
|
6
6
|
from my_app_name._zrb.config import APP_DIR
|
7
7
|
|
8
8
|
from zrb.context.any_context import AnyContext
|
9
|
-
from zrb.util.codemod.modify_class import append_code_to_class
|
10
|
-
from zrb.util.codemod.modify_class_parent import prepend_parent_class
|
11
9
|
from zrb.util.codemod.modify_class_property import append_property_to_class
|
12
|
-
from zrb.util.codemod.modify_function import append_code_to_function
|
13
|
-
from zrb.util.codemod.modify_module import prepend_code_to_module
|
14
10
|
from zrb.util.file import read_file, write_file
|
15
11
|
from zrb.util.string.conversion import (
|
16
12
|
to_human_case,
|
@@ -20,7 +16,7 @@ from zrb.util.string.conversion import (
|
|
20
16
|
)
|
21
17
|
|
22
18
|
|
23
|
-
def
|
19
|
+
def update_my_app_name_schema(ctx: AnyContext):
|
24
20
|
snake_entity_name = to_snake_case(ctx.input.entity)
|
25
21
|
pascal_entity_name = to_pascal_case(ctx.input.entity)
|
26
22
|
snake_column_name = to_snake_case(ctx.input.column)
|
@@ -64,7 +60,7 @@ def _get_default_column_value(data_type: str) -> str:
|
|
64
60
|
return "None"
|
65
61
|
|
66
62
|
|
67
|
-
def
|
63
|
+
def update_my_app_name_ui(ctx: AnyContext):
|
68
64
|
kebab_module_name = to_kebab_case(ctx.input.module)
|
69
65
|
kebab_entity_name = to_kebab_case(ctx.input.entity)
|
70
66
|
snake_column_name = to_snake_case(ctx.input.column)
|
@@ -237,7 +233,7 @@ def _alter_js_function_returned_array(
|
|
237
233
|
return new_html
|
238
234
|
|
239
235
|
|
240
|
-
def
|
236
|
+
def update_my_app_name_test_create(ctx: AnyContext):
|
241
237
|
snake_module_name = to_snake_case(ctx.input.module)
|
242
238
|
snake_entity_name = to_snake_case(ctx.input.entity)
|
243
239
|
test_file_path = os.path.join(
|
@@ -253,7 +249,7 @@ def update_fastapp_test_create(ctx: AnyContext):
|
|
253
249
|
write_file(test_file_path, new_code)
|
254
250
|
|
255
251
|
|
256
|
-
def
|
252
|
+
def update_my_app_name_test_read(ctx: AnyContext):
|
257
253
|
snake_module_name = to_snake_case(ctx.input.module)
|
258
254
|
snake_entity_name = to_snake_case(ctx.input.entity)
|
259
255
|
test_file_path = os.path.join(
|
@@ -269,7 +265,7 @@ def update_fastapp_test_read(ctx: AnyContext):
|
|
269
265
|
write_file(test_file_path, new_code)
|
270
266
|
|
271
267
|
|
272
|
-
def
|
268
|
+
def update_my_app_name_test_update(ctx: AnyContext):
|
273
269
|
snake_module_name = to_snake_case(ctx.input.module)
|
274
270
|
snake_entity_name = to_snake_case(ctx.input.entity)
|
275
271
|
test_file_path = os.path.join(
|
@@ -285,7 +281,7 @@ def update_fastapp_test_update(ctx: AnyContext):
|
|
285
281
|
write_file(test_file_path, new_code)
|
286
282
|
|
287
283
|
|
288
|
-
def
|
284
|
+
def update_my_app_name_test_delete(ctx: AnyContext):
|
289
285
|
snake_module_name = to_snake_case(ctx.input.module)
|
290
286
|
snake_entity_name = to_snake_case(ctx.input.entity)
|
291
287
|
test_file_path = os.path.join(
|
@@ -17,8 +17,8 @@ from zrb.util.string.conversion import (
|
|
17
17
|
|
18
18
|
|
19
19
|
def is_gateway_navigation_config_file(ctx: AnyContext, file_path: str) -> bool:
|
20
|
-
return file_path == os.path.
|
21
|
-
APP_DIR, "module", "gateway", "config", "navigation.py"
|
20
|
+
return file_path == os.path.abspath(
|
21
|
+
os.path.join(APP_DIR, "module", "gateway", "config", "navigation.py")
|
22
22
|
)
|
23
23
|
|
24
24
|
|
@@ -76,106 +76,126 @@ def get_existing_auth_migration_xcom_key(ctx: AnyContext) -> str:
|
|
76
76
|
|
77
77
|
def is_in_app_schema_dir(ctx: AnyContext, file_path: str) -> bool:
|
78
78
|
return file_path.startswith(
|
79
|
-
os.path.
|
79
|
+
os.path.abspath(
|
80
|
+
os.path.join(APP_DIR, "schema", to_snake_case(ctx.input.entity))
|
81
|
+
)
|
80
82
|
)
|
81
83
|
|
82
84
|
|
83
85
|
def is_in_module_entity_test_dir(ctx: AnyContext, file_path: str) -> bool:
|
84
86
|
return file_path.startswith(
|
85
|
-
os.path.
|
86
|
-
|
87
|
-
|
88
|
-
|
89
|
-
|
87
|
+
os.path.abspath(
|
88
|
+
os.path.join(
|
89
|
+
APP_DIR,
|
90
|
+
"test",
|
91
|
+
to_snake_case(ctx.input.module),
|
92
|
+
to_snake_case(ctx.input.entity),
|
93
|
+
)
|
90
94
|
)
|
91
95
|
)
|
92
96
|
|
93
97
|
|
94
98
|
def is_in_module_entity_dir(ctx: AnyContext, file_path: str) -> bool:
|
95
99
|
return file_path.startswith(
|
96
|
-
os.path.
|
97
|
-
|
98
|
-
|
99
|
-
|
100
|
-
|
101
|
-
|
100
|
+
os.path.abspath(
|
101
|
+
os.path.join(
|
102
|
+
APP_DIR,
|
103
|
+
"module",
|
104
|
+
to_snake_case(ctx.input.module),
|
105
|
+
"service",
|
106
|
+
to_snake_case(ctx.input.entity),
|
107
|
+
)
|
102
108
|
)
|
103
109
|
)
|
104
110
|
|
105
111
|
|
106
112
|
def is_module_route_file(ctx: AnyContext, file_path: str) -> bool:
|
107
|
-
module_route_file = os.path.
|
108
|
-
|
109
|
-
|
110
|
-
|
111
|
-
|
113
|
+
module_route_file = os.path.abspath(
|
114
|
+
os.path.join(
|
115
|
+
APP_DIR,
|
116
|
+
"module",
|
117
|
+
to_snake_case(ctx.input.module),
|
118
|
+
"route.py",
|
119
|
+
)
|
112
120
|
)
|
113
121
|
return file_path == module_route_file
|
114
122
|
|
115
123
|
|
116
124
|
def is_module_migration_metadata_file(ctx: AnyContext, file_path: str) -> bool:
|
117
|
-
module_migration_metadata_file = os.path.
|
118
|
-
|
119
|
-
|
120
|
-
|
121
|
-
|
125
|
+
module_migration_metadata_file = os.path.abspath(
|
126
|
+
os.path.join(
|
127
|
+
APP_DIR,
|
128
|
+
"module",
|
129
|
+
to_snake_case(ctx.input.module),
|
130
|
+
"migration_metadata.py",
|
131
|
+
)
|
122
132
|
)
|
123
133
|
return file_path == module_migration_metadata_file
|
124
134
|
|
125
135
|
|
126
136
|
def is_module_client_file(ctx: AnyContext, file_path: str) -> bool:
|
127
|
-
module_any_client_file = os.path.
|
128
|
-
|
129
|
-
|
130
|
-
|
131
|
-
|
132
|
-
|
137
|
+
module_any_client_file = os.path.abspath(
|
138
|
+
os.path.join(
|
139
|
+
APP_DIR,
|
140
|
+
"module",
|
141
|
+
to_snake_case(ctx.input.module),
|
142
|
+
"client",
|
143
|
+
f"{to_snake_case(ctx.input.module)}_client.py",
|
144
|
+
)
|
133
145
|
)
|
134
146
|
return file_path == module_any_client_file
|
135
147
|
|
136
148
|
|
137
149
|
def is_module_api_client_file(ctx: AnyContext, file_path: str) -> bool:
|
138
|
-
module_api_client_file = os.path.
|
139
|
-
|
140
|
-
|
141
|
-
|
142
|
-
|
143
|
-
|
150
|
+
module_api_client_file = os.path.abspath(
|
151
|
+
os.path.join(
|
152
|
+
APP_DIR,
|
153
|
+
"module",
|
154
|
+
to_snake_case(ctx.input.module),
|
155
|
+
"client",
|
156
|
+
f"{to_snake_case(ctx.input.module)}_api_client.py",
|
157
|
+
)
|
144
158
|
)
|
145
159
|
return file_path == module_api_client_file
|
146
160
|
|
147
161
|
|
148
162
|
def is_module_direct_client_file(ctx: AnyContext, file_path: str) -> bool:
|
149
|
-
module_direct_client_file = os.path.
|
150
|
-
|
151
|
-
|
152
|
-
|
153
|
-
|
154
|
-
|
163
|
+
module_direct_client_file = os.path.abspath(
|
164
|
+
os.path.join(
|
165
|
+
APP_DIR,
|
166
|
+
"module",
|
167
|
+
to_snake_case(ctx.input.module),
|
168
|
+
"client",
|
169
|
+
f"{to_snake_case(ctx.input.module)}_direct_client.py",
|
170
|
+
)
|
155
171
|
)
|
156
172
|
return file_path == module_direct_client_file
|
157
173
|
|
158
174
|
|
159
175
|
def is_module_gateway_subroute_file(ctx: AnyContext, file_path: str) -> bool:
|
160
|
-
module_gateway_subroute_file = os.path.
|
161
|
-
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
176
|
+
module_gateway_subroute_file = os.path.abspath(
|
177
|
+
os.path.join(
|
178
|
+
APP_DIR,
|
179
|
+
"module",
|
180
|
+
"gateway",
|
181
|
+
"subroute",
|
182
|
+
f"{to_snake_case(ctx.input.module)}.py",
|
183
|
+
)
|
166
184
|
)
|
167
185
|
return file_path == module_gateway_subroute_file
|
168
186
|
|
169
187
|
|
170
188
|
def is_module_gateway_subroute_view_file(ctx: AnyContext, file_path: str) -> bool:
|
171
|
-
module_gateway_subroute_file = os.path.
|
172
|
-
|
173
|
-
|
174
|
-
|
175
|
-
|
176
|
-
|
177
|
-
|
178
|
-
|
189
|
+
module_gateway_subroute_file = os.path.abspath(
|
190
|
+
os.path.join(
|
191
|
+
APP_DIR,
|
192
|
+
"module",
|
193
|
+
"gateway",
|
194
|
+
"view",
|
195
|
+
"content",
|
196
|
+
f"{to_kebab_case(ctx.input.module)}",
|
197
|
+
f"{to_kebab_case(ctx.input.entity)}.html",
|
198
|
+
)
|
179
199
|
)
|
180
200
|
return file_path == module_gateway_subroute_file
|
181
201
|
|
@@ -16,41 +16,47 @@ from zrb.util.string.conversion import (
|
|
16
16
|
|
17
17
|
|
18
18
|
def is_app_config_file(ctx: AnyContext, file_path: str) -> bool:
|
19
|
-
return file_path == os.path.join(APP_DIR, "config.py")
|
19
|
+
return file_path == os.path.abspath(os.path.join(APP_DIR, "config.py"))
|
20
20
|
|
21
21
|
|
22
22
|
def is_app_main_file(ctx: AnyContext, file_path: str) -> bool:
|
23
|
-
return file_path == os.path.join(APP_DIR, "main.py")
|
23
|
+
return file_path == os.path.abspath(os.path.join(APP_DIR, "main.py"))
|
24
24
|
|
25
25
|
|
26
26
|
def is_gateway_route_file(ctx: AnyContext, file_path: str) -> bool:
|
27
|
-
return file_path == os.path.
|
27
|
+
return file_path == os.path.abspath(
|
28
|
+
os.path.join(APP_DIR, "module", "gateway", "route.py")
|
29
|
+
)
|
28
30
|
|
29
31
|
|
30
32
|
def is_gateway_navigation_config_file(ctx: AnyContext, file_path: str) -> bool:
|
31
|
-
return file_path == os.path.
|
32
|
-
APP_DIR, "module", "gateway", "config", "navigation.py"
|
33
|
+
return file_path == os.path.abspath(
|
34
|
+
os.path.join(APP_DIR, "module", "gateway", "config", "navigation.py")
|
33
35
|
)
|
34
36
|
|
35
37
|
|
36
38
|
def is_app_zrb_task_file(ctx: AnyContext, file_path: str) -> bool:
|
37
|
-
return file_path == os.path.join(APP_DIR, "_zrb", "task.py")
|
39
|
+
return file_path == os.path.abspath(os.path.join(APP_DIR, "_zrb", "task.py"))
|
38
40
|
|
39
41
|
|
40
42
|
def is_app_zrb_config_file(ctx: AnyContext, file_path: str) -> bool:
|
41
|
-
return file_path == os.path.join(APP_DIR, "_zrb", "config.py")
|
43
|
+
return file_path == os.path.abspath(os.path.join(APP_DIR, "_zrb", "config.py"))
|
42
44
|
|
43
45
|
|
44
46
|
def is_in_module_dir(ctx: AnyContext, file_path: str) -> bool:
|
45
47
|
return file_path.startswith(
|
46
|
-
os.path.
|
48
|
+
os.path.abspath(
|
49
|
+
os.path.join(APP_DIR, "module", to_snake_case(ctx.input.module))
|
50
|
+
)
|
47
51
|
)
|
48
52
|
|
49
53
|
|
50
54
|
def is_gateway_module_subroute_file(ctx: AnyContext, file_path: str) -> bool:
|
51
55
|
module_subroute_file_name = f"{to_snake_case(ctx.input.module)}.py"
|
52
|
-
return file_path == os.path.
|
53
|
-
|
56
|
+
return file_path == os.path.abspath(
|
57
|
+
os.path.join(
|
58
|
+
APP_DIR, "module", "gateway", "subroute", module_subroute_file_name
|
59
|
+
)
|
54
60
|
)
|
55
61
|
|
56
62
|
|
@@ -7,12 +7,16 @@ from zrb.util.string.conversion import double_quote, to_snake_case
|
|
7
7
|
|
8
8
|
def is_in_project_app_dir(ctx: AnyContext, file_path: str) -> bool:
|
9
9
|
return file_path.startswith(
|
10
|
-
os.path.
|
10
|
+
os.path.abspath(
|
11
|
+
os.path.join(ctx.input.project_dir, to_snake_case(ctx.input.app))
|
12
|
+
)
|
11
13
|
)
|
12
14
|
|
13
15
|
|
14
16
|
def is_project_zrb_init_file(ctx: AnyContext, file_path: str) -> bool:
|
15
|
-
return file_path == os.path.
|
17
|
+
return file_path == os.path.abspath(
|
18
|
+
os.path.join(ctx.input.project_dir, "zrb_init.py")
|
19
|
+
)
|
16
20
|
|
17
21
|
|
18
22
|
def update_project_zrb_init_file(ctx: AnyContext, zrb_init_path: str):
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: zrb
|
3
|
-
Version: 1.2.
|
3
|
+
Version: 1.2.1
|
4
4
|
Summary: Your Automation Powerhouse
|
5
5
|
Home-page: https://github.com/state-alchemists/zrb
|
6
6
|
License: AGPL-3.0-or-later
|
@@ -79,8 +79,7 @@ pip install --pre zrb
|
|
79
79
|
Alternatively, you can also use our installation script to install Zrb along with some prerequisites:
|
80
80
|
|
81
81
|
```bash
|
82
|
-
bash -c "$(curl -fsSL https://raw.githubusercontent.com/state-alchemists/zrb/
|
83
|
-
# bash -c "$(curl -fsSL https://raw.githubusercontent.com/state-alchemists/zrb/main/install.sh)"
|
82
|
+
bash -c "$(curl -fsSL https://raw.githubusercontent.com/state-alchemists/zrb/main/install.sh)"
|
84
83
|
```
|
85
84
|
|
86
85
|
# 🐞 Bug Report + Feature Request
|
@@ -16,17 +16,17 @@ zrb/builtin/llm/tool/web.py,sha256=N2HYuXbKPUpjVAq_UnQMbUrTIE8u0Ut3TeQadZ7_NJc,2
|
|
16
16
|
zrb/builtin/md5.py,sha256=0pNlrfZA0wlZlHvFHLgyqN0JZJWGKQIF5oXxO44_OJk,949
|
17
17
|
zrb/builtin/project/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
18
18
|
zrb/builtin/project/add/fastapp/fastapp_input.py,sha256=MKlWR_LxWhM_DcULCtLfL_IjTxpDnDBkn9KIqNmajFs,310
|
19
|
-
zrb/builtin/project/add/fastapp/fastapp_task.py,sha256=
|
19
|
+
zrb/builtin/project/add/fastapp/fastapp_task.py,sha256=z6hZ3j-dxUG7F3IH40rQAOvyhmemfF-3KU-XcYEuTlI,2697
|
20
20
|
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/.coveragerc,sha256=MsTf0Vlt_pxV-j4mNh-TxSo7sTI_GaVS_oM4tksIykE,181
|
21
21
|
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/.flake8,sha256=fgvHmuskgYiCvHZHaFtiyOWW0zasVrs0P-sFHOq3W5U,56
|
22
22
|
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/.gitignore,sha256=D-ISOzaKlN_VzeZP5f8aznDSJX4p8PCtaK2JWM5yY1c,61
|
23
23
|
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/README.md,sha256=MAo7ZFbg7LLiAfQbXcippMgjJ2-VXMKtiTDEZ3I4AAg,221
|
24
24
|
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
25
|
-
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/column/add_column_task.py,sha256=
|
26
|
-
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/column/add_column_util.py,sha256=
|
25
|
+
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/column/add_column_task.py,sha256=j24bFnqMCZrYx67HMtOAJMBb2P1-ymvo8_oFjP0uTxg,3726
|
26
|
+
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/column/add_column_util.py,sha256=vJoO24tydx87uVUTYsuLCm-EaFcS7dmyk8OhwuFZ_QI,10176
|
27
27
|
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/config.py,sha256=uviB4q2iZjoU9_fA1O4VrjpuVAqx2gj5hjospJ0Xzeg,885
|
28
28
|
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/entity/add_entity_task.py,sha256=W0ziCIhSwUbu8vBABEcTvLrTAegJmRbqui6TzG1xqlo,11183
|
29
|
-
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/entity/add_entity_util.py,sha256=
|
29
|
+
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/entity/add_entity_util.py,sha256=M7FSCdq-dzXqa22kFO6HwMIJ2XlHMSys-I0-K1_90xE,16683
|
30
30
|
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/entity/template/app_template/module/gateway/view/content/my-module/my-entity.html,sha256=lAXQWT5I2kzyWDHX4Rrp6F-y0Ck5xbMDJsDQChKgDpo,10910
|
31
31
|
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/entity/template/app_template/module/my_module/service/my_entity/my_entity_service.py,sha256=PgwTsHMHRiFS7JQeAe6wWmIHk6s-OfIybx_mJfuT_G4,3918
|
32
32
|
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/entity/template/app_template/module/my_module/service/my_entity/my_entity_service_factory.py,sha256=lnhhpc_AflWnCQbLkYORrshiqIA5wy4SdxDuUxmn7Ts,372
|
@@ -45,7 +45,7 @@ zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/format_task.py
|
|
45
45
|
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/group.py,sha256=S0sKnnABSGy3YzaExH40xJjm4UsEX6AyDE1u94ewk6A,648
|
46
46
|
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/input.py,sha256=_LagLs2R9Eao4xJ1d2i_Yj1ELu7uZGNJnK90ruvY0O8,1511
|
47
47
|
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/module/add_module_task.py,sha256=_1sJd91bViSfEbpxNgqeCE7gBHP7yH9i7uJbPu9OvtY,4058
|
48
|
-
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/module/add_module_util.py,sha256=
|
48
|
+
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/module/add_module_util.py,sha256=rNfXTtL6-Yhok1tp48cZYIX6Z3isEytaXCMd6B3c9pA,8487
|
49
49
|
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/module/template/app_template/module/gateway/subroute/my_module.py,sha256=_5EgmEeATL5ZSX5MSJixkDgRQKGNTPG6watEuzv3eQI,418
|
50
50
|
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/module/template/app_template/module/my_module/alembic.ini,sha256=mgQyBAIwdkZZJWLu_FQWPx1FkyaARCNp6-rLqSVvMbA,3723
|
51
51
|
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/_zrb/module/template/app_template/module/my_module/client/my_module_api_client.py,sha256=7Ffk0eF4HX1RLfmacqHvuhNlfWkWAtunUBdF_N-Gq38,186
|
@@ -71,7 +71,7 @@ zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/common/base_db_repo
|
|
71
71
|
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/common/base_service.py,sha256=YGkoJ0PHlbq586XNQXBjIJEduIq-dFg9k_P4CAK4mFk,12164
|
72
72
|
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/common/db_engine_factory.py,sha256=Ku4iowi5DhkXwdWGljCOiHqcC4sI_mTB0hpvmd1_4x0,198
|
73
73
|
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/common/error.py,sha256=MCPn4hkJiCMgtCqVFusK0RHEQ-eABs_JjzHoWpPtvVs,1219
|
74
|
-
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/common/logger_factory.py,sha256=
|
74
|
+
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/common/logger_factory.py,sha256=N80L_PHT5vLGBIPt5MQEj63nEgWlZFLZFyH2fXVS0Ds,245
|
75
75
|
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/common/parser_factory.py,sha256=0dsYhxDec4EBDngkLyyPztDOhNUEyDue8DjIPUd5XvM,238
|
76
76
|
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/common/schema.py,sha256=dbRryeP5u7ObGX3GjF9ZID00yXffOp-AxyXu8oVJP0I,82
|
77
77
|
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/common/util/app.py,sha256=AeLoeMwQBqCLVUw9DaeOfAabKQxa7bT82QPo-1naiA0,1546
|
@@ -177,7 +177,7 @@ zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/test/test_health_an
|
|
177
177
|
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/test/test_homepage.py,sha256=fJGnHGXe893idQ94-0Yd50YfxQRQZq3bLTd2Rgq2d-A,498
|
178
178
|
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/test/test_not_found_error.py,sha256=SBqFRgGUldUtIz-uMf9a5DeWDPFeKbhvnvwiYr-jjns,502
|
179
179
|
zrb/builtin/project/add/fastapp/fastapp_template/my_app_name/test.sh,sha256=QIwe6InrlEkmxdtj6NTO9JozeECYN0O4vx-x-qid6go,148
|
180
|
-
zrb/builtin/project/add/fastapp/fastapp_util.py,sha256=
|
180
|
+
zrb/builtin/project/add/fastapp/fastapp_util.py,sha256=LfKcb_daaAdhMz0BgbYd1yIvw7DQzruZ7bjB7gLGFdk,1533
|
181
181
|
zrb/builtin/project/create/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
182
182
|
zrb/builtin/project/create/project-template/README.md,sha256=BHeWF_txdTDzKewWdWfGhO3YOTiW8E3YwTMnd0T1LVA,39
|
183
183
|
zrb/builtin/project/create/project-template/zrb_init.py,sha256=kY0x5MrkIVl3l1GtN2ROrYGNpsfN2dgRT84LCcSrGUs,44
|
@@ -339,7 +339,7 @@ zrb/util/string/name.py,sha256=8picJfUBXNpdh64GNaHv3om23QHhUZux7DguFLrXHp8,1163
|
|
339
339
|
zrb/util/todo.py,sha256=1nDdwPc22oFoK_1ZTXyf3638Bg6sqE2yp_U4_-frHoc,16015
|
340
340
|
zrb/xcom/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
341
341
|
zrb/xcom/xcom.py,sha256=o79rxR9wphnShrcIushA0Qt71d_p3ZTxjNf7x9hJB78,1571
|
342
|
-
zrb-1.2.
|
343
|
-
zrb-1.2.
|
344
|
-
zrb-1.2.
|
345
|
-
zrb-1.2.
|
342
|
+
zrb-1.2.1.dist-info/METADATA,sha256=Oj5aFm5hZeFXkWttWm6MNwk5uBCwVIGPHj2Y5IdoQyo,4198
|
343
|
+
zrb-1.2.1.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
344
|
+
zrb-1.2.1.dist-info/entry_points.txt,sha256=-Pg3ElWPfnaSM-XvXqCxEAa-wfVI6BEgcs386s8C8v8,46
|
345
|
+
zrb-1.2.1.dist-info/RECORD,,
|
File without changes
|
File without changes
|