@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.
@@ -22,7 +22,6 @@ docs/CreateSearchRedirectRequest.md
22
22
  docs/CrossSellApi.md
23
23
  docs/DefaultApi.md
24
24
  docs/Domain.md
25
- docs/ExportPages202Response.md
26
25
  docs/Footer.md
27
26
  docs/FooterApi.md
28
27
  docs/FooterItem.md
@@ -30,7 +29,9 @@ docs/Image.md
30
29
  docs/KeyphraseOpportunitiesApi.md
31
30
  docs/KeyphraseOpportunitiesResponse.md
32
31
  docs/KeyphraseOpportunitiesResponseMeta.md
32
+ docs/KeyphraseOpportunitiesResponseMetaFilters.md
33
33
  docs/KeyphraseOpportunity.md
34
+ docs/KeyphraseOpportunityContent.md
34
35
  docs/ListDomains200Response.md
35
36
  docs/ListRoutesResponse.md
36
37
  docs/Menu.md
@@ -1 +1 @@
1
- 7.22.0
1
+ 7.23.0
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @teemill/website@0.33.1
1
+ ## @teemill/website@0.34.0
2
2
 
3
3
  This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
4
4
 
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
36
36
  _published:_
37
37
 
38
38
  ```
39
- npm install @teemill/website@0.33.1 --save
39
+ npm install @teemill/website@0.34.0 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -112,13 +112,14 @@ Class | Method | HTTP request | Description
112
112
  - [CreateDomainRequest](docs/CreateDomainRequest.md)
113
113
  - [CreateSearchRedirectRequest](docs/CreateSearchRedirectRequest.md)
114
114
  - [Domain](docs/Domain.md)
115
- - [ExportPages202Response](docs/ExportPages202Response.md)
116
115
  - [Footer](docs/Footer.md)
117
116
  - [FooterItem](docs/FooterItem.md)
118
117
  - [Image](docs/Image.md)
119
118
  - [KeyphraseOpportunitiesResponse](docs/KeyphraseOpportunitiesResponse.md)
120
119
  - [KeyphraseOpportunitiesResponseMeta](docs/KeyphraseOpportunitiesResponseMeta.md)
120
+ - [KeyphraseOpportunitiesResponseMetaFilters](docs/KeyphraseOpportunitiesResponseMetaFilters.md)
121
121
  - [KeyphraseOpportunity](docs/KeyphraseOpportunity.md)
122
+ - [KeyphraseOpportunityContent](docs/KeyphraseOpportunityContent.md)
122
123
  - [ListDomains200Response](docs/ListDomains200Response.md)
123
124
  - [ListRoutesResponse](docs/ListRoutesResponse.md)
124
125
  - [Menu](docs/Menu.md)
package/api.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Website
5
5
  * Manage your PodOS Website
6
6
  *
7
- * The version of the OpenAPI document: 0.33.1
7
+ * The version of the OpenAPI document: 0.34.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -163,12 +163,6 @@ export interface Domain {
163
163
  'priority': number;
164
164
  'enabledAt': string | null;
165
165
  }
166
- export interface ExportPages202Response {
167
- /**
168
- * A message describing the export status
169
- */
170
- 'message'?: string;
171
- }
172
166
  export interface Footer {
173
167
  'items': Array<FooterItem>;
174
168
  }
@@ -210,14 +204,52 @@ export interface KeyphraseOpportunitiesResponse {
210
204
  */
211
205
  export interface KeyphraseOpportunitiesResponseMeta {
212
206
  /**
213
- * Total number of unique keyphrases stored against the project.
207
+ * Total number of keyphrase opportunities matching the active phrase search and list filters.
214
208
  */
215
209
  'totalPhrases': number;
216
210
  /**
217
- * Combined monthly volume of all keyphrases stored against the project.
211
+ * Combined monthly search volume of keyphrase opportunities matching the active phrase search and list filters.
218
212
  */
219
213
  'totalMonthlyVolume': number;
214
+ 'filters': KeyphraseOpportunitiesResponseMetaFilters;
220
215
  }
216
+ /**
217
+ * Filters that can be applied to the key phrase opportunities list.
218
+ */
219
+ export interface KeyphraseOpportunitiesResponseMetaFilters {
220
+ /**
221
+ * Filter by whether the key phrase is assigned to content.
222
+ */
223
+ 'assigned': Array<KeyphraseOpportunitiesResponseMetaFiltersAssignedEnum>;
224
+ /**
225
+ * Filter by whether the key phrase is attached to published content.
226
+ */
227
+ 'published': Array<KeyphraseOpportunitiesResponseMetaFiltersPublishedEnum>;
228
+ /**
229
+ * Filter by whether the key phrase is attached to optimised content.
230
+ */
231
+ 'optimised': Array<KeyphraseOpportunitiesResponseMetaFiltersOptimisedEnum>;
232
+ }
233
+
234
+ export const KeyphraseOpportunitiesResponseMetaFiltersAssignedEnum = {
235
+ True: 'true',
236
+ False: 'false',
237
+ } as const;
238
+
239
+ export type KeyphraseOpportunitiesResponseMetaFiltersAssignedEnum = typeof KeyphraseOpportunitiesResponseMetaFiltersAssignedEnum[keyof typeof KeyphraseOpportunitiesResponseMetaFiltersAssignedEnum];
240
+ export const KeyphraseOpportunitiesResponseMetaFiltersPublishedEnum = {
241
+ True: 'true',
242
+ False: 'false',
243
+ } as const;
244
+
245
+ export type KeyphraseOpportunitiesResponseMetaFiltersPublishedEnum = typeof KeyphraseOpportunitiesResponseMetaFiltersPublishedEnum[keyof typeof KeyphraseOpportunitiesResponseMetaFiltersPublishedEnum];
246
+ export const KeyphraseOpportunitiesResponseMetaFiltersOptimisedEnum = {
247
+ True: 'true',
248
+ False: 'false',
249
+ } as const;
250
+
251
+ export type KeyphraseOpportunitiesResponseMetaFiltersOptimisedEnum = typeof KeyphraseOpportunitiesResponseMetaFiltersOptimisedEnum[keyof typeof KeyphraseOpportunitiesResponseMetaFiltersOptimisedEnum];
252
+
221
253
  export interface KeyphraseOpportunity {
222
254
  'id': string;
223
255
  /**
@@ -228,7 +260,31 @@ export interface KeyphraseOpportunity {
228
260
  * Monthly search volume for the keyphrase
229
261
  */
230
262
  'monthlyVolume': number | null;
263
+ /**
264
+ * Merchandising issues for this key phrase opportunity.
265
+ */
266
+ 'merchIssues': Array<string>;
267
+ 'content': KeyphraseOpportunityContent | null;
231
268
  }
269
+ /**
270
+ * Product or collection the key phrase is assigned to.
271
+ */
272
+ export interface KeyphraseOpportunityContent {
273
+ 'type': KeyphraseOpportunityContentTypeEnum;
274
+ 'id': string;
275
+ /**
276
+ * The name of the product or collection
277
+ */
278
+ 'name': string;
279
+ }
280
+
281
+ export const KeyphraseOpportunityContentTypeEnum = {
282
+ Product: 'product',
283
+ Collection: 'collection',
284
+ } as const;
285
+
286
+ export type KeyphraseOpportunityContentTypeEnum = typeof KeyphraseOpportunityContentTypeEnum[keyof typeof KeyphraseOpportunityContentTypeEnum];
287
+
232
288
  export interface ListDomains200Response {
233
289
  'domains': Array<Domain>;
234
290
  /**
@@ -1168,7 +1224,7 @@ export const BlogsApiAxiosParamCreator = function (configuration?: Configuration
1168
1224
  * @param {string} project What project it is
1169
1225
  * @param {number} [pageToken] Page reference token
1170
1226
  * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
1171
- * @param {string} [search] Search term to filter results
1227
+ * @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.
1172
1228
  * @param {*} [options] Override http request option.
1173
1229
  * @throws {RequiredError}
1174
1230
  */
@@ -1278,7 +1334,7 @@ export const BlogsApiAxiosParamCreator = function (configuration?: Configuration
1278
1334
  * @param {string} project What project it is
1279
1335
  * @param {number} [pageToken] Page reference token
1280
1336
  * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
1281
- * @param {string} [search] Search term to filter results
1337
+ * @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.
1282
1338
  * @param {UpdateBlogsRequest} [updateBlogsRequest] Update blogs in bulk.
1283
1339
  * @param {*} [options] Override http request option.
1284
1340
  * @throws {RequiredError}
@@ -1376,7 +1432,7 @@ export const BlogsApiFp = function(configuration?: Configuration) {
1376
1432
  * @param {string} project What project it is
1377
1433
  * @param {number} [pageToken] Page reference token
1378
1434
  * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
1379
- * @param {string} [search] Search term to filter results
1435
+ * @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.
1380
1436
  * @param {*} [options] Override http request option.
1381
1437
  * @throws {RequiredError}
1382
1438
  */
@@ -1407,7 +1463,7 @@ export const BlogsApiFp = function(configuration?: Configuration) {
1407
1463
  * @param {string} project What project it is
1408
1464
  * @param {number} [pageToken] Page reference token
1409
1465
  * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
1410
- * @param {string} [search] Search term to filter results
1466
+ * @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.
1411
1467
  * @param {UpdateBlogsRequest} [updateBlogsRequest] Update blogs in bulk.
1412
1468
  * @param {*} [options] Override http request option.
1413
1469
  * @throws {RequiredError}
@@ -1525,7 +1581,7 @@ export interface BlogsApiListBlogsRequest {
1525
1581
  readonly pageSize?: number
1526
1582
 
1527
1583
  /**
1528
- * Search term to filter results
1584
+ * 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.
1529
1585
  */
1530
1586
  readonly search?: string
1531
1587
  }
@@ -1567,7 +1623,7 @@ export interface BlogsApiUpdateBlogsRequest {
1567
1623
  readonly pageSize?: number
1568
1624
 
1569
1625
  /**
1570
- * Search term to filter results
1626
+ * 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.
1571
1627
  */
1572
1628
  readonly search?: string
1573
1629
 
@@ -2513,12 +2569,12 @@ export const KeyphraseOpportunitiesApiAxiosParamCreator = function (configuratio
2513
2569
  };
2514
2570
  },
2515
2571
  /**
2516
- * List the key phrases saved as opportunities for a store that are not attached to content.
2572
+ * List key phrases saved as opportunities for a store. Use search tags to filter by assignment, publication, and optimisation status.
2517
2573
  * @summary List key phrase opportunities
2518
2574
  * @param {string} project What project it is
2519
2575
  * @param {number} [pageToken] Page reference token
2520
2576
  * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
2521
- * @param {string} [search] Search term to filter results
2577
+ * @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.
2522
2578
  * @param {*} [options] Override http request option.
2523
2579
  * @throws {RequiredError}
2524
2580
  */
@@ -2595,12 +2651,12 @@ export const KeyphraseOpportunitiesApiFp = function(configuration?: Configuratio
2595
2651
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
2596
2652
  },
2597
2653
  /**
2598
- * List the key phrases saved as opportunities for a store that are not attached to content.
2654
+ * List key phrases saved as opportunities for a store. Use search tags to filter by assignment, publication, and optimisation status.
2599
2655
  * @summary List key phrase opportunities
2600
2656
  * @param {string} project What project it is
2601
2657
  * @param {number} [pageToken] Page reference token
2602
2658
  * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
2603
- * @param {string} [search] Search term to filter results
2659
+ * @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.
2604
2660
  * @param {*} [options] Override http request option.
2605
2661
  * @throws {RequiredError}
2606
2662
  */
@@ -2630,7 +2686,7 @@ export const KeyphraseOpportunitiesApiFactory = function (configuration?: Config
2630
2686
  return localVarFp.deleteKeyphraseOpportunity(requestParameters.project, requestParameters.keyphraseOpportunityId, options).then((request) => request(axios, basePath));
2631
2687
  },
2632
2688
  /**
2633
- * List the key phrases saved as opportunities for a store that are not attached to content.
2689
+ * List key phrases saved as opportunities for a store. Use search tags to filter by assignment, publication, and optimisation status.
2634
2690
  * @summary List key phrase opportunities
2635
2691
  * @param {KeyphraseOpportunitiesApiListKeyphraseOpportunitiesRequest} requestParameters Request parameters.
2636
2692
  * @param {*} [options] Override http request option.
@@ -2677,7 +2733,7 @@ export interface KeyphraseOpportunitiesApiListKeyphraseOpportunitiesRequest {
2677
2733
  readonly pageSize?: number
2678
2734
 
2679
2735
  /**
2680
- * Search term to filter results
2736
+ * 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.
2681
2737
  */
2682
2738
  readonly search?: string
2683
2739
  }
@@ -2698,7 +2754,7 @@ export class KeyphraseOpportunitiesApi extends BaseAPI {
2698
2754
  }
2699
2755
 
2700
2756
  /**
2701
- * List the key phrases saved as opportunities for a store that are not attached to content.
2757
+ * List key phrases saved as opportunities for a store. Use search tags to filter by assignment, publication, and optimisation status.
2702
2758
  * @summary List key phrase opportunities
2703
2759
  * @param {KeyphraseOpportunitiesApiListKeyphraseOpportunitiesRequest} requestParameters Request parameters.
2704
2760
  * @param {*} [options] Override http request option.
@@ -3032,7 +3088,7 @@ export const PagesApiAxiosParamCreator = function (configuration?: Configuration
3032
3088
  * @param {string} project What project it is
3033
3089
  * @param {number} [pageToken] Page reference token
3034
3090
  * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
3035
- * @param {string} [search] Search term to filter results
3091
+ * @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.
3036
3092
  * @param {*} [options] Override http request option.
3037
3093
  * @throws {RequiredError}
3038
3094
  */
@@ -3189,7 +3245,7 @@ export const PagesApiAxiosParamCreator = function (configuration?: Configuration
3189
3245
  * @param {string} project What project it is
3190
3246
  * @param {number} [pageToken] Page reference token
3191
3247
  * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
3192
- * @param {string} [search] Search term to filter results
3248
+ * @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.
3193
3249
  * @param {UpdatePagesRequest} [updatePagesRequest] Update pages in bulk.
3194
3250
  * @param {*} [options] Override http request option.
3195
3251
  * @throws {RequiredError}
@@ -3287,7 +3343,7 @@ export const PagesApiFp = function(configuration?: Configuration) {
3287
3343
  * @param {string} project What project it is
3288
3344
  * @param {number} [pageToken] Page reference token
3289
3345
  * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
3290
- * @param {string} [search] Search term to filter results
3346
+ * @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.
3291
3347
  * @param {*} [options] Override http request option.
3292
3348
  * @throws {RequiredError}
3293
3349
  */
@@ -3332,7 +3388,7 @@ export const PagesApiFp = function(configuration?: Configuration) {
3332
3388
  * @param {string} project What project it is
3333
3389
  * @param {number} [pageToken] Page reference token
3334
3390
  * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
3335
- * @param {string} [search] Search term to filter results
3391
+ * @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.
3336
3392
  * @param {UpdatePagesRequest} [updatePagesRequest] Update pages in bulk.
3337
3393
  * @param {*} [options] Override http request option.
3338
3394
  * @throws {RequiredError}
@@ -3460,7 +3516,7 @@ export interface PagesApiListPagesRequest {
3460
3516
  readonly pageSize?: number
3461
3517
 
3462
3518
  /**
3463
- * Search term to filter results
3519
+ * 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.
3464
3520
  */
3465
3521
  readonly search?: string
3466
3522
  }
@@ -3517,7 +3573,7 @@ export interface PagesApiUpdatePagesRequest {
3517
3573
  readonly pageSize?: number
3518
3574
 
3519
3575
  /**
3520
- * Search term to filter results
3576
+ * 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.
3521
3577
  */
3522
3578
  readonly search?: string
3523
3579
 
@@ -4516,7 +4572,7 @@ export const ReviewsApiAxiosParamCreator = function (configuration?: Configurati
4516
4572
  * @param {string} project What project it is
4517
4573
  * @param {number} [pageToken] Page reference token
4518
4574
  * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
4519
- * @param {string} [search] Search term to filter results
4575
+ * @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.
4520
4576
  * @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \&#39;-\&#39; for descending order or \&#39;+\&#39; for ascending. Default is ascending.
4521
4577
  * @param {string} [start] Start of date range to filter by
4522
4578
  * @param {string} [end] End of date range to filter by
@@ -4683,7 +4739,7 @@ export const ReviewsApiFp = function(configuration?: Configuration) {
4683
4739
  * @param {string} project What project it is
4684
4740
  * @param {number} [pageToken] Page reference token
4685
4741
  * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
4686
- * @param {string} [search] Search term to filter results
4742
+ * @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.
4687
4743
  * @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \&#39;-\&#39; for descending order or \&#39;+\&#39; for ascending. Default is ascending.
4688
4744
  * @param {string} [start] Start of date range to filter by
4689
4745
  * @param {string} [end] End of date range to filter by
@@ -4818,7 +4874,7 @@ export interface ReviewsApiListReviewsRequest {
4818
4874
  readonly pageSize?: number
4819
4875
 
4820
4876
  /**
4821
- * Search term to filter results
4877
+ * 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.
4822
4878
  */
4823
4879
  readonly search?: string
4824
4880
 
@@ -4917,7 +4973,7 @@ export const RoutesApiAxiosParamCreator = function (configuration?: Configuratio
4917
4973
  * @param {string} project What project it is
4918
4974
  * @param {number} [pageToken] Page reference token
4919
4975
  * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
4920
- * @param {string} [search] Search term to filter results
4976
+ * @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.
4921
4977
  * @param {*} [options] Override http request option.
4922
4978
  * @throws {RequiredError}
4923
4979
  */
@@ -4985,7 +5041,7 @@ export const RoutesApiFp = function(configuration?: Configuration) {
4985
5041
  * @param {string} project What project it is
4986
5042
  * @param {number} [pageToken] Page reference token
4987
5043
  * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
4988
- * @param {string} [search] Search term to filter results
5044
+ * @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.
4989
5045
  * @param {*} [options] Override http request option.
4990
5046
  * @throws {RequiredError}
4991
5047
  */
@@ -5037,7 +5093,7 @@ export interface RoutesApiListRoutesRequest {
5037
5093
  readonly pageSize?: number
5038
5094
 
5039
5095
  /**
5040
- * Search term to filter results
5096
+ * 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.
5041
5097
  */
5042
5098
  readonly search?: string
5043
5099
  }
@@ -5071,7 +5127,7 @@ export const SearchApiAxiosParamCreator = function (configuration?: Configuratio
5071
5127
  * @param {string} project What project it is
5072
5128
  * @param {number} [pageToken] Page reference token
5073
5129
  * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
5074
- * @param {string} [search] Search term to filter results
5130
+ * @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.
5075
5131
  * @param {CreateSearchRedirectRequest} [createSearchRedirectRequest] Create search redirect
5076
5132
  * @param {*} [options] Override http request option.
5077
5133
  * @throws {RequiredError}
@@ -5229,7 +5285,7 @@ export const SearchApiAxiosParamCreator = function (configuration?: Configuratio
5229
5285
  * @param {string} project What project it is
5230
5286
  * @param {number} [pageToken] Page reference token
5231
5287
  * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
5232
- * @param {string} [search] Search term to filter results
5288
+ * @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.
5233
5289
  * @param {*} [options] Override http request option.
5234
5290
  * @throws {RequiredError}
5235
5291
  */
@@ -5348,7 +5404,7 @@ export const SearchApiFp = function(configuration?: Configuration) {
5348
5404
  * @param {string} project What project it is
5349
5405
  * @param {number} [pageToken] Page reference token
5350
5406
  * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
5351
- * @param {string} [search] Search term to filter results
5407
+ * @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.
5352
5408
  * @param {CreateSearchRedirectRequest} [createSearchRedirectRequest] Create search redirect
5353
5409
  * @param {*} [options] Override http request option.
5354
5410
  * @throws {RequiredError}
@@ -5393,7 +5449,7 @@ export const SearchApiFp = function(configuration?: Configuration) {
5393
5449
  * @param {string} project What project it is
5394
5450
  * @param {number} [pageToken] Page reference token
5395
5451
  * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
5396
- * @param {string} [search] Search term to filter results
5452
+ * @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.
5397
5453
  * @param {*} [options] Override http request option.
5398
5454
  * @throws {RequiredError}
5399
5455
  */
@@ -5500,7 +5556,7 @@ export interface SearchApiCreateSearchRedirectRequest {
5500
5556
  readonly pageSize?: number
5501
5557
 
5502
5558
  /**
5503
- * Search term to filter results
5559
+ * 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.
5504
5560
  */
5505
5561
  readonly search?: string
5506
5562
 
@@ -5560,7 +5616,7 @@ export interface SearchApiListSearchRedirectsRequest {
5560
5616
  readonly pageSize?: number
5561
5617
 
5562
5618
  /**
5563
- * Search term to filter results
5619
+ * 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.
5564
5620
  */
5565
5621
  readonly search?: string
5566
5622
  }
package/base.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Website
5
5
  * Manage your PodOS Website
6
6
  *
7
- * The version of the OpenAPI document: 0.33.1
7
+ * The version of the OpenAPI document: 0.34.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/common.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Website
5
5
  * Manage your PodOS Website
6
6
  *
7
- * The version of the OpenAPI document: 0.33.1
7
+ * The version of the OpenAPI document: 0.34.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/configuration.ts CHANGED
@@ -3,7 +3,7 @@
3
3
  * Website
4
4
  * Manage your PodOS Website
5
5
  *
6
- * The version of the OpenAPI document: 0.33.1
6
+ * The version of the OpenAPI document: 0.34.0
7
7
  *
8
8
  *
9
9
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).