@teemill/website 0.34.0 → 0.35.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/README.md +4 -4
- package/api.ts +63 -54
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +63 -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 +63 -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 +5 -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/dist/esm/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Website
|
|
3
3
|
* Manage your PodOS Website
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.35.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -197,19 +197,19 @@ export interface KeyphraseOpportunitiesResponseMeta {
|
|
|
197
197
|
'filters': KeyphraseOpportunitiesResponseMetaFilters;
|
|
198
198
|
}
|
|
199
199
|
/**
|
|
200
|
-
* Filters that can be applied to the
|
|
200
|
+
* Filters that can be applied to the keyphrase opportunities list.
|
|
201
201
|
*/
|
|
202
202
|
export interface KeyphraseOpportunitiesResponseMetaFilters {
|
|
203
203
|
/**
|
|
204
|
-
* Filter by whether the
|
|
204
|
+
* Filter by whether the keyphrase is assigned to content.
|
|
205
205
|
*/
|
|
206
206
|
'assigned': Array<KeyphraseOpportunitiesResponseMetaFiltersAssignedEnum>;
|
|
207
207
|
/**
|
|
208
|
-
* Filter by whether the
|
|
208
|
+
* Filter by whether the keyphrase is attached to published content.
|
|
209
209
|
*/
|
|
210
210
|
'published': Array<KeyphraseOpportunitiesResponseMetaFiltersPublishedEnum>;
|
|
211
211
|
/**
|
|
212
|
-
* Filter by whether the
|
|
212
|
+
* Filter by whether the keyphrase is attached to optimised content.
|
|
213
213
|
*/
|
|
214
214
|
'optimised': Array<KeyphraseOpportunitiesResponseMetaFiltersOptimisedEnum>;
|
|
215
215
|
}
|
|
@@ -239,25 +239,34 @@ export interface KeyphraseOpportunity {
|
|
|
239
239
|
*/
|
|
240
240
|
'monthlyVolume': number | null;
|
|
241
241
|
/**
|
|
242
|
-
* Merchandising issues for this
|
|
242
|
+
* Merchandising issues for this keyphrase opportunity.
|
|
243
243
|
*/
|
|
244
244
|
'merchIssues': Array<string>;
|
|
245
245
|
'content': KeyphraseOpportunityContent | null;
|
|
246
246
|
}
|
|
247
247
|
/**
|
|
248
|
-
*
|
|
248
|
+
* Content the keyphrase is assigned to.
|
|
249
249
|
*/
|
|
250
250
|
export interface KeyphraseOpportunityContent {
|
|
251
|
+
/**
|
|
252
|
+
* The type of content the keyphrase is assigned to.
|
|
253
|
+
*/
|
|
251
254
|
'type': KeyphraseOpportunityContentTypeEnum;
|
|
252
255
|
'id': string;
|
|
253
256
|
/**
|
|
254
|
-
* The name of the
|
|
257
|
+
* The name of the attached content
|
|
255
258
|
*/
|
|
256
259
|
'name': string;
|
|
260
|
+
/**
|
|
261
|
+
* The URL slug of the attached content, if applicable.
|
|
262
|
+
*/
|
|
263
|
+
'slug': string | null;
|
|
257
264
|
}
|
|
258
265
|
export declare const KeyphraseOpportunityContentTypeEnum: {
|
|
259
266
|
readonly Product: "product";
|
|
260
267
|
readonly Collection: "collection";
|
|
268
|
+
readonly Blog: "blog";
|
|
269
|
+
readonly Page: "page";
|
|
261
270
|
};
|
|
262
271
|
export type KeyphraseOpportunityContentTypeEnum = typeof KeyphraseOpportunityContentTypeEnum[keyof typeof KeyphraseOpportunityContentTypeEnum];
|
|
263
272
|
export interface ListDomains200Response {
|
|
@@ -1090,7 +1099,7 @@ export declare const BlogsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
1090
1099
|
* @param {string} project What project it is
|
|
1091
1100
|
* @param {number} [pageToken] Page reference token
|
|
1092
1101
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1093
|
-
* @param {string} [search] Search term to filter results. Free text matches
|
|
1102
|
+
* @param {string} [search] 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.
|
|
1094
1103
|
* @param {*} [options] Override http request option.
|
|
1095
1104
|
* @throws {RequiredError}
|
|
1096
1105
|
*/
|
|
@@ -1111,7 +1120,7 @@ export declare const BlogsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
1111
1120
|
* @param {string} project What project it is
|
|
1112
1121
|
* @param {number} [pageToken] Page reference token
|
|
1113
1122
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1114
|
-
* @param {string} [search] Search term to filter results. Free text matches
|
|
1123
|
+
* @param {string} [search] 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.
|
|
1115
1124
|
* @param {UpdateBlogsRequest} [updateBlogsRequest] Update blogs in bulk.
|
|
1116
1125
|
* @param {*} [options] Override http request option.
|
|
1117
1126
|
* @throws {RequiredError}
|
|
@@ -1145,7 +1154,7 @@ export declare const BlogsApiFp: (configuration?: Configuration) => {
|
|
|
1145
1154
|
* @param {string} project What project it is
|
|
1146
1155
|
* @param {number} [pageToken] Page reference token
|
|
1147
1156
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1148
|
-
* @param {string} [search] Search term to filter results. Free text matches
|
|
1157
|
+
* @param {string} [search] 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.
|
|
1149
1158
|
* @param {*} [options] Override http request option.
|
|
1150
1159
|
* @throws {RequiredError}
|
|
1151
1160
|
*/
|
|
@@ -1166,7 +1175,7 @@ export declare const BlogsApiFp: (configuration?: Configuration) => {
|
|
|
1166
1175
|
* @param {string} project What project it is
|
|
1167
1176
|
* @param {number} [pageToken] Page reference token
|
|
1168
1177
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1169
|
-
* @param {string} [search] Search term to filter results. Free text matches
|
|
1178
|
+
* @param {string} [search] 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.
|
|
1170
1179
|
* @param {UpdateBlogsRequest} [updateBlogsRequest] Update blogs in bulk.
|
|
1171
1180
|
* @param {*} [options] Override http request option.
|
|
1172
1181
|
* @throws {RequiredError}
|
|
@@ -1257,7 +1266,7 @@ export interface BlogsApiListBlogsRequest {
|
|
|
1257
1266
|
*/
|
|
1258
1267
|
readonly pageSize?: number;
|
|
1259
1268
|
/**
|
|
1260
|
-
* Search term to filter results. Free text matches
|
|
1269
|
+
* 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.
|
|
1261
1270
|
*/
|
|
1262
1271
|
readonly search?: string;
|
|
1263
1272
|
}
|
|
@@ -1292,7 +1301,7 @@ export interface BlogsApiUpdateBlogsRequest {
|
|
|
1292
1301
|
*/
|
|
1293
1302
|
readonly pageSize?: number;
|
|
1294
1303
|
/**
|
|
1295
|
-
* Search term to filter results. Free text matches
|
|
1304
|
+
* 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.
|
|
1296
1305
|
*/
|
|
1297
1306
|
readonly search?: string;
|
|
1298
1307
|
/**
|
|
@@ -1765,21 +1774,21 @@ export declare class FooterApi extends BaseAPI {
|
|
|
1765
1774
|
*/
|
|
1766
1775
|
export declare const KeyphraseOpportunitiesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
1767
1776
|
/**
|
|
1768
|
-
* Remove a
|
|
1769
|
-
* @summary Delete
|
|
1777
|
+
* Remove a keyphrase opportunity from the store.
|
|
1778
|
+
* @summary Delete keyphrase opportunity
|
|
1770
1779
|
* @param {string} project What project it is
|
|
1771
|
-
* @param {string} keyphraseOpportunityId
|
|
1780
|
+
* @param {string} keyphraseOpportunityId Keyphrase opportunity\'s unique identifier
|
|
1772
1781
|
* @param {*} [options] Override http request option.
|
|
1773
1782
|
* @throws {RequiredError}
|
|
1774
1783
|
*/
|
|
1775
1784
|
deleteKeyphraseOpportunity: (project: string, keyphraseOpportunityId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1776
1785
|
/**
|
|
1777
|
-
* List
|
|
1778
|
-
* @summary List
|
|
1786
|
+
* List keyphrases saved as opportunities for a store. Use search tags to filter by assignment, publication, and optimisation status.
|
|
1787
|
+
* @summary List keyphrase opportunities
|
|
1779
1788
|
* @param {string} project What project it is
|
|
1780
1789
|
* @param {number} [pageToken] Page reference token
|
|
1781
1790
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1782
|
-
* @param {string} [search] Search term to filter results. Free text matches
|
|
1791
|
+
* @param {string} [search] 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.
|
|
1783
1792
|
* @param {*} [options] Override http request option.
|
|
1784
1793
|
* @throws {RequiredError}
|
|
1785
1794
|
*/
|
|
@@ -1790,21 +1799,21 @@ export declare const KeyphraseOpportunitiesApiAxiosParamCreator: (configuration?
|
|
|
1790
1799
|
*/
|
|
1791
1800
|
export declare const KeyphraseOpportunitiesApiFp: (configuration?: Configuration) => {
|
|
1792
1801
|
/**
|
|
1793
|
-
* Remove a
|
|
1794
|
-
* @summary Delete
|
|
1802
|
+
* Remove a keyphrase opportunity from the store.
|
|
1803
|
+
* @summary Delete keyphrase opportunity
|
|
1795
1804
|
* @param {string} project What project it is
|
|
1796
|
-
* @param {string} keyphraseOpportunityId
|
|
1805
|
+
* @param {string} keyphraseOpportunityId Keyphrase opportunity\'s unique identifier
|
|
1797
1806
|
* @param {*} [options] Override http request option.
|
|
1798
1807
|
* @throws {RequiredError}
|
|
1799
1808
|
*/
|
|
1800
1809
|
deleteKeyphraseOpportunity(project: string, keyphraseOpportunityId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1801
1810
|
/**
|
|
1802
|
-
* List
|
|
1803
|
-
* @summary List
|
|
1811
|
+
* List keyphrases saved as opportunities for a store. Use search tags to filter by assignment, publication, and optimisation status.
|
|
1812
|
+
* @summary List keyphrase opportunities
|
|
1804
1813
|
* @param {string} project What project it is
|
|
1805
1814
|
* @param {number} [pageToken] Page reference token
|
|
1806
1815
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1807
|
-
* @param {string} [search] Search term to filter results. Free text matches
|
|
1816
|
+
* @param {string} [search] 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.
|
|
1808
1817
|
* @param {*} [options] Override http request option.
|
|
1809
1818
|
* @throws {RequiredError}
|
|
1810
1819
|
*/
|
|
@@ -1815,16 +1824,16 @@ export declare const KeyphraseOpportunitiesApiFp: (configuration?: Configuration
|
|
|
1815
1824
|
*/
|
|
1816
1825
|
export declare const KeyphraseOpportunitiesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
1817
1826
|
/**
|
|
1818
|
-
* Remove a
|
|
1819
|
-
* @summary Delete
|
|
1827
|
+
* Remove a keyphrase opportunity from the store.
|
|
1828
|
+
* @summary Delete keyphrase opportunity
|
|
1820
1829
|
* @param {KeyphraseOpportunitiesApiDeleteKeyphraseOpportunityRequest} requestParameters Request parameters.
|
|
1821
1830
|
* @param {*} [options] Override http request option.
|
|
1822
1831
|
* @throws {RequiredError}
|
|
1823
1832
|
*/
|
|
1824
1833
|
deleteKeyphraseOpportunity(requestParameters: KeyphraseOpportunitiesApiDeleteKeyphraseOpportunityRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1825
1834
|
/**
|
|
1826
|
-
* List
|
|
1827
|
-
* @summary List
|
|
1835
|
+
* List keyphrases saved as opportunities for a store. Use search tags to filter by assignment, publication, and optimisation status.
|
|
1836
|
+
* @summary List keyphrase opportunities
|
|
1828
1837
|
* @param {KeyphraseOpportunitiesApiListKeyphraseOpportunitiesRequest} requestParameters Request parameters.
|
|
1829
1838
|
* @param {*} [options] Override http request option.
|
|
1830
1839
|
* @throws {RequiredError}
|
|
@@ -1840,7 +1849,7 @@ export interface KeyphraseOpportunitiesApiDeleteKeyphraseOpportunityRequest {
|
|
|
1840
1849
|
*/
|
|
1841
1850
|
readonly project: string;
|
|
1842
1851
|
/**
|
|
1843
|
-
*
|
|
1852
|
+
* Keyphrase opportunity\'s unique identifier
|
|
1844
1853
|
*/
|
|
1845
1854
|
readonly keyphraseOpportunityId: string;
|
|
1846
1855
|
}
|
|
@@ -1861,7 +1870,7 @@ export interface KeyphraseOpportunitiesApiListKeyphraseOpportunitiesRequest {
|
|
|
1861
1870
|
*/
|
|
1862
1871
|
readonly pageSize?: number;
|
|
1863
1872
|
/**
|
|
1864
|
-
* Search term to filter results. Free text matches
|
|
1873
|
+
* 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.
|
|
1865
1874
|
*/
|
|
1866
1875
|
readonly search?: string;
|
|
1867
1876
|
}
|
|
@@ -1870,16 +1879,16 @@ export interface KeyphraseOpportunitiesApiListKeyphraseOpportunitiesRequest {
|
|
|
1870
1879
|
*/
|
|
1871
1880
|
export declare class KeyphraseOpportunitiesApi extends BaseAPI {
|
|
1872
1881
|
/**
|
|
1873
|
-
* Remove a
|
|
1874
|
-
* @summary Delete
|
|
1882
|
+
* Remove a keyphrase opportunity from the store.
|
|
1883
|
+
* @summary Delete keyphrase opportunity
|
|
1875
1884
|
* @param {KeyphraseOpportunitiesApiDeleteKeyphraseOpportunityRequest} requestParameters Request parameters.
|
|
1876
1885
|
* @param {*} [options] Override http request option.
|
|
1877
1886
|
* @throws {RequiredError}
|
|
1878
1887
|
*/
|
|
1879
1888
|
deleteKeyphraseOpportunity(requestParameters: KeyphraseOpportunitiesApiDeleteKeyphraseOpportunityRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
1880
1889
|
/**
|
|
1881
|
-
* List
|
|
1882
|
-
* @summary List
|
|
1890
|
+
* List keyphrases saved as opportunities for a store. Use search tags to filter by assignment, publication, and optimisation status.
|
|
1891
|
+
* @summary List keyphrase opportunities
|
|
1883
1892
|
* @param {KeyphraseOpportunitiesApiListKeyphraseOpportunitiesRequest} requestParameters Request parameters.
|
|
1884
1893
|
* @param {*} [options] Override http request option.
|
|
1885
1894
|
* @throws {RequiredError}
|
|
@@ -2021,7 +2030,7 @@ export declare const PagesApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
2021
2030
|
* @param {string} project What project it is
|
|
2022
2031
|
* @param {number} [pageToken] Page reference token
|
|
2023
2032
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2024
|
-
* @param {string} [search] Search term to filter results. Free text matches
|
|
2033
|
+
* @param {string} [search] 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.
|
|
2025
2034
|
* @param {*} [options] Override http request option.
|
|
2026
2035
|
* @throws {RequiredError}
|
|
2027
2036
|
*/
|
|
@@ -2051,7 +2060,7 @@ export declare const PagesApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
2051
2060
|
* @param {string} project What project it is
|
|
2052
2061
|
* @param {number} [pageToken] Page reference token
|
|
2053
2062
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2054
|
-
* @param {string} [search] Search term to filter results. Free text matches
|
|
2063
|
+
* @param {string} [search] 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.
|
|
2055
2064
|
* @param {UpdatePagesRequest} [updatePagesRequest] Update pages in bulk.
|
|
2056
2065
|
* @param {*} [options] Override http request option.
|
|
2057
2066
|
* @throws {RequiredError}
|
|
@@ -2085,7 +2094,7 @@ export declare const PagesApiFp: (configuration?: Configuration) => {
|
|
|
2085
2094
|
* @param {string} project What project it is
|
|
2086
2095
|
* @param {number} [pageToken] Page reference token
|
|
2087
2096
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2088
|
-
* @param {string} [search] Search term to filter results. Free text matches
|
|
2097
|
+
* @param {string} [search] 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.
|
|
2089
2098
|
* @param {*} [options] Override http request option.
|
|
2090
2099
|
* @throws {RequiredError}
|
|
2091
2100
|
*/
|
|
@@ -2115,7 +2124,7 @@ export declare const PagesApiFp: (configuration?: Configuration) => {
|
|
|
2115
2124
|
* @param {string} project What project it is
|
|
2116
2125
|
* @param {number} [pageToken] Page reference token
|
|
2117
2126
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2118
|
-
* @param {string} [search] Search term to filter results. Free text matches
|
|
2127
|
+
* @param {string} [search] 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.
|
|
2119
2128
|
* @param {UpdatePagesRequest} [updatePagesRequest] Update pages in bulk.
|
|
2120
2129
|
* @param {*} [options] Override http request option.
|
|
2121
2130
|
* @throws {RequiredError}
|
|
@@ -2214,7 +2223,7 @@ export interface PagesApiListPagesRequest {
|
|
|
2214
2223
|
*/
|
|
2215
2224
|
readonly pageSize?: number;
|
|
2216
2225
|
/**
|
|
2217
|
-
* Search term to filter results. Free text matches
|
|
2226
|
+
* 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.
|
|
2218
2227
|
*/
|
|
2219
2228
|
readonly search?: string;
|
|
2220
2229
|
}
|
|
@@ -2262,7 +2271,7 @@ export interface PagesApiUpdatePagesRequest {
|
|
|
2262
2271
|
*/
|
|
2263
2272
|
readonly pageSize?: number;
|
|
2264
2273
|
/**
|
|
2265
|
-
* Search term to filter results. Free text matches
|
|
2274
|
+
* 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.
|
|
2266
2275
|
*/
|
|
2267
2276
|
readonly search?: string;
|
|
2268
2277
|
/**
|
|
@@ -2738,7 +2747,7 @@ export declare const ReviewsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2738
2747
|
* @param {string} project What project it is
|
|
2739
2748
|
* @param {number} [pageToken] Page reference token
|
|
2740
2749
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2741
|
-
* @param {string} [search] Search term to filter results. Free text matches
|
|
2750
|
+
* @param {string} [search] 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.
|
|
2742
2751
|
* @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
2743
2752
|
* @param {string} [start] Start of date range to filter by
|
|
2744
2753
|
* @param {string} [end] End of date range to filter by
|
|
@@ -2786,7 +2795,7 @@ export declare const ReviewsApiFp: (configuration?: Configuration) => {
|
|
|
2786
2795
|
* @param {string} project What project it is
|
|
2787
2796
|
* @param {number} [pageToken] Page reference token
|
|
2788
2797
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2789
|
-
* @param {string} [search] Search term to filter results. Free text matches
|
|
2798
|
+
* @param {string} [search] 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.
|
|
2790
2799
|
* @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
2791
2800
|
* @param {string} [start] Start of date range to filter by
|
|
2792
2801
|
* @param {string} [end] End of date range to filter by
|
|
@@ -2889,7 +2898,7 @@ export interface ReviewsApiListReviewsRequest {
|
|
|
2889
2898
|
*/
|
|
2890
2899
|
readonly pageSize?: number;
|
|
2891
2900
|
/**
|
|
2892
|
-
* Search term to filter results. Free text matches
|
|
2901
|
+
* 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.
|
|
2893
2902
|
*/
|
|
2894
2903
|
readonly search?: string;
|
|
2895
2904
|
/**
|
|
@@ -2966,7 +2975,7 @@ export declare const RoutesApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
2966
2975
|
* @param {string} project What project it is
|
|
2967
2976
|
* @param {number} [pageToken] Page reference token
|
|
2968
2977
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2969
|
-
* @param {string} [search] Search term to filter results. Free text matches
|
|
2978
|
+
* @param {string} [search] 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.
|
|
2970
2979
|
* @param {*} [options] Override http request option.
|
|
2971
2980
|
* @throws {RequiredError}
|
|
2972
2981
|
*/
|
|
@@ -2982,7 +2991,7 @@ export declare const RoutesApiFp: (configuration?: Configuration) => {
|
|
|
2982
2991
|
* @param {string} project What project it is
|
|
2983
2992
|
* @param {number} [pageToken] Page reference token
|
|
2984
2993
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2985
|
-
* @param {string} [search] Search term to filter results. Free text matches
|
|
2994
|
+
* @param {string} [search] 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.
|
|
2986
2995
|
* @param {*} [options] Override http request option.
|
|
2987
2996
|
* @throws {RequiredError}
|
|
2988
2997
|
*/
|
|
@@ -3018,7 +3027,7 @@ export interface RoutesApiListRoutesRequest {
|
|
|
3018
3027
|
*/
|
|
3019
3028
|
readonly pageSize?: number;
|
|
3020
3029
|
/**
|
|
3021
|
-
* Search term to filter results. Free text matches
|
|
3030
|
+
* 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.
|
|
3022
3031
|
*/
|
|
3023
3032
|
readonly search?: string;
|
|
3024
3033
|
}
|
|
@@ -3045,7 +3054,7 @@ export declare const SearchApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
3045
3054
|
* @param {string} project What project it is
|
|
3046
3055
|
* @param {number} [pageToken] Page reference token
|
|
3047
3056
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
3048
|
-
* @param {string} [search] Search term to filter results. Free text matches
|
|
3057
|
+
* @param {string} [search] 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.
|
|
3049
3058
|
* @param {CreateSearchRedirectRequest} [createSearchRedirectRequest] Create search redirect
|
|
3050
3059
|
* @param {*} [options] Override http request option.
|
|
3051
3060
|
* @throws {RequiredError}
|
|
@@ -3075,7 +3084,7 @@ export declare const SearchApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
3075
3084
|
* @param {string} project What project it is
|
|
3076
3085
|
* @param {number} [pageToken] Page reference token
|
|
3077
3086
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
3078
|
-
* @param {string} [search] Search term to filter results. Free text matches
|
|
3087
|
+
* @param {string} [search] 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.
|
|
3079
3088
|
* @param {*} [options] Override http request option.
|
|
3080
3089
|
* @throws {RequiredError}
|
|
3081
3090
|
*/
|
|
@@ -3101,7 +3110,7 @@ export declare const SearchApiFp: (configuration?: Configuration) => {
|
|
|
3101
3110
|
* @param {string} project What project it is
|
|
3102
3111
|
* @param {number} [pageToken] Page reference token
|
|
3103
3112
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
3104
|
-
* @param {string} [search] Search term to filter results. Free text matches
|
|
3113
|
+
* @param {string} [search] 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.
|
|
3105
3114
|
* @param {CreateSearchRedirectRequest} [createSearchRedirectRequest] Create search redirect
|
|
3106
3115
|
* @param {*} [options] Override http request option.
|
|
3107
3116
|
* @throws {RequiredError}
|
|
@@ -3131,7 +3140,7 @@ export declare const SearchApiFp: (configuration?: Configuration) => {
|
|
|
3131
3140
|
* @param {string} project What project it is
|
|
3132
3141
|
* @param {number} [pageToken] Page reference token
|
|
3133
3142
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
3134
|
-
* @param {string} [search] Search term to filter results. Free text matches
|
|
3143
|
+
* @param {string} [search] 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.
|
|
3135
3144
|
* @param {*} [options] Override http request option.
|
|
3136
3145
|
* @throws {RequiredError}
|
|
3137
3146
|
*/
|
|
@@ -3209,7 +3218,7 @@ export interface SearchApiCreateSearchRedirectRequest {
|
|
|
3209
3218
|
*/
|
|
3210
3219
|
readonly pageSize?: number;
|
|
3211
3220
|
/**
|
|
3212
|
-
* Search term to filter results. Free text matches
|
|
3221
|
+
* 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.
|
|
3213
3222
|
*/
|
|
3214
3223
|
readonly search?: string;
|
|
3215
3224
|
/**
|
|
@@ -3260,7 +3269,7 @@ export interface SearchApiListSearchRedirectsRequest {
|
|
|
3260
3269
|
*/
|
|
3261
3270
|
readonly pageSize?: number;
|
|
3262
3271
|
/**
|
|
3263
|
-
* Search term to filter results. Free text matches
|
|
3272
|
+
* 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.
|
|
3264
3273
|
*/
|
|
3265
3274
|
readonly search?: string;
|
|
3266
3275
|
}
|