expo-backend-types 0.47.0-EXPO-339-Testing-y-bugfixing.1 → 0.47.0-EXPO-345-ExpoBackend-Agregar-los-nuevos-requerimientos-a-las-rutas.1

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 (37) hide show
  1. package/dist/src/event/dto/create-event.dto.d.ts +72 -23
  2. package/dist/src/event/dto/create-event.dto.js +7 -1
  3. package/dist/src/event/dto/delete-event.dto.d.ts +18 -0
  4. package/dist/src/event/dto/event-tickets.dto.d.ts +2 -33
  5. package/dist/src/event/dto/event-tickets.dto.js +8 -18
  6. package/dist/src/event/dto/event.dto.d.ts +9 -0
  7. package/dist/src/event/dto/event.dto.js +13 -0
  8. package/dist/src/event/dto/get-active-events.dto.d.ts +33 -23
  9. package/dist/src/event/dto/get-all-event.dto.d.ts +272 -48
  10. package/dist/src/event/dto/get-all-event.dto.js +2 -2
  11. package/dist/src/event/dto/get-by-id-event.dto.d.ts +99 -23
  12. package/dist/src/event/dto/toggle-active-event.dto.d.ts +9 -0
  13. package/dist/src/event/dto/update-event.dto.d.ts +31 -44
  14. package/dist/src/event/dto/update-event.dto.js +2 -2
  15. package/dist/src/event-folder/dto/get-all-event-folder.dto.d.ts +42 -0
  16. package/dist/src/event-folder/dto/get-by-id-event-folder.dto.d.ts +30 -0
  17. package/dist/src/i18n/es.d.ts +7 -1
  18. package/dist/src/i18n/es.js +7 -3
  19. package/dist/src/i18n/es.js.map +1 -1
  20. package/dist/src/mi-expo/dto/get-invitations.dto.d.ts +3 -0
  21. package/dist/src/ticket/dto/create-many-ticket.dto.d.ts +30 -0
  22. package/dist/src/ticket/dto/create-ticket.dto.d.ts +30 -0
  23. package/dist/src/ticket/dto/find-all-tickets.dto.d.ts +3 -0
  24. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +3 -0
  25. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +42 -0
  26. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +3 -0
  27. package/dist/src/ticket/dto/find-by-profile-id-ticket.dto.d.ts +42 -0
  28. package/dist/src/ticket-group/dto/create-ticket-group.dto.d.ts +30 -0
  29. package/dist/types/prisma-schema/edge.js +6 -3
  30. package/dist/types/prisma-schema/index-browser.js +3 -0
  31. package/dist/types/prisma-schema/index.d.ts +214 -1
  32. package/dist/types/prisma-schema/index.js +6 -3
  33. package/dist/types/prisma-schema/package.json +1 -1
  34. package/dist/types/prisma-schema/schema.prisma +9 -6
  35. package/dist/types/prisma-schema/wasm.js +3 -0
  36. package/dist/types/schema.d.ts +66 -0
  37. package/package.json +1 -2
@@ -1925,6 +1925,9 @@ export interface components {
1925
1925
  startingDate: string;
1926
1926
  endingDate: string;
1927
1927
  location: string;
1928
+ mainPictureUrl: string | null;
1929
+ bannerUrl: string | null;
1930
+ description: string | null;
1928
1931
  folderId: string | null;
1929
1932
  tagAssistedId: string;
1930
1933
  tagConfirmedId: string;
@@ -1948,6 +1951,9 @@ export interface components {
1948
1951
  startingDate: string;
1949
1952
  endingDate: string;
1950
1953
  location: string;
1954
+ mainPictureUrl: string | null;
1955
+ bannerUrl: string | null;
1956
+ description: string | null;
1951
1957
  folderId: string | null;
1952
1958
  tagAssistedId: string;
1953
1959
  tagConfirmedId: string;
@@ -1982,12 +1988,18 @@ export interface components {
1982
1988
  endingDate: string;
1983
1989
  location: string;
1984
1990
  folderId: string | null;
1991
+ mainPictureUrl: string | null;
1992
+ bannerUrl: string | null;
1993
+ description: string | null;
1985
1994
  subEvents?: {
1986
1995
  name: string;
1987
1996
  date: string;
1988
1997
  startingDate: string;
1989
1998
  endingDate: string;
1990
1999
  location: string;
2000
+ mainPictureUrl: string | null;
2001
+ bannerUrl: string | null;
2002
+ description: string | null;
1991
2003
  }[];
1992
2004
  tagsId: string[];
1993
2005
  eventTickets: {
@@ -2003,6 +2015,9 @@ export interface components {
2003
2015
  startingDate: string;
2004
2016
  endingDate: string;
2005
2017
  location: string;
2018
+ mainPictureUrl: string | null;
2019
+ bannerUrl: string | null;
2020
+ description: string | null;
2006
2021
  folderId: string | null;
2007
2022
  tagAssistedId: string;
2008
2023
  tagConfirmedId: string;
@@ -2025,6 +2040,9 @@ export interface components {
2025
2040
  startingDate: string;
2026
2041
  endingDate: string;
2027
2042
  location: string;
2043
+ mainPictureUrl: string | null;
2044
+ bannerUrl: string | null;
2045
+ description: string | null;
2028
2046
  folderId: string | null;
2029
2047
  tagAssistedId: string;
2030
2048
  tagConfirmedId: string;
@@ -2039,6 +2057,9 @@ export interface components {
2039
2057
  startingDate: string;
2040
2058
  endingDate: string;
2041
2059
  location: string;
2060
+ mainPictureUrl: string | null;
2061
+ bannerUrl: string | null;
2062
+ description: string | null;
2042
2063
  folderId: string | null;
2043
2064
  tagAssistedId: string;
2044
2065
  tagConfirmedId: string;
@@ -2054,6 +2075,9 @@ export interface components {
2054
2075
  startingDate: string;
2055
2076
  endingDate: string;
2056
2077
  location: string;
2078
+ mainPictureUrl: string | null;
2079
+ bannerUrl: string | null;
2080
+ description: string | null;
2057
2081
  folderId: string | null;
2058
2082
  tagAssistedId: string;
2059
2083
  tagConfirmedId: string;
@@ -2088,6 +2112,9 @@ export interface components {
2088
2112
  startingDate: string;
2089
2113
  endingDate: string;
2090
2114
  location: string;
2115
+ mainPictureUrl: string | null;
2116
+ bannerUrl: string | null;
2117
+ description: string | null;
2091
2118
  folderId: string | null;
2092
2119
  tagAssistedId: string;
2093
2120
  tagConfirmedId: string;
@@ -2102,6 +2129,9 @@ export interface components {
2102
2129
  startingDate: string;
2103
2130
  endingDate: string;
2104
2131
  location: string;
2132
+ mainPictureUrl: string | null;
2133
+ bannerUrl: string | null;
2134
+ description: string | null;
2105
2135
  folderId: string | null;
2106
2136
  tagAssistedId: string;
2107
2137
  tagConfirmedId: string;
@@ -2117,6 +2147,9 @@ export interface components {
2117
2147
  startingDate: string;
2118
2148
  endingDate: string;
2119
2149
  location: string;
2150
+ mainPictureUrl: string | null;
2151
+ bannerUrl: string | null;
2152
+ description: string | null;
2120
2153
  folderId: string | null;
2121
2154
  tagAssistedId: string;
2122
2155
  tagConfirmedId: string;
@@ -2152,6 +2185,9 @@ export interface components {
2152
2185
  startingDate: string;
2153
2186
  endingDate: string;
2154
2187
  location: string;
2188
+ mainPictureUrl: string | null;
2189
+ bannerUrl: string | null;
2190
+ description: string | null;
2155
2191
  folderId: string | null;
2156
2192
  tagAssistedId: string;
2157
2193
  tagConfirmedId: string;
@@ -2174,6 +2210,9 @@ export interface components {
2174
2210
  startingDate: string;
2175
2211
  endingDate: string;
2176
2212
  location: string;
2213
+ mainPictureUrl: string | null;
2214
+ bannerUrl: string | null;
2215
+ description: string | null;
2177
2216
  folderId: string | null;
2178
2217
  tagAssistedId: string;
2179
2218
  tagConfirmedId: string;
@@ -2188,6 +2227,9 @@ export interface components {
2188
2227
  startingDate: string;
2189
2228
  endingDate: string;
2190
2229
  location: string;
2230
+ mainPictureUrl: string | null;
2231
+ bannerUrl: string | null;
2232
+ description: string | null;
2191
2233
  folderId: string | null;
2192
2234
  tagAssistedId: string;
2193
2235
  tagConfirmedId: string;
@@ -2203,6 +2245,9 @@ export interface components {
2203
2245
  startingDate: string;
2204
2246
  endingDate: string;
2205
2247
  location: string;
2248
+ mainPictureUrl: string | null;
2249
+ bannerUrl: string | null;
2250
+ description: string | null;
2206
2251
  folderId: string | null;
2207
2252
  tagAssistedId: string;
2208
2253
  tagConfirmedId: string;
@@ -2309,6 +2354,9 @@ export interface components {
2309
2354
  startingDate: string;
2310
2355
  endingDate: string;
2311
2356
  location: string;
2357
+ mainPictureUrl: string | null;
2358
+ bannerUrl: string | null;
2359
+ description: string | null;
2312
2360
  folderId: string | null;
2313
2361
  tagAssistedId: string;
2314
2362
  tagConfirmedId: string;
@@ -2346,6 +2394,9 @@ export interface components {
2346
2394
  startingDate: string;
2347
2395
  endingDate: string;
2348
2396
  location: string;
2397
+ mainPictureUrl: string | null;
2398
+ bannerUrl: string | null;
2399
+ description: string | null;
2349
2400
  folderId: string | null;
2350
2401
  tagAssistedId: string;
2351
2402
  tagConfirmedId: string;
@@ -2913,6 +2964,9 @@ export interface components {
2913
2964
  startingDate: string;
2914
2965
  endingDate: string;
2915
2966
  location: string;
2967
+ mainPictureUrl: string | null;
2968
+ bannerUrl: string | null;
2969
+ description: string | null;
2916
2970
  folderId: string | null;
2917
2971
  tagAssistedId: string;
2918
2972
  tagConfirmedId: string;
@@ -2953,6 +3007,9 @@ export interface components {
2953
3007
  startingDate: string;
2954
3008
  endingDate: string;
2955
3009
  location: string;
3010
+ mainPictureUrl: string | null;
3011
+ bannerUrl: string | null;
3012
+ description: string | null;
2956
3013
  folderId: string | null;
2957
3014
  tagAssistedId: string;
2958
3015
  tagConfirmedId: string;
@@ -3010,6 +3067,9 @@ export interface components {
3010
3067
  startingDate: string;
3011
3068
  endingDate: string;
3012
3069
  location: string;
3070
+ mainPictureUrl: string | null;
3071
+ bannerUrl: string | null;
3072
+ description: string | null;
3013
3073
  folderId: string | null;
3014
3074
  tagAssistedId: string;
3015
3075
  tagConfirmedId: string;
@@ -3162,6 +3222,9 @@ export interface components {
3162
3222
  startingDate: string;
3163
3223
  endingDate: string;
3164
3224
  location: string;
3225
+ mainPictureUrl: string | null;
3226
+ bannerUrl: string | null;
3227
+ description: string | null;
3165
3228
  folderId: string | null;
3166
3229
  tagAssistedId: string;
3167
3230
  tagConfirmedId: string;
@@ -3274,6 +3337,9 @@ export interface components {
3274
3337
  startingDate: string;
3275
3338
  endingDate: string;
3276
3339
  location: string;
3340
+ mainPictureUrl: string | null;
3341
+ bannerUrl: string | null;
3342
+ description: string | null;
3277
3343
  folderId: string | null;
3278
3344
  tagAssistedId: string;
3279
3345
  tagConfirmedId: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-backend-types",
3
- "version": "0.47.0-EXPO-339-Testing-y-bugfixing.1",
3
+ "version": "0.47.0-EXPO-345-ExpoBackend-Agregar-los-nuevos-requerimientos-a-las-rutas.1",
4
4
  "description": "",
5
5
  "author": "Expo",
6
6
  "private": false,
@@ -44,7 +44,6 @@
44
44
  "devDependencies": {
45
45
  "@arethetypeswrong/cli": "^0.17.3",
46
46
  "@changesets/cli": "^2.27.7",
47
- "@date-fns/tz": "^1.2.0",
48
47
  "@nestjs/cli": "^11.0.5",
49
48
  "@nestjs/common": "^11.0.12",
50
49
  "@nestjs/config": "^4.0.2",