@atlashub/smartstack-cli 2.2.0 → 2.3.0
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.
- package/.documentation/business-analyse.html +1503 -1058
- package/dist/index.js +74 -45
- package/dist/index.js.map +1 -1
- package/package.json +10 -7
- package/templates/skills/business-analyse/questionnaire/03-scope.md +7 -7
- package/templates/skills/business-analyse/questionnaire/12-migration.md +1 -1
- package/templates/skills/business-analyse/react/schema.md +175 -27
- package/templates/skills/business-analyse/schemas/feature-schema.json +213 -43
- package/templates/skills/business-analyse/steps/step-01-analyse.md +19 -1
- package/templates/skills/business-analyse/steps/step-02-specify.md +68 -2
- package/templates/skills/business-analyse/steps/step-03-validate.md +148 -1
- package/templates/skills/business-analyse/steps/step-04-handoff.md +384 -175
- package/templates/skills/business-analyse/templates/tpl-handoff.md +11 -2
|
@@ -87,7 +87,9 @@ FRONTEND:
|
|
|
87
87
|
|
|
88
88
|
### 3.2 SeedData Core (CRITICAL -- without these, module is invisible and returns 403)
|
|
89
89
|
|
|
90
|
-
> **
|
|
90
|
+
> **Source:** `feature.json.specification.seedDataCore` (generated in step-02)
|
|
91
|
+
> **5 mandatory files** for every new module (4 EF Core HasData + 1 Application code).
|
|
92
|
+
> Derive content EXACTLY from `specification.seedDataCore` sections (navigationModules, navigationTranslations, permissions, rolePermissions, permissionConstants).
|
|
91
93
|
|
|
92
94
|
| # | File | Layer | Content |
|
|
93
95
|
|---|------|-------|---------|
|
|
@@ -133,7 +135,14 @@ From: `feature.handoff.brToCodeMapping[]`
|
|
|
133
135
|
|
|
134
136
|
### 4.4 SeedData Specifications
|
|
135
137
|
|
|
136
|
-
From: `feature.specification.navigation` and `feature.specification.permissionMatrix`
|
|
138
|
+
From: `feature.specification.seedDataCore` (5 core files), `feature.specification.navigation` and `feature.specification.permissionMatrix`
|
|
139
|
+
|
|
140
|
+
> **IMPORTANT :** Les données des 5 fichiers SeedData Core doivent être dérivées de `specification.seedDataCore` :
|
|
141
|
+
> - `navigationModules` → NavigationModuleConfiguration.cs
|
|
142
|
+
> - `navigationTranslations` → NavigationTranslationConfiguration.cs
|
|
143
|
+
> - `permissions` → PermissionConfiguration.cs (format complet : `business.{app}.{module}.{resource}.{action}`)
|
|
144
|
+
> - `rolePermissions` → RolePermissionConfiguration.cs
|
|
145
|
+
> - `permissionConstants` → Permissions.cs (PascalCase constants)
|
|
137
146
|
|
|
138
147
|
## 5. REQUIRED TESTS
|
|
139
148
|
|