expo-backend-types 0.60.0-feat-desfile-12-octubre.6 → 0.60.0-feat-desfile-12-octubre.8

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.
@@ -1686,9 +1686,9 @@ export interface paths {
1686
1686
  path?: never;
1687
1687
  cookie?: never;
1688
1688
  };
1689
- get: operations["ExpoTicketsProducerLoginController_getEventTickets"];
1689
+ get?: never;
1690
1690
  put?: never;
1691
- post?: never;
1691
+ post: operations["ExpoTicketsProducerLoginController_getEventTickets"];
1692
1692
  delete?: never;
1693
1693
  options?: never;
1694
1694
  head?: never;
@@ -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
- 201: {
7626
+ 200: {
7592
7627
  headers: {
7593
7628
  [name: string]: unknown;
7594
7629
  };
7595
- content?: never;
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?: never;
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
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-backend-types",
3
- "version": "0.60.0-feat-desfile-12-octubre.6",
3
+ "version": "0.60.0-feat-desfile-12-octubre.8",
4
4
  "description": "",
5
5
  "author": "Expo",
6
6
  "private": false,