@xata.io/client 0.0.0-alpha.vf3ed7b8 → 0.0.0-alpha.vf89b33e
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/index.cjs.map +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
@@ -3236,7 +3236,7 @@ declare type BranchResolutionOptions = {
|
|
3236
3236
|
apiKey?: string;
|
3237
3237
|
fetchImpl?: FetchImpl;
|
3238
3238
|
};
|
3239
|
-
declare function getCurrentBranchName(options?: BranchResolutionOptions): Promise<string
|
3239
|
+
declare function getCurrentBranchName(options?: BranchResolutionOptions): Promise<string>;
|
3240
3240
|
declare function getCurrentBranchDetails(options?: BranchResolutionOptions): Promise<DBBranch | null>;
|
3241
3241
|
declare function getDatabaseURL(): string | undefined;
|
3242
3242
|
|