@teemill/website 0.9.1 → 0.11.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 CHANGED
@@ -1,4 +1,4 @@
1
- ## @teemill/website@0.9.1
1
+ ## @teemill/website@0.11.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.9.1 --save
39
+ npm install @teemill/website@0.11.0 --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.9.1
7
+ * The version of the OpenAPI document: 0.11.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -504,12 +504,6 @@ export interface Page {
504
504
  * @memberof Page
505
505
  */
506
506
  'slug'?: string;
507
- /**
508
- *
509
- * @type {SeoMetadata}
510
- * @memberof Page
511
- */
512
- 'seoMetadata'?: SeoMetadata;
513
507
  /**
514
508
  *
515
509
  * @type {TargetSearchPhraseData}
@@ -1041,7 +1035,7 @@ export interface SubmenuInnerImageButton {
1041
1035
  * @type {string}
1042
1036
  * @memberof SubmenuInnerImageButton
1043
1037
  */
1044
- 'borderRadius': string | null;
1038
+ 'borderRadius': SubmenuInnerImageButtonBorderRadiusEnum | null;
1045
1039
  /**
1046
1040
  *
1047
1041
  * @type {string}
@@ -1050,6 +1044,14 @@ export interface SubmenuInnerImageButton {
1050
1044
  'width': SubmenuInnerImageButtonWidthEnum | null;
1051
1045
  }
1052
1046
 
1047
+ export const SubmenuInnerImageButtonBorderRadiusEnum = {
1048
+ Sharp: 'sharp',
1049
+ Smooth: 'smooth',
1050
+ Rounded: 'rounded',
1051
+ Circle: 'circle'
1052
+ } as const;
1053
+
1054
+ export type SubmenuInnerImageButtonBorderRadiusEnum = typeof SubmenuInnerImageButtonBorderRadiusEnum[keyof typeof SubmenuInnerImageButtonBorderRadiusEnum];
1053
1055
  export const SubmenuInnerImageButtonWidthEnum = {
1054
1056
  Auto: 'auto',
1055
1057
  Full: 'full'
@@ -1557,13 +1559,13 @@ export interface UpdateMenuRequestItemSubmenuInnerImage {
1557
1559
  * @type {UpdateMenuRequestItemSubmenuInnerImageText}
1558
1560
  * @memberof UpdateMenuRequestItemSubmenuInnerImage
1559
1561
  */
1560
- 'text'?: UpdateMenuRequestItemSubmenuInnerImageText;
1562
+ 'text'?: UpdateMenuRequestItemSubmenuInnerImageText | null;
1561
1563
  /**
1562
1564
  *
1563
1565
  * @type {UpdateMenuRequestItemSubmenuInnerImageButton}
1564
1566
  * @memberof UpdateMenuRequestItemSubmenuInnerImage
1565
1567
  */
1566
- 'button'?: UpdateMenuRequestItemSubmenuInnerImageButton;
1568
+ 'button'?: UpdateMenuRequestItemSubmenuInnerImageButton | null;
1567
1569
  }
1568
1570
  /**
1569
1571
  *
@@ -1721,12 +1723,6 @@ export interface UpdatePageRequest {
1721
1723
  * @memberof UpdatePageRequest
1722
1724
  */
1723
1725
  'slug'?: string;
1724
- /**
1725
- *
1726
- * @type {UpdatePagesRequestPagesInnerSeoMetadata}
1727
- * @memberof UpdatePageRequest
1728
- */
1729
- 'seoMetadata'?: UpdatePagesRequestPagesInnerSeoMetadata;
1730
1726
  /**
1731
1727
  * The primary target search phrase for the page that you wish to rank for in search engine results.
1732
1728
  * @type {string}
@@ -1783,12 +1779,6 @@ export interface UpdatePagesRequestPagesInner {
1783
1779
  * @memberof UpdatePagesRequestPagesInner
1784
1780
  */
1785
1781
  'slug'?: string;
1786
- /**
1787
- *
1788
- * @type {UpdatePagesRequestPagesInnerSeoMetadata}
1789
- * @memberof UpdatePagesRequestPagesInner
1790
- */
1791
- 'seoMetadata'?: UpdatePagesRequestPagesInnerSeoMetadata;
1792
1782
  /**
1793
1783
  * The primary target search phrase for the page that you wish to rank for in search engine results.
1794
1784
  * @type {string}
@@ -1802,25 +1792,6 @@ export interface UpdatePagesRequestPagesInner {
1802
1792
  */
1803
1793
  'targetSearchPhraseSynonyms'?: Array<string>;
1804
1794
  }
1805
- /**
1806
- *
1807
- * @export
1808
- * @interface UpdatePagesRequestPagesInnerSeoMetadata
1809
- */
1810
- export interface UpdatePagesRequestPagesInnerSeoMetadata {
1811
- /**
1812
- * Meta title for the page. This appears in search engine results and social shares. If not provided, the page title will be used.
1813
- * @type {string}
1814
- * @memberof UpdatePagesRequestPagesInnerSeoMetadata
1815
- */
1816
- 'title'?: string | null;
1817
- /**
1818
- * Meta description for the page. This appears in search engine results and social shares. If not provided, the page description will be used.
1819
- * @type {string}
1820
- * @memberof UpdatePagesRequestPagesInnerSeoMetadata
1821
- */
1822
- 'description'?: string | null;
1823
- }
1824
1795
  /**
1825
1796
  *
1826
1797
  * @export
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.9.1
7
+ * The version of the OpenAPI document: 0.11.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/common.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Website API
5
5
  * Manage your PodOS Website
6
6
  *
7
- * The version of the OpenAPI document: 0.9.1
7
+ * The version of the OpenAPI document: 0.11.0
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.9.1
7
+ * The version of the OpenAPI document: 0.11.0
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.9.1
5
+ * The version of the OpenAPI document: 0.11.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -487,12 +487,6 @@ export interface Page {
487
487
  * @memberof Page
488
488
  */
489
489
  'slug'?: string;
490
- /**
491
- *
492
- * @type {SeoMetadata}
493
- * @memberof Page
494
- */
495
- 'seoMetadata'?: SeoMetadata;
496
490
  /**
497
491
  *
498
492
  * @type {TargetSearchPhraseData}
@@ -1014,7 +1008,7 @@ export interface SubmenuInnerImageButton {
1014
1008
  * @type {string}
1015
1009
  * @memberof SubmenuInnerImageButton
1016
1010
  */
1017
- 'borderRadius': string | null;
1011
+ 'borderRadius': SubmenuInnerImageButtonBorderRadiusEnum | null;
1018
1012
  /**
1019
1013
  *
1020
1014
  * @type {string}
@@ -1022,6 +1016,13 @@ export interface SubmenuInnerImageButton {
1022
1016
  */
1023
1017
  'width': SubmenuInnerImageButtonWidthEnum | null;
1024
1018
  }
1019
+ export declare const SubmenuInnerImageButtonBorderRadiusEnum: {
1020
+ readonly Sharp: "sharp";
1021
+ readonly Smooth: "smooth";
1022
+ readonly Rounded: "rounded";
1023
+ readonly Circle: "circle";
1024
+ };
1025
+ export type SubmenuInnerImageButtonBorderRadiusEnum = typeof SubmenuInnerImageButtonBorderRadiusEnum[keyof typeof SubmenuInnerImageButtonBorderRadiusEnum];
1025
1026
  export declare const SubmenuInnerImageButtonWidthEnum: {
1026
1027
  readonly Auto: "auto";
1027
1028
  readonly Full: "full";
@@ -1520,13 +1521,13 @@ export interface UpdateMenuRequestItemSubmenuInnerImage {
1520
1521
  * @type {UpdateMenuRequestItemSubmenuInnerImageText}
1521
1522
  * @memberof UpdateMenuRequestItemSubmenuInnerImage
1522
1523
  */
1523
- 'text'?: UpdateMenuRequestItemSubmenuInnerImageText;
1524
+ 'text'?: UpdateMenuRequestItemSubmenuInnerImageText | null;
1524
1525
  /**
1525
1526
  *
1526
1527
  * @type {UpdateMenuRequestItemSubmenuInnerImageButton}
1527
1528
  * @memberof UpdateMenuRequestItemSubmenuInnerImage
1528
1529
  */
1529
- 'button'?: UpdateMenuRequestItemSubmenuInnerImageButton;
1530
+ 'button'?: UpdateMenuRequestItemSubmenuInnerImageButton | null;
1530
1531
  }
1531
1532
  /**
1532
1533
  *
@@ -1676,12 +1677,6 @@ export interface UpdatePageRequest {
1676
1677
  * @memberof UpdatePageRequest
1677
1678
  */
1678
1679
  'slug'?: string;
1679
- /**
1680
- *
1681
- * @type {UpdatePagesRequestPagesInnerSeoMetadata}
1682
- * @memberof UpdatePageRequest
1683
- */
1684
- 'seoMetadata'?: UpdatePagesRequestPagesInnerSeoMetadata;
1685
1680
  /**
1686
1681
  * The primary target search phrase for the page that you wish to rank for in search engine results.
1687
1682
  * @type {string}
@@ -1738,12 +1733,6 @@ export interface UpdatePagesRequestPagesInner {
1738
1733
  * @memberof UpdatePagesRequestPagesInner
1739
1734
  */
1740
1735
  'slug'?: string;
1741
- /**
1742
- *
1743
- * @type {UpdatePagesRequestPagesInnerSeoMetadata}
1744
- * @memberof UpdatePagesRequestPagesInner
1745
- */
1746
- 'seoMetadata'?: UpdatePagesRequestPagesInnerSeoMetadata;
1747
1736
  /**
1748
1737
  * The primary target search phrase for the page that you wish to rank for in search engine results.
1749
1738
  * @type {string}
@@ -1757,25 +1746,6 @@ export interface UpdatePagesRequestPagesInner {
1757
1746
  */
1758
1747
  'targetSearchPhraseSynonyms'?: Array<string>;
1759
1748
  }
1760
- /**
1761
- *
1762
- * @export
1763
- * @interface UpdatePagesRequestPagesInnerSeoMetadata
1764
- */
1765
- export interface UpdatePagesRequestPagesInnerSeoMetadata {
1766
- /**
1767
- * Meta title for the page. This appears in search engine results and social shares. If not provided, the page title will be used.
1768
- * @type {string}
1769
- * @memberof UpdatePagesRequestPagesInnerSeoMetadata
1770
- */
1771
- 'title'?: string | null;
1772
- /**
1773
- * Meta description for the page. This appears in search engine results and social shares. If not provided, the page description will be used.
1774
- * @type {string}
1775
- * @memberof UpdatePagesRequestPagesInnerSeoMetadata
1776
- */
1777
- 'description'?: string | null;
1778
- }
1779
1749
  /**
1780
1750
  *
1781
1751
  * @export
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.9.1
8
+ * The version of the OpenAPI document: 0.11.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -22,7 +22,7 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
22
22
  });
23
23
  };
24
24
  Object.defineProperty(exports, "__esModule", { value: true });
25
- exports.RoutesApi = exports.RoutesApiFactory = exports.RoutesApiFp = exports.RoutesApiAxiosParamCreator = exports.PaymentApi = exports.PaymentApiFactory = exports.PaymentApiFp = exports.PaymentApiAxiosParamCreator = exports.PagesApi = exports.PagesApiFactory = exports.PagesApiFp = exports.PagesApiAxiosParamCreator = exports.MenuApi = exports.MenuApiFactory = exports.MenuApiFp = exports.MenuApiAxiosParamCreator = exports.CrossSellApi = exports.CrossSellApiFactory = exports.CrossSellApiFp = exports.CrossSellApiAxiosParamCreator = exports.CollectionsApi = exports.CollectionsApiFactory = exports.CollectionsApiFp = exports.CollectionsApiAxiosParamCreator = exports.BlogsApi = exports.BlogsApiFactory = exports.BlogsApiFp = exports.BlogsApiAxiosParamCreator = exports.UpdateMenuRequestItemSubmenuInnerImageTextShadowEnum = exports.UpdateMenuRequestItemSubmenuInnerImageTextAlignmentEnum = exports.UpdateMenuRequestItemSubmenuInnerImageButtonWidthEnum = exports.UpdateMenuRequestItemSubmenuInnerImageButtonBorderRadiusEnum = exports.UpdateMenuRequestItemSubmenuInnerModeEnum = exports.SubmenuInnerImageTextShadowEnum = exports.SubmenuInnerImageTextAlignmentEnum = exports.SubmenuInnerImageButtonWidthEnum = exports.SubmenuInnerImageBorderRadiusEnum = exports.SubmenuInnerModeEnum = exports.PriceCurrencyCodeEnum = exports.PaymentAccountMethodEnum = exports.AttributeThumbnailTypeEnum = exports.ApplicationPlacementEnum = exports.ApplicationTechnologyEnum = void 0;
25
+ exports.RoutesApi = exports.RoutesApiFactory = exports.RoutesApiFp = exports.RoutesApiAxiosParamCreator = exports.PaymentApi = exports.PaymentApiFactory = exports.PaymentApiFp = exports.PaymentApiAxiosParamCreator = exports.PagesApi = exports.PagesApiFactory = exports.PagesApiFp = exports.PagesApiAxiosParamCreator = exports.MenuApi = exports.MenuApiFactory = exports.MenuApiFp = exports.MenuApiAxiosParamCreator = exports.CrossSellApi = exports.CrossSellApiFactory = exports.CrossSellApiFp = exports.CrossSellApiAxiosParamCreator = exports.CollectionsApi = exports.CollectionsApiFactory = exports.CollectionsApiFp = exports.CollectionsApiAxiosParamCreator = exports.BlogsApi = exports.BlogsApiFactory = exports.BlogsApiFp = exports.BlogsApiAxiosParamCreator = exports.UpdateMenuRequestItemSubmenuInnerImageTextShadowEnum = exports.UpdateMenuRequestItemSubmenuInnerImageTextAlignmentEnum = exports.UpdateMenuRequestItemSubmenuInnerImageButtonWidthEnum = exports.UpdateMenuRequestItemSubmenuInnerImageButtonBorderRadiusEnum = exports.UpdateMenuRequestItemSubmenuInnerModeEnum = exports.SubmenuInnerImageTextShadowEnum = exports.SubmenuInnerImageTextAlignmentEnum = exports.SubmenuInnerImageButtonWidthEnum = exports.SubmenuInnerImageButtonBorderRadiusEnum = exports.SubmenuInnerImageBorderRadiusEnum = exports.SubmenuInnerModeEnum = exports.PriceCurrencyCodeEnum = exports.PaymentAccountMethodEnum = exports.AttributeThumbnailTypeEnum = exports.ApplicationPlacementEnum = exports.ApplicationTechnologyEnum = void 0;
26
26
  const axios_1 = require("axios");
27
27
  // Some imports not used depending on template conditions
28
28
  // @ts-ignore
@@ -69,6 +69,12 @@ exports.SubmenuInnerImageBorderRadiusEnum = {
69
69
  Rounded: 'rounded',
70
70
  Circle: 'circle'
71
71
  };
72
+ exports.SubmenuInnerImageButtonBorderRadiusEnum = {
73
+ Sharp: 'sharp',
74
+ Smooth: 'smooth',
75
+ Rounded: 'rounded',
76
+ Circle: 'circle'
77
+ };
72
78
  exports.SubmenuInnerImageButtonWidthEnum = {
73
79
  Auto: 'auto',
74
80
  Full: 'full'
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.9.1
5
+ * The version of the OpenAPI document: 0.11.0
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.9.1
8
+ * The version of the OpenAPI document: 0.11.0
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.9.1
5
+ * The version of the OpenAPI document: 0.11.0
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.9.1
8
+ * The version of the OpenAPI document: 0.11.0
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.9.1
5
+ * The version of the OpenAPI document: 0.11.0
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.9.1
8
+ * The version of the OpenAPI document: 0.11.0
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.9.1
5
+ * The version of the OpenAPI document: 0.11.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -487,12 +487,6 @@ export interface Page {
487
487
  * @memberof Page
488
488
  */
489
489
  'slug'?: string;
490
- /**
491
- *
492
- * @type {SeoMetadata}
493
- * @memberof Page
494
- */
495
- 'seoMetadata'?: SeoMetadata;
496
490
  /**
497
491
  *
498
492
  * @type {TargetSearchPhraseData}
@@ -1014,7 +1008,7 @@ export interface SubmenuInnerImageButton {
1014
1008
  * @type {string}
1015
1009
  * @memberof SubmenuInnerImageButton
1016
1010
  */
1017
- 'borderRadius': string | null;
1011
+ 'borderRadius': SubmenuInnerImageButtonBorderRadiusEnum | null;
1018
1012
  /**
1019
1013
  *
1020
1014
  * @type {string}
@@ -1022,6 +1016,13 @@ export interface SubmenuInnerImageButton {
1022
1016
  */
1023
1017
  'width': SubmenuInnerImageButtonWidthEnum | null;
1024
1018
  }
1019
+ export declare const SubmenuInnerImageButtonBorderRadiusEnum: {
1020
+ readonly Sharp: "sharp";
1021
+ readonly Smooth: "smooth";
1022
+ readonly Rounded: "rounded";
1023
+ readonly Circle: "circle";
1024
+ };
1025
+ export type SubmenuInnerImageButtonBorderRadiusEnum = typeof SubmenuInnerImageButtonBorderRadiusEnum[keyof typeof SubmenuInnerImageButtonBorderRadiusEnum];
1025
1026
  export declare const SubmenuInnerImageButtonWidthEnum: {
1026
1027
  readonly Auto: "auto";
1027
1028
  readonly Full: "full";
@@ -1520,13 +1521,13 @@ export interface UpdateMenuRequestItemSubmenuInnerImage {
1520
1521
  * @type {UpdateMenuRequestItemSubmenuInnerImageText}
1521
1522
  * @memberof UpdateMenuRequestItemSubmenuInnerImage
1522
1523
  */
1523
- 'text'?: UpdateMenuRequestItemSubmenuInnerImageText;
1524
+ 'text'?: UpdateMenuRequestItemSubmenuInnerImageText | null;
1524
1525
  /**
1525
1526
  *
1526
1527
  * @type {UpdateMenuRequestItemSubmenuInnerImageButton}
1527
1528
  * @memberof UpdateMenuRequestItemSubmenuInnerImage
1528
1529
  */
1529
- 'button'?: UpdateMenuRequestItemSubmenuInnerImageButton;
1530
+ 'button'?: UpdateMenuRequestItemSubmenuInnerImageButton | null;
1530
1531
  }
1531
1532
  /**
1532
1533
  *
@@ -1676,12 +1677,6 @@ export interface UpdatePageRequest {
1676
1677
  * @memberof UpdatePageRequest
1677
1678
  */
1678
1679
  'slug'?: string;
1679
- /**
1680
- *
1681
- * @type {UpdatePagesRequestPagesInnerSeoMetadata}
1682
- * @memberof UpdatePageRequest
1683
- */
1684
- 'seoMetadata'?: UpdatePagesRequestPagesInnerSeoMetadata;
1685
1680
  /**
1686
1681
  * The primary target search phrase for the page that you wish to rank for in search engine results.
1687
1682
  * @type {string}
@@ -1738,12 +1733,6 @@ export interface UpdatePagesRequestPagesInner {
1738
1733
  * @memberof UpdatePagesRequestPagesInner
1739
1734
  */
1740
1735
  'slug'?: string;
1741
- /**
1742
- *
1743
- * @type {UpdatePagesRequestPagesInnerSeoMetadata}
1744
- * @memberof UpdatePagesRequestPagesInner
1745
- */
1746
- 'seoMetadata'?: UpdatePagesRequestPagesInnerSeoMetadata;
1747
1736
  /**
1748
1737
  * The primary target search phrase for the page that you wish to rank for in search engine results.
1749
1738
  * @type {string}
@@ -1757,25 +1746,6 @@ export interface UpdatePagesRequestPagesInner {
1757
1746
  */
1758
1747
  'targetSearchPhraseSynonyms'?: Array<string>;
1759
1748
  }
1760
- /**
1761
- *
1762
- * @export
1763
- * @interface UpdatePagesRequestPagesInnerSeoMetadata
1764
- */
1765
- export interface UpdatePagesRequestPagesInnerSeoMetadata {
1766
- /**
1767
- * Meta title for the page. This appears in search engine results and social shares. If not provided, the page title will be used.
1768
- * @type {string}
1769
- * @memberof UpdatePagesRequestPagesInnerSeoMetadata
1770
- */
1771
- 'title'?: string | null;
1772
- /**
1773
- * Meta description for the page. This appears in search engine results and social shares. If not provided, the page description will be used.
1774
- * @type {string}
1775
- * @memberof UpdatePagesRequestPagesInnerSeoMetadata
1776
- */
1777
- 'description'?: string | null;
1778
- }
1779
1749
  /**
1780
1750
  *
1781
1751
  * @export
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.9.1
7
+ * The version of the OpenAPI document: 0.11.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -66,6 +66,12 @@ export const SubmenuInnerImageBorderRadiusEnum = {
66
66
  Rounded: 'rounded',
67
67
  Circle: 'circle'
68
68
  };
69
+ export const SubmenuInnerImageButtonBorderRadiusEnum = {
70
+ Sharp: 'sharp',
71
+ Smooth: 'smooth',
72
+ Rounded: 'rounded',
73
+ Circle: 'circle'
74
+ };
69
75
  export const SubmenuInnerImageButtonWidthEnum = {
70
76
  Auto: 'auto',
71
77
  Full: 'full'
@@ -2,7 +2,7 @@
2
2
  * Website API
3
3
  * Manage your PodOS Website
4
4
  *
5
- * The version of the OpenAPI document: 0.9.1
5
+ * The version of the OpenAPI document: 0.11.0
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.9.1
7
+ * The version of the OpenAPI document: 0.11.0
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.9.1
5
+ * The version of the OpenAPI document: 0.11.0
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.9.1
7
+ * The version of the OpenAPI document: 0.11.0
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.9.1
5
+ * The version of the OpenAPI document: 0.11.0
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.9.1
7
+ * The version of the OpenAPI document: 0.11.0
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.9.1
5
+ * The version of the OpenAPI document: 0.11.0
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.9.1
7
+ * The version of the OpenAPI document: 0.11.0
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.9.1
5
+ * The version of the OpenAPI document: 0.11.0
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.9.1
8
+ * The version of the OpenAPI document: 0.11.0
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
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.9.1
7
+ * The version of the OpenAPI document: 0.11.0
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.9.1",
3
+ "version": "0.11.0",
4
4
  "description": "OpenAPI client for @teemill/website",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {