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.
- package/esm/gen/core/OpenAPI.js +1 -1
- package/esm/gen/services.gen.js +2 -2
- package/esm/src/main.js +1 -1
- package/package.json +1 -1
- package/types/gen/services.gen.d.ts +1 -1
- package/types/gen/types.gen.d.ts +2 -2
- package/types/gen/types.gen.d.ts.map +1 -1
- package/types/src/main.d.ts +1 -1
- package/types/windmill-utils-internal/src/gen/types.gen.d.ts +2 -2
- package/types/windmill-utils-internal/src/gen/types.gen.d.ts.map +1 -1
package/esm/gen/core/OpenAPI.js
CHANGED
package/esm/gen/services.gen.js
CHANGED
|
@@ -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.
|
|
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
|
-
|
|
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.
|
|
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
|
@@ -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.
|
|
209
|
+
* @param data.page Page number for pagination (default 1)
|
|
210
210
|
* @returns GithubInstallations connected repositories
|
|
211
211
|
* @throws ApiError
|
|
212
212
|
*/
|
package/types/gen/types.gen.d.ts
CHANGED
|
@@ -2705,9 +2705,9 @@ export type ConvertUserToGroupData = {
|
|
|
2705
2705
|
export type ConvertUserToGroupResponse = (string);
|
|
2706
2706
|
export type GetGlobalConnectedRepositoriesData = {
|
|
2707
2707
|
/**
|
|
2708
|
-
*
|
|
2708
|
+
* Page number for pagination (default 1)
|
|
2709
2709
|
*/
|
|
2710
|
-
|
|
2710
|
+
page?: number;
|
|
2711
2711
|
};
|
|
2712
2712
|
export type GetGlobalConnectedRepositoriesResponse = (GithubInstallations);
|
|
2713
2713
|
export type ListWorkspacesResponse = (Array<Workspace>);
|