Skip to content

Commit ad82093

Browse files
committed
Merge branch 'markduckworth/ppl-augment' of github.com:firebase/firebase-js-sdk into markduckworth/ppl-augment
2 parents 773ab02 + ca0ffd9 commit ad82093

File tree

2 files changed

+12
-6
lines changed

2 files changed

+12
-6
lines changed

common/api-review/firestore-lite.api.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1029,6 +1029,8 @@ export interface FindNearestOptions {
10291029
// @public
10301030
export class Firestore {
10311031
get app(): FirebaseApp;
1032+
// Warning: (ae-incompatible-release-tags) The symbol "pipeline" is marked as @public, but its signature references "PipelineSource" which is marked as @beta
1033+
pipeline(): PipelineSource;
10321034
toJSON(): object;
10331035
type: 'firestore-lite' | 'firestore';
10341036
}
@@ -1619,6 +1621,7 @@ export class Query<AppModelType = DocumentData, DbModelType extends DocumentData
16191621
protected constructor();
16201622
readonly converter: FirestoreDataConverter<AppModelType, DbModelType> | null;
16211623
readonly firestore: Firestore;
1624+
pipeline(): Pipeline;
16221625
readonly type: 'query' | 'collection';
16231626
withConverter(converter: null): Query<DocumentData, DocumentData>;
16241627
withConverter<NewAppModelType, NewDbModelType extends DocumentData = DocumentData>(converter: FirestoreDataConverter<NewAppModelType, NewDbModelType>): Query<NewAppModelType, NewDbModelType>;
@@ -2175,8 +2178,8 @@ export function xor(left: FilterExpr, ...right: FilterExpr[]): Xor;
21752178

21762179
// Warnings were encountered during analysis:
21772180
//
2178-
// /home/runner/work/firebase-js-sdk/firebase-js-sdk/packages/firestore/dist/lite/index.d.ts:9257:9 - (ae-incompatible-release-tags) The symbol "accumulators" is marked as @public, but its signature references "AccumulatorTarget" which is marked as @beta
2179-
// /home/runner/work/firebase-js-sdk/firebase-js-sdk/packages/firestore/dist/lite/index.d.ts:9258:9 - (ae-incompatible-release-tags) The symbol "groups" is marked as @public, but its signature references "Selectable" which is marked as @beta
2180-
// /home/runner/work/firebase-js-sdk/firebase-js-sdk/packages/firestore/dist/lite/index.d.ts:9287:9 - (ae-incompatible-release-tags) The symbol "orderings" is marked as @public, but its signature references "Ordering" which is marked as @beta
2181+
// /home/runner/work/firebase-js-sdk/firebase-js-sdk/packages/firestore/dist/lite/index.d.ts:9261:9 - (ae-incompatible-release-tags) The symbol "accumulators" is marked as @public, but its signature references "AccumulatorTarget" which is marked as @beta
2182+
// /home/runner/work/firebase-js-sdk/firebase-js-sdk/packages/firestore/dist/lite/index.d.ts:9262:9 - (ae-incompatible-release-tags) The symbol "groups" is marked as @public, but its signature references "Selectable" which is marked as @beta
2183+
// /home/runner/work/firebase-js-sdk/firebase-js-sdk/packages/firestore/dist/lite/index.d.ts:9291:9 - (ae-incompatible-release-tags) The symbol "orderings" is marked as @public, but its signature references "Ordering" which is marked as @beta
21812184

21822185
```

common/api-review/firestore.api.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1073,6 +1073,8 @@ export interface FindNearestOptions {
10731073
// @public
10741074
export class Firestore {
10751075
get app(): FirebaseApp;
1076+
// Warning: (ae-incompatible-release-tags) The symbol "pipeline" is marked as @public, but its signature references "PipelineSource" which is marked as @beta
1077+
pipeline(): PipelineSource;
10761078
toJSON(): object;
10771079
type: 'firestore-lite' | 'firestore';
10781080
}
@@ -1877,6 +1879,7 @@ export class Query<AppModelType = DocumentData, DbModelType extends DocumentData
18771879
protected constructor();
18781880
readonly converter: FirestoreDataConverter<AppModelType, DbModelType> | null;
18791881
readonly firestore: Firestore;
1882+
pipeline(): Pipeline;
18801883
readonly type: 'query' | 'collection';
18811884
withConverter(converter: null): Query<DocumentData, DocumentData>;
18821885
withConverter<NewAppModelType, NewDbModelType extends DocumentData = DocumentData>(converter: FirestoreDataConverter<NewAppModelType, NewDbModelType>): Query<NewAppModelType, NewDbModelType>;
@@ -2463,8 +2466,8 @@ export function xor(left: FilterExpr, ...right: FilterExpr[]): Xor;
24632466

24642467
// Warnings were encountered during analysis:
24652468
//
2466-
// /home/runner/work/firebase-js-sdk/firebase-js-sdk/packages/firestore/dist/index.d.ts:10107:9 - (ae-incompatible-release-tags) The symbol "accumulators" is marked as @public, but its signature references "AccumulatorTarget" which is marked as @beta
2467-
// /home/runner/work/firebase-js-sdk/firebase-js-sdk/packages/firestore/dist/index.d.ts:10108:9 - (ae-incompatible-release-tags) The symbol "groups" is marked as @public, but its signature references "Selectable" which is marked as @beta
2468-
// /home/runner/work/firebase-js-sdk/firebase-js-sdk/packages/firestore/dist/index.d.ts:10137:9 - (ae-incompatible-release-tags) The symbol "orderings" is marked as @public, but its signature references "Ordering" which is marked as @beta
2469+
// /home/runner/work/firebase-js-sdk/firebase-js-sdk/packages/firestore/dist/index.d.ts:10111:9 - (ae-incompatible-release-tags) The symbol "accumulators" is marked as @public, but its signature references "AccumulatorTarget" which is marked as @beta
2470+
// /home/runner/work/firebase-js-sdk/firebase-js-sdk/packages/firestore/dist/index.d.ts:10112:9 - (ae-incompatible-release-tags) The symbol "groups" is marked as @public, but its signature references "Selectable" which is marked as @beta
2471+
// /home/runner/work/firebase-js-sdk/firebase-js-sdk/packages/firestore/dist/index.d.ts:10141:9 - (ae-incompatible-release-tags) The symbol "orderings" is marked as @public, but its signature references "Ordering" which is marked as @beta
24692472

24702473
```

0 commit comments

Comments
 (0)