@malevich-studio/strapi-sdk-typescript 1.2.1 → 1.2.2

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.cjs CHANGED
@@ -20531,6 +20531,17 @@ class Dynamiczone extends BaseRelation {
20531
20531
  }
20532
20532
  }
20533
20533
 
20534
+ class Time extends Base {
20535
+ constructor(name, attribute) {
20536
+ super(name, attribute);
20537
+ this.name = name;
20538
+ this.attribute = attribute;
20539
+ }
20540
+ getType() {
20541
+ return 'string';
20542
+ }
20543
+ }
20544
+
20534
20545
  const types = {
20535
20546
  'string': String$1,
20536
20547
  'text': String$1,
@@ -20546,6 +20557,7 @@ const types = {
20546
20557
  'enumeration': Enumeration,
20547
20558
  'date': Date$1,
20548
20559
  'datetime': DateTime,
20560
+ 'time': Time,
20549
20561
  'component': Component,
20550
20562
  'dynamiczone': Dynamiczone,
20551
20563
  'blocks': Blocks,