@gitbeaker/cli 36.0.2--canary.2258.849927821.0 → 37.1.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/dist/index.mjs +6 -3
- package/package.json +6 -6
package/dist/index.mjs
CHANGED
|
@@ -103,11 +103,14 @@ function param(value) {
|
|
|
103
103
|
"NuGet",
|
|
104
104
|
"DORA4",
|
|
105
105
|
"LDAP",
|
|
106
|
-
"CICD"
|
|
106
|
+
"CICD",
|
|
107
|
+
"SAML",
|
|
108
|
+
"SCIM",
|
|
109
|
+
"PyPI"
|
|
107
110
|
];
|
|
108
|
-
|
|
109
|
-
if (ex)
|
|
111
|
+
exceptions.filter((e) => value.includes(e)).forEach((ex) => {
|
|
110
112
|
cleaned = cleaned.replace(ex, ex.charAt(0).toUpperCase() + ex.slice(1).toLowerCase());
|
|
113
|
+
});
|
|
111
114
|
const decamelized = decamelize(cleaned, "-");
|
|
112
115
|
return decamelized !== cleaned ? decamelized : depascalize(cleaned, "-");
|
|
113
116
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gitbeaker/cli",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "37.1.0",
|
|
4
4
|
"description": "CLI implementation of the GitLab API.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"engines": {
|
|
@@ -47,15 +47,15 @@
|
|
|
47
47
|
"release": "auto shipit"
|
|
48
48
|
},
|
|
49
49
|
"dependencies": {
|
|
50
|
-
"@gitbeaker/core": "
|
|
51
|
-
"@gitbeaker/rest": "
|
|
52
|
-
"chalk": "
|
|
50
|
+
"@gitbeaker/core": "^37.1.0",
|
|
51
|
+
"@gitbeaker/rest": "^37.1.0",
|
|
52
|
+
"chalk": "5.2.0",
|
|
53
53
|
"sywac": "^1.3.0",
|
|
54
54
|
"xcase": "^2.0.1"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
57
|
"tsup": "^6.7.0",
|
|
58
|
-
"typescript": "^
|
|
58
|
+
"typescript": "^5.0.4"
|
|
59
59
|
},
|
|
60
|
-
"gitHead": "
|
|
60
|
+
"gitHead": "ec001af19a6aa31f3f7f7fd064aeedb6f327bdc0"
|
|
61
61
|
}
|