@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.
@@ -22,14 +22,16 @@ 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
29
28
  docs/Image.md
30
29
  docs/KeyphraseOpportunitiesApi.md
31
30
  docs/KeyphraseOpportunitiesResponse.md
31
+ docs/KeyphraseOpportunitiesResponseMeta.md
32
+ docs/KeyphraseOpportunitiesResponseMetaFilters.md
32
33
  docs/KeyphraseOpportunity.md
34
+ docs/KeyphraseOpportunityContent.md
33
35
  docs/ListDomains200Response.md
34
36
  docs/ListRoutesResponse.md
35
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.32.0
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.32.0 --save
39
+ npm install @teemill/website@0.34.0 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -112,12 +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)
119
+ - [KeyphraseOpportunitiesResponseMeta](docs/KeyphraseOpportunitiesResponseMeta.md)
120
+ - [KeyphraseOpportunitiesResponseMetaFilters](docs/KeyphraseOpportunitiesResponseMetaFilters.md)
120
121
  - [KeyphraseOpportunity](docs/KeyphraseOpportunity.md)
122
+ - [KeyphraseOpportunityContent](docs/KeyphraseOpportunityContent.md)
121
123
  - [ListDomains200Response](docs/ListDomains200Response.md)
122
124
  - [ListRoutesResponse](docs/ListRoutesResponse.md)
123
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.32.0
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
  }
@@ -199,16 +193,98 @@ export interface Image {
199
193
  }
200
194
  export interface KeyphraseOpportunitiesResponse {
201
195
  'keyphraseOpportunities': Array<KeyphraseOpportunity>;
196
+ 'meta': KeyphraseOpportunitiesResponseMeta;
202
197
  /**
203
198
  * The token referencing the next page number
204
199
  */
205
200
  'nextPageToken': number | null;
206
201
  }
202
+ /**
203
+ * Object containing metadata about the keyphrase opportunities list.
204
+ */
205
+ export interface KeyphraseOpportunitiesResponseMeta {
206
+ /**
207
+ * Total number of keyphrase opportunities matching the active phrase search and list filters.
208
+ */
209
+ 'totalPhrases': number;
210
+ /**
211
+ * Combined monthly search volume of keyphrase opportunities matching the active phrase search and list filters.
212
+ */
213
+ 'totalMonthlyVolume': number;
214
+ 'filters': KeyphraseOpportunitiesResponseMetaFilters;
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
+
207
253
  export interface KeyphraseOpportunity {
208
254
  'id': string;
255
+ /**
256
+ * The keyphrase that has been identified as an opportunity
257
+ */
209
258
  'phrase': string;
259
+ /**
260
+ * Monthly search volume for the keyphrase
261
+ */
210
262
  'monthlyVolume': number | null;
263
+ /**
264
+ * Merchandising issues for this key phrase opportunity.
265
+ */
266
+ 'merchIssues': Array<string>;
267
+ 'content': KeyphraseOpportunityContent | null;
211
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
+
212
288
  export interface ListDomains200Response {
213
289
  'domains': Array<Domain>;
214
290
  /**
@@ -1148,7 +1224,7 @@ export const BlogsApiAxiosParamCreator = function (configuration?: Configuration
1148
1224
  * @param {string} project What project it is
1149
1225
  * @param {number} [pageToken] Page reference token
1150
1226
  * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
1151
- * @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.
1152
1228
  * @param {*} [options] Override http request option.
1153
1229
  * @throws {RequiredError}
1154
1230
  */
@@ -1258,7 +1334,7 @@ export const BlogsApiAxiosParamCreator = function (configuration?: Configuration
1258
1334
  * @param {string} project What project it is
1259
1335
  * @param {number} [pageToken] Page reference token
1260
1336
  * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
1261
- * @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.
1262
1338
  * @param {UpdateBlogsRequest} [updateBlogsRequest] Update blogs in bulk.
1263
1339
  * @param {*} [options] Override http request option.
1264
1340
  * @throws {RequiredError}
@@ -1356,7 +1432,7 @@ export const BlogsApiFp = function(configuration?: Configuration) {
1356
1432
  * @param {string} project What project it is
1357
1433
  * @param {number} [pageToken] Page reference token
1358
1434
  * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
1359
- * @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.
1360
1436
  * @param {*} [options] Override http request option.
1361
1437
  * @throws {RequiredError}
1362
1438
  */
@@ -1387,7 +1463,7 @@ export const BlogsApiFp = function(configuration?: Configuration) {
1387
1463
  * @param {string} project What project it is
1388
1464
  * @param {number} [pageToken] Page reference token
1389
1465
  * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
1390
- * @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.
1391
1467
  * @param {UpdateBlogsRequest} [updateBlogsRequest] Update blogs in bulk.
1392
1468
  * @param {*} [options] Override http request option.
1393
1469
  * @throws {RequiredError}
@@ -1505,7 +1581,7 @@ export interface BlogsApiListBlogsRequest {
1505
1581
  readonly pageSize?: number
1506
1582
 
1507
1583
  /**
1508
- * 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.
1509
1585
  */
1510
1586
  readonly search?: string
1511
1587
  }
@@ -1547,7 +1623,7 @@ export interface BlogsApiUpdateBlogsRequest {
1547
1623
  readonly pageSize?: number
1548
1624
 
1549
1625
  /**
1550
- * 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.
1551
1627
  */
1552
1628
  readonly search?: string
1553
1629
 
@@ -2493,12 +2569,12 @@ export const KeyphraseOpportunitiesApiAxiosParamCreator = function (configuratio
2493
2569
  };
2494
2570
  },
2495
2571
  /**
2496
- * 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.
2497
2573
  * @summary List key phrase opportunities
2498
2574
  * @param {string} project What project it is
2499
2575
  * @param {number} [pageToken] Page reference token
2500
2576
  * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
2501
- * @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.
2502
2578
  * @param {*} [options] Override http request option.
2503
2579
  * @throws {RequiredError}
2504
2580
  */
@@ -2575,12 +2651,12 @@ export const KeyphraseOpportunitiesApiFp = function(configuration?: Configuratio
2575
2651
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
2576
2652
  },
2577
2653
  /**
2578
- * 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.
2579
2655
  * @summary List key phrase opportunities
2580
2656
  * @param {string} project What project it is
2581
2657
  * @param {number} [pageToken] Page reference token
2582
2658
  * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
2583
- * @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.
2584
2660
  * @param {*} [options] Override http request option.
2585
2661
  * @throws {RequiredError}
2586
2662
  */
@@ -2610,7 +2686,7 @@ export const KeyphraseOpportunitiesApiFactory = function (configuration?: Config
2610
2686
  return localVarFp.deleteKeyphraseOpportunity(requestParameters.project, requestParameters.keyphraseOpportunityId, options).then((request) => request(axios, basePath));
2611
2687
  },
2612
2688
  /**
2613
- * 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.
2614
2690
  * @summary List key phrase opportunities
2615
2691
  * @param {KeyphraseOpportunitiesApiListKeyphraseOpportunitiesRequest} requestParameters Request parameters.
2616
2692
  * @param {*} [options] Override http request option.
@@ -2657,7 +2733,7 @@ export interface KeyphraseOpportunitiesApiListKeyphraseOpportunitiesRequest {
2657
2733
  readonly pageSize?: number
2658
2734
 
2659
2735
  /**
2660
- * 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.
2661
2737
  */
2662
2738
  readonly search?: string
2663
2739
  }
@@ -2678,7 +2754,7 @@ export class KeyphraseOpportunitiesApi extends BaseAPI {
2678
2754
  }
2679
2755
 
2680
2756
  /**
2681
- * 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.
2682
2758
  * @summary List key phrase opportunities
2683
2759
  * @param {KeyphraseOpportunitiesApiListKeyphraseOpportunitiesRequest} requestParameters Request parameters.
2684
2760
  * @param {*} [options] Override http request option.
@@ -3012,7 +3088,7 @@ export const PagesApiAxiosParamCreator = function (configuration?: Configuration
3012
3088
  * @param {string} project What project it is
3013
3089
  * @param {number} [pageToken] Page reference token
3014
3090
  * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
3015
- * @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.
3016
3092
  * @param {*} [options] Override http request option.
3017
3093
  * @throws {RequiredError}
3018
3094
  */
@@ -3169,7 +3245,7 @@ export const PagesApiAxiosParamCreator = function (configuration?: Configuration
3169
3245
  * @param {string} project What project it is
3170
3246
  * @param {number} [pageToken] Page reference token
3171
3247
  * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
3172
- * @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.
3173
3249
  * @param {UpdatePagesRequest} [updatePagesRequest] Update pages in bulk.
3174
3250
  * @param {*} [options] Override http request option.
3175
3251
  * @throws {RequiredError}
@@ -3267,7 +3343,7 @@ export const PagesApiFp = function(configuration?: Configuration) {
3267
3343
  * @param {string} project What project it is
3268
3344
  * @param {number} [pageToken] Page reference token
3269
3345
  * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
3270
- * @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.
3271
3347
  * @param {*} [options] Override http request option.
3272
3348
  * @throws {RequiredError}
3273
3349
  */
@@ -3312,7 +3388,7 @@ export const PagesApiFp = function(configuration?: Configuration) {
3312
3388
  * @param {string} project What project it is
3313
3389
  * @param {number} [pageToken] Page reference token
3314
3390
  * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
3315
- * @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.
3316
3392
  * @param {UpdatePagesRequest} [updatePagesRequest] Update pages in bulk.
3317
3393
  * @param {*} [options] Override http request option.
3318
3394
  * @throws {RequiredError}
@@ -3440,7 +3516,7 @@ export interface PagesApiListPagesRequest {
3440
3516
  readonly pageSize?: number
3441
3517
 
3442
3518
  /**
3443
- * 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.
3444
3520
  */
3445
3521
  readonly search?: string
3446
3522
  }
@@ -3497,7 +3573,7 @@ export interface PagesApiUpdatePagesRequest {
3497
3573
  readonly pageSize?: number
3498
3574
 
3499
3575
  /**
3500
- * 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.
3501
3577
  */
3502
3578
  readonly search?: string
3503
3579
 
@@ -4496,7 +4572,7 @@ export const ReviewsApiAxiosParamCreator = function (configuration?: Configurati
4496
4572
  * @param {string} project What project it is
4497
4573
  * @param {number} [pageToken] Page reference token
4498
4574
  * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
4499
- * @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.
4500
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.
4501
4577
  * @param {string} [start] Start of date range to filter by
4502
4578
  * @param {string} [end] End of date range to filter by
@@ -4663,7 +4739,7 @@ export const ReviewsApiFp = function(configuration?: Configuration) {
4663
4739
  * @param {string} project What project it is
4664
4740
  * @param {number} [pageToken] Page reference token
4665
4741
  * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
4666
- * @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.
4667
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.
4668
4744
  * @param {string} [start] Start of date range to filter by
4669
4745
  * @param {string} [end] End of date range to filter by
@@ -4798,7 +4874,7 @@ export interface ReviewsApiListReviewsRequest {
4798
4874
  readonly pageSize?: number
4799
4875
 
4800
4876
  /**
4801
- * 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.
4802
4878
  */
4803
4879
  readonly search?: string
4804
4880
 
@@ -4897,7 +4973,7 @@ export const RoutesApiAxiosParamCreator = function (configuration?: Configuratio
4897
4973
  * @param {string} project What project it is
4898
4974
  * @param {number} [pageToken] Page reference token
4899
4975
  * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
4900
- * @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.
4901
4977
  * @param {*} [options] Override http request option.
4902
4978
  * @throws {RequiredError}
4903
4979
  */
@@ -4965,7 +5041,7 @@ export const RoutesApiFp = function(configuration?: Configuration) {
4965
5041
  * @param {string} project What project it is
4966
5042
  * @param {number} [pageToken] Page reference token
4967
5043
  * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
4968
- * @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.
4969
5045
  * @param {*} [options] Override http request option.
4970
5046
  * @throws {RequiredError}
4971
5047
  */
@@ -5017,7 +5093,7 @@ export interface RoutesApiListRoutesRequest {
5017
5093
  readonly pageSize?: number
5018
5094
 
5019
5095
  /**
5020
- * 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.
5021
5097
  */
5022
5098
  readonly search?: string
5023
5099
  }
@@ -5051,7 +5127,7 @@ export const SearchApiAxiosParamCreator = function (configuration?: Configuratio
5051
5127
  * @param {string} project What project it is
5052
5128
  * @param {number} [pageToken] Page reference token
5053
5129
  * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
5054
- * @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.
5055
5131
  * @param {CreateSearchRedirectRequest} [createSearchRedirectRequest] Create search redirect
5056
5132
  * @param {*} [options] Override http request option.
5057
5133
  * @throws {RequiredError}
@@ -5209,7 +5285,7 @@ export const SearchApiAxiosParamCreator = function (configuration?: Configuratio
5209
5285
  * @param {string} project What project it is
5210
5286
  * @param {number} [pageToken] Page reference token
5211
5287
  * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
5212
- * @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.
5213
5289
  * @param {*} [options] Override http request option.
5214
5290
  * @throws {RequiredError}
5215
5291
  */
@@ -5328,7 +5404,7 @@ export const SearchApiFp = function(configuration?: Configuration) {
5328
5404
  * @param {string} project What project it is
5329
5405
  * @param {number} [pageToken] Page reference token
5330
5406
  * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
5331
- * @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.
5332
5408
  * @param {CreateSearchRedirectRequest} [createSearchRedirectRequest] Create search redirect
5333
5409
  * @param {*} [options] Override http request option.
5334
5410
  * @throws {RequiredError}
@@ -5373,7 +5449,7 @@ export const SearchApiFp = function(configuration?: Configuration) {
5373
5449
  * @param {string} project What project it is
5374
5450
  * @param {number} [pageToken] Page reference token
5375
5451
  * @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
5376
- * @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.
5377
5453
  * @param {*} [options] Override http request option.
5378
5454
  * @throws {RequiredError}
5379
5455
  */
@@ -5480,7 +5556,7 @@ export interface SearchApiCreateSearchRedirectRequest {
5480
5556
  readonly pageSize?: number
5481
5557
 
5482
5558
  /**
5483
- * 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.
5484
5560
  */
5485
5561
  readonly search?: string
5486
5562
 
@@ -5540,7 +5616,7 @@ export interface SearchApiListSearchRedirectsRequest {
5540
5616
  readonly pageSize?: number
5541
5617
 
5542
5618
  /**
5543
- * 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.
5544
5620
  */
5545
5621
  readonly search?: string
5546
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.32.0
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.32.0
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.32.0
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).