expo-backend-types 0.4.0-EXPO-248-EB-GrupoEtiqueta.12 → 0.4.0-EXPO-248-EB-GrupoEtiqueta.14

Sign up to get free protection for your applications and to get access to all the features.
@@ -13,7 +13,9 @@ exports.tagGroupSchema = zod_1.z.object({
13
13
  }),
14
14
  color: zod_1.z
15
15
  .string()
16
- .length(7)
16
+ .length(7, {
17
+ message: (0, translate_1.translate)('model.tagGroup.color.invalid'),
18
+ })
17
19
  .startsWith('#', {
18
20
  message: (0, translate_1.translate)('model.tagGroup.color.invalid'),
19
21
  })
@@ -231,6 +231,7 @@ export interface components {
231
231
  expiresIn?: number;
232
232
  };
233
233
  };
234
+ ErrorDto: Record<string, never>;
234
235
  RefreshResponseDto: {
235
236
  refreshToken: string;
236
237
  accessToken: string;
@@ -512,6 +513,14 @@ export interface operations {
512
513
  "application/json": components["schemas"]["LoginResponseDto"];
513
514
  };
514
515
  };
516
+ 401: {
517
+ headers: {
518
+ [name: string]: unknown;
519
+ };
520
+ content: {
521
+ "application/json": components["schemas"]["ErrorDto"];
522
+ };
523
+ };
515
524
  };
516
525
  };
517
526
  AuthController_refreshToken: {
@@ -598,7 +607,9 @@ export interface operations {
598
607
  headers: {
599
608
  [name: string]: unknown;
600
609
  };
601
- content?: never;
610
+ content: {
611
+ "application/json": components["schemas"]["ErrorDto"];
612
+ };
602
613
  };
603
614
  };
604
615
  };
@@ -625,7 +636,9 @@ export interface operations {
625
636
  headers: {
626
637
  [name: string]: unknown;
627
638
  };
628
- content?: never;
639
+ content: {
640
+ "application/json": components["schemas"]["ErrorDto"];
641
+ };
629
642
  };
630
643
  };
631
644
  };
@@ -644,7 +657,9 @@ export interface operations {
644
657
  headers: {
645
658
  [name: string]: unknown;
646
659
  };
647
- content?: never;
660
+ content: {
661
+ "application/json": components["schemas"]["ErrorDto"];
662
+ };
648
663
  };
649
664
  410: {
650
665
  headers: {
@@ -683,7 +698,9 @@ export interface operations {
683
698
  headers: {
684
699
  [name: string]: unknown;
685
700
  };
686
- content?: never;
701
+ content: {
702
+ "application/json": components["schemas"]["ErrorDto"];
703
+ };
687
704
  };
688
705
  };
689
706
  };
@@ -855,7 +872,9 @@ export interface operations {
855
872
  headers: {
856
873
  [name: string]: unknown;
857
874
  };
858
- content?: never;
875
+ content: {
876
+ "application/json": components["schemas"]["ErrorDto"];
877
+ };
859
878
  };
860
879
  };
861
880
  };
@@ -882,7 +901,9 @@ export interface operations {
882
901
  headers: {
883
902
  [name: string]: unknown;
884
903
  };
885
- content?: never;
904
+ content: {
905
+ "application/json": components["schemas"]["ErrorDto"];
906
+ };
886
907
  };
887
908
  };
888
909
  };
@@ -913,7 +934,9 @@ export interface operations {
913
934
  headers: {
914
935
  [name: string]: unknown;
915
936
  };
916
- content?: never;
937
+ content: {
938
+ "application/json": components["schemas"]["ErrorDto"];
939
+ };
917
940
  };
918
941
  };
919
942
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-backend-types",
3
- "version": "0.4.0-EXPO-248-EB-GrupoEtiqueta.12",
3
+ "version": "0.4.0-EXPO-248-EB-GrupoEtiqueta.14",
4
4
  "description": "",
5
5
  "author": "Expo",
6
6
  "private": false,