@bussolabs/closeyourit-cli 0.0.15 → 0.0.16
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/dist/commands/ideas/case.d.ts +14 -0
- package/dist/commands/ideas/case.js +33 -0
- package/dist/commands/ideas/update.d.ts +16 -0
- package/dist/commands/ideas/update.js +45 -0
- package/oclif.manifest.json +1384 -1247
- package/opencli.json +128 -2
- package/package.json +1 -1
package/opencli.json
CHANGED
|
@@ -856,15 +856,95 @@
|
|
|
856
856
|
]
|
|
857
857
|
},
|
|
858
858
|
{
|
|
859
|
-
"name": "--
|
|
859
|
+
"name": "--problem",
|
|
860
860
|
"required": true,
|
|
861
|
-
"description": "
|
|
861
|
+
"description": "Problem or need the idea solves.",
|
|
862
862
|
"arguments": [
|
|
863
863
|
{
|
|
864
864
|
"name": "TEXT",
|
|
865
865
|
"required": true
|
|
866
866
|
}
|
|
867
867
|
]
|
|
868
|
+
},
|
|
869
|
+
{
|
|
870
|
+
"name": "--solution",
|
|
871
|
+
"description": "Proposed solution (optional).",
|
|
872
|
+
"arguments": [
|
|
873
|
+
{
|
|
874
|
+
"name": "TEXT"
|
|
875
|
+
}
|
|
876
|
+
]
|
|
877
|
+
},
|
|
878
|
+
{
|
|
879
|
+
"name": "--stakeholders",
|
|
880
|
+
"description": "Who it helps — repeatable (optional).",
|
|
881
|
+
"arguments": [
|
|
882
|
+
{
|
|
883
|
+
"name": "LABEL"
|
|
884
|
+
}
|
|
885
|
+
]
|
|
886
|
+
}
|
|
887
|
+
]
|
|
888
|
+
},
|
|
889
|
+
{
|
|
890
|
+
"name": "update",
|
|
891
|
+
"description": "Update an idea (full replace of title/problem/solution — omitted fields are cleared).",
|
|
892
|
+
"arguments": [
|
|
893
|
+
{
|
|
894
|
+
"name": "IDEA_ID",
|
|
895
|
+
"required": true
|
|
896
|
+
}
|
|
897
|
+
],
|
|
898
|
+
"options": [
|
|
899
|
+
{
|
|
900
|
+
"name": "--project",
|
|
901
|
+
"aliases": [
|
|
902
|
+
"-p"
|
|
903
|
+
],
|
|
904
|
+
"required": true,
|
|
905
|
+
"description": "Project id (UUID) or key.",
|
|
906
|
+
"arguments": [
|
|
907
|
+
{
|
|
908
|
+
"name": "PROJECT",
|
|
909
|
+
"required": true
|
|
910
|
+
}
|
|
911
|
+
]
|
|
912
|
+
},
|
|
913
|
+
{
|
|
914
|
+
"name": "--title",
|
|
915
|
+
"description": "Idea title.",
|
|
916
|
+
"arguments": [
|
|
917
|
+
{
|
|
918
|
+
"name": "TITLE"
|
|
919
|
+
}
|
|
920
|
+
]
|
|
921
|
+
},
|
|
922
|
+
{
|
|
923
|
+
"name": "--problem",
|
|
924
|
+
"description": "Problem or need the idea solves.",
|
|
925
|
+
"arguments": [
|
|
926
|
+
{
|
|
927
|
+
"name": "TEXT"
|
|
928
|
+
}
|
|
929
|
+
]
|
|
930
|
+
},
|
|
931
|
+
{
|
|
932
|
+
"name": "--solution",
|
|
933
|
+
"description": "Proposed solution (cleared if omitted).",
|
|
934
|
+
"arguments": [
|
|
935
|
+
{
|
|
936
|
+
"name": "TEXT"
|
|
937
|
+
}
|
|
938
|
+
]
|
|
939
|
+
},
|
|
940
|
+
{
|
|
941
|
+
"name": "--stakeholders",
|
|
942
|
+
"description": "Who it helps — repeatable (replaced only when provided).",
|
|
943
|
+
"arguments": [
|
|
944
|
+
{
|
|
945
|
+
"name": "LABEL"
|
|
946
|
+
}
|
|
947
|
+
]
|
|
868
948
|
}
|
|
869
949
|
]
|
|
870
950
|
},
|
|
@@ -957,6 +1037,52 @@
|
|
|
957
1037
|
}
|
|
958
1038
|
]
|
|
959
1039
|
},
|
|
1040
|
+
{
|
|
1041
|
+
"name": "case",
|
|
1042
|
+
"description": "Add a case (example/scenario) to an open idea.",
|
|
1043
|
+
"arguments": [
|
|
1044
|
+
{
|
|
1045
|
+
"name": "IDEA_ID",
|
|
1046
|
+
"required": true
|
|
1047
|
+
}
|
|
1048
|
+
],
|
|
1049
|
+
"options": [
|
|
1050
|
+
{
|
|
1051
|
+
"name": "--project",
|
|
1052
|
+
"aliases": [
|
|
1053
|
+
"-p"
|
|
1054
|
+
],
|
|
1055
|
+
"required": true,
|
|
1056
|
+
"description": "Project id (UUID) or key.",
|
|
1057
|
+
"arguments": [
|
|
1058
|
+
{
|
|
1059
|
+
"name": "PROJECT",
|
|
1060
|
+
"required": true
|
|
1061
|
+
}
|
|
1062
|
+
]
|
|
1063
|
+
},
|
|
1064
|
+
{
|
|
1065
|
+
"name": "--title",
|
|
1066
|
+
"required": true,
|
|
1067
|
+
"description": "Case title.",
|
|
1068
|
+
"arguments": [
|
|
1069
|
+
{
|
|
1070
|
+
"name": "TITLE",
|
|
1071
|
+
"required": true
|
|
1072
|
+
}
|
|
1073
|
+
]
|
|
1074
|
+
},
|
|
1075
|
+
{
|
|
1076
|
+
"name": "--description",
|
|
1077
|
+
"description": "Case description (optional).",
|
|
1078
|
+
"arguments": [
|
|
1079
|
+
{
|
|
1080
|
+
"name": "TEXT"
|
|
1081
|
+
}
|
|
1082
|
+
]
|
|
1083
|
+
}
|
|
1084
|
+
]
|
|
1085
|
+
},
|
|
960
1086
|
{
|
|
961
1087
|
"name": "comments",
|
|
962
1088
|
"description": "List all comments of an idea (oldest first).",
|