@teemill/website 0.34.0 → 0.34.1
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/README.md +4 -4
- package/api.ts +59 -54
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +59 -54
- package/dist/api.js +39 -37
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +59 -54
- package/dist/esm/api.js +39 -37
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/BlogsApi.md +4 -4
- package/docs/KeyphraseOpportunitiesApi.md +10 -10
- package/docs/KeyphraseOpportunitiesResponseMetaFilters.md +4 -4
- package/docs/KeyphraseOpportunity.md +1 -1
- package/docs/KeyphraseOpportunityContent.md +3 -3
- package/docs/PagesApi.md +4 -4
- package/docs/ReviewsApi.md +2 -2
- package/docs/RoutesApi.md +2 -2
- package/docs/SearchApi.md +4 -4
- package/index.ts +1 -1
- package/package.json +1 -1
package/docs/SearchApi.md
CHANGED
|
@@ -29,7 +29,7 @@ const apiInstance = new SearchApi(configuration);
|
|
|
29
29
|
let project: string; //What project it is (default to undefined)
|
|
30
30
|
let pageToken: number; //Page reference token (optional) (default to 1)
|
|
31
31
|
let pageSize: number; //Max page size. This is the maximum page size that will be returned, but it might be smaller. (optional) (default to 100)
|
|
32
|
-
let search: string; //Search term to filter results. Free text matches
|
|
32
|
+
let search: string; //Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false organic shirts. Multiple filters can be combined with spaces and commas. (optional) (default to undefined)
|
|
33
33
|
let createSearchRedirectRequest: CreateSearchRedirectRequest; //Create search redirect (optional)
|
|
34
34
|
|
|
35
35
|
const { status, data } = await apiInstance.createSearchRedirect(
|
|
@@ -49,7 +49,7 @@ const { status, data } = await apiInstance.createSearchRedirect(
|
|
|
49
49
|
| **project** | [**string**] | What project it is | defaults to undefined|
|
|
50
50
|
| **pageToken** | [**number**] | Page reference token | (optional) defaults to 1|
|
|
51
51
|
| **pageSize** | [**number**] | Max page size. This is the maximum page size that will be returned, but it might be smaller. | (optional) defaults to 100|
|
|
52
|
-
| **search** | [**string**] | Search term to filter results. Free text matches
|
|
52
|
+
| **search** | [**string**] | Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false organic shirts. Multiple filters can be combined with spaces and commas. | (optional) defaults to undefined|
|
|
53
53
|
|
|
54
54
|
|
|
55
55
|
### Return type
|
|
@@ -210,7 +210,7 @@ const apiInstance = new SearchApi(configuration);
|
|
|
210
210
|
let project: string; //What project it is (default to undefined)
|
|
211
211
|
let pageToken: number; //Page reference token (optional) (default to 1)
|
|
212
212
|
let pageSize: number; //Max page size. This is the maximum page size that will be returned, but it might be smaller. (optional) (default to 100)
|
|
213
|
-
let search: string; //Search term to filter results. Free text matches
|
|
213
|
+
let search: string; //Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false organic shirts. Multiple filters can be combined with spaces and commas. (optional) (default to undefined)
|
|
214
214
|
|
|
215
215
|
const { status, data } = await apiInstance.listSearchRedirects(
|
|
216
216
|
project,
|
|
@@ -227,7 +227,7 @@ const { status, data } = await apiInstance.listSearchRedirects(
|
|
|
227
227
|
| **project** | [**string**] | What project it is | defaults to undefined|
|
|
228
228
|
| **pageToken** | [**number**] | Page reference token | (optional) defaults to 1|
|
|
229
229
|
| **pageSize** | [**number**] | Max page size. This is the maximum page size that will be returned, but it might be smaller. | (optional) defaults to 100|
|
|
230
|
-
| **search** | [**string**] | Search term to filter results. Free text matches
|
|
230
|
+
| **search** | [**string**] | Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false organic shirts. Multiple filters can be combined with spaces and commas. | (optional) defaults to undefined|
|
|
231
231
|
|
|
232
232
|
|
|
233
233
|
### Return type
|
package/index.ts
CHANGED