@teemill/website 0.22.0 → 0.22.2

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 CHANGED
@@ -1,4 +1,4 @@
1
- ## @teemill/website@0.22.0
1
+ ## @teemill/website@0.22.2
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.22.0 --save
39
+ npm install @teemill/website@0.22.2 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
package/api.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Website API
5
5
  * Manage your PodOS Website
6
6
  *
7
- * The version of the OpenAPI document: 0.22.0
7
+ * The version of the OpenAPI document: 0.22.2
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -417,7 +417,7 @@ export interface Footer {
417
417
  * @type {Array<FooterItem>}
418
418
  * @memberof Footer
419
419
  */
420
- 'items'?: Array<FooterItem>;
420
+ 'items': Array<FooterItem>;
421
421
  }
422
422
  /**
423
423
  *
@@ -430,25 +430,25 @@ export interface FooterItem {
430
430
  * @type {string}
431
431
  * @memberof FooterItem
432
432
  */
433
- 'id'?: string;
433
+ 'id': string;
434
434
  /**
435
435
  *
436
436
  * @type {string}
437
437
  * @memberof FooterItem
438
438
  */
439
- 'text'?: string;
439
+ 'text': string;
440
440
  /**
441
441
  *
442
442
  * @type {string}
443
443
  * @memberof FooterItem
444
444
  */
445
- 'link'?: string;
445
+ 'link': string;
446
446
  /**
447
447
  *
448
448
  * @type {number}
449
449
  * @memberof FooterItem
450
450
  */
451
- 'order'?: number;
451
+ 'order': number;
452
452
  }
453
453
  /**
454
454
  * Image description
@@ -4562,7 +4562,7 @@ export const FooterApiFp = function(configuration?: Configuration) {
4562
4562
  * @param {*} [options] Override http request option.
4563
4563
  * @throws {RequiredError}
4564
4564
  */
4565
- async getFooter(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Footer>>> {
4565
+ async getFooter(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Footer>> {
4566
4566
  const localVarAxiosArgs = await localVarAxiosParamCreator.getFooter(project, options);
4567
4567
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
4568
4568
  const localVarOperationServerBasePath = operationServerMap['FooterApi.getFooter']?.[localVarOperationServerIndex]?.url;
@@ -4576,7 +4576,7 @@ export const FooterApiFp = function(configuration?: Configuration) {
4576
4576
  * @param {*} [options] Override http request option.
4577
4577
  * @throws {RequiredError}
4578
4578
  */
4579
- async updateFooter(project: string, updateFooterRequest?: UpdateFooterRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Footer>>> {
4579
+ async updateFooter(project: string, updateFooterRequest?: UpdateFooterRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Footer>> {
4580
4580
  const localVarAxiosArgs = await localVarAxiosParamCreator.updateFooter(project, updateFooterRequest, options);
4581
4581
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
4582
4582
  const localVarOperationServerBasePath = operationServerMap['FooterApi.updateFooter']?.[localVarOperationServerIndex]?.url;
@@ -4599,7 +4599,7 @@ export const FooterApiFactory = function (configuration?: Configuration, basePat
4599
4599
  * @param {*} [options] Override http request option.
4600
4600
  * @throws {RequiredError}
4601
4601
  */
4602
- getFooter(requestParameters: FooterApiGetFooterRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<Footer>> {
4602
+ getFooter(requestParameters: FooterApiGetFooterRequest, options?: RawAxiosRequestConfig): AxiosPromise<Footer> {
4603
4603
  return localVarFp.getFooter(requestParameters.project, options).then((request) => request(axios, basePath));
4604
4604
  },
4605
4605
  /**
@@ -4609,7 +4609,7 @@ export const FooterApiFactory = function (configuration?: Configuration, basePat
4609
4609
  * @param {*} [options] Override http request option.
4610
4610
  * @throws {RequiredError}
4611
4611
  */
4612
- updateFooter(requestParameters: FooterApiUpdateFooterRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<Footer>> {
4612
+ updateFooter(requestParameters: FooterApiUpdateFooterRequest, options?: RawAxiosRequestConfig): AxiosPromise<Footer> {
4613
4613
  return localVarFp.updateFooter(requestParameters.project, requestParameters.updateFooterRequest, options).then((request) => request(axios, basePath));
4614
4614
  },
4615
4615
  };
package/base.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Website API
5
5
  * Manage your PodOS Website
6
6
  *
7
- * The version of the OpenAPI document: 0.22.0
7
+ * The version of the OpenAPI document: 0.22.2
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 API
5
5
  * Manage your PodOS Website
6
6
  *
7
- * The version of the OpenAPI document: 0.22.0
7
+ * The version of the OpenAPI document: 0.22.2
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/configuration.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Website API
5
5
  * Manage your PodOS Website
6
6
  *
7
- * The version of the OpenAPI document: 0.22.0
7
+ * The version of the OpenAPI document: 0.22.2
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/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.22.0
5
+ * The version of the OpenAPI document: 0.22.2
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -400,7 +400,7 @@ export interface Footer {
400
400
  * @type {Array<FooterItem>}
401
401
  * @memberof Footer
402
402
  */
403
- 'items'?: Array<FooterItem>;
403
+ 'items': Array<FooterItem>;
404
404
  }
405
405
  /**
406
406
  *
@@ -413,25 +413,25 @@ export interface FooterItem {
413
413
  * @type {string}
414
414
  * @memberof FooterItem
415
415
  */
416
- 'id'?: string;
416
+ 'id': string;
417
417
  /**
418
418
  *
419
419
  * @type {string}
420
420
  * @memberof FooterItem
421
421
  */
422
- 'text'?: string;
422
+ 'text': string;
423
423
  /**
424
424
  *
425
425
  * @type {string}
426
426
  * @memberof FooterItem
427
427
  */
428
- 'link'?: string;
428
+ 'link': string;
429
429
  /**
430
430
  *
431
431
  * @type {number}
432
432
  * @memberof FooterItem
433
433
  */
434
- 'order'?: number;
434
+ 'order': number;
435
435
  }
436
436
  /**
437
437
  * Image description
@@ -3566,7 +3566,7 @@ export declare const FooterApiFp: (configuration?: Configuration) => {
3566
3566
  * @param {*} [options] Override http request option.
3567
3567
  * @throws {RequiredError}
3568
3568
  */
3569
- getFooter(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Footer>>>;
3569
+ getFooter(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Footer>>;
3570
3570
  /**
3571
3571
  * Update a footer
3572
3572
  * @summary Update footer
@@ -3575,7 +3575,7 @@ export declare const FooterApiFp: (configuration?: Configuration) => {
3575
3575
  * @param {*} [options] Override http request option.
3576
3576
  * @throws {RequiredError}
3577
3577
  */
3578
- updateFooter(project: string, updateFooterRequest?: UpdateFooterRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Footer>>>;
3578
+ updateFooter(project: string, updateFooterRequest?: UpdateFooterRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Footer>>;
3579
3579
  };
3580
3580
  /**
3581
3581
  * FooterApi - factory interface
@@ -3589,7 +3589,7 @@ export declare const FooterApiFactory: (configuration?: Configuration, basePath?
3589
3589
  * @param {*} [options] Override http request option.
3590
3590
  * @throws {RequiredError}
3591
3591
  */
3592
- getFooter(requestParameters: FooterApiGetFooterRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<Footer>>;
3592
+ getFooter(requestParameters: FooterApiGetFooterRequest, options?: RawAxiosRequestConfig): AxiosPromise<Footer>;
3593
3593
  /**
3594
3594
  * Update a footer
3595
3595
  * @summary Update footer
@@ -3597,7 +3597,7 @@ export declare const FooterApiFactory: (configuration?: Configuration, basePath?
3597
3597
  * @param {*} [options] Override http request option.
3598
3598
  * @throws {RequiredError}
3599
3599
  */
3600
- updateFooter(requestParameters: FooterApiUpdateFooterRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<Footer>>;
3600
+ updateFooter(requestParameters: FooterApiUpdateFooterRequest, options?: RawAxiosRequestConfig): AxiosPromise<Footer>;
3601
3601
  };
3602
3602
  /**
3603
3603
  * Request parameters for getFooter operation in FooterApi.
@@ -3646,7 +3646,7 @@ export declare class FooterApi extends BaseAPI {
3646
3646
  * @throws {RequiredError}
3647
3647
  * @memberof FooterApi
3648
3648
  */
3649
- getFooter(requestParameters: FooterApiGetFooterRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Footer[], any>>;
3649
+ getFooter(requestParameters: FooterApiGetFooterRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Footer, any>>;
3650
3650
  /**
3651
3651
  * Update a footer
3652
3652
  * @summary Update footer
@@ -3655,7 +3655,7 @@ export declare class FooterApi extends BaseAPI {
3655
3655
  * @throws {RequiredError}
3656
3656
  * @memberof FooterApi
3657
3657
  */
3658
- updateFooter(requestParameters: FooterApiUpdateFooterRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Footer[], any>>;
3658
+ updateFooter(requestParameters: FooterApiUpdateFooterRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Footer, any>>;
3659
3659
  }
3660
3660
  /**
3661
3661
  * MenuApi - axios parameter creator
package/dist/api.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Website API
6
6
  * Manage your PodOS Website
7
7
  *
8
- * The version of the OpenAPI document: 0.22.0
8
+ * The version of the OpenAPI document: 0.22.2
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/base.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.22.0
5
+ * The version of the OpenAPI document: 0.22.2
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/base.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Website API
6
6
  * Manage your PodOS Website
7
7
  *
8
- * The version of the OpenAPI document: 0.22.0
8
+ * The version of the OpenAPI document: 0.22.2
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/common.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.22.0
5
+ * The version of the OpenAPI document: 0.22.2
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/common.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Website API
6
6
  * Manage your PodOS Website
7
7
  *
8
- * The version of the OpenAPI document: 0.22.0
8
+ * The version of the OpenAPI document: 0.22.2
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Website API
3
3
  * Manage your PodOS Website
4
4
  *
5
- * The version of the OpenAPI document: 0.22.0
5
+ * The version of the OpenAPI document: 0.22.2
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -5,7 +5,7 @@
5
5
  * Website API
6
6
  * Manage your PodOS Website
7
7
  *
8
- * The version of the OpenAPI document: 0.22.0
8
+ * The version of the OpenAPI document: 0.22.2
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
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.22.0
5
+ * The version of the OpenAPI document: 0.22.2
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -400,7 +400,7 @@ export interface Footer {
400
400
  * @type {Array<FooterItem>}
401
401
  * @memberof Footer
402
402
  */
403
- 'items'?: Array<FooterItem>;
403
+ 'items': Array<FooterItem>;
404
404
  }
405
405
  /**
406
406
  *
@@ -413,25 +413,25 @@ export interface FooterItem {
413
413
  * @type {string}
414
414
  * @memberof FooterItem
415
415
  */
416
- 'id'?: string;
416
+ 'id': string;
417
417
  /**
418
418
  *
419
419
  * @type {string}
420
420
  * @memberof FooterItem
421
421
  */
422
- 'text'?: string;
422
+ 'text': string;
423
423
  /**
424
424
  *
425
425
  * @type {string}
426
426
  * @memberof FooterItem
427
427
  */
428
- 'link'?: string;
428
+ 'link': string;
429
429
  /**
430
430
  *
431
431
  * @type {number}
432
432
  * @memberof FooterItem
433
433
  */
434
- 'order'?: number;
434
+ 'order': number;
435
435
  }
436
436
  /**
437
437
  * Image description
@@ -3566,7 +3566,7 @@ export declare const FooterApiFp: (configuration?: Configuration) => {
3566
3566
  * @param {*} [options] Override http request option.
3567
3567
  * @throws {RequiredError}
3568
3568
  */
3569
- getFooter(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Footer>>>;
3569
+ getFooter(project: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Footer>>;
3570
3570
  /**
3571
3571
  * Update a footer
3572
3572
  * @summary Update footer
@@ -3575,7 +3575,7 @@ export declare const FooterApiFp: (configuration?: Configuration) => {
3575
3575
  * @param {*} [options] Override http request option.
3576
3576
  * @throws {RequiredError}
3577
3577
  */
3578
- updateFooter(project: string, updateFooterRequest?: UpdateFooterRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<Footer>>>;
3578
+ updateFooter(project: string, updateFooterRequest?: UpdateFooterRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Footer>>;
3579
3579
  };
3580
3580
  /**
3581
3581
  * FooterApi - factory interface
@@ -3589,7 +3589,7 @@ export declare const FooterApiFactory: (configuration?: Configuration, basePath?
3589
3589
  * @param {*} [options] Override http request option.
3590
3590
  * @throws {RequiredError}
3591
3591
  */
3592
- getFooter(requestParameters: FooterApiGetFooterRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<Footer>>;
3592
+ getFooter(requestParameters: FooterApiGetFooterRequest, options?: RawAxiosRequestConfig): AxiosPromise<Footer>;
3593
3593
  /**
3594
3594
  * Update a footer
3595
3595
  * @summary Update footer
@@ -3597,7 +3597,7 @@ export declare const FooterApiFactory: (configuration?: Configuration, basePath?
3597
3597
  * @param {*} [options] Override http request option.
3598
3598
  * @throws {RequiredError}
3599
3599
  */
3600
- updateFooter(requestParameters: FooterApiUpdateFooterRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<Footer>>;
3600
+ updateFooter(requestParameters: FooterApiUpdateFooterRequest, options?: RawAxiosRequestConfig): AxiosPromise<Footer>;
3601
3601
  };
3602
3602
  /**
3603
3603
  * Request parameters for getFooter operation in FooterApi.
@@ -3646,7 +3646,7 @@ export declare class FooterApi extends BaseAPI {
3646
3646
  * @throws {RequiredError}
3647
3647
  * @memberof FooterApi
3648
3648
  */
3649
- getFooter(requestParameters: FooterApiGetFooterRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Footer[], any>>;
3649
+ getFooter(requestParameters: FooterApiGetFooterRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Footer, any>>;
3650
3650
  /**
3651
3651
  * Update a footer
3652
3652
  * @summary Update footer
@@ -3655,7 +3655,7 @@ export declare class FooterApi extends BaseAPI {
3655
3655
  * @throws {RequiredError}
3656
3656
  * @memberof FooterApi
3657
3657
  */
3658
- updateFooter(requestParameters: FooterApiUpdateFooterRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Footer[], any>>;
3658
+ updateFooter(requestParameters: FooterApiUpdateFooterRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<Footer, any>>;
3659
3659
  }
3660
3660
  /**
3661
3661
  * MenuApi - axios parameter creator
package/dist/esm/api.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * Website API
5
5
  * Manage your PodOS Website
6
6
  *
7
- * The version of the OpenAPI document: 0.22.0
7
+ * The version of the OpenAPI document: 0.22.2
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Website API
3
3
  * Manage your PodOS Website
4
4
  *
5
- * The version of the OpenAPI document: 0.22.0
5
+ * The version of the OpenAPI document: 0.22.2
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/base.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * Website API
5
5
  * Manage your PodOS Website
6
6
  *
7
- * The version of the OpenAPI document: 0.22.0
7
+ * The version of the OpenAPI document: 0.22.2
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Website API
3
3
  * Manage your PodOS Website
4
4
  *
5
- * The version of the OpenAPI document: 0.22.0
5
+ * The version of the OpenAPI document: 0.22.2
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Website API
5
5
  * Manage your PodOS Website
6
6
  *
7
- * The version of the OpenAPI document: 0.22.0
7
+ * The version of the OpenAPI document: 0.22.2
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Website API
3
3
  * Manage your PodOS Website
4
4
  *
5
- * The version of the OpenAPI document: 0.22.0
5
+ * The version of the OpenAPI document: 0.22.2
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -4,7 +4,7 @@
4
4
  * Website API
5
5
  * Manage your PodOS Website
6
6
  *
7
- * The version of the OpenAPI document: 0.22.0
7
+ * The version of the OpenAPI document: 0.22.2
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Website API
3
3
  * Manage your PodOS Website
4
4
  *
5
- * The version of the OpenAPI document: 0.22.0
5
+ * The version of the OpenAPI document: 0.22.2
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/index.js CHANGED
@@ -4,7 +4,7 @@
4
4
  * Website API
5
5
  * Manage your PodOS Website
6
6
  *
7
- * The version of the OpenAPI document: 0.22.0
7
+ * The version of the OpenAPI document: 0.22.2
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/index.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.22.0
5
+ * The version of the OpenAPI document: 0.22.2
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/index.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Website API
6
6
  * Manage your PodOS Website
7
7
  *
8
- * The version of the OpenAPI document: 0.22.0
8
+ * The version of the OpenAPI document: 0.22.2
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/docs/Footer.md CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
- **items** | [**Array&lt;FooterItem&gt;**](FooterItem.md) | | [optional] [default to undefined]
8
+ **items** | [**Array&lt;FooterItem&gt;**](FooterItem.md) | | [default to undefined]
9
9
 
10
10
  ## Example
11
11
 
package/docs/FooterApi.md CHANGED
@@ -8,7 +8,7 @@ All URIs are relative to *https://api.localhost:8080*
8
8
  |[**updateFooter**](#updatefooter) | **PUT** /v1/website/footer | Update footer|
9
9
 
10
10
  # **getFooter**
11
- > Array<Footer> getFooter()
11
+ > Footer getFooter()
12
12
 
13
13
  Get the footer for the project
14
14
 
@@ -39,7 +39,7 @@ const { status, data } = await apiInstance.getFooter(
39
39
 
40
40
  ### Return type
41
41
 
42
- **Array<Footer>**
42
+ **Footer**
43
43
 
44
44
  ### Authorization
45
45
 
@@ -63,7 +63,7 @@ const { status, data } = await apiInstance.getFooter(
63
63
  [[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
64
64
 
65
65
  # **updateFooter**
66
- > Array<Footer> updateFooter()
66
+ > Footer updateFooter()
67
67
 
68
68
  Update a footer
69
69
 
@@ -98,7 +98,7 @@ const { status, data } = await apiInstance.updateFooter(
98
98
 
99
99
  ### Return type
100
100
 
101
- **Array<Footer>**
101
+ **Footer**
102
102
 
103
103
  ### Authorization
104
104
 
@@ -5,10 +5,10 @@
5
5
 
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
- **id** | **string** | | [optional] [default to undefined]
9
- **text** | **string** | | [optional] [default to undefined]
10
- **link** | **string** | | [optional] [default to undefined]
11
- **order** | **number** | | [optional] [default to undefined]
8
+ **id** | **string** | | [default to undefined]
9
+ **text** | **string** | | [default to undefined]
10
+ **link** | **string** | | [default to undefined]
11
+ **order** | **number** | | [default to undefined]
12
12
 
13
13
  ## Example
14
14
 
package/index.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Website API
5
5
  * Manage your PodOS Website
6
6
  *
7
- * The version of the OpenAPI document: 0.22.0
7
+ * The version of the OpenAPI document: 0.22.2
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teemill/website",
3
- "version": "0.22.0",
3
+ "version": "0.22.2",
4
4
  "description": "OpenAPI client for @teemill/website",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {