@teemill/website 0.22.2 → 0.24.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.
Files changed (55) hide show
  1. package/README.md +26 -2
  2. package/api.ts +901 -53
  3. package/base.ts +1 -1
  4. package/common.ts +1 -1
  5. package/configuration.ts +1 -1
  6. package/dist/api.d.ts +747 -19
  7. package/dist/api.js +180 -7
  8. package/dist/base.d.ts +1 -1
  9. package/dist/base.js +1 -1
  10. package/dist/common.d.ts +1 -1
  11. package/dist/common.js +1 -1
  12. package/dist/configuration.d.ts +1 -1
  13. package/dist/configuration.js +1 -1
  14. package/dist/esm/api.d.ts +747 -19
  15. package/dist/esm/api.js +178 -5
  16. package/dist/esm/base.d.ts +1 -1
  17. package/dist/esm/base.js +1 -1
  18. package/dist/esm/common.d.ts +1 -1
  19. package/dist/esm/common.js +1 -1
  20. package/dist/esm/configuration.d.ts +1 -1
  21. package/dist/esm/configuration.js +1 -1
  22. package/dist/esm/index.d.ts +1 -1
  23. package/dist/esm/index.js +1 -1
  24. package/dist/index.d.ts +1 -1
  25. package/dist/index.js +1 -1
  26. package/docs/Banner.md +23 -0
  27. package/docs/BannerImage.md +22 -0
  28. package/docs/Collection.md +10 -6
  29. package/docs/CollectionProduct.md +24 -0
  30. package/docs/CollectionProductImage.md +22 -0
  31. package/docs/CollectionsApi.md +128 -0
  32. package/docs/CreateCollectionRequest.md +38 -0
  33. package/docs/CreateCollectionRequestBanner.md +22 -0
  34. package/docs/CreateCollectionRequestBannerImage.md +22 -0
  35. package/docs/CreateCollectionRequestBannerOverlay.md +26 -0
  36. package/docs/CreateCollectionRequestProductsInner.md +24 -0
  37. package/docs/CreateCollectionRequestSeoMetadata.md +24 -0
  38. package/docs/MetaImage.md +1 -1
  39. package/docs/NavigationTag.md +24 -0
  40. package/docs/NullableMetaImage.md +23 -0
  41. package/docs/Overlay.md +27 -0
  42. package/docs/SalePrice.md +23 -0
  43. package/docs/UpdateCollectionRequest.md +7 -1
  44. package/docs/UpdateCollectionRequestBanner.md +22 -0
  45. package/docs/UpdateCollectionRequestBannerImage.md +22 -0
  46. package/docs/UpdateCollectionRequestProductsInner.md +24 -0
  47. package/docs/UpdateCollectionRequestSeoMetadata.md +24 -0
  48. package/docs/UpdateCollectionsRequestCollectionsInner.md +6 -0
  49. package/docs/UpdateCollectionsRequestCollectionsInnerBanner.md +22 -0
  50. package/docs/UpdateCollectionsRequestCollectionsInnerBannerImage.md +22 -0
  51. package/docs/UpdateCollectionsRequestCollectionsInnerBannerOverlay.md +26 -0
  52. package/docs/UpdateCollectionsRequestCollectionsInnerProductsInner.md +24 -0
  53. package/docs/Variant.md +1 -1
  54. package/index.ts +1 -1
  55. package/package.json +1 -1
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @teemill/website@0.22.2
1
+ ## @teemill/website@0.24.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.22.2 --save
39
+ npm install @teemill/website@0.24.0 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
@@ -56,6 +56,8 @@ Class | Method | HTTP request | Description
56
56
  *BlogsApi* | [**listBlogs**](docs/BlogsApi.md#listblogs) | **GET** /v1/website/blogs | List website blog posts
57
57
  *BlogsApi* | [**updateBlog**](docs/BlogsApi.md#updateblog) | **PATCH** /v1/website/blogs/{blogId} | Update website blog post
58
58
  *BlogsApi* | [**updateBlogs**](docs/BlogsApi.md#updateblogs) | **PATCH** /v1/website/blogs | Update website blog posts
59
+ *CollectionsApi* | [**createCollection**](docs/CollectionsApi.md#createcollection) | **POST** /v1/website/collections | Create website collection
60
+ *CollectionsApi* | [**deleteCollection**](docs/CollectionsApi.md#deletecollection) | **DELETE** /v1/website/collections/{collectionId} | Delete website collection
59
61
  *CollectionsApi* | [**exportCollections**](docs/CollectionsApi.md#exportcollections) | **GET** /v1/website/collections/export | Export collections
60
62
  *CollectionsApi* | [**getCollection**](docs/CollectionsApi.md#getcollection) | **GET** /v1/website/collections/{collectionId} | Get website collection
61
63
  *CollectionsApi* | [**listCollections**](docs/CollectionsApi.md#listcollections) | **GET** /v1/website/collections | List website collections
@@ -100,11 +102,21 @@ Class | Method | HTTP request | Description
100
102
  - [Attribute](docs/Attribute.md)
101
103
  - [AttributeThumbnail](docs/AttributeThumbnail.md)
102
104
  - [AuthorizeStripe200Response](docs/AuthorizeStripe200Response.md)
105
+ - [Banner](docs/Banner.md)
106
+ - [BannerImage](docs/BannerImage.md)
103
107
  - [Blog](docs/Blog.md)
104
108
  - [BlogsResponse](docs/BlogsResponse.md)
105
109
  - [Brand](docs/Brand.md)
106
110
  - [Collection](docs/Collection.md)
111
+ - [CollectionProduct](docs/CollectionProduct.md)
112
+ - [CollectionProductImage](docs/CollectionProductImage.md)
107
113
  - [CollectionsResponse](docs/CollectionsResponse.md)
114
+ - [CreateCollectionRequest](docs/CreateCollectionRequest.md)
115
+ - [CreateCollectionRequestBanner](docs/CreateCollectionRequestBanner.md)
116
+ - [CreateCollectionRequestBannerImage](docs/CreateCollectionRequestBannerImage.md)
117
+ - [CreateCollectionRequestBannerOverlay](docs/CreateCollectionRequestBannerOverlay.md)
118
+ - [CreateCollectionRequestProductsInner](docs/CreateCollectionRequestProductsInner.md)
119
+ - [CreateCollectionRequestSeoMetadata](docs/CreateCollectionRequestSeoMetadata.md)
108
120
  - [CreateSearchRedirectRequest](docs/CreateSearchRedirectRequest.md)
109
121
  - [ExportPages202Response](docs/ExportPages202Response.md)
110
122
  - [Footer](docs/Footer.md)
@@ -116,7 +128,10 @@ Class | Method | HTTP request | Description
116
128
  - [MetaField](docs/MetaField.md)
117
129
  - [MetaImage](docs/MetaImage.md)
118
130
  - [ModerateReviewRequest](docs/ModerateReviewRequest.md)
131
+ - [NavigationTag](docs/NavigationTag.md)
132
+ - [NullableMetaImage](docs/NullableMetaImage.md)
119
133
  - [OptimisationHistoryItem](docs/OptimisationHistoryItem.md)
134
+ - [Overlay](docs/Overlay.md)
120
135
  - [Page](docs/Page.md)
121
136
  - [PagesResponse](docs/PagesResponse.md)
122
137
  - [PaymentAccount](docs/PaymentAccount.md)
@@ -133,6 +148,7 @@ Class | Method | HTTP request | Description
133
148
  - [ReviewReplyAuthor](docs/ReviewReplyAuthor.md)
134
149
  - [ReviewsResponse](docs/ReviewsResponse.md)
135
150
  - [Route](docs/Route.md)
151
+ - [SalePrice](docs/SalePrice.md)
136
152
  - [SearchRedirect](docs/SearchRedirect.md)
137
153
  - [SearchRedirectsResponse](docs/SearchRedirectsResponse.md)
138
154
  - [SeoMetadata](docs/SeoMetadata.md)
@@ -152,8 +168,16 @@ Class | Method | HTTP request | Description
152
168
  - [UpdateBlogsRequestBlogsInnerSeoMetadata](docs/UpdateBlogsRequestBlogsInnerSeoMetadata.md)
153
169
  - [UpdateBrandRequest](docs/UpdateBrandRequest.md)
154
170
  - [UpdateCollectionRequest](docs/UpdateCollectionRequest.md)
171
+ - [UpdateCollectionRequestBanner](docs/UpdateCollectionRequestBanner.md)
172
+ - [UpdateCollectionRequestBannerImage](docs/UpdateCollectionRequestBannerImage.md)
173
+ - [UpdateCollectionRequestProductsInner](docs/UpdateCollectionRequestProductsInner.md)
174
+ - [UpdateCollectionRequestSeoMetadata](docs/UpdateCollectionRequestSeoMetadata.md)
155
175
  - [UpdateCollectionsRequest](docs/UpdateCollectionsRequest.md)
156
176
  - [UpdateCollectionsRequestCollectionsInner](docs/UpdateCollectionsRequestCollectionsInner.md)
177
+ - [UpdateCollectionsRequestCollectionsInnerBanner](docs/UpdateCollectionsRequestCollectionsInnerBanner.md)
178
+ - [UpdateCollectionsRequestCollectionsInnerBannerImage](docs/UpdateCollectionsRequestCollectionsInnerBannerImage.md)
179
+ - [UpdateCollectionsRequestCollectionsInnerBannerOverlay](docs/UpdateCollectionsRequestCollectionsInnerBannerOverlay.md)
180
+ - [UpdateCollectionsRequestCollectionsInnerProductsInner](docs/UpdateCollectionsRequestCollectionsInnerProductsInner.md)
157
181
  - [UpdateCollectionsRequestCollectionsInnerSeoMetadata](docs/UpdateCollectionsRequestCollectionsInnerSeoMetadata.md)
158
182
  - [UpdateFooterRequest](docs/UpdateFooterRequest.md)
159
183
  - [UpdateFooterRequestItemsInner](docs/UpdateFooterRequestItemsInner.md)