@teemill/website 0.30.2 → 0.30.4

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.2
1
+ ## @teemill/website@0.30.4
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.2 --save
39
+ npm install @teemill/website@0.30.4 --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.2
7
+ * The version of the OpenAPI document: 0.30.4
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];
@@ -309,7 +310,7 @@ export interface PaymentAccount {
309
310
 
310
311
  export const PaymentAccountMethodEnum = {
311
312
  Stripe: 'stripe',
312
- Paypal: 'paypal'
313
+ Paypal: 'paypal',
313
314
  } as const;
314
315
 
315
316
  export type PaymentAccountMethodEnum = typeof PaymentAccountMethodEnum[keyof typeof PaymentAccountMethodEnum];
@@ -329,7 +330,7 @@ export interface Price {
329
330
  }
330
331
 
331
332
  export const PriceCurrencyCodeEnum = {
332
- Gbp: 'GBP'
333
+ Gbp: 'GBP',
333
334
  } as const;
334
335
 
335
336
  export type PriceCurrencyCodeEnum = typeof PriceCurrencyCodeEnum[keyof typeof PriceCurrencyCodeEnum];
@@ -531,7 +532,7 @@ export interface SalePrice {
531
532
  }
532
533
 
533
534
  export const SalePriceCurrencyCodeEnum = {
534
- Gbp: 'GBP'
535
+ Gbp: 'GBP',
535
536
  } as const;
536
537
 
537
538
  export type SalePriceCurrencyCodeEnum = typeof SalePriceCurrencyCodeEnum[keyof typeof SalePriceCurrencyCodeEnum];
@@ -597,7 +598,7 @@ export interface SubmenuInner {
597
598
 
598
599
  export const SubmenuInnerModeEnum = {
599
600
  Image: 'image',
600
- List: 'list'
601
+ List: 'list',
601
602
  } as const;
602
603
 
603
604
  export type SubmenuInnerModeEnum = typeof SubmenuInnerModeEnum[keyof typeof SubmenuInnerModeEnum];
@@ -618,7 +619,7 @@ export const SubmenuInnerImageBorderRadiusEnum = {
618
619
  Sharp: 'sharp',
619
620
  Smooth: 'smooth',
620
621
  Rounded: 'rounded',
621
- Circle: 'circle'
622
+ Circle: 'circle',
622
623
  } as const;
623
624
 
624
625
  export type SubmenuInnerImageBorderRadiusEnum = typeof SubmenuInnerImageBorderRadiusEnum[keyof typeof SubmenuInnerImageBorderRadiusEnum];
@@ -636,13 +637,13 @@ export const SubmenuInnerImageButtonBorderRadiusEnum = {
636
637
  Sharp: 'sharp',
637
638
  Smooth: 'smooth',
638
639
  Rounded: 'rounded',
639
- Circle: 'circle'
640
+ Circle: 'circle',
640
641
  } as const;
641
642
 
642
643
  export type SubmenuInnerImageButtonBorderRadiusEnum = typeof SubmenuInnerImageButtonBorderRadiusEnum[keyof typeof SubmenuInnerImageButtonBorderRadiusEnum];
643
644
  export const SubmenuInnerImageButtonWidthEnum = {
644
645
  Auto: 'auto',
645
- Full: 'full'
646
+ Full: 'full',
646
647
  } as const;
647
648
 
648
649
  export type SubmenuInnerImageButtonWidthEnum = typeof SubmenuInnerImageButtonWidthEnum[keyof typeof SubmenuInnerImageButtonWidthEnum];
@@ -656,7 +657,7 @@ export interface SubmenuInnerImageText {
656
657
  export const SubmenuInnerImageTextAlignmentEnum = {
657
658
  Left: 'left',
658
659
  Center: 'center',
659
- Right: 'right'
660
+ Right: 'right',
660
661
  } as const;
661
662
 
662
663
  export type SubmenuInnerImageTextAlignmentEnum = typeof SubmenuInnerImageTextAlignmentEnum[keyof typeof SubmenuInnerImageTextAlignmentEnum];
@@ -664,7 +665,7 @@ export const SubmenuInnerImageTextShadowEnum = {
664
665
  None: 'none',
665
666
  Light: 'light',
666
667
  Medium: 'medium',
667
- Heavy: 'heavy'
668
+ Heavy: 'heavy',
668
669
  } as const;
669
670
 
670
671
  export type SubmenuInnerImageTextShadowEnum = typeof SubmenuInnerImageTextShadowEnum[keyof typeof SubmenuInnerImageTextShadowEnum];
@@ -791,7 +792,7 @@ export interface UpdateMenuRequestItemSubmenuInner {
791
792
 
792
793
  export const UpdateMenuRequestItemSubmenuInnerModeEnum = {
793
794
  Image: 'image',
794
- List: 'list'
795
+ List: 'list',
795
796
  } as const;
796
797
 
797
798
  export type UpdateMenuRequestItemSubmenuInnerModeEnum = typeof UpdateMenuRequestItemSubmenuInnerModeEnum[keyof typeof UpdateMenuRequestItemSubmenuInnerModeEnum];
@@ -820,13 +821,13 @@ export const UpdateMenuRequestItemSubmenuInnerImageButtonBorderRadiusEnum = {
820
821
  Sharp: 'sharp',
821
822
  Smooth: 'smooth',
822
823
  Rounded: 'rounded',
823
- Circle: 'circle'
824
+ Circle: 'circle',
824
825
  } as const;
825
826
 
826
827
  export type UpdateMenuRequestItemSubmenuInnerImageButtonBorderRadiusEnum = typeof UpdateMenuRequestItemSubmenuInnerImageButtonBorderRadiusEnum[keyof typeof UpdateMenuRequestItemSubmenuInnerImageButtonBorderRadiusEnum];
827
828
  export const UpdateMenuRequestItemSubmenuInnerImageButtonWidthEnum = {
828
829
  Auto: 'auto',
829
- Full: 'full'
830
+ Full: 'full',
830
831
  } as const;
831
832
 
832
833
  export type UpdateMenuRequestItemSubmenuInnerImageButtonWidthEnum = typeof UpdateMenuRequestItemSubmenuInnerImageButtonWidthEnum[keyof typeof UpdateMenuRequestItemSubmenuInnerImageButtonWidthEnum];
@@ -840,7 +841,7 @@ export interface UpdateMenuRequestItemSubmenuInnerImageText {
840
841
  export const UpdateMenuRequestItemSubmenuInnerImageTextAlignmentEnum = {
841
842
  Left: 'left',
842
843
  Center: 'center',
843
- Right: 'right'
844
+ Right: 'right',
844
845
  } as const;
845
846
 
846
847
  export type UpdateMenuRequestItemSubmenuInnerImageTextAlignmentEnum = typeof UpdateMenuRequestItemSubmenuInnerImageTextAlignmentEnum[keyof typeof UpdateMenuRequestItemSubmenuInnerImageTextAlignmentEnum];
@@ -848,7 +849,7 @@ export const UpdateMenuRequestItemSubmenuInnerImageTextShadowEnum = {
848
849
  None: 'none',
849
850
  Light: 'light',
850
851
  Medium: 'medium',
851
- Heavy: 'heavy'
852
+ Heavy: 'heavy',
852
853
  } as const;
853
854
 
854
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.2
7
+ * The version of the OpenAPI document: 0.30.4
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.2
7
+ * The version of the OpenAPI document: 0.30.4
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.2
6
+ * The version of the OpenAPI document: 0.30.4
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.2
5
+ * The version of the OpenAPI document: 0.30.4
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";
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.2
8
+ * The version of the OpenAPI document: 0.30.4
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.2
5
+ * The version of the OpenAPI document: 0.30.4
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.2
8
+ * The version of the OpenAPI document: 0.30.4
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.2
5
+ * The version of the OpenAPI document: 0.30.4
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.2
8
+ * The version of the OpenAPI document: 0.30.4
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.2
5
+ * The version of the OpenAPI document: 0.30.4
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.2
7
+ * The version of the OpenAPI document: 0.30.4
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.2
5
+ * The version of the OpenAPI document: 0.30.4
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";
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.2
7
+ * The version of the OpenAPI document: 0.30.4
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.2
5
+ * The version of the OpenAPI document: 0.30.4
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.2
7
+ * The version of the OpenAPI document: 0.30.4
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.2
5
+ * The version of the OpenAPI document: 0.30.4
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.2
7
+ * The version of the OpenAPI document: 0.30.4
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.2
5
+ * The version of the OpenAPI document: 0.30.4
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.2
6
+ * The version of the OpenAPI document: 0.30.4
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.2
5
+ * The version of the OpenAPI document: 0.30.4
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.2
7
+ * The version of the OpenAPI document: 0.30.4
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.2
5
+ * The version of the OpenAPI document: 0.30.4
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.2
8
+ * The version of the OpenAPI document: 0.30.4
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/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.2
7
+ * The version of the OpenAPI document: 0.30.4
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.2",
3
+ "version": "0.30.4",
4
4
  "description": "OpenAPI client for @teemill/website",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {
@@ -24,7 +24,7 @@
24
24
  "prepare": "npm run build"
25
25
  },
26
26
  "dependencies": {
27
- "axios": "1.13.5"
27
+ "axios": "1.15.0"
28
28
  },
29
29
  "devDependencies": {
30
30
  "@types/node": "12.11.5 - 12.20.42",