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.
Files changed (24) hide show
  1. {aab_prompts-1.1.2 → aab_prompts-1.1.3}/PKG-INFO +1 -1
  2. {aab_prompts-1.1.2 → aab_prompts-1.1.3}/aab_prompts.egg-info/PKG-INFO +1 -1
  3. {aab_prompts-1.1.2 → aab_prompts-1.1.3}/prompts/objects_fields.py +14 -1
  4. {aab_prompts-1.1.2 → aab_prompts-1.1.3}/pyproject.toml +1 -1
  5. {aab_prompts-1.1.2 → aab_prompts-1.1.3}/aab_prompts.egg-info/SOURCES.txt +0 -0
  6. {aab_prompts-1.1.2 → aab_prompts-1.1.3}/aab_prompts.egg-info/dependency_links.txt +0 -0
  7. {aab_prompts-1.1.2 → aab_prompts-1.1.3}/aab_prompts.egg-info/top_level.txt +0 -0
  8. {aab_prompts-1.1.2 → aab_prompts-1.1.3}/aab_service.py +0 -0
  9. {aab_prompts-1.1.2 → aab_prompts-1.1.3}/prompts/__init__.py +0 -0
  10. {aab_prompts-1.1.2 → aab_prompts-1.1.3}/prompts/breadcrumbs.py +0 -0
  11. {aab_prompts-1.1.2 → aab_prompts-1.1.3}/prompts/constants.py +0 -0
  12. {aab_prompts-1.1.2 → aab_prompts-1.1.3}/prompts/expressions.py +0 -0
  13. {aab_prompts-1.1.2 → aab_prompts-1.1.3}/prompts/menu_navigations.py +0 -0
  14. {aab_prompts-1.1.2 → aab_prompts-1.1.3}/prompts/page_planner.py +0 -0
  15. {aab_prompts-1.1.2 → aab_prompts-1.1.3}/prompts/pages.py +0 -0
  16. {aab_prompts-1.1.2 → aab_prompts-1.1.3}/prompts/planner.py +0 -0
  17. {aab_prompts-1.1.2 → aab_prompts-1.1.3}/prompts/router.py +0 -0
  18. {aab_prompts-1.1.2 → aab_prompts-1.1.3}/prompts/solutions_applications.py +0 -0
  19. {aab_prompts-1.1.2 → aab_prompts-1.1.3}/prompts/view_filter_planner.py +0 -0
  20. {aab_prompts-1.1.2 → aab_prompts-1.1.3}/prompts/view_links_planner.py +0 -0
  21. {aab_prompts-1.1.2 → aab_prompts-1.1.3}/prompts/view_planner.py +0 -0
  22. {aab_prompts-1.1.2 → aab_prompts-1.1.3}/prompts/views.py +0 -0
  23. {aab_prompts-1.1.2 → aab_prompts-1.1.3}/setup.cfg +0 -0
  24. {aab_prompts-1.1.2 → aab_prompts-1.1.3}/tests/test_prompts.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aab-prompts
3
- Version: 1.1.2
3
+ Version: 1.1.3
4
4
  Summary: AAB Prompts - Application Builder prompt management library
5
5
  Author: AAB Prompts
6
6
  License: MIT
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: aab-prompts
3
- Version: 1.1.2
3
+ Version: 1.1.3
4
4
  Summary: AAB Prompts - Application Builder prompt management library
5
5
  Author: AAB Prompts
6
6
  License: MIT
@@ -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 of another object
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
 
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "aab-prompts"
7
- version = "1.1.2"
7
+ version = "1.1.3"
8
8
  description = "AAB Prompts - Application Builder prompt management library"
9
9
  requires-python = ">=3.8"
10
10
  license = {text = "MIT"}
File without changes
File without changes