windmill-client 1.423.1 → 1.423.2
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/core/OpenAPI.js +1 -1
- package/dist/services.gen.js +2 -2
- package/dist/types.gen.d.ts +1 -1
- package/package.json +1 -1
package/dist/core/OpenAPI.js
CHANGED
package/dist/services.gen.js
CHANGED
|
@@ -149,7 +149,7 @@ class UserService {
|
|
|
149
149
|
static getUser(data) {
|
|
150
150
|
return (0, request_1.request)(OpenAPI_1.OpenAPI, {
|
|
151
151
|
method: 'GET',
|
|
152
|
-
url: '/w/{workspace}/users/{username}',
|
|
152
|
+
url: '/w/{workspace}/users/get/{username}',
|
|
153
153
|
path: {
|
|
154
154
|
workspace: data.workspace,
|
|
155
155
|
username: data.username
|
|
@@ -708,7 +708,7 @@ class AdminService {
|
|
|
708
708
|
static getUser(data) {
|
|
709
709
|
return (0, request_1.request)(OpenAPI_1.OpenAPI, {
|
|
710
710
|
method: 'GET',
|
|
711
|
-
url: '/w/{workspace}/users/{username}',
|
|
711
|
+
url: '/w/{workspace}/users/get/{username}',
|
|
712
712
|
path: {
|
|
713
713
|
workspace: data.workspace,
|
|
714
714
|
username: data.username
|
package/dist/types.gen.d.ts
CHANGED