@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/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.37.1
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -155,6 +155,12 @@ export interface FooterItem {
|
|
|
155
155
|
'link': string;
|
|
156
156
|
'order': number;
|
|
157
157
|
}
|
|
158
|
+
export interface GenerateCollectionForKeyphraseOpportunity202Response {
|
|
159
|
+
/**
|
|
160
|
+
* A message describing the generation status
|
|
161
|
+
*/
|
|
162
|
+
'message'?: string;
|
|
163
|
+
}
|
|
158
164
|
/**
|
|
159
165
|
* Image description
|
|
160
166
|
*/
|
|
@@ -212,6 +218,18 @@ export interface KeyphraseOpportunitiesResponseMetaFilters {
|
|
|
212
218
|
* Filter by whether the keyphrase is attached to optimised content.
|
|
213
219
|
*/
|
|
214
220
|
'optimised': Array<KeyphraseOpportunitiesResponseMetaFiltersOptimisedEnum>;
|
|
221
|
+
/**
|
|
222
|
+
* Filter by whether the keyphrase is assigned to a collection with fewer than 12 products.
|
|
223
|
+
*/
|
|
224
|
+
'sparseCollection'?: Array<KeyphraseOpportunitiesResponseMetaFiltersSparseCollectionEnum>;
|
|
225
|
+
/**
|
|
226
|
+
* Filter by the type of content the keyphrase is assigned to.
|
|
227
|
+
*/
|
|
228
|
+
'assignedContentType'?: Array<KeyphraseOpportunitiesResponseMetaFiltersAssignedContentTypeEnum>;
|
|
229
|
+
/**
|
|
230
|
+
* Filter by the suggested content type for the keyphrase opportunity.
|
|
231
|
+
*/
|
|
232
|
+
'suggestedContentType'?: Array<KeyphraseOpportunitiesResponseMetaFiltersSuggestedContentTypeEnum>;
|
|
215
233
|
}
|
|
216
234
|
export declare const KeyphraseOpportunitiesResponseMetaFiltersAssignedEnum: {
|
|
217
235
|
readonly True: "true";
|
|
@@ -228,6 +246,21 @@ export declare const KeyphraseOpportunitiesResponseMetaFiltersOptimisedEnum: {
|
|
|
228
246
|
readonly False: "false";
|
|
229
247
|
};
|
|
230
248
|
export type KeyphraseOpportunitiesResponseMetaFiltersOptimisedEnum = typeof KeyphraseOpportunitiesResponseMetaFiltersOptimisedEnum[keyof typeof KeyphraseOpportunitiesResponseMetaFiltersOptimisedEnum];
|
|
249
|
+
export declare const KeyphraseOpportunitiesResponseMetaFiltersSparseCollectionEnum: {
|
|
250
|
+
readonly True: "true";
|
|
251
|
+
readonly False: "false";
|
|
252
|
+
};
|
|
253
|
+
export type KeyphraseOpportunitiesResponseMetaFiltersSparseCollectionEnum = typeof KeyphraseOpportunitiesResponseMetaFiltersSparseCollectionEnum[keyof typeof KeyphraseOpportunitiesResponseMetaFiltersSparseCollectionEnum];
|
|
254
|
+
export declare const KeyphraseOpportunitiesResponseMetaFiltersAssignedContentTypeEnum: {
|
|
255
|
+
readonly Product: "product";
|
|
256
|
+
readonly Collection: "collection";
|
|
257
|
+
};
|
|
258
|
+
export type KeyphraseOpportunitiesResponseMetaFiltersAssignedContentTypeEnum = typeof KeyphraseOpportunitiesResponseMetaFiltersAssignedContentTypeEnum[keyof typeof KeyphraseOpportunitiesResponseMetaFiltersAssignedContentTypeEnum];
|
|
259
|
+
export declare const KeyphraseOpportunitiesResponseMetaFiltersSuggestedContentTypeEnum: {
|
|
260
|
+
readonly Product: "product";
|
|
261
|
+
readonly Collection: "collection";
|
|
262
|
+
};
|
|
263
|
+
export type KeyphraseOpportunitiesResponseMetaFiltersSuggestedContentTypeEnum = typeof KeyphraseOpportunitiesResponseMetaFiltersSuggestedContentTypeEnum[keyof typeof KeyphraseOpportunitiesResponseMetaFiltersSuggestedContentTypeEnum];
|
|
231
264
|
export interface KeyphraseOpportunity {
|
|
232
265
|
'id': string;
|
|
233
266
|
/**
|
|
@@ -637,12 +670,6 @@ export interface SeoMetadata {
|
|
|
637
670
|
*/
|
|
638
671
|
'description'?: string | null;
|
|
639
672
|
}
|
|
640
|
-
export interface SeoOptimisePages202Response {
|
|
641
|
-
/**
|
|
642
|
-
* A message describing the optimisation status
|
|
643
|
-
*/
|
|
644
|
-
'message'?: string;
|
|
645
|
-
}
|
|
646
673
|
export interface SeoOptimisePagesRequest {
|
|
647
674
|
/**
|
|
648
675
|
* A set of page IDs to AI SEO optimise.
|
|
@@ -1099,7 +1126,7 @@ export declare const BlogsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
1099
1126
|
* @param {string} project What project it is
|
|
1100
1127
|
* @param {number} [pageToken] Page reference token
|
|
1101
1128
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
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.
|
|
1129
|
+
* @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 sparseCollection:true assignedContentType:product suggestedContentType:product,collection organic shirts. Multiple filters can be combined with spaces and commas.
|
|
1103
1130
|
* @param {*} [options] Override http request option.
|
|
1104
1131
|
* @throws {RequiredError}
|
|
1105
1132
|
*/
|
|
@@ -1120,7 +1147,7 @@ export declare const BlogsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
1120
1147
|
* @param {string} project What project it is
|
|
1121
1148
|
* @param {number} [pageToken] Page reference token
|
|
1122
1149
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
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.
|
|
1150
|
+
* @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 sparseCollection:true assignedContentType:product suggestedContentType:product,collection organic shirts. Multiple filters can be combined with spaces and commas.
|
|
1124
1151
|
* @param {UpdateBlogsRequest} [updateBlogsRequest] Update blogs in bulk.
|
|
1125
1152
|
* @param {*} [options] Override http request option.
|
|
1126
1153
|
* @throws {RequiredError}
|
|
@@ -1154,7 +1181,7 @@ export declare const BlogsApiFp: (configuration?: Configuration) => {
|
|
|
1154
1181
|
* @param {string} project What project it is
|
|
1155
1182
|
* @param {number} [pageToken] Page reference token
|
|
1156
1183
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
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.
|
|
1184
|
+
* @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 sparseCollection:true assignedContentType:product suggestedContentType:product,collection organic shirts. Multiple filters can be combined with spaces and commas.
|
|
1158
1185
|
* @param {*} [options] Override http request option.
|
|
1159
1186
|
* @throws {RequiredError}
|
|
1160
1187
|
*/
|
|
@@ -1175,7 +1202,7 @@ export declare const BlogsApiFp: (configuration?: Configuration) => {
|
|
|
1175
1202
|
* @param {string} project What project it is
|
|
1176
1203
|
* @param {number} [pageToken] Page reference token
|
|
1177
1204
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
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.
|
|
1205
|
+
* @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 sparseCollection:true assignedContentType:product suggestedContentType:product,collection organic shirts. Multiple filters can be combined with spaces and commas.
|
|
1179
1206
|
* @param {UpdateBlogsRequest} [updateBlogsRequest] Update blogs in bulk.
|
|
1180
1207
|
* @param {*} [options] Override http request option.
|
|
1181
1208
|
* @throws {RequiredError}
|
|
@@ -1266,7 +1293,7 @@ export interface BlogsApiListBlogsRequest {
|
|
|
1266
1293
|
*/
|
|
1267
1294
|
readonly pageSize?: number;
|
|
1268
1295
|
/**
|
|
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.
|
|
1296
|
+
* 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.
|
|
1270
1297
|
*/
|
|
1271
1298
|
readonly search?: string;
|
|
1272
1299
|
}
|
|
@@ -1301,7 +1328,7 @@ export interface BlogsApiUpdateBlogsRequest {
|
|
|
1301
1328
|
*/
|
|
1302
1329
|
readonly pageSize?: number;
|
|
1303
1330
|
/**
|
|
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.
|
|
1331
|
+
* 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.
|
|
1305
1332
|
*/
|
|
1306
1333
|
readonly search?: string;
|
|
1307
1334
|
/**
|
|
@@ -1782,13 +1809,22 @@ export declare const KeyphraseOpportunitiesApiAxiosParamCreator: (configuration?
|
|
|
1782
1809
|
* @throws {RequiredError}
|
|
1783
1810
|
*/
|
|
1784
1811
|
deleteKeyphraseOpportunity: (project: string, keyphraseOpportunityId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1812
|
+
/**
|
|
1813
|
+
* Queue AI collection generation for a keyphrase opportunity. A new collection will be created with the primary keyphrase from the opportunity, a set of relevant products will be attached, and the collection will be AI SEO optimised.
|
|
1814
|
+
* @summary Generate collection for a keyphrase opportunity
|
|
1815
|
+
* @param {string} project What project it is
|
|
1816
|
+
* @param {string} keyphraseOpportunityId Keyphrase opportunity\'s unique identifier
|
|
1817
|
+
* @param {*} [options] Override http request option.
|
|
1818
|
+
* @throws {RequiredError}
|
|
1819
|
+
*/
|
|
1820
|
+
generateCollectionForKeyphraseOpportunity: (project: string, keyphraseOpportunityId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1785
1821
|
/**
|
|
1786
1822
|
* List keyphrases saved as opportunities for a store. Use search tags to filter by assignment, publication, and optimisation status.
|
|
1787
1823
|
* @summary List keyphrase opportunities
|
|
1788
1824
|
* @param {string} project What project it is
|
|
1789
1825
|
* @param {number} [pageToken] Page reference token
|
|
1790
1826
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
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.
|
|
1827
|
+
* @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 sparseCollection:true assignedContentType:product suggestedContentType:product,collection organic shirts. Multiple filters can be combined with spaces and commas.
|
|
1792
1828
|
* @param {*} [options] Override http request option.
|
|
1793
1829
|
* @throws {RequiredError}
|
|
1794
1830
|
*/
|
|
@@ -1816,13 +1852,22 @@ export declare const KeyphraseOpportunitiesApiFp: (configuration?: Configuration
|
|
|
1816
1852
|
* @throws {RequiredError}
|
|
1817
1853
|
*/
|
|
1818
1854
|
deleteKeyphraseOpportunity(project: string, keyphraseOpportunityId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1855
|
+
/**
|
|
1856
|
+
* Queue AI collection generation for a keyphrase opportunity. A new collection will be created with the primary keyphrase from the opportunity, a set of relevant products will be attached, and the collection will be AI SEO optimised.
|
|
1857
|
+
* @summary Generate collection for a keyphrase opportunity
|
|
1858
|
+
* @param {string} project What project it is
|
|
1859
|
+
* @param {string} keyphraseOpportunityId Keyphrase opportunity\'s unique identifier
|
|
1860
|
+
* @param {*} [options] Override http request option.
|
|
1861
|
+
* @throws {RequiredError}
|
|
1862
|
+
*/
|
|
1863
|
+
generateCollectionForKeyphraseOpportunity(project: string, keyphraseOpportunityId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GenerateCollectionForKeyphraseOpportunity202Response>>;
|
|
1819
1864
|
/**
|
|
1820
1865
|
* List keyphrases saved as opportunities for a store. Use search tags to filter by assignment, publication, and optimisation status.
|
|
1821
1866
|
* @summary List keyphrase opportunities
|
|
1822
1867
|
* @param {string} project What project it is
|
|
1823
1868
|
* @param {number} [pageToken] Page reference token
|
|
1824
1869
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1825
|
-
* @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.
|
|
1870
|
+
* @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 sparseCollection:true assignedContentType:product suggestedContentType:product,collection organic shirts. Multiple filters can be combined with spaces and commas.
|
|
1826
1871
|
* @param {*} [options] Override http request option.
|
|
1827
1872
|
* @throws {RequiredError}
|
|
1828
1873
|
*/
|
|
@@ -1849,6 +1894,14 @@ export declare const KeyphraseOpportunitiesApiFactory: (configuration?: Configur
|
|
|
1849
1894
|
* @throws {RequiredError}
|
|
1850
1895
|
*/
|
|
1851
1896
|
deleteKeyphraseOpportunity(requestParameters: KeyphraseOpportunitiesApiDeleteKeyphraseOpportunityRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1897
|
+
/**
|
|
1898
|
+
* Queue AI collection generation for a keyphrase opportunity. A new collection will be created with the primary keyphrase from the opportunity, a set of relevant products will be attached, and the collection will be AI SEO optimised.
|
|
1899
|
+
* @summary Generate collection for a keyphrase opportunity
|
|
1900
|
+
* @param {KeyphraseOpportunitiesApiGenerateCollectionForKeyphraseOpportunityRequest} requestParameters Request parameters.
|
|
1901
|
+
* @param {*} [options] Override http request option.
|
|
1902
|
+
* @throws {RequiredError}
|
|
1903
|
+
*/
|
|
1904
|
+
generateCollectionForKeyphraseOpportunity(requestParameters: KeyphraseOpportunitiesApiGenerateCollectionForKeyphraseOpportunityRequest, options?: RawAxiosRequestConfig): AxiosPromise<GenerateCollectionForKeyphraseOpportunity202Response>;
|
|
1852
1905
|
/**
|
|
1853
1906
|
* List keyphrases saved as opportunities for a store. Use search tags to filter by assignment, publication, and optimisation status.
|
|
1854
1907
|
* @summary List keyphrase opportunities
|
|
@@ -1879,6 +1932,19 @@ export interface KeyphraseOpportunitiesApiDeleteKeyphraseOpportunityRequest {
|
|
|
1879
1932
|
*/
|
|
1880
1933
|
readonly keyphraseOpportunityId: string;
|
|
1881
1934
|
}
|
|
1935
|
+
/**
|
|
1936
|
+
* Request parameters for generateCollectionForKeyphraseOpportunity operation in KeyphraseOpportunitiesApi.
|
|
1937
|
+
*/
|
|
1938
|
+
export interface KeyphraseOpportunitiesApiGenerateCollectionForKeyphraseOpportunityRequest {
|
|
1939
|
+
/**
|
|
1940
|
+
* What project it is
|
|
1941
|
+
*/
|
|
1942
|
+
readonly project: string;
|
|
1943
|
+
/**
|
|
1944
|
+
* Keyphrase opportunity\'s unique identifier
|
|
1945
|
+
*/
|
|
1946
|
+
readonly keyphraseOpportunityId: string;
|
|
1947
|
+
}
|
|
1882
1948
|
/**
|
|
1883
1949
|
* Request parameters for listKeyphraseOpportunities operation in KeyphraseOpportunitiesApi.
|
|
1884
1950
|
*/
|
|
@@ -1896,7 +1962,7 @@ export interface KeyphraseOpportunitiesApiListKeyphraseOpportunitiesRequest {
|
|
|
1896
1962
|
*/
|
|
1897
1963
|
readonly pageSize?: number;
|
|
1898
1964
|
/**
|
|
1899
|
-
* 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.
|
|
1965
|
+
* 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.
|
|
1900
1966
|
*/
|
|
1901
1967
|
readonly search?: string;
|
|
1902
1968
|
}
|
|
@@ -1925,6 +1991,14 @@ export declare class KeyphraseOpportunitiesApi extends BaseAPI {
|
|
|
1925
1991
|
* @throws {RequiredError}
|
|
1926
1992
|
*/
|
|
1927
1993
|
deleteKeyphraseOpportunity(requestParameters: KeyphraseOpportunitiesApiDeleteKeyphraseOpportunityRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
1994
|
+
/**
|
|
1995
|
+
* Queue AI collection generation for a keyphrase opportunity. A new collection will be created with the primary keyphrase from the opportunity, a set of relevant products will be attached, and the collection will be AI SEO optimised.
|
|
1996
|
+
* @summary Generate collection for a keyphrase opportunity
|
|
1997
|
+
* @param {KeyphraseOpportunitiesApiGenerateCollectionForKeyphraseOpportunityRequest} requestParameters Request parameters.
|
|
1998
|
+
* @param {*} [options] Override http request option.
|
|
1999
|
+
* @throws {RequiredError}
|
|
2000
|
+
*/
|
|
2001
|
+
generateCollectionForKeyphraseOpportunity(requestParameters: KeyphraseOpportunitiesApiGenerateCollectionForKeyphraseOpportunityRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GenerateCollectionForKeyphraseOpportunity202Response, any, {}>>;
|
|
1928
2002
|
/**
|
|
1929
2003
|
* List keyphrases saved as opportunities for a store. Use search tags to filter by assignment, publication, and optimisation status.
|
|
1930
2004
|
* @summary List keyphrase opportunities
|
|
@@ -2077,7 +2151,7 @@ export declare const PagesApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
2077
2151
|
* @param {string} project What project it is
|
|
2078
2152
|
* @param {number} [pageToken] Page reference token
|
|
2079
2153
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2080
|
-
* @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.
|
|
2154
|
+
* @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 sparseCollection:true assignedContentType:product suggestedContentType:product,collection organic shirts. Multiple filters can be combined with spaces and commas.
|
|
2081
2155
|
* @param {*} [options] Override http request option.
|
|
2082
2156
|
* @throws {RequiredError}
|
|
2083
2157
|
*/
|
|
@@ -2107,7 +2181,7 @@ export declare const PagesApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
2107
2181
|
* @param {string} project What project it is
|
|
2108
2182
|
* @param {number} [pageToken] Page reference token
|
|
2109
2183
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2110
|
-
* @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.
|
|
2184
|
+
* @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 sparseCollection:true assignedContentType:product suggestedContentType:product,collection organic shirts. Multiple filters can be combined with spaces and commas.
|
|
2111
2185
|
* @param {UpdatePagesRequest} [updatePagesRequest] Update pages in bulk.
|
|
2112
2186
|
* @param {*} [options] Override http request option.
|
|
2113
2187
|
* @throws {RequiredError}
|
|
@@ -2141,7 +2215,7 @@ export declare const PagesApiFp: (configuration?: Configuration) => {
|
|
|
2141
2215
|
* @param {string} project What project it is
|
|
2142
2216
|
* @param {number} [pageToken] Page reference token
|
|
2143
2217
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2144
|
-
* @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.
|
|
2218
|
+
* @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 sparseCollection:true assignedContentType:product suggestedContentType:product,collection organic shirts. Multiple filters can be combined with spaces and commas.
|
|
2145
2219
|
* @param {*} [options] Override http request option.
|
|
2146
2220
|
* @throws {RequiredError}
|
|
2147
2221
|
*/
|
|
@@ -2154,7 +2228,7 @@ export declare const PagesApiFp: (configuration?: Configuration) => {
|
|
|
2154
2228
|
* @param {*} [options] Override http request option.
|
|
2155
2229
|
* @throws {RequiredError}
|
|
2156
2230
|
*/
|
|
2157
|
-
seoOptimisePages(project: string, seoOptimisePagesRequest?: SeoOptimisePagesRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
2231
|
+
seoOptimisePages(project: string, seoOptimisePagesRequest?: SeoOptimisePagesRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GenerateCollectionForKeyphraseOpportunity202Response>>;
|
|
2158
2232
|
/**
|
|
2159
2233
|
*
|
|
2160
2234
|
* @summary Update website page
|
|
@@ -2171,7 +2245,7 @@ export declare const PagesApiFp: (configuration?: Configuration) => {
|
|
|
2171
2245
|
* @param {string} project What project it is
|
|
2172
2246
|
* @param {number} [pageToken] Page reference token
|
|
2173
2247
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2174
|
-
* @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.
|
|
2248
|
+
* @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 sparseCollection:true assignedContentType:product suggestedContentType:product,collection organic shirts. Multiple filters can be combined with spaces and commas.
|
|
2175
2249
|
* @param {UpdatePagesRequest} [updatePagesRequest] Update pages in bulk.
|
|
2176
2250
|
* @param {*} [options] Override http request option.
|
|
2177
2251
|
* @throws {RequiredError}
|
|
@@ -2213,7 +2287,7 @@ export declare const PagesApiFactory: (configuration?: Configuration, basePath?:
|
|
|
2213
2287
|
* @param {*} [options] Override http request option.
|
|
2214
2288
|
* @throws {RequiredError}
|
|
2215
2289
|
*/
|
|
2216
|
-
seoOptimisePages(requestParameters: PagesApiSeoOptimisePagesRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
2290
|
+
seoOptimisePages(requestParameters: PagesApiSeoOptimisePagesRequest, options?: RawAxiosRequestConfig): AxiosPromise<GenerateCollectionForKeyphraseOpportunity202Response>;
|
|
2217
2291
|
/**
|
|
2218
2292
|
*
|
|
2219
2293
|
* @summary Update website page
|
|
@@ -2270,7 +2344,7 @@ export interface PagesApiListPagesRequest {
|
|
|
2270
2344
|
*/
|
|
2271
2345
|
readonly pageSize?: number;
|
|
2272
2346
|
/**
|
|
2273
|
-
* 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.
|
|
2347
|
+
* 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.
|
|
2274
2348
|
*/
|
|
2275
2349
|
readonly search?: string;
|
|
2276
2350
|
}
|
|
@@ -2318,7 +2392,7 @@ export interface PagesApiUpdatePagesRequest {
|
|
|
2318
2392
|
*/
|
|
2319
2393
|
readonly pageSize?: number;
|
|
2320
2394
|
/**
|
|
2321
|
-
* 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.
|
|
2395
|
+
* 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.
|
|
2322
2396
|
*/
|
|
2323
2397
|
readonly search?: string;
|
|
2324
2398
|
/**
|
|
@@ -2361,7 +2435,7 @@ export declare class PagesApi extends BaseAPI {
|
|
|
2361
2435
|
* @param {*} [options] Override http request option.
|
|
2362
2436
|
* @throws {RequiredError}
|
|
2363
2437
|
*/
|
|
2364
|
-
seoOptimisePages(requestParameters: PagesApiSeoOptimisePagesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
2438
|
+
seoOptimisePages(requestParameters: PagesApiSeoOptimisePagesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GenerateCollectionForKeyphraseOpportunity202Response, any, {}>>;
|
|
2365
2439
|
/**
|
|
2366
2440
|
*
|
|
2367
2441
|
* @summary Update website page
|
|
@@ -2794,7 +2868,7 @@ export declare const ReviewsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2794
2868
|
* @param {string} project What project it is
|
|
2795
2869
|
* @param {number} [pageToken] Page reference token
|
|
2796
2870
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2797
|
-
* @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.
|
|
2871
|
+
* @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 sparseCollection:true assignedContentType:product suggestedContentType:product,collection organic shirts. Multiple filters can be combined with spaces and commas.
|
|
2798
2872
|
* @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
2799
2873
|
* @param {string} [start] Start of date range to filter by
|
|
2800
2874
|
* @param {string} [end] End of date range to filter by
|
|
@@ -2842,7 +2916,7 @@ export declare const ReviewsApiFp: (configuration?: Configuration) => {
|
|
|
2842
2916
|
* @param {string} project What project it is
|
|
2843
2917
|
* @param {number} [pageToken] Page reference token
|
|
2844
2918
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2845
|
-
* @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.
|
|
2919
|
+
* @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 sparseCollection:true assignedContentType:product suggestedContentType:product,collection organic shirts. Multiple filters can be combined with spaces and commas.
|
|
2846
2920
|
* @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
2847
2921
|
* @param {string} [start] Start of date range to filter by
|
|
2848
2922
|
* @param {string} [end] End of date range to filter by
|
|
@@ -2945,7 +3019,7 @@ export interface ReviewsApiListReviewsRequest {
|
|
|
2945
3019
|
*/
|
|
2946
3020
|
readonly pageSize?: number;
|
|
2947
3021
|
/**
|
|
2948
|
-
* 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
|
+
* 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.
|
|
2949
3023
|
*/
|
|
2950
3024
|
readonly search?: string;
|
|
2951
3025
|
/**
|
|
@@ -3022,7 +3096,7 @@ export declare const RoutesApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
3022
3096
|
* @param {string} project What project it is
|
|
3023
3097
|
* @param {number} [pageToken] Page reference token
|
|
3024
3098
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
3025
|
-
* @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.
|
|
3099
|
+
* @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 sparseCollection:true assignedContentType:product suggestedContentType:product,collection organic shirts. Multiple filters can be combined with spaces and commas.
|
|
3026
3100
|
* @param {*} [options] Override http request option.
|
|
3027
3101
|
* @throws {RequiredError}
|
|
3028
3102
|
*/
|
|
@@ -3038,7 +3112,7 @@ export declare const RoutesApiFp: (configuration?: Configuration) => {
|
|
|
3038
3112
|
* @param {string} project What project it is
|
|
3039
3113
|
* @param {number} [pageToken] Page reference token
|
|
3040
3114
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
3041
|
-
* @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.
|
|
3115
|
+
* @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 sparseCollection:true assignedContentType:product suggestedContentType:product,collection organic shirts. Multiple filters can be combined with spaces and commas.
|
|
3042
3116
|
* @param {*} [options] Override http request option.
|
|
3043
3117
|
* @throws {RequiredError}
|
|
3044
3118
|
*/
|
|
@@ -3074,7 +3148,7 @@ export interface RoutesApiListRoutesRequest {
|
|
|
3074
3148
|
*/
|
|
3075
3149
|
readonly pageSize?: number;
|
|
3076
3150
|
/**
|
|
3077
|
-
* 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.
|
|
3151
|
+
* 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.
|
|
3078
3152
|
*/
|
|
3079
3153
|
readonly search?: string;
|
|
3080
3154
|
}
|
|
@@ -3101,7 +3175,7 @@ export declare const SearchApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
3101
3175
|
* @param {string} project What project it is
|
|
3102
3176
|
* @param {number} [pageToken] Page reference token
|
|
3103
3177
|
* @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 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.
|
|
3178
|
+
* @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 sparseCollection:true assignedContentType:product suggestedContentType:product,collection organic shirts. Multiple filters can be combined with spaces and commas.
|
|
3105
3179
|
* @param {CreateSearchRedirectRequest} [createSearchRedirectRequest] Create search redirect
|
|
3106
3180
|
* @param {*} [options] Override http request option.
|
|
3107
3181
|
* @throws {RequiredError}
|
|
@@ -3131,7 +3205,7 @@ export declare const SearchApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
3131
3205
|
* @param {string} project What project it is
|
|
3132
3206
|
* @param {number} [pageToken] Page reference token
|
|
3133
3207
|
* @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 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.
|
|
3208
|
+
* @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 sparseCollection:true assignedContentType:product suggestedContentType:product,collection organic shirts. Multiple filters can be combined with spaces and commas.
|
|
3135
3209
|
* @param {*} [options] Override http request option.
|
|
3136
3210
|
* @throws {RequiredError}
|
|
3137
3211
|
*/
|
|
@@ -3157,7 +3231,7 @@ export declare const SearchApiFp: (configuration?: Configuration) => {
|
|
|
3157
3231
|
* @param {string} project What project it is
|
|
3158
3232
|
* @param {number} [pageToken] Page reference token
|
|
3159
3233
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
3160
|
-
* @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.
|
|
3234
|
+
* @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 sparseCollection:true assignedContentType:product suggestedContentType:product,collection organic shirts. Multiple filters can be combined with spaces and commas.
|
|
3161
3235
|
* @param {CreateSearchRedirectRequest} [createSearchRedirectRequest] Create search redirect
|
|
3162
3236
|
* @param {*} [options] Override http request option.
|
|
3163
3237
|
* @throws {RequiredError}
|
|
@@ -3187,7 +3261,7 @@ export declare const SearchApiFp: (configuration?: Configuration) => {
|
|
|
3187
3261
|
* @param {string} project What project it is
|
|
3188
3262
|
* @param {number} [pageToken] Page reference token
|
|
3189
3263
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
3190
|
-
* @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.
|
|
3264
|
+
* @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 sparseCollection:true assignedContentType:product suggestedContentType:product,collection organic shirts. Multiple filters can be combined with spaces and commas.
|
|
3191
3265
|
* @param {*} [options] Override http request option.
|
|
3192
3266
|
* @throws {RequiredError}
|
|
3193
3267
|
*/
|
|
@@ -3265,7 +3339,7 @@ export interface SearchApiCreateSearchRedirectRequest {
|
|
|
3265
3339
|
*/
|
|
3266
3340
|
readonly pageSize?: number;
|
|
3267
3341
|
/**
|
|
3268
|
-
* 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.
|
|
3342
|
+
* 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.
|
|
3269
3343
|
*/
|
|
3270
3344
|
readonly search?: string;
|
|
3271
3345
|
/**
|
|
@@ -3316,7 +3390,7 @@ export interface SearchApiListSearchRedirectsRequest {
|
|
|
3316
3390
|
*/
|
|
3317
3391
|
readonly pageSize?: number;
|
|
3318
3392
|
/**
|
|
3319
|
-
* 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.
|
|
3393
|
+
* 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.
|
|
3320
3394
|
*/
|
|
3321
3395
|
readonly search?: string;
|
|
3322
3396
|
}
|