Skip to content

Commit 56cce03

Browse files
committed
Fix firestore_bundle_proto rollup issue
1 parent fff6b1b commit 56cce03

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

packages/firestore/src/protos/firestore_bundle_proto.d.ts renamed to packages/firestore/src/protos/firestore_bundle_proto.ts

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,11 @@ export interface BundledQuery {
2626
structuredQuery?: api.StructuredQuery | null;
2727

2828
/** BundledQuery limitType */
29-
limitType?: BundledQuery.LimitType | null;
29+
limitType?: LimitType | null;
3030
}
3131

32-
export namespace BundledQuery {
33-
/** LimitType enum. */
34-
type LimitType = 'FIRST' | 'LAST';
35-
}
32+
/** LimitType enum. */
33+
type LimitType = 'FIRST' | 'LAST';
3634

3735
/** Properties of a NamedQuery. */
3836
export interface NamedQuery {
@@ -59,7 +57,7 @@ export interface BundledDocumentMetadata {
5957
}
6058

6159
/** Properties of a BundleMetadata. */
62-
interface BundleMetadata {
60+
export interface BundleMetadata {
6361
/** BundleMetadata id */
6462
id?: string | null;
6563

@@ -77,7 +75,7 @@ interface BundleMetadata {
7775
}
7876

7977
/** Properties of a BundleElement. */
80-
interface BundleElement {
78+
export interface BundleElement {
8179
/** BundleElement metadata */
8280
metadata?: BundleMetadata | null;
8381

0 commit comments

Comments
 (0)