repzo 1.0.176 → 1.0.177
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/types/index.d.ts +1 -1
- package/package.json +1 -1
- package/src/types/index.ts +1 -1
package/lib/types/index.d.ts
CHANGED
|
@@ -16151,7 +16151,7 @@ export declare namespace Service {
|
|
|
16151
16151
|
type AccumulatorOperator = "sum" | "count" | "avg" | "max" | "min" | "first" | "last" | "addToSet" | "push";
|
|
16152
16152
|
type AccumulatorLabel = "Sum" | "Count" | "Average" | "Max" | "Min" | "First" | "Last" | "Unique" | "ALL";
|
|
16153
16153
|
interface Accumulator {
|
|
16154
|
-
|
|
16154
|
+
operator: AccumulatorOperator;
|
|
16155
16155
|
label?: AccumulatorLabel;
|
|
16156
16156
|
}
|
|
16157
16157
|
interface Field {
|
package/package.json
CHANGED
package/src/types/index.ts
CHANGED
|
@@ -18232,7 +18232,7 @@ export namespace Service {
|
|
|
18232
18232
|
| "ALL";
|
|
18233
18233
|
|
|
18234
18234
|
export interface Accumulator {
|
|
18235
|
-
|
|
18235
|
+
operator: AccumulatorOperator;
|
|
18236
18236
|
label?: AccumulatorLabel;
|
|
18237
18237
|
}
|
|
18238
18238
|
|