@ninetailed/experience.js-utils-contentful 4.2.3 → 4.3.0-beta.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/types/Entry.d.ts CHANGED
@@ -10,13 +10,11 @@ export declare const EntrySchema: z.ZodObject<{
10
10
  locale: z.ZodOptional<z.ZodString>;
11
11
  revision: z.ZodOptional<z.ZodNumber>;
12
12
  space: z.ZodOptional<z.ZodObject<{
13
- sys: z.ZodObject<z.extendShape<{
13
+ sys: z.ZodObject<{
14
14
  type: z.ZodString;
15
- linkType: z.ZodString;
16
15
  id: z.ZodString;
17
- }, {
18
16
  linkType: z.ZodString;
19
- }>, "strip", z.ZodTypeAny, {
17
+ }, "strip", z.ZodTypeAny, {
20
18
  type: string;
21
19
  linkType: string;
22
20
  id: string;
@@ -39,13 +37,11 @@ export declare const EntrySchema: z.ZodObject<{
39
37
  };
40
38
  }>>;
41
39
  environment: z.ZodOptional<z.ZodObject<{
42
- sys: z.ZodObject<z.extendShape<{
40
+ sys: z.ZodObject<{
43
41
  type: z.ZodString;
44
- linkType: z.ZodString;
45
42
  id: z.ZodString;
46
- }, {
47
43
  linkType: z.ZodString;
48
- }>, "strip", z.ZodTypeAny, {
44
+ }, "strip", z.ZodTypeAny, {
49
45
  type: string;
50
46
  linkType: string;
51
47
  id: string;
@@ -68,13 +64,11 @@ export declare const EntrySchema: z.ZodObject<{
68
64
  };
69
65
  }>>;
70
66
  contentType: z.ZodOptional<z.ZodObject<{
71
- sys: z.ZodObject<z.extendShape<{
67
+ sys: z.ZodObject<{
72
68
  type: z.ZodString;
73
- linkType: z.ZodString;
74
69
  id: z.ZodString;
75
- }, {
76
70
  linkType: z.ZodString;
77
- }>, "strip", z.ZodTypeAny, {
71
+ }, "strip", z.ZodTypeAny, {
78
72
  type: string;
79
73
  linkType: string;
80
74
  id: string;
@@ -97,6 +91,7 @@ export declare const EntrySchema: z.ZodObject<{
97
91
  };
98
92
  }>>;
99
93
  }, "strip", z.ZodTypeAny, {
94
+ id: string;
100
95
  type?: string | undefined;
101
96
  createdAt?: string | undefined;
102
97
  updatedAt?: string | undefined;
@@ -123,8 +118,8 @@ export declare const EntrySchema: z.ZodObject<{
123
118
  id: string;
124
119
  };
125
120
  } | undefined;
126
- id: string;
127
121
  }, {
122
+ id: string;
128
123
  type?: string | undefined;
129
124
  createdAt?: string | undefined;
130
125
  updatedAt?: string | undefined;
@@ -151,18 +146,15 @@ export declare const EntrySchema: z.ZodObject<{
151
146
  id: string;
152
147
  };
153
148
  } | undefined;
154
- id: string;
155
149
  }>;
156
- fields: z.ZodObject<{}, "passthrough", z.ZodTypeAny, {}, {}>;
150
+ fields: z.ZodObject<{}, z.UnknownKeysParam, z.ZodTypeAny, {}, {}>;
157
151
  metadata: z.ZodOptional<z.ZodObject<{
158
152
  tags: z.ZodArray<z.ZodObject<{
159
- sys: z.ZodObject<z.extendShape<{
153
+ sys: z.ZodObject<{
160
154
  type: z.ZodString;
161
- linkType: z.ZodString;
162
155
  id: z.ZodString;
163
- }, {
164
156
  linkType: z.ZodString;
165
- }>, "strip", z.ZodTypeAny, {
157
+ }, "strip", z.ZodTypeAny, {
166
158
  type: string;
167
159
  linkType: string;
168
160
  id: string;
@@ -202,16 +194,8 @@ export declare const EntrySchema: z.ZodObject<{
202
194
  }[];
203
195
  }>>;
204
196
  }, "strip", z.ZodTypeAny, {
205
- metadata?: {
206
- tags: {
207
- sys: {
208
- type: string;
209
- linkType: string;
210
- id: string;
211
- };
212
- }[];
213
- } | undefined;
214
197
  sys: {
198
+ id: string;
215
199
  type?: string | undefined;
216
200
  createdAt?: string | undefined;
217
201
  updatedAt?: string | undefined;
@@ -238,10 +222,8 @@ export declare const EntrySchema: z.ZodObject<{
238
222
  id: string;
239
223
  };
240
224
  } | undefined;
241
- id: string;
242
225
  };
243
226
  fields: {};
244
- }, {
245
227
  metadata?: {
246
228
  tags: {
247
229
  sys: {
@@ -251,7 +233,9 @@ export declare const EntrySchema: z.ZodObject<{
251
233
  };
252
234
  }[];
253
235
  } | undefined;
236
+ }, {
254
237
  sys: {
238
+ id: string;
255
239
  type?: string | undefined;
256
240
  createdAt?: string | undefined;
257
241
  updatedAt?: string | undefined;
@@ -278,25 +262,25 @@ export declare const EntrySchema: z.ZodObject<{
278
262
  id: string;
279
263
  };
280
264
  } | undefined;
281
- id: string;
282
265
  };
283
266
  fields: {};
267
+ metadata?: {
268
+ tags: {
269
+ sys: {
270
+ type: string;
271
+ linkType: string;
272
+ id: string;
273
+ };
274
+ }[];
275
+ } | undefined;
284
276
  }>;
285
277
  export type EntryLike<T extends EntryFields = EntryFields> = FieldsOverride<z.input<typeof EntrySchema>, T>;
286
278
  export type Entry<T extends EntryFields = EntryFields> = FieldsOverride<z.infer<typeof EntrySchema>, T>;
287
279
  export declare const Entry: {
288
280
  parse: <T extends {}>(input: EntryLike<T>) => Entry<T>;
289
281
  safeParse: <T_1 extends {}>(input: EntryLike<T_1>) => z.SafeParseError<{
290
- metadata?: {
291
- tags: {
292
- sys: {
293
- type: string;
294
- linkType: string;
295
- id: string;
296
- };
297
- }[];
298
- } | undefined;
299
282
  sys: {
283
+ id: string;
300
284
  type?: string | undefined;
301
285
  createdAt?: string | undefined;
302
286
  updatedAt?: string | undefined;
@@ -323,22 +307,22 @@ export declare const Entry: {
323
307
  id: string;
324
308
  };
325
309
  } | undefined;
326
- id: string;
327
310
  };
328
311
  fields: {};
312
+ metadata?: {
313
+ tags: {
314
+ sys: {
315
+ type: string;
316
+ linkType: string;
317
+ id: string;
318
+ };
319
+ }[];
320
+ } | undefined;
329
321
  }> | {
330
322
  data: {
331
323
  fields: T_1;
332
- metadata?: {
333
- tags: {
334
- sys: {
335
- type: string;
336
- linkType: string;
337
- id: string;
338
- };
339
- }[];
340
- } | undefined;
341
324
  sys: {
325
+ id: string;
342
326
  type?: string | undefined;
343
327
  createdAt?: string | undefined;
344
328
  updatedAt?: string | undefined;
@@ -365,8 +349,16 @@ export declare const Entry: {
365
349
  id: string;
366
350
  };
367
351
  } | undefined;
368
- id: string;
369
352
  };
353
+ metadata?: {
354
+ tags: {
355
+ sys: {
356
+ type: string;
357
+ linkType: string;
358
+ id: string;
359
+ };
360
+ }[];
361
+ } | undefined;
370
362
  };
371
363
  success: true;
372
364
  };
@@ -379,13 +371,11 @@ export declare const Entry: {
379
371
  locale: z.ZodOptional<z.ZodString>;
380
372
  revision: z.ZodOptional<z.ZodNumber>;
381
373
  space: z.ZodOptional<z.ZodObject<{
382
- sys: z.ZodObject<z.extendShape<{
374
+ sys: z.ZodObject<{
383
375
  type: z.ZodString;
384
- linkType: z.ZodString;
385
376
  id: z.ZodString;
386
- }, {
387
377
  linkType: z.ZodString;
388
- }>, "strip", z.ZodTypeAny, {
378
+ }, "strip", z.ZodTypeAny, {
389
379
  type: string;
390
380
  linkType: string;
391
381
  id: string;
@@ -408,13 +398,11 @@ export declare const Entry: {
408
398
  };
409
399
  }>>;
410
400
  environment: z.ZodOptional<z.ZodObject<{
411
- sys: z.ZodObject<z.extendShape<{
401
+ sys: z.ZodObject<{
412
402
  type: z.ZodString;
413
- linkType: z.ZodString;
414
403
  id: z.ZodString;
415
- }, {
416
404
  linkType: z.ZodString;
417
- }>, "strip", z.ZodTypeAny, {
405
+ }, "strip", z.ZodTypeAny, {
418
406
  type: string;
419
407
  linkType: string;
420
408
  id: string;
@@ -437,13 +425,11 @@ export declare const Entry: {
437
425
  };
438
426
  }>>;
439
427
  contentType: z.ZodOptional<z.ZodObject<{
440
- sys: z.ZodObject<z.extendShape<{
428
+ sys: z.ZodObject<{
441
429
  type: z.ZodString;
442
- linkType: z.ZodString;
443
430
  id: z.ZodString;
444
- }, {
445
431
  linkType: z.ZodString;
446
- }>, "strip", z.ZodTypeAny, {
432
+ }, "strip", z.ZodTypeAny, {
447
433
  type: string;
448
434
  linkType: string;
449
435
  id: string;
@@ -466,6 +452,7 @@ export declare const Entry: {
466
452
  };
467
453
  }>>;
468
454
  }, "strip", z.ZodTypeAny, {
455
+ id: string;
469
456
  type?: string | undefined;
470
457
  createdAt?: string | undefined;
471
458
  updatedAt?: string | undefined;
@@ -492,8 +479,8 @@ export declare const Entry: {
492
479
  id: string;
493
480
  };
494
481
  } | undefined;
495
- id: string;
496
482
  }, {
483
+ id: string;
497
484
  type?: string | undefined;
498
485
  createdAt?: string | undefined;
499
486
  updatedAt?: string | undefined;
@@ -520,18 +507,15 @@ export declare const Entry: {
520
507
  id: string;
521
508
  };
522
509
  } | undefined;
523
- id: string;
524
510
  }>;
525
- fields: z.ZodObject<{}, "passthrough", z.ZodTypeAny, {}, {}>;
511
+ fields: z.ZodObject<{}, z.UnknownKeysParam, z.ZodTypeAny, {}, {}>;
526
512
  metadata: z.ZodOptional<z.ZodObject<{
527
513
  tags: z.ZodArray<z.ZodObject<{
528
- sys: z.ZodObject<z.extendShape<{
514
+ sys: z.ZodObject<{
529
515
  type: z.ZodString;
530
- linkType: z.ZodString;
531
516
  id: z.ZodString;
532
- }, {
533
517
  linkType: z.ZodString;
534
- }>, "strip", z.ZodTypeAny, {
518
+ }, "strip", z.ZodTypeAny, {
535
519
  type: string;
536
520
  linkType: string;
537
521
  id: string;
@@ -570,17 +554,97 @@ export declare const Entry: {
570
554
  };
571
555
  }[];
572
556
  }>>;
573
- }, "passthrough", z.ZodTypeAny, {
574
- metadata?: {
575
- tags: {
557
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
558
+ sys: z.ZodObject<{
559
+ type: z.ZodOptional<z.ZodString>;
560
+ id: z.ZodString;
561
+ createdAt: z.ZodOptional<z.ZodString>;
562
+ updatedAt: z.ZodOptional<z.ZodString>;
563
+ locale: z.ZodOptional<z.ZodString>;
564
+ revision: z.ZodOptional<z.ZodNumber>;
565
+ space: z.ZodOptional<z.ZodObject<{
566
+ sys: z.ZodObject<{
567
+ type: z.ZodString;
568
+ id: z.ZodString;
569
+ linkType: z.ZodString;
570
+ }, "strip", z.ZodTypeAny, {
571
+ type: string;
572
+ linkType: string;
573
+ id: string;
574
+ }, {
575
+ type: string;
576
+ linkType: string;
577
+ id: string;
578
+ }>;
579
+ }, "strip", z.ZodTypeAny, {
576
580
  sys: {
577
581
  type: string;
578
582
  linkType: string;
579
583
  id: string;
580
584
  };
581
- }[];
582
- } | undefined;
583
- sys: {
585
+ }, {
586
+ sys: {
587
+ type: string;
588
+ linkType: string;
589
+ id: string;
590
+ };
591
+ }>>;
592
+ environment: z.ZodOptional<z.ZodObject<{
593
+ sys: z.ZodObject<{
594
+ type: z.ZodString;
595
+ id: z.ZodString;
596
+ linkType: z.ZodString;
597
+ }, "strip", z.ZodTypeAny, {
598
+ type: string;
599
+ linkType: string;
600
+ id: string;
601
+ }, {
602
+ type: string;
603
+ linkType: string;
604
+ id: string;
605
+ }>;
606
+ }, "strip", z.ZodTypeAny, {
607
+ sys: {
608
+ type: string;
609
+ linkType: string;
610
+ id: string;
611
+ };
612
+ }, {
613
+ sys: {
614
+ type: string;
615
+ linkType: string;
616
+ id: string;
617
+ };
618
+ }>>;
619
+ contentType: z.ZodOptional<z.ZodObject<{
620
+ sys: z.ZodObject<{
621
+ type: z.ZodString;
622
+ id: z.ZodString;
623
+ linkType: z.ZodString;
624
+ }, "strip", z.ZodTypeAny, {
625
+ type: string;
626
+ linkType: string;
627
+ id: string;
628
+ }, {
629
+ type: string;
630
+ linkType: string;
631
+ id: string;
632
+ }>;
633
+ }, "strip", z.ZodTypeAny, {
634
+ sys: {
635
+ type: string;
636
+ linkType: string;
637
+ id: string;
638
+ };
639
+ }, {
640
+ sys: {
641
+ type: string;
642
+ linkType: string;
643
+ id: string;
644
+ };
645
+ }>>;
646
+ }, "strip", z.ZodTypeAny, {
647
+ id: string;
584
648
  type?: string | undefined;
585
649
  createdAt?: string | undefined;
586
650
  updatedAt?: string | undefined;
@@ -607,11 +671,65 @@ export declare const Entry: {
607
671
  id: string;
608
672
  };
609
673
  } | undefined;
674
+ }, {
610
675
  id: string;
611
- };
612
- fields: {};
613
- }, {
614
- metadata?: {
676
+ type?: string | undefined;
677
+ createdAt?: string | undefined;
678
+ updatedAt?: string | undefined;
679
+ locale?: string | undefined;
680
+ revision?: number | undefined;
681
+ space?: {
682
+ sys: {
683
+ type: string;
684
+ linkType: string;
685
+ id: string;
686
+ };
687
+ } | undefined;
688
+ environment?: {
689
+ sys: {
690
+ type: string;
691
+ linkType: string;
692
+ id: string;
693
+ };
694
+ } | undefined;
695
+ contentType?: {
696
+ sys: {
697
+ type: string;
698
+ linkType: string;
699
+ id: string;
700
+ };
701
+ } | undefined;
702
+ }>;
703
+ fields: z.ZodObject<{}, z.UnknownKeysParam, z.ZodTypeAny, {}, {}>;
704
+ metadata: z.ZodOptional<z.ZodObject<{
705
+ tags: z.ZodArray<z.ZodObject<{
706
+ sys: z.ZodObject<{
707
+ type: z.ZodString;
708
+ id: z.ZodString;
709
+ linkType: z.ZodString;
710
+ }, "strip", z.ZodTypeAny, {
711
+ type: string;
712
+ linkType: string;
713
+ id: string;
714
+ }, {
715
+ type: string;
716
+ linkType: string;
717
+ id: string;
718
+ }>;
719
+ }, "strip", z.ZodTypeAny, {
720
+ sys: {
721
+ type: string;
722
+ linkType: string;
723
+ id: string;
724
+ };
725
+ }, {
726
+ sys: {
727
+ type: string;
728
+ linkType: string;
729
+ id: string;
730
+ };
731
+ }>, "many">;
732
+ }, "strip", z.ZodTypeAny, {
615
733
  tags: {
616
734
  sys: {
617
735
  type: string;
@@ -619,8 +737,106 @@ export declare const Entry: {
619
737
  id: string;
620
738
  };
621
739
  }[];
622
- } | undefined;
623
- sys: {
740
+ }, {
741
+ tags: {
742
+ sys: {
743
+ type: string;
744
+ linkType: string;
745
+ id: string;
746
+ };
747
+ }[];
748
+ }>>;
749
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
750
+ sys: z.ZodObject<{
751
+ type: z.ZodOptional<z.ZodString>;
752
+ id: z.ZodString;
753
+ createdAt: z.ZodOptional<z.ZodString>;
754
+ updatedAt: z.ZodOptional<z.ZodString>;
755
+ locale: z.ZodOptional<z.ZodString>;
756
+ revision: z.ZodOptional<z.ZodNumber>;
757
+ space: z.ZodOptional<z.ZodObject<{
758
+ sys: z.ZodObject<{
759
+ type: z.ZodString;
760
+ id: z.ZodString;
761
+ linkType: z.ZodString;
762
+ }, "strip", z.ZodTypeAny, {
763
+ type: string;
764
+ linkType: string;
765
+ id: string;
766
+ }, {
767
+ type: string;
768
+ linkType: string;
769
+ id: string;
770
+ }>;
771
+ }, "strip", z.ZodTypeAny, {
772
+ sys: {
773
+ type: string;
774
+ linkType: string;
775
+ id: string;
776
+ };
777
+ }, {
778
+ sys: {
779
+ type: string;
780
+ linkType: string;
781
+ id: string;
782
+ };
783
+ }>>;
784
+ environment: z.ZodOptional<z.ZodObject<{
785
+ sys: z.ZodObject<{
786
+ type: z.ZodString;
787
+ id: z.ZodString;
788
+ linkType: z.ZodString;
789
+ }, "strip", z.ZodTypeAny, {
790
+ type: string;
791
+ linkType: string;
792
+ id: string;
793
+ }, {
794
+ type: string;
795
+ linkType: string;
796
+ id: string;
797
+ }>;
798
+ }, "strip", z.ZodTypeAny, {
799
+ sys: {
800
+ type: string;
801
+ linkType: string;
802
+ id: string;
803
+ };
804
+ }, {
805
+ sys: {
806
+ type: string;
807
+ linkType: string;
808
+ id: string;
809
+ };
810
+ }>>;
811
+ contentType: z.ZodOptional<z.ZodObject<{
812
+ sys: z.ZodObject<{
813
+ type: z.ZodString;
814
+ id: z.ZodString;
815
+ linkType: z.ZodString;
816
+ }, "strip", z.ZodTypeAny, {
817
+ type: string;
818
+ linkType: string;
819
+ id: string;
820
+ }, {
821
+ type: string;
822
+ linkType: string;
823
+ id: string;
824
+ }>;
825
+ }, "strip", z.ZodTypeAny, {
826
+ sys: {
827
+ type: string;
828
+ linkType: string;
829
+ id: string;
830
+ };
831
+ }, {
832
+ sys: {
833
+ type: string;
834
+ linkType: string;
835
+ id: string;
836
+ };
837
+ }>>;
838
+ }, "strip", z.ZodTypeAny, {
839
+ id: string;
624
840
  type?: string | undefined;
625
841
  createdAt?: string | undefined;
626
842
  updatedAt?: string | undefined;
@@ -647,11 +863,83 @@ export declare const Entry: {
647
863
  id: string;
648
864
  };
649
865
  } | undefined;
866
+ }, {
650
867
  id: string;
651
- };
652
- fields: {};
653
- }>;
654
- augment: <Augmentation extends z.ZodRawShape>(augmentation: Augmentation) => z.ZodObject<z.extendShape<{
868
+ type?: string | undefined;
869
+ createdAt?: string | undefined;
870
+ updatedAt?: string | undefined;
871
+ locale?: string | undefined;
872
+ revision?: number | undefined;
873
+ space?: {
874
+ sys: {
875
+ type: string;
876
+ linkType: string;
877
+ id: string;
878
+ };
879
+ } | undefined;
880
+ environment?: {
881
+ sys: {
882
+ type: string;
883
+ linkType: string;
884
+ id: string;
885
+ };
886
+ } | undefined;
887
+ contentType?: {
888
+ sys: {
889
+ type: string;
890
+ linkType: string;
891
+ id: string;
892
+ };
893
+ } | undefined;
894
+ }>;
895
+ fields: z.ZodObject<{}, z.UnknownKeysParam, z.ZodTypeAny, {}, {}>;
896
+ metadata: z.ZodOptional<z.ZodObject<{
897
+ tags: z.ZodArray<z.ZodObject<{
898
+ sys: z.ZodObject<{
899
+ type: z.ZodString;
900
+ id: z.ZodString;
901
+ linkType: z.ZodString;
902
+ }, "strip", z.ZodTypeAny, {
903
+ type: string;
904
+ linkType: string;
905
+ id: string;
906
+ }, {
907
+ type: string;
908
+ linkType: string;
909
+ id: string;
910
+ }>;
911
+ }, "strip", z.ZodTypeAny, {
912
+ sys: {
913
+ type: string;
914
+ linkType: string;
915
+ id: string;
916
+ };
917
+ }, {
918
+ sys: {
919
+ type: string;
920
+ linkType: string;
921
+ id: string;
922
+ };
923
+ }>, "many">;
924
+ }, "strip", z.ZodTypeAny, {
925
+ tags: {
926
+ sys: {
927
+ type: string;
928
+ linkType: string;
929
+ id: string;
930
+ };
931
+ }[];
932
+ }, {
933
+ tags: {
934
+ sys: {
935
+ type: string;
936
+ linkType: string;
937
+ id: string;
938
+ };
939
+ }[];
940
+ }>>;
941
+ }, z.ZodTypeAny, "passthrough">>;
942
+ augment: <Augmentation extends z.ZodRawShape>(augmentation: Augmentation) => z.ZodObject<Omit<{
655
943
  sys: z.ZodObject<{
656
944
  type: z.ZodOptional<z.ZodString>;
657
945
  id: z.ZodString;
@@ -660,13 +948,11 @@ export declare const Entry: {
660
948
  locale: z.ZodOptional<z.ZodString>;
661
949
  revision: z.ZodOptional<z.ZodNumber>;
662
950
  space: z.ZodOptional<z.ZodObject<{
663
- sys: z.ZodObject<z.extendShape<{
951
+ sys: z.ZodObject<{
664
952
  type: z.ZodString;
665
- linkType: z.ZodString;
666
953
  id: z.ZodString;
667
- }, {
668
954
  linkType: z.ZodString;
669
- }>, "strip", z.ZodTypeAny, {
955
+ }, "strip", z.ZodTypeAny, {
670
956
  type: string;
671
957
  linkType: string;
672
958
  id: string;
@@ -689,13 +975,11 @@ export declare const Entry: {
689
975
  };
690
976
  }>>;
691
977
  environment: z.ZodOptional<z.ZodObject<{
692
- sys: z.ZodObject<z.extendShape<{
978
+ sys: z.ZodObject<{
693
979
  type: z.ZodString;
694
- linkType: z.ZodString;
695
980
  id: z.ZodString;
696
- }, {
697
981
  linkType: z.ZodString;
698
- }>, "strip", z.ZodTypeAny, {
982
+ }, "strip", z.ZodTypeAny, {
699
983
  type: string;
700
984
  linkType: string;
701
985
  id: string;
@@ -718,13 +1002,11 @@ export declare const Entry: {
718
1002
  };
719
1003
  }>>;
720
1004
  contentType: z.ZodOptional<z.ZodObject<{
721
- sys: z.ZodObject<z.extendShape<{
1005
+ sys: z.ZodObject<{
722
1006
  type: z.ZodString;
723
- linkType: z.ZodString;
724
1007
  id: z.ZodString;
725
- }, {
726
1008
  linkType: z.ZodString;
727
- }>, "strip", z.ZodTypeAny, {
1009
+ }, "strip", z.ZodTypeAny, {
728
1010
  type: string;
729
1011
  linkType: string;
730
1012
  id: string;
@@ -747,6 +1029,7 @@ export declare const Entry: {
747
1029
  };
748
1030
  }>>;
749
1031
  }, "strip", z.ZodTypeAny, {
1032
+ id: string;
750
1033
  type?: string | undefined;
751
1034
  createdAt?: string | undefined;
752
1035
  updatedAt?: string | undefined;
@@ -773,8 +1056,8 @@ export declare const Entry: {
773
1056
  id: string;
774
1057
  };
775
1058
  } | undefined;
776
- id: string;
777
1059
  }, {
1060
+ id: string;
778
1061
  type?: string | undefined;
779
1062
  createdAt?: string | undefined;
780
1063
  updatedAt?: string | undefined;
@@ -801,18 +1084,15 @@ export declare const Entry: {
801
1084
  id: string;
802
1085
  };
803
1086
  } | undefined;
804
- id: string;
805
1087
  }>;
806
- fields: z.ZodObject<{}, "passthrough", z.ZodTypeAny, {}, {}>;
1088
+ fields: z.ZodObject<{}, z.UnknownKeysParam, z.ZodTypeAny, {}, {}>;
807
1089
  metadata: z.ZodOptional<z.ZodObject<{
808
1090
  tags: z.ZodArray<z.ZodObject<{
809
- sys: z.ZodObject<z.extendShape<{
1091
+ sys: z.ZodObject<{
810
1092
  type: z.ZodString;
811
- linkType: z.ZodString;
812
1093
  id: z.ZodString;
813
- }, {
814
1094
  linkType: z.ZodString;
815
- }>, "strip", z.ZodTypeAny, {
1095
+ }, "strip", z.ZodTypeAny, {
816
1096
  type: string;
817
1097
  linkType: string;
818
1098
  id: string;
@@ -851,7 +1131,7 @@ export declare const Entry: {
851
1131
  };
852
1132
  }[];
853
1133
  }>>;
854
- }, Augmentation>, "strip", z.ZodTypeAny, z.objectUtil.addQuestionMarks<z.extendShape<{
1134
+ }, keyof Augmentation> & Augmentation extends infer T_2 ? { [k in keyof T_2]: (Omit<{
855
1135
  sys: z.ZodObject<{
856
1136
  type: z.ZodOptional<z.ZodString>;
857
1137
  id: z.ZodString;
@@ -860,13 +1140,11 @@ export declare const Entry: {
860
1140
  locale: z.ZodOptional<z.ZodString>;
861
1141
  revision: z.ZodOptional<z.ZodNumber>;
862
1142
  space: z.ZodOptional<z.ZodObject<{
863
- sys: z.ZodObject<z.extendShape<{
1143
+ sys: z.ZodObject<{
864
1144
  type: z.ZodString;
865
- linkType: z.ZodString;
866
1145
  id: z.ZodString;
867
- }, {
868
1146
  linkType: z.ZodString;
869
- }>, "strip", z.ZodTypeAny, {
1147
+ }, "strip", z.ZodTypeAny, {
870
1148
  type: string;
871
1149
  linkType: string;
872
1150
  id: string;
@@ -889,13 +1167,11 @@ export declare const Entry: {
889
1167
  };
890
1168
  }>>;
891
1169
  environment: z.ZodOptional<z.ZodObject<{
892
- sys: z.ZodObject<z.extendShape<{
1170
+ sys: z.ZodObject<{
893
1171
  type: z.ZodString;
894
- linkType: z.ZodString;
895
1172
  id: z.ZodString;
896
- }, {
897
1173
  linkType: z.ZodString;
898
- }>, "strip", z.ZodTypeAny, {
1174
+ }, "strip", z.ZodTypeAny, {
899
1175
  type: string;
900
1176
  linkType: string;
901
1177
  id: string;
@@ -918,13 +1194,11 @@ export declare const Entry: {
918
1194
  };
919
1195
  }>>;
920
1196
  contentType: z.ZodOptional<z.ZodObject<{
921
- sys: z.ZodObject<z.extendShape<{
1197
+ sys: z.ZodObject<{
922
1198
  type: z.ZodString;
923
- linkType: z.ZodString;
924
1199
  id: z.ZodString;
925
- }, {
926
1200
  linkType: z.ZodString;
927
- }>, "strip", z.ZodTypeAny, {
1201
+ }, "strip", z.ZodTypeAny, {
928
1202
  type: string;
929
1203
  linkType: string;
930
1204
  id: string;
@@ -947,6 +1221,7 @@ export declare const Entry: {
947
1221
  };
948
1222
  }>>;
949
1223
  }, "strip", z.ZodTypeAny, {
1224
+ id: string;
950
1225
  type?: string | undefined;
951
1226
  createdAt?: string | undefined;
952
1227
  updatedAt?: string | undefined;
@@ -973,8 +1248,8 @@ export declare const Entry: {
973
1248
  id: string;
974
1249
  };
975
1250
  } | undefined;
976
- id: string;
977
1251
  }, {
1252
+ id: string;
978
1253
  type?: string | undefined;
979
1254
  createdAt?: string | undefined;
980
1255
  updatedAt?: string | undefined;
@@ -1001,18 +1276,15 @@ export declare const Entry: {
1001
1276
  id: string;
1002
1277
  };
1003
1278
  } | undefined;
1004
- id: string;
1005
1279
  }>;
1006
- fields: z.ZodObject<{}, "passthrough", z.ZodTypeAny, {}, {}>;
1280
+ fields: z.ZodObject<{}, z.UnknownKeysParam, z.ZodTypeAny, {}, {}>;
1007
1281
  metadata: z.ZodOptional<z.ZodObject<{
1008
1282
  tags: z.ZodArray<z.ZodObject<{
1009
- sys: z.ZodObject<z.extendShape<{
1283
+ sys: z.ZodObject<{
1010
1284
  type: z.ZodString;
1011
- linkType: z.ZodString;
1012
1285
  id: z.ZodString;
1013
- }, {
1014
1286
  linkType: z.ZodString;
1015
- }>, "strip", z.ZodTypeAny, {
1287
+ }, "strip", z.ZodTypeAny, {
1016
1288
  type: string;
1017
1289
  linkType: string;
1018
1290
  id: string;
@@ -1051,7 +1323,7 @@ export declare const Entry: {
1051
1323
  };
1052
1324
  }[];
1053
1325
  }>>;
1054
- }, Augmentation> extends infer T_3 extends z.ZodRawShape ? { [k_1 in keyof T_3]: z.extendShape<{
1326
+ }, keyof Augmentation> & Augmentation)[k]; } : never, "strip", z.ZodTypeAny, z.objectUtil.addQuestionMarks<z.baseObjectOutputType<Omit<{
1055
1327
  sys: z.ZodObject<{
1056
1328
  type: z.ZodOptional<z.ZodString>;
1057
1329
  id: z.ZodString;
@@ -1060,13 +1332,11 @@ export declare const Entry: {
1060
1332
  locale: z.ZodOptional<z.ZodString>;
1061
1333
  revision: z.ZodOptional<z.ZodNumber>;
1062
1334
  space: z.ZodOptional<z.ZodObject<{
1063
- sys: z.ZodObject<z.extendShape<{
1335
+ sys: z.ZodObject<{
1064
1336
  type: z.ZodString;
1065
- linkType: z.ZodString;
1066
1337
  id: z.ZodString;
1067
- }, {
1068
1338
  linkType: z.ZodString;
1069
- }>, "strip", z.ZodTypeAny, {
1339
+ }, "strip", z.ZodTypeAny, {
1070
1340
  type: string;
1071
1341
  linkType: string;
1072
1342
  id: string;
@@ -1089,13 +1359,11 @@ export declare const Entry: {
1089
1359
  };
1090
1360
  }>>;
1091
1361
  environment: z.ZodOptional<z.ZodObject<{
1092
- sys: z.ZodObject<z.extendShape<{
1362
+ sys: z.ZodObject<{
1093
1363
  type: z.ZodString;
1094
- linkType: z.ZodString;
1095
1364
  id: z.ZodString;
1096
- }, {
1097
1365
  linkType: z.ZodString;
1098
- }>, "strip", z.ZodTypeAny, {
1366
+ }, "strip", z.ZodTypeAny, {
1099
1367
  type: string;
1100
1368
  linkType: string;
1101
1369
  id: string;
@@ -1118,13 +1386,11 @@ export declare const Entry: {
1118
1386
  };
1119
1387
  }>>;
1120
1388
  contentType: z.ZodOptional<z.ZodObject<{
1121
- sys: z.ZodObject<z.extendShape<{
1389
+ sys: z.ZodObject<{
1122
1390
  type: z.ZodString;
1123
- linkType: z.ZodString;
1124
1391
  id: z.ZodString;
1125
- }, {
1126
1392
  linkType: z.ZodString;
1127
- }>, "strip", z.ZodTypeAny, {
1393
+ }, "strip", z.ZodTypeAny, {
1128
1394
  type: string;
1129
1395
  linkType: string;
1130
1396
  id: string;
@@ -1147,6 +1413,7 @@ export declare const Entry: {
1147
1413
  };
1148
1414
  }>>;
1149
1415
  }, "strip", z.ZodTypeAny, {
1416
+ id: string;
1150
1417
  type?: string | undefined;
1151
1418
  createdAt?: string | undefined;
1152
1419
  updatedAt?: string | undefined;
@@ -1173,8 +1440,8 @@ export declare const Entry: {
1173
1440
  id: string;
1174
1441
  };
1175
1442
  } | undefined;
1176
- id: string;
1177
1443
  }, {
1444
+ id: string;
1178
1445
  type?: string | undefined;
1179
1446
  createdAt?: string | undefined;
1180
1447
  updatedAt?: string | undefined;
@@ -1201,18 +1468,15 @@ export declare const Entry: {
1201
1468
  id: string;
1202
1469
  };
1203
1470
  } | undefined;
1204
- id: string;
1205
1471
  }>;
1206
- fields: z.ZodObject<{}, "passthrough", z.ZodTypeAny, {}, {}>;
1472
+ fields: z.ZodObject<{}, z.UnknownKeysParam, z.ZodTypeAny, {}, {}>;
1207
1473
  metadata: z.ZodOptional<z.ZodObject<{
1208
1474
  tags: z.ZodArray<z.ZodObject<{
1209
- sys: z.ZodObject<z.extendShape<{
1475
+ sys: z.ZodObject<{
1210
1476
  type: z.ZodString;
1211
- linkType: z.ZodString;
1212
1477
  id: z.ZodString;
1213
- }, {
1214
1478
  linkType: z.ZodString;
1215
- }>, "strip", z.ZodTypeAny, {
1479
+ }, "strip", z.ZodTypeAny, {
1216
1480
  type: string;
1217
1481
  linkType: string;
1218
1482
  id: string;
@@ -1251,7 +1515,7 @@ export declare const Entry: {
1251
1515
  };
1252
1516
  }[];
1253
1517
  }>>;
1254
- }, Augmentation>[k_1]["_output"]; } : never> extends infer T_2 extends object ? { [k in keyof T_2]: z.objectUtil.addQuestionMarks<z.extendShape<{
1518
+ }, keyof Augmentation> & Augmentation extends infer T_4 ? { [k_2 in keyof T_4]: (Omit<{
1255
1519
  sys: z.ZodObject<{
1256
1520
  type: z.ZodOptional<z.ZodString>;
1257
1521
  id: z.ZodString;
@@ -1260,13 +1524,11 @@ export declare const Entry: {
1260
1524
  locale: z.ZodOptional<z.ZodString>;
1261
1525
  revision: z.ZodOptional<z.ZodNumber>;
1262
1526
  space: z.ZodOptional<z.ZodObject<{
1263
- sys: z.ZodObject<z.extendShape<{
1527
+ sys: z.ZodObject<{
1264
1528
  type: z.ZodString;
1265
- linkType: z.ZodString;
1266
1529
  id: z.ZodString;
1267
- }, {
1268
1530
  linkType: z.ZodString;
1269
- }>, "strip", z.ZodTypeAny, {
1531
+ }, "strip", z.ZodTypeAny, {
1270
1532
  type: string;
1271
1533
  linkType: string;
1272
1534
  id: string;
@@ -1289,13 +1551,11 @@ export declare const Entry: {
1289
1551
  };
1290
1552
  }>>;
1291
1553
  environment: z.ZodOptional<z.ZodObject<{
1292
- sys: z.ZodObject<z.extendShape<{
1554
+ sys: z.ZodObject<{
1293
1555
  type: z.ZodString;
1294
- linkType: z.ZodString;
1295
1556
  id: z.ZodString;
1296
- }, {
1297
1557
  linkType: z.ZodString;
1298
- }>, "strip", z.ZodTypeAny, {
1558
+ }, "strip", z.ZodTypeAny, {
1299
1559
  type: string;
1300
1560
  linkType: string;
1301
1561
  id: string;
@@ -1318,13 +1578,11 @@ export declare const Entry: {
1318
1578
  };
1319
1579
  }>>;
1320
1580
  contentType: z.ZodOptional<z.ZodObject<{
1321
- sys: z.ZodObject<z.extendShape<{
1581
+ sys: z.ZodObject<{
1322
1582
  type: z.ZodString;
1323
- linkType: z.ZodString;
1324
1583
  id: z.ZodString;
1325
- }, {
1326
1584
  linkType: z.ZodString;
1327
- }>, "strip", z.ZodTypeAny, {
1585
+ }, "strip", z.ZodTypeAny, {
1328
1586
  type: string;
1329
1587
  linkType: string;
1330
1588
  id: string;
@@ -1347,6 +1605,7 @@ export declare const Entry: {
1347
1605
  };
1348
1606
  }>>;
1349
1607
  }, "strip", z.ZodTypeAny, {
1608
+ id: string;
1350
1609
  type?: string | undefined;
1351
1610
  createdAt?: string | undefined;
1352
1611
  updatedAt?: string | undefined;
@@ -1373,8 +1632,8 @@ export declare const Entry: {
1373
1632
  id: string;
1374
1633
  };
1375
1634
  } | undefined;
1376
- id: string;
1377
1635
  }, {
1636
+ id: string;
1378
1637
  type?: string | undefined;
1379
1638
  createdAt?: string | undefined;
1380
1639
  updatedAt?: string | undefined;
@@ -1401,18 +1660,15 @@ export declare const Entry: {
1401
1660
  id: string;
1402
1661
  };
1403
1662
  } | undefined;
1404
- id: string;
1405
1663
  }>;
1406
- fields: z.ZodObject<{}, "passthrough", z.ZodTypeAny, {}, {}>;
1664
+ fields: z.ZodObject<{}, z.UnknownKeysParam, z.ZodTypeAny, {}, {}>;
1407
1665
  metadata: z.ZodOptional<z.ZodObject<{
1408
1666
  tags: z.ZodArray<z.ZodObject<{
1409
- sys: z.ZodObject<z.extendShape<{
1667
+ sys: z.ZodObject<{
1410
1668
  type: z.ZodString;
1411
- linkType: z.ZodString;
1412
1669
  id: z.ZodString;
1413
- }, {
1414
1670
  linkType: z.ZodString;
1415
- }>, "strip", z.ZodTypeAny, {
1671
+ }, "strip", z.ZodTypeAny, {
1416
1672
  type: string;
1417
1673
  linkType: string;
1418
1674
  id: string;
@@ -1451,7 +1707,7 @@ export declare const Entry: {
1451
1707
  };
1452
1708
  }[];
1453
1709
  }>>;
1454
- }, Augmentation> extends infer T_3 extends z.ZodRawShape ? { [k_1 in keyof T_3]: z.extendShape<{
1710
+ }, keyof Augmentation> & Augmentation)[k_2]; } : never>, (z.baseObjectOutputType<Omit<{
1455
1711
  sys: z.ZodObject<{
1456
1712
  type: z.ZodOptional<z.ZodString>;
1457
1713
  id: z.ZodString;
@@ -1460,13 +1716,11 @@ export declare const Entry: {
1460
1716
  locale: z.ZodOptional<z.ZodString>;
1461
1717
  revision: z.ZodOptional<z.ZodNumber>;
1462
1718
  space: z.ZodOptional<z.ZodObject<{
1463
- sys: z.ZodObject<z.extendShape<{
1719
+ sys: z.ZodObject<{
1464
1720
  type: z.ZodString;
1465
- linkType: z.ZodString;
1466
1721
  id: z.ZodString;
1467
- }, {
1468
1722
  linkType: z.ZodString;
1469
- }>, "strip", z.ZodTypeAny, {
1723
+ }, "strip", z.ZodTypeAny, {
1470
1724
  type: string;
1471
1725
  linkType: string;
1472
1726
  id: string;
@@ -1489,13 +1743,11 @@ export declare const Entry: {
1489
1743
  };
1490
1744
  }>>;
1491
1745
  environment: z.ZodOptional<z.ZodObject<{
1492
- sys: z.ZodObject<z.extendShape<{
1746
+ sys: z.ZodObject<{
1493
1747
  type: z.ZodString;
1494
- linkType: z.ZodString;
1495
1748
  id: z.ZodString;
1496
- }, {
1497
1749
  linkType: z.ZodString;
1498
- }>, "strip", z.ZodTypeAny, {
1750
+ }, "strip", z.ZodTypeAny, {
1499
1751
  type: string;
1500
1752
  linkType: string;
1501
1753
  id: string;
@@ -1518,13 +1770,11 @@ export declare const Entry: {
1518
1770
  };
1519
1771
  }>>;
1520
1772
  contentType: z.ZodOptional<z.ZodObject<{
1521
- sys: z.ZodObject<z.extendShape<{
1773
+ sys: z.ZodObject<{
1522
1774
  type: z.ZodString;
1523
- linkType: z.ZodString;
1524
1775
  id: z.ZodString;
1525
- }, {
1526
1776
  linkType: z.ZodString;
1527
- }>, "strip", z.ZodTypeAny, {
1777
+ }, "strip", z.ZodTypeAny, {
1528
1778
  type: string;
1529
1779
  linkType: string;
1530
1780
  id: string;
@@ -1547,6 +1797,7 @@ export declare const Entry: {
1547
1797
  };
1548
1798
  }>>;
1549
1799
  }, "strip", z.ZodTypeAny, {
1800
+ id: string;
1550
1801
  type?: string | undefined;
1551
1802
  createdAt?: string | undefined;
1552
1803
  updatedAt?: string | undefined;
@@ -1573,8 +1824,8 @@ export declare const Entry: {
1573
1824
  id: string;
1574
1825
  };
1575
1826
  } | undefined;
1576
- id: string;
1577
1827
  }, {
1828
+ id: string;
1578
1829
  type?: string | undefined;
1579
1830
  createdAt?: string | undefined;
1580
1831
  updatedAt?: string | undefined;
@@ -1601,18 +1852,15 @@ export declare const Entry: {
1601
1852
  id: string;
1602
1853
  };
1603
1854
  } | undefined;
1604
- id: string;
1605
1855
  }>;
1606
- fields: z.ZodObject<{}, "passthrough", z.ZodTypeAny, {}, {}>;
1856
+ fields: z.ZodObject<{}, z.UnknownKeysParam, z.ZodTypeAny, {}, {}>;
1607
1857
  metadata: z.ZodOptional<z.ZodObject<{
1608
1858
  tags: z.ZodArray<z.ZodObject<{
1609
- sys: z.ZodObject<z.extendShape<{
1859
+ sys: z.ZodObject<{
1610
1860
  type: z.ZodString;
1611
- linkType: z.ZodString;
1612
1861
  id: z.ZodString;
1613
- }, {
1614
1862
  linkType: z.ZodString;
1615
- }>, "strip", z.ZodTypeAny, {
1863
+ }, "strip", z.ZodTypeAny, {
1616
1864
  type: string;
1617
1865
  linkType: string;
1618
1866
  id: string;
@@ -1651,7 +1899,7 @@ export declare const Entry: {
1651
1899
  };
1652
1900
  }[];
1653
1901
  }>>;
1654
- }, Augmentation>[k_1]["_output"]; } : never>[k]; } : never, z.objectUtil.addQuestionMarks<z.extendShape<{
1902
+ }, keyof Augmentation> & Augmentation extends infer T_4 ? { [k_2 in keyof T_4]: (Omit<{
1655
1903
  sys: z.ZodObject<{
1656
1904
  type: z.ZodOptional<z.ZodString>;
1657
1905
  id: z.ZodString;
@@ -1660,13 +1908,11 @@ export declare const Entry: {
1660
1908
  locale: z.ZodOptional<z.ZodString>;
1661
1909
  revision: z.ZodOptional<z.ZodNumber>;
1662
1910
  space: z.ZodOptional<z.ZodObject<{
1663
- sys: z.ZodObject<z.extendShape<{
1911
+ sys: z.ZodObject<{
1664
1912
  type: z.ZodString;
1665
- linkType: z.ZodString;
1666
1913
  id: z.ZodString;
1667
- }, {
1668
1914
  linkType: z.ZodString;
1669
- }>, "strip", z.ZodTypeAny, {
1915
+ }, "strip", z.ZodTypeAny, {
1670
1916
  type: string;
1671
1917
  linkType: string;
1672
1918
  id: string;
@@ -1689,13 +1935,11 @@ export declare const Entry: {
1689
1935
  };
1690
1936
  }>>;
1691
1937
  environment: z.ZodOptional<z.ZodObject<{
1692
- sys: z.ZodObject<z.extendShape<{
1938
+ sys: z.ZodObject<{
1693
1939
  type: z.ZodString;
1694
- linkType: z.ZodString;
1695
1940
  id: z.ZodString;
1696
- }, {
1697
1941
  linkType: z.ZodString;
1698
- }>, "strip", z.ZodTypeAny, {
1942
+ }, "strip", z.ZodTypeAny, {
1699
1943
  type: string;
1700
1944
  linkType: string;
1701
1945
  id: string;
@@ -1718,13 +1962,11 @@ export declare const Entry: {
1718
1962
  };
1719
1963
  }>>;
1720
1964
  contentType: z.ZodOptional<z.ZodObject<{
1721
- sys: z.ZodObject<z.extendShape<{
1965
+ sys: z.ZodObject<{
1722
1966
  type: z.ZodString;
1723
- linkType: z.ZodString;
1724
1967
  id: z.ZodString;
1725
- }, {
1726
1968
  linkType: z.ZodString;
1727
- }>, "strip", z.ZodTypeAny, {
1969
+ }, "strip", z.ZodTypeAny, {
1728
1970
  type: string;
1729
1971
  linkType: string;
1730
1972
  id: string;
@@ -1747,6 +1989,7 @@ export declare const Entry: {
1747
1989
  };
1748
1990
  }>>;
1749
1991
  }, "strip", z.ZodTypeAny, {
1992
+ id: string;
1750
1993
  type?: string | undefined;
1751
1994
  createdAt?: string | undefined;
1752
1995
  updatedAt?: string | undefined;
@@ -1773,8 +2016,8 @@ export declare const Entry: {
1773
2016
  id: string;
1774
2017
  };
1775
2018
  } | undefined;
1776
- id: string;
1777
2019
  }, {
2020
+ id: string;
1778
2021
  type?: string | undefined;
1779
2022
  createdAt?: string | undefined;
1780
2023
  updatedAt?: string | undefined;
@@ -1801,18 +2044,15 @@ export declare const Entry: {
1801
2044
  id: string;
1802
2045
  };
1803
2046
  } | undefined;
1804
- id: string;
1805
2047
  }>;
1806
- fields: z.ZodObject<{}, "passthrough", z.ZodTypeAny, {}, {}>;
2048
+ fields: z.ZodObject<{}, z.UnknownKeysParam, z.ZodTypeAny, {}, {}>;
1807
2049
  metadata: z.ZodOptional<z.ZodObject<{
1808
2050
  tags: z.ZodArray<z.ZodObject<{
1809
- sys: z.ZodObject<z.extendShape<{
2051
+ sys: z.ZodObject<{
1810
2052
  type: z.ZodString;
1811
- linkType: z.ZodString;
1812
2053
  id: z.ZodString;
1813
- }, {
1814
2054
  linkType: z.ZodString;
1815
- }>, "strip", z.ZodTypeAny, {
2055
+ }, "strip", z.ZodTypeAny, {
1816
2056
  type: string;
1817
2057
  linkType: string;
1818
2058
  id: string;
@@ -1851,7 +2091,7 @@ export declare const Entry: {
1851
2091
  };
1852
2092
  }[];
1853
2093
  }>>;
1854
- }, Augmentation> extends infer T_5 extends z.ZodRawShape ? { [k_3 in keyof T_5]: z.extendShape<{
2094
+ }, keyof Augmentation> & Augmentation)[k_2]; } : never> extends infer T_5 extends object ? { [k_3 in keyof T_5]: undefined extends z.baseObjectOutputType<Omit<{
1855
2095
  sys: z.ZodObject<{
1856
2096
  type: z.ZodOptional<z.ZodString>;
1857
2097
  id: z.ZodString;
@@ -1860,13 +2100,11 @@ export declare const Entry: {
1860
2100
  locale: z.ZodOptional<z.ZodString>;
1861
2101
  revision: z.ZodOptional<z.ZodNumber>;
1862
2102
  space: z.ZodOptional<z.ZodObject<{
1863
- sys: z.ZodObject<z.extendShape<{
2103
+ sys: z.ZodObject<{
1864
2104
  type: z.ZodString;
1865
- linkType: z.ZodString;
1866
2105
  id: z.ZodString;
1867
- }, {
1868
2106
  linkType: z.ZodString;
1869
- }>, "strip", z.ZodTypeAny, {
2107
+ }, "strip", z.ZodTypeAny, {
1870
2108
  type: string;
1871
2109
  linkType: string;
1872
2110
  id: string;
@@ -1889,13 +2127,11 @@ export declare const Entry: {
1889
2127
  };
1890
2128
  }>>;
1891
2129
  environment: z.ZodOptional<z.ZodObject<{
1892
- sys: z.ZodObject<z.extendShape<{
2130
+ sys: z.ZodObject<{
1893
2131
  type: z.ZodString;
1894
- linkType: z.ZodString;
1895
2132
  id: z.ZodString;
1896
- }, {
1897
2133
  linkType: z.ZodString;
1898
- }>, "strip", z.ZodTypeAny, {
2134
+ }, "strip", z.ZodTypeAny, {
1899
2135
  type: string;
1900
2136
  linkType: string;
1901
2137
  id: string;
@@ -1918,13 +2154,11 @@ export declare const Entry: {
1918
2154
  };
1919
2155
  }>>;
1920
2156
  contentType: z.ZodOptional<z.ZodObject<{
1921
- sys: z.ZodObject<z.extendShape<{
2157
+ sys: z.ZodObject<{
1922
2158
  type: z.ZodString;
1923
- linkType: z.ZodString;
1924
2159
  id: z.ZodString;
1925
- }, {
1926
2160
  linkType: z.ZodString;
1927
- }>, "strip", z.ZodTypeAny, {
2161
+ }, "strip", z.ZodTypeAny, {
1928
2162
  type: string;
1929
2163
  linkType: string;
1930
2164
  id: string;
@@ -1947,6 +2181,7 @@ export declare const Entry: {
1947
2181
  };
1948
2182
  }>>;
1949
2183
  }, "strip", z.ZodTypeAny, {
2184
+ id: string;
1950
2185
  type?: string | undefined;
1951
2186
  createdAt?: string | undefined;
1952
2187
  updatedAt?: string | undefined;
@@ -1973,8 +2208,8 @@ export declare const Entry: {
1973
2208
  id: string;
1974
2209
  };
1975
2210
  } | undefined;
1976
- id: string;
1977
2211
  }, {
2212
+ id: string;
1978
2213
  type?: string | undefined;
1979
2214
  createdAt?: string | undefined;
1980
2215
  updatedAt?: string | undefined;
@@ -2001,18 +2236,15 @@ export declare const Entry: {
2001
2236
  id: string;
2002
2237
  };
2003
2238
  } | undefined;
2004
- id: string;
2005
2239
  }>;
2006
- fields: z.ZodObject<{}, "passthrough", z.ZodTypeAny, {}, {}>;
2240
+ fields: z.ZodObject<{}, z.UnknownKeysParam, z.ZodTypeAny, {}, {}>;
2007
2241
  metadata: z.ZodOptional<z.ZodObject<{
2008
2242
  tags: z.ZodArray<z.ZodObject<{
2009
- sys: z.ZodObject<z.extendShape<{
2243
+ sys: z.ZodObject<{
2010
2244
  type: z.ZodString;
2011
- linkType: z.ZodString;
2012
2245
  id: z.ZodString;
2013
- }, {
2014
2246
  linkType: z.ZodString;
2015
- }>, "strip", z.ZodTypeAny, {
2247
+ }, "strip", z.ZodTypeAny, {
2016
2248
  type: string;
2017
2249
  linkType: string;
2018
2250
  id: string;
@@ -2051,7 +2283,7 @@ export declare const Entry: {
2051
2283
  };
2052
2284
  }[];
2053
2285
  }>>;
2054
- }, Augmentation>[k_3]["_input"]; } : never> extends infer T_4 extends object ? { [k_2 in keyof T_4]: z.objectUtil.addQuestionMarks<z.extendShape<{
2286
+ }, keyof Augmentation> & Augmentation extends infer T_4 ? { [k_2 in keyof T_4]: (Omit<{
2055
2287
  sys: z.ZodObject<{
2056
2288
  type: z.ZodOptional<z.ZodString>;
2057
2289
  id: z.ZodString;
@@ -2060,13 +2292,11 @@ export declare const Entry: {
2060
2292
  locale: z.ZodOptional<z.ZodString>;
2061
2293
  revision: z.ZodOptional<z.ZodNumber>;
2062
2294
  space: z.ZodOptional<z.ZodObject<{
2063
- sys: z.ZodObject<z.extendShape<{
2295
+ sys: z.ZodObject<{
2064
2296
  type: z.ZodString;
2065
- linkType: z.ZodString;
2066
2297
  id: z.ZodString;
2067
- }, {
2068
2298
  linkType: z.ZodString;
2069
- }>, "strip", z.ZodTypeAny, {
2299
+ }, "strip", z.ZodTypeAny, {
2070
2300
  type: string;
2071
2301
  linkType: string;
2072
2302
  id: string;
@@ -2089,13 +2319,11 @@ export declare const Entry: {
2089
2319
  };
2090
2320
  }>>;
2091
2321
  environment: z.ZodOptional<z.ZodObject<{
2092
- sys: z.ZodObject<z.extendShape<{
2322
+ sys: z.ZodObject<{
2093
2323
  type: z.ZodString;
2094
- linkType: z.ZodString;
2095
2324
  id: z.ZodString;
2096
- }, {
2097
2325
  linkType: z.ZodString;
2098
- }>, "strip", z.ZodTypeAny, {
2326
+ }, "strip", z.ZodTypeAny, {
2099
2327
  type: string;
2100
2328
  linkType: string;
2101
2329
  id: string;
@@ -2118,13 +2346,11 @@ export declare const Entry: {
2118
2346
  };
2119
2347
  }>>;
2120
2348
  contentType: z.ZodOptional<z.ZodObject<{
2121
- sys: z.ZodObject<z.extendShape<{
2349
+ sys: z.ZodObject<{
2122
2350
  type: z.ZodString;
2123
- linkType: z.ZodString;
2124
2351
  id: z.ZodString;
2125
- }, {
2126
2352
  linkType: z.ZodString;
2127
- }>, "strip", z.ZodTypeAny, {
2353
+ }, "strip", z.ZodTypeAny, {
2128
2354
  type: string;
2129
2355
  linkType: string;
2130
2356
  id: string;
@@ -2147,6 +2373,7 @@ export declare const Entry: {
2147
2373
  };
2148
2374
  }>>;
2149
2375
  }, "strip", z.ZodTypeAny, {
2376
+ id: string;
2150
2377
  type?: string | undefined;
2151
2378
  createdAt?: string | undefined;
2152
2379
  updatedAt?: string | undefined;
@@ -2173,8 +2400,8 @@ export declare const Entry: {
2173
2400
  id: string;
2174
2401
  };
2175
2402
  } | undefined;
2176
- id: string;
2177
2403
  }, {
2404
+ id: string;
2178
2405
  type?: string | undefined;
2179
2406
  createdAt?: string | undefined;
2180
2407
  updatedAt?: string | undefined;
@@ -2201,18 +2428,15 @@ export declare const Entry: {
2201
2428
  id: string;
2202
2429
  };
2203
2430
  } | undefined;
2204
- id: string;
2205
2431
  }>;
2206
- fields: z.ZodObject<{}, "passthrough", z.ZodTypeAny, {}, {}>;
2432
+ fields: z.ZodObject<{}, z.UnknownKeysParam, z.ZodTypeAny, {}, {}>;
2207
2433
  metadata: z.ZodOptional<z.ZodObject<{
2208
2434
  tags: z.ZodArray<z.ZodObject<{
2209
- sys: z.ZodObject<z.extendShape<{
2435
+ sys: z.ZodObject<{
2210
2436
  type: z.ZodString;
2211
- linkType: z.ZodString;
2212
2437
  id: z.ZodString;
2213
- }, {
2214
2438
  linkType: z.ZodString;
2215
- }>, "strip", z.ZodTypeAny, {
2439
+ }, "strip", z.ZodTypeAny, {
2216
2440
  type: string;
2217
2441
  linkType: string;
2218
2442
  id: string;
@@ -2251,7 +2475,7 @@ export declare const Entry: {
2251
2475
  };
2252
2476
  }[];
2253
2477
  }>>;
2254
- }, Augmentation> extends infer T_5 extends z.ZodRawShape ? { [k_3 in keyof T_5]: z.extendShape<{
2478
+ }, keyof Augmentation> & Augmentation)[k_2]; } : never>[k_3] ? never : k_3; } : never)[keyof Augmentation | Exclude<"sys", keyof Augmentation> | Exclude<"fields", keyof Augmentation> | Exclude<"metadata", keyof Augmentation>]> extends infer T_3 ? { [k_1 in keyof T_3]: z.objectUtil.addQuestionMarks<z.baseObjectOutputType<Omit<{
2255
2479
  sys: z.ZodObject<{
2256
2480
  type: z.ZodOptional<z.ZodString>;
2257
2481
  id: z.ZodString;
@@ -2260,13 +2484,11 @@ export declare const Entry: {
2260
2484
  locale: z.ZodOptional<z.ZodString>;
2261
2485
  revision: z.ZodOptional<z.ZodNumber>;
2262
2486
  space: z.ZodOptional<z.ZodObject<{
2263
- sys: z.ZodObject<z.extendShape<{
2487
+ sys: z.ZodObject<{
2264
2488
  type: z.ZodString;
2265
- linkType: z.ZodString;
2266
2489
  id: z.ZodString;
2267
- }, {
2268
2490
  linkType: z.ZodString;
2269
- }>, "strip", z.ZodTypeAny, {
2491
+ }, "strip", z.ZodTypeAny, {
2270
2492
  type: string;
2271
2493
  linkType: string;
2272
2494
  id: string;
@@ -2289,13 +2511,11 @@ export declare const Entry: {
2289
2511
  };
2290
2512
  }>>;
2291
2513
  environment: z.ZodOptional<z.ZodObject<{
2292
- sys: z.ZodObject<z.extendShape<{
2514
+ sys: z.ZodObject<{
2293
2515
  type: z.ZodString;
2294
- linkType: z.ZodString;
2295
2516
  id: z.ZodString;
2296
- }, {
2297
2517
  linkType: z.ZodString;
2298
- }>, "strip", z.ZodTypeAny, {
2518
+ }, "strip", z.ZodTypeAny, {
2299
2519
  type: string;
2300
2520
  linkType: string;
2301
2521
  id: string;
@@ -2318,13 +2538,11 @@ export declare const Entry: {
2318
2538
  };
2319
2539
  }>>;
2320
2540
  contentType: z.ZodOptional<z.ZodObject<{
2321
- sys: z.ZodObject<z.extendShape<{
2541
+ sys: z.ZodObject<{
2322
2542
  type: z.ZodString;
2323
- linkType: z.ZodString;
2324
2543
  id: z.ZodString;
2325
- }, {
2326
2544
  linkType: z.ZodString;
2327
- }>, "strip", z.ZodTypeAny, {
2545
+ }, "strip", z.ZodTypeAny, {
2328
2546
  type: string;
2329
2547
  linkType: string;
2330
2548
  id: string;
@@ -2347,6 +2565,7 @@ export declare const Entry: {
2347
2565
  };
2348
2566
  }>>;
2349
2567
  }, "strip", z.ZodTypeAny, {
2568
+ id: string;
2350
2569
  type?: string | undefined;
2351
2570
  createdAt?: string | undefined;
2352
2571
  updatedAt?: string | undefined;
@@ -2373,8 +2592,8 @@ export declare const Entry: {
2373
2592
  id: string;
2374
2593
  };
2375
2594
  } | undefined;
2376
- id: string;
2377
2595
  }, {
2596
+ id: string;
2378
2597
  type?: string | undefined;
2379
2598
  createdAt?: string | undefined;
2380
2599
  updatedAt?: string | undefined;
@@ -2401,18 +2620,15 @@ export declare const Entry: {
2401
2620
  id: string;
2402
2621
  };
2403
2622
  } | undefined;
2404
- id: string;
2405
2623
  }>;
2406
- fields: z.ZodObject<{}, "passthrough", z.ZodTypeAny, {}, {}>;
2624
+ fields: z.ZodObject<{}, z.UnknownKeysParam, z.ZodTypeAny, {}, {}>;
2407
2625
  metadata: z.ZodOptional<z.ZodObject<{
2408
2626
  tags: z.ZodArray<z.ZodObject<{
2409
- sys: z.ZodObject<z.extendShape<{
2627
+ sys: z.ZodObject<{
2410
2628
  type: z.ZodString;
2411
- linkType: z.ZodString;
2412
2629
  id: z.ZodString;
2413
- }, {
2414
2630
  linkType: z.ZodString;
2415
- }>, "strip", z.ZodTypeAny, {
2631
+ }, "strip", z.ZodTypeAny, {
2416
2632
  type: string;
2417
2633
  linkType: string;
2418
2634
  id: string;
@@ -2451,8 +2667,7 @@ export declare const Entry: {
2451
2667
  };
2452
2668
  }[];
2453
2669
  }>>;
2454
- }, Augmentation>[k_3]["_input"]; } : never>[k_2]; } : never>;
2455
- extend: <Augmentation_1 extends z.ZodRawShape>(augmentation: Augmentation_1) => z.ZodObject<z.extendShape<{
2670
+ }, keyof Augmentation> & Augmentation extends infer T_4 ? { [k_2 in keyof T_4]: (Omit<{
2456
2671
  sys: z.ZodObject<{
2457
2672
  type: z.ZodOptional<z.ZodString>;
2458
2673
  id: z.ZodString;
@@ -2461,13 +2676,11 @@ export declare const Entry: {
2461
2676
  locale: z.ZodOptional<z.ZodString>;
2462
2677
  revision: z.ZodOptional<z.ZodNumber>;
2463
2678
  space: z.ZodOptional<z.ZodObject<{
2464
- sys: z.ZodObject<z.extendShape<{
2679
+ sys: z.ZodObject<{
2465
2680
  type: z.ZodString;
2466
- linkType: z.ZodString;
2467
2681
  id: z.ZodString;
2468
- }, {
2469
2682
  linkType: z.ZodString;
2470
- }>, "strip", z.ZodTypeAny, {
2683
+ }, "strip", z.ZodTypeAny, {
2471
2684
  type: string;
2472
2685
  linkType: string;
2473
2686
  id: string;
@@ -2490,13 +2703,11 @@ export declare const Entry: {
2490
2703
  };
2491
2704
  }>>;
2492
2705
  environment: z.ZodOptional<z.ZodObject<{
2493
- sys: z.ZodObject<z.extendShape<{
2706
+ sys: z.ZodObject<{
2494
2707
  type: z.ZodString;
2495
- linkType: z.ZodString;
2496
2708
  id: z.ZodString;
2497
- }, {
2498
2709
  linkType: z.ZodString;
2499
- }>, "strip", z.ZodTypeAny, {
2710
+ }, "strip", z.ZodTypeAny, {
2500
2711
  type: string;
2501
2712
  linkType: string;
2502
2713
  id: string;
@@ -2519,13 +2730,11 @@ export declare const Entry: {
2519
2730
  };
2520
2731
  }>>;
2521
2732
  contentType: z.ZodOptional<z.ZodObject<{
2522
- sys: z.ZodObject<z.extendShape<{
2733
+ sys: z.ZodObject<{
2523
2734
  type: z.ZodString;
2524
- linkType: z.ZodString;
2525
2735
  id: z.ZodString;
2526
- }, {
2527
2736
  linkType: z.ZodString;
2528
- }>, "strip", z.ZodTypeAny, {
2737
+ }, "strip", z.ZodTypeAny, {
2529
2738
  type: string;
2530
2739
  linkType: string;
2531
2740
  id: string;
@@ -2548,6 +2757,7 @@ export declare const Entry: {
2548
2757
  };
2549
2758
  }>>;
2550
2759
  }, "strip", z.ZodTypeAny, {
2760
+ id: string;
2551
2761
  type?: string | undefined;
2552
2762
  createdAt?: string | undefined;
2553
2763
  updatedAt?: string | undefined;
@@ -2574,8 +2784,8 @@ export declare const Entry: {
2574
2784
  id: string;
2575
2785
  };
2576
2786
  } | undefined;
2577
- id: string;
2578
2787
  }, {
2788
+ id: string;
2579
2789
  type?: string | undefined;
2580
2790
  createdAt?: string | undefined;
2581
2791
  updatedAt?: string | undefined;
@@ -2602,18 +2812,15 @@ export declare const Entry: {
2602
2812
  id: string;
2603
2813
  };
2604
2814
  } | undefined;
2605
- id: string;
2606
2815
  }>;
2607
- fields: z.ZodObject<{}, "passthrough", z.ZodTypeAny, {}, {}>;
2816
+ fields: z.ZodObject<{}, z.UnknownKeysParam, z.ZodTypeAny, {}, {}>;
2608
2817
  metadata: z.ZodOptional<z.ZodObject<{
2609
2818
  tags: z.ZodArray<z.ZodObject<{
2610
- sys: z.ZodObject<z.extendShape<{
2819
+ sys: z.ZodObject<{
2611
2820
  type: z.ZodString;
2612
- linkType: z.ZodString;
2613
2821
  id: z.ZodString;
2614
- }, {
2615
2822
  linkType: z.ZodString;
2616
- }>, "strip", z.ZodTypeAny, {
2823
+ }, "strip", z.ZodTypeAny, {
2617
2824
  type: string;
2618
2825
  linkType: string;
2619
2826
  id: string;
@@ -2652,7 +2859,7 @@ export declare const Entry: {
2652
2859
  };
2653
2860
  }[];
2654
2861
  }>>;
2655
- }, Augmentation_1>, "strip", z.ZodTypeAny, z.objectUtil.addQuestionMarks<z.extendShape<{
2862
+ }, keyof Augmentation> & Augmentation)[k_2]; } : never>, (z.baseObjectOutputType<Omit<{
2656
2863
  sys: z.ZodObject<{
2657
2864
  type: z.ZodOptional<z.ZodString>;
2658
2865
  id: z.ZodString;
@@ -2661,13 +2868,11 @@ export declare const Entry: {
2661
2868
  locale: z.ZodOptional<z.ZodString>;
2662
2869
  revision: z.ZodOptional<z.ZodNumber>;
2663
2870
  space: z.ZodOptional<z.ZodObject<{
2664
- sys: z.ZodObject<z.extendShape<{
2871
+ sys: z.ZodObject<{
2665
2872
  type: z.ZodString;
2666
- linkType: z.ZodString;
2667
2873
  id: z.ZodString;
2668
- }, {
2669
2874
  linkType: z.ZodString;
2670
- }>, "strip", z.ZodTypeAny, {
2875
+ }, "strip", z.ZodTypeAny, {
2671
2876
  type: string;
2672
2877
  linkType: string;
2673
2878
  id: string;
@@ -2690,13 +2895,11 @@ export declare const Entry: {
2690
2895
  };
2691
2896
  }>>;
2692
2897
  environment: z.ZodOptional<z.ZodObject<{
2693
- sys: z.ZodObject<z.extendShape<{
2898
+ sys: z.ZodObject<{
2694
2899
  type: z.ZodString;
2695
- linkType: z.ZodString;
2696
2900
  id: z.ZodString;
2697
- }, {
2698
2901
  linkType: z.ZodString;
2699
- }>, "strip", z.ZodTypeAny, {
2902
+ }, "strip", z.ZodTypeAny, {
2700
2903
  type: string;
2701
2904
  linkType: string;
2702
2905
  id: string;
@@ -2719,13 +2922,11 @@ export declare const Entry: {
2719
2922
  };
2720
2923
  }>>;
2721
2924
  contentType: z.ZodOptional<z.ZodObject<{
2722
- sys: z.ZodObject<z.extendShape<{
2925
+ sys: z.ZodObject<{
2723
2926
  type: z.ZodString;
2724
- linkType: z.ZodString;
2725
2927
  id: z.ZodString;
2726
- }, {
2727
2928
  linkType: z.ZodString;
2728
- }>, "strip", z.ZodTypeAny, {
2929
+ }, "strip", z.ZodTypeAny, {
2729
2930
  type: string;
2730
2931
  linkType: string;
2731
2932
  id: string;
@@ -2748,6 +2949,7 @@ export declare const Entry: {
2748
2949
  };
2749
2950
  }>>;
2750
2951
  }, "strip", z.ZodTypeAny, {
2952
+ id: string;
2751
2953
  type?: string | undefined;
2752
2954
  createdAt?: string | undefined;
2753
2955
  updatedAt?: string | undefined;
@@ -2774,8 +2976,8 @@ export declare const Entry: {
2774
2976
  id: string;
2775
2977
  };
2776
2978
  } | undefined;
2777
- id: string;
2778
2979
  }, {
2980
+ id: string;
2779
2981
  type?: string | undefined;
2780
2982
  createdAt?: string | undefined;
2781
2983
  updatedAt?: string | undefined;
@@ -2802,18 +3004,15 @@ export declare const Entry: {
2802
3004
  id: string;
2803
3005
  };
2804
3006
  } | undefined;
2805
- id: string;
2806
3007
  }>;
2807
- fields: z.ZodObject<{}, "passthrough", z.ZodTypeAny, {}, {}>;
3008
+ fields: z.ZodObject<{}, z.UnknownKeysParam, z.ZodTypeAny, {}, {}>;
2808
3009
  metadata: z.ZodOptional<z.ZodObject<{
2809
3010
  tags: z.ZodArray<z.ZodObject<{
2810
- sys: z.ZodObject<z.extendShape<{
3011
+ sys: z.ZodObject<{
2811
3012
  type: z.ZodString;
2812
- linkType: z.ZodString;
2813
3013
  id: z.ZodString;
2814
- }, {
2815
3014
  linkType: z.ZodString;
2816
- }>, "strip", z.ZodTypeAny, {
3015
+ }, "strip", z.ZodTypeAny, {
2817
3016
  type: string;
2818
3017
  linkType: string;
2819
3018
  id: string;
@@ -2852,7 +3051,7 @@ export declare const Entry: {
2852
3051
  };
2853
3052
  }[];
2854
3053
  }>>;
2855
- }, Augmentation_1> extends infer T_7 extends z.ZodRawShape ? { [k_5 in keyof T_7]: z.extendShape<{
3054
+ }, keyof Augmentation> & Augmentation extends infer T_4 ? { [k_2 in keyof T_4]: (Omit<{
2856
3055
  sys: z.ZodObject<{
2857
3056
  type: z.ZodOptional<z.ZodString>;
2858
3057
  id: z.ZodString;
@@ -2861,13 +3060,11 @@ export declare const Entry: {
2861
3060
  locale: z.ZodOptional<z.ZodString>;
2862
3061
  revision: z.ZodOptional<z.ZodNumber>;
2863
3062
  space: z.ZodOptional<z.ZodObject<{
2864
- sys: z.ZodObject<z.extendShape<{
3063
+ sys: z.ZodObject<{
2865
3064
  type: z.ZodString;
2866
- linkType: z.ZodString;
2867
3065
  id: z.ZodString;
2868
- }, {
2869
3066
  linkType: z.ZodString;
2870
- }>, "strip", z.ZodTypeAny, {
3067
+ }, "strip", z.ZodTypeAny, {
2871
3068
  type: string;
2872
3069
  linkType: string;
2873
3070
  id: string;
@@ -2890,13 +3087,11 @@ export declare const Entry: {
2890
3087
  };
2891
3088
  }>>;
2892
3089
  environment: z.ZodOptional<z.ZodObject<{
2893
- sys: z.ZodObject<z.extendShape<{
3090
+ sys: z.ZodObject<{
2894
3091
  type: z.ZodString;
2895
- linkType: z.ZodString;
2896
3092
  id: z.ZodString;
2897
- }, {
2898
3093
  linkType: z.ZodString;
2899
- }>, "strip", z.ZodTypeAny, {
3094
+ }, "strip", z.ZodTypeAny, {
2900
3095
  type: string;
2901
3096
  linkType: string;
2902
3097
  id: string;
@@ -2919,13 +3114,11 @@ export declare const Entry: {
2919
3114
  };
2920
3115
  }>>;
2921
3116
  contentType: z.ZodOptional<z.ZodObject<{
2922
- sys: z.ZodObject<z.extendShape<{
3117
+ sys: z.ZodObject<{
2923
3118
  type: z.ZodString;
2924
- linkType: z.ZodString;
2925
3119
  id: z.ZodString;
2926
- }, {
2927
3120
  linkType: z.ZodString;
2928
- }>, "strip", z.ZodTypeAny, {
3121
+ }, "strip", z.ZodTypeAny, {
2929
3122
  type: string;
2930
3123
  linkType: string;
2931
3124
  id: string;
@@ -2948,6 +3141,7 @@ export declare const Entry: {
2948
3141
  };
2949
3142
  }>>;
2950
3143
  }, "strip", z.ZodTypeAny, {
3144
+ id: string;
2951
3145
  type?: string | undefined;
2952
3146
  createdAt?: string | undefined;
2953
3147
  updatedAt?: string | undefined;
@@ -2974,8 +3168,8 @@ export declare const Entry: {
2974
3168
  id: string;
2975
3169
  };
2976
3170
  } | undefined;
2977
- id: string;
2978
3171
  }, {
3172
+ id: string;
2979
3173
  type?: string | undefined;
2980
3174
  createdAt?: string | undefined;
2981
3175
  updatedAt?: string | undefined;
@@ -3002,18 +3196,15 @@ export declare const Entry: {
3002
3196
  id: string;
3003
3197
  };
3004
3198
  } | undefined;
3005
- id: string;
3006
3199
  }>;
3007
- fields: z.ZodObject<{}, "passthrough", z.ZodTypeAny, {}, {}>;
3200
+ fields: z.ZodObject<{}, z.UnknownKeysParam, z.ZodTypeAny, {}, {}>;
3008
3201
  metadata: z.ZodOptional<z.ZodObject<{
3009
3202
  tags: z.ZodArray<z.ZodObject<{
3010
- sys: z.ZodObject<z.extendShape<{
3203
+ sys: z.ZodObject<{
3011
3204
  type: z.ZodString;
3012
- linkType: z.ZodString;
3013
3205
  id: z.ZodString;
3014
- }, {
3015
3206
  linkType: z.ZodString;
3016
- }>, "strip", z.ZodTypeAny, {
3207
+ }, "strip", z.ZodTypeAny, {
3017
3208
  type: string;
3018
3209
  linkType: string;
3019
3210
  id: string;
@@ -3052,7 +3243,7 @@ export declare const Entry: {
3052
3243
  };
3053
3244
  }[];
3054
3245
  }>>;
3055
- }, Augmentation_1>[k_5]["_output"]; } : never> extends infer T_6 extends object ? { [k_4 in keyof T_6]: z.objectUtil.addQuestionMarks<z.extendShape<{
3246
+ }, keyof Augmentation> & Augmentation)[k_2]; } : never> extends infer T_5 extends object ? { [k_3 in keyof T_5]: undefined extends z.baseObjectOutputType<Omit<{
3056
3247
  sys: z.ZodObject<{
3057
3248
  type: z.ZodOptional<z.ZodString>;
3058
3249
  id: z.ZodString;
@@ -3061,13 +3252,11 @@ export declare const Entry: {
3061
3252
  locale: z.ZodOptional<z.ZodString>;
3062
3253
  revision: z.ZodOptional<z.ZodNumber>;
3063
3254
  space: z.ZodOptional<z.ZodObject<{
3064
- sys: z.ZodObject<z.extendShape<{
3255
+ sys: z.ZodObject<{
3065
3256
  type: z.ZodString;
3066
- linkType: z.ZodString;
3067
3257
  id: z.ZodString;
3068
- }, {
3069
3258
  linkType: z.ZodString;
3070
- }>, "strip", z.ZodTypeAny, {
3259
+ }, "strip", z.ZodTypeAny, {
3071
3260
  type: string;
3072
3261
  linkType: string;
3073
3262
  id: string;
@@ -3090,13 +3279,11 @@ export declare const Entry: {
3090
3279
  };
3091
3280
  }>>;
3092
3281
  environment: z.ZodOptional<z.ZodObject<{
3093
- sys: z.ZodObject<z.extendShape<{
3282
+ sys: z.ZodObject<{
3094
3283
  type: z.ZodString;
3095
- linkType: z.ZodString;
3096
3284
  id: z.ZodString;
3097
- }, {
3098
3285
  linkType: z.ZodString;
3099
- }>, "strip", z.ZodTypeAny, {
3286
+ }, "strip", z.ZodTypeAny, {
3100
3287
  type: string;
3101
3288
  linkType: string;
3102
3289
  id: string;
@@ -3119,13 +3306,11 @@ export declare const Entry: {
3119
3306
  };
3120
3307
  }>>;
3121
3308
  contentType: z.ZodOptional<z.ZodObject<{
3122
- sys: z.ZodObject<z.extendShape<{
3309
+ sys: z.ZodObject<{
3123
3310
  type: z.ZodString;
3124
- linkType: z.ZodString;
3125
3311
  id: z.ZodString;
3126
- }, {
3127
3312
  linkType: z.ZodString;
3128
- }>, "strip", z.ZodTypeAny, {
3313
+ }, "strip", z.ZodTypeAny, {
3129
3314
  type: string;
3130
3315
  linkType: string;
3131
3316
  id: string;
@@ -3148,6 +3333,7 @@ export declare const Entry: {
3148
3333
  };
3149
3334
  }>>;
3150
3335
  }, "strip", z.ZodTypeAny, {
3336
+ id: string;
3151
3337
  type?: string | undefined;
3152
3338
  createdAt?: string | undefined;
3153
3339
  updatedAt?: string | undefined;
@@ -3174,8 +3360,8 @@ export declare const Entry: {
3174
3360
  id: string;
3175
3361
  };
3176
3362
  } | undefined;
3177
- id: string;
3178
3363
  }, {
3364
+ id: string;
3179
3365
  type?: string | undefined;
3180
3366
  createdAt?: string | undefined;
3181
3367
  updatedAt?: string | undefined;
@@ -3202,18 +3388,15 @@ export declare const Entry: {
3202
3388
  id: string;
3203
3389
  };
3204
3390
  } | undefined;
3205
- id: string;
3206
3391
  }>;
3207
- fields: z.ZodObject<{}, "passthrough", z.ZodTypeAny, {}, {}>;
3392
+ fields: z.ZodObject<{}, z.UnknownKeysParam, z.ZodTypeAny, {}, {}>;
3208
3393
  metadata: z.ZodOptional<z.ZodObject<{
3209
3394
  tags: z.ZodArray<z.ZodObject<{
3210
- sys: z.ZodObject<z.extendShape<{
3395
+ sys: z.ZodObject<{
3211
3396
  type: z.ZodString;
3212
- linkType: z.ZodString;
3213
3397
  id: z.ZodString;
3214
- }, {
3215
3398
  linkType: z.ZodString;
3216
- }>, "strip", z.ZodTypeAny, {
3399
+ }, "strip", z.ZodTypeAny, {
3217
3400
  type: string;
3218
3401
  linkType: string;
3219
3402
  id: string;
@@ -3252,7 +3435,7 @@ export declare const Entry: {
3252
3435
  };
3253
3436
  }[];
3254
3437
  }>>;
3255
- }, Augmentation_1> extends infer T_7 extends z.ZodRawShape ? { [k_5 in keyof T_7]: z.extendShape<{
3438
+ }, keyof Augmentation> & Augmentation extends infer T_4 ? { [k_2 in keyof T_4]: (Omit<{
3256
3439
  sys: z.ZodObject<{
3257
3440
  type: z.ZodOptional<z.ZodString>;
3258
3441
  id: z.ZodString;
@@ -3261,13 +3444,11 @@ export declare const Entry: {
3261
3444
  locale: z.ZodOptional<z.ZodString>;
3262
3445
  revision: z.ZodOptional<z.ZodNumber>;
3263
3446
  space: z.ZodOptional<z.ZodObject<{
3264
- sys: z.ZodObject<z.extendShape<{
3447
+ sys: z.ZodObject<{
3265
3448
  type: z.ZodString;
3266
- linkType: z.ZodString;
3267
3449
  id: z.ZodString;
3268
- }, {
3269
3450
  linkType: z.ZodString;
3270
- }>, "strip", z.ZodTypeAny, {
3451
+ }, "strip", z.ZodTypeAny, {
3271
3452
  type: string;
3272
3453
  linkType: string;
3273
3454
  id: string;
@@ -3290,13 +3471,11 @@ export declare const Entry: {
3290
3471
  };
3291
3472
  }>>;
3292
3473
  environment: z.ZodOptional<z.ZodObject<{
3293
- sys: z.ZodObject<z.extendShape<{
3474
+ sys: z.ZodObject<{
3294
3475
  type: z.ZodString;
3295
- linkType: z.ZodString;
3296
3476
  id: z.ZodString;
3297
- }, {
3298
3477
  linkType: z.ZodString;
3299
- }>, "strip", z.ZodTypeAny, {
3478
+ }, "strip", z.ZodTypeAny, {
3300
3479
  type: string;
3301
3480
  linkType: string;
3302
3481
  id: string;
@@ -3319,13 +3498,11 @@ export declare const Entry: {
3319
3498
  };
3320
3499
  }>>;
3321
3500
  contentType: z.ZodOptional<z.ZodObject<{
3322
- sys: z.ZodObject<z.extendShape<{
3501
+ sys: z.ZodObject<{
3323
3502
  type: z.ZodString;
3324
- linkType: z.ZodString;
3325
3503
  id: z.ZodString;
3326
- }, {
3327
3504
  linkType: z.ZodString;
3328
- }>, "strip", z.ZodTypeAny, {
3505
+ }, "strip", z.ZodTypeAny, {
3329
3506
  type: string;
3330
3507
  linkType: string;
3331
3508
  id: string;
@@ -3348,6 +3525,7 @@ export declare const Entry: {
3348
3525
  };
3349
3526
  }>>;
3350
3527
  }, "strip", z.ZodTypeAny, {
3528
+ id: string;
3351
3529
  type?: string | undefined;
3352
3530
  createdAt?: string | undefined;
3353
3531
  updatedAt?: string | undefined;
@@ -3374,8 +3552,8 @@ export declare const Entry: {
3374
3552
  id: string;
3375
3553
  };
3376
3554
  } | undefined;
3377
- id: string;
3378
3555
  }, {
3556
+ id: string;
3379
3557
  type?: string | undefined;
3380
3558
  createdAt?: string | undefined;
3381
3559
  updatedAt?: string | undefined;
@@ -3402,18 +3580,15 @@ export declare const Entry: {
3402
3580
  id: string;
3403
3581
  };
3404
3582
  } | undefined;
3405
- id: string;
3406
3583
  }>;
3407
- fields: z.ZodObject<{}, "passthrough", z.ZodTypeAny, {}, {}>;
3584
+ fields: z.ZodObject<{}, z.UnknownKeysParam, z.ZodTypeAny, {}, {}>;
3408
3585
  metadata: z.ZodOptional<z.ZodObject<{
3409
3586
  tags: z.ZodArray<z.ZodObject<{
3410
- sys: z.ZodObject<z.extendShape<{
3587
+ sys: z.ZodObject<{
3411
3588
  type: z.ZodString;
3412
- linkType: z.ZodString;
3413
3589
  id: z.ZodString;
3414
- }, {
3415
3590
  linkType: z.ZodString;
3416
- }>, "strip", z.ZodTypeAny, {
3591
+ }, "strip", z.ZodTypeAny, {
3417
3592
  type: string;
3418
3593
  linkType: string;
3419
3594
  id: string;
@@ -3452,7 +3627,7 @@ export declare const Entry: {
3452
3627
  };
3453
3628
  }[];
3454
3629
  }>>;
3455
- }, Augmentation_1>[k_5]["_output"]; } : never>[k_4]; } : never, z.objectUtil.addQuestionMarks<z.extendShape<{
3630
+ }, keyof Augmentation> & Augmentation)[k_2]; } : never>[k_3] ? never : k_3; } : never)[keyof Augmentation | Exclude<"sys", keyof Augmentation> | Exclude<"fields", keyof Augmentation> | Exclude<"metadata", keyof Augmentation>]>[k_1]; } : never, z.baseObjectInputType<Omit<{
3456
3631
  sys: z.ZodObject<{
3457
3632
  type: z.ZodOptional<z.ZodString>;
3458
3633
  id: z.ZodString;
@@ -3461,13 +3636,11 @@ export declare const Entry: {
3461
3636
  locale: z.ZodOptional<z.ZodString>;
3462
3637
  revision: z.ZodOptional<z.ZodNumber>;
3463
3638
  space: z.ZodOptional<z.ZodObject<{
3464
- sys: z.ZodObject<z.extendShape<{
3639
+ sys: z.ZodObject<{
3465
3640
  type: z.ZodString;
3466
- linkType: z.ZodString;
3467
3641
  id: z.ZodString;
3468
- }, {
3469
3642
  linkType: z.ZodString;
3470
- }>, "strip", z.ZodTypeAny, {
3643
+ }, "strip", z.ZodTypeAny, {
3471
3644
  type: string;
3472
3645
  linkType: string;
3473
3646
  id: string;
@@ -3490,13 +3663,11 @@ export declare const Entry: {
3490
3663
  };
3491
3664
  }>>;
3492
3665
  environment: z.ZodOptional<z.ZodObject<{
3493
- sys: z.ZodObject<z.extendShape<{
3666
+ sys: z.ZodObject<{
3494
3667
  type: z.ZodString;
3495
- linkType: z.ZodString;
3496
3668
  id: z.ZodString;
3497
- }, {
3498
3669
  linkType: z.ZodString;
3499
- }>, "strip", z.ZodTypeAny, {
3670
+ }, "strip", z.ZodTypeAny, {
3500
3671
  type: string;
3501
3672
  linkType: string;
3502
3673
  id: string;
@@ -3519,13 +3690,11 @@ export declare const Entry: {
3519
3690
  };
3520
3691
  }>>;
3521
3692
  contentType: z.ZodOptional<z.ZodObject<{
3522
- sys: z.ZodObject<z.extendShape<{
3693
+ sys: z.ZodObject<{
3523
3694
  type: z.ZodString;
3524
- linkType: z.ZodString;
3525
3695
  id: z.ZodString;
3526
- }, {
3527
3696
  linkType: z.ZodString;
3528
- }>, "strip", z.ZodTypeAny, {
3697
+ }, "strip", z.ZodTypeAny, {
3529
3698
  type: string;
3530
3699
  linkType: string;
3531
3700
  id: string;
@@ -3548,6 +3717,7 @@ export declare const Entry: {
3548
3717
  };
3549
3718
  }>>;
3550
3719
  }, "strip", z.ZodTypeAny, {
3720
+ id: string;
3551
3721
  type?: string | undefined;
3552
3722
  createdAt?: string | undefined;
3553
3723
  updatedAt?: string | undefined;
@@ -3574,8 +3744,8 @@ export declare const Entry: {
3574
3744
  id: string;
3575
3745
  };
3576
3746
  } | undefined;
3577
- id: string;
3578
3747
  }, {
3748
+ id: string;
3579
3749
  type?: string | undefined;
3580
3750
  createdAt?: string | undefined;
3581
3751
  updatedAt?: string | undefined;
@@ -3602,18 +3772,15 @@ export declare const Entry: {
3602
3772
  id: string;
3603
3773
  };
3604
3774
  } | undefined;
3605
- id: string;
3606
3775
  }>;
3607
- fields: z.ZodObject<{}, "passthrough", z.ZodTypeAny, {}, {}>;
3776
+ fields: z.ZodObject<{}, z.UnknownKeysParam, z.ZodTypeAny, {}, {}>;
3608
3777
  metadata: z.ZodOptional<z.ZodObject<{
3609
3778
  tags: z.ZodArray<z.ZodObject<{
3610
- sys: z.ZodObject<z.extendShape<{
3779
+ sys: z.ZodObject<{
3611
3780
  type: z.ZodString;
3612
- linkType: z.ZodString;
3613
3781
  id: z.ZodString;
3614
- }, {
3615
3782
  linkType: z.ZodString;
3616
- }>, "strip", z.ZodTypeAny, {
3783
+ }, "strip", z.ZodTypeAny, {
3617
3784
  type: string;
3618
3785
  linkType: string;
3619
3786
  id: string;
@@ -3652,7 +3819,7 @@ export declare const Entry: {
3652
3819
  };
3653
3820
  }[];
3654
3821
  }>>;
3655
- }, Augmentation_1> extends infer T_9 extends z.ZodRawShape ? { [k_7 in keyof T_9]: z.extendShape<{
3822
+ }, keyof Augmentation> & Augmentation extends infer T_7 ? { [k_5 in keyof T_7]: (Omit<{
3656
3823
  sys: z.ZodObject<{
3657
3824
  type: z.ZodOptional<z.ZodString>;
3658
3825
  id: z.ZodString;
@@ -3661,13 +3828,11 @@ export declare const Entry: {
3661
3828
  locale: z.ZodOptional<z.ZodString>;
3662
3829
  revision: z.ZodOptional<z.ZodNumber>;
3663
3830
  space: z.ZodOptional<z.ZodObject<{
3664
- sys: z.ZodObject<z.extendShape<{
3831
+ sys: z.ZodObject<{
3665
3832
  type: z.ZodString;
3666
- linkType: z.ZodString;
3667
3833
  id: z.ZodString;
3668
- }, {
3669
3834
  linkType: z.ZodString;
3670
- }>, "strip", z.ZodTypeAny, {
3835
+ }, "strip", z.ZodTypeAny, {
3671
3836
  type: string;
3672
3837
  linkType: string;
3673
3838
  id: string;
@@ -3690,13 +3855,11 @@ export declare const Entry: {
3690
3855
  };
3691
3856
  }>>;
3692
3857
  environment: z.ZodOptional<z.ZodObject<{
3693
- sys: z.ZodObject<z.extendShape<{
3858
+ sys: z.ZodObject<{
3694
3859
  type: z.ZodString;
3695
- linkType: z.ZodString;
3696
3860
  id: z.ZodString;
3697
- }, {
3698
3861
  linkType: z.ZodString;
3699
- }>, "strip", z.ZodTypeAny, {
3862
+ }, "strip", z.ZodTypeAny, {
3700
3863
  type: string;
3701
3864
  linkType: string;
3702
3865
  id: string;
@@ -3719,13 +3882,11 @@ export declare const Entry: {
3719
3882
  };
3720
3883
  }>>;
3721
3884
  contentType: z.ZodOptional<z.ZodObject<{
3722
- sys: z.ZodObject<z.extendShape<{
3885
+ sys: z.ZodObject<{
3723
3886
  type: z.ZodString;
3724
- linkType: z.ZodString;
3725
3887
  id: z.ZodString;
3726
- }, {
3727
3888
  linkType: z.ZodString;
3728
- }>, "strip", z.ZodTypeAny, {
3889
+ }, "strip", z.ZodTypeAny, {
3729
3890
  type: string;
3730
3891
  linkType: string;
3731
3892
  id: string;
@@ -3748,6 +3909,7 @@ export declare const Entry: {
3748
3909
  };
3749
3910
  }>>;
3750
3911
  }, "strip", z.ZodTypeAny, {
3912
+ id: string;
3751
3913
  type?: string | undefined;
3752
3914
  createdAt?: string | undefined;
3753
3915
  updatedAt?: string | undefined;
@@ -3774,8 +3936,8 @@ export declare const Entry: {
3774
3936
  id: string;
3775
3937
  };
3776
3938
  } | undefined;
3777
- id: string;
3778
3939
  }, {
3940
+ id: string;
3779
3941
  type?: string | undefined;
3780
3942
  createdAt?: string | undefined;
3781
3943
  updatedAt?: string | undefined;
@@ -3802,18 +3964,15 @@ export declare const Entry: {
3802
3964
  id: string;
3803
3965
  };
3804
3966
  } | undefined;
3805
- id: string;
3806
3967
  }>;
3807
- fields: z.ZodObject<{}, "passthrough", z.ZodTypeAny, {}, {}>;
3968
+ fields: z.ZodObject<{}, z.UnknownKeysParam, z.ZodTypeAny, {}, {}>;
3808
3969
  metadata: z.ZodOptional<z.ZodObject<{
3809
3970
  tags: z.ZodArray<z.ZodObject<{
3810
- sys: z.ZodObject<z.extendShape<{
3971
+ sys: z.ZodObject<{
3811
3972
  type: z.ZodString;
3812
- linkType: z.ZodString;
3813
3973
  id: z.ZodString;
3814
- }, {
3815
3974
  linkType: z.ZodString;
3816
- }>, "strip", z.ZodTypeAny, {
3975
+ }, "strip", z.ZodTypeAny, {
3817
3976
  type: string;
3818
3977
  linkType: string;
3819
3978
  id: string;
@@ -3852,7 +4011,7 @@ export declare const Entry: {
3852
4011
  };
3853
4012
  }[];
3854
4013
  }>>;
3855
- }, Augmentation_1>[k_7]["_input"]; } : never> extends infer T_8 extends object ? { [k_6 in keyof T_8]: z.objectUtil.addQuestionMarks<z.extendShape<{
4014
+ }, keyof Augmentation> & Augmentation)[k_5]; } : never> extends infer T_6 ? { [k_4 in keyof T_6]: z.baseObjectInputType<Omit<{
3856
4015
  sys: z.ZodObject<{
3857
4016
  type: z.ZodOptional<z.ZodString>;
3858
4017
  id: z.ZodString;
@@ -3861,13 +4020,11 @@ export declare const Entry: {
3861
4020
  locale: z.ZodOptional<z.ZodString>;
3862
4021
  revision: z.ZodOptional<z.ZodNumber>;
3863
4022
  space: z.ZodOptional<z.ZodObject<{
3864
- sys: z.ZodObject<z.extendShape<{
4023
+ sys: z.ZodObject<{
3865
4024
  type: z.ZodString;
3866
- linkType: z.ZodString;
3867
4025
  id: z.ZodString;
3868
- }, {
3869
4026
  linkType: z.ZodString;
3870
- }>, "strip", z.ZodTypeAny, {
4027
+ }, "strip", z.ZodTypeAny, {
3871
4028
  type: string;
3872
4029
  linkType: string;
3873
4030
  id: string;
@@ -3890,13 +4047,11 @@ export declare const Entry: {
3890
4047
  };
3891
4048
  }>>;
3892
4049
  environment: z.ZodOptional<z.ZodObject<{
3893
- sys: z.ZodObject<z.extendShape<{
4050
+ sys: z.ZodObject<{
3894
4051
  type: z.ZodString;
3895
- linkType: z.ZodString;
3896
4052
  id: z.ZodString;
3897
- }, {
3898
4053
  linkType: z.ZodString;
3899
- }>, "strip", z.ZodTypeAny, {
4054
+ }, "strip", z.ZodTypeAny, {
3900
4055
  type: string;
3901
4056
  linkType: string;
3902
4057
  id: string;
@@ -3919,13 +4074,11 @@ export declare const Entry: {
3919
4074
  };
3920
4075
  }>>;
3921
4076
  contentType: z.ZodOptional<z.ZodObject<{
3922
- sys: z.ZodObject<z.extendShape<{
4077
+ sys: z.ZodObject<{
3923
4078
  type: z.ZodString;
3924
- linkType: z.ZodString;
3925
4079
  id: z.ZodString;
3926
- }, {
3927
4080
  linkType: z.ZodString;
3928
- }>, "strip", z.ZodTypeAny, {
4081
+ }, "strip", z.ZodTypeAny, {
3929
4082
  type: string;
3930
4083
  linkType: string;
3931
4084
  id: string;
@@ -3948,6 +4101,7 @@ export declare const Entry: {
3948
4101
  };
3949
4102
  }>>;
3950
4103
  }, "strip", z.ZodTypeAny, {
4104
+ id: string;
3951
4105
  type?: string | undefined;
3952
4106
  createdAt?: string | undefined;
3953
4107
  updatedAt?: string | undefined;
@@ -3974,8 +4128,8 @@ export declare const Entry: {
3974
4128
  id: string;
3975
4129
  };
3976
4130
  } | undefined;
3977
- id: string;
3978
4131
  }, {
4132
+ id: string;
3979
4133
  type?: string | undefined;
3980
4134
  createdAt?: string | undefined;
3981
4135
  updatedAt?: string | undefined;
@@ -4002,18 +4156,15 @@ export declare const Entry: {
4002
4156
  id: string;
4003
4157
  };
4004
4158
  } | undefined;
4005
- id: string;
4006
4159
  }>;
4007
- fields: z.ZodObject<{}, "passthrough", z.ZodTypeAny, {}, {}>;
4160
+ fields: z.ZodObject<{}, z.UnknownKeysParam, z.ZodTypeAny, {}, {}>;
4008
4161
  metadata: z.ZodOptional<z.ZodObject<{
4009
4162
  tags: z.ZodArray<z.ZodObject<{
4010
- sys: z.ZodObject<z.extendShape<{
4163
+ sys: z.ZodObject<{
4011
4164
  type: z.ZodString;
4012
- linkType: z.ZodString;
4013
4165
  id: z.ZodString;
4014
- }, {
4015
4166
  linkType: z.ZodString;
4016
- }>, "strip", z.ZodTypeAny, {
4167
+ }, "strip", z.ZodTypeAny, {
4017
4168
  type: string;
4018
4169
  linkType: string;
4019
4170
  id: string;
@@ -4052,7 +4203,7 @@ export declare const Entry: {
4052
4203
  };
4053
4204
  }[];
4054
4205
  }>>;
4055
- }, Augmentation_1> extends infer T_9 extends z.ZodRawShape ? { [k_7 in keyof T_9]: z.extendShape<{
4206
+ }, keyof Augmentation> & Augmentation extends infer T_7 ? { [k_5 in keyof T_7]: (Omit<{
4056
4207
  sys: z.ZodObject<{
4057
4208
  type: z.ZodOptional<z.ZodString>;
4058
4209
  id: z.ZodString;
@@ -4061,13 +4212,11 @@ export declare const Entry: {
4061
4212
  locale: z.ZodOptional<z.ZodString>;
4062
4213
  revision: z.ZodOptional<z.ZodNumber>;
4063
4214
  space: z.ZodOptional<z.ZodObject<{
4064
- sys: z.ZodObject<z.extendShape<{
4215
+ sys: z.ZodObject<{
4065
4216
  type: z.ZodString;
4066
- linkType: z.ZodString;
4067
4217
  id: z.ZodString;
4068
- }, {
4069
4218
  linkType: z.ZodString;
4070
- }>, "strip", z.ZodTypeAny, {
4219
+ }, "strip", z.ZodTypeAny, {
4071
4220
  type: string;
4072
4221
  linkType: string;
4073
4222
  id: string;
@@ -4090,13 +4239,11 @@ export declare const Entry: {
4090
4239
  };
4091
4240
  }>>;
4092
4241
  environment: z.ZodOptional<z.ZodObject<{
4093
- sys: z.ZodObject<z.extendShape<{
4242
+ sys: z.ZodObject<{
4094
4243
  type: z.ZodString;
4095
- linkType: z.ZodString;
4096
4244
  id: z.ZodString;
4097
- }, {
4098
4245
  linkType: z.ZodString;
4099
- }>, "strip", z.ZodTypeAny, {
4246
+ }, "strip", z.ZodTypeAny, {
4100
4247
  type: string;
4101
4248
  linkType: string;
4102
4249
  id: string;
@@ -4119,13 +4266,11 @@ export declare const Entry: {
4119
4266
  };
4120
4267
  }>>;
4121
4268
  contentType: z.ZodOptional<z.ZodObject<{
4122
- sys: z.ZodObject<z.extendShape<{
4269
+ sys: z.ZodObject<{
4123
4270
  type: z.ZodString;
4124
- linkType: z.ZodString;
4125
4271
  id: z.ZodString;
4126
- }, {
4127
4272
  linkType: z.ZodString;
4128
- }>, "strip", z.ZodTypeAny, {
4273
+ }, "strip", z.ZodTypeAny, {
4129
4274
  type: string;
4130
4275
  linkType: string;
4131
4276
  id: string;
@@ -4148,6 +4293,7 @@ export declare const Entry: {
4148
4293
  };
4149
4294
  }>>;
4150
4295
  }, "strip", z.ZodTypeAny, {
4296
+ id: string;
4151
4297
  type?: string | undefined;
4152
4298
  createdAt?: string | undefined;
4153
4299
  updatedAt?: string | undefined;
@@ -4174,8 +4320,8 @@ export declare const Entry: {
4174
4320
  id: string;
4175
4321
  };
4176
4322
  } | undefined;
4177
- id: string;
4178
4323
  }, {
4324
+ id: string;
4179
4325
  type?: string | undefined;
4180
4326
  createdAt?: string | undefined;
4181
4327
  updatedAt?: string | undefined;
@@ -4202,18 +4348,15 @@ export declare const Entry: {
4202
4348
  id: string;
4203
4349
  };
4204
4350
  } | undefined;
4205
- id: string;
4206
4351
  }>;
4207
- fields: z.ZodObject<{}, "passthrough", z.ZodTypeAny, {}, {}>;
4352
+ fields: z.ZodObject<{}, z.UnknownKeysParam, z.ZodTypeAny, {}, {}>;
4208
4353
  metadata: z.ZodOptional<z.ZodObject<{
4209
4354
  tags: z.ZodArray<z.ZodObject<{
4210
- sys: z.ZodObject<z.extendShape<{
4355
+ sys: z.ZodObject<{
4211
4356
  type: z.ZodString;
4212
- linkType: z.ZodString;
4213
4357
  id: z.ZodString;
4214
- }, {
4215
4358
  linkType: z.ZodString;
4216
- }>, "strip", z.ZodTypeAny, {
4359
+ }, "strip", z.ZodTypeAny, {
4217
4360
  type: string;
4218
4361
  linkType: string;
4219
4362
  id: string;
@@ -4252,18 +4395,10 @@ export declare const Entry: {
4252
4395
  };
4253
4396
  }[];
4254
4397
  }>>;
4255
- }, Augmentation_1>[k_7]["_input"]; } : never>[k_6]; } : never>;
4398
+ }, keyof Augmentation> & Augmentation)[k_5]; } : never>[k_4]; } : never>;
4256
4399
  _type: {
4257
- metadata?: {
4258
- tags: {
4259
- sys: {
4260
- type: string;
4261
- linkType: string;
4262
- id: string;
4263
- };
4264
- }[];
4265
- } | undefined;
4266
4400
  sys: {
4401
+ id: string;
4267
4402
  type?: string | undefined;
4268
4403
  createdAt?: string | undefined;
4269
4404
  updatedAt?: string | undefined;
@@ -4290,11 +4425,8 @@ export declare const Entry: {
4290
4425
  id: string;
4291
4426
  };
4292
4427
  } | undefined;
4293
- id: string;
4294
4428
  };
4295
4429
  fields: {};
4296
- };
4297
- _output: {
4298
4430
  metadata?: {
4299
4431
  tags: {
4300
4432
  sys: {
@@ -4304,7 +4436,10 @@ export declare const Entry: {
4304
4436
  };
4305
4437
  }[];
4306
4438
  } | undefined;
4439
+ };
4440
+ _output: {
4307
4441
  sys: {
4442
+ id: string;
4308
4443
  type?: string | undefined;
4309
4444
  createdAt?: string | undefined;
4310
4445
  updatedAt?: string | undefined;
@@ -4331,11 +4466,8 @@ export declare const Entry: {
4331
4466
  id: string;
4332
4467
  };
4333
4468
  } | undefined;
4334
- id: string;
4335
4469
  };
4336
4470
  fields: {};
4337
- };
4338
- _input: {
4339
4471
  metadata?: {
4340
4472
  tags: {
4341
4473
  sys: {
@@ -4345,7 +4477,10 @@ export declare const Entry: {
4345
4477
  };
4346
4478
  }[];
4347
4479
  } | undefined;
4480
+ };
4481
+ _input: {
4348
4482
  sys: {
4483
+ id: string;
4349
4484
  type?: string | undefined;
4350
4485
  createdAt?: string | undefined;
4351
4486
  updatedAt?: string | undefined;
@@ -4372,9 +4507,17 @@ export declare const Entry: {
4372
4507
  id: string;
4373
4508
  };
4374
4509
  } | undefined;
4375
- id: string;
4376
4510
  };
4377
4511
  fields: {};
4512
+ metadata?: {
4513
+ tags: {
4514
+ sys: {
4515
+ type: string;
4516
+ linkType: string;
4517
+ id: string;
4518
+ };
4519
+ }[];
4520
+ } | undefined;
4378
4521
  };
4379
4522
  _def: z.ZodObjectDef<{
4380
4523
  sys: z.ZodObject<{
@@ -4385,13 +4528,11 @@ export declare const Entry: {
4385
4528
  locale: z.ZodOptional<z.ZodString>;
4386
4529
  revision: z.ZodOptional<z.ZodNumber>;
4387
4530
  space: z.ZodOptional<z.ZodObject<{
4388
- sys: z.ZodObject<z.extendShape<{
4531
+ sys: z.ZodObject<{
4389
4532
  type: z.ZodString;
4390
- linkType: z.ZodString;
4391
4533
  id: z.ZodString;
4392
- }, {
4393
4534
  linkType: z.ZodString;
4394
- }>, "strip", z.ZodTypeAny, {
4535
+ }, "strip", z.ZodTypeAny, {
4395
4536
  type: string;
4396
4537
  linkType: string;
4397
4538
  id: string;
@@ -4414,13 +4555,11 @@ export declare const Entry: {
4414
4555
  };
4415
4556
  }>>;
4416
4557
  environment: z.ZodOptional<z.ZodObject<{
4417
- sys: z.ZodObject<z.extendShape<{
4558
+ sys: z.ZodObject<{
4418
4559
  type: z.ZodString;
4419
- linkType: z.ZodString;
4420
4560
  id: z.ZodString;
4421
- }, {
4422
4561
  linkType: z.ZodString;
4423
- }>, "strip", z.ZodTypeAny, {
4562
+ }, "strip", z.ZodTypeAny, {
4424
4563
  type: string;
4425
4564
  linkType: string;
4426
4565
  id: string;
@@ -4443,13 +4582,11 @@ export declare const Entry: {
4443
4582
  };
4444
4583
  }>>;
4445
4584
  contentType: z.ZodOptional<z.ZodObject<{
4446
- sys: z.ZodObject<z.extendShape<{
4585
+ sys: z.ZodObject<{
4447
4586
  type: z.ZodString;
4448
- linkType: z.ZodString;
4449
4587
  id: z.ZodString;
4450
- }, {
4451
4588
  linkType: z.ZodString;
4452
- }>, "strip", z.ZodTypeAny, {
4589
+ }, "strip", z.ZodTypeAny, {
4453
4590
  type: string;
4454
4591
  linkType: string;
4455
4592
  id: string;
@@ -4472,6 +4609,7 @@ export declare const Entry: {
4472
4609
  };
4473
4610
  }>>;
4474
4611
  }, "strip", z.ZodTypeAny, {
4612
+ id: string;
4475
4613
  type?: string | undefined;
4476
4614
  createdAt?: string | undefined;
4477
4615
  updatedAt?: string | undefined;
@@ -4498,8 +4636,8 @@ export declare const Entry: {
4498
4636
  id: string;
4499
4637
  };
4500
4638
  } | undefined;
4501
- id: string;
4502
4639
  }, {
4640
+ id: string;
4503
4641
  type?: string | undefined;
4504
4642
  createdAt?: string | undefined;
4505
4643
  updatedAt?: string | undefined;
@@ -4526,18 +4664,15 @@ export declare const Entry: {
4526
4664
  id: string;
4527
4665
  };
4528
4666
  } | undefined;
4529
- id: string;
4530
4667
  }>;
4531
- fields: z.ZodObject<{}, "passthrough", z.ZodTypeAny, {}, {}>;
4668
+ fields: z.ZodObject<{}, z.UnknownKeysParam, z.ZodTypeAny, {}, {}>;
4532
4669
  metadata: z.ZodOptional<z.ZodObject<{
4533
4670
  tags: z.ZodArray<z.ZodObject<{
4534
- sys: z.ZodObject<z.extendShape<{
4671
+ sys: z.ZodObject<{
4535
4672
  type: z.ZodString;
4536
- linkType: z.ZodString;
4537
4673
  id: z.ZodString;
4538
- }, {
4539
4674
  linkType: z.ZodString;
4540
- }>, "strip", z.ZodTypeAny, {
4675
+ }, "strip", z.ZodTypeAny, {
4541
4676
  type: string;
4542
4677
  linkType: string;
4543
4678
  id: string;
@@ -4578,16 +4713,8 @@ export declare const Entry: {
4578
4713
  }>>;
4579
4714
  }, "strip", z.ZodTypeAny>;
4580
4715
  spa: (data: unknown, params?: Partial<z.ParseParams> | undefined) => Promise<z.SafeParseReturnType<{
4581
- metadata?: {
4582
- tags: {
4583
- sys: {
4584
- type: string;
4585
- linkType: string;
4586
- id: string;
4587
- };
4588
- }[];
4589
- } | undefined;
4590
4716
  sys: {
4717
+ id: string;
4591
4718
  type?: string | undefined;
4592
4719
  createdAt?: string | undefined;
4593
4720
  updatedAt?: string | undefined;
@@ -4614,10 +4741,8 @@ export declare const Entry: {
4614
4741
  id: string;
4615
4742
  };
4616
4743
  } | undefined;
4617
- id: string;
4618
4744
  };
4619
4745
  fields: {};
4620
- }, {
4621
4746
  metadata?: {
4622
4747
  tags: {
4623
4748
  sys: {
@@ -4627,7 +4752,9 @@ export declare const Entry: {
4627
4752
  };
4628
4753
  }[];
4629
4754
  } | undefined;
4755
+ }, {
4630
4756
  sys: {
4757
+ id: string;
4631
4758
  type?: string | undefined;
4632
4759
  createdAt?: string | undefined;
4633
4760
  updatedAt?: string | undefined;
@@ -4654,8 +4781,16 @@ export declare const Entry: {
4654
4781
  id: string;
4655
4782
  };
4656
4783
  } | undefined;
4657
- id: string;
4658
4784
  };
4659
4785
  fields: {};
4786
+ metadata?: {
4787
+ tags: {
4788
+ sys: {
4789
+ type: string;
4790
+ linkType: string;
4791
+ id: string;
4792
+ };
4793
+ }[];
4794
+ } | undefined;
4660
4795
  }>>;
4661
4796
  };