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.
@@ -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
- value: AccumulatorOperator;
16154
+ operator: AccumulatorOperator;
16155
16155
  label?: AccumulatorLabel;
16156
16156
  }
16157
16157
  interface Field {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "repzo",
3
- "version": "1.0.176",
3
+ "version": "1.0.177",
4
4
  "description": "Repzo TypeScript SDK",
5
5
  "main": "./lib/index.js",
6
6
  "types": "./lib/index.d.ts",
@@ -18232,7 +18232,7 @@ export namespace Service {
18232
18232
  | "ALL";
18233
18233
 
18234
18234
  export interface Accumulator {
18235
- value: AccumulatorOperator;
18235
+ operator: AccumulatorOperator;
18236
18236
  label?: AccumulatorLabel;
18237
18237
  }
18238
18238