expo-backend-types 0.35.0-EXPO-323-Enviar-mail-ticket.2 → 0.35.0-EXPO-322-ExpoBackend-Rol-de-expoTickets.2

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 (44) hide show
  1. package/dist/src/account/dto/account.dto.d.ts +6 -6
  2. package/dist/src/account/dto/create-account.dto.d.ts +12 -12
  3. package/dist/src/account/dto/get-global-filter.dto.d.ts +1 -1
  4. package/dist/src/account/dto/get-me.dto.d.ts +6 -6
  5. package/dist/src/account/dto/update-global-filter.dto.d.ts +6 -6
  6. package/dist/src/auth/dto/login.dto.d.ts +11 -11
  7. package/dist/src/comment/dto/get-by-profile-comment.dto.d.ts +1 -1
  8. package/dist/src/i18n/es.d.ts +0 -10
  9. package/dist/src/i18n/es.js +0 -10
  10. package/dist/src/i18n/es.js.map +1 -1
  11. package/dist/src/mi-expo/dto/get-me.dto.d.ts +6 -6
  12. package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +10 -10
  13. package/dist/src/mi-expo/dto/login.dto.d.ts +11 -11
  14. package/dist/src/mi-expo/dto/update-me.dto.d.ts +6 -6
  15. package/dist/src/otp/dto/verify-otp.dto.d.ts +10 -10
  16. package/dist/src/profile/dto/create-profile.dto.d.ts +4 -4
  17. package/dist/src/profile/dto/delete-profile.dto.d.ts +6 -6
  18. package/dist/src/profile/dto/find-all-profile.dto.d.ts +10 -10
  19. package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +16 -16
  20. package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +6 -6
  21. package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +6 -6
  22. package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +10 -10
  23. package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +10 -10
  24. package/dist/src/profile/dto/find-trash.dto.d.ts +1 -1
  25. package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +10 -10
  26. package/dist/src/profile/dto/profile.dto.d.ts +3 -3
  27. package/dist/src/profile/dto/update-profile.dto.d.ts +6 -6
  28. package/dist/src/schema/profile.schema.d.ts +3 -3
  29. package/dist/src/tag/dto/massive-allocation.dto.d.ts +10 -10
  30. package/dist/src/tag/dto/massive-deallocation.dto.d.ts +10 -10
  31. package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +14 -14
  32. package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +14 -14
  33. package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +14 -14
  34. package/dist/types/prisma-schema/edge.js +5 -5
  35. package/dist/types/prisma-schema/index-browser.js +2 -2
  36. package/dist/types/prisma-schema/index.d.ts +2 -2
  37. package/dist/types/prisma-schema/index.js +5 -5
  38. package/dist/types/prisma-schema/package.json +1 -1
  39. package/dist/types/prisma-schema/schema.prisma +1 -1
  40. package/dist/types/prisma-schema/wasm.js +2 -2
  41. package/dist/types/schema.d.ts +22 -78
  42. package/package.json +2 -3
  43. package/dist/src/ticket/dto/send-email.dto.d.ts +0 -18
  44. package/dist/src/ticket/dto/send-email.dto.js +0 -15
@@ -1119,22 +1119,6 @@ export interface paths {
1119
1119
  patch?: never;
1120
1120
  trace?: never;
1121
1121
  };
1122
- "/ticket/send-email/{id}": {
1123
- parameters: {
1124
- query?: never;
1125
- header?: never;
1126
- path?: never;
1127
- cookie?: never;
1128
- };
1129
- get?: never;
1130
- put?: never;
1131
- post: operations["TicketController_sendEmail"];
1132
- delete?: never;
1133
- options?: never;
1134
- head?: never;
1135
- patch?: never;
1136
- trace?: never;
1137
- };
1138
1122
  "/webhook": {
1139
1123
  parameters: {
1140
1124
  query?: never;
@@ -1275,7 +1259,7 @@ export interface components {
1275
1259
  user: {
1276
1260
  id: string;
1277
1261
  username: string;
1278
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
1262
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
1279
1263
  isGlobalFilterActive: boolean;
1280
1264
  fcmToken: string[];
1281
1265
  created_at: string;
@@ -1387,7 +1371,7 @@ export interface components {
1387
1371
  profiles: {
1388
1372
  id: string;
1389
1373
  shortId: number;
1390
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
1374
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
1391
1375
  firstTimeMiExpo: boolean;
1392
1376
  username: string | null;
1393
1377
  password: string | null;
@@ -1419,7 +1403,7 @@ export interface components {
1419
1403
  profiles: {
1420
1404
  id: string;
1421
1405
  shortId: number;
1422
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
1406
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
1423
1407
  firstTimeMiExpo: boolean;
1424
1408
  username: string | null;
1425
1409
  password: string | null;
@@ -1446,12 +1430,12 @@ export interface components {
1446
1430
  CreateAccountDto: {
1447
1431
  username: string;
1448
1432
  password: string;
1449
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
1433
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
1450
1434
  };
1451
1435
  CreateAccountResponseDto: {
1452
1436
  id: string;
1453
1437
  username: string;
1454
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
1438
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
1455
1439
  isGlobalFilterActive: boolean;
1456
1440
  fcmToken: string[];
1457
1441
  };
@@ -1463,7 +1447,7 @@ export interface components {
1463
1447
  id: string;
1464
1448
  username: string;
1465
1449
  password: string;
1466
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
1450
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
1467
1451
  isGlobalFilterActive: boolean;
1468
1452
  fcmToken: string[];
1469
1453
  created_at: string;
@@ -1493,7 +1477,7 @@ export interface components {
1493
1477
  GetMeResponseDto: {
1494
1478
  id: string;
1495
1479
  username: string;
1496
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
1480
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
1497
1481
  isGlobalFilterActive: boolean;
1498
1482
  fcmToken: string[];
1499
1483
  created_at: string;
@@ -2162,7 +2146,7 @@ export interface components {
2162
2146
  profiles: {
2163
2147
  id: string;
2164
2148
  shortId: number;
2165
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
2149
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
2166
2150
  firstTimeMiExpo: boolean;
2167
2151
  username: string | null;
2168
2152
  password: string | null;
@@ -2202,7 +2186,7 @@ export interface components {
2202
2186
  profiles: {
2203
2187
  id: string;
2204
2188
  shortId: number;
2205
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
2189
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
2206
2190
  firstTimeMiExpo: boolean;
2207
2191
  username: string | null;
2208
2192
  password: string | null;
@@ -2260,7 +2244,7 @@ export interface components {
2260
2244
  profiles: {
2261
2245
  id: string;
2262
2246
  shortId: number;
2263
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
2247
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
2264
2248
  firstTimeMiExpo: boolean;
2265
2249
  username: string | null;
2266
2250
  password: string | null;
@@ -2301,7 +2285,7 @@ export interface components {
2301
2285
  profiles: {
2302
2286
  id: string;
2303
2287
  shortId: number;
2304
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
2288
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
2305
2289
  firstTimeMiExpo: boolean;
2306
2290
  username: string | null;
2307
2291
  password: string | null;
@@ -2337,7 +2321,7 @@ export interface components {
2337
2321
  [key: string]: {
2338
2322
  id: string;
2339
2323
  shortId: number;
2340
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
2324
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
2341
2325
  firstTimeMiExpo: boolean;
2342
2326
  username: string | null;
2343
2327
  password: string | null;
@@ -2375,7 +2359,7 @@ export interface components {
2375
2359
  FindByPhoneNumberResponseDto: {
2376
2360
  id: string;
2377
2361
  shortId: number;
2378
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
2362
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
2379
2363
  firstTimeMiExpo: boolean;
2380
2364
  username: string | null;
2381
2365
  password: string | null;
@@ -2465,7 +2449,7 @@ export interface components {
2465
2449
  FindByIdProfileResponseDto: {
2466
2450
  id: string;
2467
2451
  shortId: number;
2468
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
2452
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
2469
2453
  firstTimeMiExpo: boolean;
2470
2454
  username: string | null;
2471
2455
  phoneNumber: string;
@@ -2523,7 +2507,7 @@ export interface components {
2523
2507
  DeleteProfileResponseDto: {
2524
2508
  id: string;
2525
2509
  shortId: number;
2526
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
2510
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
2527
2511
  firstTimeMiExpo: boolean;
2528
2512
  username: string | null;
2529
2513
  password: string | null;
@@ -2756,7 +2740,7 @@ export interface components {
2756
2740
  profile: {
2757
2741
  id: string;
2758
2742
  shortId: number;
2759
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
2743
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
2760
2744
  firstTimeMiExpo: boolean;
2761
2745
  username: string | null;
2762
2746
  password: string | null;
@@ -2799,7 +2783,7 @@ export interface components {
2799
2783
  profile: {
2800
2784
  id: string;
2801
2785
  shortId: number;
2802
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
2786
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
2803
2787
  firstTimeMiExpo: boolean;
2804
2788
  username: string | null;
2805
2789
  password: string | null;
@@ -2842,7 +2826,7 @@ export interface components {
2842
2826
  profile: {
2843
2827
  id: string;
2844
2828
  shortId: number;
2845
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
2829
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
2846
2830
  firstTimeMiExpo: boolean;
2847
2831
  username: string | null;
2848
2832
  password: string | null;
@@ -2930,9 +2914,6 @@ export interface components {
2930
2914
  created_at: string;
2931
2915
  updated_at: string;
2932
2916
  };
2933
- SendEmailResponseDto: {
2934
- mailId: string;
2935
- };
2936
2917
  SendOtpDto: {
2937
2918
  phoneNumber: string;
2938
2919
  };
@@ -2957,7 +2938,7 @@ export interface components {
2957
2938
  profile: {
2958
2939
  id: string;
2959
2940
  shortId: number;
2960
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
2941
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
2961
2942
  firstTimeMiExpo: boolean;
2962
2943
  username: string | null;
2963
2944
  password: string | null;
@@ -3005,7 +2986,7 @@ export interface components {
3005
2986
  profile: {
3006
2987
  id: string;
3007
2988
  shortId: number;
3008
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
2989
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
3009
2990
  firstTimeMiExpo: boolean;
3010
2991
  username: string | null;
3011
2992
  phoneNumber: string;
@@ -3031,7 +3012,7 @@ export interface components {
3031
3012
  GetMiExpoMeResponseDto: {
3032
3013
  id: string;
3033
3014
  shortId: number;
3034
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
3015
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
3035
3016
  firstTimeMiExpo: boolean;
3036
3017
  username: string | null;
3037
3018
  phoneNumber: string;
@@ -3118,7 +3099,7 @@ export interface components {
3118
3099
  user: {
3119
3100
  id: string;
3120
3101
  shortId: number;
3121
- role: "USER" | "ADMIN" | "FORM" | "MI_EXPO" | "TICKETS";
3102
+ role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
3122
3103
  firstTimeMiExpo: boolean;
3123
3104
  username: string | null;
3124
3105
  phoneNumber: string;
@@ -5374,43 +5355,6 @@ export interface operations {
5374
5355
  };
5375
5356
  };
5376
5357
  };
5377
- TicketController_sendEmail: {
5378
- parameters: {
5379
- query?: never;
5380
- header?: never;
5381
- path: {
5382
- id: string;
5383
- };
5384
- cookie?: never;
5385
- };
5386
- requestBody?: never;
5387
- responses: {
5388
- 200: {
5389
- headers: {
5390
- [name: string]: unknown;
5391
- };
5392
- content: {
5393
- "application/json": components["schemas"]["SendEmailResponseDto"];
5394
- };
5395
- };
5396
- 401: {
5397
- headers: {
5398
- [name: string]: unknown;
5399
- };
5400
- content: {
5401
- "application/json": components["schemas"]["ErrorDto"];
5402
- };
5403
- };
5404
- 404: {
5405
- headers: {
5406
- [name: string]: unknown;
5407
- };
5408
- content: {
5409
- "application/json": components["schemas"]["ErrorDto"];
5410
- };
5411
- };
5412
- };
5413
- };
5414
5358
  WebhookController_verify: {
5415
5359
  parameters: {
5416
5360
  query: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-backend-types",
3
- "version": "0.35.0-EXPO-323-Enviar-mail-ticket.2",
3
+ "version": "0.35.0-EXPO-322-ExpoBackend-Rol-de-expoTickets.2",
4
4
  "description": "",
5
5
  "author": "Expo",
6
6
  "private": false,
@@ -73,10 +73,10 @@
73
73
  "class-validator": "^0.14.1",
74
74
  "country-state-city": "^3.2.1",
75
75
  "date-fns": "^4.1.0",
76
- "eslint": "^9.11.1",
77
76
  "eslint-config-prettier": "^9.0.0",
78
77
  "eslint-plugin-prettier": "^5.0.0",
79
78
  "eslint-plugin-unused-imports": "^4.1.4",
79
+ "eslint": "^9.11.1",
80
80
  "exceljs": "^4.4.0",
81
81
  "fast-csv": "^5.0.2",
82
82
  "globals": "^15.10.0",
@@ -93,7 +93,6 @@
93
93
  "prettier": "^3.0.0",
94
94
  "prisma": "^6.3.1",
95
95
  "reflect-metadata": "^0.2.0",
96
- "resend": "^4.1.2",
97
96
  "source-map-support": "^0.5.21",
98
97
  "string-comparison": "^1.3.0",
99
98
  "ts-node": "^10.9.2",
@@ -1,18 +0,0 @@
1
- import z from 'zod';
2
- export declare const sendEmailResponseSchema: z.ZodObject<{
3
- mailId: z.ZodString;
4
- }, "strip", z.ZodTypeAny, {
5
- mailId: string;
6
- }, {
7
- mailId: string;
8
- }>;
9
- declare const SendEmailResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
10
- mailId: z.ZodString;
11
- }, z.UnknownKeysParam, z.ZodTypeAny, {
12
- mailId: string;
13
- }, {
14
- mailId: string;
15
- }>>;
16
- export declare class SendEmailResponseDto extends SendEmailResponseDto_base {
17
- }
18
- export {};
@@ -1,15 +0,0 @@
1
- "use strict";
2
- var __importDefault = (this && this.__importDefault) || function (mod) {
3
- return (mod && mod.__esModule) ? mod : { "default": mod };
4
- };
5
- Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.SendEmailResponseDto = exports.sendEmailResponseSchema = void 0;
7
- const create_zod_dto_without_date_1 = require("../../shared/dto-modification/create-zod-dto-without-date");
8
- const zod_1 = __importDefault(require("zod"));
9
- exports.sendEmailResponseSchema = zod_1.default.object({
10
- mailId: zod_1.default.string(),
11
- });
12
- class SendEmailResponseDto extends (0, create_zod_dto_without_date_1.createZodDtoWithoutDate)(exports.sendEmailResponseSchema) {
13
- }
14
- exports.SendEmailResponseDto = SendEmailResponseDto;
15
- //# sourceMappingURL=send-email.dto.js.map