documents.js 1.33.3 → 1.34.0
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/README.md +1 -0
- package/dist/index.cjs +660 -570
- package/dist/index.d.cts +3 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +660 -570
- package/package.json +4 -2
package/dist/index.d.cts
CHANGED
|
@@ -545,6 +545,7 @@ declare const LayoutPageSchema: z.ZodObject<{
|
|
|
545
545
|
widthPt: z.ZodNumber;
|
|
546
546
|
heightPt: z.ZodNumber;
|
|
547
547
|
}, z.core.$strip>], "kind">>;
|
|
548
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
548
549
|
}, z.core.$strip>;
|
|
549
550
|
type LayoutPage = z.infer<typeof LayoutPageSchema>;
|
|
550
551
|
declare const LayoutImageAssetSchema: z.ZodObject<{
|
|
@@ -674,6 +675,7 @@ declare const LayoutDocumentSchema: z.ZodObject<{
|
|
|
674
675
|
widthPt: z.ZodNumber;
|
|
675
676
|
heightPt: z.ZodNumber;
|
|
676
677
|
}, z.core.$strip>], "kind">>;
|
|
678
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
677
679
|
}, z.core.$strip>>;
|
|
678
680
|
images: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
679
681
|
format: z.ZodEnum<{
|
|
@@ -1074,6 +1076,7 @@ declare const pdfCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffer>, Uint8Arr
|
|
|
1074
1076
|
widthPt: z.ZodNumber;
|
|
1075
1077
|
heightPt: z.ZodNumber;
|
|
1076
1078
|
}, z.core.$strip>], "kind">>;
|
|
1079
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
1077
1080
|
}, z.core.$strip>>;
|
|
1078
1081
|
images: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1079
1082
|
format: z.ZodEnum<{
|
package/dist/index.d.ts
CHANGED
|
@@ -545,6 +545,7 @@ declare const LayoutPageSchema: z.ZodObject<{
|
|
|
545
545
|
widthPt: z.ZodNumber;
|
|
546
546
|
heightPt: z.ZodNumber;
|
|
547
547
|
}, z.core.$strip>], "kind">>;
|
|
548
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
548
549
|
}, z.core.$strip>;
|
|
549
550
|
type LayoutPage = z.infer<typeof LayoutPageSchema>;
|
|
550
551
|
declare const LayoutImageAssetSchema: z.ZodObject<{
|
|
@@ -674,6 +675,7 @@ declare const LayoutDocumentSchema: z.ZodObject<{
|
|
|
674
675
|
widthPt: z.ZodNumber;
|
|
675
676
|
heightPt: z.ZodNumber;
|
|
676
677
|
}, z.core.$strip>], "kind">>;
|
|
678
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
677
679
|
}, z.core.$strip>>;
|
|
678
680
|
images: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
679
681
|
format: z.ZodEnum<{
|
|
@@ -1074,6 +1076,7 @@ declare const pdfCodec: z.ZodCodec<z.ZodCustom<Uint8Array<ArrayBuffer>, Uint8Arr
|
|
|
1074
1076
|
widthPt: z.ZodNumber;
|
|
1075
1077
|
heightPt: z.ZodNumber;
|
|
1076
1078
|
}, z.core.$strip>], "kind">>;
|
|
1079
|
+
notes: z.ZodOptional<z.ZodString>;
|
|
1077
1080
|
}, z.core.$strip>>;
|
|
1078
1081
|
images: z.ZodRecord<z.ZodString, z.ZodObject<{
|
|
1079
1082
|
format: z.ZodEnum<{
|