windmill-cli 1.572.0 → 1.572.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.
@@ -32,7 +32,7 @@ export const OpenAPI = {
32
32
  PASSWORD: undefined,
33
33
  TOKEN: getEnv("WM_TOKEN"),
34
34
  USERNAME: undefined,
35
- VERSION: '1.572.0',
35
+ VERSION: '1.572.2',
36
36
  WITH_CREDENTIALS: true,
37
37
  interceptors: {
38
38
  request: new Interceptors(),
@@ -405,7 +405,7 @@ export const convertUserToGroup = (data) => {
405
405
  /**
406
406
  * get connected repositories
407
407
  * @param data The data for the request.
408
- * @param data.search Search repositories by name
408
+ * @param data.page Page number for pagination (default 1)
409
409
  * @returns GithubInstallations connected repositories
410
410
  * @throws ApiError
411
411
  */
@@ -414,7 +414,7 @@ export const getGlobalConnectedRepositories = (data = {}) => {
414
414
  method: 'GET',
415
415
  url: '/github_app/connected_repositories',
416
416
  query: {
417
- search: data.search
417
+ page: data.page
418
418
  }
419
419
  });
420
420
  };
package/esm/src/main.js CHANGED
@@ -38,7 +38,7 @@ export { flow, app, script, workspace, resource, resourceType, user, variable, h
38
38
  // console.error(JSON.stringify(event.error, null, 4));
39
39
  // }
40
40
  // });
41
- export const VERSION = "1.572.0";
41
+ export const VERSION = "1.572.2";
42
42
  export const WM_FORK_PREFIX = "wm-fork";
43
43
  const command = new Command()
44
44
  .name("wmill")
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "windmill-cli",
3
- "version": "1.572.0",
3
+ "version": "1.572.2",
4
4
  "description": "CLI for Windmill",
5
5
  "repository": {
6
6
  "type": "git",
@@ -206,7 +206,7 @@ export declare const convertUserToGroup: (data: ConvertUserToGroupData) => Cance
206
206
  /**
207
207
  * get connected repositories
208
208
  * @param data The data for the request.
209
- * @param data.search Search repositories by name
209
+ * @param data.page Page number for pagination (default 1)
210
210
  * @returns GithubInstallations connected repositories
211
211
  * @throws ApiError
212
212
  */
@@ -2705,9 +2705,9 @@ export type ConvertUserToGroupData = {
2705
2705
  export type ConvertUserToGroupResponse = (string);
2706
2706
  export type GetGlobalConnectedRepositoriesData = {
2707
2707
  /**
2708
- * Search repositories by name
2708
+ * Page number for pagination (default 1)
2709
2709
  */
2710
- search?: string;
2710
+ page?: number;
2711
2711
  };
2712
2712
  export type GetGlobalConnectedRepositoriesResponse = (GithubInstallations);
2713
2713
  export type ListWorkspacesResponse = (Array<Workspace>);