expo-backend-types 0.36.0-EXPO-323-Enviar-mail-ticket.6 → 0.36.0-EXPO-323-Enviar-mail-ticket.7
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.
- package/dist/src/account/dto/account.dto.d.ts +6 -6
- package/dist/src/account/dto/create-account.dto.d.ts +12 -12
- package/dist/src/account/dto/get-global-filter.dto.d.ts +1 -1
- package/dist/src/account/dto/get-me.dto.d.ts +6 -6
- package/dist/src/account/dto/update-global-filter.dto.d.ts +6 -6
- package/dist/src/auth/dto/login.dto.d.ts +11 -11
- package/dist/src/comment/dto/get-by-profile-comment.dto.d.ts +1 -1
- package/dist/src/mi-expo/dto/get-me.dto.d.ts +6 -6
- package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +10 -10
- package/dist/src/mi-expo/dto/login.dto.d.ts +11 -11
- package/dist/src/mi-expo/dto/update-me.dto.d.ts +6 -6
- package/dist/src/otp/dto/verify-otp.dto.d.ts +10 -10
- package/dist/src/profile/dto/create-profile.dto.d.ts +4 -4
- package/dist/src/profile/dto/delete-profile.dto.d.ts +6 -6
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +10 -10
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +16 -16
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +6 -6
- package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +6 -6
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +10 -10
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +10 -10
- package/dist/src/profile/dto/find-trash.dto.d.ts +1 -1
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +10 -10
- package/dist/src/profile/dto/profile.dto.d.ts +3 -3
- package/dist/src/profile/dto/update-profile.dto.d.ts +6 -6
- package/dist/src/schema/profile.schema.d.ts +3 -3
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +10 -10
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +10 -10
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +14 -14
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +14 -14
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +14 -14
- package/dist/types/prisma-schema/edge.js +5 -5
- package/dist/types/prisma-schema/index-browser.js +2 -2
- package/dist/types/prisma-schema/index.d.ts +2 -2
- package/dist/types/prisma-schema/index.js +5 -5
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +1 -1
- package/dist/types/prisma-schema/wasm.js +2 -2
- package/dist/types/schema.d.ts +22 -22
- package/package.json +1 -1
package/dist/types/schema.d.ts
CHANGED
@@ -1275,7 +1275,7 @@ export interface components {
|
|
1275
1275
|
user: {
|
1276
1276
|
id: string;
|
1277
1277
|
username: string;
|
1278
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
1278
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
1279
1279
|
isGlobalFilterActive: boolean;
|
1280
1280
|
fcmToken: string[];
|
1281
1281
|
created_at: string;
|
@@ -1387,7 +1387,7 @@ export interface components {
|
|
1387
1387
|
profiles: {
|
1388
1388
|
id: string;
|
1389
1389
|
shortId: number;
|
1390
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
1390
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
1391
1391
|
firstTimeMiExpo: boolean;
|
1392
1392
|
username: string | null;
|
1393
1393
|
password: string | null;
|
@@ -1419,7 +1419,7 @@ export interface components {
|
|
1419
1419
|
profiles: {
|
1420
1420
|
id: string;
|
1421
1421
|
shortId: number;
|
1422
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
1422
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
1423
1423
|
firstTimeMiExpo: boolean;
|
1424
1424
|
username: string | null;
|
1425
1425
|
password: string | null;
|
@@ -1446,12 +1446,12 @@ export interface components {
|
|
1446
1446
|
CreateAccountDto: {
|
1447
1447
|
username: string;
|
1448
1448
|
password: string;
|
1449
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
1449
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
1450
1450
|
};
|
1451
1451
|
CreateAccountResponseDto: {
|
1452
1452
|
id: string;
|
1453
1453
|
username: string;
|
1454
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
1454
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
1455
1455
|
isGlobalFilterActive: boolean;
|
1456
1456
|
fcmToken: string[];
|
1457
1457
|
};
|
@@ -1463,7 +1463,7 @@ export interface components {
|
|
1463
1463
|
id: string;
|
1464
1464
|
username: string;
|
1465
1465
|
password: string;
|
1466
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
1466
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
1467
1467
|
isGlobalFilterActive: boolean;
|
1468
1468
|
fcmToken: string[];
|
1469
1469
|
created_at: string;
|
@@ -1493,7 +1493,7 @@ export interface components {
|
|
1493
1493
|
GetMeResponseDto: {
|
1494
1494
|
id: string;
|
1495
1495
|
username: string;
|
1496
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
1496
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
1497
1497
|
isGlobalFilterActive: boolean;
|
1498
1498
|
fcmToken: string[];
|
1499
1499
|
created_at: string;
|
@@ -2164,7 +2164,7 @@ export interface components {
|
|
2164
2164
|
profiles: {
|
2165
2165
|
id: string;
|
2166
2166
|
shortId: number;
|
2167
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
2167
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
2168
2168
|
firstTimeMiExpo: boolean;
|
2169
2169
|
username: string | null;
|
2170
2170
|
password: string | null;
|
@@ -2204,7 +2204,7 @@ export interface components {
|
|
2204
2204
|
profiles: {
|
2205
2205
|
id: string;
|
2206
2206
|
shortId: number;
|
2207
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
2207
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
2208
2208
|
firstTimeMiExpo: boolean;
|
2209
2209
|
username: string | null;
|
2210
2210
|
password: string | null;
|
@@ -2262,7 +2262,7 @@ export interface components {
|
|
2262
2262
|
profiles: {
|
2263
2263
|
id: string;
|
2264
2264
|
shortId: number;
|
2265
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
2265
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
2266
2266
|
firstTimeMiExpo: boolean;
|
2267
2267
|
username: string | null;
|
2268
2268
|
password: string | null;
|
@@ -2303,7 +2303,7 @@ export interface components {
|
|
2303
2303
|
profiles: {
|
2304
2304
|
id: string;
|
2305
2305
|
shortId: number;
|
2306
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
2306
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
2307
2307
|
firstTimeMiExpo: boolean;
|
2308
2308
|
username: string | null;
|
2309
2309
|
password: string | null;
|
@@ -2339,7 +2339,7 @@ export interface components {
|
|
2339
2339
|
[key: string]: {
|
2340
2340
|
id: string;
|
2341
2341
|
shortId: number;
|
2342
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
2342
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
2343
2343
|
firstTimeMiExpo: boolean;
|
2344
2344
|
username: string | null;
|
2345
2345
|
password: string | null;
|
@@ -2377,7 +2377,7 @@ export interface components {
|
|
2377
2377
|
FindByPhoneNumberResponseDto: {
|
2378
2378
|
id: string;
|
2379
2379
|
shortId: number;
|
2380
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
2380
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
2381
2381
|
firstTimeMiExpo: boolean;
|
2382
2382
|
username: string | null;
|
2383
2383
|
password: string | null;
|
@@ -2467,7 +2467,7 @@ export interface components {
|
|
2467
2467
|
FindByIdProfileResponseDto: {
|
2468
2468
|
id: string;
|
2469
2469
|
shortId: number;
|
2470
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
2470
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
2471
2471
|
firstTimeMiExpo: boolean;
|
2472
2472
|
username: string | null;
|
2473
2473
|
phoneNumber: string;
|
@@ -2525,7 +2525,7 @@ export interface components {
|
|
2525
2525
|
DeleteProfileResponseDto: {
|
2526
2526
|
id: string;
|
2527
2527
|
shortId: number;
|
2528
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
2528
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
2529
2529
|
firstTimeMiExpo: boolean;
|
2530
2530
|
username: string | null;
|
2531
2531
|
password: string | null;
|
@@ -2765,7 +2765,7 @@ export interface components {
|
|
2765
2765
|
profile: {
|
2766
2766
|
id: string;
|
2767
2767
|
shortId: number;
|
2768
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
2768
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
2769
2769
|
firstTimeMiExpo: boolean;
|
2770
2770
|
username: string | null;
|
2771
2771
|
password: string | null;
|
@@ -2810,7 +2810,7 @@ export interface components {
|
|
2810
2810
|
profile: {
|
2811
2811
|
id: string;
|
2812
2812
|
shortId: number;
|
2813
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
2813
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
2814
2814
|
firstTimeMiExpo: boolean;
|
2815
2815
|
username: string | null;
|
2816
2816
|
password: string | null;
|
@@ -2855,7 +2855,7 @@ export interface components {
|
|
2855
2855
|
profile: {
|
2856
2856
|
id: string;
|
2857
2857
|
shortId: number;
|
2858
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
2858
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
2859
2859
|
firstTimeMiExpo: boolean;
|
2860
2860
|
username: string | null;
|
2861
2861
|
password: string | null;
|
@@ -2978,7 +2978,7 @@ export interface components {
|
|
2978
2978
|
profile: {
|
2979
2979
|
id: string;
|
2980
2980
|
shortId: number;
|
2981
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
2981
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
2982
2982
|
firstTimeMiExpo: boolean;
|
2983
2983
|
username: string | null;
|
2984
2984
|
password: string | null;
|
@@ -3026,7 +3026,7 @@ export interface components {
|
|
3026
3026
|
profile: {
|
3027
3027
|
id: string;
|
3028
3028
|
shortId: number;
|
3029
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
3029
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
3030
3030
|
firstTimeMiExpo: boolean;
|
3031
3031
|
username: string | null;
|
3032
3032
|
phoneNumber: string;
|
@@ -3052,7 +3052,7 @@ export interface components {
|
|
3052
3052
|
GetMiExpoMeResponseDto: {
|
3053
3053
|
id: string;
|
3054
3054
|
shortId: number;
|
3055
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
3055
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
3056
3056
|
firstTimeMiExpo: boolean;
|
3057
3057
|
username: string | null;
|
3058
3058
|
phoneNumber: string;
|
@@ -3139,7 +3139,7 @@ export interface components {
|
|
3139
3139
|
user: {
|
3140
3140
|
id: string;
|
3141
3141
|
shortId: number;
|
3142
|
-
role: "USER" | "ADMIN" | "FORM" | "
|
3142
|
+
role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
|
3143
3143
|
firstTimeMiExpo: boolean;
|
3144
3144
|
username: string | null;
|
3145
3145
|
phoneNumber: string;
|