@wix/search 1.0.33 → 1.0.35

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/search",
3
- "version": "1.0.33",
3
+ "version": "1.0.35",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -18,8 +18,8 @@
18
18
  "type-bundles"
19
19
  ],
20
20
  "dependencies": {
21
- "@wix/search_site-search": "1.0.21",
22
- "@wix/search_wix-site-search": "1.0.11"
21
+ "@wix/search_site-search": "1.0.22",
22
+ "@wix/search_wix-site-search": "1.0.13"
23
23
  },
24
24
  "devDependencies": {
25
25
  "glob": "^10.4.1",
@@ -43,5 +43,5 @@
43
43
  "fqdn": ""
44
44
  }
45
45
  },
46
- "falconPackageHash": "0597e12e384cbabae2ade7b0a7118b9214c28786d3c477ae583ecb0e"
46
+ "falconPackageHash": "6e9546e4a42a6f8816d19a13e686abe6bcb58c56ac0760b5740b7801"
47
47
  }
@@ -1,3 +1,11 @@
1
+ interface SearchRequest$1 {
2
+ /** Search query and aggregation information. */
3
+ search: Search;
4
+ /** Document type of the documents to search in. */
5
+ documentType: DocumentType;
6
+ /** Language to search in. */
7
+ language?: string | null;
8
+ }
1
9
  interface SiteDocument$1 {
2
10
  /**
3
11
  * Results ID.
@@ -7,14 +15,6 @@ interface SiteDocument$1 {
7
15
  /** The docuement payload. */
8
16
  data?: Record<string, any> | null;
9
17
  }
10
- interface SearchRequest$1 {
11
- /** Search query and aggregation information. */
12
- search: Search;
13
- /** Document type of the documents to search in. */
14
- documentType: DocumentType;
15
- /** Language to search in. */
16
- language?: string | null;
17
- }
18
18
  interface Search extends SearchPagingMethodOneOf {
19
19
  /** Paging options to limit and skip the number of items. */
20
20
  paging?: Paging;
@@ -1,3 +1,11 @@
1
+ interface SearchRequest$1 {
2
+ /** Search query and aggregation information. */
3
+ search: Search;
4
+ /** Document type of the documents to search in. */
5
+ documentType: DocumentType;
6
+ /** Language to search in. */
7
+ language?: string | null;
8
+ }
1
9
  interface SiteDocument$1 {
2
10
  /**
3
11
  * Results ID.
@@ -7,14 +15,6 @@ interface SiteDocument$1 {
7
15
  /** The docuement payload. */
8
16
  data?: Record<string, any> | null;
9
17
  }
10
- interface SearchRequest$1 {
11
- /** Search query and aggregation information. */
12
- search: Search;
13
- /** Document type of the documents to search in. */
14
- documentType: DocumentType;
15
- /** Language to search in. */
16
- language?: string | null;
17
- }
18
18
  interface Search extends SearchPagingMethodOneOf {
19
19
  /** Paging options to limit and skip the number of items. */
20
20
  paging?: Paging;
@@ -305,6 +305,14 @@ interface SearchResponseNonNullableFields$3 {
305
305
  aggregationData?: AggregationDataNonNullableFields$1;
306
306
  }
307
307
 
308
+ interface SearchRequest$2 {
309
+ /** Search query and aggregation information. */
310
+ search: Search;
311
+ /** Document type of the documents to search in. */
312
+ documentType: DocumentType;
313
+ /** Language to search in. */
314
+ language?: string | null;
315
+ }
308
316
  interface SiteDocument {
309
317
  /**
310
318
  * Results ID.
@@ -314,14 +322,6 @@ interface SiteDocument {
314
322
  /** The docuement payload. */
315
323
  data?: Record<string, any> | null;
316
324
  }
317
- interface SearchRequest$2 {
318
- /** Search query and aggregation information. */
319
- search: Search;
320
- /** Document type of the documents to search in. */
321
- documentType: DocumentType;
322
- /** Language to search in. */
323
- language?: string | null;
324
- }
325
325
  interface Search extends SearchPagingMethodOneOf {
326
326
  /** Paging options to limit and skip the number of items. */
327
327
  paging?: Paging;