expo-backend-types 0.60.0-feat-desfile-12-octubre.6 → 0.60.0-feat-desfile-12-octubre.7
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/dist/types/schema.d.ts +58 -3
- package/package.json +1 -1
package/dist/types/schema.d.ts
CHANGED
@@ -4173,6 +4173,41 @@ export interface components {
|
|
4173
4173
|
mail: string;
|
4174
4174
|
password: string;
|
4175
4175
|
};
|
4176
|
+
LoginProducerResponseDto: {
|
4177
|
+
success: boolean;
|
4178
|
+
message: string;
|
4179
|
+
};
|
4180
|
+
GetEventTicketsLoginProducerResponseDto: {
|
4181
|
+
email: string;
|
4182
|
+
password: string;
|
4183
|
+
event: {
|
4184
|
+
id: string;
|
4185
|
+
name: string;
|
4186
|
+
date: string;
|
4187
|
+
startingDate: string;
|
4188
|
+
endingDate: string;
|
4189
|
+
location: string;
|
4190
|
+
mainPictureUrl: string | null;
|
4191
|
+
bannerUrl: string | null;
|
4192
|
+
description: string | null;
|
4193
|
+
folderId: string | null;
|
4194
|
+
tagAssistedId: string;
|
4195
|
+
tagConfirmedId: string;
|
4196
|
+
active: boolean;
|
4197
|
+
supraEventId: string | null;
|
4198
|
+
created_at: string;
|
4199
|
+
updated_at: string;
|
4200
|
+
tickets: {
|
4201
|
+
id: string;
|
4202
|
+
dni: string;
|
4203
|
+
fullName: string;
|
4204
|
+
mail: string;
|
4205
|
+
phoneNumber: string;
|
4206
|
+
whoToWatch: string | null;
|
4207
|
+
instagrams: string[];
|
4208
|
+
}[];
|
4209
|
+
};
|
4210
|
+
};
|
4176
4211
|
};
|
4177
4212
|
responses: never;
|
4178
4213
|
parameters: never;
|
@@ -7588,11 +7623,21 @@ export interface operations {
|
|
7588
7623
|
};
|
7589
7624
|
};
|
7590
7625
|
responses: {
|
7591
|
-
|
7626
|
+
200: {
|
7592
7627
|
headers: {
|
7593
7628
|
[name: string]: unknown;
|
7594
7629
|
};
|
7595
|
-
content
|
7630
|
+
content: {
|
7631
|
+
"application/json": components["schemas"]["LoginProducerResponseDto"];
|
7632
|
+
};
|
7633
|
+
};
|
7634
|
+
401: {
|
7635
|
+
headers: {
|
7636
|
+
[name: string]: unknown;
|
7637
|
+
};
|
7638
|
+
content: {
|
7639
|
+
"application/json": components["schemas"]["ErrorDto"];
|
7640
|
+
};
|
7596
7641
|
};
|
7597
7642
|
};
|
7598
7643
|
};
|
@@ -7613,7 +7658,17 @@ export interface operations {
|
|
7613
7658
|
headers: {
|
7614
7659
|
[name: string]: unknown;
|
7615
7660
|
};
|
7616
|
-
content
|
7661
|
+
content: {
|
7662
|
+
"application/json": components["schemas"]["GetEventTicketsLoginProducerResponseDto"];
|
7663
|
+
};
|
7664
|
+
};
|
7665
|
+
401: {
|
7666
|
+
headers: {
|
7667
|
+
[name: string]: unknown;
|
7668
|
+
};
|
7669
|
+
content: {
|
7670
|
+
"application/json": components["schemas"]["ErrorDto"];
|
7671
|
+
};
|
7617
7672
|
};
|
7618
7673
|
};
|
7619
7674
|
};
|