expo-backend-types 0.34.0 → 0.35.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 (67) hide show
  1. package/dist/src/account/dto/account.dto.d.ts +6 -4
  2. package/dist/src/account/dto/create-account.dto.d.ts +12 -8
  3. package/dist/src/account/dto/get-global-filter.dto.d.ts +1 -0
  4. package/dist/src/account/dto/get-me.dto.d.ts +6 -4
  5. package/dist/src/account/dto/update-global-filter.dto.d.ts +6 -4
  6. package/dist/src/auth/dto/login.dto.d.ts +11 -8
  7. package/dist/src/comment/dto/get-by-profile-comment.dto.d.ts +1 -0
  8. package/dist/src/event/dto/create-event.dto.d.ts +10 -10
  9. package/dist/src/event/dto/event-tickets.dto.d.ts +3 -3
  10. package/dist/src/event/dto/event-tickets.dto.js +5 -2
  11. package/dist/src/event/dto/get-active-events.dto.d.ts +14 -14
  12. package/dist/src/event/dto/get-all-event.dto.d.ts +616 -0
  13. package/dist/src/event/dto/get-all-event.dto.js +29 -8
  14. package/dist/src/event/dto/get-by-id-event.dto.d.ts +317 -10
  15. package/dist/src/event/dto/get-by-id-event.dto.js +4 -0
  16. package/dist/src/event/dto/update-event.dto.d.ts +26 -20
  17. package/dist/src/event/dto/update-event.dto.js +1 -0
  18. package/dist/src/i18n/es.d.ts +14 -0
  19. package/dist/src/i18n/es.js +14 -0
  20. package/dist/src/i18n/es.js.map +1 -1
  21. package/dist/src/mi-expo/dto/get-invitations.dto.d.ts +104 -0
  22. package/dist/src/mi-expo/dto/get-invitations.dto.js +24 -0
  23. package/dist/src/mi-expo/dto/get-me.dto.d.ts +16 -0
  24. package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +20 -0
  25. package/dist/src/mi-expo/dto/login.dto.d.ts +21 -0
  26. package/dist/src/mi-expo/dto/update-me.dto.d.ts +16 -0
  27. package/dist/src/mi-expo/exports.d.ts +1 -0
  28. package/dist/src/mi-expo/exports.js +1 -0
  29. package/dist/src/otp/dto/verify-otp.dto.d.ts +20 -0
  30. package/dist/src/profile/dto/create-profile.dto.d.ts +24 -0
  31. package/dist/src/profile/dto/delete-profile.dto.d.ts +16 -0
  32. package/dist/src/profile/dto/find-all-profile.dto.d.ts +20 -0
  33. package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +36 -0
  34. package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +16 -0
  35. package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +16 -0
  36. package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +20 -0
  37. package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +55 -1
  38. package/dist/src/profile/dto/find-by-tags-profile.dto.js +2 -0
  39. package/dist/src/profile/dto/find-trash.dto.d.ts +6 -0
  40. package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +20 -0
  41. package/dist/src/profile/dto/profile.dto.d.ts +8 -0
  42. package/dist/src/profile/dto/update-profile.dto.d.ts +16 -0
  43. package/dist/src/schema/profile.schema.d.ts +8 -0
  44. package/dist/src/schema/profile.schema.js +2 -0
  45. package/dist/src/tag/dto/massive-allocation.dto.d.ts +20 -0
  46. package/dist/src/tag/dto/massive-deallocation.dto.d.ts +20 -0
  47. package/dist/src/ticket/dto/create-ticket.dto.d.ts +158 -4
  48. package/dist/src/ticket/dto/create-ticket.dto.js +10 -2
  49. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +370 -0
  50. package/dist/src/ticket/dto/find-by-event-ticket.dto.js +2 -0
  51. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +370 -0
  52. package/dist/src/ticket/dto/find-by-id-ticket.dto.js +2 -0
  53. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +370 -0
  54. package/dist/src/ticket/dto/find-by-mail-ticket.dto.js +2 -0
  55. package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +331 -0
  56. package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.js +19 -0
  57. package/dist/src/ticket/exports.d.ts +1 -0
  58. package/dist/src/ticket/exports.js +1 -0
  59. package/dist/types/prisma-schema/edge.js +7 -4
  60. package/dist/types/prisma-schema/index-browser.js +4 -1
  61. package/dist/types/prisma-schema/index.d.ts +629 -90
  62. package/dist/types/prisma-schema/index.js +7 -4
  63. package/dist/types/prisma-schema/package.json +1 -1
  64. package/dist/types/prisma-schema/schema.prisma +11 -3
  65. package/dist/types/prisma-schema/wasm.js +4 -1
  66. package/dist/types/schema.d.ts +342 -10
  67. package/package.json +1 -1
@@ -1039,6 +1039,22 @@ export interface paths {
1039
1039
  patch?: never;
1040
1040
  trace?: never;
1041
1041
  };
1042
+ "/ticket/find-by-profile-id/{profileId}": {
1043
+ parameters: {
1044
+ query?: never;
1045
+ header?: never;
1046
+ path?: never;
1047
+ cookie?: never;
1048
+ };
1049
+ get: operations["TicketController_findByProfileId"];
1050
+ put?: never;
1051
+ post?: never;
1052
+ delete?: never;
1053
+ options?: never;
1054
+ head?: never;
1055
+ patch?: never;
1056
+ trace?: never;
1057
+ };
1042
1058
  "/ticket/update/{id}": {
1043
1059
  parameters: {
1044
1060
  query?: never;
@@ -1183,6 +1199,38 @@ export interface paths {
1183
1199
  patch: operations["MiExpoController_updateMe"];
1184
1200
  trace?: never;
1185
1201
  };
1202
+ "/mi-expo/invitations": {
1203
+ parameters: {
1204
+ query?: never;
1205
+ header?: never;
1206
+ path?: never;
1207
+ cookie?: never;
1208
+ };
1209
+ get: operations["MiExpoController_invitations"];
1210
+ put?: never;
1211
+ post?: never;
1212
+ delete?: never;
1213
+ options?: never;
1214
+ head?: never;
1215
+ patch?: never;
1216
+ trace?: never;
1217
+ };
1218
+ "/mi-expo/tickets": {
1219
+ parameters: {
1220
+ query?: never;
1221
+ header?: never;
1222
+ path?: never;
1223
+ cookie?: never;
1224
+ };
1225
+ get: operations["MiExpoController_tickets"];
1226
+ put?: never;
1227
+ post?: never;
1228
+ delete?: never;
1229
+ options?: never;
1230
+ head?: never;
1231
+ patch?: never;
1232
+ trace?: never;
1233
+ };
1186
1234
  "/mi-expo/login": {
1187
1235
  parameters: {
1188
1236
  query?: never;
@@ -1211,7 +1259,7 @@ export interface components {
1211
1259
  user: {
1212
1260
  id: string;
1213
1261
  username: string;
1214
- role: "USER" | "ADMIN" | "FORM";
1262
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
1215
1263
  isGlobalFilterActive: boolean;
1216
1264
  fcmToken: string[];
1217
1265
  created_at: string;
@@ -1323,6 +1371,7 @@ export interface components {
1323
1371
  profiles: {
1324
1372
  id: string;
1325
1373
  shortId: number;
1374
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
1326
1375
  firstTimeMiExpo: boolean;
1327
1376
  username: string | null;
1328
1377
  password: string | null;
@@ -1354,6 +1403,7 @@ export interface components {
1354
1403
  profiles: {
1355
1404
  id: string;
1356
1405
  shortId: number;
1406
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
1357
1407
  firstTimeMiExpo: boolean;
1358
1408
  username: string | null;
1359
1409
  password: string | null;
@@ -1380,12 +1430,12 @@ export interface components {
1380
1430
  CreateAccountDto: {
1381
1431
  username: string;
1382
1432
  password: string;
1383
- role: "USER" | "ADMIN" | "FORM";
1433
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
1384
1434
  };
1385
1435
  CreateAccountResponseDto: {
1386
1436
  id: string;
1387
1437
  username: string;
1388
- role: "USER" | "ADMIN" | "FORM";
1438
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
1389
1439
  isGlobalFilterActive: boolean;
1390
1440
  fcmToken: string[];
1391
1441
  };
@@ -1397,7 +1447,7 @@ export interface components {
1397
1447
  id: string;
1398
1448
  username: string;
1399
1449
  password: string;
1400
- role: "USER" | "ADMIN" | "FORM";
1450
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
1401
1451
  isGlobalFilterActive: boolean;
1402
1452
  fcmToken: string[];
1403
1453
  created_at: string;
@@ -1427,7 +1477,7 @@ export interface components {
1427
1477
  GetMeResponseDto: {
1428
1478
  id: string;
1429
1479
  username: string;
1430
- role: "USER" | "ADMIN" | "FORM";
1480
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
1431
1481
  isGlobalFilterActive: boolean;
1432
1482
  fcmToken: string[];
1433
1483
  created_at: string;
@@ -1765,7 +1815,7 @@ export interface components {
1765
1815
  }[];
1766
1816
  tagsId: string[];
1767
1817
  eventTickets: {
1768
- amount: number;
1818
+ amount: number | null;
1769
1819
  type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
1770
1820
  price: number | null;
1771
1821
  }[];
@@ -1836,6 +1886,23 @@ export interface components {
1836
1886
  created_at: string;
1837
1887
  updated_at: string;
1838
1888
  }[];
1889
+ tags: {
1890
+ id: string;
1891
+ name: string;
1892
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
1893
+ group: {
1894
+ id: string;
1895
+ color: string;
1896
+ name: string;
1897
+ isExclusive: boolean;
1898
+ };
1899
+ }[];
1900
+ eventTickets: {
1901
+ id: string;
1902
+ amount: number | null;
1903
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
1904
+ price: number | null;
1905
+ }[];
1839
1906
  }[];
1840
1907
  }[];
1841
1908
  withoutFolder: {
@@ -1882,6 +1949,23 @@ export interface components {
1882
1949
  created_at: string;
1883
1950
  updated_at: string;
1884
1951
  }[];
1952
+ tags: {
1953
+ id: string;
1954
+ name: string;
1955
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
1956
+ group: {
1957
+ id: string;
1958
+ color: string;
1959
+ name: string;
1960
+ isExclusive: boolean;
1961
+ };
1962
+ }[];
1963
+ eventTickets: {
1964
+ id: string;
1965
+ amount: number | null;
1966
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
1967
+ price: number | null;
1968
+ }[];
1885
1969
  }[];
1886
1970
  };
1887
1971
  GetActiveEventsResponseDto: {
@@ -1901,7 +1985,7 @@ export interface components {
1901
1985
  updated_at: string;
1902
1986
  eventTickets: {
1903
1987
  id: string;
1904
- amount: number;
1988
+ amount: number | null;
1905
1989
  type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
1906
1990
  price: number | null;
1907
1991
  }[];
@@ -1953,10 +2037,36 @@ export interface components {
1953
2037
  } | null;
1954
2038
  eventTickets: {
1955
2039
  id: string;
1956
- amount: number;
2040
+ amount: number | null;
1957
2041
  type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
1958
2042
  price: number | null;
1959
2043
  }[];
2044
+ tags: {
2045
+ id: string;
2046
+ name: string;
2047
+ groupId: string;
2048
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
2049
+ created_at: string;
2050
+ updated_at: string;
2051
+ group: {
2052
+ id: string;
2053
+ name: string;
2054
+ color: string;
2055
+ isExclusive: boolean;
2056
+ created_at: string;
2057
+ updated_at: string;
2058
+ };
2059
+ }[];
2060
+ tickets: {
2061
+ id: string;
2062
+ eventId: string;
2063
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
2064
+ status: "BOOKED" | "PAID" | "FREE";
2065
+ fullName: string;
2066
+ mail: string;
2067
+ created_at: string;
2068
+ updated_at: string;
2069
+ }[];
1960
2070
  };
1961
2071
  UpdateEventDto: {
1962
2072
  name: string;
@@ -1965,6 +2075,7 @@ export interface components {
1965
2075
  location: string;
1966
2076
  startingDate: string;
1967
2077
  endingDate: string;
2078
+ tagsId: string[];
1968
2079
  subEvents: {
1969
2080
  name: string;
1970
2081
  location: string;
@@ -1974,7 +2085,7 @@ export interface components {
1974
2085
  id: string | "";
1975
2086
  }[];
1976
2087
  eventTickets: {
1977
- amount: number;
2088
+ amount: number | null;
1978
2089
  type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
1979
2090
  price: number | null;
1980
2091
  }[];
@@ -2011,7 +2122,7 @@ export interface components {
2011
2122
  };
2012
2123
  eventTickets: {
2013
2124
  id: string;
2014
- amount: number;
2125
+ amount: number | null;
2015
2126
  type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
2016
2127
  price: number | null;
2017
2128
  }[];
@@ -2035,6 +2146,7 @@ export interface components {
2035
2146
  profiles: {
2036
2147
  id: string;
2037
2148
  shortId: number;
2149
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
2038
2150
  firstTimeMiExpo: boolean;
2039
2151
  username: string | null;
2040
2152
  password: string | null;
@@ -2074,6 +2186,7 @@ export interface components {
2074
2186
  profiles: {
2075
2187
  id: string;
2076
2188
  shortId: number;
2189
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
2077
2190
  firstTimeMiExpo: boolean;
2078
2191
  username: string | null;
2079
2192
  password: string | null;
@@ -2131,6 +2244,7 @@ export interface components {
2131
2244
  profiles: {
2132
2245
  id: string;
2133
2246
  shortId: number;
2247
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
2134
2248
  firstTimeMiExpo: boolean;
2135
2249
  username: string | null;
2136
2250
  password: string | null;
@@ -2161,6 +2275,8 @@ export interface components {
2161
2275
  updated_at: string;
2162
2276
  group: {
2163
2277
  isExclusive: boolean;
2278
+ name: string;
2279
+ color: string;
2164
2280
  };
2165
2281
  }[];
2166
2282
  }[];
@@ -2169,6 +2285,7 @@ export interface components {
2169
2285
  profiles: {
2170
2286
  id: string;
2171
2287
  shortId: number;
2288
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
2172
2289
  firstTimeMiExpo: boolean;
2173
2290
  username: string | null;
2174
2291
  password: string | null;
@@ -2204,6 +2321,7 @@ export interface components {
2204
2321
  [key: string]: {
2205
2322
  id: string;
2206
2323
  shortId: number;
2324
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
2207
2325
  firstTimeMiExpo: boolean;
2208
2326
  username: string | null;
2209
2327
  password: string | null;
@@ -2241,6 +2359,7 @@ export interface components {
2241
2359
  FindByPhoneNumberResponseDto: {
2242
2360
  id: string;
2243
2361
  shortId: number;
2362
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
2244
2363
  firstTimeMiExpo: boolean;
2245
2364
  username: string | null;
2246
2365
  password: string | null;
@@ -2330,6 +2449,7 @@ export interface components {
2330
2449
  FindByIdProfileResponseDto: {
2331
2450
  id: string;
2332
2451
  shortId: number;
2452
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
2333
2453
  firstTimeMiExpo: boolean;
2334
2454
  username: string | null;
2335
2455
  phoneNumber: string;
@@ -2387,6 +2507,7 @@ export interface components {
2387
2507
  DeleteProfileResponseDto: {
2388
2508
  id: string;
2389
2509
  shortId: number;
2510
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
2390
2511
  firstTimeMiExpo: boolean;
2391
2512
  username: string | null;
2392
2513
  password: string | null;
@@ -2557,6 +2678,7 @@ export interface components {
2557
2678
  status: "BOOKED" | "PAID" | "FREE";
2558
2679
  fullName: string;
2559
2680
  mail: string;
2681
+ profileId?: string;
2560
2682
  };
2561
2683
  CreateTicketResponseDto: {
2562
2684
  id: string;
@@ -2567,6 +2689,21 @@ export interface components {
2567
2689
  mail: string;
2568
2690
  created_at: string;
2569
2691
  updated_at: string;
2692
+ event: {
2693
+ id: string;
2694
+ name: string;
2695
+ date: string;
2696
+ startingDate: string;
2697
+ endingDate: string;
2698
+ location: string;
2699
+ folderId: string | null;
2700
+ tagAssistedId: string;
2701
+ tagConfirmedId: string;
2702
+ active: boolean;
2703
+ supraEventId: string | null;
2704
+ created_at: string;
2705
+ updated_at: string;
2706
+ };
2570
2707
  };
2571
2708
  FindAllTicketsResponseDto: {
2572
2709
  tickets: {
@@ -2600,6 +2737,32 @@ export interface components {
2600
2737
  date: string;
2601
2738
  location: string;
2602
2739
  };
2740
+ profile: {
2741
+ id: string;
2742
+ shortId: number;
2743
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
2744
+ firstTimeMiExpo: boolean;
2745
+ username: string | null;
2746
+ password: string | null;
2747
+ phoneNumber: string;
2748
+ isPhoneVerified: boolean;
2749
+ secondaryPhoneNumber: string | null;
2750
+ fullName: string;
2751
+ firstName: string | null;
2752
+ gender: string | null;
2753
+ birthDate: string | null;
2754
+ profilePictureUrl: string | null;
2755
+ instagram: string | null;
2756
+ mail: string | null;
2757
+ dni: string | null;
2758
+ alternativeNames: string[];
2759
+ birthLocationId: string | null;
2760
+ residenceLocationId: string | null;
2761
+ isInTrash: boolean;
2762
+ movedToTrashDate: string | null;
2763
+ created_at: string;
2764
+ updated_at: string;
2765
+ } | null;
2603
2766
  };
2604
2767
  };
2605
2768
  FindByMailTicketResponseDto: {
@@ -2617,6 +2780,32 @@ export interface components {
2617
2780
  date: string;
2618
2781
  location: string;
2619
2782
  };
2783
+ profile: {
2784
+ id: string;
2785
+ shortId: number;
2786
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
2787
+ firstTimeMiExpo: boolean;
2788
+ username: string | null;
2789
+ password: string | null;
2790
+ phoneNumber: string;
2791
+ isPhoneVerified: boolean;
2792
+ secondaryPhoneNumber: string | null;
2793
+ fullName: string;
2794
+ firstName: string | null;
2795
+ gender: string | null;
2796
+ birthDate: string | null;
2797
+ profilePictureUrl: string | null;
2798
+ instagram: string | null;
2799
+ mail: string | null;
2800
+ dni: string | null;
2801
+ alternativeNames: string[];
2802
+ birthLocationId: string | null;
2803
+ residenceLocationId: string | null;
2804
+ isInTrash: boolean;
2805
+ movedToTrashDate: string | null;
2806
+ created_at: string;
2807
+ updated_at: string;
2808
+ } | null;
2620
2809
  }[];
2621
2810
  };
2622
2811
  FindByEventTicketResponseDto: {
@@ -2634,6 +2823,59 @@ export interface components {
2634
2823
  date: string;
2635
2824
  location: string;
2636
2825
  };
2826
+ profile: {
2827
+ id: string;
2828
+ shortId: number;
2829
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
2830
+ firstTimeMiExpo: boolean;
2831
+ username: string | null;
2832
+ password: string | null;
2833
+ phoneNumber: string;
2834
+ isPhoneVerified: boolean;
2835
+ secondaryPhoneNumber: string | null;
2836
+ fullName: string;
2837
+ firstName: string | null;
2838
+ gender: string | null;
2839
+ birthDate: string | null;
2840
+ profilePictureUrl: string | null;
2841
+ instagram: string | null;
2842
+ mail: string | null;
2843
+ dni: string | null;
2844
+ alternativeNames: string[];
2845
+ birthLocationId: string | null;
2846
+ residenceLocationId: string | null;
2847
+ isInTrash: boolean;
2848
+ movedToTrashDate: string | null;
2849
+ created_at: string;
2850
+ updated_at: string;
2851
+ } | null;
2852
+ }[];
2853
+ };
2854
+ FindByProfileIdTicketResponseDto: {
2855
+ tickets: {
2856
+ id: string;
2857
+ eventId: string;
2858
+ type: "PARTICIPANT" | "STAFF" | "SPECTATOR";
2859
+ status: "BOOKED" | "PAID" | "FREE";
2860
+ fullName: string;
2861
+ mail: string;
2862
+ created_at: string;
2863
+ updated_at: string;
2864
+ event: {
2865
+ id: string;
2866
+ name: string;
2867
+ date: string;
2868
+ startingDate: string;
2869
+ endingDate: string;
2870
+ location: string;
2871
+ folderId: string | null;
2872
+ tagAssistedId: string;
2873
+ tagConfirmedId: string;
2874
+ active: boolean;
2875
+ supraEventId: string | null;
2876
+ created_at: string;
2877
+ updated_at: string;
2878
+ };
2637
2879
  }[];
2638
2880
  };
2639
2881
  UpdateTicketDto: {
@@ -2696,6 +2938,7 @@ export interface components {
2696
2938
  profile: {
2697
2939
  id: string;
2698
2940
  shortId: number;
2941
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
2699
2942
  firstTimeMiExpo: boolean;
2700
2943
  username: string | null;
2701
2944
  password: string | null;
@@ -2743,6 +2986,7 @@ export interface components {
2743
2986
  profile: {
2744
2987
  id: string;
2745
2988
  shortId: number;
2989
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
2746
2990
  firstTimeMiExpo: boolean;
2747
2991
  username: string | null;
2748
2992
  phoneNumber: string;
@@ -2768,6 +3012,7 @@ export interface components {
2768
3012
  GetMiExpoMeResponseDto: {
2769
3013
  id: string;
2770
3014
  shortId: number;
3015
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
2771
3016
  firstTimeMiExpo: boolean;
2772
3017
  username: string | null;
2773
3018
  phoneNumber: string;
@@ -2835,6 +3080,17 @@ export interface components {
2835
3080
  state: string;
2836
3081
  };
2837
3082
  };
3083
+ GetInvitationsResponseDto: {
3084
+ events: {
3085
+ date: string;
3086
+ startingDate: string;
3087
+ endingDate: string;
3088
+ name: string;
3089
+ location: string;
3090
+ id: string;
3091
+ active: boolean;
3092
+ }[];
3093
+ };
2838
3094
  LoginMiExpoDto: {
2839
3095
  username: string;
2840
3096
  password: string;
@@ -2843,6 +3099,7 @@ export interface components {
2843
3099
  user: {
2844
3100
  id: string;
2845
3101
  shortId: number;
3102
+ role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
2846
3103
  firstTimeMiExpo: boolean;
2847
3104
  username: string | null;
2848
3105
  phoneNumber: string;
@@ -4825,6 +5082,14 @@ export interface operations {
4825
5082
  "application/json": components["schemas"]["ErrorDto"];
4826
5083
  };
4827
5084
  };
5085
+ 409: {
5086
+ headers: {
5087
+ [name: string]: unknown;
5088
+ };
5089
+ content: {
5090
+ "application/json": components["schemas"]["ErrorDto"];
5091
+ };
5092
+ };
4828
5093
  };
4829
5094
  };
4830
5095
  TicketController_findAll: {
@@ -4925,6 +5190,35 @@ export interface operations {
4925
5190
  };
4926
5191
  };
4927
5192
  };
5193
+ TicketController_findByProfileId: {
5194
+ parameters: {
5195
+ query?: never;
5196
+ header?: never;
5197
+ path: {
5198
+ profileId: string;
5199
+ };
5200
+ cookie?: never;
5201
+ };
5202
+ requestBody?: never;
5203
+ responses: {
5204
+ 200: {
5205
+ headers: {
5206
+ [name: string]: unknown;
5207
+ };
5208
+ content: {
5209
+ "application/json": components["schemas"]["FindByProfileIdTicketResponseDto"];
5210
+ };
5211
+ };
5212
+ 404: {
5213
+ headers: {
5214
+ [name: string]: unknown;
5215
+ };
5216
+ content: {
5217
+ "application/json": components["schemas"]["ErrorDto"];
5218
+ };
5219
+ };
5220
+ };
5221
+ };
4928
5222
  TicketController_update: {
4929
5223
  parameters: {
4930
5224
  query?: never;
@@ -5266,6 +5560,44 @@ export interface operations {
5266
5560
  };
5267
5561
  };
5268
5562
  };
5563
+ MiExpoController_invitations: {
5564
+ parameters: {
5565
+ query?: never;
5566
+ header?: never;
5567
+ path?: never;
5568
+ cookie?: never;
5569
+ };
5570
+ requestBody?: never;
5571
+ responses: {
5572
+ 200: {
5573
+ headers: {
5574
+ [name: string]: unknown;
5575
+ };
5576
+ content: {
5577
+ "application/json": components["schemas"]["GetInvitationsResponseDto"];
5578
+ };
5579
+ };
5580
+ };
5581
+ };
5582
+ MiExpoController_tickets: {
5583
+ parameters: {
5584
+ query?: never;
5585
+ header?: never;
5586
+ path?: never;
5587
+ cookie?: never;
5588
+ };
5589
+ requestBody?: never;
5590
+ responses: {
5591
+ 200: {
5592
+ headers: {
5593
+ [name: string]: unknown;
5594
+ };
5595
+ content: {
5596
+ "application/json": components["schemas"]["FindByProfileIdTicketResponseDto"];
5597
+ };
5598
+ };
5599
+ };
5600
+ };
5269
5601
  MiExpoController_loginUsernamePassword: {
5270
5602
  parameters: {
5271
5603
  query?: never;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-backend-types",
3
- "version": "0.34.0",
3
+ "version": "0.35.0",
4
4
  "description": "",
5
5
  "author": "Expo",
6
6
  "private": false,