@teemill/website 0.37.0 → 0.37.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/api.ts +58 -28
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +55 -28
- package/dist/api.js +33 -21
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +55 -28
- package/dist/esm/api.js +31 -19
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/BlogsApi.md +4 -4
- package/docs/KeyphraseOpportunitiesApi.md +2 -2
- package/docs/KeyphraseOpportunitiesResponseMetaFilters.md +6 -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/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @teemill/website@0.37.
|
|
1
|
+
## @teemill/website@0.37.1
|
|
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.37.
|
|
39
|
+
npm install @teemill/website@0.37.1 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
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.37.
|
|
7
|
+
* The version of the OpenAPI document: 0.37.1
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -235,6 +235,18 @@ export interface KeyphraseOpportunitiesResponseMetaFilters {
|
|
|
235
235
|
* Filter by whether the keyphrase is attached to optimised content.
|
|
236
236
|
*/
|
|
237
237
|
'optimised': Array<KeyphraseOpportunitiesResponseMetaFiltersOptimisedEnum>;
|
|
238
|
+
/**
|
|
239
|
+
* Filter by whether the keyphrase is assigned to a collection with fewer than 12 products.
|
|
240
|
+
*/
|
|
241
|
+
'sparseCollection'?: Array<KeyphraseOpportunitiesResponseMetaFiltersSparseCollectionEnum>;
|
|
242
|
+
/**
|
|
243
|
+
* Filter by the type of content the keyphrase is assigned to.
|
|
244
|
+
*/
|
|
245
|
+
'assignedContentType'?: Array<KeyphraseOpportunitiesResponseMetaFiltersAssignedContentTypeEnum>;
|
|
246
|
+
/**
|
|
247
|
+
* Filter by the suggested content type for the keyphrase opportunity.
|
|
248
|
+
*/
|
|
249
|
+
'suggestedContentType'?: Array<KeyphraseOpportunitiesResponseMetaFiltersSuggestedContentTypeEnum>;
|
|
238
250
|
}
|
|
239
251
|
|
|
240
252
|
export const KeyphraseOpportunitiesResponseMetaFiltersAssignedEnum = {
|
|
@@ -255,6 +267,24 @@ export const KeyphraseOpportunitiesResponseMetaFiltersOptimisedEnum = {
|
|
|
255
267
|
} as const;
|
|
256
268
|
|
|
257
269
|
export type KeyphraseOpportunitiesResponseMetaFiltersOptimisedEnum = typeof KeyphraseOpportunitiesResponseMetaFiltersOptimisedEnum[keyof typeof KeyphraseOpportunitiesResponseMetaFiltersOptimisedEnum];
|
|
270
|
+
export const KeyphraseOpportunitiesResponseMetaFiltersSparseCollectionEnum = {
|
|
271
|
+
True: 'true',
|
|
272
|
+
False: 'false',
|
|
273
|
+
} as const;
|
|
274
|
+
|
|
275
|
+
export type KeyphraseOpportunitiesResponseMetaFiltersSparseCollectionEnum = typeof KeyphraseOpportunitiesResponseMetaFiltersSparseCollectionEnum[keyof typeof KeyphraseOpportunitiesResponseMetaFiltersSparseCollectionEnum];
|
|
276
|
+
export const KeyphraseOpportunitiesResponseMetaFiltersAssignedContentTypeEnum = {
|
|
277
|
+
Product: 'product',
|
|
278
|
+
Collection: 'collection',
|
|
279
|
+
} as const;
|
|
280
|
+
|
|
281
|
+
export type KeyphraseOpportunitiesResponseMetaFiltersAssignedContentTypeEnum = typeof KeyphraseOpportunitiesResponseMetaFiltersAssignedContentTypeEnum[keyof typeof KeyphraseOpportunitiesResponseMetaFiltersAssignedContentTypeEnum];
|
|
282
|
+
export const KeyphraseOpportunitiesResponseMetaFiltersSuggestedContentTypeEnum = {
|
|
283
|
+
Product: 'product',
|
|
284
|
+
Collection: 'collection',
|
|
285
|
+
} as const;
|
|
286
|
+
|
|
287
|
+
export type KeyphraseOpportunitiesResponseMetaFiltersSuggestedContentTypeEnum = typeof KeyphraseOpportunitiesResponseMetaFiltersSuggestedContentTypeEnum[keyof typeof KeyphraseOpportunitiesResponseMetaFiltersSuggestedContentTypeEnum];
|
|
258
288
|
|
|
259
289
|
export interface KeyphraseOpportunity {
|
|
260
290
|
'id': string;
|
|
@@ -1233,7 +1263,7 @@ export const BlogsApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
1233
1263
|
* @param {string} project What project it is
|
|
1234
1264
|
* @param {number} [pageToken] Page reference token
|
|
1235
1265
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1236
|
-
* @param {string} [search] Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false organic shirts. Multiple filters can be combined with spaces and commas.
|
|
1266
|
+
* @param {string} [search] Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false sparseCollection:true assignedContentType:product suggestedContentType:product,collection organic shirts. Multiple filters can be combined with spaces and commas.
|
|
1237
1267
|
* @param {*} [options] Override http request option.
|
|
1238
1268
|
* @throws {RequiredError}
|
|
1239
1269
|
*/
|
|
@@ -1343,7 +1373,7 @@ export const BlogsApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
1343
1373
|
* @param {string} project What project it is
|
|
1344
1374
|
* @param {number} [pageToken] Page reference token
|
|
1345
1375
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1346
|
-
* @param {string} [search] Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false organic shirts. Multiple filters can be combined with spaces and commas.
|
|
1376
|
+
* @param {string} [search] Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false sparseCollection:true assignedContentType:product suggestedContentType:product,collection organic shirts. Multiple filters can be combined with spaces and commas.
|
|
1347
1377
|
* @param {UpdateBlogsRequest} [updateBlogsRequest] Update blogs in bulk.
|
|
1348
1378
|
* @param {*} [options] Override http request option.
|
|
1349
1379
|
* @throws {RequiredError}
|
|
@@ -1441,7 +1471,7 @@ export const BlogsApiFp = function(configuration?: Configuration) {
|
|
|
1441
1471
|
* @param {string} project What project it is
|
|
1442
1472
|
* @param {number} [pageToken] Page reference token
|
|
1443
1473
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1444
|
-
* @param {string} [search] Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false organic shirts. Multiple filters can be combined with spaces and commas.
|
|
1474
|
+
* @param {string} [search] Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false sparseCollection:true assignedContentType:product suggestedContentType:product,collection organic shirts. Multiple filters can be combined with spaces and commas.
|
|
1445
1475
|
* @param {*} [options] Override http request option.
|
|
1446
1476
|
* @throws {RequiredError}
|
|
1447
1477
|
*/
|
|
@@ -1472,7 +1502,7 @@ export const BlogsApiFp = function(configuration?: Configuration) {
|
|
|
1472
1502
|
* @param {string} project What project it is
|
|
1473
1503
|
* @param {number} [pageToken] Page reference token
|
|
1474
1504
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1475
|
-
* @param {string} [search] Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false organic shirts. Multiple filters can be combined with spaces and commas.
|
|
1505
|
+
* @param {string} [search] Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false sparseCollection:true assignedContentType:product suggestedContentType:product,collection organic shirts. Multiple filters can be combined with spaces and commas.
|
|
1476
1506
|
* @param {UpdateBlogsRequest} [updateBlogsRequest] Update blogs in bulk.
|
|
1477
1507
|
* @param {*} [options] Override http request option.
|
|
1478
1508
|
* @throws {RequiredError}
|
|
@@ -1590,7 +1620,7 @@ export interface BlogsApiListBlogsRequest {
|
|
|
1590
1620
|
readonly pageSize?: number
|
|
1591
1621
|
|
|
1592
1622
|
/**
|
|
1593
|
-
* Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false organic shirts. Multiple filters can be combined with spaces and commas.
|
|
1623
|
+
* Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false sparseCollection:true assignedContentType:product suggestedContentType:product,collection organic shirts. Multiple filters can be combined with spaces and commas.
|
|
1594
1624
|
*/
|
|
1595
1625
|
readonly search?: string
|
|
1596
1626
|
}
|
|
@@ -1632,7 +1662,7 @@ export interface BlogsApiUpdateBlogsRequest {
|
|
|
1632
1662
|
readonly pageSize?: number
|
|
1633
1663
|
|
|
1634
1664
|
/**
|
|
1635
|
-
* Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false organic shirts. Multiple filters can be combined with spaces and commas.
|
|
1665
|
+
* Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false sparseCollection:true assignedContentType:product suggestedContentType:product,collection organic shirts. Multiple filters can be combined with spaces and commas.
|
|
1636
1666
|
*/
|
|
1637
1667
|
readonly search?: string
|
|
1638
1668
|
|
|
@@ -2631,7 +2661,7 @@ export const KeyphraseOpportunitiesApiAxiosParamCreator = function (configuratio
|
|
|
2631
2661
|
* @param {string} project What project it is
|
|
2632
2662
|
* @param {number} [pageToken] Page reference token
|
|
2633
2663
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2634
|
-
* @param {string} [search] Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false organic shirts. Multiple filters can be combined with spaces and commas.
|
|
2664
|
+
* @param {string} [search] Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false sparseCollection:true assignedContentType:product suggestedContentType:product,collection organic shirts. Multiple filters can be combined with spaces and commas.
|
|
2635
2665
|
* @param {*} [options] Override http request option.
|
|
2636
2666
|
* @throws {RequiredError}
|
|
2637
2667
|
*/
|
|
@@ -2775,7 +2805,7 @@ export const KeyphraseOpportunitiesApiFp = function(configuration?: Configuratio
|
|
|
2775
2805
|
* @param {string} project What project it is
|
|
2776
2806
|
* @param {number} [pageToken] Page reference token
|
|
2777
2807
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2778
|
-
* @param {string} [search] Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false organic shirts. Multiple filters can be combined with spaces and commas.
|
|
2808
|
+
* @param {string} [search] Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false sparseCollection:true assignedContentType:product suggestedContentType:product,collection organic shirts. Multiple filters can be combined with spaces and commas.
|
|
2779
2809
|
* @param {*} [options] Override http request option.
|
|
2780
2810
|
* @throws {RequiredError}
|
|
2781
2811
|
*/
|
|
@@ -2901,7 +2931,7 @@ export interface KeyphraseOpportunitiesApiListKeyphraseOpportunitiesRequest {
|
|
|
2901
2931
|
readonly pageSize?: number
|
|
2902
2932
|
|
|
2903
2933
|
/**
|
|
2904
|
-
* Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false organic shirts. Multiple filters can be combined with spaces and commas.
|
|
2934
|
+
* Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false sparseCollection:true assignedContentType:product suggestedContentType:product,collection organic shirts. Multiple filters can be combined with spaces and commas.
|
|
2905
2935
|
*/
|
|
2906
2936
|
readonly search?: string
|
|
2907
2937
|
}
|
|
@@ -3293,7 +3323,7 @@ export const PagesApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
3293
3323
|
* @param {string} project What project it is
|
|
3294
3324
|
* @param {number} [pageToken] Page reference token
|
|
3295
3325
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
3296
|
-
* @param {string} [search] Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false organic shirts. Multiple filters can be combined with spaces and commas.
|
|
3326
|
+
* @param {string} [search] Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false sparseCollection:true assignedContentType:product suggestedContentType:product,collection organic shirts. Multiple filters can be combined with spaces and commas.
|
|
3297
3327
|
* @param {*} [options] Override http request option.
|
|
3298
3328
|
* @throws {RequiredError}
|
|
3299
3329
|
*/
|
|
@@ -3450,7 +3480,7 @@ export const PagesApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
3450
3480
|
* @param {string} project What project it is
|
|
3451
3481
|
* @param {number} [pageToken] Page reference token
|
|
3452
3482
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
3453
|
-
* @param {string} [search] Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false organic shirts. Multiple filters can be combined with spaces and commas.
|
|
3483
|
+
* @param {string} [search] Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false sparseCollection:true assignedContentType:product suggestedContentType:product,collection organic shirts. Multiple filters can be combined with spaces and commas.
|
|
3454
3484
|
* @param {UpdatePagesRequest} [updatePagesRequest] Update pages in bulk.
|
|
3455
3485
|
* @param {*} [options] Override http request option.
|
|
3456
3486
|
* @throws {RequiredError}
|
|
@@ -3548,7 +3578,7 @@ export const PagesApiFp = function(configuration?: Configuration) {
|
|
|
3548
3578
|
* @param {string} project What project it is
|
|
3549
3579
|
* @param {number} [pageToken] Page reference token
|
|
3550
3580
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
3551
|
-
* @param {string} [search] Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false organic shirts. Multiple filters can be combined with spaces and commas.
|
|
3581
|
+
* @param {string} [search] Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false sparseCollection:true assignedContentType:product suggestedContentType:product,collection organic shirts. Multiple filters can be combined with spaces and commas.
|
|
3552
3582
|
* @param {*} [options] Override http request option.
|
|
3553
3583
|
* @throws {RequiredError}
|
|
3554
3584
|
*/
|
|
@@ -3593,7 +3623,7 @@ export const PagesApiFp = function(configuration?: Configuration) {
|
|
|
3593
3623
|
* @param {string} project What project it is
|
|
3594
3624
|
* @param {number} [pageToken] Page reference token
|
|
3595
3625
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
3596
|
-
* @param {string} [search] Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false organic shirts. Multiple filters can be combined with spaces and commas.
|
|
3626
|
+
* @param {string} [search] Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false sparseCollection:true assignedContentType:product suggestedContentType:product,collection organic shirts. Multiple filters can be combined with spaces and commas.
|
|
3597
3627
|
* @param {UpdatePagesRequest} [updatePagesRequest] Update pages in bulk.
|
|
3598
3628
|
* @param {*} [options] Override http request option.
|
|
3599
3629
|
* @throws {RequiredError}
|
|
@@ -3721,7 +3751,7 @@ export interface PagesApiListPagesRequest {
|
|
|
3721
3751
|
readonly pageSize?: number
|
|
3722
3752
|
|
|
3723
3753
|
/**
|
|
3724
|
-
* Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false organic shirts. Multiple filters can be combined with spaces and commas.
|
|
3754
|
+
* Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false sparseCollection:true assignedContentType:product suggestedContentType:product,collection organic shirts. Multiple filters can be combined with spaces and commas.
|
|
3725
3755
|
*/
|
|
3726
3756
|
readonly search?: string
|
|
3727
3757
|
}
|
|
@@ -3778,7 +3808,7 @@ export interface PagesApiUpdatePagesRequest {
|
|
|
3778
3808
|
readonly pageSize?: number
|
|
3779
3809
|
|
|
3780
3810
|
/**
|
|
3781
|
-
* Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false organic shirts. Multiple filters can be combined with spaces and commas.
|
|
3811
|
+
* Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false sparseCollection:true assignedContentType:product suggestedContentType:product,collection organic shirts. Multiple filters can be combined with spaces and commas.
|
|
3782
3812
|
*/
|
|
3783
3813
|
readonly search?: string
|
|
3784
3814
|
|
|
@@ -4777,7 +4807,7 @@ export const ReviewsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
4777
4807
|
* @param {string} project What project it is
|
|
4778
4808
|
* @param {number} [pageToken] Page reference token
|
|
4779
4809
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
4780
|
-
* @param {string} [search] Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false organic shirts. Multiple filters can be combined with spaces and commas.
|
|
4810
|
+
* @param {string} [search] Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false sparseCollection:true assignedContentType:product suggestedContentType:product,collection organic shirts. Multiple filters can be combined with spaces and commas.
|
|
4781
4811
|
* @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
4782
4812
|
* @param {string} [start] Start of date range to filter by
|
|
4783
4813
|
* @param {string} [end] End of date range to filter by
|
|
@@ -4944,7 +4974,7 @@ export const ReviewsApiFp = function(configuration?: Configuration) {
|
|
|
4944
4974
|
* @param {string} project What project it is
|
|
4945
4975
|
* @param {number} [pageToken] Page reference token
|
|
4946
4976
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
4947
|
-
* @param {string} [search] Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false organic shirts. Multiple filters can be combined with spaces and commas.
|
|
4977
|
+
* @param {string} [search] Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false sparseCollection:true assignedContentType:product suggestedContentType:product,collection organic shirts. Multiple filters can be combined with spaces and commas.
|
|
4948
4978
|
* @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
4949
4979
|
* @param {string} [start] Start of date range to filter by
|
|
4950
4980
|
* @param {string} [end] End of date range to filter by
|
|
@@ -5079,7 +5109,7 @@ export interface ReviewsApiListReviewsRequest {
|
|
|
5079
5109
|
readonly pageSize?: number
|
|
5080
5110
|
|
|
5081
5111
|
/**
|
|
5082
|
-
* Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false organic shirts. Multiple filters can be combined with spaces and commas.
|
|
5112
|
+
* Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false sparseCollection:true assignedContentType:product suggestedContentType:product,collection organic shirts. Multiple filters can be combined with spaces and commas.
|
|
5083
5113
|
*/
|
|
5084
5114
|
readonly search?: string
|
|
5085
5115
|
|
|
@@ -5178,7 +5208,7 @@ export const RoutesApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
5178
5208
|
* @param {string} project What project it is
|
|
5179
5209
|
* @param {number} [pageToken] Page reference token
|
|
5180
5210
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
5181
|
-
* @param {string} [search] Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false organic shirts. Multiple filters can be combined with spaces and commas.
|
|
5211
|
+
* @param {string} [search] Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false sparseCollection:true assignedContentType:product suggestedContentType:product,collection organic shirts. Multiple filters can be combined with spaces and commas.
|
|
5182
5212
|
* @param {*} [options] Override http request option.
|
|
5183
5213
|
* @throws {RequiredError}
|
|
5184
5214
|
*/
|
|
@@ -5246,7 +5276,7 @@ export const RoutesApiFp = function(configuration?: Configuration) {
|
|
|
5246
5276
|
* @param {string} project What project it is
|
|
5247
5277
|
* @param {number} [pageToken] Page reference token
|
|
5248
5278
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
5249
|
-
* @param {string} [search] Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false organic shirts. Multiple filters can be combined with spaces and commas.
|
|
5279
|
+
* @param {string} [search] Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false sparseCollection:true assignedContentType:product suggestedContentType:product,collection organic shirts. Multiple filters can be combined with spaces and commas.
|
|
5250
5280
|
* @param {*} [options] Override http request option.
|
|
5251
5281
|
* @throws {RequiredError}
|
|
5252
5282
|
*/
|
|
@@ -5298,7 +5328,7 @@ export interface RoutesApiListRoutesRequest {
|
|
|
5298
5328
|
readonly pageSize?: number
|
|
5299
5329
|
|
|
5300
5330
|
/**
|
|
5301
|
-
* Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false organic shirts. Multiple filters can be combined with spaces and commas.
|
|
5331
|
+
* Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false sparseCollection:true assignedContentType:product suggestedContentType:product,collection organic shirts. Multiple filters can be combined with spaces and commas.
|
|
5302
5332
|
*/
|
|
5303
5333
|
readonly search?: string
|
|
5304
5334
|
}
|
|
@@ -5332,7 +5362,7 @@ export const SearchApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
5332
5362
|
* @param {string} project What project it is
|
|
5333
5363
|
* @param {number} [pageToken] Page reference token
|
|
5334
5364
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
5335
|
-
* @param {string} [search] Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false organic shirts. Multiple filters can be combined with spaces and commas.
|
|
5365
|
+
* @param {string} [search] Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false sparseCollection:true assignedContentType:product suggestedContentType:product,collection organic shirts. Multiple filters can be combined with spaces and commas.
|
|
5336
5366
|
* @param {CreateSearchRedirectRequest} [createSearchRedirectRequest] Create search redirect
|
|
5337
5367
|
* @param {*} [options] Override http request option.
|
|
5338
5368
|
* @throws {RequiredError}
|
|
@@ -5490,7 +5520,7 @@ export const SearchApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
5490
5520
|
* @param {string} project What project it is
|
|
5491
5521
|
* @param {number} [pageToken] Page reference token
|
|
5492
5522
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
5493
|
-
* @param {string} [search] Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false organic shirts. Multiple filters can be combined with spaces and commas.
|
|
5523
|
+
* @param {string} [search] Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false sparseCollection:true assignedContentType:product suggestedContentType:product,collection organic shirts. Multiple filters can be combined with spaces and commas.
|
|
5494
5524
|
* @param {*} [options] Override http request option.
|
|
5495
5525
|
* @throws {RequiredError}
|
|
5496
5526
|
*/
|
|
@@ -5609,7 +5639,7 @@ export const SearchApiFp = function(configuration?: Configuration) {
|
|
|
5609
5639
|
* @param {string} project What project it is
|
|
5610
5640
|
* @param {number} [pageToken] Page reference token
|
|
5611
5641
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
5612
|
-
* @param {string} [search] Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false organic shirts. Multiple filters can be combined with spaces and commas.
|
|
5642
|
+
* @param {string} [search] Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false sparseCollection:true assignedContentType:product suggestedContentType:product,collection organic shirts. Multiple filters can be combined with spaces and commas.
|
|
5613
5643
|
* @param {CreateSearchRedirectRequest} [createSearchRedirectRequest] Create search redirect
|
|
5614
5644
|
* @param {*} [options] Override http request option.
|
|
5615
5645
|
* @throws {RequiredError}
|
|
@@ -5654,7 +5684,7 @@ export const SearchApiFp = function(configuration?: Configuration) {
|
|
|
5654
5684
|
* @param {string} project What project it is
|
|
5655
5685
|
* @param {number} [pageToken] Page reference token
|
|
5656
5686
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
5657
|
-
* @param {string} [search] Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false organic shirts. Multiple filters can be combined with spaces and commas.
|
|
5687
|
+
* @param {string} [search] Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false sparseCollection:true assignedContentType:product suggestedContentType:product,collection organic shirts. Multiple filters can be combined with spaces and commas.
|
|
5658
5688
|
* @param {*} [options] Override http request option.
|
|
5659
5689
|
* @throws {RequiredError}
|
|
5660
5690
|
*/
|
|
@@ -5761,7 +5791,7 @@ export interface SearchApiCreateSearchRedirectRequest {
|
|
|
5761
5791
|
readonly pageSize?: number
|
|
5762
5792
|
|
|
5763
5793
|
/**
|
|
5764
|
-
* Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false organic shirts. Multiple filters can be combined with spaces and commas.
|
|
5794
|
+
* Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false sparseCollection:true assignedContentType:product suggestedContentType:product,collection organic shirts. Multiple filters can be combined with spaces and commas.
|
|
5765
5795
|
*/
|
|
5766
5796
|
readonly search?: string
|
|
5767
5797
|
|
|
@@ -5821,7 +5851,7 @@ export interface SearchApiListSearchRedirectsRequest {
|
|
|
5821
5851
|
readonly pageSize?: number
|
|
5822
5852
|
|
|
5823
5853
|
/**
|
|
5824
|
-
* Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false organic shirts. Multiple filters can be combined with spaces and commas.
|
|
5854
|
+
* Search term to filter results. Free text matches keyphrase text. Structured filters use key:value tags — e.g. assigned:false published:true,false optimised:false sparseCollection:true assignedContentType:product suggestedContentType:product,collection organic shirts. Multiple filters can be combined with spaces and commas.
|
|
5825
5855
|
*/
|
|
5826
5856
|
readonly search?: string
|
|
5827
5857
|
}
|
package/base.ts
CHANGED
package/common.ts
CHANGED
package/configuration.ts
CHANGED