manga-renderer 1.0.21 → 1.0.23

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.
@@ -80,7 +80,7 @@ export declare const NotebookBaseSchema: z.ZodObject<{
80
80
  pages: z.ZodArray<z.ZodObject<{
81
81
  panels: z.ZodArray<z.ZodObject<{
82
82
  composition: z.ZodString;
83
- camera: z.ZodEnum<["from side", "from back", "Dutch angle shot", "dramatic angle", "top-down view", "aerial shot", "birds-eye-view shot", "top angle view", "from above", "wide angle", "eye-level shot", "front view", "straight-on", "from below"]>;
83
+ camera: z.ZodString;
84
84
  bubbles: z.ZodArray<z.ZodObject<{
85
85
  owner: z.ZodString;
86
86
  speech: z.ZodString;
@@ -100,7 +100,7 @@ export declare const NotebookBaseSchema: z.ZodObject<{
100
100
  weight: z.ZodNumber;
101
101
  }, "strip", z.ZodTypeAny, {
102
102
  composition: string;
103
- camera: "from side" | "from back" | "Dutch angle shot" | "dramatic angle" | "top-down view" | "aerial shot" | "birds-eye-view shot" | "top angle view" | "from above" | "wide angle" | "eye-level shot" | "front view" | "straight-on" | "from below";
103
+ camera: string;
104
104
  bubbles: {
105
105
  color: string;
106
106
  speech: string;
@@ -110,7 +110,7 @@ export declare const NotebookBaseSchema: z.ZodObject<{
110
110
  weight: number;
111
111
  }, {
112
112
  composition: string;
113
- camera: "from side" | "from back" | "Dutch angle shot" | "dramatic angle" | "top-down view" | "aerial shot" | "birds-eye-view shot" | "top angle view" | "from above" | "wide angle" | "eye-level shot" | "front view" | "straight-on" | "from below";
113
+ camera: string;
114
114
  bubbles: {
115
115
  color: string;
116
116
  speech: string;
@@ -174,7 +174,7 @@ export declare const NotebookBaseSchema: z.ZodObject<{
174
174
  } | null;
175
175
  panels: {
176
176
  composition: string;
177
- camera: "from side" | "from back" | "Dutch angle shot" | "dramatic angle" | "top-down view" | "aerial shot" | "birds-eye-view shot" | "top angle view" | "from above" | "wide angle" | "eye-level shot" | "front view" | "straight-on" | "from below";
177
+ camera: string;
178
178
  bubbles: {
179
179
  color: string;
180
180
  speech: string;
@@ -186,7 +186,7 @@ export declare const NotebookBaseSchema: z.ZodObject<{
186
186
  }, {
187
187
  panels: {
188
188
  composition: string;
189
- camera: "from side" | "from back" | "Dutch angle shot" | "dramatic angle" | "top-down view" | "aerial shot" | "birds-eye-view shot" | "top angle view" | "from above" | "wide angle" | "eye-level shot" | "front view" | "straight-on" | "from below";
189
+ camera: string;
190
190
  bubbles: {
191
191
  color: string;
192
192
  speech: string;
@@ -224,7 +224,7 @@ export declare const NotebookBaseSchema: z.ZodObject<{
224
224
  } | null;
225
225
  panels: {
226
226
  composition: string;
227
- camera: "from side" | "from back" | "Dutch angle shot" | "dramatic angle" | "top-down view" | "aerial shot" | "birds-eye-view shot" | "top angle view" | "from above" | "wide angle" | "eye-level shot" | "front view" | "straight-on" | "from below";
227
+ camera: string;
228
228
  bubbles: {
229
229
  color: string;
230
230
  speech: string;
@@ -244,7 +244,7 @@ export declare const NotebookBaseSchema: z.ZodObject<{
244
244
  pages: {
245
245
  panels: {
246
246
  composition: string;
247
- camera: "from side" | "from back" | "Dutch angle shot" | "dramatic angle" | "top-down view" | "aerial shot" | "birds-eye-view shot" | "top angle view" | "from above" | "wide angle" | "eye-level shot" | "front view" | "straight-on" | "from below";
247
+ camera: string;
248
248
  bubbles: {
249
249
  color: string;
250
250
  speech: string;
@@ -298,7 +298,7 @@ export declare const NotebookBaseSchema: z.ZodObject<{
298
298
  } | null;
299
299
  panels: {
300
300
  composition: string;
301
- camera: "from side" | "from back" | "Dutch angle shot" | "dramatic angle" | "top-down view" | "aerial shot" | "birds-eye-view shot" | "top angle view" | "from above" | "wide angle" | "eye-level shot" | "front view" | "straight-on" | "from below";
301
+ camera: string;
302
302
  bubbles: {
303
303
  color: string;
304
304
  speech: string;
@@ -333,7 +333,7 @@ export declare const NotebookBaseSchema: z.ZodObject<{
333
333
  pages: {
334
334
  panels: {
335
335
  composition: string;
336
- camera: "from side" | "from back" | "Dutch angle shot" | "dramatic angle" | "top-down view" | "aerial shot" | "birds-eye-view shot" | "top angle view" | "from above" | "wide angle" | "eye-level shot" | "front view" | "straight-on" | "from below";
336
+ camera: string;
337
337
  bubbles: {
338
338
  color: string;
339
339
  speech: string;
@@ -32,7 +32,7 @@ declare const BubbleSchema: z.ZodObject<{
32
32
  }>;
33
33
  declare const PanelSchema: z.ZodObject<{
34
34
  composition: z.ZodString;
35
- camera: z.ZodEnum<["from side", "from back", "Dutch angle shot", "dramatic angle", "top-down view", "aerial shot", "birds-eye-view shot", "top angle view", "from above", "wide angle", "eye-level shot", "front view", "straight-on", "from below"]>;
35
+ camera: z.ZodString;
36
36
  bubbles: z.ZodArray<z.ZodObject<{
37
37
  owner: z.ZodString;
38
38
  speech: z.ZodString;
@@ -52,7 +52,7 @@ declare const PanelSchema: z.ZodObject<{
52
52
  weight: z.ZodNumber;
53
53
  }, "strip", z.ZodTypeAny, {
54
54
  composition: string;
55
- camera: "from side" | "from back" | "Dutch angle shot" | "dramatic angle" | "top-down view" | "aerial shot" | "birds-eye-view shot" | "top angle view" | "from above" | "wide angle" | "eye-level shot" | "front view" | "straight-on" | "from below";
55
+ camera: string;
56
56
  bubbles: {
57
57
  color: string;
58
58
  speech: string;
@@ -62,7 +62,7 @@ declare const PanelSchema: z.ZodObject<{
62
62
  weight: number;
63
63
  }, {
64
64
  composition: string;
65
- camera: "from side" | "from back" | "Dutch angle shot" | "dramatic angle" | "top-down view" | "aerial shot" | "birds-eye-view shot" | "top angle view" | "from above" | "wide angle" | "eye-level shot" | "front view" | "straight-on" | "from below";
65
+ camera: string;
66
66
  bubbles: {
67
67
  color: string;
68
68
  speech: string;
@@ -74,7 +74,7 @@ declare const PanelSchema: z.ZodObject<{
74
74
  declare const PageSchema: z.ZodObject<{
75
75
  panels: z.ZodArray<z.ZodObject<{
76
76
  composition: z.ZodString;
77
- camera: z.ZodEnum<["from side", "from back", "Dutch angle shot", "dramatic angle", "top-down view", "aerial shot", "birds-eye-view shot", "top angle view", "from above", "wide angle", "eye-level shot", "front view", "straight-on", "from below"]>;
77
+ camera: z.ZodString;
78
78
  bubbles: z.ZodArray<z.ZodObject<{
79
79
  owner: z.ZodString;
80
80
  speech: z.ZodString;
@@ -94,7 +94,7 @@ declare const PageSchema: z.ZodObject<{
94
94
  weight: z.ZodNumber;
95
95
  }, "strip", z.ZodTypeAny, {
96
96
  composition: string;
97
- camera: "from side" | "from back" | "Dutch angle shot" | "dramatic angle" | "top-down view" | "aerial shot" | "birds-eye-view shot" | "top angle view" | "from above" | "wide angle" | "eye-level shot" | "front view" | "straight-on" | "from below";
97
+ camera: string;
98
98
  bubbles: {
99
99
  color: string;
100
100
  speech: string;
@@ -104,7 +104,7 @@ declare const PageSchema: z.ZodObject<{
104
104
  weight: number;
105
105
  }, {
106
106
  composition: string;
107
- camera: "from side" | "from back" | "Dutch angle shot" | "dramatic angle" | "top-down view" | "aerial shot" | "birds-eye-view shot" | "top angle view" | "from above" | "wide angle" | "eye-level shot" | "front view" | "straight-on" | "from below";
107
+ camera: string;
108
108
  bubbles: {
109
109
  color: string;
110
110
  speech: string;
@@ -168,7 +168,7 @@ declare const PageSchema: z.ZodObject<{
168
168
  } | null;
169
169
  panels: {
170
170
  composition: string;
171
- camera: "from side" | "from back" | "Dutch angle shot" | "dramatic angle" | "top-down view" | "aerial shot" | "birds-eye-view shot" | "top angle view" | "from above" | "wide angle" | "eye-level shot" | "front view" | "straight-on" | "from below";
171
+ camera: string;
172
172
  bubbles: {
173
173
  color: string;
174
174
  speech: string;
@@ -180,7 +180,7 @@ declare const PageSchema: z.ZodObject<{
180
180
  }, {
181
181
  panels: {
182
182
  composition: string;
183
- camera: "from side" | "from back" | "Dutch angle shot" | "dramatic angle" | "top-down view" | "aerial shot" | "birds-eye-view shot" | "top angle view" | "from above" | "wide angle" | "eye-level shot" | "front view" | "straight-on" | "from below";
183
+ camera: string;
184
184
  bubbles: {
185
185
  color: string;
186
186
  speech: string;
@@ -217,7 +217,7 @@ export declare const StoryboardSchema: z.ZodObject<{
217
217
  pages: z.ZodArray<z.ZodObject<{
218
218
  panels: z.ZodArray<z.ZodObject<{
219
219
  composition: z.ZodString;
220
- camera: z.ZodEnum<["from side", "from back", "Dutch angle shot", "dramatic angle", "top-down view", "aerial shot", "birds-eye-view shot", "top angle view", "from above", "wide angle", "eye-level shot", "front view", "straight-on", "from below"]>;
220
+ camera: z.ZodString;
221
221
  bubbles: z.ZodArray<z.ZodObject<{
222
222
  owner: z.ZodString;
223
223
  speech: z.ZodString;
@@ -237,7 +237,7 @@ export declare const StoryboardSchema: z.ZodObject<{
237
237
  weight: z.ZodNumber;
238
238
  }, "strip", z.ZodTypeAny, {
239
239
  composition: string;
240
- camera: "from side" | "from back" | "Dutch angle shot" | "dramatic angle" | "top-down view" | "aerial shot" | "birds-eye-view shot" | "top angle view" | "from above" | "wide angle" | "eye-level shot" | "front view" | "straight-on" | "from below";
240
+ camera: string;
241
241
  bubbles: {
242
242
  color: string;
243
243
  speech: string;
@@ -247,7 +247,7 @@ export declare const StoryboardSchema: z.ZodObject<{
247
247
  weight: number;
248
248
  }, {
249
249
  composition: string;
250
- camera: "from side" | "from back" | "Dutch angle shot" | "dramatic angle" | "top-down view" | "aerial shot" | "birds-eye-view shot" | "top angle view" | "from above" | "wide angle" | "eye-level shot" | "front view" | "straight-on" | "from below";
250
+ camera: string;
251
251
  bubbles: {
252
252
  color: string;
253
253
  speech: string;
@@ -311,7 +311,7 @@ export declare const StoryboardSchema: z.ZodObject<{
311
311
  } | null;
312
312
  panels: {
313
313
  composition: string;
314
- camera: "from side" | "from back" | "Dutch angle shot" | "dramatic angle" | "top-down view" | "aerial shot" | "birds-eye-view shot" | "top angle view" | "from above" | "wide angle" | "eye-level shot" | "front view" | "straight-on" | "from below";
314
+ camera: string;
315
315
  bubbles: {
316
316
  color: string;
317
317
  speech: string;
@@ -323,7 +323,7 @@ export declare const StoryboardSchema: z.ZodObject<{
323
323
  }, {
324
324
  panels: {
325
325
  composition: string;
326
- camera: "from side" | "from back" | "Dutch angle shot" | "dramatic angle" | "top-down view" | "aerial shot" | "birds-eye-view shot" | "top angle view" | "from above" | "wide angle" | "eye-level shot" | "front view" | "straight-on" | "from below";
326
+ camera: string;
327
327
  bubbles: {
328
328
  color: string;
329
329
  speech: string;
@@ -361,7 +361,7 @@ export declare const StoryboardSchema: z.ZodObject<{
361
361
  } | null;
362
362
  panels: {
363
363
  composition: string;
364
- camera: "from side" | "from back" | "Dutch angle shot" | "dramatic angle" | "top-down view" | "aerial shot" | "birds-eye-view shot" | "top angle view" | "from above" | "wide angle" | "eye-level shot" | "front view" | "straight-on" | "from below";
364
+ camera: string;
365
365
  bubbles: {
366
366
  color: string;
367
367
  speech: string;
@@ -381,7 +381,7 @@ export declare const StoryboardSchema: z.ZodObject<{
381
381
  pages: {
382
382
  panels: {
383
383
  composition: string;
384
- camera: "from side" | "from back" | "Dutch angle shot" | "dramatic angle" | "top-down view" | "aerial shot" | "birds-eye-view shot" | "top angle view" | "from above" | "wide angle" | "eye-level shot" | "front view" | "straight-on" | "from below";
384
+ camera: string;
385
385
  bubbles: {
386
386
  color: string;
387
387
  speech: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "manga-renderer",
3
- "version": "1.0.21",
3
+ "version": "1.0.23",
4
4
  "description": "A renderer for package files output from FramePlanner",
5
5
  "files": [
6
6
  "dist"