@teemill/website 0.9.1 → 0.10.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.10.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.10.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.10.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1041,7 +1041,7 @@ export interface SubmenuInnerImageButton {
1041
1041
  * @type {string}
1042
1042
  * @memberof SubmenuInnerImageButton
1043
1043
  */
1044
- 'borderRadius': string | null;
1044
+ 'borderRadius': SubmenuInnerImageButtonBorderRadiusEnum | null;
1045
1045
  /**
1046
1046
  *
1047
1047
  * @type {string}
@@ -1050,6 +1050,14 @@ export interface SubmenuInnerImageButton {
1050
1050
  'width': SubmenuInnerImageButtonWidthEnum | null;
1051
1051
  }
1052
1052
 
1053
+ export const SubmenuInnerImageButtonBorderRadiusEnum = {
1054
+ Sharp: 'sharp',
1055
+ Smooth: 'smooth',
1056
+ Rounded: 'rounded',
1057
+ Circle: 'circle'
1058
+ } as const;
1059
+
1060
+ export type SubmenuInnerImageButtonBorderRadiusEnum = typeof SubmenuInnerImageButtonBorderRadiusEnum[keyof typeof SubmenuInnerImageButtonBorderRadiusEnum];
1053
1061
  export const SubmenuInnerImageButtonWidthEnum = {
1054
1062
  Auto: 'auto',
1055
1063
  Full: 'full'
@@ -1557,13 +1565,13 @@ export interface UpdateMenuRequestItemSubmenuInnerImage {
1557
1565
  * @type {UpdateMenuRequestItemSubmenuInnerImageText}
1558
1566
  * @memberof UpdateMenuRequestItemSubmenuInnerImage
1559
1567
  */
1560
- 'text'?: UpdateMenuRequestItemSubmenuInnerImageText;
1568
+ 'text'?: UpdateMenuRequestItemSubmenuInnerImageText | null;
1561
1569
  /**
1562
1570
  *
1563
1571
  * @type {UpdateMenuRequestItemSubmenuInnerImageButton}
1564
1572
  * @memberof UpdateMenuRequestItemSubmenuInnerImage
1565
1573
  */
1566
- 'button'?: UpdateMenuRequestItemSubmenuInnerImageButton;
1574
+ 'button'?: UpdateMenuRequestItemSubmenuInnerImageButton | null;
1567
1575
  }
1568
1576
  /**
1569
1577
  *
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.10.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.10.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.10.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.10.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1014,7 +1014,7 @@ export interface SubmenuInnerImageButton {
1014
1014
  * @type {string}
1015
1015
  * @memberof SubmenuInnerImageButton
1016
1016
  */
1017
- 'borderRadius': string | null;
1017
+ 'borderRadius': SubmenuInnerImageButtonBorderRadiusEnum | null;
1018
1018
  /**
1019
1019
  *
1020
1020
  * @type {string}
@@ -1022,6 +1022,13 @@ export interface SubmenuInnerImageButton {
1022
1022
  */
1023
1023
  'width': SubmenuInnerImageButtonWidthEnum | null;
1024
1024
  }
1025
+ export declare const SubmenuInnerImageButtonBorderRadiusEnum: {
1026
+ readonly Sharp: "sharp";
1027
+ readonly Smooth: "smooth";
1028
+ readonly Rounded: "rounded";
1029
+ readonly Circle: "circle";
1030
+ };
1031
+ export type SubmenuInnerImageButtonBorderRadiusEnum = typeof SubmenuInnerImageButtonBorderRadiusEnum[keyof typeof SubmenuInnerImageButtonBorderRadiusEnum];
1025
1032
  export declare const SubmenuInnerImageButtonWidthEnum: {
1026
1033
  readonly Auto: "auto";
1027
1034
  readonly Full: "full";
@@ -1520,13 +1527,13 @@ export interface UpdateMenuRequestItemSubmenuInnerImage {
1520
1527
  * @type {UpdateMenuRequestItemSubmenuInnerImageText}
1521
1528
  * @memberof UpdateMenuRequestItemSubmenuInnerImage
1522
1529
  */
1523
- 'text'?: UpdateMenuRequestItemSubmenuInnerImageText;
1530
+ 'text'?: UpdateMenuRequestItemSubmenuInnerImageText | null;
1524
1531
  /**
1525
1532
  *
1526
1533
  * @type {UpdateMenuRequestItemSubmenuInnerImageButton}
1527
1534
  * @memberof UpdateMenuRequestItemSubmenuInnerImage
1528
1535
  */
1529
- 'button'?: UpdateMenuRequestItemSubmenuInnerImageButton;
1536
+ 'button'?: UpdateMenuRequestItemSubmenuInnerImageButton | null;
1530
1537
  }
1531
1538
  /**
1532
1539
  *
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.10.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.10.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.10.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.10.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.10.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.10.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.10.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.10.0
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1014,7 +1014,7 @@ export interface SubmenuInnerImageButton {
1014
1014
  * @type {string}
1015
1015
  * @memberof SubmenuInnerImageButton
1016
1016
  */
1017
- 'borderRadius': string | null;
1017
+ 'borderRadius': SubmenuInnerImageButtonBorderRadiusEnum | null;
1018
1018
  /**
1019
1019
  *
1020
1020
  * @type {string}
@@ -1022,6 +1022,13 @@ export interface SubmenuInnerImageButton {
1022
1022
  */
1023
1023
  'width': SubmenuInnerImageButtonWidthEnum | null;
1024
1024
  }
1025
+ export declare const SubmenuInnerImageButtonBorderRadiusEnum: {
1026
+ readonly Sharp: "sharp";
1027
+ readonly Smooth: "smooth";
1028
+ readonly Rounded: "rounded";
1029
+ readonly Circle: "circle";
1030
+ };
1031
+ export type SubmenuInnerImageButtonBorderRadiusEnum = typeof SubmenuInnerImageButtonBorderRadiusEnum[keyof typeof SubmenuInnerImageButtonBorderRadiusEnum];
1025
1032
  export declare const SubmenuInnerImageButtonWidthEnum: {
1026
1033
  readonly Auto: "auto";
1027
1034
  readonly Full: "full";
@@ -1520,13 +1527,13 @@ export interface UpdateMenuRequestItemSubmenuInnerImage {
1520
1527
  * @type {UpdateMenuRequestItemSubmenuInnerImageText}
1521
1528
  * @memberof UpdateMenuRequestItemSubmenuInnerImage
1522
1529
  */
1523
- 'text'?: UpdateMenuRequestItemSubmenuInnerImageText;
1530
+ 'text'?: UpdateMenuRequestItemSubmenuInnerImageText | null;
1524
1531
  /**
1525
1532
  *
1526
1533
  * @type {UpdateMenuRequestItemSubmenuInnerImageButton}
1527
1534
  * @memberof UpdateMenuRequestItemSubmenuInnerImage
1528
1535
  */
1529
- 'button'?: UpdateMenuRequestItemSubmenuInnerImageButton;
1536
+ 'button'?: UpdateMenuRequestItemSubmenuInnerImageButton | null;
1530
1537
  }
1531
1538
  /**
1532
1539
  *
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.10.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.10.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.10.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.10.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.10.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.10.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.10.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.10.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.10.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.10.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.10.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.10.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.10.0",
4
4
  "description": "OpenAPI client for @teemill/website",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {