@teemill/website 0.33.1 → 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 +2 -1
- package/.openapi-generator/VERSION +1 -1
- package/README.md +4 -3
- package/api.ts +96 -40
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +88 -40
- 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 +88 -40
- 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/KeyphraseOpportunitiesResponseMeta.md +4 -2
- package/docs/KeyphraseOpportunitiesResponseMetaFilters.md +25 -0
- package/docs/KeyphraseOpportunity.md +4 -0
- 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/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.34.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -146,12 +146,6 @@ export interface Domain {
|
|
|
146
146
|
'priority': number;
|
|
147
147
|
'enabledAt': string | null;
|
|
148
148
|
}
|
|
149
|
-
export interface ExportPages202Response {
|
|
150
|
-
/**
|
|
151
|
-
* A message describing the export status
|
|
152
|
-
*/
|
|
153
|
-
'message'?: string;
|
|
154
|
-
}
|
|
155
149
|
export interface Footer {
|
|
156
150
|
'items': Array<FooterItem>;
|
|
157
151
|
}
|
|
@@ -193,14 +187,47 @@ export interface KeyphraseOpportunitiesResponse {
|
|
|
193
187
|
*/
|
|
194
188
|
export interface KeyphraseOpportunitiesResponseMeta {
|
|
195
189
|
/**
|
|
196
|
-
* Total number of
|
|
190
|
+
* Total number of keyphrase opportunities matching the active phrase search and list filters.
|
|
197
191
|
*/
|
|
198
192
|
'totalPhrases': number;
|
|
199
193
|
/**
|
|
200
|
-
* Combined monthly volume of
|
|
194
|
+
* Combined monthly search volume of keyphrase opportunities matching the active phrase search and list filters.
|
|
201
195
|
*/
|
|
202
196
|
'totalMonthlyVolume': number;
|
|
197
|
+
'filters': KeyphraseOpportunitiesResponseMetaFilters;
|
|
198
|
+
}
|
|
199
|
+
/**
|
|
200
|
+
* Filters that can be applied to the key phrase opportunities list.
|
|
201
|
+
*/
|
|
202
|
+
export interface KeyphraseOpportunitiesResponseMetaFilters {
|
|
203
|
+
/**
|
|
204
|
+
* Filter by whether the key phrase is assigned to content.
|
|
205
|
+
*/
|
|
206
|
+
'assigned': Array<KeyphraseOpportunitiesResponseMetaFiltersAssignedEnum>;
|
|
207
|
+
/**
|
|
208
|
+
* Filter by whether the key phrase is attached to published content.
|
|
209
|
+
*/
|
|
210
|
+
'published': Array<KeyphraseOpportunitiesResponseMetaFiltersPublishedEnum>;
|
|
211
|
+
/**
|
|
212
|
+
* Filter by whether the key phrase is attached to optimised content.
|
|
213
|
+
*/
|
|
214
|
+
'optimised': Array<KeyphraseOpportunitiesResponseMetaFiltersOptimisedEnum>;
|
|
203
215
|
}
|
|
216
|
+
export declare const KeyphraseOpportunitiesResponseMetaFiltersAssignedEnum: {
|
|
217
|
+
readonly True: "true";
|
|
218
|
+
readonly False: "false";
|
|
219
|
+
};
|
|
220
|
+
export type KeyphraseOpportunitiesResponseMetaFiltersAssignedEnum = typeof KeyphraseOpportunitiesResponseMetaFiltersAssignedEnum[keyof typeof KeyphraseOpportunitiesResponseMetaFiltersAssignedEnum];
|
|
221
|
+
export declare const KeyphraseOpportunitiesResponseMetaFiltersPublishedEnum: {
|
|
222
|
+
readonly True: "true";
|
|
223
|
+
readonly False: "false";
|
|
224
|
+
};
|
|
225
|
+
export type KeyphraseOpportunitiesResponseMetaFiltersPublishedEnum = typeof KeyphraseOpportunitiesResponseMetaFiltersPublishedEnum[keyof typeof KeyphraseOpportunitiesResponseMetaFiltersPublishedEnum];
|
|
226
|
+
export declare const KeyphraseOpportunitiesResponseMetaFiltersOptimisedEnum: {
|
|
227
|
+
readonly True: "true";
|
|
228
|
+
readonly False: "false";
|
|
229
|
+
};
|
|
230
|
+
export type KeyphraseOpportunitiesResponseMetaFiltersOptimisedEnum = typeof KeyphraseOpportunitiesResponseMetaFiltersOptimisedEnum[keyof typeof KeyphraseOpportunitiesResponseMetaFiltersOptimisedEnum];
|
|
204
231
|
export interface KeyphraseOpportunity {
|
|
205
232
|
'id': string;
|
|
206
233
|
/**
|
|
@@ -211,7 +238,28 @@ export interface KeyphraseOpportunity {
|
|
|
211
238
|
* Monthly search volume for the keyphrase
|
|
212
239
|
*/
|
|
213
240
|
'monthlyVolume': number | null;
|
|
241
|
+
/**
|
|
242
|
+
* Merchandising issues for this key phrase opportunity.
|
|
243
|
+
*/
|
|
244
|
+
'merchIssues': Array<string>;
|
|
245
|
+
'content': KeyphraseOpportunityContent | null;
|
|
214
246
|
}
|
|
247
|
+
/**
|
|
248
|
+
* Product or collection the key phrase is assigned to.
|
|
249
|
+
*/
|
|
250
|
+
export interface KeyphraseOpportunityContent {
|
|
251
|
+
'type': KeyphraseOpportunityContentTypeEnum;
|
|
252
|
+
'id': string;
|
|
253
|
+
/**
|
|
254
|
+
* The name of the product or collection
|
|
255
|
+
*/
|
|
256
|
+
'name': string;
|
|
257
|
+
}
|
|
258
|
+
export declare const KeyphraseOpportunityContentTypeEnum: {
|
|
259
|
+
readonly Product: "product";
|
|
260
|
+
readonly Collection: "collection";
|
|
261
|
+
};
|
|
262
|
+
export type KeyphraseOpportunityContentTypeEnum = typeof KeyphraseOpportunityContentTypeEnum[keyof typeof KeyphraseOpportunityContentTypeEnum];
|
|
215
263
|
export interface ListDomains200Response {
|
|
216
264
|
'domains': Array<Domain>;
|
|
217
265
|
/**
|
|
@@ -1042,7 +1090,7 @@ export declare const BlogsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
1042
1090
|
* @param {string} project What project it is
|
|
1043
1091
|
* @param {number} [pageToken] Page reference token
|
|
1044
1092
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1045
|
-
* @param {string} [search] Search term to filter results
|
|
1093
|
+
* @param {string} [search] 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.
|
|
1046
1094
|
* @param {*} [options] Override http request option.
|
|
1047
1095
|
* @throws {RequiredError}
|
|
1048
1096
|
*/
|
|
@@ -1063,7 +1111,7 @@ export declare const BlogsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
1063
1111
|
* @param {string} project What project it is
|
|
1064
1112
|
* @param {number} [pageToken] Page reference token
|
|
1065
1113
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1066
|
-
* @param {string} [search] Search term to filter results
|
|
1114
|
+
* @param {string} [search] 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.
|
|
1067
1115
|
* @param {UpdateBlogsRequest} [updateBlogsRequest] Update blogs in bulk.
|
|
1068
1116
|
* @param {*} [options] Override http request option.
|
|
1069
1117
|
* @throws {RequiredError}
|
|
@@ -1097,7 +1145,7 @@ export declare const BlogsApiFp: (configuration?: Configuration) => {
|
|
|
1097
1145
|
* @param {string} project What project it is
|
|
1098
1146
|
* @param {number} [pageToken] Page reference token
|
|
1099
1147
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1100
|
-
* @param {string} [search] Search term to filter results
|
|
1148
|
+
* @param {string} [search] 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.
|
|
1101
1149
|
* @param {*} [options] Override http request option.
|
|
1102
1150
|
* @throws {RequiredError}
|
|
1103
1151
|
*/
|
|
@@ -1118,7 +1166,7 @@ export declare const BlogsApiFp: (configuration?: Configuration) => {
|
|
|
1118
1166
|
* @param {string} project What project it is
|
|
1119
1167
|
* @param {number} [pageToken] Page reference token
|
|
1120
1168
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1121
|
-
* @param {string} [search] Search term to filter results
|
|
1169
|
+
* @param {string} [search] 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.
|
|
1122
1170
|
* @param {UpdateBlogsRequest} [updateBlogsRequest] Update blogs in bulk.
|
|
1123
1171
|
* @param {*} [options] Override http request option.
|
|
1124
1172
|
* @throws {RequiredError}
|
|
@@ -1209,7 +1257,7 @@ export interface BlogsApiListBlogsRequest {
|
|
|
1209
1257
|
*/
|
|
1210
1258
|
readonly pageSize?: number;
|
|
1211
1259
|
/**
|
|
1212
|
-
* Search term to filter results
|
|
1260
|
+
* 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.
|
|
1213
1261
|
*/
|
|
1214
1262
|
readonly search?: string;
|
|
1215
1263
|
}
|
|
@@ -1244,7 +1292,7 @@ export interface BlogsApiUpdateBlogsRequest {
|
|
|
1244
1292
|
*/
|
|
1245
1293
|
readonly pageSize?: number;
|
|
1246
1294
|
/**
|
|
1247
|
-
* Search term to filter results
|
|
1295
|
+
* 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.
|
|
1248
1296
|
*/
|
|
1249
1297
|
readonly search?: string;
|
|
1250
1298
|
/**
|
|
@@ -1726,12 +1774,12 @@ export declare const KeyphraseOpportunitiesApiAxiosParamCreator: (configuration?
|
|
|
1726
1774
|
*/
|
|
1727
1775
|
deleteKeyphraseOpportunity: (project: string, keyphraseOpportunityId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1728
1776
|
/**
|
|
1729
|
-
* List
|
|
1777
|
+
* List key phrases saved as opportunities for a store. Use search tags to filter by assignment, publication, and optimisation status.
|
|
1730
1778
|
* @summary List key phrase opportunities
|
|
1731
1779
|
* @param {string} project What project it is
|
|
1732
1780
|
* @param {number} [pageToken] Page reference token
|
|
1733
1781
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1734
|
-
* @param {string} [search] Search term to filter results
|
|
1782
|
+
* @param {string} [search] 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.
|
|
1735
1783
|
* @param {*} [options] Override http request option.
|
|
1736
1784
|
* @throws {RequiredError}
|
|
1737
1785
|
*/
|
|
@@ -1751,12 +1799,12 @@ export declare const KeyphraseOpportunitiesApiFp: (configuration?: Configuration
|
|
|
1751
1799
|
*/
|
|
1752
1800
|
deleteKeyphraseOpportunity(project: string, keyphraseOpportunityId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1753
1801
|
/**
|
|
1754
|
-
* List
|
|
1802
|
+
* List key phrases saved as opportunities for a store. Use search tags to filter by assignment, publication, and optimisation status.
|
|
1755
1803
|
* @summary List key phrase opportunities
|
|
1756
1804
|
* @param {string} project What project it is
|
|
1757
1805
|
* @param {number} [pageToken] Page reference token
|
|
1758
1806
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1759
|
-
* @param {string} [search] Search term to filter results
|
|
1807
|
+
* @param {string} [search] 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.
|
|
1760
1808
|
* @param {*} [options] Override http request option.
|
|
1761
1809
|
* @throws {RequiredError}
|
|
1762
1810
|
*/
|
|
@@ -1775,7 +1823,7 @@ export declare const KeyphraseOpportunitiesApiFactory: (configuration?: Configur
|
|
|
1775
1823
|
*/
|
|
1776
1824
|
deleteKeyphraseOpportunity(requestParameters: KeyphraseOpportunitiesApiDeleteKeyphraseOpportunityRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1777
1825
|
/**
|
|
1778
|
-
* List
|
|
1826
|
+
* List key phrases saved as opportunities for a store. Use search tags to filter by assignment, publication, and optimisation status.
|
|
1779
1827
|
* @summary List key phrase opportunities
|
|
1780
1828
|
* @param {KeyphraseOpportunitiesApiListKeyphraseOpportunitiesRequest} requestParameters Request parameters.
|
|
1781
1829
|
* @param {*} [options] Override http request option.
|
|
@@ -1813,7 +1861,7 @@ export interface KeyphraseOpportunitiesApiListKeyphraseOpportunitiesRequest {
|
|
|
1813
1861
|
*/
|
|
1814
1862
|
readonly pageSize?: number;
|
|
1815
1863
|
/**
|
|
1816
|
-
* Search term to filter results
|
|
1864
|
+
* 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.
|
|
1817
1865
|
*/
|
|
1818
1866
|
readonly search?: string;
|
|
1819
1867
|
}
|
|
@@ -1830,7 +1878,7 @@ export declare class KeyphraseOpportunitiesApi extends BaseAPI {
|
|
|
1830
1878
|
*/
|
|
1831
1879
|
deleteKeyphraseOpportunity(requestParameters: KeyphraseOpportunitiesApiDeleteKeyphraseOpportunityRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
1832
1880
|
/**
|
|
1833
|
-
* List
|
|
1881
|
+
* List key phrases saved as opportunities for a store. Use search tags to filter by assignment, publication, and optimisation status.
|
|
1834
1882
|
* @summary List key phrase opportunities
|
|
1835
1883
|
* @param {KeyphraseOpportunitiesApiListKeyphraseOpportunitiesRequest} requestParameters Request parameters.
|
|
1836
1884
|
* @param {*} [options] Override http request option.
|
|
@@ -1973,7 +2021,7 @@ export declare const PagesApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
1973
2021
|
* @param {string} project What project it is
|
|
1974
2022
|
* @param {number} [pageToken] Page reference token
|
|
1975
2023
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1976
|
-
* @param {string} [search] Search term to filter results
|
|
2024
|
+
* @param {string} [search] 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.
|
|
1977
2025
|
* @param {*} [options] Override http request option.
|
|
1978
2026
|
* @throws {RequiredError}
|
|
1979
2027
|
*/
|
|
@@ -2003,7 +2051,7 @@ export declare const PagesApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
2003
2051
|
* @param {string} project What project it is
|
|
2004
2052
|
* @param {number} [pageToken] Page reference token
|
|
2005
2053
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2006
|
-
* @param {string} [search] Search term to filter results
|
|
2054
|
+
* @param {string} [search] 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.
|
|
2007
2055
|
* @param {UpdatePagesRequest} [updatePagesRequest] Update pages in bulk.
|
|
2008
2056
|
* @param {*} [options] Override http request option.
|
|
2009
2057
|
* @throws {RequiredError}
|
|
@@ -2037,7 +2085,7 @@ export declare const PagesApiFp: (configuration?: Configuration) => {
|
|
|
2037
2085
|
* @param {string} project What project it is
|
|
2038
2086
|
* @param {number} [pageToken] Page reference token
|
|
2039
2087
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2040
|
-
* @param {string} [search] Search term to filter results
|
|
2088
|
+
* @param {string} [search] 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.
|
|
2041
2089
|
* @param {*} [options] Override http request option.
|
|
2042
2090
|
* @throws {RequiredError}
|
|
2043
2091
|
*/
|
|
@@ -2067,7 +2115,7 @@ export declare const PagesApiFp: (configuration?: Configuration) => {
|
|
|
2067
2115
|
* @param {string} project What project it is
|
|
2068
2116
|
* @param {number} [pageToken] Page reference token
|
|
2069
2117
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2070
|
-
* @param {string} [search] Search term to filter results
|
|
2118
|
+
* @param {string} [search] 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.
|
|
2071
2119
|
* @param {UpdatePagesRequest} [updatePagesRequest] Update pages in bulk.
|
|
2072
2120
|
* @param {*} [options] Override http request option.
|
|
2073
2121
|
* @throws {RequiredError}
|
|
@@ -2166,7 +2214,7 @@ export interface PagesApiListPagesRequest {
|
|
|
2166
2214
|
*/
|
|
2167
2215
|
readonly pageSize?: number;
|
|
2168
2216
|
/**
|
|
2169
|
-
* Search term to filter results
|
|
2217
|
+
* 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.
|
|
2170
2218
|
*/
|
|
2171
2219
|
readonly search?: string;
|
|
2172
2220
|
}
|
|
@@ -2214,7 +2262,7 @@ export interface PagesApiUpdatePagesRequest {
|
|
|
2214
2262
|
*/
|
|
2215
2263
|
readonly pageSize?: number;
|
|
2216
2264
|
/**
|
|
2217
|
-
* Search term to filter results
|
|
2265
|
+
* 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.
|
|
2218
2266
|
*/
|
|
2219
2267
|
readonly search?: string;
|
|
2220
2268
|
/**
|
|
@@ -2690,7 +2738,7 @@ export declare const ReviewsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2690
2738
|
* @param {string} project What project it is
|
|
2691
2739
|
* @param {number} [pageToken] Page reference token
|
|
2692
2740
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2693
|
-
* @param {string} [search] Search term to filter results
|
|
2741
|
+
* @param {string} [search] 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.
|
|
2694
2742
|
* @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
2695
2743
|
* @param {string} [start] Start of date range to filter by
|
|
2696
2744
|
* @param {string} [end] End of date range to filter by
|
|
@@ -2738,7 +2786,7 @@ export declare const ReviewsApiFp: (configuration?: Configuration) => {
|
|
|
2738
2786
|
* @param {string} project What project it is
|
|
2739
2787
|
* @param {number} [pageToken] Page reference token
|
|
2740
2788
|
* @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
|
|
2789
|
+
* @param {string} [search] 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.
|
|
2742
2790
|
* @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
2743
2791
|
* @param {string} [start] Start of date range to filter by
|
|
2744
2792
|
* @param {string} [end] End of date range to filter by
|
|
@@ -2841,7 +2889,7 @@ export interface ReviewsApiListReviewsRequest {
|
|
|
2841
2889
|
*/
|
|
2842
2890
|
readonly pageSize?: number;
|
|
2843
2891
|
/**
|
|
2844
|
-
* Search term to filter results
|
|
2892
|
+
* 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.
|
|
2845
2893
|
*/
|
|
2846
2894
|
readonly search?: string;
|
|
2847
2895
|
/**
|
|
@@ -2918,7 +2966,7 @@ export declare const RoutesApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
2918
2966
|
* @param {string} project What project it is
|
|
2919
2967
|
* @param {number} [pageToken] Page reference token
|
|
2920
2968
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2921
|
-
* @param {string} [search] Search term to filter results
|
|
2969
|
+
* @param {string} [search] 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.
|
|
2922
2970
|
* @param {*} [options] Override http request option.
|
|
2923
2971
|
* @throws {RequiredError}
|
|
2924
2972
|
*/
|
|
@@ -2934,7 +2982,7 @@ export declare const RoutesApiFp: (configuration?: Configuration) => {
|
|
|
2934
2982
|
* @param {string} project What project it is
|
|
2935
2983
|
* @param {number} [pageToken] Page reference token
|
|
2936
2984
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2937
|
-
* @param {string} [search] Search term to filter results
|
|
2985
|
+
* @param {string} [search] 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.
|
|
2938
2986
|
* @param {*} [options] Override http request option.
|
|
2939
2987
|
* @throws {RequiredError}
|
|
2940
2988
|
*/
|
|
@@ -2970,7 +3018,7 @@ export interface RoutesApiListRoutesRequest {
|
|
|
2970
3018
|
*/
|
|
2971
3019
|
readonly pageSize?: number;
|
|
2972
3020
|
/**
|
|
2973
|
-
* Search term to filter results
|
|
3021
|
+
* 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.
|
|
2974
3022
|
*/
|
|
2975
3023
|
readonly search?: string;
|
|
2976
3024
|
}
|
|
@@ -2997,7 +3045,7 @@ export declare const SearchApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
2997
3045
|
* @param {string} project What project it is
|
|
2998
3046
|
* @param {number} [pageToken] Page reference token
|
|
2999
3047
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
3000
|
-
* @param {string} [search] Search term to filter results
|
|
3048
|
+
* @param {string} [search] 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.
|
|
3001
3049
|
* @param {CreateSearchRedirectRequest} [createSearchRedirectRequest] Create search redirect
|
|
3002
3050
|
* @param {*} [options] Override http request option.
|
|
3003
3051
|
* @throws {RequiredError}
|
|
@@ -3027,7 +3075,7 @@ export declare const SearchApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
3027
3075
|
* @param {string} project What project it is
|
|
3028
3076
|
* @param {number} [pageToken] Page reference token
|
|
3029
3077
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
3030
|
-
* @param {string} [search] Search term to filter results
|
|
3078
|
+
* @param {string} [search] 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.
|
|
3031
3079
|
* @param {*} [options] Override http request option.
|
|
3032
3080
|
* @throws {RequiredError}
|
|
3033
3081
|
*/
|
|
@@ -3053,7 +3101,7 @@ export declare const SearchApiFp: (configuration?: Configuration) => {
|
|
|
3053
3101
|
* @param {string} project What project it is
|
|
3054
3102
|
* @param {number} [pageToken] Page reference token
|
|
3055
3103
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
3056
|
-
* @param {string} [search] Search term to filter results
|
|
3104
|
+
* @param {string} [search] 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.
|
|
3057
3105
|
* @param {CreateSearchRedirectRequest} [createSearchRedirectRequest] Create search redirect
|
|
3058
3106
|
* @param {*} [options] Override http request option.
|
|
3059
3107
|
* @throws {RequiredError}
|
|
@@ -3083,7 +3131,7 @@ export declare const SearchApiFp: (configuration?: Configuration) => {
|
|
|
3083
3131
|
* @param {string} project What project it is
|
|
3084
3132
|
* @param {number} [pageToken] Page reference token
|
|
3085
3133
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
3086
|
-
* @param {string} [search] Search term to filter results
|
|
3134
|
+
* @param {string} [search] 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.
|
|
3087
3135
|
* @param {*} [options] Override http request option.
|
|
3088
3136
|
* @throws {RequiredError}
|
|
3089
3137
|
*/
|
|
@@ -3161,7 +3209,7 @@ export interface SearchApiCreateSearchRedirectRequest {
|
|
|
3161
3209
|
*/
|
|
3162
3210
|
readonly pageSize?: number;
|
|
3163
3211
|
/**
|
|
3164
|
-
* Search term to filter results
|
|
3212
|
+
* 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.
|
|
3165
3213
|
*/
|
|
3166
3214
|
readonly search?: string;
|
|
3167
3215
|
/**
|
|
@@ -3212,7 +3260,7 @@ export interface SearchApiListSearchRedirectsRequest {
|
|
|
3212
3260
|
*/
|
|
3213
3261
|
readonly pageSize?: number;
|
|
3214
3262
|
/**
|
|
3215
|
-
* Search term to filter results
|
|
3263
|
+
* 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.
|
|
3216
3264
|
*/
|
|
3217
3265
|
readonly search?: string;
|
|
3218
3266
|
}
|
package/dist/api.js
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
* Website
|
|
6
6
|
* Manage your PodOS Website
|
|
7
7
|
*
|
|
8
|
-
* The version of the OpenAPI document: 0.
|
|
8
|
+
* The version of the OpenAPI document: 0.34.0
|
|
9
9
|
*
|
|
10
10
|
*
|
|
11
11
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -22,8 +22,8 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
22
22
|
});
|
|
23
23
|
};
|
|
24
24
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
-
exports.
|
|
26
|
-
exports.WebsiteApi = exports.WebsiteApiFactory = exports.WebsiteApiFp = exports.WebsiteApiAxiosParamCreator = exports.SearchApi = exports.SearchApiFactory = exports.SearchApiFp = exports.SearchApiAxiosParamCreator = exports.RoutesApi = exports.RoutesApiFactory = exports.RoutesApiFp = exports.RoutesApiAxiosParamCreator = exports.ReviewsApi = exports.ReviewsApiFactory = exports.ReviewsApiFp = exports.ReviewsApiAxiosParamCreator = exports.ProductsApi = exports.ProductsApiFactory = exports.ProductsApiFp = exports.ProductsApiAxiosParamCreator = exports.PaymentApi = exports.PaymentApiFactory = exports.PaymentApiFp = void 0;
|
|
25
|
+
exports.PagesApiAxiosParamCreator = exports.MenuApi = exports.MenuApiFactory = exports.MenuApiFp = exports.MenuApiAxiosParamCreator = exports.KeyphraseOpportunitiesApi = exports.KeyphraseOpportunitiesApiFactory = exports.KeyphraseOpportunitiesApiFp = exports.KeyphraseOpportunitiesApiAxiosParamCreator = exports.FooterApi = exports.FooterApiFactory = exports.FooterApiFp = exports.FooterApiAxiosParamCreator = exports.DefaultApi = exports.DefaultApiFactory = exports.DefaultApiFp = exports.DefaultApiAxiosParamCreator = exports.CrossSellApi = exports.CrossSellApiFactory = exports.CrossSellApiFp = exports.CrossSellApiAxiosParamCreator = exports.CollectionsApi = exports.CollectionsApiFactory = exports.CollectionsApiFp = exports.CollectionsApiAxiosParamCreator = exports.BlogsApi = exports.BlogsApiFactory = exports.BlogsApiFp = exports.BlogsApiAxiosParamCreator = exports.UpdateMenuRequestItemSubmenuInnerImageTextShadowEnum = exports.UpdateMenuRequestItemSubmenuInnerImageTextAlignmentEnum = exports.UpdateMenuRequestItemSubmenuInnerImageButtonWidthEnum = exports.UpdateMenuRequestItemSubmenuInnerImageButtonBorderRadiusEnum = exports.UpdateMenuRequestItemSubmenuInnerModeEnum = exports.SubmenuInnerImageTextShadowEnum = exports.SubmenuInnerImageTextAlignmentEnum = exports.SubmenuInnerImageButtonWidthEnum = exports.SubmenuInnerImageButtonBorderRadiusEnum = exports.SubmenuInnerImageBorderRadiusEnum = exports.SubmenuInnerModeEnum = exports.SalePriceCurrencyCodeEnum = exports.PriceCurrencyCodeEnum = exports.PaymentAccountMethodEnum = exports.KeyphraseOpportunityContentTypeEnum = exports.KeyphraseOpportunitiesResponseMetaFiltersOptimisedEnum = exports.KeyphraseOpportunitiesResponseMetaFiltersPublishedEnum = exports.KeyphraseOpportunitiesResponseMetaFiltersAssignedEnum = exports.AttributeThumbnailTypeEnum = exports.ApplicationPlacementEnum = exports.ApplicationTechnologyEnum = void 0;
|
|
26
|
+
exports.WebsiteApi = exports.WebsiteApiFactory = exports.WebsiteApiFp = exports.WebsiteApiAxiosParamCreator = exports.SearchApi = exports.SearchApiFactory = exports.SearchApiFp = exports.SearchApiAxiosParamCreator = exports.RoutesApi = exports.RoutesApiFactory = exports.RoutesApiFp = exports.RoutesApiAxiosParamCreator = exports.ReviewsApi = exports.ReviewsApiFactory = exports.ReviewsApiFp = exports.ReviewsApiAxiosParamCreator = exports.ProductsApi = exports.ProductsApiFactory = exports.ProductsApiFp = exports.ProductsApiAxiosParamCreator = exports.PaymentApi = exports.PaymentApiFactory = exports.PaymentApiFp = exports.PaymentApiAxiosParamCreator = exports.PagesApi = exports.PagesApiFactory = exports.PagesApiFp = void 0;
|
|
27
27
|
const axios_1 = require("axios");
|
|
28
28
|
// Some imports not used depending on template conditions
|
|
29
29
|
// @ts-ignore
|
|
@@ -54,6 +54,22 @@ exports.AttributeThumbnailTypeEnum = {
|
|
|
54
54
|
Color: 'color',
|
|
55
55
|
Image: 'image',
|
|
56
56
|
};
|
|
57
|
+
exports.KeyphraseOpportunitiesResponseMetaFiltersAssignedEnum = {
|
|
58
|
+
True: 'true',
|
|
59
|
+
False: 'false',
|
|
60
|
+
};
|
|
61
|
+
exports.KeyphraseOpportunitiesResponseMetaFiltersPublishedEnum = {
|
|
62
|
+
True: 'true',
|
|
63
|
+
False: 'false',
|
|
64
|
+
};
|
|
65
|
+
exports.KeyphraseOpportunitiesResponseMetaFiltersOptimisedEnum = {
|
|
66
|
+
True: 'true',
|
|
67
|
+
False: 'false',
|
|
68
|
+
};
|
|
69
|
+
exports.KeyphraseOpportunityContentTypeEnum = {
|
|
70
|
+
Product: 'product',
|
|
71
|
+
Collection: 'collection',
|
|
72
|
+
};
|
|
57
73
|
exports.PaymentAccountMethodEnum = {
|
|
58
74
|
Stripe: 'stripe',
|
|
59
75
|
Paypal: 'paypal',
|
|
@@ -209,7 +225,7 @@ const BlogsApiAxiosParamCreator = function (configuration) {
|
|
|
209
225
|
* @param {string} project What project it is
|
|
210
226
|
* @param {number} [pageToken] Page reference token
|
|
211
227
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
212
|
-
* @param {string} [search] Search term to filter results
|
|
228
|
+
* @param {string} [search] 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.
|
|
213
229
|
* @param {*} [options] Override http request option.
|
|
214
230
|
* @throws {RequiredError}
|
|
215
231
|
*/
|
|
@@ -302,7 +318,7 @@ const BlogsApiAxiosParamCreator = function (configuration) {
|
|
|
302
318
|
* @param {string} project What project it is
|
|
303
319
|
* @param {number} [pageToken] Page reference token
|
|
304
320
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
305
|
-
* @param {string} [search] Search term to filter results
|
|
321
|
+
* @param {string} [search] 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.
|
|
306
322
|
* @param {UpdateBlogsRequest} [updateBlogsRequest] Update blogs in bulk.
|
|
307
323
|
* @param {*} [options] Override http request option.
|
|
308
324
|
* @throws {RequiredError}
|
|
@@ -396,7 +412,7 @@ const BlogsApiFp = function (configuration) {
|
|
|
396
412
|
* @param {string} project What project it is
|
|
397
413
|
* @param {number} [pageToken] Page reference token
|
|
398
414
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
399
|
-
* @param {string} [search] Search term to filter results
|
|
415
|
+
* @param {string} [search] 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.
|
|
400
416
|
* @param {*} [options] Override http request option.
|
|
401
417
|
* @throws {RequiredError}
|
|
402
418
|
*/
|
|
@@ -433,7 +449,7 @@ const BlogsApiFp = function (configuration) {
|
|
|
433
449
|
* @param {string} project What project it is
|
|
434
450
|
* @param {number} [pageToken] Page reference token
|
|
435
451
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
436
|
-
* @param {string} [search] Search term to filter results
|
|
452
|
+
* @param {string} [search] 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.
|
|
437
453
|
* @param {UpdateBlogsRequest} [updateBlogsRequest] Update blogs in bulk.
|
|
438
454
|
* @param {*} [options] Override http request option.
|
|
439
455
|
* @throws {RequiredError}
|
|
@@ -1294,12 +1310,12 @@ const KeyphraseOpportunitiesApiAxiosParamCreator = function (configuration) {
|
|
|
1294
1310
|
};
|
|
1295
1311
|
}),
|
|
1296
1312
|
/**
|
|
1297
|
-
* List
|
|
1313
|
+
* List key phrases saved as opportunities for a store. Use search tags to filter by assignment, publication, and optimisation status.
|
|
1298
1314
|
* @summary List key phrase opportunities
|
|
1299
1315
|
* @param {string} project What project it is
|
|
1300
1316
|
* @param {number} [pageToken] Page reference token
|
|
1301
1317
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1302
|
-
* @param {string} [search] Search term to filter results
|
|
1318
|
+
* @param {string} [search] 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.
|
|
1303
1319
|
* @param {*} [options] Override http request option.
|
|
1304
1320
|
* @throws {RequiredError}
|
|
1305
1321
|
*/
|
|
@@ -1369,12 +1385,12 @@ const KeyphraseOpportunitiesApiFp = function (configuration) {
|
|
|
1369
1385
|
});
|
|
1370
1386
|
},
|
|
1371
1387
|
/**
|
|
1372
|
-
* List
|
|
1388
|
+
* List key phrases saved as opportunities for a store. Use search tags to filter by assignment, publication, and optimisation status.
|
|
1373
1389
|
* @summary List key phrase opportunities
|
|
1374
1390
|
* @param {string} project What project it is
|
|
1375
1391
|
* @param {number} [pageToken] Page reference token
|
|
1376
1392
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1377
|
-
* @param {string} [search] Search term to filter results
|
|
1393
|
+
* @param {string} [search] 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.
|
|
1378
1394
|
* @param {*} [options] Override http request option.
|
|
1379
1395
|
* @throws {RequiredError}
|
|
1380
1396
|
*/
|
|
@@ -1407,7 +1423,7 @@ const KeyphraseOpportunitiesApiFactory = function (configuration, basePath, axio
|
|
|
1407
1423
|
return localVarFp.deleteKeyphraseOpportunity(requestParameters.project, requestParameters.keyphraseOpportunityId, options).then((request) => request(axios, basePath));
|
|
1408
1424
|
},
|
|
1409
1425
|
/**
|
|
1410
|
-
* List
|
|
1426
|
+
* List key phrases saved as opportunities for a store. Use search tags to filter by assignment, publication, and optimisation status.
|
|
1411
1427
|
* @summary List key phrase opportunities
|
|
1412
1428
|
* @param {KeyphraseOpportunitiesApiListKeyphraseOpportunitiesRequest} requestParameters Request parameters.
|
|
1413
1429
|
* @param {*} [options] Override http request option.
|
|
@@ -1434,7 +1450,7 @@ class KeyphraseOpportunitiesApi extends base_1.BaseAPI {
|
|
|
1434
1450
|
return (0, exports.KeyphraseOpportunitiesApiFp)(this.configuration).deleteKeyphraseOpportunity(requestParameters.project, requestParameters.keyphraseOpportunityId, options).then((request) => request(this.axios, this.basePath));
|
|
1435
1451
|
}
|
|
1436
1452
|
/**
|
|
1437
|
-
* List
|
|
1453
|
+
* List key phrases saved as opportunities for a store. Use search tags to filter by assignment, publication, and optimisation status.
|
|
1438
1454
|
* @summary List key phrase opportunities
|
|
1439
1455
|
* @param {KeyphraseOpportunitiesApiListKeyphraseOpportunitiesRequest} requestParameters Request parameters.
|
|
1440
1456
|
* @param {*} [options] Override http request option.
|
|
@@ -1716,7 +1732,7 @@ const PagesApiAxiosParamCreator = function (configuration) {
|
|
|
1716
1732
|
* @param {string} project What project it is
|
|
1717
1733
|
* @param {number} [pageToken] Page reference token
|
|
1718
1734
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1719
|
-
* @param {string} [search] Search term to filter results
|
|
1735
|
+
* @param {string} [search] 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.
|
|
1720
1736
|
* @param {*} [options] Override http request option.
|
|
1721
1737
|
* @throws {RequiredError}
|
|
1722
1738
|
*/
|
|
@@ -1849,7 +1865,7 @@ const PagesApiAxiosParamCreator = function (configuration) {
|
|
|
1849
1865
|
* @param {string} project What project it is
|
|
1850
1866
|
* @param {number} [pageToken] Page reference token
|
|
1851
1867
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1852
|
-
* @param {string} [search] Search term to filter results
|
|
1868
|
+
* @param {string} [search] 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.
|
|
1853
1869
|
* @param {UpdatePagesRequest} [updatePagesRequest] Update pages in bulk.
|
|
1854
1870
|
* @param {*} [options] Override http request option.
|
|
1855
1871
|
* @throws {RequiredError}
|
|
@@ -1943,7 +1959,7 @@ const PagesApiFp = function (configuration) {
|
|
|
1943
1959
|
* @param {string} project What project it is
|
|
1944
1960
|
* @param {number} [pageToken] Page reference token
|
|
1945
1961
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1946
|
-
* @param {string} [search] Search term to filter results
|
|
1962
|
+
* @param {string} [search] 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.
|
|
1947
1963
|
* @param {*} [options] Override http request option.
|
|
1948
1964
|
* @throws {RequiredError}
|
|
1949
1965
|
*/
|
|
@@ -1997,7 +2013,7 @@ const PagesApiFp = function (configuration) {
|
|
|
1997
2013
|
* @param {string} project What project it is
|
|
1998
2014
|
* @param {number} [pageToken] Page reference token
|
|
1999
2015
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2000
|
-
* @param {string} [search] Search term to filter results
|
|
2016
|
+
* @param {string} [search] 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.
|
|
2001
2017
|
* @param {UpdatePagesRequest} [updatePagesRequest] Update pages in bulk.
|
|
2002
2018
|
* @param {*} [options] Override http request option.
|
|
2003
2019
|
* @throws {RequiredError}
|
|
@@ -2912,7 +2928,7 @@ const ReviewsApiAxiosParamCreator = function (configuration) {
|
|
|
2912
2928
|
* @param {string} project What project it is
|
|
2913
2929
|
* @param {number} [pageToken] Page reference token
|
|
2914
2930
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2915
|
-
* @param {string} [search] Search term to filter results
|
|
2931
|
+
* @param {string} [search] 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.
|
|
2916
2932
|
* @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
2917
2933
|
* @param {string} [start] Start of date range to filter by
|
|
2918
2934
|
* @param {string} [end] End of date range to filter by
|
|
@@ -3065,7 +3081,7 @@ const ReviewsApiFp = function (configuration) {
|
|
|
3065
3081
|
* @param {string} project What project it is
|
|
3066
3082
|
* @param {number} [pageToken] Page reference token
|
|
3067
3083
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
3068
|
-
* @param {string} [search] Search term to filter results
|
|
3084
|
+
* @param {string} [search] 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.
|
|
3069
3085
|
* @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
3070
3086
|
* @param {string} [start] Start of date range to filter by
|
|
3071
3087
|
* @param {string} [end] End of date range to filter by
|
|
@@ -3208,7 +3224,7 @@ const RoutesApiAxiosParamCreator = function (configuration) {
|
|
|
3208
3224
|
* @param {string} project What project it is
|
|
3209
3225
|
* @param {number} [pageToken] Page reference token
|
|
3210
3226
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
3211
|
-
* @param {string} [search] Search term to filter results
|
|
3227
|
+
* @param {string} [search] 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.
|
|
3212
3228
|
* @param {*} [options] Override http request option.
|
|
3213
3229
|
* @throws {RequiredError}
|
|
3214
3230
|
*/
|
|
@@ -3266,7 +3282,7 @@ const RoutesApiFp = function (configuration) {
|
|
|
3266
3282
|
* @param {string} project What project it is
|
|
3267
3283
|
* @param {number} [pageToken] Page reference token
|
|
3268
3284
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
3269
|
-
* @param {string} [search] Search term to filter results
|
|
3285
|
+
* @param {string} [search] 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.
|
|
3270
3286
|
* @param {*} [options] Override http request option.
|
|
3271
3287
|
* @throws {RequiredError}
|
|
3272
3288
|
*/
|
|
@@ -3328,7 +3344,7 @@ const SearchApiAxiosParamCreator = function (configuration) {
|
|
|
3328
3344
|
* @param {string} project What project it is
|
|
3329
3345
|
* @param {number} [pageToken] Page reference token
|
|
3330
3346
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
3331
|
-
* @param {string} [search] Search term to filter results
|
|
3347
|
+
* @param {string} [search] 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.
|
|
3332
3348
|
* @param {CreateSearchRedirectRequest} [createSearchRedirectRequest] Create search redirect
|
|
3333
3349
|
* @param {*} [options] Override http request option.
|
|
3334
3350
|
* @throws {RequiredError}
|
|
@@ -3462,7 +3478,7 @@ const SearchApiAxiosParamCreator = function (configuration) {
|
|
|
3462
3478
|
* @param {string} project What project it is
|
|
3463
3479
|
* @param {number} [pageToken] Page reference token
|
|
3464
3480
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
3465
|
-
* @param {string} [search] Search term to filter results
|
|
3481
|
+
* @param {string} [search] 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.
|
|
3466
3482
|
* @param {*} [options] Override http request option.
|
|
3467
3483
|
* @throws {RequiredError}
|
|
3468
3484
|
*/
|
|
@@ -3564,7 +3580,7 @@ const SearchApiFp = function (configuration) {
|
|
|
3564
3580
|
* @param {string} project What project it is
|
|
3565
3581
|
* @param {number} [pageToken] Page reference token
|
|
3566
3582
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
3567
|
-
* @param {string} [search] Search term to filter results
|
|
3583
|
+
* @param {string} [search] 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.
|
|
3568
3584
|
* @param {CreateSearchRedirectRequest} [createSearchRedirectRequest] Create search redirect
|
|
3569
3585
|
* @param {*} [options] Override http request option.
|
|
3570
3586
|
* @throws {RequiredError}
|
|
@@ -3618,7 +3634,7 @@ const SearchApiFp = function (configuration) {
|
|
|
3618
3634
|
* @param {string} project What project it is
|
|
3619
3635
|
* @param {number} [pageToken] Page reference token
|
|
3620
3636
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
3621
|
-
* @param {string} [search] Search term to filter results
|
|
3637
|
+
* @param {string} [search] 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.
|
|
3622
3638
|
* @param {*} [options] Override http request option.
|
|
3623
3639
|
* @throws {RequiredError}
|
|
3624
3640
|
*/
|
package/dist/base.d.ts
CHANGED
package/dist/base.js
CHANGED
package/dist/common.d.ts
CHANGED