|
33 | 33 | from google.cloud.firestore_v1.async_client import AsyncClient |
34 | 34 | from google.cloud.firestore_v1.async_collection import AsyncCollectionReference |
35 | 35 | from google.cloud.firestore_v1.async_document import AsyncDocumentReference |
| 36 | +from google.cloud.firestore_v1.async_pipeline import AsyncPipeline |
36 | 37 | from google.cloud.firestore_v1.async_query import AsyncQuery |
37 | 38 | from google.cloud.firestore_v1.async_transaction import ( |
38 | 39 | AsyncTransaction, |
39 | 40 | async_transactional, |
40 | 41 | ) |
41 | 42 | from google.cloud.firestore_v1.base_aggregation import CountAggregation |
42 | 43 | from google.cloud.firestore_v1.base_document import DocumentSnapshot |
| 44 | +from google.cloud.firestore_v1.base_pipeline import SubPipeline |
43 | 45 | from google.cloud.firestore_v1.base_query import And, FieldFilter, Or |
44 | 46 | from google.cloud.firestore_v1.batch import WriteBatch |
45 | 47 | from google.cloud.firestore_v1.client import Client |
46 | 48 | from google.cloud.firestore_v1.collection import CollectionReference |
47 | 49 | from google.cloud.firestore_v1.document import DocumentReference |
| 50 | +from google.cloud.firestore_v1.pipeline import Pipeline |
| 51 | +from google.cloud.firestore_v1.pipeline_result import ( |
| 52 | + AsyncPipelineStream, |
| 53 | + PipelineResult, |
| 54 | + PipelineSnapshot, |
| 55 | + PipelineStream, |
| 56 | +) |
| 57 | +from google.cloud.firestore_v1.pipeline_source import PipelineSource |
| 58 | +from google.cloud.firestore_v1.pipeline_types import ( |
| 59 | + FindNearestOptions, |
| 60 | + Ordering, |
| 61 | + PipelineDataType, |
| 62 | + SampleOptions, |
| 63 | + SearchOptions, |
| 64 | + TimeGranularity, |
| 65 | + TimePart, |
| 66 | + TimeUnit, |
| 67 | + UnnestOptions, |
| 68 | +) |
48 | 69 | from google.cloud.firestore_v1.query import CollectionGroup, Query |
49 | | -from google.cloud.firestore_v1.query_profile import ExplainOptions |
| 70 | +from google.cloud.firestore_v1.query_profile import ( |
| 71 | + ExplainOptions, |
| 72 | + PipelineExplainOptions, |
| 73 | +) |
50 | 74 | from google.cloud.firestore_v1.transaction import Transaction, transactional |
51 | 75 | from google.cloud.firestore_v1.transforms import ( |
52 | 76 | DELETE_FIELD, |
|
115 | 139 | "AsyncClient", |
116 | 140 | "AsyncCollectionReference", |
117 | 141 | "AsyncDocumentReference", |
| 142 | + "AsyncPipeline", |
| 143 | + "AsyncPipelineStream", |
118 | 144 | "AsyncQuery", |
119 | 145 | "async_transactional", |
120 | 146 | "AsyncTransaction", |
|
130 | 156 | "ExistsOption", |
131 | 157 | "ExplainOptions", |
132 | 158 | "FieldFilter", |
| 159 | + "FindNearestOptions", |
133 | 160 | "GeoPoint", |
134 | 161 | "Increment", |
135 | 162 | "LastUpdateOption", |
136 | 163 | "Maximum", |
137 | 164 | "Minimum", |
138 | 165 | "Or", |
| 166 | + "Ordering", |
| 167 | + "Pipeline", |
| 168 | + "PipelineDataType", |
| 169 | + "PipelineExplainOptions", |
| 170 | + "PipelineResult", |
| 171 | + "PipelineSnapshot", |
| 172 | + "PipelineSource", |
| 173 | + "PipelineStream", |
139 | 174 | "Query", |
140 | 175 | "ReadAfterWriteError", |
141 | 176 | "SERVER_TIMESTAMP", |
| 177 | + "SampleOptions", |
| 178 | + "SearchOptions", |
| 179 | + "SubPipeline", |
| 180 | + "TimeGranularity", |
| 181 | + "TimePart", |
| 182 | + "TimeUnit", |
142 | 183 | "Transaction", |
143 | 184 | "transactional", |
144 | 185 | "types", |
| 186 | + "UnnestOptions", |
145 | 187 | "Watch", |
146 | 188 | "WriteBatch", |
147 | 189 | "WriteOption", |
|
0 commit comments