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.
- package/dist/core/OpenAPI.js +1 -1
- package/dist/services.gen.d.ts +1 -1
- package/dist/services.gen.js +2 -2
- package/dist/types.gen.d.ts +4 -4
- package/package.json +1 -1
package/dist/core/OpenAPI.js
CHANGED
package/dist/services.gen.d.ts
CHANGED
|
@@ -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.
|
|
441
|
+
* @param data.page Page number for pagination (default 1)
|
|
442
442
|
* @returns GithubInstallations connected repositories
|
|
443
443
|
* @throws ApiError
|
|
444
444
|
*/
|
package/dist/services.gen.js
CHANGED
|
@@ -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.
|
|
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
|
-
|
|
868
|
+
page: data.page
|
|
869
869
|
}
|
|
870
870
|
});
|
|
871
871
|
}
|
package/dist/types.gen.d.ts
CHANGED
|
@@ -2812,9 +2812,9 @@ export type LoginWithOauthData = {
|
|
|
2812
2812
|
export type LoginWithOauthResponse = string;
|
|
2813
2813
|
export type GetGlobalConnectedRepositoriesData = {
|
|
2814
2814
|
/**
|
|
2815
|
-
*
|
|
2815
|
+
* Page number for pagination (default 1)
|
|
2816
2816
|
*/
|
|
2817
|
-
|
|
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
|
-
*
|
|
9310
|
+
* Page number for pagination (default 1)
|
|
9311
9311
|
*/
|
|
9312
|
-
|
|
9312
|
+
page?: number;
|
|
9313
9313
|
};
|
|
9314
9314
|
res: {
|
|
9315
9315
|
/**
|