@teemill/website 0.34.0 → 0.35.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +4 -4
- package/api.ts +63 -54
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +63 -54
- package/dist/api.js +39 -37
- 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 +63 -54
- package/dist/esm/api.js +39 -37
- 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 +10 -10
- package/docs/KeyphraseOpportunitiesResponseMetaFilters.md +4 -4
- package/docs/KeyphraseOpportunity.md +1 -1
- package/docs/KeyphraseOpportunityContent.md +5 -3
- 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.
|
|
1
|
+
## @teemill/website@0.35.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.
|
|
39
|
+
npm install @teemill/website@0.35.0 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -63,8 +63,8 @@ Class | Method | HTTP request | Description
|
|
|
63
63
|
*DefaultApi* | [**updateBrand**](docs/DefaultApi.md#updatebrand) | **PATCH** /v1/website/brand | Update brand
|
|
64
64
|
*FooterApi* | [**getFooter**](docs/FooterApi.md#getfooter) | **GET** /v1/website/footer | Get footer
|
|
65
65
|
*FooterApi* | [**updateFooter**](docs/FooterApi.md#updatefooter) | **PUT** /v1/website/footer | Update footer
|
|
66
|
-
*KeyphraseOpportunitiesApi* | [**deleteKeyphraseOpportunity**](docs/KeyphraseOpportunitiesApi.md#deletekeyphraseopportunity) | **DELETE** /v1/website/keyphrase-opportunities/{keyphraseOpportunityId} | Delete
|
|
67
|
-
*KeyphraseOpportunitiesApi* | [**listKeyphraseOpportunities**](docs/KeyphraseOpportunitiesApi.md#listkeyphraseopportunities) | **GET** /v1/website/keyphrase-opportunities | List
|
|
66
|
+
*KeyphraseOpportunitiesApi* | [**deleteKeyphraseOpportunity**](docs/KeyphraseOpportunitiesApi.md#deletekeyphraseopportunity) | **DELETE** /v1/website/keyphrase-opportunities/{keyphraseOpportunityId} | Delete keyphrase opportunity
|
|
67
|
+
*KeyphraseOpportunitiesApi* | [**listKeyphraseOpportunities**](docs/KeyphraseOpportunitiesApi.md#listkeyphraseopportunities) | **GET** /v1/website/keyphrase-opportunities | List keyphrase opportunities
|
|
68
68
|
*MenuApi* | [**getMenu**](docs/MenuApi.md#getmenu) | **GET** /v1/website/menu | Get menu
|
|
69
69
|
*MenuApi* | [**updateMenu**](docs/MenuApi.md#updatemenu) | **PUT** /v1/website/menu | Update menu
|
|
70
70
|
*PagesApi* | [**exportPages**](docs/PagesApi.md#exportpages) | **GET** /v1/website/pages/export | Export pages
|
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.
|
|
7
|
+
* The version of the OpenAPI document: 0.35.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -214,19 +214,19 @@ export interface KeyphraseOpportunitiesResponseMeta {
|
|
|
214
214
|
'filters': KeyphraseOpportunitiesResponseMetaFilters;
|
|
215
215
|
}
|
|
216
216
|
/**
|
|
217
|
-
* Filters that can be applied to the
|
|
217
|
+
* Filters that can be applied to the keyphrase opportunities list.
|
|
218
218
|
*/
|
|
219
219
|
export interface KeyphraseOpportunitiesResponseMetaFilters {
|
|
220
220
|
/**
|
|
221
|
-
* Filter by whether the
|
|
221
|
+
* Filter by whether the keyphrase is assigned to content.
|
|
222
222
|
*/
|
|
223
223
|
'assigned': Array<KeyphraseOpportunitiesResponseMetaFiltersAssignedEnum>;
|
|
224
224
|
/**
|
|
225
|
-
* Filter by whether the
|
|
225
|
+
* Filter by whether the keyphrase is attached to published content.
|
|
226
226
|
*/
|
|
227
227
|
'published': Array<KeyphraseOpportunitiesResponseMetaFiltersPublishedEnum>;
|
|
228
228
|
/**
|
|
229
|
-
* Filter by whether the
|
|
229
|
+
* Filter by whether the keyphrase is attached to optimised content.
|
|
230
230
|
*/
|
|
231
231
|
'optimised': Array<KeyphraseOpportunitiesResponseMetaFiltersOptimisedEnum>;
|
|
232
232
|
}
|
|
@@ -261,26 +261,35 @@ export interface KeyphraseOpportunity {
|
|
|
261
261
|
*/
|
|
262
262
|
'monthlyVolume': number | null;
|
|
263
263
|
/**
|
|
264
|
-
* Merchandising issues for this
|
|
264
|
+
* Merchandising issues for this keyphrase opportunity.
|
|
265
265
|
*/
|
|
266
266
|
'merchIssues': Array<string>;
|
|
267
267
|
'content': KeyphraseOpportunityContent | null;
|
|
268
268
|
}
|
|
269
269
|
/**
|
|
270
|
-
*
|
|
270
|
+
* Content the keyphrase is assigned to.
|
|
271
271
|
*/
|
|
272
272
|
export interface KeyphraseOpportunityContent {
|
|
273
|
+
/**
|
|
274
|
+
* The type of content the keyphrase is assigned to.
|
|
275
|
+
*/
|
|
273
276
|
'type': KeyphraseOpportunityContentTypeEnum;
|
|
274
277
|
'id': string;
|
|
275
278
|
/**
|
|
276
|
-
* The name of the
|
|
279
|
+
* The name of the attached content
|
|
277
280
|
*/
|
|
278
281
|
'name': string;
|
|
282
|
+
/**
|
|
283
|
+
* The URL slug of the attached content, if applicable.
|
|
284
|
+
*/
|
|
285
|
+
'slug': string | null;
|
|
279
286
|
}
|
|
280
287
|
|
|
281
288
|
export const KeyphraseOpportunityContentTypeEnum = {
|
|
282
289
|
Product: 'product',
|
|
283
290
|
Collection: 'collection',
|
|
291
|
+
Blog: 'blog',
|
|
292
|
+
Page: 'page',
|
|
284
293
|
} as const;
|
|
285
294
|
|
|
286
295
|
export type KeyphraseOpportunityContentTypeEnum = typeof KeyphraseOpportunityContentTypeEnum[keyof typeof KeyphraseOpportunityContentTypeEnum];
|
|
@@ -1224,7 +1233,7 @@ export const BlogsApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
1224
1233
|
* @param {string} project What project it is
|
|
1225
1234
|
* @param {number} [pageToken] Page reference token
|
|
1226
1235
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1227
|
-
* @param {string} [search] Search term to filter results. Free text matches
|
|
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.
|
|
1228
1237
|
* @param {*} [options] Override http request option.
|
|
1229
1238
|
* @throws {RequiredError}
|
|
1230
1239
|
*/
|
|
@@ -1334,7 +1343,7 @@ export const BlogsApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
1334
1343
|
* @param {string} project What project it is
|
|
1335
1344
|
* @param {number} [pageToken] Page reference token
|
|
1336
1345
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1337
|
-
* @param {string} [search] Search term to filter results. Free text matches
|
|
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.
|
|
1338
1347
|
* @param {UpdateBlogsRequest} [updateBlogsRequest] Update blogs in bulk.
|
|
1339
1348
|
* @param {*} [options] Override http request option.
|
|
1340
1349
|
* @throws {RequiredError}
|
|
@@ -1432,7 +1441,7 @@ export const BlogsApiFp = function(configuration?: Configuration) {
|
|
|
1432
1441
|
* @param {string} project What project it is
|
|
1433
1442
|
* @param {number} [pageToken] Page reference token
|
|
1434
1443
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1435
|
-
* @param {string} [search] Search term to filter results. Free text matches
|
|
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.
|
|
1436
1445
|
* @param {*} [options] Override http request option.
|
|
1437
1446
|
* @throws {RequiredError}
|
|
1438
1447
|
*/
|
|
@@ -1463,7 +1472,7 @@ export const BlogsApiFp = function(configuration?: Configuration) {
|
|
|
1463
1472
|
* @param {string} project What project it is
|
|
1464
1473
|
* @param {number} [pageToken] Page reference token
|
|
1465
1474
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
1466
|
-
* @param {string} [search] Search term to filter results. Free text matches
|
|
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.
|
|
1467
1476
|
* @param {UpdateBlogsRequest} [updateBlogsRequest] Update blogs in bulk.
|
|
1468
1477
|
* @param {*} [options] Override http request option.
|
|
1469
1478
|
* @throws {RequiredError}
|
|
@@ -1581,7 +1590,7 @@ export interface BlogsApiListBlogsRequest {
|
|
|
1581
1590
|
readonly pageSize?: number
|
|
1582
1591
|
|
|
1583
1592
|
/**
|
|
1584
|
-
* Search term to filter results. Free text matches
|
|
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.
|
|
1585
1594
|
*/
|
|
1586
1595
|
readonly search?: string
|
|
1587
1596
|
}
|
|
@@ -1623,7 +1632,7 @@ export interface BlogsApiUpdateBlogsRequest {
|
|
|
1623
1632
|
readonly pageSize?: number
|
|
1624
1633
|
|
|
1625
1634
|
/**
|
|
1626
|
-
* Search term to filter results. Free text matches
|
|
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.
|
|
1627
1636
|
*/
|
|
1628
1637
|
readonly search?: string
|
|
1629
1638
|
|
|
@@ -2521,10 +2530,10 @@ export class FooterApi extends BaseAPI {
|
|
|
2521
2530
|
export const KeyphraseOpportunitiesApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
2522
2531
|
return {
|
|
2523
2532
|
/**
|
|
2524
|
-
* Remove a
|
|
2525
|
-
* @summary Delete
|
|
2533
|
+
* Remove a keyphrase opportunity from the store.
|
|
2534
|
+
* @summary Delete keyphrase opportunity
|
|
2526
2535
|
* @param {string} project What project it is
|
|
2527
|
-
* @param {string} keyphraseOpportunityId
|
|
2536
|
+
* @param {string} keyphraseOpportunityId Keyphrase opportunity\'s unique identifier
|
|
2528
2537
|
* @param {*} [options] Override http request option.
|
|
2529
2538
|
* @throws {RequiredError}
|
|
2530
2539
|
*/
|
|
@@ -2569,12 +2578,12 @@ export const KeyphraseOpportunitiesApiAxiosParamCreator = function (configuratio
|
|
|
2569
2578
|
};
|
|
2570
2579
|
},
|
|
2571
2580
|
/**
|
|
2572
|
-
* List
|
|
2573
|
-
* @summary List
|
|
2581
|
+
* List keyphrases saved as opportunities for a store. Use search tags to filter by assignment, publication, and optimisation status.
|
|
2582
|
+
* @summary List keyphrase opportunities
|
|
2574
2583
|
* @param {string} project What project it is
|
|
2575
2584
|
* @param {number} [pageToken] Page reference token
|
|
2576
2585
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2577
|
-
* @param {string} [search] Search term to filter results. Free text matches
|
|
2586
|
+
* @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.
|
|
2578
2587
|
* @param {*} [options] Override http request option.
|
|
2579
2588
|
* @throws {RequiredError}
|
|
2580
2589
|
*/
|
|
@@ -2637,10 +2646,10 @@ export const KeyphraseOpportunitiesApiFp = function(configuration?: Configuratio
|
|
|
2637
2646
|
const localVarAxiosParamCreator = KeyphraseOpportunitiesApiAxiosParamCreator(configuration)
|
|
2638
2647
|
return {
|
|
2639
2648
|
/**
|
|
2640
|
-
* Remove a
|
|
2641
|
-
* @summary Delete
|
|
2649
|
+
* Remove a keyphrase opportunity from the store.
|
|
2650
|
+
* @summary Delete keyphrase opportunity
|
|
2642
2651
|
* @param {string} project What project it is
|
|
2643
|
-
* @param {string} keyphraseOpportunityId
|
|
2652
|
+
* @param {string} keyphraseOpportunityId Keyphrase opportunity\'s unique identifier
|
|
2644
2653
|
* @param {*} [options] Override http request option.
|
|
2645
2654
|
* @throws {RequiredError}
|
|
2646
2655
|
*/
|
|
@@ -2651,12 +2660,12 @@ export const KeyphraseOpportunitiesApiFp = function(configuration?: Configuratio
|
|
|
2651
2660
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
2652
2661
|
},
|
|
2653
2662
|
/**
|
|
2654
|
-
* List
|
|
2655
|
-
* @summary List
|
|
2663
|
+
* List keyphrases saved as opportunities for a store. Use search tags to filter by assignment, publication, and optimisation status.
|
|
2664
|
+
* @summary List keyphrase opportunities
|
|
2656
2665
|
* @param {string} project What project it is
|
|
2657
2666
|
* @param {number} [pageToken] Page reference token
|
|
2658
2667
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
2659
|
-
* @param {string} [search] Search term to filter results. Free text matches
|
|
2668
|
+
* @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.
|
|
2660
2669
|
* @param {*} [options] Override http request option.
|
|
2661
2670
|
* @throws {RequiredError}
|
|
2662
2671
|
*/
|
|
@@ -2676,8 +2685,8 @@ export const KeyphraseOpportunitiesApiFactory = function (configuration?: Config
|
|
|
2676
2685
|
const localVarFp = KeyphraseOpportunitiesApiFp(configuration)
|
|
2677
2686
|
return {
|
|
2678
2687
|
/**
|
|
2679
|
-
* Remove a
|
|
2680
|
-
* @summary Delete
|
|
2688
|
+
* Remove a keyphrase opportunity from the store.
|
|
2689
|
+
* @summary Delete keyphrase opportunity
|
|
2681
2690
|
* @param {KeyphraseOpportunitiesApiDeleteKeyphraseOpportunityRequest} requestParameters Request parameters.
|
|
2682
2691
|
* @param {*} [options] Override http request option.
|
|
2683
2692
|
* @throws {RequiredError}
|
|
@@ -2686,8 +2695,8 @@ export const KeyphraseOpportunitiesApiFactory = function (configuration?: Config
|
|
|
2686
2695
|
return localVarFp.deleteKeyphraseOpportunity(requestParameters.project, requestParameters.keyphraseOpportunityId, options).then((request) => request(axios, basePath));
|
|
2687
2696
|
},
|
|
2688
2697
|
/**
|
|
2689
|
-
* List
|
|
2690
|
-
* @summary List
|
|
2698
|
+
* List keyphrases saved as opportunities for a store. Use search tags to filter by assignment, publication, and optimisation status.
|
|
2699
|
+
* @summary List keyphrase opportunities
|
|
2691
2700
|
* @param {KeyphraseOpportunitiesApiListKeyphraseOpportunitiesRequest} requestParameters Request parameters.
|
|
2692
2701
|
* @param {*} [options] Override http request option.
|
|
2693
2702
|
* @throws {RequiredError}
|
|
@@ -2708,7 +2717,7 @@ export interface KeyphraseOpportunitiesApiDeleteKeyphraseOpportunityRequest {
|
|
|
2708
2717
|
readonly project: string
|
|
2709
2718
|
|
|
2710
2719
|
/**
|
|
2711
|
-
*
|
|
2720
|
+
* Keyphrase opportunity\'s unique identifier
|
|
2712
2721
|
*/
|
|
2713
2722
|
readonly keyphraseOpportunityId: string
|
|
2714
2723
|
}
|
|
@@ -2733,7 +2742,7 @@ export interface KeyphraseOpportunitiesApiListKeyphraseOpportunitiesRequest {
|
|
|
2733
2742
|
readonly pageSize?: number
|
|
2734
2743
|
|
|
2735
2744
|
/**
|
|
2736
|
-
* Search term to filter results. Free text matches
|
|
2745
|
+
* 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.
|
|
2737
2746
|
*/
|
|
2738
2747
|
readonly search?: string
|
|
2739
2748
|
}
|
|
@@ -2743,8 +2752,8 @@ export interface KeyphraseOpportunitiesApiListKeyphraseOpportunitiesRequest {
|
|
|
2743
2752
|
*/
|
|
2744
2753
|
export class KeyphraseOpportunitiesApi extends BaseAPI {
|
|
2745
2754
|
/**
|
|
2746
|
-
* Remove a
|
|
2747
|
-
* @summary Delete
|
|
2755
|
+
* Remove a keyphrase opportunity from the store.
|
|
2756
|
+
* @summary Delete keyphrase opportunity
|
|
2748
2757
|
* @param {KeyphraseOpportunitiesApiDeleteKeyphraseOpportunityRequest} requestParameters Request parameters.
|
|
2749
2758
|
* @param {*} [options] Override http request option.
|
|
2750
2759
|
* @throws {RequiredError}
|
|
@@ -2754,8 +2763,8 @@ export class KeyphraseOpportunitiesApi extends BaseAPI {
|
|
|
2754
2763
|
}
|
|
2755
2764
|
|
|
2756
2765
|
/**
|
|
2757
|
-
* List
|
|
2758
|
-
* @summary List
|
|
2766
|
+
* List keyphrases saved as opportunities for a store. Use search tags to filter by assignment, publication, and optimisation status.
|
|
2767
|
+
* @summary List keyphrase opportunities
|
|
2759
2768
|
* @param {KeyphraseOpportunitiesApiListKeyphraseOpportunitiesRequest} requestParameters Request parameters.
|
|
2760
2769
|
* @param {*} [options] Override http request option.
|
|
2761
2770
|
* @throws {RequiredError}
|
|
@@ -3088,7 +3097,7 @@ export const PagesApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
3088
3097
|
* @param {string} project What project it is
|
|
3089
3098
|
* @param {number} [pageToken] Page reference token
|
|
3090
3099
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
3091
|
-
* @param {string} [search] Search term to filter results. Free text matches
|
|
3100
|
+
* @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.
|
|
3092
3101
|
* @param {*} [options] Override http request option.
|
|
3093
3102
|
* @throws {RequiredError}
|
|
3094
3103
|
*/
|
|
@@ -3245,7 +3254,7 @@ export const PagesApiAxiosParamCreator = function (configuration?: Configuration
|
|
|
3245
3254
|
* @param {string} project What project it is
|
|
3246
3255
|
* @param {number} [pageToken] Page reference token
|
|
3247
3256
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
3248
|
-
* @param {string} [search] Search term to filter results. Free text matches
|
|
3257
|
+
* @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.
|
|
3249
3258
|
* @param {UpdatePagesRequest} [updatePagesRequest] Update pages in bulk.
|
|
3250
3259
|
* @param {*} [options] Override http request option.
|
|
3251
3260
|
* @throws {RequiredError}
|
|
@@ -3343,7 +3352,7 @@ export const PagesApiFp = function(configuration?: Configuration) {
|
|
|
3343
3352
|
* @param {string} project What project it is
|
|
3344
3353
|
* @param {number} [pageToken] Page reference token
|
|
3345
3354
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
3346
|
-
* @param {string} [search] Search term to filter results. Free text matches
|
|
3355
|
+
* @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.
|
|
3347
3356
|
* @param {*} [options] Override http request option.
|
|
3348
3357
|
* @throws {RequiredError}
|
|
3349
3358
|
*/
|
|
@@ -3388,7 +3397,7 @@ export const PagesApiFp = function(configuration?: Configuration) {
|
|
|
3388
3397
|
* @param {string} project What project it is
|
|
3389
3398
|
* @param {number} [pageToken] Page reference token
|
|
3390
3399
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
3391
|
-
* @param {string} [search] Search term to filter results. Free text matches
|
|
3400
|
+
* @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.
|
|
3392
3401
|
* @param {UpdatePagesRequest} [updatePagesRequest] Update pages in bulk.
|
|
3393
3402
|
* @param {*} [options] Override http request option.
|
|
3394
3403
|
* @throws {RequiredError}
|
|
@@ -3516,7 +3525,7 @@ export interface PagesApiListPagesRequest {
|
|
|
3516
3525
|
readonly pageSize?: number
|
|
3517
3526
|
|
|
3518
3527
|
/**
|
|
3519
|
-
* Search term to filter results. Free text matches
|
|
3528
|
+
* 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.
|
|
3520
3529
|
*/
|
|
3521
3530
|
readonly search?: string
|
|
3522
3531
|
}
|
|
@@ -3573,7 +3582,7 @@ export interface PagesApiUpdatePagesRequest {
|
|
|
3573
3582
|
readonly pageSize?: number
|
|
3574
3583
|
|
|
3575
3584
|
/**
|
|
3576
|
-
* Search term to filter results. Free text matches
|
|
3585
|
+
* 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.
|
|
3577
3586
|
*/
|
|
3578
3587
|
readonly search?: string
|
|
3579
3588
|
|
|
@@ -4572,7 +4581,7 @@ export const ReviewsApiAxiosParamCreator = function (configuration?: Configurati
|
|
|
4572
4581
|
* @param {string} project What project it is
|
|
4573
4582
|
* @param {number} [pageToken] Page reference token
|
|
4574
4583
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
4575
|
-
* @param {string} [search] Search term to filter results. Free text matches
|
|
4584
|
+
* @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.
|
|
4576
4585
|
* @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
4577
4586
|
* @param {string} [start] Start of date range to filter by
|
|
4578
4587
|
* @param {string} [end] End of date range to filter by
|
|
@@ -4739,7 +4748,7 @@ export const ReviewsApiFp = function(configuration?: Configuration) {
|
|
|
4739
4748
|
* @param {string} project What project it is
|
|
4740
4749
|
* @param {number} [pageToken] Page reference token
|
|
4741
4750
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
4742
|
-
* @param {string} [search] Search term to filter results. Free text matches
|
|
4751
|
+
* @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.
|
|
4743
4752
|
* @param {Array<string>} [sortBy] An array of fields to sort by, prefixed with a \'-\' for descending order or \'+\' for ascending. Default is ascending.
|
|
4744
4753
|
* @param {string} [start] Start of date range to filter by
|
|
4745
4754
|
* @param {string} [end] End of date range to filter by
|
|
@@ -4874,7 +4883,7 @@ export interface ReviewsApiListReviewsRequest {
|
|
|
4874
4883
|
readonly pageSize?: number
|
|
4875
4884
|
|
|
4876
4885
|
/**
|
|
4877
|
-
* Search term to filter results. Free text matches
|
|
4886
|
+
* 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.
|
|
4878
4887
|
*/
|
|
4879
4888
|
readonly search?: string
|
|
4880
4889
|
|
|
@@ -4973,7 +4982,7 @@ export const RoutesApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
4973
4982
|
* @param {string} project What project it is
|
|
4974
4983
|
* @param {number} [pageToken] Page reference token
|
|
4975
4984
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
4976
|
-
* @param {string} [search] Search term to filter results. Free text matches
|
|
4985
|
+
* @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
4986
|
* @param {*} [options] Override http request option.
|
|
4978
4987
|
* @throws {RequiredError}
|
|
4979
4988
|
*/
|
|
@@ -5041,7 +5050,7 @@ export const RoutesApiFp = function(configuration?: Configuration) {
|
|
|
5041
5050
|
* @param {string} project What project it is
|
|
5042
5051
|
* @param {number} [pageToken] Page reference token
|
|
5043
5052
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
5044
|
-
* @param {string} [search] Search term to filter results. Free text matches
|
|
5053
|
+
* @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.
|
|
5045
5054
|
* @param {*} [options] Override http request option.
|
|
5046
5055
|
* @throws {RequiredError}
|
|
5047
5056
|
*/
|
|
@@ -5093,7 +5102,7 @@ export interface RoutesApiListRoutesRequest {
|
|
|
5093
5102
|
readonly pageSize?: number
|
|
5094
5103
|
|
|
5095
5104
|
/**
|
|
5096
|
-
* Search term to filter results. Free text matches
|
|
5105
|
+
* 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.
|
|
5097
5106
|
*/
|
|
5098
5107
|
readonly search?: string
|
|
5099
5108
|
}
|
|
@@ -5127,7 +5136,7 @@ export const SearchApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
5127
5136
|
* @param {string} project What project it is
|
|
5128
5137
|
* @param {number} [pageToken] Page reference token
|
|
5129
5138
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
5130
|
-
* @param {string} [search] Search term to filter results. Free text matches
|
|
5139
|
+
* @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.
|
|
5131
5140
|
* @param {CreateSearchRedirectRequest} [createSearchRedirectRequest] Create search redirect
|
|
5132
5141
|
* @param {*} [options] Override http request option.
|
|
5133
5142
|
* @throws {RequiredError}
|
|
@@ -5285,7 +5294,7 @@ export const SearchApiAxiosParamCreator = function (configuration?: Configuratio
|
|
|
5285
5294
|
* @param {string} project What project it is
|
|
5286
5295
|
* @param {number} [pageToken] Page reference token
|
|
5287
5296
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
5288
|
-
* @param {string} [search] Search term to filter results. Free text matches
|
|
5297
|
+
* @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.
|
|
5289
5298
|
* @param {*} [options] Override http request option.
|
|
5290
5299
|
* @throws {RequiredError}
|
|
5291
5300
|
*/
|
|
@@ -5404,7 +5413,7 @@ export const SearchApiFp = function(configuration?: Configuration) {
|
|
|
5404
5413
|
* @param {string} project What project it is
|
|
5405
5414
|
* @param {number} [pageToken] Page reference token
|
|
5406
5415
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
5407
|
-
* @param {string} [search] Search term to filter results. Free text matches
|
|
5416
|
+
* @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.
|
|
5408
5417
|
* @param {CreateSearchRedirectRequest} [createSearchRedirectRequest] Create search redirect
|
|
5409
5418
|
* @param {*} [options] Override http request option.
|
|
5410
5419
|
* @throws {RequiredError}
|
|
@@ -5449,7 +5458,7 @@ export const SearchApiFp = function(configuration?: Configuration) {
|
|
|
5449
5458
|
* @param {string} project What project it is
|
|
5450
5459
|
* @param {number} [pageToken] Page reference token
|
|
5451
5460
|
* @param {number} [pageSize] Max page size. This is the maximum page size that will be returned, but it might be smaller.
|
|
5452
|
-
* @param {string} [search] Search term to filter results. Free text matches
|
|
5461
|
+
* @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.
|
|
5453
5462
|
* @param {*} [options] Override http request option.
|
|
5454
5463
|
* @throws {RequiredError}
|
|
5455
5464
|
*/
|
|
@@ -5556,7 +5565,7 @@ export interface SearchApiCreateSearchRedirectRequest {
|
|
|
5556
5565
|
readonly pageSize?: number
|
|
5557
5566
|
|
|
5558
5567
|
/**
|
|
5559
|
-
* Search term to filter results. Free text matches
|
|
5568
|
+
* 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.
|
|
5560
5569
|
*/
|
|
5561
5570
|
readonly search?: string
|
|
5562
5571
|
|
|
@@ -5616,7 +5625,7 @@ export interface SearchApiListSearchRedirectsRequest {
|
|
|
5616
5625
|
readonly pageSize?: number
|
|
5617
5626
|
|
|
5618
5627
|
/**
|
|
5619
|
-
* Search term to filter results. Free text matches
|
|
5628
|
+
* 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.
|
|
5620
5629
|
*/
|
|
5621
5630
|
readonly search?: string
|
|
5622
5631
|
}
|
package/base.ts
CHANGED
package/common.ts
CHANGED
package/configuration.ts
CHANGED