@emailshepherd/cli 0.2.5 → 0.2.6
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.js +1 -1
- package/dist/types.d.ts +10 -0
- package/package.json +1 -1
package/dist/cli.js
CHANGED
package/dist/types.d.ts
CHANGED
|
@@ -191,18 +191,28 @@ export type RichTextFieldDefinitionValidations = {
|
|
|
191
191
|
};
|
|
192
192
|
export type RichTextFieldDefinitionMarksBold = {
|
|
193
193
|
enabled: boolean;
|
|
194
|
+
/** @nullable */
|
|
195
|
+
custom_style_name?: string | null;
|
|
194
196
|
};
|
|
195
197
|
export type RichTextFieldDefinitionMarksItalic = {
|
|
196
198
|
enabled: boolean;
|
|
199
|
+
/** @nullable */
|
|
200
|
+
custom_style_name?: string | null;
|
|
197
201
|
};
|
|
198
202
|
export type RichTextFieldDefinitionMarksLink = {
|
|
199
203
|
enabled: boolean;
|
|
204
|
+
/** @nullable */
|
|
205
|
+
custom_style_name?: string | null;
|
|
200
206
|
};
|
|
201
207
|
export type RichTextFieldDefinitionMarksBulletList = {
|
|
202
208
|
enabled: boolean;
|
|
209
|
+
/** @nullable */
|
|
210
|
+
custom_style_name?: string | null;
|
|
203
211
|
};
|
|
204
212
|
export type RichTextFieldDefinitionMarksNumberedList = {
|
|
205
213
|
enabled: boolean;
|
|
214
|
+
/** @nullable */
|
|
215
|
+
custom_style_name?: string | null;
|
|
206
216
|
};
|
|
207
217
|
/**
|
|
208
218
|
* @nullable
|