@teemill/website 0.22.2 → 0.23.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 +25 -2
- package/api.ts +874 -52
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +722 -17
- package/dist/api.js +175 -5
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +722 -17
- package/dist/esm/api.js +175 -5
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/Banner.md +23 -0
- package/docs/BannerImage.md +22 -0
- package/docs/Collection.md +10 -6
- package/docs/CollectionProduct.md +24 -0
- package/docs/CollectionProductImage.md +22 -0
- package/docs/CollectionsApi.md +128 -0
- package/docs/CreateCollectionRequest.md +38 -0
- package/docs/CreateCollectionRequestBanner.md +22 -0
- package/docs/CreateCollectionRequestBannerImage.md +22 -0
- package/docs/CreateCollectionRequestBannerOverlay.md +26 -0
- package/docs/CreateCollectionRequestProductsInner.md +24 -0
- package/docs/CreateCollectionRequestSeoMetadata.md +24 -0
- package/docs/MetaImage.md +1 -1
- package/docs/NavigationTag.md +24 -0
- package/docs/NullableMetaImage.md +23 -0
- package/docs/Overlay.md +27 -0
- package/docs/UpdateCollectionRequest.md +7 -1
- package/docs/UpdateCollectionRequestBanner.md +22 -0
- package/docs/UpdateCollectionRequestBannerImage.md +22 -0
- package/docs/UpdateCollectionRequestProductsInner.md +24 -0
- package/docs/UpdateCollectionRequestSeoMetadata.md +24 -0
- package/docs/UpdateCollectionsRequestCollectionsInner.md +6 -0
- package/docs/UpdateCollectionsRequestCollectionsInnerBanner.md +22 -0
- package/docs/UpdateCollectionsRequestCollectionsInnerBannerImage.md +22 -0
- package/docs/UpdateCollectionsRequestCollectionsInnerBannerOverlay.md +26 -0
- package/docs/UpdateCollectionsRequestCollectionsInnerProductsInner.md +24 -0
- package/index.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @teemill/website@0.
|
|
1
|
+
## @teemill/website@0.23.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.
|
|
39
|
+
npm install @teemill/website@0.23.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)
|
|
@@ -152,8 +167,16 @@ Class | Method | HTTP request | Description
|
|
|
152
167
|
- [UpdateBlogsRequestBlogsInnerSeoMetadata](docs/UpdateBlogsRequestBlogsInnerSeoMetadata.md)
|
|
153
168
|
- [UpdateBrandRequest](docs/UpdateBrandRequest.md)
|
|
154
169
|
- [UpdateCollectionRequest](docs/UpdateCollectionRequest.md)
|
|
170
|
+
- [UpdateCollectionRequestBanner](docs/UpdateCollectionRequestBanner.md)
|
|
171
|
+
- [UpdateCollectionRequestBannerImage](docs/UpdateCollectionRequestBannerImage.md)
|
|
172
|
+
- [UpdateCollectionRequestProductsInner](docs/UpdateCollectionRequestProductsInner.md)
|
|
173
|
+
- [UpdateCollectionRequestSeoMetadata](docs/UpdateCollectionRequestSeoMetadata.md)
|
|
155
174
|
- [UpdateCollectionsRequest](docs/UpdateCollectionsRequest.md)
|
|
156
175
|
- [UpdateCollectionsRequestCollectionsInner](docs/UpdateCollectionsRequestCollectionsInner.md)
|
|
176
|
+
- [UpdateCollectionsRequestCollectionsInnerBanner](docs/UpdateCollectionsRequestCollectionsInnerBanner.md)
|
|
177
|
+
- [UpdateCollectionsRequestCollectionsInnerBannerImage](docs/UpdateCollectionsRequestCollectionsInnerBannerImage.md)
|
|
178
|
+
- [UpdateCollectionsRequestCollectionsInnerBannerOverlay](docs/UpdateCollectionsRequestCollectionsInnerBannerOverlay.md)
|
|
179
|
+
- [UpdateCollectionsRequestCollectionsInnerProductsInner](docs/UpdateCollectionsRequestCollectionsInnerProductsInner.md)
|
|
157
180
|
- [UpdateCollectionsRequestCollectionsInnerSeoMetadata](docs/UpdateCollectionsRequestCollectionsInnerSeoMetadata.md)
|
|
158
181
|
- [UpdateFooterRequest](docs/UpdateFooterRequest.md)
|
|
159
182
|
- [UpdateFooterRequestItemsInner](docs/UpdateFooterRequestItemsInner.md)
|