@teemill/website 0.36.0 → 0.37.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/.openapi-generator/FILES +1 -1
- package/README.md +4 -3
- package/api.ts +164 -36
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +111 -37
- package/dist/api.js +111 -21
- 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 +111 -37
- package/dist/esm/api.js +109 -19
- 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/GenerateCollectionForKeyphraseOpportunity202Response.md +20 -0
- package/docs/KeyphraseOpportunitiesApi.md +62 -2
- package/docs/KeyphraseOpportunitiesResponseMetaFilters.md +6 -0
- package/docs/PagesApi.md +6 -6
- 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/ReviewsApi.md
CHANGED
|
@@ -147,7 +147,7 @@ const apiInstance = new ReviewsApi(configuration);
|
|
|
147
147
|
let project: string; //What project it is (default to undefined)
|
|
148
148
|
let pageToken: number; //Page reference token (optional) (default to 1)
|
|
149
149
|
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)
|
|
150
|
-
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)
|
|
150
|
+
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 sparseCollection:true assignedContentType:product suggestedContentType:product,collection organic shirts. Multiple filters can be combined with spaces and commas. (optional) (default to undefined)
|
|
151
151
|
let sortBy: Array<string>; //An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending. (optional) (default to undefined)
|
|
152
152
|
let start: string; //Start of date range to filter by (optional) (default to undefined)
|
|
153
153
|
let end: string; //End of date range to filter by (optional) (default to undefined)
|
|
@@ -170,7 +170,7 @@ const { status, data } = await apiInstance.listReviews(
|
|
|
170
170
|
| **project** | [**string**] | What project it is | defaults to undefined|
|
|
171
171
|
| **pageToken** | [**number**] | Page reference token | (optional) defaults to 1|
|
|
172
172
|
| **pageSize** | [**number**] | Max page size. This is the maximum page size that will be returned, but it might be smaller. | (optional) defaults to 100|
|
|
173
|
-
| **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|
|
|
173
|
+
| **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 sparseCollection:true assignedContentType:product suggestedContentType:product,collection organic shirts. Multiple filters can be combined with spaces and commas. | (optional) defaults to undefined|
|
|
174
174
|
| **sortBy** | **Array<string>** | An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending. | (optional) defaults to undefined|
|
|
175
175
|
| **start** | [**string**] | Start of date range to filter by | (optional) defaults to undefined|
|
|
176
176
|
| **end** | [**string**] | End of date range to filter by | (optional) defaults to undefined|
|
package/docs/RoutesApi.md
CHANGED
|
@@ -24,7 +24,7 @@ const apiInstance = new RoutesApi(configuration);
|
|
|
24
24
|
let project: string; //What project it is (default to undefined)
|
|
25
25
|
let pageToken: number; //Page reference token (optional) (default to 1)
|
|
26
26
|
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)
|
|
27
|
-
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)
|
|
27
|
+
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 sparseCollection:true assignedContentType:product suggestedContentType:product,collection organic shirts. Multiple filters can be combined with spaces and commas. (optional) (default to undefined)
|
|
28
28
|
|
|
29
29
|
const { status, data } = await apiInstance.listRoutes(
|
|
30
30
|
project,
|
|
@@ -41,7 +41,7 @@ const { status, data } = await apiInstance.listRoutes(
|
|
|
41
41
|
| **project** | [**string**] | What project it is | defaults to undefined|
|
|
42
42
|
| **pageToken** | [**number**] | Page reference token | (optional) defaults to 1|
|
|
43
43
|
| **pageSize** | [**number**] | Max page size. This is the maximum page size that will be returned, but it might be smaller. | (optional) defaults to 100|
|
|
44
|
-
| **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|
|
|
44
|
+
| **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 sparseCollection:true assignedContentType:product suggestedContentType:product,collection organic shirts. Multiple filters can be combined with spaces and commas. | (optional) defaults to undefined|
|
|
45
45
|
|
|
46
46
|
|
|
47
47
|
### Return type
|
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 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)
|
|
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 sparseCollection:true assignedContentType:product suggestedContentType:product,collection 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 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|
|
|
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 sparseCollection:true assignedContentType:product suggestedContentType:product,collection 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 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)
|
|
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 sparseCollection:true assignedContentType:product suggestedContentType:product,collection 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 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|
|
|
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 sparseCollection:true assignedContentType:product suggestedContentType:product,collection 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