storyblok 3.12.0 → 3.13.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.
@@ -11,8 +11,8 @@ assignees: ''
11
11
  - [ ] *app.storyblok.com (CMS - Interface)*
12
12
  - [ ] *api.storyblok.com (CMS - Content Delivery API)*
13
13
  - [ ] *mapi.storyblok.com (CMS - Management API)*
14
- - [ ] *capi.storyblok.com (Commerce - API)*
15
- - [ ] *Commerce - Interface*
14
+ - [ ] *a.storyblok.com (CMS - Image Service)*
15
+ - [ ] *storyblok.com (Website)*
16
16
  - [ ] *Other:* <!-- => If you've got an issue with on of our boilerplates or themes - please create an issue in the specific repo -->
17
17
 
18
18
  **Current behavior:**
@@ -11,8 +11,7 @@ assignees: ''
11
11
  - [ ] *app.storyblok.com (CMS - Interface)*
12
12
  - [ ] *api.storyblok.com (CMS - Content Delivery API)*
13
13
  - [ ] *mapi.storyblok.com (CMS - Management API)*
14
- - [ ] *capi.storyblok.com (Commerce - API)*
15
- - [ ] *Commerce - Interface*
14
+ - [ ] *a.storyblok.com (CMS - Image Service)*
16
15
  - [ ] *Other* <!-- => If you've got an issue with on of our boilerplates or themes - please create an issue in the specific repo -->
17
16
 
18
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "storyblok",
3
- "version": "3.12.0",
3
+ "version": "3.13.0",
4
4
  "description": "A simple CLI to start Storyblok from your command line.",
5
5
  "keywords": [
6
6
  "storyblok",
@@ -210,7 +210,7 @@ class SyncComponents {
210
210
  return Object.keys(sourceSchema).reduce((acc, key) => {
211
211
  // handle blocks separately
212
212
  const sourceSchemaItem = sourceSchema[key]
213
- if (sourceSchemaItem.type === 'bloks') {
213
+ if (sourceSchemaItem?.type === 'bloks' || sourceSchemaItem?.type === 'richtext') {
214
214
  acc[key] = this.mergeBloksSchema(sourceSchemaItem)
215
215
  return acc
216
216
  }