@wix/sdk-types 1.13.26 → 1.13.28

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.
@@ -640,6 +640,14 @@ interface ValueAggregation {
640
640
  interface RangeAggregation {
641
641
  buckets?: RangeBucket[];
642
642
  }
643
+ /**
644
+ * Group by aggregation configuration.
645
+ */
646
+ interface GroupByAggregation {
647
+ name?: string | null;
648
+ fieldPath?: string | null;
649
+ value?: ValueAggregation;
650
+ }
643
651
  /**
644
652
  * Scalar aggregation configuration
645
653
  */
@@ -683,6 +691,7 @@ type BaseAggregationWithoutType<Spec extends SearchSpec> = {
683
691
  range?: RangeAggregation;
684
692
  scalar?: ScalarAggregation;
685
693
  value?: ValueAggregation;
694
+ groupBy?: GroupByAggregation;
686
695
  };
687
696
  /**
688
697
  * Base aggregation interface
package/build/index.d.mts CHANGED
@@ -640,6 +640,14 @@ interface ValueAggregation {
640
640
  interface RangeAggregation {
641
641
  buckets?: RangeBucket[];
642
642
  }
643
+ /**
644
+ * Group by aggregation configuration.
645
+ */
646
+ interface GroupByAggregation {
647
+ name?: string | null;
648
+ fieldPath?: string | null;
649
+ value?: ValueAggregation;
650
+ }
643
651
  /**
644
652
  * Scalar aggregation configuration
645
653
  */
@@ -683,6 +691,7 @@ type BaseAggregationWithoutType<Spec extends SearchSpec> = {
683
691
  range?: RangeAggregation;
684
692
  scalar?: ScalarAggregation;
685
693
  value?: ValueAggregation;
694
+ groupBy?: GroupByAggregation;
686
695
  };
687
696
  /**
688
697
  * Base aggregation interface
package/build/index.d.ts CHANGED
@@ -640,6 +640,14 @@ interface ValueAggregation {
640
640
  interface RangeAggregation {
641
641
  buckets?: RangeBucket[];
642
642
  }
643
+ /**
644
+ * Group by aggregation configuration.
645
+ */
646
+ interface GroupByAggregation {
647
+ name?: string | null;
648
+ fieldPath?: string | null;
649
+ value?: ValueAggregation;
650
+ }
643
651
  /**
644
652
  * Scalar aggregation configuration
645
653
  */
@@ -683,6 +691,7 @@ type BaseAggregationWithoutType<Spec extends SearchSpec> = {
683
691
  range?: RangeAggregation;
684
692
  scalar?: ScalarAggregation;
685
693
  value?: ValueAggregation;
694
+ groupBy?: GroupByAggregation;
686
695
  };
687
696
  /**
688
697
  * Base aggregation interface
@@ -709,6 +709,14 @@ interface ValueAggregation {
709
709
  interface RangeAggregation {
710
710
  buckets?: RangeBucket[];
711
711
  }
712
+ /**
713
+ * Group by aggregation configuration.
714
+ */
715
+ interface GroupByAggregation {
716
+ name?: string | null;
717
+ fieldPath?: string | null;
718
+ value?: ValueAggregation;
719
+ }
712
720
  /**
713
721
  * Scalar aggregation configuration
714
722
  */
@@ -752,6 +760,7 @@ type BaseAggregationWithoutType<Spec extends SearchSpec> = {
752
760
  range?: RangeAggregation;
753
761
  scalar?: ScalarAggregation;
754
762
  value?: ValueAggregation;
763
+ groupBy?: GroupByAggregation;
755
764
  };
756
765
  /**
757
766
  * Base aggregation interface
@@ -709,6 +709,14 @@ interface ValueAggregation {
709
709
  interface RangeAggregation {
710
710
  buckets?: RangeBucket[];
711
711
  }
712
+ /**
713
+ * Group by aggregation configuration.
714
+ */
715
+ interface GroupByAggregation {
716
+ name?: string | null;
717
+ fieldPath?: string | null;
718
+ value?: ValueAggregation;
719
+ }
712
720
  /**
713
721
  * Scalar aggregation configuration
714
722
  */
@@ -752,6 +760,7 @@ type BaseAggregationWithoutType<Spec extends SearchSpec> = {
752
760
  range?: RangeAggregation;
753
761
  scalar?: ScalarAggregation;
754
762
  value?: ValueAggregation;
763
+ groupBy?: GroupByAggregation;
755
764
  };
756
765
  /**
757
766
  * Base aggregation interface
@@ -709,6 +709,14 @@ interface ValueAggregation {
709
709
  interface RangeAggregation {
710
710
  buckets?: RangeBucket[];
711
711
  }
712
+ /**
713
+ * Group by aggregation configuration.
714
+ */
715
+ interface GroupByAggregation {
716
+ name?: string | null;
717
+ fieldPath?: string | null;
718
+ value?: ValueAggregation;
719
+ }
712
720
  /**
713
721
  * Scalar aggregation configuration
714
722
  */
@@ -752,6 +760,7 @@ type BaseAggregationWithoutType<Spec extends SearchSpec> = {
752
760
  range?: RangeAggregation;
753
761
  scalar?: ScalarAggregation;
754
762
  value?: ValueAggregation;
763
+ groupBy?: GroupByAggregation;
755
764
  };
756
765
  /**
757
766
  * Base aggregation interface
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/sdk-types",
3
- "version": "1.13.26",
3
+ "version": "1.13.28",
4
4
  "license": "MIT",
5
5
  "author": {
6
6
  "name": "Ronny Ringel",
@@ -62,5 +62,5 @@
62
62
  "wallaby": {
63
63
  "autoDetect": true
64
64
  },
65
- "falconPackageHash": "5e33f8ab2891ecb1d550b247744b0226f8b30b0dcd39aa8a8b6d64c0"
65
+ "falconPackageHash": "08cfe021130efabed76be9a5198b2ff5a2dd5dfcf7d4e9aaef5a64bd"
66
66
  }