expo-backend-types 0.35.0 → 0.36.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.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 (39) 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/mi-expo/dto/get-me.dto.d.ts +6 -4
  9. package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +10 -8
  10. package/dist/src/mi-expo/dto/login.dto.d.ts +11 -8
  11. package/dist/src/mi-expo/dto/update-me.dto.d.ts +6 -4
  12. package/dist/src/otp/dto/verify-otp.dto.d.ts +10 -8
  13. package/dist/src/profile/dto/create-profile.dto.d.ts +4 -0
  14. package/dist/src/profile/dto/delete-profile.dto.d.ts +6 -4
  15. package/dist/src/profile/dto/find-all-profile.dto.d.ts +10 -8
  16. package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +16 -12
  17. package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +6 -4
  18. package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +6 -4
  19. package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +10 -8
  20. package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +10 -8
  21. package/dist/src/profile/dto/find-trash.dto.d.ts +1 -0
  22. package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +10 -8
  23. package/dist/src/profile/dto/profile.dto.d.ts +3 -2
  24. package/dist/src/profile/dto/update-profile.dto.d.ts +6 -4
  25. package/dist/src/schema/profile.schema.d.ts +3 -2
  26. package/dist/src/tag/dto/massive-allocation.dto.d.ts +10 -8
  27. package/dist/src/tag/dto/massive-deallocation.dto.d.ts +10 -8
  28. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +14 -12
  29. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +14 -12
  30. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +14 -12
  31. package/dist/types/prisma-schema/edge.js +4 -3
  32. package/dist/types/prisma-schema/index-browser.js +1 -0
  33. package/dist/types/prisma-schema/index.d.ts +1 -0
  34. package/dist/types/prisma-schema/index.js +4 -3
  35. package/dist/types/prisma-schema/package.json +1 -1
  36. package/dist/types/prisma-schema/schema.prisma +1 -0
  37. package/dist/types/prisma-schema/wasm.js +1 -0
  38. package/dist/types/schema.d.ts +22 -22
  39. package/package.json +1 -1
@@ -1259,7 +1259,7 @@ export interface components {
1259
1259
  user: {
1260
1260
  id: string;
1261
1261
  username: string;
1262
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
1262
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
1263
1263
  isGlobalFilterActive: boolean;
1264
1264
  fcmToken: string[];
1265
1265
  created_at: string;
@@ -1371,7 +1371,7 @@ export interface components {
1371
1371
  profiles: {
1372
1372
  id: string;
1373
1373
  shortId: number;
1374
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
1374
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
1375
1375
  firstTimeMiExpo: boolean;
1376
1376
  username: string | null;
1377
1377
  password: string | null;
@@ -1403,7 +1403,7 @@ export interface components {
1403
1403
  profiles: {
1404
1404
  id: string;
1405
1405
  shortId: number;
1406
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
1406
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
1407
1407
  firstTimeMiExpo: boolean;
1408
1408
  username: string | null;
1409
1409
  password: string | null;
@@ -1430,12 +1430,12 @@ export interface components {
1430
1430
  CreateAccountDto: {
1431
1431
  username: string;
1432
1432
  password: string;
1433
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
1433
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
1434
1434
  };
1435
1435
  CreateAccountResponseDto: {
1436
1436
  id: string;
1437
1437
  username: string;
1438
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
1438
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
1439
1439
  isGlobalFilterActive: boolean;
1440
1440
  fcmToken: string[];
1441
1441
  };
@@ -1447,7 +1447,7 @@ export interface components {
1447
1447
  id: string;
1448
1448
  username: string;
1449
1449
  password: string;
1450
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
1450
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
1451
1451
  isGlobalFilterActive: boolean;
1452
1452
  fcmToken: string[];
1453
1453
  created_at: string;
@@ -1477,7 +1477,7 @@ export interface components {
1477
1477
  GetMeResponseDto: {
1478
1478
  id: string;
1479
1479
  username: string;
1480
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
1480
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
1481
1481
  isGlobalFilterActive: boolean;
1482
1482
  fcmToken: string[];
1483
1483
  created_at: string;
@@ -2146,7 +2146,7 @@ export interface components {
2146
2146
  profiles: {
2147
2147
  id: string;
2148
2148
  shortId: number;
2149
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
2149
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
2150
2150
  firstTimeMiExpo: boolean;
2151
2151
  username: string | null;
2152
2152
  password: string | null;
@@ -2186,7 +2186,7 @@ export interface components {
2186
2186
  profiles: {
2187
2187
  id: string;
2188
2188
  shortId: number;
2189
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
2189
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
2190
2190
  firstTimeMiExpo: boolean;
2191
2191
  username: string | null;
2192
2192
  password: string | null;
@@ -2244,7 +2244,7 @@ export interface components {
2244
2244
  profiles: {
2245
2245
  id: string;
2246
2246
  shortId: number;
2247
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
2247
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
2248
2248
  firstTimeMiExpo: boolean;
2249
2249
  username: string | null;
2250
2250
  password: string | null;
@@ -2285,7 +2285,7 @@ export interface components {
2285
2285
  profiles: {
2286
2286
  id: string;
2287
2287
  shortId: number;
2288
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
2288
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
2289
2289
  firstTimeMiExpo: boolean;
2290
2290
  username: string | null;
2291
2291
  password: string | null;
@@ -2321,7 +2321,7 @@ export interface components {
2321
2321
  [key: string]: {
2322
2322
  id: string;
2323
2323
  shortId: number;
2324
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
2324
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
2325
2325
  firstTimeMiExpo: boolean;
2326
2326
  username: string | null;
2327
2327
  password: string | null;
@@ -2359,7 +2359,7 @@ export interface components {
2359
2359
  FindByPhoneNumberResponseDto: {
2360
2360
  id: string;
2361
2361
  shortId: number;
2362
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
2362
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
2363
2363
  firstTimeMiExpo: boolean;
2364
2364
  username: string | null;
2365
2365
  password: string | null;
@@ -2449,7 +2449,7 @@ export interface components {
2449
2449
  FindByIdProfileResponseDto: {
2450
2450
  id: string;
2451
2451
  shortId: number;
2452
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
2452
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
2453
2453
  firstTimeMiExpo: boolean;
2454
2454
  username: string | null;
2455
2455
  phoneNumber: string;
@@ -2507,7 +2507,7 @@ export interface components {
2507
2507
  DeleteProfileResponseDto: {
2508
2508
  id: string;
2509
2509
  shortId: number;
2510
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
2510
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
2511
2511
  firstTimeMiExpo: boolean;
2512
2512
  username: string | null;
2513
2513
  password: string | null;
@@ -2740,7 +2740,7 @@ export interface components {
2740
2740
  profile: {
2741
2741
  id: string;
2742
2742
  shortId: number;
2743
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
2743
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
2744
2744
  firstTimeMiExpo: boolean;
2745
2745
  username: string | null;
2746
2746
  password: string | null;
@@ -2783,7 +2783,7 @@ export interface components {
2783
2783
  profile: {
2784
2784
  id: string;
2785
2785
  shortId: number;
2786
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
2786
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
2787
2787
  firstTimeMiExpo: boolean;
2788
2788
  username: string | null;
2789
2789
  password: string | null;
@@ -2826,7 +2826,7 @@ export interface components {
2826
2826
  profile: {
2827
2827
  id: string;
2828
2828
  shortId: number;
2829
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
2829
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
2830
2830
  firstTimeMiExpo: boolean;
2831
2831
  username: string | null;
2832
2832
  password: string | null;
@@ -2938,7 +2938,7 @@ export interface components {
2938
2938
  profile: {
2939
2939
  id: string;
2940
2940
  shortId: number;
2941
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
2941
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
2942
2942
  firstTimeMiExpo: boolean;
2943
2943
  username: string | null;
2944
2944
  password: string | null;
@@ -2986,7 +2986,7 @@ export interface components {
2986
2986
  profile: {
2987
2987
  id: string;
2988
2988
  shortId: number;
2989
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
2989
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
2990
2990
  firstTimeMiExpo: boolean;
2991
2991
  username: string | null;
2992
2992
  phoneNumber: string;
@@ -3012,7 +3012,7 @@ export interface components {
3012
3012
  GetMiExpoMeResponseDto: {
3013
3013
  id: string;
3014
3014
  shortId: number;
3015
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
3015
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
3016
3016
  firstTimeMiExpo: boolean;
3017
3017
  username: string | null;
3018
3018
  phoneNumber: string;
@@ -3099,7 +3099,7 @@ export interface components {
3099
3099
  user: {
3100
3100
  id: string;
3101
3101
  shortId: number;
3102
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
3102
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
3103
3103
  firstTimeMiExpo: boolean;
3104
3104
  username: string | null;
3105
3105
  phoneNumber: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-backend-types",
3
- "version": "0.35.0",
3
+ "version": "0.36.0-EXPO-325-ExpoBackend-Emision-de-multiples-tickets.1",
4
4
  "description": "",
5
5
  "author": "Expo",
6
6
  "private": false,