@gitbeaker/cli 43.3.0 → 43.5.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/README.md CHANGED
@@ -238,6 +238,8 @@ GITBEAKER_CAMELIZE=true
238
238
  <td align="center" valign="top" width="0.33%"><a href="https://note.itswhat.me/"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/38807139?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Bryan Lee"/></td>
239
239
  <td align="center" valign="top" width="0.33%"><a href="https://github.com/zk-kb4"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/42388953?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Zack"/></td>
240
240
  <td align="center" valign="top" width="0.33%"><a href="https://github.com/kayw-geek"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/29700073?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Kay W."/></td>
241
+ <td align="center" valign="top" width="0.33%"><a href="https://ffflorian.dev/"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/5497598?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="Florian Imdahl"/></td>
242
+ <td align="center" valign="top" width="0.33%"><a href="https://github.com/lanthier"><img src="https://images.weserv.nl/?url=https://avatars.githubusercontent.com/u/9666344?v=4&h=25&w=25&fit=cover&mask=circle&maxage=7d" alt="lanthier"/></td>
241
243
  </tr>
242
244
  </p>
243
245
 
package/dist/index.mjs CHANGED
@@ -98,31 +98,31 @@ function getGlobalConfig(env = process.env) {
98
98
  return {
99
99
  "gb-token": {
100
100
  alias: "gl-token",
101
- desc: "Your Gitlab Personal Token",
101
+ desc: "Your GitLab Personal Token",
102
102
  type: "string",
103
103
  defaultValue: normalEnv.GITBEAKER_TOKEN
104
104
  },
105
105
  "gb-oauth-token": {
106
106
  alias: "gl-oauth-token",
107
- desc: "Your Gitlab OAuth Token",
107
+ desc: "Your GitLab OAuth Token",
108
108
  type: "string",
109
109
  defaultValue: normalEnv.GITBEAKER_OAUTH_TOKEN
110
110
  },
111
111
  "gb-job-token": {
112
112
  alias: "gl-job-token",
113
- desc: "Your Gitlab Job Token",
113
+ desc: "Your GitLab Job Token",
114
114
  type: "string",
115
115
  defaultValue: normalEnv.GITBEAKER_JOB_TOKEN
116
116
  },
117
117
  "gb-host": {
118
118
  alias: "gl-host",
119
- desc: "Your Gitlab API host (Defaults to https://www.gitlab.com)",
119
+ desc: "Your GitLab API host (Defaults to https://www.gitlab.com)",
120
120
  type: "string",
121
121
  defaultValue: normalEnv.GITBEAKER_HOST
122
122
  },
123
123
  "gb-sudo": {
124
124
  alias: "gl-sudo",
125
- desc: "Sudo query parameter - https://docs.gitlab.com/ee/api/#sudo",
125
+ desc: "Sudo query parameter - https://docs.gitlab.com/api/#sudo",
126
126
  type: "string",
127
127
  defaultValue: normalEnv.GITBEAKER_SUDO
128
128
  },
@@ -140,13 +140,13 @@ function getGlobalConfig(env = process.env) {
140
140
  },
141
141
  "gb-profile-token": {
142
142
  alias: "gl-profile-token",
143
- desc: `Requests Profiles Token - https://docs.gitlab.com/ee/administration/monitoring/performance/request_profiling.html`,
143
+ desc: `Requests Profiles Token - https://docs.gitlab.com/administration/monitoring/performance/request_profiling.html`,
144
144
  type: "string",
145
145
  defaultValue: normalEnv.GITBEAKER_PROFILE_TOKEN
146
146
  },
147
147
  "gb-profile-mode": {
148
148
  alias: "gl-profile-mode",
149
- desc: "Requests Profiles Token - https://docs.gitlab.com/ee/administration/monitoring/performance/request_profiling.html",
149
+ desc: "Requests Profiles Token - https://docs.gitlab.com/administration/monitoring/performance/request_profiling.html",
150
150
  type: "string",
151
151
  defaultValue: normalEnv.GITBEAKER_PROFILE_MODE
152
152
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitbeaker/cli",
3
- "version": "43.3.0",
3
+ "version": "43.5.0",
4
4
  "description": "CLI implementation of the GitLab API.",
5
5
  "license": "MIT",
6
6
  "engines": {
@@ -39,15 +39,15 @@
39
39
  "lint:fix": "yarn lint --fix"
40
40
  },
41
41
  "dependencies": {
42
- "@gitbeaker/core": "^43.3.0",
43
- "@gitbeaker/rest": "^43.3.0",
44
- "chalk": "^5.4.1",
42
+ "@gitbeaker/core": "^43.5.0",
43
+ "@gitbeaker/rest": "^43.5.0",
44
+ "chalk": "^5.6.0",
45
45
  "sywac": "^1.3.0",
46
46
  "xcase": "^2.0.1"
47
47
  },
48
48
  "devDependencies": {
49
49
  "tsup": "^8.5.0",
50
- "typescript": "^5.8.3"
50
+ "typescript": "^5.9.2"
51
51
  },
52
- "gitHead": "f756323a98ca8a6f82a9a29f51e772f3a2a480ab"
52
+ "gitHead": "faad2c9e72b04588356ad081f9b79417039c03bc"
53
53
  }