windmill-client 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.
@@ -39,7 +39,7 @@ exports.OpenAPI = {
39
39
  PASSWORD: undefined,
40
40
  TOKEN: getEnv("WM_TOKEN"),
41
41
  USERNAME: undefined,
42
- VERSION: '1.572.0',
42
+ VERSION: '1.572.2',
43
43
  WITH_CREDENTIALS: true,
44
44
  interceptors: {
45
45
  request: new Interceptors(),
@@ -438,7 +438,7 @@ export declare class GitSyncService {
438
438
  /**
439
439
  * get connected repositories
440
440
  * @param data The data for the request.
441
- * @param data.search Search repositories by name
441
+ * @param data.page Page number for pagination (default 1)
442
442
  * @returns GithubInstallations connected repositories
443
443
  * @throws ApiError
444
444
  */
@@ -856,7 +856,7 @@ class GitSyncService {
856
856
  /**
857
857
  * get connected repositories
858
858
  * @param data The data for the request.
859
- * @param data.search Search repositories by name
859
+ * @param data.page Page number for pagination (default 1)
860
860
  * @returns GithubInstallations connected repositories
861
861
  * @throws ApiError
862
862
  */
@@ -865,7 +865,7 @@ class GitSyncService {
865
865
  method: 'GET',
866
866
  url: '/github_app/connected_repositories',
867
867
  query: {
868
- search: data.search
868
+ page: data.page
869
869
  }
870
870
  });
871
871
  }
@@ -2812,9 +2812,9 @@ export type LoginWithOauthData = {
2812
2812
  export type LoginWithOauthResponse = string;
2813
2813
  export type GetGlobalConnectedRepositoriesData = {
2814
2814
  /**
2815
- * Search repositories by name
2815
+ * Page number for pagination (default 1)
2816
2816
  */
2817
- search?: string;
2817
+ page?: number;
2818
2818
  };
2819
2819
  export type GetGlobalConnectedRepositoriesResponse = GithubInstallations;
2820
2820
  export type InstallFromWorkspaceData = {
@@ -9307,9 +9307,9 @@ export type $OpenApiTs = {
9307
9307
  get: {
9308
9308
  req: {
9309
9309
  /**
9310
- * Search repositories by name
9310
+ * Page number for pagination (default 1)
9311
9311
  */
9312
- search?: string;
9312
+ page?: number;
9313
9313
  };
9314
9314
  res: {
9315
9315
  /**
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "windmill-client",
3
3
  "description": "Windmill SDK client for browsers and Node.js",
4
- "version": "1.572.0",
4
+ "version": "1.572.2",
5
5
  "author": "Ruben Fiszel",
6
6
  "license": "Apache 2.0",
7
7
  "devDependencies": {