autoforce 0.1.8 → 0.1.10

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 (56) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/README.md +6 -3
  3. package/commands/modelA/tasks/list.json +11 -0
  4. package/commands/modelA/tasks/start.json +2 -2
  5. package/commands/modelA/tasks/view.json +1 -0
  6. package/commands/modelC/new/issue.json +41 -0
  7. package/commands/modelC/subtasks/checkout-branch.json +60 -0
  8. package/commands/modelC/subtasks/create-pull.json +20 -0
  9. package/commands/modelC/subtasks/pack.json +29 -0
  10. package/commands/modelC/subtasks/publish-branch.json +20 -0
  11. package/commands/modelC/tasks/cancel.json +6 -0
  12. package/commands/modelC/tasks/finish.json +41 -0
  13. package/commands/modelC/tasks/list.json +11 -0
  14. package/commands/modelC/tasks/publish.json +13 -0
  15. package/commands/modelC/tasks/start.json +51 -0
  16. package/commands/modelC/tasks/stop.json +32 -0
  17. package/commands/modelC/tasks/switch.json +53 -0
  18. package/commands/modelC/tasks/view.json +13 -0
  19. package/commands/models.json +18 -0
  20. package/lib/auto.js +2 -1
  21. package/lib/helpers/class.js +4 -3
  22. package/lib/helpers/context.d.ts +7 -5
  23. package/lib/helpers/context.js +18 -8
  24. package/lib/helpers/github-graphql.d.ts +2 -5
  25. package/lib/helpers/github-graphql.js +1 -31
  26. package/lib/helpers/github-project-graphql.d.ts +18 -3
  27. package/lib/helpers/github-project-graphql.js +60 -6
  28. package/lib/helpers/gitlab-graphql.d.ts +7 -5
  29. package/lib/helpers/gitlab-graphql.js +13 -3
  30. package/lib/helpers/lwc.js +4 -3
  31. package/lib/helpers/metadata.js +2 -2
  32. package/lib/helpers/object.js +4 -3
  33. package/lib/helpers/taskFunctions.js +24 -3
  34. package/lib/helpers/tasks.js +11 -7
  35. package/lib/helpers/template.d.ts +2 -2
  36. package/lib/helpers/template.js +2 -4
  37. package/lib/helpers/util.d.ts +7 -1
  38. package/lib/helpers/util.js +48 -5
  39. package/package.json +2 -1
  40. package/templates/modelB/changelog.md +4 -0
  41. package/templates/modelB/openIssues.md +0 -0
  42. package/templates/models.json +13 -0
  43. package/templates/story.md +0 -32
  44. package/templates/usecase.md +0 -52
  45. /package/templates/{dictionary → modelA/dictionary}/class-all.md +0 -0
  46. /package/templates/{dictionary → modelA/dictionary}/class-diagrama.md +0 -0
  47. /package/templates/{dictionary → modelA/dictionary}/class-inner.md +0 -0
  48. /package/templates/{dictionary → modelA/dictionary}/class-metodos.md +0 -0
  49. /package/templates/{dictionary → modelA/dictionary}/class-public.md +0 -0
  50. /package/templates/{dictionary → modelA/dictionary}/class-referencias.md +0 -0
  51. /package/templates/{dictionary → modelA/dictionary}/class.md +0 -0
  52. /package/templates/{dictionary → modelA/dictionary}/classes.md +0 -0
  53. /package/templates/{dictionary → modelA/dictionary}/object.md +0 -0
  54. /package/templates/{dictionary → modelA/dictionary}/objects.md +0 -0
  55. /package/templates/{intro.md → modelA/intro.md} +0 -0
  56. /package/templates/{process.md → modelA/process.md} +0 -0
@@ -1,52 +0,0 @@
1
- ---
2
- sidebar_position: 1
3
- tags: [{ { actor } }]
4
- ---
5
-
6
- # {{titulo}}
7
-
8
- - Modulo: [{{modulo}}](/{{modulo}})
9
- - Roles: [{{actor}}](/tags/{{actor}})
10
- - Alcance:
11
- - Proposito:
12
-
13
- ## Descripcion:
14
-
15
- - Suposiciones:
16
- - Cuando:
17
- - Precondiciones:
18
- - Postcondiciones:
19
-
20
- ## Flujo Principal
21
-
22
- _Pasos: _
23
-
24
- 1.
25
-
26
- ## Flujos Alternativos
27
-
28
- _Pasos: _
29
-
30
- 1.
31
-
32
- ## Use cases relacionados
33
-
34
- | Nombre | Descripcion |
35
- | ------ | ----------- |
36
-
37
- <!-- START autogenerated-objects -->
38
- <!-- END autogenerated-objects -->
39
-
40
- <!-- START autogenerated-classes -->
41
- <!-- END autogenerated-classes -->
42
-
43
- <!-- START autogenerated-usecase -->
44
-
45
- :::tip
46
- Para refrescar metadata:
47
-
48
- ```bash
49
- {{command}}
50
- ```
51
-
52
- <!-- END autogenerated-usecase -->
File without changes
File without changes