expo-backend-types 0.4.0-EXPO-248-EB-GrupoEtiqueta.12 → 0.4.0-EXPO-248-EB-GrupoEtiqueta.13
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/types/schema.d.ts +34 -7
- package/package.json +1 -1
package/dist/types/schema.d.ts
CHANGED
@@ -231,6 +231,11 @@ export interface components {
|
|
231
231
|
expiresIn?: number;
|
232
232
|
};
|
233
233
|
};
|
234
|
+
ErrorDto: {
|
235
|
+
message: string;
|
236
|
+
statusCode: number;
|
237
|
+
error: string;
|
238
|
+
};
|
234
239
|
RefreshResponseDto: {
|
235
240
|
refreshToken: string;
|
236
241
|
accessToken: string;
|
@@ -512,6 +517,14 @@ export interface operations {
|
|
512
517
|
"application/json": components["schemas"]["LoginResponseDto"];
|
513
518
|
};
|
514
519
|
};
|
520
|
+
401: {
|
521
|
+
headers: {
|
522
|
+
[name: string]: unknown;
|
523
|
+
};
|
524
|
+
content: {
|
525
|
+
"application/json": components["schemas"]["ErrorDto"];
|
526
|
+
};
|
527
|
+
};
|
515
528
|
};
|
516
529
|
};
|
517
530
|
AuthController_refreshToken: {
|
@@ -598,7 +611,9 @@ export interface operations {
|
|
598
611
|
headers: {
|
599
612
|
[name: string]: unknown;
|
600
613
|
};
|
601
|
-
content
|
614
|
+
content: {
|
615
|
+
"application/json": components["schemas"]["ErrorDto"];
|
616
|
+
};
|
602
617
|
};
|
603
618
|
};
|
604
619
|
};
|
@@ -625,7 +640,9 @@ export interface operations {
|
|
625
640
|
headers: {
|
626
641
|
[name: string]: unknown;
|
627
642
|
};
|
628
|
-
content
|
643
|
+
content: {
|
644
|
+
"application/json": components["schemas"]["ErrorDto"];
|
645
|
+
};
|
629
646
|
};
|
630
647
|
};
|
631
648
|
};
|
@@ -644,7 +661,9 @@ export interface operations {
|
|
644
661
|
headers: {
|
645
662
|
[name: string]: unknown;
|
646
663
|
};
|
647
|
-
content
|
664
|
+
content: {
|
665
|
+
"application/json": components["schemas"]["ErrorDto"];
|
666
|
+
};
|
648
667
|
};
|
649
668
|
410: {
|
650
669
|
headers: {
|
@@ -683,7 +702,9 @@ export interface operations {
|
|
683
702
|
headers: {
|
684
703
|
[name: string]: unknown;
|
685
704
|
};
|
686
|
-
content
|
705
|
+
content: {
|
706
|
+
"application/json": components["schemas"]["ErrorDto"];
|
707
|
+
};
|
687
708
|
};
|
688
709
|
};
|
689
710
|
};
|
@@ -855,7 +876,9 @@ export interface operations {
|
|
855
876
|
headers: {
|
856
877
|
[name: string]: unknown;
|
857
878
|
};
|
858
|
-
content
|
879
|
+
content: {
|
880
|
+
"application/json": components["schemas"]["ErrorDto"];
|
881
|
+
};
|
859
882
|
};
|
860
883
|
};
|
861
884
|
};
|
@@ -882,7 +905,9 @@ export interface operations {
|
|
882
905
|
headers: {
|
883
906
|
[name: string]: unknown;
|
884
907
|
};
|
885
|
-
content
|
908
|
+
content: {
|
909
|
+
"application/json": components["schemas"]["ErrorDto"];
|
910
|
+
};
|
886
911
|
};
|
887
912
|
};
|
888
913
|
};
|
@@ -913,7 +938,9 @@ export interface operations {
|
|
913
938
|
headers: {
|
914
939
|
[name: string]: unknown;
|
915
940
|
};
|
916
|
-
content
|
941
|
+
content: {
|
942
|
+
"application/json": components["schemas"]["ErrorDto"];
|
943
|
+
};
|
917
944
|
};
|
918
945
|
};
|
919
946
|
};
|