Skip to content

Fix firestore_bundle_proto rollup issue. #3316

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 29, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .changeset/lemon-steaks-draw.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
---

---
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,11 @@ export interface BundledQuery {
structuredQuery?: api.StructuredQuery | null;

/** BundledQuery limitType */
limitType?: BundledQuery.LimitType | null;
limitType?: LimitType | null;
}

export namespace BundledQuery {
/** LimitType enum. */
type LimitType = 'FIRST' | 'LAST';
}
/** LimitType enum. */
type LimitType = 'FIRST' | 'LAST';

/** Properties of a NamedQuery. */
export interface NamedQuery {
Expand All @@ -59,7 +57,7 @@ export interface BundledDocumentMetadata {
}

/** Properties of a BundleMetadata. */
interface BundleMetadata {
export interface BundleMetadata {
/** BundleMetadata id */
id?: string | null;

Expand All @@ -77,7 +75,7 @@ interface BundleMetadata {
}

/** Properties of a BundleElement. */
interface BundleElement {
export interface BundleElement {
/** BundleElement metadata */
metadata?: BundleMetadata | null;

Expand Down