storyblok 4.19.0-alpha.1 → 4.19.1

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.
@@ -32,6 +32,20 @@ interface PullComponentsOptions extends CommandOptions {
32
32
  * @default false
33
33
  */
34
34
  separateFiles?: boolean;
35
+ /**
36
+ * Glob pattern to select components by name. Matching components and their dependencies
37
+ * (assigned groups with ancestors, tags, presets, and schema-whitelisted groups/tags) are pulled.
38
+ */
39
+ filter?: string;
40
+ /**
41
+ * Component group name(s) or `Parent/Child` path(s) to select. Includes descendant groups.
42
+ * Repeatable; multiple values match any of the given groups.
43
+ */
44
+ group?: string[];
45
+ /**
46
+ * Component tag name(s) to select. Repeatable and comma-separated; multiple values match any.
47
+ */
48
+ tag?: string[];
35
49
  }
36
50
 
37
51
  interface PushComponentsOptions extends CommandOptions {
@@ -55,6 +69,15 @@ interface PushComponentsOptions extends CommandOptions {
55
69
  * Suffix to add to the component name.
56
70
  */
57
71
  suffix?: string;
72
+ /**
73
+ * Component group name(s) or `Parent/Child` path(s) to select from local files. Includes descendants.
74
+ * Repeatable; multiple values match any of the given groups.
75
+ */
76
+ group?: string[];
77
+ /**
78
+ * Component tag name(s) to select from local files. Repeatable and comma-separated; multiple values match any.
79
+ */
80
+ tag?: string[];
58
81
  }
59
82
 
60
83
  interface MigrationsGenerateOptions extends CommandOptions {
@@ -32,6 +32,20 @@ interface PullComponentsOptions extends CommandOptions {
32
32
  * @default false
33
33
  */
34
34
  separateFiles?: boolean;
35
+ /**
36
+ * Glob pattern to select components by name. Matching components and their dependencies
37
+ * (assigned groups with ancestors, tags, presets, and schema-whitelisted groups/tags) are pulled.
38
+ */
39
+ filter?: string;
40
+ /**
41
+ * Component group name(s) or `Parent/Child` path(s) to select. Includes descendant groups.
42
+ * Repeatable; multiple values match any of the given groups.
43
+ */
44
+ group?: string[];
45
+ /**
46
+ * Component tag name(s) to select. Repeatable and comma-separated; multiple values match any.
47
+ */
48
+ tag?: string[];
35
49
  }
36
50
 
37
51
  interface PushComponentsOptions extends CommandOptions {
@@ -55,6 +69,15 @@ interface PushComponentsOptions extends CommandOptions {
55
69
  * Suffix to add to the component name.
56
70
  */
57
71
  suffix?: string;
72
+ /**
73
+ * Component group name(s) or `Parent/Child` path(s) to select from local files. Includes descendants.
74
+ * Repeatable; multiple values match any of the given groups.
75
+ */
76
+ group?: string[];
77
+ /**
78
+ * Component tag name(s) to select from local files. Repeatable and comma-separated; multiple values match any.
79
+ */
80
+ tag?: string[];
58
81
  }
59
82
 
60
83
  interface MigrationsGenerateOptions extends CommandOptions {