File tree Expand file tree Collapse file tree 2 files changed +44
-33
lines changed Expand file tree Collapse file tree 2 files changed +44
-33
lines changed Original file line number Diff line number Diff line change @@ -149,19 +149,32 @@ export {
149
149
mapMerge ,
150
150
documentId ,
151
151
substring ,
152
+ countDistinct ,
153
+ ceil ,
154
+ floor ,
155
+ exp ,
156
+ pow ,
157
+ round ,
158
+ collectionId ,
159
+ ln ,
160
+ log ,
161
+ sqrt ,
162
+ stringReverse ,
163
+ length as len ,
164
+ abs ,
152
165
Expression ,
153
166
AliasedExpression ,
154
167
Field ,
155
168
FunctionExpression ,
156
- Ordering
169
+ Ordering ,
170
+ BooleanExpression ,
171
+ AggregateFunction
157
172
} from './lite-api/expressions' ;
158
173
159
174
export type {
160
175
ExpressionType ,
161
176
AggregateWithAlias ,
162
177
Selectable ,
163
- BooleanExpression ,
164
- AggregateFunction
165
178
} from './lite-api/expressions' ;
166
179
167
180
export { _internalPipelineToExecutePipelineRequestProto } from './remote/internal_serializer' ;
Original file line number Diff line number Diff line change @@ -19,35 +19,6 @@ import { FirebaseError } from '@firebase/util';
19
19
import { expect , use } from 'chai' ;
20
20
import chaiAsPromised from 'chai-as-promised' ;
21
21
22
- import {
23
- AggregateFunction ,
24
- arrayGet ,
25
- ascending ,
26
- BooleanExpression ,
27
- byteLength ,
28
- FunctionExpression ,
29
- timestampAdd ,
30
- timestampToUnixMicros ,
31
- timestampToUnixMillis ,
32
- timestampToUnixSeconds ,
33
- toLower ,
34
- unixMicrosToTimestamp ,
35
- unixMillisToTimestamp ,
36
- vectorLength ,
37
- countDistinct ,
38
- ceil ,
39
- floor ,
40
- exp ,
41
- pow ,
42
- round ,
43
- collectionId ,
44
- ln ,
45
- log ,
46
- sqrt ,
47
- stringReverse ,
48
- length ,
49
- abs
50
- } from '../../../src/lite-api/expressions' ;
51
22
import { PipelineSnapshot } from '../../../src/lite-api/pipeline-result' ;
52
23
import { addEqualityMatcher } from '../../util/equality_matcher' ;
53
24
import { Deferred } from '../../util/promise' ;
@@ -140,7 +111,34 @@ import {
140
111
field ,
141
112
constant ,
142
113
_internalPipelineToExecutePipelineRequestProto ,
143
- FindNearestStageOptions
114
+ FindNearestStageOptions ,
115
+ AggregateFunction ,
116
+ arrayGet ,
117
+ ascending ,
118
+ BooleanExpression ,
119
+ byteLength ,
120
+ FunctionExpression ,
121
+ timestampAdd ,
122
+ timestampToUnixMicros ,
123
+ timestampToUnixMillis ,
124
+ timestampToUnixSeconds ,
125
+ toLower ,
126
+ unixMicrosToTimestamp ,
127
+ unixMillisToTimestamp ,
128
+ vectorLength ,
129
+ countDistinct ,
130
+ ceil ,
131
+ floor ,
132
+ exp ,
133
+ pow ,
134
+ round ,
135
+ collectionId ,
136
+ ln ,
137
+ log ,
138
+ sqrt ,
139
+ stringReverse ,
140
+ len as length ,
141
+ abs
144
142
} from '../util/pipeline_export' ;
145
143
146
144
use ( chaiAsPromised ) ;
You can’t perform that action at this time.
0 commit comments