@teemill/website 0.30.1 → 0.30.3

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.
@@ -5,6 +5,95 @@ api.ts
5
5
  base.ts
6
6
  common.ts
7
7
  configuration.ts
8
+ docs/ApiError.md
9
+ docs/Application.md
10
+ docs/ApplicationMockup.md
11
+ docs/AttachCrossSellProductsRequest.md
12
+ docs/Attribute.md
13
+ docs/AttributeThumbnail.md
14
+ docs/AuthorizeStripe200Response.md
15
+ docs/Blog.md
16
+ docs/BlogsApi.md
17
+ docs/BlogsResponse.md
18
+ docs/Brand.md
19
+ docs/CollectionsApi.md
20
+ docs/CreateDomainRequest.md
21
+ docs/CreateSearchRedirectRequest.md
22
+ docs/CrossSellApi.md
23
+ docs/DefaultApi.md
24
+ docs/Domain.md
25
+ docs/ExportPages202Response.md
26
+ docs/Footer.md
27
+ docs/FooterApi.md
28
+ docs/FooterItem.md
29
+ docs/Image.md
30
+ docs/ListDomains200Response.md
31
+ docs/ListRoutesResponse.md
32
+ docs/Menu.md
33
+ docs/MenuApi.md
34
+ docs/MenuItem.md
35
+ docs/MetaField.md
36
+ docs/MetaImage.md
37
+ docs/ModerateReviewRequest.md
38
+ docs/NullableMetaImage.md
39
+ docs/OptimisationHistoryItem.md
40
+ docs/Page.md
41
+ docs/PagesApi.md
42
+ docs/PagesResponse.md
43
+ docs/PaymentAccount.md
44
+ docs/PaymentApi.md
45
+ docs/Price.md
46
+ docs/Product.md
47
+ docs/ProductAdditionalFilesInner.md
48
+ docs/ProductApplicationSetsInner.md
49
+ docs/ProductWarehouseProduct.md
50
+ docs/Review.md
51
+ docs/ReviewAuthor.md
52
+ docs/ReviewImagesInner.md
53
+ docs/ReviewProduct.md
54
+ docs/ReviewReply.md
55
+ docs/ReviewReplyAuthor.md
56
+ docs/ReviewsApi.md
57
+ docs/ReviewsResponse.md
58
+ docs/Route.md
59
+ docs/RoutesApi.md
60
+ docs/SalePrice.md
61
+ docs/SearchApi.md
62
+ docs/SearchRedirect.md
63
+ docs/SearchRedirectsResponse.md
64
+ docs/SeoMetadata.md
65
+ docs/SeoOptimisePages202Response.md
66
+ docs/SeoOptimisePagesRequest.md
67
+ docs/Stock.md
68
+ docs/SubmenuInner.md
69
+ docs/SubmenuInnerImage.md
70
+ docs/SubmenuInnerImageButton.md
71
+ docs/SubmenuInnerImageText.md
72
+ docs/SubmenuItem.md
73
+ docs/TargetSearchPhraseData.md
74
+ docs/UpdateBlogRequest.md
75
+ docs/UpdateBlogsRequest.md
76
+ docs/UpdateBlogsRequestBlogsInner.md
77
+ docs/UpdateBlogsRequestBlogsInnerSeoMetadata.md
78
+ docs/UpdateBrandRequest.md
79
+ docs/UpdateFooterRequest.md
80
+ docs/UpdateFooterRequestItemsInner.md
81
+ docs/UpdateMenuRequest.md
82
+ docs/UpdateMenuRequestItem.md
83
+ docs/UpdateMenuRequestItemSubmenuInner.md
84
+ docs/UpdateMenuRequestItemSubmenuInnerImage.md
85
+ docs/UpdateMenuRequestItemSubmenuInnerImageButton.md
86
+ docs/UpdateMenuRequestItemSubmenuInnerImageText.md
87
+ docs/UpdateMenuRequestSubmenuItem.md
88
+ docs/UpdatePageRequest.md
89
+ docs/UpdatePagesRequest.md
90
+ docs/UpdatePagesRequestPagesInner.md
91
+ docs/UpdateProductCollectionsRequest.md
92
+ docs/UpdateSearchRedirectRequest.md
93
+ docs/Variant.md
94
+ docs/VariantProduct.md
95
+ docs/Video.md
96
+ docs/WebsiteApi.md
8
97
  git_push.sh
9
98
  index.ts
10
99
  package.json
@@ -1 +1 @@
1
- 7.6.0
1
+ 7.21.0
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @teemill/website@0.30.1
1
+ ## @teemill/website@0.30.3
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.30.1 --save
39
+ npm install @teemill/website@0.30.3 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
package/api.ts CHANGED
@@ -1,10 +1,10 @@
1
1
  /* tslint:disable */
2
2
  /* eslint-disable */
3
3
  /**
4
- * Website API
4
+ * Website
5
5
  * Manage your PodOS Website
6
6
  *
7
- * The version of the OpenAPI document: 0.30.1
7
+ * The version of the OpenAPI document: 0.30.3
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -33,7 +33,7 @@ export interface Application {
33
33
  */
34
34
  'id'?: string;
35
35
  /**
36
- * Technology to use for the application.
36
+ * The application technology used for this design application. `mug_sublimation` is deprecated. Use `sublimation_small` instead.
37
37
  */
38
38
  'technology': ApplicationTechnologyEnum;
39
39
  /**
@@ -53,10 +53,11 @@ export const ApplicationTechnologyEnum = {
53
53
  Dtf: 'dtf',
54
54
  Pretreat: 'pretreat',
55
55
  MugSublimation: 'mug_sublimation',
56
+ SublimationSmall: 'sublimation_small',
56
57
  ManualPrint: 'manual_print',
57
58
  AdditionalApplication: 'additional_application',
58
59
  NotebookSublimation: 'notebook_sublimation',
59
- DuplexPrint: 'duplex_print'
60
+ DuplexPrint: 'duplex_print',
60
61
  } as const;
61
62
 
62
63
  export type ApplicationTechnologyEnum = typeof ApplicationTechnologyEnum[keyof typeof ApplicationTechnologyEnum];
@@ -65,7 +66,7 @@ export const ApplicationPlacementEnum = {
65
66
  Back: 'back',
66
67
  Left: 'left',
67
68
  Right: 'right',
68
- Neck: 'neck'
69
+ Neck: 'neck',
69
70
  } as const;
70
71
 
71
72
  export type ApplicationPlacementEnum = typeof ApplicationPlacementEnum[keyof typeof ApplicationPlacementEnum];
@@ -112,7 +113,7 @@ export interface AttributeThumbnail {
112
113
  export const AttributeThumbnailTypeEnum = {
113
114
  Text: 'text',
114
115
  Color: 'color',
115
- Image: 'image'
116
+ Image: 'image',
116
117
  } as const;
117
118
 
118
119
  export type AttributeThumbnailTypeEnum = typeof AttributeThumbnailTypeEnum[keyof typeof AttributeThumbnailTypeEnum];
@@ -210,7 +211,10 @@ export interface Menu {
210
211
  export interface MenuItem {
211
212
  'id': string;
212
213
  'text': string;
213
- 'link': string;
214
+ /**
215
+ * Link can only be null if the item has a submenu
216
+ */
217
+ 'link': string | null;
214
218
  'color': string | null;
215
219
  'backgroundColor': string | null;
216
220
  'published': boolean;
@@ -306,7 +310,7 @@ export interface PaymentAccount {
306
310
 
307
311
  export const PaymentAccountMethodEnum = {
308
312
  Stripe: 'stripe',
309
- Paypal: 'paypal'
313
+ Paypal: 'paypal',
310
314
  } as const;
311
315
 
312
316
  export type PaymentAccountMethodEnum = typeof PaymentAccountMethodEnum[keyof typeof PaymentAccountMethodEnum];
@@ -326,7 +330,7 @@ export interface Price {
326
330
  }
327
331
 
328
332
  export const PriceCurrencyCodeEnum = {
329
- Gbp: 'GBP'
333
+ Gbp: 'GBP',
330
334
  } as const;
331
335
 
332
336
  export type PriceCurrencyCodeEnum = typeof PriceCurrencyCodeEnum[keyof typeof PriceCurrencyCodeEnum];
@@ -528,7 +532,7 @@ export interface SalePrice {
528
532
  }
529
533
 
530
534
  export const SalePriceCurrencyCodeEnum = {
531
- Gbp: 'GBP'
535
+ Gbp: 'GBP',
532
536
  } as const;
533
537
 
534
538
  export type SalePriceCurrencyCodeEnum = typeof SalePriceCurrencyCodeEnum[keyof typeof SalePriceCurrencyCodeEnum];
@@ -594,7 +598,7 @@ export interface SubmenuInner {
594
598
 
595
599
  export const SubmenuInnerModeEnum = {
596
600
  Image: 'image',
597
- List: 'list'
601
+ List: 'list',
598
602
  } as const;
599
603
 
600
604
  export type SubmenuInnerModeEnum = typeof SubmenuInnerModeEnum[keyof typeof SubmenuInnerModeEnum];
@@ -615,7 +619,7 @@ export const SubmenuInnerImageBorderRadiusEnum = {
615
619
  Sharp: 'sharp',
616
620
  Smooth: 'smooth',
617
621
  Rounded: 'rounded',
618
- Circle: 'circle'
622
+ Circle: 'circle',
619
623
  } as const;
620
624
 
621
625
  export type SubmenuInnerImageBorderRadiusEnum = typeof SubmenuInnerImageBorderRadiusEnum[keyof typeof SubmenuInnerImageBorderRadiusEnum];
@@ -633,13 +637,13 @@ export const SubmenuInnerImageButtonBorderRadiusEnum = {
633
637
  Sharp: 'sharp',
634
638
  Smooth: 'smooth',
635
639
  Rounded: 'rounded',
636
- Circle: 'circle'
640
+ Circle: 'circle',
637
641
  } as const;
638
642
 
639
643
  export type SubmenuInnerImageButtonBorderRadiusEnum = typeof SubmenuInnerImageButtonBorderRadiusEnum[keyof typeof SubmenuInnerImageButtonBorderRadiusEnum];
640
644
  export const SubmenuInnerImageButtonWidthEnum = {
641
645
  Auto: 'auto',
642
- Full: 'full'
646
+ Full: 'full',
643
647
  } as const;
644
648
 
645
649
  export type SubmenuInnerImageButtonWidthEnum = typeof SubmenuInnerImageButtonWidthEnum[keyof typeof SubmenuInnerImageButtonWidthEnum];
@@ -653,7 +657,7 @@ export interface SubmenuInnerImageText {
653
657
  export const SubmenuInnerImageTextAlignmentEnum = {
654
658
  Left: 'left',
655
659
  Center: 'center',
656
- Right: 'right'
660
+ Right: 'right',
657
661
  } as const;
658
662
 
659
663
  export type SubmenuInnerImageTextAlignmentEnum = typeof SubmenuInnerImageTextAlignmentEnum[keyof typeof SubmenuInnerImageTextAlignmentEnum];
@@ -661,7 +665,7 @@ export const SubmenuInnerImageTextShadowEnum = {
661
665
  None: 'none',
662
666
  Light: 'light',
663
667
  Medium: 'medium',
664
- Heavy: 'heavy'
668
+ Heavy: 'heavy',
665
669
  } as const;
666
670
 
667
671
  export type SubmenuInnerImageTextShadowEnum = typeof SubmenuInnerImageTextShadowEnum[keyof typeof SubmenuInnerImageTextShadowEnum];
@@ -765,7 +769,10 @@ export interface UpdateMenuRequest {
765
769
  export interface UpdateMenuRequestItem {
766
770
  'id': string | null;
767
771
  'text': string;
768
- 'link': string;
772
+ /**
773
+ * Link can only be null if the item has a submenu
774
+ */
775
+ 'link': string | null;
769
776
  'color'?: string | null;
770
777
  'backgroundColor'?: string | null;
771
778
  'published'?: boolean;
@@ -785,7 +792,7 @@ export interface UpdateMenuRequestItemSubmenuInner {
785
792
 
786
793
  export const UpdateMenuRequestItemSubmenuInnerModeEnum = {
787
794
  Image: 'image',
788
- List: 'list'
795
+ List: 'list',
789
796
  } as const;
790
797
 
791
798
  export type UpdateMenuRequestItemSubmenuInnerModeEnum = typeof UpdateMenuRequestItemSubmenuInnerModeEnum[keyof typeof UpdateMenuRequestItemSubmenuInnerModeEnum];
@@ -814,13 +821,13 @@ export const UpdateMenuRequestItemSubmenuInnerImageButtonBorderRadiusEnum = {
814
821
  Sharp: 'sharp',
815
822
  Smooth: 'smooth',
816
823
  Rounded: 'rounded',
817
- Circle: 'circle'
824
+ Circle: 'circle',
818
825
  } as const;
819
826
 
820
827
  export type UpdateMenuRequestItemSubmenuInnerImageButtonBorderRadiusEnum = typeof UpdateMenuRequestItemSubmenuInnerImageButtonBorderRadiusEnum[keyof typeof UpdateMenuRequestItemSubmenuInnerImageButtonBorderRadiusEnum];
821
828
  export const UpdateMenuRequestItemSubmenuInnerImageButtonWidthEnum = {
822
829
  Auto: 'auto',
823
- Full: 'full'
830
+ Full: 'full',
824
831
  } as const;
825
832
 
826
833
  export type UpdateMenuRequestItemSubmenuInnerImageButtonWidthEnum = typeof UpdateMenuRequestItemSubmenuInnerImageButtonWidthEnum[keyof typeof UpdateMenuRequestItemSubmenuInnerImageButtonWidthEnum];
@@ -834,7 +841,7 @@ export interface UpdateMenuRequestItemSubmenuInnerImageText {
834
841
  export const UpdateMenuRequestItemSubmenuInnerImageTextAlignmentEnum = {
835
842
  Left: 'left',
836
843
  Center: 'center',
837
- Right: 'right'
844
+ Right: 'right',
838
845
  } as const;
839
846
 
840
847
  export type UpdateMenuRequestItemSubmenuInnerImageTextAlignmentEnum = typeof UpdateMenuRequestItemSubmenuInnerImageTextAlignmentEnum[keyof typeof UpdateMenuRequestItemSubmenuInnerImageTextAlignmentEnum];
@@ -842,7 +849,7 @@ export const UpdateMenuRequestItemSubmenuInnerImageTextShadowEnum = {
842
849
  None: 'none',
843
850
  Light: 'light',
844
851
  Medium: 'medium',
845
- Heavy: 'heavy'
852
+ Heavy: 'heavy',
846
853
  } as const;
847
854
 
848
855
  export type UpdateMenuRequestItemSubmenuInnerImageTextShadowEnum = typeof UpdateMenuRequestItemSubmenuInnerImageTextShadowEnum[keyof typeof UpdateMenuRequestItemSubmenuInnerImageTextShadowEnum];
package/base.ts CHANGED
@@ -1,10 +1,10 @@
1
1
  /* tslint:disable */
2
2
  /* eslint-disable */
3
3
  /**
4
- * Website API
4
+ * Website
5
5
  * Manage your PodOS Website
6
6
  *
7
- * The version of the OpenAPI document: 0.30.1
7
+ * The version of the OpenAPI document: 0.30.3
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/common.ts CHANGED
@@ -1,10 +1,10 @@
1
1
  /* tslint:disable */
2
2
  /* eslint-disable */
3
3
  /**
4
- * Website API
4
+ * Website
5
5
  * Manage your PodOS Website
6
6
  *
7
- * The version of the OpenAPI document: 0.30.1
7
+ * The version of the OpenAPI document: 0.30.3
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/configuration.ts CHANGED
@@ -1,9 +1,9 @@
1
1
  /* tslint:disable */
2
2
  /**
3
- * Website API
3
+ * Website
4
4
  * Manage your PodOS Website
5
5
  *
6
- * The version of the OpenAPI document: 0.30.1
6
+ * The version of the OpenAPI document: 0.30.3
7
7
  *
8
8
  *
9
9
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/api.d.ts CHANGED
@@ -1,8 +1,8 @@
1
1
  /**
2
- * Website API
2
+ * Website
3
3
  * Manage your PodOS Website
4
4
  *
5
- * The version of the OpenAPI document: 0.30.1
5
+ * The version of the OpenAPI document: 0.30.3
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -23,7 +23,7 @@ export interface Application {
23
23
  */
24
24
  'id'?: string;
25
25
  /**
26
- * Technology to use for the application.
26
+ * The application technology used for this design application. `mug_sublimation` is deprecated. Use `sublimation_small` instead.
27
27
  */
28
28
  'technology': ApplicationTechnologyEnum;
29
29
  /**
@@ -42,6 +42,7 @@ export declare const ApplicationTechnologyEnum: {
42
42
  readonly Dtf: "dtf";
43
43
  readonly Pretreat: "pretreat";
44
44
  readonly MugSublimation: "mug_sublimation";
45
+ readonly SublimationSmall: "sublimation_small";
45
46
  readonly ManualPrint: "manual_print";
46
47
  readonly AdditionalApplication: "additional_application";
47
48
  readonly NotebookSublimation: "notebook_sublimation";
@@ -193,7 +194,10 @@ export interface Menu {
193
194
  export interface MenuItem {
194
195
  'id': string;
195
196
  'text': string;
196
- 'link': string;
197
+ /**
198
+ * Link can only be null if the item has a submenu
199
+ */
200
+ 'link': string | null;
197
201
  'color': string | null;
198
202
  'backgroundColor': string | null;
199
203
  'published': boolean;
@@ -727,7 +731,10 @@ export interface UpdateMenuRequest {
727
731
  export interface UpdateMenuRequestItem {
728
732
  'id': string | null;
729
733
  'text': string;
730
- 'link': string;
734
+ /**
735
+ * Link can only be null if the item has a submenu
736
+ */
737
+ 'link': string | null;
731
738
  'color'?: string | null;
732
739
  'backgroundColor'?: string | null;
733
740
  'published'?: boolean;
package/dist/api.js CHANGED
@@ -2,10 +2,10 @@
2
2
  /* tslint:disable */
3
3
  /* eslint-disable */
4
4
  /**
5
- * Website API
5
+ * Website
6
6
  * Manage your PodOS Website
7
7
  *
8
- * The version of the OpenAPI document: 0.30.1
8
+ * The version of the OpenAPI document: 0.30.3
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -36,88 +36,89 @@ exports.ApplicationTechnologyEnum = {
36
36
  Dtf: 'dtf',
37
37
  Pretreat: 'pretreat',
38
38
  MugSublimation: 'mug_sublimation',
39
+ SublimationSmall: 'sublimation_small',
39
40
  ManualPrint: 'manual_print',
40
41
  AdditionalApplication: 'additional_application',
41
42
  NotebookSublimation: 'notebook_sublimation',
42
- DuplexPrint: 'duplex_print'
43
+ DuplexPrint: 'duplex_print',
43
44
  };
44
45
  exports.ApplicationPlacementEnum = {
45
46
  Front: 'front',
46
47
  Back: 'back',
47
48
  Left: 'left',
48
49
  Right: 'right',
49
- Neck: 'neck'
50
+ Neck: 'neck',
50
51
  };
51
52
  exports.AttributeThumbnailTypeEnum = {
52
53
  Text: 'text',
53
54
  Color: 'color',
54
- Image: 'image'
55
+ Image: 'image',
55
56
  };
56
57
  exports.PaymentAccountMethodEnum = {
57
58
  Stripe: 'stripe',
58
- Paypal: 'paypal'
59
+ Paypal: 'paypal',
59
60
  };
60
61
  exports.PriceCurrencyCodeEnum = {
61
- Gbp: 'GBP'
62
+ Gbp: 'GBP',
62
63
  };
63
64
  exports.SalePriceCurrencyCodeEnum = {
64
- Gbp: 'GBP'
65
+ Gbp: 'GBP',
65
66
  };
66
67
  exports.SubmenuInnerModeEnum = {
67
68
  Image: 'image',
68
- List: 'list'
69
+ List: 'list',
69
70
  };
70
71
  exports.SubmenuInnerImageBorderRadiusEnum = {
71
72
  Sharp: 'sharp',
72
73
  Smooth: 'smooth',
73
74
  Rounded: 'rounded',
74
- Circle: 'circle'
75
+ Circle: 'circle',
75
76
  };
76
77
  exports.SubmenuInnerImageButtonBorderRadiusEnum = {
77
78
  Sharp: 'sharp',
78
79
  Smooth: 'smooth',
79
80
  Rounded: 'rounded',
80
- Circle: 'circle'
81
+ Circle: 'circle',
81
82
  };
82
83
  exports.SubmenuInnerImageButtonWidthEnum = {
83
84
  Auto: 'auto',
84
- Full: 'full'
85
+ Full: 'full',
85
86
  };
86
87
  exports.SubmenuInnerImageTextAlignmentEnum = {
87
88
  Left: 'left',
88
89
  Center: 'center',
89
- Right: 'right'
90
+ Right: 'right',
90
91
  };
91
92
  exports.SubmenuInnerImageTextShadowEnum = {
92
93
  None: 'none',
93
94
  Light: 'light',
94
95
  Medium: 'medium',
95
- Heavy: 'heavy'
96
+ Heavy: 'heavy',
96
97
  };
97
98
  exports.UpdateMenuRequestItemSubmenuInnerModeEnum = {
98
99
  Image: 'image',
99
- List: 'list'
100
+ List: 'list',
100
101
  };
101
102
  exports.UpdateMenuRequestItemSubmenuInnerImageButtonBorderRadiusEnum = {
102
103
  Sharp: 'sharp',
103
104
  Smooth: 'smooth',
104
105
  Rounded: 'rounded',
105
- Circle: 'circle'
106
+ Circle: 'circle',
106
107
  };
107
108
  exports.UpdateMenuRequestItemSubmenuInnerImageButtonWidthEnum = {
108
109
  Auto: 'auto',
109
- Full: 'full'
110
+ Full: 'full',
110
111
  };
111
112
  exports.UpdateMenuRequestItemSubmenuInnerImageTextAlignmentEnum = {
112
113
  Left: 'left',
113
114
  Center: 'center',
114
- Right: 'right'
115
+ Right: 'right',
115
116
  };
116
117
  exports.UpdateMenuRequestItemSubmenuInnerImageTextShadowEnum = {
117
118
  None: 'none',
118
119
  Light: 'light',
119
120
  Medium: 'medium',
120
- Heavy: 'heavy'
121
+ Heavy: 'heavy',
121
122
  };
122
123
  /**
123
124
  * BlogsApi - axios parameter creator
package/dist/base.d.ts CHANGED
@@ -1,8 +1,8 @@
1
1
  /**
2
- * Website API
2
+ * Website
3
3
  * Manage your PodOS Website
4
4
  *
5
- * The version of the OpenAPI document: 0.30.1
5
+ * The version of the OpenAPI document: 0.30.3
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/base.js CHANGED
@@ -2,10 +2,10 @@
2
2
  /* tslint:disable */
3
3
  /* eslint-disable */
4
4
  /**
5
- * Website API
5
+ * Website
6
6
  * Manage your PodOS Website
7
7
  *
8
- * The version of the OpenAPI document: 0.30.1
8
+ * The version of the OpenAPI document: 0.30.3
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
@@ -1,8 +1,8 @@
1
1
  /**
2
- * Website API
2
+ * Website
3
3
  * Manage your PodOS Website
4
4
  *
5
- * The version of the OpenAPI document: 0.30.1
5
+ * The version of the OpenAPI document: 0.30.3
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/common.js CHANGED
@@ -2,10 +2,10 @@
2
2
  /* tslint:disable */
3
3
  /* eslint-disable */
4
4
  /**
5
- * Website API
5
+ * Website
6
6
  * Manage your PodOS Website
7
7
  *
8
- * The version of the OpenAPI document: 0.30.1
8
+ * The version of the OpenAPI document: 0.30.3
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1,8 +1,8 @@
1
1
  /**
2
- * Website API
2
+ * Website
3
3
  * Manage your PodOS Website
4
4
  *
5
- * The version of the OpenAPI document: 0.30.1
5
+ * The version of the OpenAPI document: 0.30.3
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1,10 +1,10 @@
1
1
  "use strict";
2
2
  /* tslint:disable */
3
3
  /**
4
- * Website API
4
+ * Website
5
5
  * Manage your PodOS Website
6
6
  *
7
- * The version of the OpenAPI document: 0.30.1
7
+ * The version of the OpenAPI document: 0.30.3
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/esm/api.d.ts CHANGED
@@ -1,8 +1,8 @@
1
1
  /**
2
- * Website API
2
+ * Website
3
3
  * Manage your PodOS Website
4
4
  *
5
- * The version of the OpenAPI document: 0.30.1
5
+ * The version of the OpenAPI document: 0.30.3
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -23,7 +23,7 @@ export interface Application {
23
23
  */
24
24
  'id'?: string;
25
25
  /**
26
- * Technology to use for the application.
26
+ * The application technology used for this design application. `mug_sublimation` is deprecated. Use `sublimation_small` instead.
27
27
  */
28
28
  'technology': ApplicationTechnologyEnum;
29
29
  /**
@@ -42,6 +42,7 @@ export declare const ApplicationTechnologyEnum: {
42
42
  readonly Dtf: "dtf";
43
43
  readonly Pretreat: "pretreat";
44
44
  readonly MugSublimation: "mug_sublimation";
45
+ readonly SublimationSmall: "sublimation_small";
45
46
  readonly ManualPrint: "manual_print";
46
47
  readonly AdditionalApplication: "additional_application";
47
48
  readonly NotebookSublimation: "notebook_sublimation";
@@ -193,7 +194,10 @@ export interface Menu {
193
194
  export interface MenuItem {
194
195
  'id': string;
195
196
  'text': string;
196
- 'link': string;
197
+ /**
198
+ * Link can only be null if the item has a submenu
199
+ */
200
+ 'link': string | null;
197
201
  'color': string | null;
198
202
  'backgroundColor': string | null;
199
203
  'published': boolean;
@@ -727,7 +731,10 @@ export interface UpdateMenuRequest {
727
731
  export interface UpdateMenuRequestItem {
728
732
  'id': string | null;
729
733
  'text': string;
730
- 'link': string;
734
+ /**
735
+ * Link can only be null if the item has a submenu
736
+ */
737
+ 'link': string | null;
731
738
  'color'?: string | null;
732
739
  'backgroundColor'?: string | null;
733
740
  'published'?: boolean;
package/dist/esm/api.js CHANGED
@@ -1,10 +1,10 @@
1
1
  /* tslint:disable */
2
2
  /* eslint-disable */
3
3
  /**
4
- * Website API
4
+ * Website
5
5
  * Manage your PodOS Website
6
6
  *
7
- * The version of the OpenAPI document: 0.30.1
7
+ * The version of the OpenAPI document: 0.30.3
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -32,88 +32,89 @@ export const ApplicationTechnologyEnum = {
32
32
  Dtf: 'dtf',
33
33
  Pretreat: 'pretreat',
34
34
  MugSublimation: 'mug_sublimation',
35
+ SublimationSmall: 'sublimation_small',
35
36
  ManualPrint: 'manual_print',
36
37
  AdditionalApplication: 'additional_application',
37
38
  NotebookSublimation: 'notebook_sublimation',
38
- DuplexPrint: 'duplex_print'
39
+ DuplexPrint: 'duplex_print',
39
40
  };
40
41
  export const ApplicationPlacementEnum = {
41
42
  Front: 'front',
42
43
  Back: 'back',
43
44
  Left: 'left',
44
45
  Right: 'right',
45
- Neck: 'neck'
46
+ Neck: 'neck',
46
47
  };
47
48
  export const AttributeThumbnailTypeEnum = {
48
49
  Text: 'text',
49
50
  Color: 'color',
50
- Image: 'image'
51
+ Image: 'image',
51
52
  };
52
53
  export const PaymentAccountMethodEnum = {
53
54
  Stripe: 'stripe',
54
- Paypal: 'paypal'
55
+ Paypal: 'paypal',
55
56
  };
56
57
  export const PriceCurrencyCodeEnum = {
57
- Gbp: 'GBP'
58
+ Gbp: 'GBP',
58
59
  };
59
60
  export const SalePriceCurrencyCodeEnum = {
60
- Gbp: 'GBP'
61
+ Gbp: 'GBP',
61
62
  };
62
63
  export const SubmenuInnerModeEnum = {
63
64
  Image: 'image',
64
- List: 'list'
65
+ List: 'list',
65
66
  };
66
67
  export const SubmenuInnerImageBorderRadiusEnum = {
67
68
  Sharp: 'sharp',
68
69
  Smooth: 'smooth',
69
70
  Rounded: 'rounded',
70
- Circle: 'circle'
71
+ Circle: 'circle',
71
72
  };
72
73
  export const SubmenuInnerImageButtonBorderRadiusEnum = {
73
74
  Sharp: 'sharp',
74
75
  Smooth: 'smooth',
75
76
  Rounded: 'rounded',
76
- Circle: 'circle'
77
+ Circle: 'circle',
77
78
  };
78
79
  export const SubmenuInnerImageButtonWidthEnum = {
79
80
  Auto: 'auto',
80
- Full: 'full'
81
+ Full: 'full',
81
82
  };
82
83
  export const SubmenuInnerImageTextAlignmentEnum = {
83
84
  Left: 'left',
84
85
  Center: 'center',
85
- Right: 'right'
86
+ Right: 'right',
86
87
  };
87
88
  export const SubmenuInnerImageTextShadowEnum = {
88
89
  None: 'none',
89
90
  Light: 'light',
90
91
  Medium: 'medium',
91
- Heavy: 'heavy'
92
+ Heavy: 'heavy',
92
93
  };
93
94
  export const UpdateMenuRequestItemSubmenuInnerModeEnum = {
94
95
  Image: 'image',
95
- List: 'list'
96
+ List: 'list',
96
97
  };
97
98
  export const UpdateMenuRequestItemSubmenuInnerImageButtonBorderRadiusEnum = {
98
99
  Sharp: 'sharp',
99
100
  Smooth: 'smooth',
100
101
  Rounded: 'rounded',
101
- Circle: 'circle'
102
+ Circle: 'circle',
102
103
  };
103
104
  export const UpdateMenuRequestItemSubmenuInnerImageButtonWidthEnum = {
104
105
  Auto: 'auto',
105
- Full: 'full'
106
+ Full: 'full',
106
107
  };
107
108
  export const UpdateMenuRequestItemSubmenuInnerImageTextAlignmentEnum = {
108
109
  Left: 'left',
109
110
  Center: 'center',
110
- Right: 'right'
111
+ Right: 'right',
111
112
  };
112
113
  export const UpdateMenuRequestItemSubmenuInnerImageTextShadowEnum = {
113
114
  None: 'none',
114
115
  Light: 'light',
115
116
  Medium: 'medium',
116
- Heavy: 'heavy'
117
+ Heavy: 'heavy',
117
118
  };
118
119
  /**
119
120
  * BlogsApi - axios parameter creator
@@ -1,8 +1,8 @@
1
1
  /**
2
- * Website API
2
+ * Website
3
3
  * Manage your PodOS Website
4
4
  *
5
- * The version of the OpenAPI document: 0.30.1
5
+ * The version of the OpenAPI document: 0.30.3
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
@@ -1,10 +1,10 @@
1
1
  /* tslint:disable */
2
2
  /* eslint-disable */
3
3
  /**
4
- * Website API
4
+ * Website
5
5
  * Manage your PodOS Website
6
6
  *
7
- * The version of the OpenAPI document: 0.30.1
7
+ * The version of the OpenAPI document: 0.30.3
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1,8 +1,8 @@
1
1
  /**
2
- * Website API
2
+ * Website
3
3
  * Manage your PodOS Website
4
4
  *
5
- * The version of the OpenAPI document: 0.30.1
5
+ * The version of the OpenAPI document: 0.30.3
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1,10 +1,10 @@
1
1
  /* tslint:disable */
2
2
  /* eslint-disable */
3
3
  /**
4
- * Website API
4
+ * Website
5
5
  * Manage your PodOS Website
6
6
  *
7
- * The version of the OpenAPI document: 0.30.1
7
+ * The version of the OpenAPI document: 0.30.3
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1,8 +1,8 @@
1
1
  /**
2
- * Website API
2
+ * Website
3
3
  * Manage your PodOS Website
4
4
  *
5
- * The version of the OpenAPI document: 0.30.1
5
+ * The version of the OpenAPI document: 0.30.3
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1,9 +1,9 @@
1
1
  /* tslint:disable */
2
2
  /**
3
- * Website API
3
+ * Website
4
4
  * Manage your PodOS Website
5
5
  *
6
- * The version of the OpenAPI document: 0.30.1
6
+ * The version of the OpenAPI document: 0.30.3
7
7
  *
8
8
  *
9
9
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -1,8 +1,8 @@
1
1
  /**
2
- * Website API
2
+ * Website
3
3
  * Manage your PodOS Website
4
4
  *
5
- * The version of the OpenAPI document: 0.30.1
5
+ * The version of the OpenAPI document: 0.30.3
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
@@ -1,10 +1,10 @@
1
1
  /* tslint:disable */
2
2
  /* eslint-disable */
3
3
  /**
4
- * Website API
4
+ * Website
5
5
  * Manage your PodOS Website
6
6
  *
7
- * The version of the OpenAPI document: 0.30.1
7
+ * The version of the OpenAPI document: 0.30.3
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
@@ -1,8 +1,8 @@
1
1
  /**
2
- * Website API
2
+ * Website
3
3
  * Manage your PodOS Website
4
4
  *
5
- * The version of the OpenAPI document: 0.30.1
5
+ * The version of the OpenAPI document: 0.30.3
6
6
  *
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/index.js CHANGED
@@ -2,10 +2,10 @@
2
2
  /* tslint:disable */
3
3
  /* eslint-disable */
4
4
  /**
5
- * Website API
5
+ * Website
6
6
  * Manage your PodOS Website
7
7
  *
8
- * The version of the OpenAPI document: 0.30.1
8
+ * The version of the OpenAPI document: 0.30.3
9
9
  *
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -6,7 +6,7 @@
6
6
  Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
8
  **id** | **string** | Unique object identifier | [optional] [default to undefined]
9
- **technology** | **string** | Technology to use for the application. | [default to undefined]
9
+ **technology** | **string** | The application technology used for this design application. `mug_sublimation` is deprecated. Use `sublimation_small` instead. | [default to undefined]
10
10
  **placement** | **string** | Placement of the application. Available placements depend on the chosen product and technology. | [default to undefined]
11
11
  **src** | **string** | Publicly available design file URL. This will fill the design area of the warehouse product. It will be centered horizontally and aligned to the top of the design area. Accepts PNG and JPEG files. | [default to undefined]
12
12
  **mockup** | [**ApplicationMockup**](ApplicationMockup.md) | | [optional] [default to undefined]
package/docs/MenuItem.md CHANGED
@@ -7,7 +7,7 @@ Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
8
  **id** | **string** | | [default to undefined]
9
9
  **text** | **string** | | [default to undefined]
10
- **link** | **string** | | [default to undefined]
10
+ **link** | **string** | Link can only be null if the item has a submenu | [default to undefined]
11
11
  **color** | **string** | | [default to undefined]
12
12
  **backgroundColor** | **string** | | [default to undefined]
13
13
  **published** | **boolean** | | [default to undefined]
@@ -7,7 +7,7 @@ Name | Type | Description | Notes
7
7
  ------------ | ------------- | ------------- | -------------
8
8
  **id** | **string** | | [default to undefined]
9
9
  **text** | **string** | | [default to undefined]
10
- **link** | **string** | | [default to undefined]
10
+ **link** | **string** | Link can only be null if the item has a submenu | [default to undefined]
11
11
  **color** | **string** | | [optional] [default to undefined]
12
12
  **backgroundColor** | **string** | | [optional] [default to undefined]
13
13
  **published** | **boolean** | | [optional] [default to undefined]
package/index.ts CHANGED
@@ -1,10 +1,10 @@
1
1
  /* tslint:disable */
2
2
  /* eslint-disable */
3
3
  /**
4
- * Website API
4
+ * Website
5
5
  * Manage your PodOS Website
6
6
  *
7
- * The version of the OpenAPI document: 0.30.1
7
+ * The version of the OpenAPI document: 0.30.3
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.30.1",
3
+ "version": "0.30.3",
4
4
  "description": "OpenAPI client for @teemill/website",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {