@teemill/website 0.32.0 → 0.34.0
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 +3 -1
- package/.openapi-generator/VERSION +1 -1
- package/README.md +5 -3
- package/api.ts +114 -38
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +106 -38
- package/dist/api.js +41 -25
- 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 +106 -38
- package/dist/esm/api.js +39 -23
- 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 +4 -4
- package/docs/KeyphraseOpportunitiesResponse.md +2 -0
- package/docs/KeyphraseOpportunitiesResponseMeta.md +25 -0
- package/docs/KeyphraseOpportunitiesResponseMetaFilters.md +25 -0
- package/docs/KeyphraseOpportunity.md +6 -2
- package/docs/KeyphraseOpportunityContent.md +25 -0
- 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/dist/esm/base.d.ts
CHANGED
package/dist/esm/base.js
CHANGED
package/dist/esm/common.d.ts
CHANGED
package/dist/esm/common.js
CHANGED
package/dist/esm/index.d.ts
CHANGED
package/dist/esm/index.js
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
package/docs/BlogsApi.md
CHANGED
|
@@ -142,7 +142,7 @@ const apiInstance = new BlogsApi(configuration);
|
|
|
142
142
|
let project: string; //What project it is (default to undefined)
|
|
143
143
|
let pageToken: number; //Page reference token (optional) (default to 1)
|
|
144
144
|
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)
|
|
145
|
-
let search: string; //Search term to filter results (optional) (default to undefined)
|
|
145
|
+
let search: string; //Search term to filter results. Free text matches key phrase 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)
|
|
146
146
|
|
|
147
147
|
const { status, data } = await apiInstance.listBlogs(
|
|
148
148
|
project,
|
|
@@ -159,7 +159,7 @@ const { status, data } = await apiInstance.listBlogs(
|
|
|
159
159
|
| **project** | [**string**] | What project it is | defaults to undefined|
|
|
160
160
|
| **pageToken** | [**number**] | Page reference token | (optional) defaults to 1|
|
|
161
161
|
| **pageSize** | [**number**] | Max page size. This is the maximum page size that will be returned, but it might be smaller. | (optional) defaults to 100|
|
|
162
|
-
| **search** | [**string**] | Search term to filter results | (optional) defaults to undefined|
|
|
162
|
+
| **search** | [**string**] | Search term to filter results. Free text matches key phrase 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|
|
|
163
163
|
|
|
164
164
|
|
|
165
165
|
### Return type
|
|
@@ -267,7 +267,7 @@ const apiInstance = new BlogsApi(configuration);
|
|
|
267
267
|
let project: string; //What project it is (default to undefined)
|
|
268
268
|
let pageToken: number; //Page reference token (optional) (default to 1)
|
|
269
269
|
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)
|
|
270
|
-
let search: string; //Search term to filter results (optional) (default to undefined)
|
|
270
|
+
let search: string; //Search term to filter results. Free text matches key phrase 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)
|
|
271
271
|
let updateBlogsRequest: UpdateBlogsRequest; //Update blogs in bulk. (optional)
|
|
272
272
|
|
|
273
273
|
const { status, data } = await apiInstance.updateBlogs(
|
|
@@ -287,7 +287,7 @@ const { status, data } = await apiInstance.updateBlogs(
|
|
|
287
287
|
| **project** | [**string**] | What project it is | defaults to undefined|
|
|
288
288
|
| **pageToken** | [**number**] | Page reference token | (optional) defaults to 1|
|
|
289
289
|
| **pageSize** | [**number**] | Max page size. This is the maximum page size that will be returned, but it might be smaller. | (optional) defaults to 100|
|
|
290
|
-
| **search** | [**string**] | Search term to filter results | (optional) defaults to undefined|
|
|
290
|
+
| **search** | [**string**] | Search term to filter results. Free text matches key phrase 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|
|
|
291
291
|
|
|
292
292
|
|
|
293
293
|
### Return type
|
|
@@ -68,7 +68,7 @@ void (empty response body)
|
|
|
68
68
|
# **listKeyphraseOpportunities**
|
|
69
69
|
> KeyphraseOpportunitiesResponse listKeyphraseOpportunities()
|
|
70
70
|
|
|
71
|
-
List
|
|
71
|
+
List key phrases saved as opportunities for a store. Use search tags to filter by assignment, publication, and optimisation status.
|
|
72
72
|
|
|
73
73
|
### Example
|
|
74
74
|
|
|
@@ -84,7 +84,7 @@ const apiInstance = new KeyphraseOpportunitiesApi(configuration);
|
|
|
84
84
|
let project: string; //What project it is (default to undefined)
|
|
85
85
|
let pageToken: number; //Page reference token (optional) (default to 1)
|
|
86
86
|
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)
|
|
87
|
-
let search: string; //Search term to filter results (optional) (default to undefined)
|
|
87
|
+
let search: string; //Search term to filter results. Free text matches key phrase 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)
|
|
88
88
|
|
|
89
89
|
const { status, data } = await apiInstance.listKeyphraseOpportunities(
|
|
90
90
|
project,
|
|
@@ -101,7 +101,7 @@ const { status, data } = await apiInstance.listKeyphraseOpportunities(
|
|
|
101
101
|
| **project** | [**string**] | What project it is | defaults to undefined|
|
|
102
102
|
| **pageToken** | [**number**] | Page reference token | (optional) defaults to 1|
|
|
103
103
|
| **pageSize** | [**number**] | Max page size. This is the maximum page size that will be returned, but it might be smaller. | (optional) defaults to 100|
|
|
104
|
-
| **search** | [**string**] | Search term to filter results | (optional) defaults to undefined|
|
|
104
|
+
| **search** | [**string**] | Search term to filter results. Free text matches key phrase 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|
|
|
105
105
|
|
|
106
106
|
|
|
107
107
|
### Return type
|
|
@@ -121,7 +121,7 @@ const { status, data } = await apiInstance.listKeyphraseOpportunities(
|
|
|
121
121
|
### HTTP response details
|
|
122
122
|
| Status code | Description | Response headers |
|
|
123
123
|
|-------------|-------------|------------------|
|
|
124
|
-
|**200** | A list of key phrase opportunities saved for the store
|
|
124
|
+
|**200** | A list of key phrase opportunities saved for the store. | - |
|
|
125
125
|
|**401** | Not authorised to access this resource | - |
|
|
126
126
|
|**403** | Refuse to authorize | - |
|
|
127
127
|
|**500** | Unknown server error | - |
|
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
8
|
**keyphraseOpportunities** | [**Array<KeyphraseOpportunity>**](KeyphraseOpportunity.md) | | [default to undefined]
|
|
9
|
+
**meta** | [**KeyphraseOpportunitiesResponseMeta**](KeyphraseOpportunitiesResponseMeta.md) | | [default to undefined]
|
|
9
10
|
**nextPageToken** | **number** | The token referencing the next page number | [default to undefined]
|
|
10
11
|
|
|
11
12
|
## Example
|
|
@@ -15,6 +16,7 @@ import { KeyphraseOpportunitiesResponse } from '@teemill/website';
|
|
|
15
16
|
|
|
16
17
|
const instance: KeyphraseOpportunitiesResponse = {
|
|
17
18
|
keyphraseOpportunities,
|
|
19
|
+
meta,
|
|
18
20
|
nextPageToken,
|
|
19
21
|
};
|
|
20
22
|
```
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# KeyphraseOpportunitiesResponseMeta
|
|
2
|
+
|
|
3
|
+
Object containing metadata about the keyphrase opportunities list.
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type | Description | Notes
|
|
8
|
+
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**totalPhrases** | **number** | Total number of keyphrase opportunities matching the active phrase search and list filters. | [default to undefined]
|
|
10
|
+
**totalMonthlyVolume** | **number** | Combined monthly search volume of keyphrase opportunities matching the active phrase search and list filters. | [default to undefined]
|
|
11
|
+
**filters** | [**KeyphraseOpportunitiesResponseMetaFilters**](KeyphraseOpportunitiesResponseMetaFilters.md) | | [default to undefined]
|
|
12
|
+
|
|
13
|
+
## Example
|
|
14
|
+
|
|
15
|
+
```typescript
|
|
16
|
+
import { KeyphraseOpportunitiesResponseMeta } from '@teemill/website';
|
|
17
|
+
|
|
18
|
+
const instance: KeyphraseOpportunitiesResponseMeta = {
|
|
19
|
+
totalPhrases,
|
|
20
|
+
totalMonthlyVolume,
|
|
21
|
+
filters,
|
|
22
|
+
};
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# KeyphraseOpportunitiesResponseMetaFilters
|
|
2
|
+
|
|
3
|
+
Filters that can be applied to the key phrase opportunities list.
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type | Description | Notes
|
|
8
|
+
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**assigned** | **Array<string>** | Filter by whether the key phrase is assigned to content. | [default to undefined]
|
|
10
|
+
**published** | **Array<string>** | Filter by whether the key phrase is attached to published content. | [default to undefined]
|
|
11
|
+
**optimised** | **Array<string>** | Filter by whether the key phrase is attached to optimised content. | [default to undefined]
|
|
12
|
+
|
|
13
|
+
## Example
|
|
14
|
+
|
|
15
|
+
```typescript
|
|
16
|
+
import { KeyphraseOpportunitiesResponseMetaFilters } from '@teemill/website';
|
|
17
|
+
|
|
18
|
+
const instance: KeyphraseOpportunitiesResponseMetaFilters = {
|
|
19
|
+
assigned,
|
|
20
|
+
published,
|
|
21
|
+
optimised,
|
|
22
|
+
};
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -6,8 +6,10 @@
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
8
|
**id** | **string** | | [default to undefined]
|
|
9
|
-
**phrase** | **string** |
|
|
10
|
-
**monthlyVolume** | **number** |
|
|
9
|
+
**phrase** | **string** | The keyphrase that has been identified as an opportunity | [default to undefined]
|
|
10
|
+
**monthlyVolume** | **number** | Monthly search volume for the keyphrase | [default to undefined]
|
|
11
|
+
**merchIssues** | **Array<string>** | Merchandising issues for this key phrase opportunity. | [default to undefined]
|
|
12
|
+
**content** | [**KeyphraseOpportunityContent**](KeyphraseOpportunityContent.md) | | [default to undefined]
|
|
11
13
|
|
|
12
14
|
## Example
|
|
13
15
|
|
|
@@ -18,6 +20,8 @@ const instance: KeyphraseOpportunity = {
|
|
|
18
20
|
id,
|
|
19
21
|
phrase,
|
|
20
22
|
monthlyVolume,
|
|
23
|
+
merchIssues,
|
|
24
|
+
content,
|
|
21
25
|
};
|
|
22
26
|
```
|
|
23
27
|
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
# KeyphraseOpportunityContent
|
|
2
|
+
|
|
3
|
+
Product or collection the key phrase is assigned to.
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type | Description | Notes
|
|
8
|
+
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**type** | **string** | | [default to undefined]
|
|
10
|
+
**id** | **string** | | [default to undefined]
|
|
11
|
+
**name** | **string** | The name of the product or collection | [default to undefined]
|
|
12
|
+
|
|
13
|
+
## Example
|
|
14
|
+
|
|
15
|
+
```typescript
|
|
16
|
+
import { KeyphraseOpportunityContent } from '@teemill/website';
|
|
17
|
+
|
|
18
|
+
const instance: KeyphraseOpportunityContent = {
|
|
19
|
+
type,
|
|
20
|
+
id,
|
|
21
|
+
name,
|
|
22
|
+
};
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
package/docs/PagesApi.md
CHANGED
|
@@ -143,7 +143,7 @@ const apiInstance = new PagesApi(configuration);
|
|
|
143
143
|
let project: string; //What project it is (default to undefined)
|
|
144
144
|
let pageToken: number; //Page reference token (optional) (default to 1)
|
|
145
145
|
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)
|
|
146
|
-
let search: string; //Search term to filter results (optional) (default to undefined)
|
|
146
|
+
let search: string; //Search term to filter results. Free text matches key phrase 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)
|
|
147
147
|
|
|
148
148
|
const { status, data } = await apiInstance.listPages(
|
|
149
149
|
project,
|
|
@@ -160,7 +160,7 @@ const { status, data } = await apiInstance.listPages(
|
|
|
160
160
|
| **project** | [**string**] | What project it is | defaults to undefined|
|
|
161
161
|
| **pageToken** | [**number**] | Page reference token | (optional) defaults to 1|
|
|
162
162
|
| **pageSize** | [**number**] | Max page size. This is the maximum page size that will be returned, but it might be smaller. | (optional) defaults to 100|
|
|
163
|
-
| **search** | [**string**] | Search term to filter results | (optional) defaults to undefined|
|
|
163
|
+
| **search** | [**string**] | Search term to filter results. Free text matches key phrase 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|
|
|
164
164
|
|
|
165
165
|
|
|
166
166
|
### Return type
|
|
@@ -328,7 +328,7 @@ const apiInstance = new PagesApi(configuration);
|
|
|
328
328
|
let project: string; //What project it is (default to undefined)
|
|
329
329
|
let pageToken: number; //Page reference token (optional) (default to 1)
|
|
330
330
|
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)
|
|
331
|
-
let search: string; //Search term to filter results (optional) (default to undefined)
|
|
331
|
+
let search: string; //Search term to filter results. Free text matches key phrase 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)
|
|
332
332
|
let updatePagesRequest: UpdatePagesRequest; //Update pages in bulk. (optional)
|
|
333
333
|
|
|
334
334
|
const { status, data } = await apiInstance.updatePages(
|
|
@@ -348,7 +348,7 @@ const { status, data } = await apiInstance.updatePages(
|
|
|
348
348
|
| **project** | [**string**] | What project it is | defaults to undefined|
|
|
349
349
|
| **pageToken** | [**number**] | Page reference token | (optional) defaults to 1|
|
|
350
350
|
| **pageSize** | [**number**] | Max page size. This is the maximum page size that will be returned, but it might be smaller. | (optional) defaults to 100|
|
|
351
|
-
| **search** | [**string**] | Search term to filter results | (optional) defaults to undefined|
|
|
351
|
+
| **search** | [**string**] | Search term to filter results. Free text matches key phrase 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|
|
|
352
352
|
|
|
353
353
|
|
|
354
354
|
### Return type
|
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 (optional) (default to undefined)
|
|
150
|
+
let search: string; //Search term to filter results. Free text matches key phrase 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)
|
|
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 | (optional) defaults to undefined|
|
|
173
|
+
| **search** | [**string**] | Search term to filter results. Free text matches key phrase 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|
|
|
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 (optional) (default to undefined)
|
|
27
|
+
let search: string; //Search term to filter results. Free text matches key phrase 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)
|
|
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 | (optional) defaults to undefined|
|
|
44
|
+
| **search** | [**string**] | Search term to filter results. Free text matches key phrase 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|
|
|
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 (optional) (default to undefined)
|
|
32
|
+
let search: string; //Search term to filter results. Free text matches key phrase 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 | (optional) defaults to undefined|
|
|
52
|
+
| **search** | [**string**] | Search term to filter results. Free text matches key phrase 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 (optional) (default to undefined)
|
|
213
|
+
let search: string; //Search term to filter results. Free text matches key phrase 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 | (optional) defaults to undefined|
|
|
230
|
+
| **search** | [**string**] | Search term to filter results. Free text matches key phrase 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