@wix/sdk-types 1.17.3 → 1.17.4

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.
@@ -895,63 +895,9 @@ type BaseSearch<Entity, Spec extends SearchSpec> = {
895
895
  */
896
896
  type Search<Entity, Spec extends SearchSpec> = BaseSearch<Entity, Spec> & Partial<Paging<Spec>>;
897
897
 
898
- /**
899
- * Specification for a query API
900
- * Defines what fields can be filtered and sorted
901
- * @example
902
- * interface MyQuerySpec extends QuerySpec {
903
- * wql: [{
904
- * operators: ['$eq', '$ne'],
905
- * fields: ['id', 'title'],
906
- * sort: 'BOTH'
907
- * }],
908
- * paging: 'offset', // or 'cursor' for cursor-based pagination
909
- * };
910
- */
911
- interface QuerySpec extends WQLSpec {
912
- /**
913
- * Supported paging type for this query API
914
- * - 'cursor': Uses cursor-based pagination
915
- * - 'offset': Uses offset-based pagination
916
- */
898
+ interface PagingSpec {
917
899
  paging: PagingType;
918
900
  }
919
-
920
- /**
921
- * Complete query request for an entity type
922
- * @template Entity The entity type being queried
923
- * @template Spec The query specification type
924
- * @example
925
- * // Define a query type for products
926
- * type QueryProducts = Query<Product, ProductQuerySpec>;
927
- *
928
- * // Create a query request with offset paging
929
- * const query: QueryProducts = {
930
- * filter: { price: { $gte: 10 } },
931
- * sort: [{ fieldName: 'price', order: 'ASC' }],
932
- * paging: { limit: 20, offset: 0 }
933
- * };
934
- *
935
- * // Or with cursor paging (if spec.paging = 'cursor')
936
- * const query: QueryProducts = {
937
- * filter: { price: { $gte: 10 } },
938
- * sort: [{ fieldName: 'price', order: 'ASC' }],
939
- * cursorPaging: { limit: 20, cursor: "..." }
940
- * };
941
- */
942
- type Query<Entity, Spec extends QuerySpec> = {
943
- /**
944
- * Filter object.
945
- * Learn more about the [filter section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-filter-section).
946
- */
947
- filter?: Filter<Entity, Spec>;
948
- /**
949
- * List of sort objects.
950
- * Learn more about the [sort section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
951
- */
952
- sort?: Sorting<Spec>[];
953
- } & Partial<Paging<Spec>>;
954
-
955
901
  interface CursorPaging {
956
902
  limit: number;
957
903
  cursor?: string;
@@ -960,42 +906,31 @@ interface OffsetPaging {
960
906
  limit: number;
961
907
  offset?: number;
962
908
  }
963
- type PagingFor<S extends QuerySpec> = S['paging'] extends 'cursor' ? CursorPaging : OffsetPaging;
964
- /**
965
- * The output type from QueryBuilder.build()
966
- * This is a plain object ready to be sent to an API
967
- */
968
- interface QueryRequest<T, S extends QuerySpec> {
969
- filter?: Filter<T, S>;
970
- sort?: Sorting<S>[];
971
- paging?: PagingFor<S>;
972
- /** Field projection - return only specified fields */
973
- fields?: string[];
974
- }
909
+ type PagingFor<S extends PagingSpec> = S['paging'] extends 'cursor' ? CursorPaging : OffsetPaging;
975
910
  /**
976
911
  * Represents a filter expression that can be combined with other filters
977
912
  */
978
- interface FilterExpression<T, S extends QuerySpec> {
913
+ interface FilterExpression<T, S extends WQLSpec> {
979
914
  readonly filter: Filter<T, S>;
980
915
  }
981
916
  /**
982
917
  * Represents a sort expression
983
918
  */
984
- interface SortExpression<S extends QuerySpec> {
919
+ interface SortExpression<S extends WQLSpec> {
985
920
  readonly sort: Sorting<S>;
986
921
  }
987
922
  /**
988
923
  * Extract fields that support a specific operator from the spec
989
924
  */
990
- type FieldsWithOperator<S extends QuerySpec, Op extends string> = S['wql'][number] extends infer Group ? Group extends WQL ? Group['operators'] extends readonly string[] ? Op extends Group['operators'][number] ? Group['fields'][number] : never : Group['fields'][number] : never : never;
925
+ type FieldsWithOperator<S extends WQLSpec, Op extends string> = S['wql'][number] extends infer Group ? Group extends WQL ? Group['operators'] extends readonly string[] ? Op extends Group['operators'][number] ? Group['fields'][number] : never : Group['fields'][number] : never : never;
991
926
  /**
992
927
  * Check if a specific field supports a specific operator
993
928
  */
994
- type HasOperator<S extends QuerySpec, Field extends string, Op extends string> = Field extends FieldsWithOperator<S, Op> ? true : false;
929
+ type HasOperator<S extends WQLSpec, Field extends string, Op extends string> = Field extends FieldsWithOperator<S, Op> ? true : false;
995
930
  /**
996
931
  * Extract sortable fields from the spec
997
932
  */
998
- type SortableFields<S extends QuerySpec> = S['wql'][number] extends infer Group ? Group extends {
933
+ type SortableFields<S extends WQLSpec> = S['wql'][number] extends infer Group ? Group extends {
999
934
  fields: readonly string[];
1000
935
  sort: 'ASC' | 'DESC' | 'BOTH';
1001
936
  } ? Group['fields'][number] : never : never;
@@ -1010,7 +945,7 @@ type SortableFields<S extends QuerySpec> = S['wql'][number] extends infer Group
1010
945
  * Filter('price').gt(50).lt(100)
1011
946
  * // Produces: { price: { $gt: 50, $lt: 100 } }
1012
947
  */
1013
- type ChainableFieldFilter<T, S extends QuerySpec, Field extends FilterableFields<S>> = FilterExpression<T, S> & (HasOperator<S, Field & string, '$eq'> extends true ? {
948
+ type ChainableFieldFilter<T, S extends WQLSpec, Field extends FilterableFields<S>> = FilterExpression<T, S> & (HasOperator<S, Field & string, '$eq'> extends true ? {
1014
949
  eq(value: GetNestedType<T, Field & string>): ChainableFieldFilter<T, S, Field>;
1015
950
  } : {}) & (HasOperator<S, Field & string, '$ne'> extends true ? {
1016
951
  ne(value: GetNestedType<T, Field & string>): ChainableFieldFilter<T, S, Field>;
@@ -1047,11 +982,11 @@ type ChainableFieldFilter<T, S extends QuerySpec, Field extends FilterableFields
1047
982
  * Filter methods for a specific field (alias for ChainableFieldFilter)
1048
983
  * Only shows methods for operators that the field supports
1049
984
  */
1050
- type FieldFilter<T, S extends QuerySpec, Field extends FilterableFields<S>> = ChainableFieldFilter<T, S, Field>;
985
+ type FieldFilter<T, S extends WQLSpec, Field extends FilterableFields<S>> = ChainableFieldFilter<T, S, Field>;
1051
986
  /**
1052
987
  * Sort methods for a specific field
1053
988
  */
1054
- interface FieldSort<S extends QuerySpec> {
989
+ interface FieldSort<S extends WQLSpec> {
1055
990
  asc(): SortExpression<S>;
1056
991
  desc(): SortExpression<S>;
1057
992
  }
@@ -1061,7 +996,7 @@ interface FieldSort<S extends QuerySpec> {
1061
996
  * Filter('price').gt(50)
1062
997
  * Filter.and(Filter('title').eq('Product'), Filter('price').gt(50))
1063
998
  */
1064
- interface FilterFactory<T, S extends QuerySpec> {
999
+ interface FilterFactory<T, S extends WQLSpec> {
1065
1000
  /** Create a field-specific filter */
1066
1001
  <Field extends FilterableFields<S>>(field: Field): FieldFilter<T, S, Field>;
1067
1002
  /** Combine filters with AND logic */
@@ -1076,7 +1011,266 @@ interface FilterFactory<T, S extends QuerySpec> {
1076
1011
  * @example
1077
1012
  * Sort('price').desc()
1078
1013
  */
1079
- type SortFactory<S extends QuerySpec> = <Field extends SortableFields<S>>(field: Field) => FieldSort<S>;
1014
+ type SortFactory<S extends WQLSpec> = <Field extends SortableFields<S>>(field: Field) => FieldSort<S>;
1015
+
1016
+ /**
1017
+ * The output type from SearchBuilder.build()
1018
+ * This is a plain object ready to be sent to an API
1019
+ */
1020
+ interface SearchRequest<T, S extends SearchSpec> {
1021
+ /** Filter object */
1022
+ filter?: Filter<T, S>;
1023
+ /** List of sort objects */
1024
+ sort?: Sorting<S>[];
1025
+ /** Full-text search parameters */
1026
+ search?: SearchDetails<S>;
1027
+ /** Aggregations to compute */
1028
+ aggregations?: Aggregation<S>[];
1029
+ /** Paging configuration */
1030
+ paging?: PagingFor<S>;
1031
+ /** Time zone for date operations */
1032
+ timeZone?: string;
1033
+ }
1034
+ /**
1035
+ * Represents a search expression that can be used in SearchBuilder
1036
+ */
1037
+ interface SearchExpression<S extends SearchSpec> {
1038
+ readonly search: SearchDetails<S>;
1039
+ }
1040
+ /**
1041
+ * Represents an aggregation expression that can be used in SearchBuilder
1042
+ */
1043
+ interface AggregationExpression<S extends SearchSpec> {
1044
+ readonly aggregation: Aggregation<S>;
1045
+ }
1046
+ /**
1047
+ * Builder for constructing search parameters
1048
+ * @example
1049
+ * SearchParams('dark shoes')
1050
+ * .mode('AND')
1051
+ * .fields(['productName', 'description'])
1052
+ * .fuzzy(true)
1053
+ */
1054
+ interface SearchParamsBuilder<S extends SearchSpec> extends SearchExpression<S> {
1055
+ /** Set the search expression/query string */
1056
+ expression(expr: string): SearchParamsBuilder<S>;
1057
+ /** Set the search mode (how to combine multiple terms) */
1058
+ mode(mode: 'AND' | 'OR'): SearchParamsBuilder<S>;
1059
+ /** Set the fields to search in */
1060
+ fields(fields: SearchableFields<S>[]): SearchParamsBuilder<S>;
1061
+ /** Enable or disable fuzzy matching */
1062
+ fuzzy(enabled?: boolean): SearchParamsBuilder<S>;
1063
+ }
1064
+ /**
1065
+ * Factory function for creating SearchParamsBuilder
1066
+ * @param expression - Optional search expression to initialize with
1067
+ */
1068
+ type SearchParamsFactory<S extends SearchSpec> = (expression?: string) => SearchParamsBuilder<S>;
1069
+ /**
1070
+ * Sort configuration for value aggregations
1071
+ */
1072
+ interface ValueAggregationSort {
1073
+ sortBy(type: 'COUNT' | 'VALUE', direction: 'ASC' | 'DESC'): this;
1074
+ }
1075
+ /**
1076
+ * Builder for VALUE type aggregations
1077
+ */
1078
+ interface ValueAggregationBuilder<S extends SearchSpec> extends AggregationExpression<S>, ValueAggregationSort {
1079
+ /** Set maximum number of buckets to return */
1080
+ limit(count: number): ValueAggregationBuilder<S>;
1081
+ /** Exclude documents with missing values */
1082
+ excludeMissingValues(): ValueAggregationBuilder<S>;
1083
+ /** Include documents with missing values */
1084
+ includeMissingValues(): ValueAggregationBuilder<S>;
1085
+ /** Include specific values in their own bucket */
1086
+ includeValues(addToBucket: string): ValueAggregationBuilder<S>;
1087
+ }
1088
+ /**
1089
+ * Builder for RANGE type aggregations
1090
+ */
1091
+ interface RangeAggregationBuilder<S extends SearchSpec> extends AggregationExpression<S> {
1092
+ /** Set the range buckets */
1093
+ withBuckets(...buckets: {
1094
+ from?: number | null;
1095
+ to?: number | null;
1096
+ }[]): RangeAggregationBuilder<S>;
1097
+ }
1098
+ /**
1099
+ * Builder for DATE_HISTOGRAM type aggregations
1100
+ */
1101
+ interface DateHistogramAggregationBuilder<S extends SearchSpec> extends AggregationExpression<S> {
1102
+ /** Set the interval for date histogram buckets */
1103
+ interval(interval: 'YEAR' | 'MONTH' | 'WEEK' | 'DAY' | 'HOUR' | 'MINUTE' | 'SECOND'): DateHistogramAggregationBuilder<S>;
1104
+ }
1105
+ /**
1106
+ * Builder for SCALAR type aggregations
1107
+ */
1108
+ interface ScalarAggregationBuilder<S extends SearchSpec> extends AggregationExpression<S> {
1109
+ /** Set the scalar aggregation type */
1110
+ type(scalarType: 'COUNT_DISTINCT' | 'MIN' | 'MAX' | 'SUM' | 'AVG'): ScalarAggregationBuilder<S>;
1111
+ }
1112
+ /**
1113
+ * Builder for NESTED type aggregations
1114
+ */
1115
+ interface NestedAggregationBuilder<S extends SearchSpec> extends AggregationExpression<S> {
1116
+ /** Add a nested aggregation */
1117
+ addNestedAggregation(aggregation: AggregationExpression<S>): NestedAggregationBuilder<S>;
1118
+ }
1119
+ /**
1120
+ * Aggregation type configuration
1121
+ */
1122
+ type AggregationType = 'VALUE' | 'RANGE' | 'DATE_HISTOGRAM' | 'SCALAR' | 'NESTED';
1123
+ /**
1124
+ * Builder for constructing aggregations
1125
+ * @example
1126
+ * Aggregation('status_count')
1127
+ * .ofType('VALUE')
1128
+ * .onField('status')
1129
+ * .asValueAggregation()
1130
+ * .sortBy('COUNT', 'DESC')
1131
+ * .limit(10)
1132
+ */
1133
+ interface AggregationBuilder<S extends SearchSpec> extends AggregationExpression<S> {
1134
+ /** Set the aggregation type */
1135
+ ofType(type: AggregationType): AggregationBuilder<S>;
1136
+ /** Set the field to aggregate on */
1137
+ onField(field: AggregatableFields<S>): AggregationBuilder<S>;
1138
+ /** Configure as a value aggregation */
1139
+ asValueAggregation(): ValueAggregationBuilder<S>;
1140
+ /** Configure as a range aggregation */
1141
+ asRangeAggregation(): RangeAggregationBuilder<S>;
1142
+ /** Configure as a date histogram aggregation */
1143
+ asDateHistogramAggregation(): DateHistogramAggregationBuilder<S>;
1144
+ /** Configure as a scalar aggregation */
1145
+ asScalarAggregation(): ScalarAggregationBuilder<S>;
1146
+ /** Configure as a nested aggregation */
1147
+ asNestedAggregation(): NestedAggregationBuilder<S>;
1148
+ }
1149
+ /**
1150
+ * Factory function for creating AggregationBuilder
1151
+ */
1152
+ type AggregationFactory<S extends SearchSpec> = (name: string) => AggregationBuilder<S>;
1153
+ /**
1154
+ * Search builder interface for constructing search requests
1155
+ * @template T - Entity type
1156
+ * @template S - Search spec defining filterable/sortable/searchable/aggregatable fields
1157
+ * @template R - Output type from build() (defaults to SearchRequest<T, S>)
1158
+ * @example
1159
+ * SearchBuilder()
1160
+ * .withFilter(Filter.and(
1161
+ * Filter('title').eq('Product'),
1162
+ * Filter('price').gt(50)
1163
+ * ))
1164
+ * .withSearchClause(SearchParams('shoes').fuzzy(true))
1165
+ * .withAggregation(Aggregation('status_count').ofType('VALUE').onField('status'))
1166
+ * .withSorting(Sort('price').desc())
1167
+ * .withPaging({ limit: 20 })
1168
+ * .build()
1169
+ */
1170
+ interface SearchBuilder<T, S extends SearchSpec, R = SearchRequest<T, S>> {
1171
+ /** Add a filter to the search */
1172
+ withFilter(filter: FilterExpression<T, S>): SearchBuilder<T, S, R>;
1173
+ /** Add a search clause for full-text search */
1174
+ withSearchClause(search: SearchExpression<S>): SearchBuilder<T, S, R>;
1175
+ /** Add sorting to the search */
1176
+ withSorting(...sorts: SortExpression<S>[]): SearchBuilder<T, S, R>;
1177
+ /** Add aggregations to the search */
1178
+ withAggregation(...aggregations: AggregationExpression<S>[]): SearchBuilder<T, S, R>;
1179
+ /** Add paging to the search */
1180
+ withPaging(paging: PagingFor<S>): SearchBuilder<T, S, R>;
1181
+ /** Set the time zone for date operations */
1182
+ withTimeZone(timeZone: string): SearchBuilder<T, S, R>;
1183
+ /** Build the final search request object */
1184
+ build(): R;
1185
+ }
1186
+ /**
1187
+ * Complete set of search helpers for an entity
1188
+ * This is what gets spread into module namespaces
1189
+ * @template T - Entity type
1190
+ * @template S - Search spec defining filterable/sortable/searchable/aggregatable fields
1191
+ * @template R - Output type from SearchBuilder.build() (defaults to SearchRequest<T, S>)
1192
+ */
1193
+ interface SearchHelpers<T, S extends SearchSpec, R = SearchRequest<T, S>> {
1194
+ /** SearchBuilder factory */
1195
+ SearchBuilder: () => SearchBuilder<T, S, R>;
1196
+ /** Filter factory - creates filter expressions (reused from query) */
1197
+ Filter: FilterFactory<T, S>;
1198
+ /** Sort factory - creates sort expressions (reused from query) */
1199
+ Sort: SortFactory<S>;
1200
+ /** Search params factory - creates search expressions */
1201
+ SearchParams: SearchParamsFactory<S>;
1202
+ /** Aggregation factory - creates aggregation expressions */
1203
+ Aggregation: AggregationFactory<S>;
1204
+ }
1205
+
1206
+ /**
1207
+ * Specification for a query API
1208
+ * Defines what fields can be filtered and sorted
1209
+ * @example
1210
+ * interface MyQuerySpec extends QuerySpec {
1211
+ * wql: [{
1212
+ * operators: ['$eq', '$ne'],
1213
+ * fields: ['id', 'title'],
1214
+ * sort: 'BOTH'
1215
+ * }],
1216
+ * paging: 'offset', // or 'cursor' for cursor-based pagination
1217
+ * };
1218
+ */
1219
+ interface QuerySpec extends WQLSpec {
1220
+ /**
1221
+ * Supported paging type for this query API
1222
+ * - 'cursor': Uses cursor-based pagination
1223
+ * - 'offset': Uses offset-based pagination
1224
+ */
1225
+ paging: PagingType;
1226
+ }
1227
+
1228
+ /**
1229
+ * Complete query request for an entity type
1230
+ * @template Entity The entity type being queried
1231
+ * @template Spec The query specification type
1232
+ * @example
1233
+ * // Define a query type for products
1234
+ * type QueryProducts = Query<Product, ProductQuerySpec>;
1235
+ *
1236
+ * // Create a query request with offset paging
1237
+ * const query: QueryProducts = {
1238
+ * filter: { price: { $gte: 10 } },
1239
+ * sort: [{ fieldName: 'price', order: 'ASC' }],
1240
+ * paging: { limit: 20, offset: 0 }
1241
+ * };
1242
+ *
1243
+ * // Or with cursor paging (if spec.paging = 'cursor')
1244
+ * const query: QueryProducts = {
1245
+ * filter: { price: { $gte: 10 } },
1246
+ * sort: [{ fieldName: 'price', order: 'ASC' }],
1247
+ * cursorPaging: { limit: 20, cursor: "..." }
1248
+ * };
1249
+ */
1250
+ type Query<Entity, Spec extends QuerySpec> = {
1251
+ /**
1252
+ * Filter object.
1253
+ * Learn more about the [filter section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-filter-section).
1254
+ */
1255
+ filter?: Filter<Entity, Spec>;
1256
+ /**
1257
+ * List of sort objects.
1258
+ * Learn more about the [sort section](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#the-sort-section).
1259
+ */
1260
+ sort?: Sorting<Spec>[];
1261
+ } & Partial<Paging<Spec>>;
1262
+
1263
+ /**
1264
+ * The output type from QueryBuilder.build()
1265
+ * This is a plain object ready to be sent to an API
1266
+ */
1267
+ interface QueryRequest<T, S extends QuerySpec> {
1268
+ filter?: Filter<T, S>;
1269
+ sort?: Sorting<S>[];
1270
+ paging?: PagingFor<S>;
1271
+ /** Field projection - return only specified fields */
1272
+ fields?: string[];
1273
+ }
1080
1274
  /**
1081
1275
  * Query builder interface
1082
1276
  * @template T - Entity type
@@ -1121,4 +1315,4 @@ interface QueryHelpers<T, S extends QuerySpec, R = QueryRequest<T, S>> {
1121
1315
  Sort: SortFactory<S>;
1122
1316
  }
1123
1317
 
1124
- export { type APIMetadata, type AccountInfo, type AmbassadorFactory, type AmbassadorFunctionDescriptor, type AmbassadorRequestOptions, type AuthenticationStrategy, type BaseEventMetadata, type BoundAuthenticationStrategy, type BuildAmbassadorFunction, type BuildDescriptors, type BuildEventDefinition, type BuildRESTFunction, type BuildServicePluginDefinition, type CursorPaging, type Descriptors, EventDefinition, type EventHandler, type EventIdentity, type ExposeFieldsBasedOnToggle, type FieldFilter, type FieldSort, type Filter, type FilterExpression, type FilterFactory, type FilterableFields, type GetNestedType, type HTTPMethod, type Host, type HostModule, type HostModuleAPI, type HttpClient, type HttpResponse, type MaybeContext, type Method, type MigrationOptions, type NonNullablePaths, type OffsetPaging, type PagingFor, type PublicMetadata, type Query, type QueryBuilder, type QueryHelpers, type QueryRequest, type QuerySpec, type RESTFunctionDescriptor, type RequestContext, type RequestOptions, type RequestOptionsFactory, type RestModuleMeta, SERVICE_PLUGIN_ERROR_TYPE, SORT_CAPABILITIES, SORT_DIRECTIONS, type Search, type SearchSpec, type ServicePluginContract, ServicePluginDefinition, type ServicePluginMethodInput, type ServicePluginMethodMetadata, type SortCapability, type SortExpression, type SortFactory, type SortOrder, type Sorting, type WQL, type WQLSpec };
1318
+ export { type APIMetadata, type AccountInfo, type AggregatableFields, type Aggregation, type AggregationBuilder, type AggregationExpression, type AggregationFactory, type AggregationType, type AmbassadorFactory, type AmbassadorFunctionDescriptor, type AmbassadorRequestOptions, type AuthenticationStrategy, type BaseEventMetadata, type BoundAuthenticationStrategy, type BuildAmbassadorFunction, type BuildDescriptors, type BuildEventDefinition, type BuildRESTFunction, type BuildServicePluginDefinition, type CursorPaging, type DateHistogramAggregationBuilder, type Descriptors, EventDefinition, type EventHandler, type EventIdentity, type ExposeFieldsBasedOnToggle, type FieldFilter, type FieldSort, type Filter, type FilterExpression, type FilterFactory, type FilterableFields, type GetNestedType, type HTTPMethod, type Host, type HostModule, type HostModuleAPI, type HttpClient, type HttpResponse, type MaybeContext, type Method, type MigrationOptions, type NestedAggregationBuilder, type NonNullablePaths, type OffsetPaging, type PagingFor, type PublicMetadata, type Query, type QueryBuilder, type QueryHelpers, type QueryRequest, type QuerySpec, type RESTFunctionDescriptor, type RangeAggregationBuilder, type RequestContext, type RequestOptions, type RequestOptionsFactory, type RestModuleMeta, SERVICE_PLUGIN_ERROR_TYPE, SORT_CAPABILITIES, SORT_DIRECTIONS, type ScalarAggregationBuilder, type Search, type SearchBuilder, type SearchDetails, type SearchExpression, type SearchHelpers, type SearchParamsBuilder, type SearchParamsFactory, type SearchRequest, type SearchSpec, type SearchableFields, type ServicePluginContract, ServicePluginDefinition, type ServicePluginMethodInput, type ServicePluginMethodMetadata, type SortCapability, type SortExpression, type SortFactory, type SortOrder, type Sorting, type ValueAggregationBuilder, type ValueAggregationSort, type WQL, type WQLSpec };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/sdk-types",
3
- "version": "1.17.3",
3
+ "version": "1.17.4",
4
4
  "author": {
5
5
  "name": "Ronny Ringel",
6
6
  "email": "ronnyr@wix.com"
@@ -62,5 +62,5 @@
62
62
  ]
63
63
  }
64
64
  },
65
- "falconPackageHash": "eb15746655965d0002260ab07a45e3c8f10b08ce396d6ea3c7045674"
65
+ "falconPackageHash": "1d9bf5bab7590b3128ea9479165bc5243e09e387acd60b54b5fa1863"
66
66
  }