@teemill/website 0.32.0 → 0.34.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.openapi-generator/FILES +3 -1
- package/.openapi-generator/VERSION +1 -1
- package/README.md +5 -3
- package/api.ts +114 -38
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +106 -38
- package/dist/api.js +41 -25
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +106 -38
- package/dist/esm/api.js +39 -23
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/BlogsApi.md +4 -4
- package/docs/KeyphraseOpportunitiesApi.md +4 -4
- package/docs/KeyphraseOpportunitiesResponse.md +2 -0
- package/docs/KeyphraseOpportunitiesResponseMeta.md +25 -0
- package/docs/KeyphraseOpportunitiesResponseMetaFilters.md +25 -0
- package/docs/KeyphraseOpportunity.md +6 -2
- package/docs/KeyphraseOpportunityContent.md +25 -0
- package/docs/PagesApi.md +4 -4
- package/docs/ReviewsApi.md +2 -2
- package/docs/RoutesApi.md +2 -2
- package/docs/SearchApi.md +4 -4
- package/index.ts +1 -1
- package/package.json +1 -1
package/dist/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
|
}
|
|
@@ -182,16 +176,90 @@ export interface Image {
|
|
|
182
176
|
}
|
|
183
177
|
export interface KeyphraseOpportunitiesResponse {
|
|
184
178
|
'keyphraseOpportunities': Array<KeyphraseOpportunity>;
|
|
179
|
+
'meta': KeyphraseOpportunitiesResponseMeta;
|
|
185
180
|
/**
|
|
186
181
|
* The token referencing the next page number
|
|
187
182
|
*/
|
|
188
183
|
'nextPageToken': number | null;
|
|
189
184
|
}
|
|
185
|
+
/**
|
|
186
|
+
* Object containing metadata about the keyphrase opportunities list.
|
|
187
|
+
*/
|
|
188
|
+
export interface KeyphraseOpportunitiesResponseMeta {
|
|
189
|
+
/**
|
|
190
|
+
* Total number of keyphrase opportunities matching the active phrase search and list filters.
|
|
191
|
+
*/
|
|
192
|
+
'totalPhrases': number;
|
|
193
|
+
/**
|
|
194
|
+
* Combined monthly search volume of keyphrase opportunities matching the active phrase search and list filters.
|
|
195
|
+
*/
|
|
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>;
|
|
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];
|
|
190
231
|
export interface KeyphraseOpportunity {
|
|
191
232
|
'id': string;
|
|
233
|
+
/**
|
|
234
|
+
* The keyphrase that has been identified as an opportunity
|
|
235
|
+
*/
|
|
192
236
|
'phrase': string;
|
|
237
|
+
/**
|
|
238
|
+
* Monthly search volume for the keyphrase
|
|
239
|
+
*/
|
|
193
240
|
'monthlyVolume': number | null;
|
|
241
|
+
/**
|
|
242
|
+
* Merchandising issues for this key phrase opportunity.
|
|
243
|
+
*/
|
|
244
|
+
'merchIssues': Array<string>;
|
|
245
|
+
'content': KeyphraseOpportunityContent | null;
|
|
194
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];
|
|
195
263
|
export interface ListDomains200Response {
|
|
196
264
|
'domains': Array<Domain>;
|
|
197
265
|
/**
|
|
@@ -1022,7 +1090,7 @@ export declare const BlogsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
1022
1090
|
* @param {string} project What project it is
|
|
1023
1091
|
* @param {number} [pageToken] Page reference token
|
|
1024
1092
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1025
|
-
* @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.
|
|
1026
1094
|
* @param {*} [options] Override http request option.
|
|
1027
1095
|
* @throws {RequiredError}
|
|
1028
1096
|
*/
|
|
@@ -1043,7 +1111,7 @@ export declare const BlogsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
1043
1111
|
* @param {string} project What project it is
|
|
1044
1112
|
* @param {number} [pageToken] Page reference token
|
|
1045
1113
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1046
|
-
* @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.
|
|
1047
1115
|
* @param {UpdateBlogsRequest} [updateBlogsRequest] Update blogs in bulk.
|
|
1048
1116
|
* @param {*} [options] Override http request option.
|
|
1049
1117
|
* @throws {RequiredError}
|
|
@@ -1077,7 +1145,7 @@ export declare const BlogsApiFp: (configuration?: Configuration) => {
|
|
|
1077
1145
|
* @param {string} project What project it is
|
|
1078
1146
|
* @param {number} [pageToken] Page reference token
|
|
1079
1147
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1080
|
-
* @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.
|
|
1081
1149
|
* @param {*} [options] Override http request option.
|
|
1082
1150
|
* @throws {RequiredError}
|
|
1083
1151
|
*/
|
|
@@ -1098,7 +1166,7 @@ export declare const BlogsApiFp: (configuration?: Configuration) => {
|
|
|
1098
1166
|
* @param {string} project What project it is
|
|
1099
1167
|
* @param {number} [pageToken] Page reference token
|
|
1100
1168
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1101
|
-
* @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.
|
|
1102
1170
|
* @param {UpdateBlogsRequest} [updateBlogsRequest] Update blogs in bulk.
|
|
1103
1171
|
* @param {*} [options] Override http request option.
|
|
1104
1172
|
* @throws {RequiredError}
|
|
@@ -1189,7 +1257,7 @@ export interface BlogsApiListBlogsRequest {
|
|
|
1189
1257
|
*/
|
|
1190
1258
|
readonly pageSize?: number;
|
|
1191
1259
|
/**
|
|
1192
|
-
* 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.
|
|
1193
1261
|
*/
|
|
1194
1262
|
readonly search?: string;
|
|
1195
1263
|
}
|
|
@@ -1224,7 +1292,7 @@ export interface BlogsApiUpdateBlogsRequest {
|
|
|
1224
1292
|
*/
|
|
1225
1293
|
readonly pageSize?: number;
|
|
1226
1294
|
/**
|
|
1227
|
-
* 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.
|
|
1228
1296
|
*/
|
|
1229
1297
|
readonly search?: string;
|
|
1230
1298
|
/**
|
|
@@ -1706,12 +1774,12 @@ export declare const KeyphraseOpportunitiesApiAxiosParamCreator: (configuration?
|
|
|
1706
1774
|
*/
|
|
1707
1775
|
deleteKeyphraseOpportunity: (project: string, keyphraseOpportunityId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
1708
1776
|
/**
|
|
1709
|
-
* List
|
|
1777
|
+
* List key phrases saved as opportunities for a store. Use search tags to filter by assignment, publication, and optimisation status.
|
|
1710
1778
|
* @summary List key phrase opportunities
|
|
1711
1779
|
* @param {string} project What project it is
|
|
1712
1780
|
* @param {number} [pageToken] Page reference token
|
|
1713
1781
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1714
|
-
* @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.
|
|
1715
1783
|
* @param {*} [options] Override http request option.
|
|
1716
1784
|
* @throws {RequiredError}
|
|
1717
1785
|
*/
|
|
@@ -1731,12 +1799,12 @@ export declare const KeyphraseOpportunitiesApiFp: (configuration?: Configuration
|
|
|
1731
1799
|
*/
|
|
1732
1800
|
deleteKeyphraseOpportunity(project: string, keyphraseOpportunityId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
1733
1801
|
/**
|
|
1734
|
-
* List
|
|
1802
|
+
* List key phrases saved as opportunities for a store. Use search tags to filter by assignment, publication, and optimisation status.
|
|
1735
1803
|
* @summary List key phrase opportunities
|
|
1736
1804
|
* @param {string} project What project it is
|
|
1737
1805
|
* @param {number} [pageToken] Page reference token
|
|
1738
1806
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1739
|
-
* @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.
|
|
1740
1808
|
* @param {*} [options] Override http request option.
|
|
1741
1809
|
* @throws {RequiredError}
|
|
1742
1810
|
*/
|
|
@@ -1755,7 +1823,7 @@ export declare const KeyphraseOpportunitiesApiFactory: (configuration?: Configur
|
|
|
1755
1823
|
*/
|
|
1756
1824
|
deleteKeyphraseOpportunity(requestParameters: KeyphraseOpportunitiesApiDeleteKeyphraseOpportunityRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
1757
1825
|
/**
|
|
1758
|
-
* List
|
|
1826
|
+
* List key phrases saved as opportunities for a store. Use search tags to filter by assignment, publication, and optimisation status.
|
|
1759
1827
|
* @summary List key phrase opportunities
|
|
1760
1828
|
* @param {KeyphraseOpportunitiesApiListKeyphraseOpportunitiesRequest} requestParameters Request parameters.
|
|
1761
1829
|
* @param {*} [options] Override http request option.
|
|
@@ -1793,7 +1861,7 @@ export interface KeyphraseOpportunitiesApiListKeyphraseOpportunitiesRequest {
|
|
|
1793
1861
|
*/
|
|
1794
1862
|
readonly pageSize?: number;
|
|
1795
1863
|
/**
|
|
1796
|
-
* 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.
|
|
1797
1865
|
*/
|
|
1798
1866
|
readonly search?: string;
|
|
1799
1867
|
}
|
|
@@ -1810,7 +1878,7 @@ export declare class KeyphraseOpportunitiesApi extends BaseAPI {
|
|
|
1810
1878
|
*/
|
|
1811
1879
|
deleteKeyphraseOpportunity(requestParameters: KeyphraseOpportunitiesApiDeleteKeyphraseOpportunityRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
1812
1880
|
/**
|
|
1813
|
-
* List
|
|
1881
|
+
* List key phrases saved as opportunities for a store. Use search tags to filter by assignment, publication, and optimisation status.
|
|
1814
1882
|
* @summary List key phrase opportunities
|
|
1815
1883
|
* @param {KeyphraseOpportunitiesApiListKeyphraseOpportunitiesRequest} requestParameters Request parameters.
|
|
1816
1884
|
* @param {*} [options] Override http request option.
|
|
@@ -1953,7 +2021,7 @@ export declare const PagesApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
1953
2021
|
* @param {string} project What project it is
|
|
1954
2022
|
* @param {number} [pageToken] Page reference token
|
|
1955
2023
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1956
|
-
* @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.
|
|
1957
2025
|
* @param {*} [options] Override http request option.
|
|
1958
2026
|
* @throws {RequiredError}
|
|
1959
2027
|
*/
|
|
@@ -1983,7 +2051,7 @@ export declare const PagesApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
1983
2051
|
* @param {string} project What project it is
|
|
1984
2052
|
* @param {number} [pageToken] Page reference token
|
|
1985
2053
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1986
|
-
* @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.
|
|
1987
2055
|
* @param {UpdatePagesRequest} [updatePagesRequest] Update pages in bulk.
|
|
1988
2056
|
* @param {*} [options] Override http request option.
|
|
1989
2057
|
* @throws {RequiredError}
|
|
@@ -2017,7 +2085,7 @@ export declare const PagesApiFp: (configuration?: Configuration) => {
|
|
|
2017
2085
|
* @param {string} project What project it is
|
|
2018
2086
|
* @param {number} [pageToken] Page reference token
|
|
2019
2087
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2020
|
-
* @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.
|
|
2021
2089
|
* @param {*} [options] Override http request option.
|
|
2022
2090
|
* @throws {RequiredError}
|
|
2023
2091
|
*/
|
|
@@ -2047,7 +2115,7 @@ export declare const PagesApiFp: (configuration?: Configuration) => {
|
|
|
2047
2115
|
* @param {string} project What project it is
|
|
2048
2116
|
* @param {number} [pageToken] Page reference token
|
|
2049
2117
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2050
|
-
* @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.
|
|
2051
2119
|
* @param {UpdatePagesRequest} [updatePagesRequest] Update pages in bulk.
|
|
2052
2120
|
* @param {*} [options] Override http request option.
|
|
2053
2121
|
* @throws {RequiredError}
|
|
@@ -2146,7 +2214,7 @@ export interface PagesApiListPagesRequest {
|
|
|
2146
2214
|
*/
|
|
2147
2215
|
readonly pageSize?: number;
|
|
2148
2216
|
/**
|
|
2149
|
-
* 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.
|
|
2150
2218
|
*/
|
|
2151
2219
|
readonly search?: string;
|
|
2152
2220
|
}
|
|
@@ -2194,7 +2262,7 @@ export interface PagesApiUpdatePagesRequest {
|
|
|
2194
2262
|
*/
|
|
2195
2263
|
readonly pageSize?: number;
|
|
2196
2264
|
/**
|
|
2197
|
-
* 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.
|
|
2198
2266
|
*/
|
|
2199
2267
|
readonly search?: string;
|
|
2200
2268
|
/**
|
|
@@ -2670,7 +2738,7 @@ export declare const ReviewsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
2670
2738
|
* @param {string} project What project it is
|
|
2671
2739
|
* @param {number} [pageToken] Page reference token
|
|
2672
2740
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2673
|
-
* @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.
|
|
2674
2742
|
* @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
2675
2743
|
* @param {string} [start] Start of date range to filter by
|
|
2676
2744
|
* @param {string} [end] End of date range to filter by
|
|
@@ -2718,7 +2786,7 @@ export declare const ReviewsApiFp: (configuration?: Configuration) => {
|
|
|
2718
2786
|
* @param {string} project What project it is
|
|
2719
2787
|
* @param {number} [pageToken] Page reference token
|
|
2720
2788
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2721
|
-
* @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.
|
|
2722
2790
|
* @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
2723
2791
|
* @param {string} [start] Start of date range to filter by
|
|
2724
2792
|
* @param {string} [end] End of date range to filter by
|
|
@@ -2821,7 +2889,7 @@ export interface ReviewsApiListReviewsRequest {
|
|
|
2821
2889
|
*/
|
|
2822
2890
|
readonly pageSize?: number;
|
|
2823
2891
|
/**
|
|
2824
|
-
* 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.
|
|
2825
2893
|
*/
|
|
2826
2894
|
readonly search?: string;
|
|
2827
2895
|
/**
|
|
@@ -2898,7 +2966,7 @@ export declare const RoutesApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
2898
2966
|
* @param {string} project What project it is
|
|
2899
2967
|
* @param {number} [pageToken] Page reference token
|
|
2900
2968
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2901
|
-
* @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.
|
|
2902
2970
|
* @param {*} [options] Override http request option.
|
|
2903
2971
|
* @throws {RequiredError}
|
|
2904
2972
|
*/
|
|
@@ -2914,7 +2982,7 @@ export declare const RoutesApiFp: (configuration?: Configuration) => {
|
|
|
2914
2982
|
* @param {string} project What project it is
|
|
2915
2983
|
* @param {number} [pageToken] Page reference token
|
|
2916
2984
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2917
|
-
* @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.
|
|
2918
2986
|
* @param {*} [options] Override http request option.
|
|
2919
2987
|
* @throws {RequiredError}
|
|
2920
2988
|
*/
|
|
@@ -2950,7 +3018,7 @@ export interface RoutesApiListRoutesRequest {
|
|
|
2950
3018
|
*/
|
|
2951
3019
|
readonly pageSize?: number;
|
|
2952
3020
|
/**
|
|
2953
|
-
* 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.
|
|
2954
3022
|
*/
|
|
2955
3023
|
readonly search?: string;
|
|
2956
3024
|
}
|
|
@@ -2977,7 +3045,7 @@ export declare const SearchApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
2977
3045
|
* @param {string} project What project it is
|
|
2978
3046
|
* @param {number} [pageToken] Page reference token
|
|
2979
3047
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2980
|
-
* @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.
|
|
2981
3049
|
* @param {CreateSearchRedirectRequest} [createSearchRedirectRequest] Create search redirect
|
|
2982
3050
|
* @param {*} [options] Override http request option.
|
|
2983
3051
|
* @throws {RequiredError}
|
|
@@ -3007,7 +3075,7 @@ export declare const SearchApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
3007
3075
|
* @param {string} project What project it is
|
|
3008
3076
|
* @param {number} [pageToken] Page reference token
|
|
3009
3077
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
3010
|
-
* @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.
|
|
3011
3079
|
* @param {*} [options] Override http request option.
|
|
3012
3080
|
* @throws {RequiredError}
|
|
3013
3081
|
*/
|
|
@@ -3033,7 +3101,7 @@ export declare const SearchApiFp: (configuration?: Configuration) => {
|
|
|
3033
3101
|
* @param {string} project What project it is
|
|
3034
3102
|
* @param {number} [pageToken] Page reference token
|
|
3035
3103
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
3036
|
-
* @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.
|
|
3037
3105
|
* @param {CreateSearchRedirectRequest} [createSearchRedirectRequest] Create search redirect
|
|
3038
3106
|
* @param {*} [options] Override http request option.
|
|
3039
3107
|
* @throws {RequiredError}
|
|
@@ -3063,7 +3131,7 @@ export declare const SearchApiFp: (configuration?: Configuration) => {
|
|
|
3063
3131
|
* @param {string} project What project it is
|
|
3064
3132
|
* @param {number} [pageToken] Page reference token
|
|
3065
3133
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
3066
|
-
* @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.
|
|
3067
3135
|
* @param {*} [options] Override http request option.
|
|
3068
3136
|
* @throws {RequiredError}
|
|
3069
3137
|
*/
|
|
@@ -3141,7 +3209,7 @@ export interface SearchApiCreateSearchRedirectRequest {
|
|
|
3141
3209
|
*/
|
|
3142
3210
|
readonly pageSize?: number;
|
|
3143
3211
|
/**
|
|
3144
|
-
* 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.
|
|
3145
3213
|
*/
|
|
3146
3214
|
readonly search?: string;
|
|
3147
3215
|
/**
|
|
@@ -3192,7 +3260,7 @@ export interface SearchApiListSearchRedirectsRequest {
|
|
|
3192
3260
|
*/
|
|
3193
3261
|
readonly pageSize?: number;
|
|
3194
3262
|
/**
|
|
3195
|
-
* 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.
|
|
3196
3264
|
*/
|
|
3197
3265
|
readonly search?: string;
|
|
3198
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