@malevich-studio/strapi-sdk-typescript 1.2.31 → 1.2.32

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/dist/cli.mjs CHANGED
@@ -21830,6 +21830,17 @@ class Time extends Base {
21830
21830
  }
21831
21831
  }
21832
21832
 
21833
+ class Richtext extends Base {
21834
+ constructor(name, attribute) {
21835
+ super(name, attribute);
21836
+ this.name = name;
21837
+ this.attribute = attribute;
21838
+ }
21839
+ getType() {
21840
+ return "string";
21841
+ }
21842
+ }
21843
+
21833
21844
  const types = {
21834
21845
  'string': String$1,
21835
21846
  'text': String$1,
@@ -21850,6 +21861,7 @@ const types = {
21850
21861
  'dynamiczone': Dynamiczone,
21851
21862
  'blocks': Blocks,
21852
21863
  'json': Json,
21864
+ 'richtext': Richtext,
21853
21865
  };
21854
21866
  function getAttributeGenerator(name, attribute) {
21855
21867
  if (!types[attribute.type]) {