aab-prompts 1.1.2__tar.gz → 1.1.3__tar.gz
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.
- {aab_prompts-1.1.2 → aab_prompts-1.1.3}/PKG-INFO +1 -1
- {aab_prompts-1.1.2 → aab_prompts-1.1.3}/aab_prompts.egg-info/PKG-INFO +1 -1
- {aab_prompts-1.1.2 → aab_prompts-1.1.3}/prompts/objects_fields.py +14 -1
- {aab_prompts-1.1.2 → aab_prompts-1.1.3}/pyproject.toml +1 -1
- {aab_prompts-1.1.2 → aab_prompts-1.1.3}/aab_prompts.egg-info/SOURCES.txt +0 -0
- {aab_prompts-1.1.2 → aab_prompts-1.1.3}/aab_prompts.egg-info/dependency_links.txt +0 -0
- {aab_prompts-1.1.2 → aab_prompts-1.1.3}/aab_prompts.egg-info/top_level.txt +0 -0
- {aab_prompts-1.1.2 → aab_prompts-1.1.3}/aab_service.py +0 -0
- {aab_prompts-1.1.2 → aab_prompts-1.1.3}/prompts/__init__.py +0 -0
- {aab_prompts-1.1.2 → aab_prompts-1.1.3}/prompts/breadcrumbs.py +0 -0
- {aab_prompts-1.1.2 → aab_prompts-1.1.3}/prompts/constants.py +0 -0
- {aab_prompts-1.1.2 → aab_prompts-1.1.3}/prompts/expressions.py +0 -0
- {aab_prompts-1.1.2 → aab_prompts-1.1.3}/prompts/menu_navigations.py +0 -0
- {aab_prompts-1.1.2 → aab_prompts-1.1.3}/prompts/page_planner.py +0 -0
- {aab_prompts-1.1.2 → aab_prompts-1.1.3}/prompts/pages.py +0 -0
- {aab_prompts-1.1.2 → aab_prompts-1.1.3}/prompts/planner.py +0 -0
- {aab_prompts-1.1.2 → aab_prompts-1.1.3}/prompts/router.py +0 -0
- {aab_prompts-1.1.2 → aab_prompts-1.1.3}/prompts/solutions_applications.py +0 -0
- {aab_prompts-1.1.2 → aab_prompts-1.1.3}/prompts/view_filter_planner.py +0 -0
- {aab_prompts-1.1.2 → aab_prompts-1.1.3}/prompts/view_links_planner.py +0 -0
- {aab_prompts-1.1.2 → aab_prompts-1.1.3}/prompts/view_planner.py +0 -0
- {aab_prompts-1.1.2 → aab_prompts-1.1.3}/prompts/views.py +0 -0
- {aab_prompts-1.1.2 → aab_prompts-1.1.3}/setup.cfg +0 -0
- {aab_prompts-1.1.2 → aab_prompts-1.1.3}/tests/test_prompts.py +0 -0
|
@@ -144,7 +144,8 @@ Create an Object only when:
|
|
|
144
144
|
- The entity must have multiple records (not a single global value)
|
|
145
145
|
|
|
146
146
|
Do NOT create an Object when:
|
|
147
|
-
- Something is only a field
|
|
147
|
+
- Something is only a field
|
|
148
|
+
- Something is already another object
|
|
148
149
|
- Something is only a UI element
|
|
149
150
|
- Something is only a workflow, rule, action, or settings item
|
|
150
151
|
|
|
@@ -162,6 +163,7 @@ that you CAN'T use, which are listed below:
|
|
|
162
163
|
|
|
163
164
|
---
|
|
164
165
|
# Required Output
|
|
166
|
+
You must have an object for every object defined in the plan generated in `save_generated_plan`
|
|
165
167
|
You must always have the Objects in this specific schema. Each Object must follow this exact structure.
|
|
166
168
|
For each key, read and follow its meaning and usage rules:
|
|
167
169
|
|
|
@@ -204,6 +206,17 @@ Key points
|
|
|
204
206
|
- Ref fields define relationships via *_id.
|
|
205
207
|
- Display/calc fields like Show, List, ProgressBar help present data.
|
|
206
208
|
|
|
209
|
+
# When to Create a Field
|
|
210
|
+
Create a Field when:
|
|
211
|
+
- The user mentions a real property that must be saved with the object
|
|
212
|
+
- The field is defined in the plan generated in `save_generated_plan`
|
|
213
|
+
|
|
214
|
+
Do NOT create an Field when:
|
|
215
|
+
- Something is already another field on this object
|
|
216
|
+
- Something is only a UI element
|
|
217
|
+
- Something is only a workflow, rule, action, or settings item
|
|
218
|
+
|
|
219
|
+
|
|
207
220
|
Example
|
|
208
221
|
scholarship_name (Text), due_date (Date), assignee_id (Ref to Users), scholarship_type (Enum), status (Enum)
|
|
209
222
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|