@teemill/website 0.14.0 → 0.16.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 +2 -2
- package/api.ts +414 -1
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +261 -1
- package/dist/api.js +235 -1
- 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 +261 -1
- package/dist/esm/api.js +235 -1
- 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/index.ts +1 -1
- package/package.json +1 -1
package/dist/esm/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Website API
|
|
3
3
|
* Manage your PodOS Website
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.16.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -232,6 +232,18 @@ export interface Blog {
|
|
|
232
232
|
* @memberof Blog
|
|
233
233
|
*/
|
|
234
234
|
'targetSearchPhraseData'?: TargetSearchPhraseData;
|
|
235
|
+
/**
|
|
236
|
+
*
|
|
237
|
+
* @type {MetaImage}
|
|
238
|
+
* @memberof Blog
|
|
239
|
+
*/
|
|
240
|
+
'metaImage'?: MetaImage;
|
|
241
|
+
/**
|
|
242
|
+
*
|
|
243
|
+
* @type {string}
|
|
244
|
+
* @memberof Blog
|
|
245
|
+
*/
|
|
246
|
+
'publishedAt'?: string | null;
|
|
235
247
|
}
|
|
236
248
|
/**
|
|
237
249
|
*
|
|
@@ -282,6 +294,12 @@ export interface Collection {
|
|
|
282
294
|
* @memberof Collection
|
|
283
295
|
*/
|
|
284
296
|
'slug'?: string;
|
|
297
|
+
/**
|
|
298
|
+
*
|
|
299
|
+
* @type {string}
|
|
300
|
+
* @memberof Collection
|
|
301
|
+
*/
|
|
302
|
+
'longDescription'?: string;
|
|
285
303
|
/**
|
|
286
304
|
*
|
|
287
305
|
* @type {SeoMetadata}
|
|
@@ -294,6 +312,18 @@ export interface Collection {
|
|
|
294
312
|
* @memberof Collection
|
|
295
313
|
*/
|
|
296
314
|
'targetSearchPhraseData'?: TargetSearchPhraseData;
|
|
315
|
+
/**
|
|
316
|
+
* History of AI optimisations performed on the collection
|
|
317
|
+
* @type {Array<OptimisationHistoryItem>}
|
|
318
|
+
* @memberof Collection
|
|
319
|
+
*/
|
|
320
|
+
'optimisationHistory'?: Array<OptimisationHistoryItem>;
|
|
321
|
+
/**
|
|
322
|
+
*
|
|
323
|
+
* @type {MetaImage}
|
|
324
|
+
* @memberof Collection
|
|
325
|
+
*/
|
|
326
|
+
'metaImage'?: MetaImage;
|
|
297
327
|
}
|
|
298
328
|
/**
|
|
299
329
|
*
|
|
@@ -476,6 +506,44 @@ export interface MetaField {
|
|
|
476
506
|
*/
|
|
477
507
|
'value': string;
|
|
478
508
|
}
|
|
509
|
+
/**
|
|
510
|
+
* The image that will in links shared on social media platforms
|
|
511
|
+
* @export
|
|
512
|
+
* @interface MetaImage
|
|
513
|
+
*/
|
|
514
|
+
export interface MetaImage {
|
|
515
|
+
/**
|
|
516
|
+
*
|
|
517
|
+
* @type {string}
|
|
518
|
+
* @memberof MetaImage
|
|
519
|
+
*/
|
|
520
|
+
'src'?: string;
|
|
521
|
+
/**
|
|
522
|
+
*
|
|
523
|
+
* @type {string}
|
|
524
|
+
* @memberof MetaImage
|
|
525
|
+
*/
|
|
526
|
+
'alt'?: string;
|
|
527
|
+
}
|
|
528
|
+
/**
|
|
529
|
+
*
|
|
530
|
+
* @export
|
|
531
|
+
* @interface OptimisationHistoryItem
|
|
532
|
+
*/
|
|
533
|
+
export interface OptimisationHistoryItem {
|
|
534
|
+
/**
|
|
535
|
+
* Unique object identifier
|
|
536
|
+
* @type {string}
|
|
537
|
+
* @memberof OptimisationHistoryItem
|
|
538
|
+
*/
|
|
539
|
+
'id'?: string;
|
|
540
|
+
/**
|
|
541
|
+
*
|
|
542
|
+
* @type {string}
|
|
543
|
+
* @memberof OptimisationHistoryItem
|
|
544
|
+
*/
|
|
545
|
+
'createdAt'?: string;
|
|
546
|
+
}
|
|
479
547
|
/**
|
|
480
548
|
*
|
|
481
549
|
* @export
|
|
@@ -512,6 +580,24 @@ export interface Page {
|
|
|
512
580
|
* @memberof Page
|
|
513
581
|
*/
|
|
514
582
|
'targetSearchPhraseData'?: TargetSearchPhraseData;
|
|
583
|
+
/**
|
|
584
|
+
* History of AI optimisations performed on the page
|
|
585
|
+
* @type {Array<OptimisationHistoryItem>}
|
|
586
|
+
* @memberof Page
|
|
587
|
+
*/
|
|
588
|
+
'optimisationHistory'?: Array<OptimisationHistoryItem>;
|
|
589
|
+
/**
|
|
590
|
+
*
|
|
591
|
+
* @type {MetaImage}
|
|
592
|
+
* @memberof Page
|
|
593
|
+
*/
|
|
594
|
+
'metaImage'?: MetaImage;
|
|
595
|
+
/**
|
|
596
|
+
*
|
|
597
|
+
* @type {string}
|
|
598
|
+
* @memberof Page
|
|
599
|
+
*/
|
|
600
|
+
'publishedAt'?: string | null;
|
|
515
601
|
}
|
|
516
602
|
/**
|
|
517
603
|
*
|
|
@@ -1372,6 +1458,12 @@ export interface UpdateCollectionRequest {
|
|
|
1372
1458
|
* @memberof UpdateCollectionRequest
|
|
1373
1459
|
*/
|
|
1374
1460
|
'slug'?: string;
|
|
1461
|
+
/**
|
|
1462
|
+
* Long-form description for the collection used for SEO.
|
|
1463
|
+
* @type {string}
|
|
1464
|
+
* @memberof UpdateCollectionRequest
|
|
1465
|
+
*/
|
|
1466
|
+
'longDescription'?: string;
|
|
1375
1467
|
/**
|
|
1376
1468
|
*
|
|
1377
1469
|
* @type {UpdateCollectionsRequestCollectionsInnerSeoMetadata}
|
|
@@ -1434,6 +1526,12 @@ export interface UpdateCollectionsRequestCollectionsInner {
|
|
|
1434
1526
|
* @memberof UpdateCollectionsRequestCollectionsInner
|
|
1435
1527
|
*/
|
|
1436
1528
|
'slug'?: string;
|
|
1529
|
+
/**
|
|
1530
|
+
* Long-form description for the collection used for SEO.
|
|
1531
|
+
* @type {string}
|
|
1532
|
+
* @memberof UpdateCollectionsRequestCollectionsInner
|
|
1533
|
+
*/
|
|
1534
|
+
'longDescription'?: string;
|
|
1437
1535
|
/**
|
|
1438
1536
|
*
|
|
1439
1537
|
* @type {UpdateCollectionsRequestCollectionsInnerSeoMetadata}
|
|
@@ -2049,6 +2147,15 @@ export interface Video {
|
|
|
2049
2147
|
* @export
|
|
2050
2148
|
*/
|
|
2051
2149
|
export declare const BlogsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2150
|
+
/**
|
|
2151
|
+
*
|
|
2152
|
+
* @summary Get website blog post
|
|
2153
|
+
* @param {string} project What project it is
|
|
2154
|
+
* @param {string} blogId Blog\'s unique identifier
|
|
2155
|
+
* @param {*} [options] Override http request option.
|
|
2156
|
+
* @throws {RequiredError}
|
|
2157
|
+
*/
|
|
2158
|
+
getBlog: (project: string, blogId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2052
2159
|
/**
|
|
2053
2160
|
*
|
|
2054
2161
|
* @summary List website blog posts
|
|
@@ -2088,6 +2195,15 @@ export declare const BlogsApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
2088
2195
|
* @export
|
|
2089
2196
|
*/
|
|
2090
2197
|
export declare const BlogsApiFp: (configuration?: Configuration) => {
|
|
2198
|
+
/**
|
|
2199
|
+
*
|
|
2200
|
+
* @summary Get website blog post
|
|
2201
|
+
* @param {string} project What project it is
|
|
2202
|
+
* @param {string} blogId Blog\'s unique identifier
|
|
2203
|
+
* @param {*} [options] Override http request option.
|
|
2204
|
+
* @throws {RequiredError}
|
|
2205
|
+
*/
|
|
2206
|
+
getBlog(project: string, blogId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Blog>>;
|
|
2091
2207
|
/**
|
|
2092
2208
|
*
|
|
2093
2209
|
* @summary List website blog posts
|
|
@@ -2127,6 +2243,14 @@ export declare const BlogsApiFp: (configuration?: Configuration) => {
|
|
|
2127
2243
|
* @export
|
|
2128
2244
|
*/
|
|
2129
2245
|
export declare const BlogsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2246
|
+
/**
|
|
2247
|
+
*
|
|
2248
|
+
* @summary Get website blog post
|
|
2249
|
+
* @param {BlogsApiGetBlogRequest} requestParameters Request parameters.
|
|
2250
|
+
* @param {*} [options] Override http request option.
|
|
2251
|
+
* @throws {RequiredError}
|
|
2252
|
+
*/
|
|
2253
|
+
getBlog(requestParameters: BlogsApiGetBlogRequest, options?: RawAxiosRequestConfig): AxiosPromise<Blog>;
|
|
2130
2254
|
/**
|
|
2131
2255
|
*
|
|
2132
2256
|
* @summary List website blog posts
|
|
@@ -2152,6 +2276,25 @@ export declare const BlogsApiFactory: (configuration?: Configuration, basePath?:
|
|
|
2152
2276
|
*/
|
|
2153
2277
|
updateBlogs(requestParameters: BlogsApiUpdateBlogsRequest, options?: RawAxiosRequestConfig): AxiosPromise<BlogsResponse>;
|
|
2154
2278
|
};
|
|
2279
|
+
/**
|
|
2280
|
+
* Request parameters for getBlog operation in BlogsApi.
|
|
2281
|
+
* @export
|
|
2282
|
+
* @interface BlogsApiGetBlogRequest
|
|
2283
|
+
*/
|
|
2284
|
+
export interface BlogsApiGetBlogRequest {
|
|
2285
|
+
/**
|
|
2286
|
+
* What project it is
|
|
2287
|
+
* @type {string}
|
|
2288
|
+
* @memberof BlogsApiGetBlog
|
|
2289
|
+
*/
|
|
2290
|
+
readonly project: string;
|
|
2291
|
+
/**
|
|
2292
|
+
* Blog\'s unique identifier
|
|
2293
|
+
* @type {string}
|
|
2294
|
+
* @memberof BlogsApiGetBlog
|
|
2295
|
+
*/
|
|
2296
|
+
readonly blogId: string;
|
|
2297
|
+
}
|
|
2155
2298
|
/**
|
|
2156
2299
|
* Request parameters for listBlogs operation in BlogsApi.
|
|
2157
2300
|
* @export
|
|
@@ -2252,6 +2395,15 @@ export interface BlogsApiUpdateBlogsRequest {
|
|
|
2252
2395
|
* @extends {BaseAPI}
|
|
2253
2396
|
*/
|
|
2254
2397
|
export declare class BlogsApi extends BaseAPI {
|
|
2398
|
+
/**
|
|
2399
|
+
*
|
|
2400
|
+
* @summary Get website blog post
|
|
2401
|
+
* @param {BlogsApiGetBlogRequest} requestParameters Request parameters.
|
|
2402
|
+
* @param {*} [options] Override http request option.
|
|
2403
|
+
* @throws {RequiredError}
|
|
2404
|
+
* @memberof BlogsApi
|
|
2405
|
+
*/
|
|
2406
|
+
getBlog(requestParameters: BlogsApiGetBlogRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Blog, any>>;
|
|
2255
2407
|
/**
|
|
2256
2408
|
*
|
|
2257
2409
|
* @summary List website blog posts
|
|
@@ -2285,6 +2437,15 @@ export declare class BlogsApi extends BaseAPI {
|
|
|
2285
2437
|
* @export
|
|
2286
2438
|
*/
|
|
2287
2439
|
export declare const CollectionsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
2440
|
+
/**
|
|
2441
|
+
*
|
|
2442
|
+
* @summary Get website collection
|
|
2443
|
+
* @param {string} project What project it is
|
|
2444
|
+
* @param {string} collectionId Collection\'s unique identifier
|
|
2445
|
+
* @param {*} [options] Override http request option.
|
|
2446
|
+
* @throws {RequiredError}
|
|
2447
|
+
*/
|
|
2448
|
+
getCollection: (project: string, collectionId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2288
2449
|
/**
|
|
2289
2450
|
*
|
|
2290
2451
|
* @summary List website collections
|
|
@@ -2333,6 +2494,15 @@ export declare const CollectionsApiAxiosParamCreator: (configuration?: Configura
|
|
|
2333
2494
|
* @export
|
|
2334
2495
|
*/
|
|
2335
2496
|
export declare const CollectionsApiFp: (configuration?: Configuration) => {
|
|
2497
|
+
/**
|
|
2498
|
+
*
|
|
2499
|
+
* @summary Get website collection
|
|
2500
|
+
* @param {string} project What project it is
|
|
2501
|
+
* @param {string} collectionId Collection\'s unique identifier
|
|
2502
|
+
* @param {*} [options] Override http request option.
|
|
2503
|
+
* @throws {RequiredError}
|
|
2504
|
+
*/
|
|
2505
|
+
getCollection(project: string, collectionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Collection>>;
|
|
2336
2506
|
/**
|
|
2337
2507
|
*
|
|
2338
2508
|
* @summary List website collections
|
|
@@ -2381,6 +2551,14 @@ export declare const CollectionsApiFp: (configuration?: Configuration) => {
|
|
|
2381
2551
|
* @export
|
|
2382
2552
|
*/
|
|
2383
2553
|
export declare const CollectionsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
2554
|
+
/**
|
|
2555
|
+
*
|
|
2556
|
+
* @summary Get website collection
|
|
2557
|
+
* @param {CollectionsApiGetCollectionRequest} requestParameters Request parameters.
|
|
2558
|
+
* @param {*} [options] Override http request option.
|
|
2559
|
+
* @throws {RequiredError}
|
|
2560
|
+
*/
|
|
2561
|
+
getCollection(requestParameters: CollectionsApiGetCollectionRequest, options?: RawAxiosRequestConfig): AxiosPromise<Collection>;
|
|
2384
2562
|
/**
|
|
2385
2563
|
*
|
|
2386
2564
|
* @summary List website collections
|
|
@@ -2414,6 +2592,25 @@ export declare const CollectionsApiFactory: (configuration?: Configuration, base
|
|
|
2414
2592
|
*/
|
|
2415
2593
|
updateCollections(requestParameters: CollectionsApiUpdateCollectionsRequest, options?: RawAxiosRequestConfig): AxiosPromise<CollectionsResponse>;
|
|
2416
2594
|
};
|
|
2595
|
+
/**
|
|
2596
|
+
* Request parameters for getCollection operation in CollectionsApi.
|
|
2597
|
+
* @export
|
|
2598
|
+
* @interface CollectionsApiGetCollectionRequest
|
|
2599
|
+
*/
|
|
2600
|
+
export interface CollectionsApiGetCollectionRequest {
|
|
2601
|
+
/**
|
|
2602
|
+
* What project it is
|
|
2603
|
+
* @type {string}
|
|
2604
|
+
* @memberof CollectionsApiGetCollection
|
|
2605
|
+
*/
|
|
2606
|
+
readonly project: string;
|
|
2607
|
+
/**
|
|
2608
|
+
* Collection\'s unique identifier
|
|
2609
|
+
* @type {string}
|
|
2610
|
+
* @memberof CollectionsApiGetCollection
|
|
2611
|
+
*/
|
|
2612
|
+
readonly collectionId: string;
|
|
2613
|
+
}
|
|
2417
2614
|
/**
|
|
2418
2615
|
* Request parameters for listCollections operation in CollectionsApi.
|
|
2419
2616
|
* @export
|
|
@@ -2533,6 +2730,15 @@ export interface CollectionsApiUpdateCollectionsRequest {
|
|
|
2533
2730
|
* @extends {BaseAPI}
|
|
2534
2731
|
*/
|
|
2535
2732
|
export declare class CollectionsApi extends BaseAPI {
|
|
2733
|
+
/**
|
|
2734
|
+
*
|
|
2735
|
+
* @summary Get website collection
|
|
2736
|
+
* @param {CollectionsApiGetCollectionRequest} requestParameters Request parameters.
|
|
2737
|
+
* @param {*} [options] Override http request option.
|
|
2738
|
+
* @throws {RequiredError}
|
|
2739
|
+
* @memberof CollectionsApi
|
|
2740
|
+
*/
|
|
2741
|
+
getCollection(requestParameters: CollectionsApiGetCollectionRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Collection, any>>;
|
|
2536
2742
|
/**
|
|
2537
2743
|
*
|
|
2538
2744
|
* @summary List website collections
|
|
@@ -2843,6 +3049,15 @@ export declare class MenuApi extends BaseAPI {
|
|
|
2843
3049
|
* @export
|
|
2844
3050
|
*/
|
|
2845
3051
|
export declare const PagesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
3052
|
+
/**
|
|
3053
|
+
*
|
|
3054
|
+
* @summary Get website page
|
|
3055
|
+
* @param {string} project What project it is
|
|
3056
|
+
* @param {string} pageId Page\'s unique identifier
|
|
3057
|
+
* @param {*} [options] Override http request option.
|
|
3058
|
+
* @throws {RequiredError}
|
|
3059
|
+
*/
|
|
3060
|
+
getPage: (project: string, pageId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
2846
3061
|
/**
|
|
2847
3062
|
*
|
|
2848
3063
|
* @summary List website pages
|
|
@@ -2891,6 +3106,15 @@ export declare const PagesApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
2891
3106
|
* @export
|
|
2892
3107
|
*/
|
|
2893
3108
|
export declare const PagesApiFp: (configuration?: Configuration) => {
|
|
3109
|
+
/**
|
|
3110
|
+
*
|
|
3111
|
+
* @summary Get website page
|
|
3112
|
+
* @param {string} project What project it is
|
|
3113
|
+
* @param {string} pageId Page\'s unique identifier
|
|
3114
|
+
* @param {*} [options] Override http request option.
|
|
3115
|
+
* @throws {RequiredError}
|
|
3116
|
+
*/
|
|
3117
|
+
getPage(project: string, pageId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Page>>;
|
|
2894
3118
|
/**
|
|
2895
3119
|
*
|
|
2896
3120
|
* @summary List website pages
|
|
@@ -2939,6 +3163,14 @@ export declare const PagesApiFp: (configuration?: Configuration) => {
|
|
|
2939
3163
|
* @export
|
|
2940
3164
|
*/
|
|
2941
3165
|
export declare const PagesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
3166
|
+
/**
|
|
3167
|
+
*
|
|
3168
|
+
* @summary Get website page
|
|
3169
|
+
* @param {PagesApiGetPageRequest} requestParameters Request parameters.
|
|
3170
|
+
* @param {*} [options] Override http request option.
|
|
3171
|
+
* @throws {RequiredError}
|
|
3172
|
+
*/
|
|
3173
|
+
getPage(requestParameters: PagesApiGetPageRequest, options?: RawAxiosRequestConfig): AxiosPromise<Page>;
|
|
2942
3174
|
/**
|
|
2943
3175
|
*
|
|
2944
3176
|
* @summary List website pages
|
|
@@ -2972,6 +3204,25 @@ export declare const PagesApiFactory: (configuration?: Configuration, basePath?:
|
|
|
2972
3204
|
*/
|
|
2973
3205
|
updatePages(requestParameters: PagesApiUpdatePagesRequest, options?: RawAxiosRequestConfig): AxiosPromise<PagesResponse>;
|
|
2974
3206
|
};
|
|
3207
|
+
/**
|
|
3208
|
+
* Request parameters for getPage operation in PagesApi.
|
|
3209
|
+
* @export
|
|
3210
|
+
* @interface PagesApiGetPageRequest
|
|
3211
|
+
*/
|
|
3212
|
+
export interface PagesApiGetPageRequest {
|
|
3213
|
+
/**
|
|
3214
|
+
* What project it is
|
|
3215
|
+
* @type {string}
|
|
3216
|
+
* @memberof PagesApiGetPage
|
|
3217
|
+
*/
|
|
3218
|
+
readonly project: string;
|
|
3219
|
+
/**
|
|
3220
|
+
* Page\'s unique identifier
|
|
3221
|
+
* @type {string}
|
|
3222
|
+
* @memberof PagesApiGetPage
|
|
3223
|
+
*/
|
|
3224
|
+
readonly pageId: string;
|
|
3225
|
+
}
|
|
2975
3226
|
/**
|
|
2976
3227
|
* Request parameters for listPages operation in PagesApi.
|
|
2977
3228
|
* @export
|
|
@@ -3091,6 +3342,15 @@ export interface PagesApiUpdatePagesRequest {
|
|
|
3091
3342
|
* @extends {BaseAPI}
|
|
3092
3343
|
*/
|
|
3093
3344
|
export declare class PagesApi extends BaseAPI {
|
|
3345
|
+
/**
|
|
3346
|
+
*
|
|
3347
|
+
* @summary Get website page
|
|
3348
|
+
* @param {PagesApiGetPageRequest} requestParameters Request parameters.
|
|
3349
|
+
* @param {*} [options] Override http request option.
|
|
3350
|
+
* @throws {RequiredError}
|
|
3351
|
+
* @memberof PagesApi
|
|
3352
|
+
*/
|
|
3353
|
+
getPage(requestParameters: PagesApiGetPageRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Page, any>>;
|
|
3094
3354
|
/**
|
|
3095
3355
|
*
|
|
3096
3356
|
* @summary List website pages
|