shoal-web-sdk 0.0.48 → 0.0.49
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/sdk/types.gen.d.ts
CHANGED
|
@@ -106,10 +106,6 @@ export type GitHubBranch = {
|
|
|
106
106
|
sha: string;
|
|
107
107
|
url: string;
|
|
108
108
|
};
|
|
109
|
-
[key: string]: unknown | string | boolean | {
|
|
110
|
-
sha: string;
|
|
111
|
-
url: string;
|
|
112
|
-
} | undefined;
|
|
113
109
|
};
|
|
114
110
|
export type GitHubBranchesResponse = {
|
|
115
111
|
branches: Array<GitHubBranch>;
|
|
@@ -356,10 +352,6 @@ export type Page = number;
|
|
|
356
352
|
* Page size (max 100).
|
|
357
353
|
*/
|
|
358
354
|
export type Limit = number;
|
|
359
|
-
/**
|
|
360
|
-
* When true, fetch all pages and return the full list (branches only).
|
|
361
|
-
*/
|
|
362
|
-
export type All = boolean;
|
|
363
355
|
/**
|
|
364
356
|
* Connected app key code reference from Kinde.
|
|
365
357
|
*/
|
|
@@ -608,10 +600,6 @@ export type ListInstallationBranchesData = {
|
|
|
608
600
|
* Page size (max 100).
|
|
609
601
|
*/
|
|
610
602
|
limit?: number;
|
|
611
|
-
/**
|
|
612
|
-
* When true, fetch all pages and return the full list (branches only).
|
|
613
|
-
*/
|
|
614
|
-
all?: boolean;
|
|
615
603
|
};
|
|
616
604
|
url: '/auth/installations/{installationID}/branches';
|
|
617
605
|
};
|
|
@@ -638,7 +626,7 @@ export type ListInstallationBranchesResponses = {
|
|
|
638
626
|
/**
|
|
639
627
|
* Branches for the repository.
|
|
640
628
|
*/
|
|
641
|
-
200: GitHubBranchesResponse
|
|
629
|
+
200: GitHubBranchesResponse;
|
|
642
630
|
};
|
|
643
631
|
export type ListInstallationBranchesResponse = ListInstallationBranchesResponses[keyof ListInstallationBranchesResponses];
|
|
644
632
|
export type ListUserInstallationsData = {
|
|
@@ -28,7 +28,7 @@ export declare const useListInstallationRepositories: (options: Omit<ListInstall
|
|
|
28
28
|
}) => import("@tanstack/react-query").UseQueryResult<import("../../sdk/types.gen").GitHubRepositoriesResponse | undefined, Error>;
|
|
29
29
|
export declare const useListInstallationBranches: (options: Omit<ListInstallationBranchesData, "url"> & {
|
|
30
30
|
enabled?: boolean;
|
|
31
|
-
}) => import("@tanstack/react-query").UseQueryResult<import("../../sdk/types.gen").GitHubBranchesResponse |
|
|
31
|
+
}) => import("@tanstack/react-query").UseQueryResult<import("../../sdk/types.gen").GitHubBranchesResponse | undefined, Error>;
|
|
32
32
|
export declare const useListUserInstallations: (options?: Omit<ListUserInstallationsData, "url"> & {
|
|
33
33
|
enabled?: boolean;
|
|
34
34
|
}) => import("@tanstack/react-query").UseQueryResult<import("../../sdk/types.gen").UserGithubInstallationsResponse | undefined, Error>;
|