1.3.11 - Quick Pick
This commit is contained in:
@ -16,10 +16,26 @@ function codeGeneratorQuickPickLogic(): undefined {
|
||||
label: "Class name (Camel-Cased)",
|
||||
detail: "Segments Minus One (Object || Array)",
|
||||
output: "%ClassNameCamelCased%"
|
||||
}, {
|
||||
label: "Class name (Camel-Cased and Plural)",
|
||||
detail: "Segments Minus One (Object || Array)",
|
||||
output: "%ClassNameCamelCasedPlural%"
|
||||
}, {
|
||||
label: "Class name (Plural)",
|
||||
detail: "Segments Minus One (Object || Array)",
|
||||
output: "%ClassNamePlural%"
|
||||
}, {
|
||||
label: "Key Without Brackets Segment at Level",
|
||||
detail: "",
|
||||
output: "%KeyWithoutBracketsSegmentAtLevel%"
|
||||
}, {
|
||||
label: "Name",
|
||||
detail: "Segments Last only name (no path)",
|
||||
output: "%Name%"
|
||||
}, {
|
||||
label: "Namespace",
|
||||
detail: "Namespace",
|
||||
output: "%namespace%"
|
||||
}, {
|
||||
label: "Name (Camel-Cased)",
|
||||
detail: "Segments Last only name (no path)",
|
||||
@ -29,21 +45,61 @@ function codeGeneratorQuickPickLogic(): undefined {
|
||||
detail: "Segments Last only name (no path)",
|
||||
output: "%NameCamelCasedPlural%"
|
||||
}, {
|
||||
label: "Name (Plural)",
|
||||
detail: "Segments Last only name (no path)",
|
||||
output: "%NamePlural%"
|
||||
label: "Name Detail",
|
||||
detail: "",
|
||||
output: "%NameDetail%"
|
||||
}, {
|
||||
label: "Name Detail (Camel-Cased)",
|
||||
detail: "",
|
||||
output: "%NameDetailCamelCased%"
|
||||
}, {
|
||||
label: "Name Detail (Humanized)",
|
||||
detail: "",
|
||||
output: "%NameDetailHumanized%"
|
||||
}, {
|
||||
label: "Name Detail (Humanized) *Collection",
|
||||
detail: "",
|
||||
output: "%NameDetailHumanizedCollection%"
|
||||
}, {
|
||||
label: "Name (Humanized)",
|
||||
detail: "Segments Last only name (no path)",
|
||||
output: "%NameHumanized%"
|
||||
}, {
|
||||
label: "Namespace",
|
||||
detail: "Namespace",
|
||||
output: "%namespace%"
|
||||
label: "Name (Null Segments)",
|
||||
detail: "",
|
||||
output: "%NameNullSegments%"
|
||||
}, {
|
||||
label: "Name (Null Segments) *Collection",
|
||||
detail: "",
|
||||
output: "%NameNullSegmentsCollection%"
|
||||
}, {
|
||||
label: "Name (Plural)",
|
||||
detail: "Segments Last only name (no path)",
|
||||
output: "%NamePlural%"
|
||||
}, {
|
||||
label: "Name Segments",
|
||||
detail: "",
|
||||
output: "%NameSegments%"
|
||||
}, {
|
||||
label: "Name Segments *Collection",
|
||||
detail: "",
|
||||
output: "%NameSegmentsCollection%"
|
||||
}, {
|
||||
label: "Path without Brackets (Singularized)",
|
||||
detail: "",
|
||||
output: "%PathWithoutBracketSingularized%"
|
||||
}, {
|
||||
label: "Suggested Type",
|
||||
detail: "Type based on values in *.json file",
|
||||
output: "%SuggestedType%"
|
||||
}, {
|
||||
label: "Suggested Type Id",
|
||||
detail: "",
|
||||
output: "%SuggestedTypeId%"
|
||||
}, {
|
||||
label: "Suggested Type Id (Camel-Cased)",
|
||||
detail: "",
|
||||
output: "%SuggestedTypeIdCamelCased%"
|
||||
}, {
|
||||
label: "Type",
|
||||
detail: "Segments Minus One (!Object && !Array)",
|
||||
@ -52,22 +108,6 @@ function codeGeneratorQuickPickLogic(): undefined {
|
||||
label: "Type (Camel-Cased)",
|
||||
detail: "Segments Minus One (!Object && !Array)",
|
||||
output: "%TypeCamelCased%"
|
||||
}, {
|
||||
label: "TypeSkipOne",
|
||||
detail: "Segments Minus One (!Object && !Array)",
|
||||
output: "%TypeSkipOne%"
|
||||
}, {
|
||||
label: "TypeSkipOne (Camel-Cased)",
|
||||
detail: "Segments Minus One (!Object && !Array)",
|
||||
output: "%TypeSkipOneCamelCased%"
|
||||
}, {
|
||||
label: "TypeSkipOne (Humanized)",
|
||||
detail: "Segments Minus One (!Object && !Array)",
|
||||
output: "%TypeSkipOneHumanized%"
|
||||
}, {
|
||||
label: "TypeSkipOne (Humanized) *Collection",
|
||||
detail: "Segments Minus One (!Object && !Array)",
|
||||
output: "%TypeSkipOneHumanizedCollection%"
|
||||
}
|
||||
]
|
||||
).then(item => {
|
||||
|
Reference in New Issue
Block a user