strapi-plugin-navigation 3.0.16 → 3.1.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.
Files changed (37) hide show
  1. package/README.md +47 -1
  2. package/dist/_chunks/ca-CSdZD9Oe.js +1 -0
  3. package/dist/_chunks/{ca-Jr1amAtF.mjs → ca-htynOC4E.mjs} +20 -3
  4. package/dist/_chunks/en-BuevNT8U.js +1 -0
  5. package/dist/_chunks/{en-DmeenfQT.mjs → en-DU6wb-rd.mjs} +20 -3
  6. package/dist/_chunks/fr-cFTbGuHW.js +1 -0
  7. package/dist/_chunks/{fr-CZx3EMw8.mjs → fr-v8w2-ufp.mjs} +20 -3
  8. package/dist/admin/index.js +341 -354
  9. package/dist/admin/index.mjs +8743 -8597
  10. package/dist/admin/src/api/client.d.ts +13 -1
  11. package/dist/admin/src/api/validators.d.ts +128 -14
  12. package/dist/admin/src/pages/HomePage/components/NavigationItemForm/utils/form.d.ts +3 -3
  13. package/dist/admin/src/pages/HomePage/hooks/index.d.ts +14 -3
  14. package/dist/admin/src/pages/SettingsPage/components/CustomFieldForm/index.d.ts +1 -1
  15. package/dist/admin/src/pages/SettingsPage/hooks/index.d.ts +43 -1
  16. package/dist/admin/src/schemas/config.d.ts +93 -3
  17. package/dist/admin/src/translations/ca.d.ts +17 -0
  18. package/dist/admin/src/translations/en.d.ts +17 -0
  19. package/dist/admin/src/translations/es.d.ts +17 -0
  20. package/dist/admin/src/translations/fr.d.ts +17 -0
  21. package/dist/admin/src/translations/tr.d.ts +17 -0
  22. package/dist/server/index.js +36 -36
  23. package/dist/server/index.mjs +3331 -3492
  24. package/dist/server/src/config/setup.d.ts +6 -0
  25. package/dist/server/src/controllers/admin.d.ts +875 -2
  26. package/dist/server/src/controllers/client.d.ts +12 -0
  27. package/dist/server/src/controllers/validators.d.ts +2 -2
  28. package/dist/server/src/index.d.ts +885 -0
  29. package/dist/server/src/schemas/config.d.ts +93 -3
  30. package/dist/server/src/schemas/index.d.ts +1296 -2
  31. package/dist/server/src/services/admin/admin.d.ts +1 -0
  32. package/dist/server/src/services/common/common.d.ts +859 -0
  33. package/dist/server/src/services/index.d.ts +884 -0
  34. package/package.json +1 -1
  35. package/dist/_chunks/ca-Gq9Ty_aG.js +0 -1
  36. package/dist/_chunks/en-BP5RWE-N.js +0 -1
  37. package/dist/_chunks/fr-BIJn6QmK.js +0 -1
@@ -1,3 +1,4 @@
1
+ export type { AdminService, ClientService, CommonService, MigrationService } from './services';
1
2
  declare const _default: {
2
3
  bootstrap: (context: {
3
4
  strapi: import("@strapi/types/dist/core").Strapi;
@@ -295,6 +296,7 @@ declare const _default: {
295
296
  delete({ auditLog, documentId }: import("./services/admin/types").DeleteInput): Promise<void>;
296
297
  restart(): Promise<void>;
297
298
  restoreConfig(): Promise<void>;
299
+ refreshNavigationLocale(newLocale?: string | undefined): Promise<void>;
298
300
  updateConfig({ config: newConfig }: import("./services/admin/types").UpdateConfigInput): Promise<void>;
299
301
  fillFromOtherLocale({ auditLog, source, target, documentId, }: import("./services/admin/types").FillFromOtherLocaleInput): Promise<{
300
302
  name: string;
@@ -360,6 +362,8 @@ declare const _default: {
360
362
  name: string;
361
363
  label: string;
362
364
  options?: string[] | undefined;
365
+ description?: string | undefined;
366
+ placeholder?: string | undefined;
363
367
  required?: boolean | undefined;
364
368
  enabled?: boolean | undefined;
365
369
  multi?: false | undefined;
@@ -368,6 +372,8 @@ declare const _default: {
368
372
  name: string;
369
373
  label: string;
370
374
  options?: string[] | undefined;
375
+ description?: string | undefined;
376
+ placeholder?: string | undefined;
371
377
  required?: boolean | undefined;
372
378
  enabled?: boolean | undefined;
373
379
  multi?: false | undefined;
@@ -377,6 +383,8 @@ declare const _default: {
377
383
  name: string;
378
384
  label: string;
379
385
  multi: boolean;
386
+ description?: string | undefined;
387
+ placeholder?: string | undefined;
380
388
  required?: boolean | undefined;
381
389
  enabled?: boolean | undefined;
382
390
  })[];
@@ -404,6 +412,8 @@ declare const _default: {
404
412
  name: string;
405
413
  label: string;
406
414
  options?: string[] | undefined;
415
+ description?: string | undefined;
416
+ placeholder?: string | undefined;
407
417
  required?: boolean | undefined;
408
418
  enabled?: boolean | undefined;
409
419
  multi?: false | undefined;
@@ -412,6 +422,8 @@ declare const _default: {
412
422
  name: string;
413
423
  label: string;
414
424
  options?: string[] | undefined;
425
+ description?: string | undefined;
426
+ placeholder?: string | undefined;
415
427
  required?: boolean | undefined;
416
428
  enabled?: boolean | undefined;
417
429
  multi?: false | undefined;
@@ -421,6 +433,8 @@ declare const _default: {
421
433
  name: string;
422
434
  label: string;
423
435
  multi: boolean;
436
+ description?: string | undefined;
437
+ placeholder?: string | undefined;
424
438
  required?: boolean | undefined;
425
439
  enabled?: boolean | undefined;
426
440
  })[];
@@ -433,6 +447,865 @@ declare const _default: {
433
447
  defaultLocale: string;
434
448
  restLocale: string[];
435
449
  }>;
450
+ updateConfigSchema: (modifier: (base: import("zod").ZodObject<{
451
+ additionalFields: import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodLiteral<"audience">, import("zod").ZodDiscriminatedUnion<"type", [import("zod").ZodObject<{
452
+ name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
453
+ label: import("zod").ZodString;
454
+ description: import("zod").ZodOptional<import("zod").ZodString>;
455
+ placeholder: import("zod").ZodOptional<import("zod").ZodString>;
456
+ required: import("zod").ZodOptional<import("zod").ZodBoolean>;
457
+ enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
458
+ } & {
459
+ type: import("zod").ZodEnum<["boolean", "string"]>;
460
+ multi: import("zod").ZodOptional<import("zod").ZodLiteral<false>>;
461
+ options: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
462
+ }, "strip", import("zod").ZodTypeAny, {
463
+ type: "string" | "boolean";
464
+ name: string;
465
+ label: string;
466
+ options?: string[] | undefined;
467
+ description?: string | undefined;
468
+ placeholder?: string | undefined;
469
+ required?: boolean | undefined;
470
+ enabled?: boolean | undefined;
471
+ multi?: false | undefined;
472
+ }, {
473
+ type: "string" | "boolean";
474
+ name: string;
475
+ label: string;
476
+ options?: string[] | undefined;
477
+ description?: string | undefined;
478
+ placeholder?: string | undefined;
479
+ required?: boolean | undefined;
480
+ enabled?: boolean | undefined;
481
+ multi?: false | undefined;
482
+ }>, import("zod").ZodObject<{
483
+ name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
484
+ label: import("zod").ZodString;
485
+ description: import("zod").ZodOptional<import("zod").ZodString>;
486
+ placeholder: import("zod").ZodOptional<import("zod").ZodString>;
487
+ required: import("zod").ZodOptional<import("zod").ZodBoolean>;
488
+ enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
489
+ } & {
490
+ type: import("zod").ZodLiteral<"media">;
491
+ multi: import("zod").ZodOptional<import("zod").ZodLiteral<false>>;
492
+ options: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
493
+ }, "strip", import("zod").ZodTypeAny, {
494
+ type: "media";
495
+ name: string;
496
+ label: string;
497
+ options?: string[] | undefined;
498
+ description?: string | undefined;
499
+ placeholder?: string | undefined;
500
+ required?: boolean | undefined;
501
+ enabled?: boolean | undefined;
502
+ multi?: false | undefined;
503
+ }, {
504
+ type: "media";
505
+ name: string;
506
+ label: string;
507
+ options?: string[] | undefined;
508
+ description?: string | undefined;
509
+ placeholder?: string | undefined;
510
+ required?: boolean | undefined;
511
+ enabled?: boolean | undefined;
512
+ multi?: false | undefined;
513
+ }>, import("zod").ZodObject<{
514
+ name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
515
+ label: import("zod").ZodString;
516
+ description: import("zod").ZodOptional<import("zod").ZodString>;
517
+ placeholder: import("zod").ZodOptional<import("zod").ZodString>;
518
+ required: import("zod").ZodOptional<import("zod").ZodBoolean>;
519
+ enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
520
+ } & {
521
+ type: import("zod").ZodLiteral<"select">;
522
+ multi: import("zod").ZodBoolean;
523
+ options: import("zod").ZodArray<import("zod").ZodString, "many">;
524
+ }, "strip", import("zod").ZodTypeAny, {
525
+ options: string[];
526
+ type: "select";
527
+ name: string;
528
+ label: string;
529
+ multi: boolean;
530
+ description?: string | undefined;
531
+ placeholder?: string | undefined;
532
+ required?: boolean | undefined;
533
+ enabled?: boolean | undefined;
534
+ }, {
535
+ options: string[];
536
+ type: "select";
537
+ name: string;
538
+ label: string;
539
+ multi: boolean;
540
+ description?: string | undefined;
541
+ placeholder?: string | undefined;
542
+ required?: boolean | undefined;
543
+ enabled?: boolean | undefined;
544
+ }>]>]>, "many">;
545
+ allowedLevels: import("zod").ZodNumber;
546
+ contentTypes: import("zod").ZodArray<import("zod").ZodString, "many">;
547
+ contentTypesNameFields: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">>;
548
+ contentTypesPopulate: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">>;
549
+ gql: import("zod").ZodObject<{
550
+ navigationItemRelated: import("zod").ZodArray<import("zod").ZodString, "many">;
551
+ }, "strip", import("zod").ZodTypeAny, {
552
+ navigationItemRelated: string[];
553
+ }, {
554
+ navigationItemRelated: string[];
555
+ }>;
556
+ pathDefaultFields: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodAny>;
557
+ cascadeMenuAttached: import("zod").ZodBoolean;
558
+ preferCustomContentTypes: import("zod").ZodBoolean;
559
+ isCacheEnabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
560
+ }, "strip", import("zod").ZodTypeAny, {
561
+ additionalFields: ("audience" | {
562
+ type: "string" | "boolean";
563
+ name: string;
564
+ label: string;
565
+ options?: string[] | undefined;
566
+ description?: string | undefined;
567
+ placeholder?: string | undefined;
568
+ required?: boolean | undefined;
569
+ enabled?: boolean | undefined;
570
+ multi?: false | undefined;
571
+ } | {
572
+ type: "media";
573
+ name: string;
574
+ label: string;
575
+ options?: string[] | undefined;
576
+ description?: string | undefined;
577
+ placeholder?: string | undefined;
578
+ required?: boolean | undefined;
579
+ enabled?: boolean | undefined;
580
+ multi?: false | undefined;
581
+ } | {
582
+ options: string[];
583
+ type: "select";
584
+ name: string;
585
+ label: string;
586
+ multi: boolean;
587
+ description?: string | undefined;
588
+ placeholder?: string | undefined;
589
+ required?: boolean | undefined;
590
+ enabled?: boolean | undefined;
591
+ })[];
592
+ allowedLevels: number;
593
+ contentTypes: string[];
594
+ contentTypesNameFields: Record<string, string[]>;
595
+ contentTypesPopulate: Record<string, string[]>;
596
+ gql: {
597
+ navigationItemRelated: string[];
598
+ };
599
+ pathDefaultFields: Record<string, any>;
600
+ cascadeMenuAttached: boolean;
601
+ preferCustomContentTypes: boolean;
602
+ isCacheEnabled?: boolean | undefined;
603
+ }, {
604
+ additionalFields: ("audience" | {
605
+ type: "string" | "boolean";
606
+ name: string;
607
+ label: string;
608
+ options?: string[] | undefined;
609
+ description?: string | undefined;
610
+ placeholder?: string | undefined;
611
+ required?: boolean | undefined;
612
+ enabled?: boolean | undefined;
613
+ multi?: false | undefined;
614
+ } | {
615
+ type: "media";
616
+ name: string;
617
+ label: string;
618
+ options?: string[] | undefined;
619
+ description?: string | undefined;
620
+ placeholder?: string | undefined;
621
+ required?: boolean | undefined;
622
+ enabled?: boolean | undefined;
623
+ multi?: false | undefined;
624
+ } | {
625
+ options: string[];
626
+ type: "select";
627
+ name: string;
628
+ label: string;
629
+ multi: boolean;
630
+ description?: string | undefined;
631
+ placeholder?: string | undefined;
632
+ required?: boolean | undefined;
633
+ enabled?: boolean | undefined;
634
+ })[];
635
+ allowedLevels: number;
636
+ contentTypes: string[];
637
+ contentTypesNameFields: Record<string, string[]>;
638
+ contentTypesPopulate: Record<string, string[]>;
639
+ gql: {
640
+ navigationItemRelated: string[];
641
+ };
642
+ pathDefaultFields: Record<string, any>;
643
+ cascadeMenuAttached: boolean;
644
+ preferCustomContentTypes: boolean;
645
+ isCacheEnabled?: boolean | undefined;
646
+ }>) => import("zod").ZodObject<{
647
+ additionalFields: import("zod").ZodArray<import("zod").ZodUnion<[import("zod").ZodLiteral<"audience">, import("zod").ZodDiscriminatedUnion<"type", [import("zod").ZodObject<{
648
+ name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
649
+ label: import("zod").ZodString;
650
+ description: import("zod").ZodOptional<import("zod").ZodString>;
651
+ placeholder: import("zod").ZodOptional<import("zod").ZodString>;
652
+ required: import("zod").ZodOptional<import("zod").ZodBoolean>;
653
+ enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
654
+ } & {
655
+ type: import("zod").ZodEnum<["boolean", "string"]>;
656
+ multi: import("zod").ZodOptional<import("zod").ZodLiteral<false>>;
657
+ options: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
658
+ }, "strip", import("zod").ZodTypeAny, {
659
+ type: "string" | "boolean";
660
+ name: string;
661
+ label: string;
662
+ options?: string[] | undefined;
663
+ description?: string | undefined;
664
+ placeholder?: string | undefined;
665
+ required?: boolean | undefined;
666
+ enabled?: boolean | undefined;
667
+ multi?: false | undefined;
668
+ }, {
669
+ type: "string" | "boolean";
670
+ name: string;
671
+ label: string;
672
+ options?: string[] | undefined;
673
+ description?: string | undefined;
674
+ placeholder?: string | undefined;
675
+ required?: boolean | undefined;
676
+ enabled?: boolean | undefined;
677
+ multi?: false | undefined;
678
+ }>, import("zod").ZodObject<{
679
+ name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
680
+ label: import("zod").ZodString;
681
+ description: import("zod").ZodOptional<import("zod").ZodString>;
682
+ placeholder: import("zod").ZodOptional<import("zod").ZodString>;
683
+ required: import("zod").ZodOptional<import("zod").ZodBoolean>;
684
+ enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
685
+ } & {
686
+ type: import("zod").ZodLiteral<"media">;
687
+ multi: import("zod").ZodOptional<import("zod").ZodLiteral<false>>;
688
+ options: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
689
+ }, "strip", import("zod").ZodTypeAny, {
690
+ type: "media";
691
+ name: string;
692
+ label: string;
693
+ options?: string[] | undefined;
694
+ description?: string | undefined;
695
+ placeholder?: string | undefined;
696
+ required?: boolean | undefined;
697
+ enabled?: boolean | undefined;
698
+ multi?: false | undefined;
699
+ }, {
700
+ type: "media";
701
+ name: string;
702
+ label: string;
703
+ options?: string[] | undefined;
704
+ description?: string | undefined;
705
+ placeholder?: string | undefined;
706
+ required?: boolean | undefined;
707
+ enabled?: boolean | undefined;
708
+ multi?: false | undefined;
709
+ }>, import("zod").ZodObject<{
710
+ name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
711
+ label: import("zod").ZodString;
712
+ description: import("zod").ZodOptional<import("zod").ZodString>;
713
+ placeholder: import("zod").ZodOptional<import("zod").ZodString>;
714
+ required: import("zod").ZodOptional<import("zod").ZodBoolean>;
715
+ enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
716
+ } & {
717
+ type: import("zod").ZodLiteral<"select">;
718
+ multi: import("zod").ZodBoolean;
719
+ options: import("zod").ZodArray<import("zod").ZodString, "many">;
720
+ }, "strip", import("zod").ZodTypeAny, {
721
+ options: string[];
722
+ type: "select";
723
+ name: string;
724
+ label: string;
725
+ multi: boolean;
726
+ description?: string | undefined;
727
+ placeholder?: string | undefined;
728
+ required?: boolean | undefined;
729
+ enabled?: boolean | undefined;
730
+ }, {
731
+ options: string[];
732
+ type: "select";
733
+ name: string;
734
+ label: string;
735
+ multi: boolean;
736
+ description?: string | undefined;
737
+ placeholder?: string | undefined;
738
+ required?: boolean | undefined;
739
+ enabled?: boolean | undefined;
740
+ }>]>]>, "many">;
741
+ allowedLevels: import("zod").ZodNumber;
742
+ contentTypes: import("zod").ZodArray<import("zod").ZodString, "many">;
743
+ contentTypesNameFields: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">>;
744
+ contentTypesPopulate: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">>;
745
+ gql: import("zod").ZodObject<{
746
+ navigationItemRelated: import("zod").ZodArray<import("zod").ZodString, "many">;
747
+ }, "strip", import("zod").ZodTypeAny, {
748
+ navigationItemRelated: string[];
749
+ }, {
750
+ navigationItemRelated: string[];
751
+ }>;
752
+ pathDefaultFields: import("zod").ZodRecord<import("zod").ZodString, import("zod").ZodAny>;
753
+ cascadeMenuAttached: import("zod").ZodBoolean;
754
+ preferCustomContentTypes: import("zod").ZodBoolean;
755
+ isCacheEnabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
756
+ }, "strip", import("zod").ZodTypeAny, {
757
+ additionalFields: ("audience" | {
758
+ type: "string" | "boolean";
759
+ name: string;
760
+ label: string;
761
+ options?: string[] | undefined;
762
+ description?: string | undefined;
763
+ placeholder?: string | undefined;
764
+ required?: boolean | undefined;
765
+ enabled?: boolean | undefined;
766
+ multi?: false | undefined;
767
+ } | {
768
+ type: "media";
769
+ name: string;
770
+ label: string;
771
+ options?: string[] | undefined;
772
+ description?: string | undefined;
773
+ placeholder?: string | undefined;
774
+ required?: boolean | undefined;
775
+ enabled?: boolean | undefined;
776
+ multi?: false | undefined;
777
+ } | {
778
+ options: string[];
779
+ type: "select";
780
+ name: string;
781
+ label: string;
782
+ multi: boolean;
783
+ description?: string | undefined;
784
+ placeholder?: string | undefined;
785
+ required?: boolean | undefined;
786
+ enabled?: boolean | undefined;
787
+ })[];
788
+ allowedLevels: number;
789
+ contentTypes: string[];
790
+ contentTypesNameFields: Record<string, string[]>;
791
+ contentTypesPopulate: Record<string, string[]>;
792
+ gql: {
793
+ navigationItemRelated: string[];
794
+ };
795
+ pathDefaultFields: Record<string, any>;
796
+ cascadeMenuAttached: boolean;
797
+ preferCustomContentTypes: boolean;
798
+ isCacheEnabled?: boolean | undefined;
799
+ }, {
800
+ additionalFields: ("audience" | {
801
+ type: "string" | "boolean";
802
+ name: string;
803
+ label: string;
804
+ options?: string[] | undefined;
805
+ description?: string | undefined;
806
+ placeholder?: string | undefined;
807
+ required?: boolean | undefined;
808
+ enabled?: boolean | undefined;
809
+ multi?: false | undefined;
810
+ } | {
811
+ type: "media";
812
+ name: string;
813
+ label: string;
814
+ options?: string[] | undefined;
815
+ description?: string | undefined;
816
+ placeholder?: string | undefined;
817
+ required?: boolean | undefined;
818
+ enabled?: boolean | undefined;
819
+ multi?: false | undefined;
820
+ } | {
821
+ options: string[];
822
+ type: "select";
823
+ name: string;
824
+ label: string;
825
+ multi: boolean;
826
+ description?: string | undefined;
827
+ placeholder?: string | undefined;
828
+ required?: boolean | undefined;
829
+ enabled?: boolean | undefined;
830
+ })[];
831
+ allowedLevels: number;
832
+ contentTypes: string[];
833
+ contentTypesNameFields: Record<string, string[]>;
834
+ contentTypesPopulate: Record<string, string[]>;
835
+ gql: {
836
+ navigationItemRelated: string[];
837
+ };
838
+ pathDefaultFields: Record<string, any>;
839
+ cascadeMenuAttached: boolean;
840
+ preferCustomContentTypes: boolean;
841
+ isCacheEnabled?: boolean | undefined;
842
+ }>) => void;
843
+ updateCreateNavigationSchema: (modifier: (base: import("zod").ZodObject<Omit<{
844
+ id: import("zod").ZodNumber;
845
+ documentId: import("zod").ZodString;
846
+ name: import("zod").ZodString;
847
+ slug: import("zod").ZodString;
848
+ locale: import("zod").ZodString;
849
+ visible: import("zod").ZodBoolean;
850
+ items: import("zod").ZodArray<import("zod").ZodType<import("./schemas").NavigationItemDBSchema, import("zod").ZodTypeDef, import("./schemas").NavigationItemDBSchema>, "many"> | import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodType<import("./schemas").NavigationItemDBSchema, import("zod").ZodTypeDef, import("./schemas").NavigationItemDBSchema>, "many">>;
851
+ }, "id" | "documentId" | "slug" | "locale" | "items"> & {
852
+ documentId: import("zod").ZodOptional<import("zod").ZodString>;
853
+ id: import("zod").ZodOptional<import("zod").ZodUndefined>;
854
+ }, "strip", import("zod").ZodTypeAny, {
855
+ name: string;
856
+ visible: boolean;
857
+ id?: undefined;
858
+ documentId?: string | undefined;
859
+ }, {
860
+ name: string;
861
+ visible: boolean;
862
+ id?: undefined;
863
+ documentId?: string | undefined;
864
+ }>) => import("zod").ZodObject<Omit<{
865
+ id: import("zod").ZodNumber;
866
+ documentId: import("zod").ZodString;
867
+ name: import("zod").ZodString;
868
+ slug: import("zod").ZodString;
869
+ locale: import("zod").ZodString;
870
+ visible: import("zod").ZodBoolean;
871
+ items: import("zod").ZodArray<import("zod").ZodType<import("./schemas").NavigationItemDBSchema, import("zod").ZodTypeDef, import("./schemas").NavigationItemDBSchema>, "many"> | import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodType<import("./schemas").NavigationItemDBSchema, import("zod").ZodTypeDef, import("./schemas").NavigationItemDBSchema>, "many">>;
872
+ }, "id" | "documentId" | "slug" | "locale" | "items"> & {
873
+ documentId: import("zod").ZodOptional<import("zod").ZodString>;
874
+ id: import("zod").ZodOptional<import("zod").ZodUndefined>;
875
+ }, "strip", import("zod").ZodTypeAny, {
876
+ name: string;
877
+ visible: boolean;
878
+ id?: undefined;
879
+ documentId?: string | undefined;
880
+ }, {
881
+ name: string;
882
+ visible: boolean;
883
+ id?: undefined;
884
+ documentId?: string | undefined;
885
+ }>) => void;
886
+ updateNavigationItemAdditionalField: (modifier: (base: import("zod").ZodUnion<[import("zod").ZodLiteral<"audience">, import("zod").ZodDiscriminatedUnion<"type", [import("zod").ZodObject<{
887
+ name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
888
+ label: import("zod").ZodString;
889
+ description: import("zod").ZodOptional<import("zod").ZodString>;
890
+ placeholder: import("zod").ZodOptional<import("zod").ZodString>;
891
+ required: import("zod").ZodOptional<import("zod").ZodBoolean>;
892
+ enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
893
+ } & {
894
+ type: import("zod").ZodEnum<["boolean", "string"]>;
895
+ multi: import("zod").ZodOptional<import("zod").ZodLiteral<false>>;
896
+ options: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
897
+ }, "strip", import("zod").ZodTypeAny, {
898
+ type: "string" | "boolean";
899
+ name: string;
900
+ label: string;
901
+ options?: string[] | undefined;
902
+ description?: string | undefined;
903
+ placeholder?: string | undefined;
904
+ required?: boolean | undefined;
905
+ enabled?: boolean | undefined;
906
+ multi?: false | undefined;
907
+ }, {
908
+ type: "string" | "boolean";
909
+ name: string;
910
+ label: string;
911
+ options?: string[] | undefined;
912
+ description?: string | undefined;
913
+ placeholder?: string | undefined;
914
+ required?: boolean | undefined;
915
+ enabled?: boolean | undefined;
916
+ multi?: false | undefined;
917
+ }>, import("zod").ZodObject<{
918
+ name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
919
+ label: import("zod").ZodString;
920
+ description: import("zod").ZodOptional<import("zod").ZodString>;
921
+ placeholder: import("zod").ZodOptional<import("zod").ZodString>;
922
+ required: import("zod").ZodOptional<import("zod").ZodBoolean>;
923
+ enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
924
+ } & {
925
+ type: import("zod").ZodLiteral<"media">;
926
+ multi: import("zod").ZodOptional<import("zod").ZodLiteral<false>>;
927
+ options: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
928
+ }, "strip", import("zod").ZodTypeAny, {
929
+ type: "media";
930
+ name: string;
931
+ label: string;
932
+ options?: string[] | undefined;
933
+ description?: string | undefined;
934
+ placeholder?: string | undefined;
935
+ required?: boolean | undefined;
936
+ enabled?: boolean | undefined;
937
+ multi?: false | undefined;
938
+ }, {
939
+ type: "media";
940
+ name: string;
941
+ label: string;
942
+ options?: string[] | undefined;
943
+ description?: string | undefined;
944
+ placeholder?: string | undefined;
945
+ required?: boolean | undefined;
946
+ enabled?: boolean | undefined;
947
+ multi?: false | undefined;
948
+ }>, import("zod").ZodObject<{
949
+ name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
950
+ label: import("zod").ZodString;
951
+ description: import("zod").ZodOptional<import("zod").ZodString>;
952
+ placeholder: import("zod").ZodOptional<import("zod").ZodString>;
953
+ required: import("zod").ZodOptional<import("zod").ZodBoolean>;
954
+ enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
955
+ } & {
956
+ type: import("zod").ZodLiteral<"select">;
957
+ multi: import("zod").ZodBoolean;
958
+ options: import("zod").ZodArray<import("zod").ZodString, "many">;
959
+ }, "strip", import("zod").ZodTypeAny, {
960
+ options: string[];
961
+ type: "select";
962
+ name: string;
963
+ label: string;
964
+ multi: boolean;
965
+ description?: string | undefined;
966
+ placeholder?: string | undefined;
967
+ required?: boolean | undefined;
968
+ enabled?: boolean | undefined;
969
+ }, {
970
+ options: string[];
971
+ type: "select";
972
+ name: string;
973
+ label: string;
974
+ multi: boolean;
975
+ description?: string | undefined;
976
+ placeholder?: string | undefined;
977
+ required?: boolean | undefined;
978
+ enabled?: boolean | undefined;
979
+ }>]>]>) => import("zod").ZodUnion<[import("zod").ZodLiteral<"audience">, import("zod").ZodDiscriminatedUnion<"type", [import("zod").ZodObject<{
980
+ name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
981
+ label: import("zod").ZodString;
982
+ description: import("zod").ZodOptional<import("zod").ZodString>;
983
+ placeholder: import("zod").ZodOptional<import("zod").ZodString>;
984
+ required: import("zod").ZodOptional<import("zod").ZodBoolean>;
985
+ enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
986
+ } & {
987
+ type: import("zod").ZodEnum<["boolean", "string"]>;
988
+ multi: import("zod").ZodOptional<import("zod").ZodLiteral<false>>;
989
+ options: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
990
+ }, "strip", import("zod").ZodTypeAny, {
991
+ type: "string" | "boolean";
992
+ name: string;
993
+ label: string;
994
+ options?: string[] | undefined;
995
+ description?: string | undefined;
996
+ placeholder?: string | undefined;
997
+ required?: boolean | undefined;
998
+ enabled?: boolean | undefined;
999
+ multi?: false | undefined;
1000
+ }, {
1001
+ type: "string" | "boolean";
1002
+ name: string;
1003
+ label: string;
1004
+ options?: string[] | undefined;
1005
+ description?: string | undefined;
1006
+ placeholder?: string | undefined;
1007
+ required?: boolean | undefined;
1008
+ enabled?: boolean | undefined;
1009
+ multi?: false | undefined;
1010
+ }>, import("zod").ZodObject<{
1011
+ name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
1012
+ label: import("zod").ZodString;
1013
+ description: import("zod").ZodOptional<import("zod").ZodString>;
1014
+ placeholder: import("zod").ZodOptional<import("zod").ZodString>;
1015
+ required: import("zod").ZodOptional<import("zod").ZodBoolean>;
1016
+ enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
1017
+ } & {
1018
+ type: import("zod").ZodLiteral<"media">;
1019
+ multi: import("zod").ZodOptional<import("zod").ZodLiteral<false>>;
1020
+ options: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
1021
+ }, "strip", import("zod").ZodTypeAny, {
1022
+ type: "media";
1023
+ name: string;
1024
+ label: string;
1025
+ options?: string[] | undefined;
1026
+ description?: string | undefined;
1027
+ placeholder?: string | undefined;
1028
+ required?: boolean | undefined;
1029
+ enabled?: boolean | undefined;
1030
+ multi?: false | undefined;
1031
+ }, {
1032
+ type: "media";
1033
+ name: string;
1034
+ label: string;
1035
+ options?: string[] | undefined;
1036
+ description?: string | undefined;
1037
+ placeholder?: string | undefined;
1038
+ required?: boolean | undefined;
1039
+ enabled?: boolean | undefined;
1040
+ multi?: false | undefined;
1041
+ }>, import("zod").ZodObject<{
1042
+ name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
1043
+ label: import("zod").ZodString;
1044
+ description: import("zod").ZodOptional<import("zod").ZodString>;
1045
+ placeholder: import("zod").ZodOptional<import("zod").ZodString>;
1046
+ required: import("zod").ZodOptional<import("zod").ZodBoolean>;
1047
+ enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
1048
+ } & {
1049
+ type: import("zod").ZodLiteral<"select">;
1050
+ multi: import("zod").ZodBoolean;
1051
+ options: import("zod").ZodArray<import("zod").ZodString, "many">;
1052
+ }, "strip", import("zod").ZodTypeAny, {
1053
+ options: string[];
1054
+ type: "select";
1055
+ name: string;
1056
+ label: string;
1057
+ multi: boolean;
1058
+ description?: string | undefined;
1059
+ placeholder?: string | undefined;
1060
+ required?: boolean | undefined;
1061
+ enabled?: boolean | undefined;
1062
+ }, {
1063
+ options: string[];
1064
+ type: "select";
1065
+ name: string;
1066
+ label: string;
1067
+ multi: boolean;
1068
+ description?: string | undefined;
1069
+ placeholder?: string | undefined;
1070
+ required?: boolean | undefined;
1071
+ enabled?: boolean | undefined;
1072
+ }>]>]>) => void;
1073
+ updateNavigationItemCustomField: (modifier: (base: import("zod").ZodDiscriminatedUnion<"type", [import("zod").ZodObject<{
1074
+ name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
1075
+ label: import("zod").ZodString;
1076
+ description: import("zod").ZodOptional<import("zod").ZodString>;
1077
+ placeholder: import("zod").ZodOptional<import("zod").ZodString>;
1078
+ required: import("zod").ZodOptional<import("zod").ZodBoolean>;
1079
+ enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
1080
+ } & {
1081
+ type: import("zod").ZodEnum<["boolean", "string"]>;
1082
+ multi: import("zod").ZodOptional<import("zod").ZodLiteral<false>>;
1083
+ options: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
1084
+ }, "strip", import("zod").ZodTypeAny, {
1085
+ type: "string" | "boolean";
1086
+ name: string;
1087
+ label: string;
1088
+ options?: string[] | undefined;
1089
+ description?: string | undefined;
1090
+ placeholder?: string | undefined;
1091
+ required?: boolean | undefined;
1092
+ enabled?: boolean | undefined;
1093
+ multi?: false | undefined;
1094
+ }, {
1095
+ type: "string" | "boolean";
1096
+ name: string;
1097
+ label: string;
1098
+ options?: string[] | undefined;
1099
+ description?: string | undefined;
1100
+ placeholder?: string | undefined;
1101
+ required?: boolean | undefined;
1102
+ enabled?: boolean | undefined;
1103
+ multi?: false | undefined;
1104
+ }>, import("zod").ZodObject<{
1105
+ name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
1106
+ label: import("zod").ZodString;
1107
+ description: import("zod").ZodOptional<import("zod").ZodString>;
1108
+ placeholder: import("zod").ZodOptional<import("zod").ZodString>;
1109
+ required: import("zod").ZodOptional<import("zod").ZodBoolean>;
1110
+ enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
1111
+ } & {
1112
+ type: import("zod").ZodLiteral<"media">;
1113
+ multi: import("zod").ZodOptional<import("zod").ZodLiteral<false>>;
1114
+ options: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
1115
+ }, "strip", import("zod").ZodTypeAny, {
1116
+ type: "media";
1117
+ name: string;
1118
+ label: string;
1119
+ options?: string[] | undefined;
1120
+ description?: string | undefined;
1121
+ placeholder?: string | undefined;
1122
+ required?: boolean | undefined;
1123
+ enabled?: boolean | undefined;
1124
+ multi?: false | undefined;
1125
+ }, {
1126
+ type: "media";
1127
+ name: string;
1128
+ label: string;
1129
+ options?: string[] | undefined;
1130
+ description?: string | undefined;
1131
+ placeholder?: string | undefined;
1132
+ required?: boolean | undefined;
1133
+ enabled?: boolean | undefined;
1134
+ multi?: false | undefined;
1135
+ }>, import("zod").ZodObject<{
1136
+ name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
1137
+ label: import("zod").ZodString;
1138
+ description: import("zod").ZodOptional<import("zod").ZodString>;
1139
+ placeholder: import("zod").ZodOptional<import("zod").ZodString>;
1140
+ required: import("zod").ZodOptional<import("zod").ZodBoolean>;
1141
+ enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
1142
+ } & {
1143
+ type: import("zod").ZodLiteral<"select">;
1144
+ multi: import("zod").ZodBoolean;
1145
+ options: import("zod").ZodArray<import("zod").ZodString, "many">;
1146
+ }, "strip", import("zod").ZodTypeAny, {
1147
+ options: string[];
1148
+ type: "select";
1149
+ name: string;
1150
+ label: string;
1151
+ multi: boolean;
1152
+ description?: string | undefined;
1153
+ placeholder?: string | undefined;
1154
+ required?: boolean | undefined;
1155
+ enabled?: boolean | undefined;
1156
+ }, {
1157
+ options: string[];
1158
+ type: "select";
1159
+ name: string;
1160
+ label: string;
1161
+ multi: boolean;
1162
+ description?: string | undefined;
1163
+ placeholder?: string | undefined;
1164
+ required?: boolean | undefined;
1165
+ enabled?: boolean | undefined;
1166
+ }>]>) => import("zod").ZodDiscriminatedUnion<"type", [import("zod").ZodObject<{
1167
+ name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
1168
+ label: import("zod").ZodString;
1169
+ description: import("zod").ZodOptional<import("zod").ZodString>;
1170
+ placeholder: import("zod").ZodOptional<import("zod").ZodString>;
1171
+ required: import("zod").ZodOptional<import("zod").ZodBoolean>;
1172
+ enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
1173
+ } & {
1174
+ type: import("zod").ZodEnum<["boolean", "string"]>;
1175
+ multi: import("zod").ZodOptional<import("zod").ZodLiteral<false>>;
1176
+ options: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
1177
+ }, "strip", import("zod").ZodTypeAny, {
1178
+ type: "string" | "boolean";
1179
+ name: string;
1180
+ label: string;
1181
+ options?: string[] | undefined;
1182
+ description?: string | undefined;
1183
+ placeholder?: string | undefined;
1184
+ required?: boolean | undefined;
1185
+ enabled?: boolean | undefined;
1186
+ multi?: false | undefined;
1187
+ }, {
1188
+ type: "string" | "boolean";
1189
+ name: string;
1190
+ label: string;
1191
+ options?: string[] | undefined;
1192
+ description?: string | undefined;
1193
+ placeholder?: string | undefined;
1194
+ required?: boolean | undefined;
1195
+ enabled?: boolean | undefined;
1196
+ multi?: false | undefined;
1197
+ }>, import("zod").ZodObject<{
1198
+ name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
1199
+ label: import("zod").ZodString;
1200
+ description: import("zod").ZodOptional<import("zod").ZodString>;
1201
+ placeholder: import("zod").ZodOptional<import("zod").ZodString>;
1202
+ required: import("zod").ZodOptional<import("zod").ZodBoolean>;
1203
+ enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
1204
+ } & {
1205
+ type: import("zod").ZodLiteral<"media">;
1206
+ multi: import("zod").ZodOptional<import("zod").ZodLiteral<false>>;
1207
+ options: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
1208
+ }, "strip", import("zod").ZodTypeAny, {
1209
+ type: "media";
1210
+ name: string;
1211
+ label: string;
1212
+ options?: string[] | undefined;
1213
+ description?: string | undefined;
1214
+ placeholder?: string | undefined;
1215
+ required?: boolean | undefined;
1216
+ enabled?: boolean | undefined;
1217
+ multi?: false | undefined;
1218
+ }, {
1219
+ type: "media";
1220
+ name: string;
1221
+ label: string;
1222
+ options?: string[] | undefined;
1223
+ description?: string | undefined;
1224
+ placeholder?: string | undefined;
1225
+ required?: boolean | undefined;
1226
+ enabled?: boolean | undefined;
1227
+ multi?: false | undefined;
1228
+ }>, import("zod").ZodObject<{
1229
+ name: import("zod").ZodEffects<import("zod").ZodString, string, string>;
1230
+ label: import("zod").ZodString;
1231
+ description: import("zod").ZodOptional<import("zod").ZodString>;
1232
+ placeholder: import("zod").ZodOptional<import("zod").ZodString>;
1233
+ required: import("zod").ZodOptional<import("zod").ZodBoolean>;
1234
+ enabled: import("zod").ZodOptional<import("zod").ZodBoolean>;
1235
+ } & {
1236
+ type: import("zod").ZodLiteral<"select">;
1237
+ multi: import("zod").ZodBoolean;
1238
+ options: import("zod").ZodArray<import("zod").ZodString, "many">;
1239
+ }, "strip", import("zod").ZodTypeAny, {
1240
+ options: string[];
1241
+ type: "select";
1242
+ name: string;
1243
+ label: string;
1244
+ multi: boolean;
1245
+ description?: string | undefined;
1246
+ placeholder?: string | undefined;
1247
+ required?: boolean | undefined;
1248
+ enabled?: boolean | undefined;
1249
+ }, {
1250
+ options: string[];
1251
+ type: "select";
1252
+ name: string;
1253
+ label: string;
1254
+ multi: boolean;
1255
+ description?: string | undefined;
1256
+ placeholder?: string | undefined;
1257
+ required?: boolean | undefined;
1258
+ enabled?: boolean | undefined;
1259
+ }>]>) => void;
1260
+ updateUpdateNavigationSchema: (modifier: (base: import("zod").ZodObject<{
1261
+ name: import("zod").ZodOptional<import("zod").ZodString>;
1262
+ id: import("zod").ZodNumber;
1263
+ documentId: import("zod").ZodString;
1264
+ slug: import("zod").ZodOptional<import("zod").ZodString>;
1265
+ locale: import("zod").ZodOptional<import("zod").ZodString>;
1266
+ visible: import("zod").ZodOptional<import("zod").ZodBoolean>;
1267
+ items: import("zod").ZodOptional<import("zod").ZodArray<import("./schemas").UpdateNavigationItemSchema, "many">>;
1268
+ }, "strip", import("zod").ZodTypeAny, {
1269
+ id: number;
1270
+ documentId: string;
1271
+ name?: string | undefined;
1272
+ slug?: string | undefined;
1273
+ locale?: string | undefined;
1274
+ visible?: boolean | undefined;
1275
+ items?: Omit<import("./schemas").NavigationItemDBSchema, "id" | "documentId" | "items" | "parent">[] | undefined;
1276
+ }, {
1277
+ id: number;
1278
+ documentId: string;
1279
+ name?: string | undefined;
1280
+ slug?: string | undefined;
1281
+ locale?: string | undefined;
1282
+ visible?: boolean | undefined;
1283
+ items?: Omit<import("./schemas").NavigationItemDBSchema, "id" | "documentId" | "items" | "parent">[] | undefined;
1284
+ }>) => import("zod").ZodObject<{
1285
+ name: import("zod").ZodOptional<import("zod").ZodString>;
1286
+ id: import("zod").ZodNumber;
1287
+ documentId: import("zod").ZodString;
1288
+ slug: import("zod").ZodOptional<import("zod").ZodString>;
1289
+ locale: import("zod").ZodOptional<import("zod").ZodString>;
1290
+ visible: import("zod").ZodOptional<import("zod").ZodBoolean>;
1291
+ items: import("zod").ZodOptional<import("zod").ZodArray<import("./schemas").UpdateNavigationItemSchema, "many">>;
1292
+ }, "strip", import("zod").ZodTypeAny, {
1293
+ id: number;
1294
+ documentId: string;
1295
+ name?: string | undefined;
1296
+ slug?: string | undefined;
1297
+ locale?: string | undefined;
1298
+ visible?: boolean | undefined;
1299
+ items?: Omit<import("./schemas").NavigationItemDBSchema, "id" | "documentId" | "items" | "parent">[] | undefined;
1300
+ }, {
1301
+ id: number;
1302
+ documentId: string;
1303
+ name?: string | undefined;
1304
+ slug?: string | undefined;
1305
+ locale?: string | undefined;
1306
+ visible?: boolean | undefined;
1307
+ items?: Omit<import("./schemas").NavigationItemDBSchema, "id" | "documentId" | "items" | "parent">[] | undefined;
1308
+ }>) => void;
436
1309
  };
437
1310
  client: (context: {
438
1311
  strapi: import("@strapi/types/dist/core").Strapi;
@@ -458,6 +1331,8 @@ declare const _default: {
458
1331
  name: string;
459
1332
  label: string;
460
1333
  options?: string[] | undefined;
1334
+ description?: string | undefined;
1335
+ placeholder?: string | undefined;
461
1336
  required?: boolean | undefined;
462
1337
  enabled?: boolean | undefined;
463
1338
  multi?: false | undefined;
@@ -466,6 +1341,8 @@ declare const _default: {
466
1341
  name: string;
467
1342
  label: string;
468
1343
  options?: string[] | undefined;
1344
+ description?: string | undefined;
1345
+ placeholder?: string | undefined;
469
1346
  required?: boolean | undefined;
470
1347
  enabled?: boolean | undefined;
471
1348
  multi?: false | undefined;
@@ -475,6 +1352,8 @@ declare const _default: {
475
1352
  name: string;
476
1353
  label: string;
477
1354
  multi: boolean;
1355
+ description?: string | undefined;
1356
+ placeholder?: string | undefined;
478
1357
  required?: boolean | undefined;
479
1358
  enabled?: boolean | undefined;
480
1359
  })[]): ({
@@ -482,6 +1361,8 @@ declare const _default: {
482
1361
  name: string;
483
1362
  label: string;
484
1363
  options?: string[] | undefined;
1364
+ description?: string | undefined;
1365
+ placeholder?: string | undefined;
485
1366
  required?: boolean | undefined;
486
1367
  enabled?: boolean | undefined;
487
1368
  multi?: false | undefined;
@@ -490,6 +1371,8 @@ declare const _default: {
490
1371
  name: string;
491
1372
  label: string;
492
1373
  options?: string[] | undefined;
1374
+ description?: string | undefined;
1375
+ placeholder?: string | undefined;
493
1376
  required?: boolean | undefined;
494
1377
  enabled?: boolean | undefined;
495
1378
  multi?: false | undefined;
@@ -499,6 +1382,8 @@ declare const _default: {
499
1382
  name: string;
500
1383
  label: string;
501
1384
  multi: boolean;
1385
+ description?: string | undefined;
1386
+ placeholder?: string | undefined;
502
1387
  required?: boolean | undefined;
503
1388
  enabled?: boolean | undefined;
504
1389
  })[];