expo-backend-types 0.34.0-EXPO-319-ver-eventos-disponibles.11 → 0.34.0-EXPO-319-ver-eventos-disponibles.12
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 -4
- package/dist/src/account/dto/create-account.dto.d.ts +12 -8
- package/dist/src/account/dto/get-global-filter.dto.d.ts +1 -0
- package/dist/src/account/dto/get-me.dto.d.ts +6 -4
- package/dist/src/account/dto/update-global-filter.dto.d.ts +6 -4
- package/dist/src/auth/dto/login.dto.d.ts +11 -8
- package/dist/src/comment/dto/get-by-profile-comment.dto.d.ts +1 -0
- package/dist/src/i18n/es.d.ts +2 -0
- package/dist/src/i18n/es.js +2 -0
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/mi-expo/dto/get-me.dto.d.ts +16 -0
- package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +20 -0
- package/dist/src/mi-expo/dto/login.dto.d.ts +21 -0
- package/dist/src/mi-expo/dto/update-me.dto.d.ts +16 -0
- package/dist/src/mi-expo/exports.d.ts +1 -0
- package/dist/src/mi-expo/exports.js +1 -0
- package/dist/src/otp/dto/verify-otp.dto.d.ts +20 -0
- package/dist/src/profile/dto/create-profile.dto.d.ts +24 -0
- package/dist/src/profile/dto/delete-profile.dto.d.ts +16 -0
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +20 -0
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +36 -0
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +16 -0
- package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +16 -0
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +20 -0
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +20 -0
- package/dist/src/profile/dto/find-trash.dto.d.ts +6 -0
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +20 -0
- package/dist/src/profile/dto/profile.dto.d.ts +8 -0
- package/dist/src/profile/dto/update-profile.dto.d.ts +16 -0
- package/dist/src/schema/profile.schema.d.ts +8 -0
- package/dist/src/schema/profile.schema.js +2 -0
- package/dist/src/tag/dto/massive-allocation.dto.d.ts +20 -0
- package/dist/src/tag/dto/massive-deallocation.dto.d.ts +20 -0
- package/dist/src/ticket/dto/find-by-event-ticket.dto.d.ts +24 -0
- package/dist/src/ticket/dto/find-by-id-ticket.dto.d.ts +24 -0
- package/dist/src/ticket/dto/find-by-mail-ticket.dto.d.ts +24 -0
- package/dist/types/prisma-schema/edge.js +6 -4
- package/dist/types/prisma-schema/index-browser.js +3 -1
- package/dist/types/prisma-schema/index.d.ts +66 -2
- package/dist/types/prisma-schema/index.js +6 -4
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +3 -0
- package/dist/types/prisma-schema/wasm.js +3 -1
- package/dist/types/schema.d.ts +22 -5
- 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" | "MI_EXPO";
|
1279
1279
|
isGlobalFilterActive: boolean;
|
1280
1280
|
fcmToken: string[];
|
1281
1281
|
created_at: string;
|
@@ -1387,6 +1387,7 @@ export interface components {
|
|
1387
1387
|
profiles: {
|
1388
1388
|
id: string;
|
1389
1389
|
shortId: number;
|
1390
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
1390
1391
|
firstTimeMiExpo: boolean;
|
1391
1392
|
username: string | null;
|
1392
1393
|
password: string | null;
|
@@ -1418,6 +1419,7 @@ export interface components {
|
|
1418
1419
|
profiles: {
|
1419
1420
|
id: string;
|
1420
1421
|
shortId: number;
|
1422
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
1421
1423
|
firstTimeMiExpo: boolean;
|
1422
1424
|
username: string | null;
|
1423
1425
|
password: string | null;
|
@@ -1444,12 +1446,12 @@ export interface components {
|
|
1444
1446
|
CreateAccountDto: {
|
1445
1447
|
username: string;
|
1446
1448
|
password: string;
|
1447
|
-
role: "USER" | "ADMIN" | "FORM";
|
1449
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
1448
1450
|
};
|
1449
1451
|
CreateAccountResponseDto: {
|
1450
1452
|
id: string;
|
1451
1453
|
username: string;
|
1452
|
-
role: "USER" | "ADMIN" | "FORM";
|
1454
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
1453
1455
|
isGlobalFilterActive: boolean;
|
1454
1456
|
fcmToken: string[];
|
1455
1457
|
};
|
@@ -1461,7 +1463,7 @@ export interface components {
|
|
1461
1463
|
id: string;
|
1462
1464
|
username: string;
|
1463
1465
|
password: string;
|
1464
|
-
role: "USER" | "ADMIN" | "FORM";
|
1466
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
1465
1467
|
isGlobalFilterActive: boolean;
|
1466
1468
|
fcmToken: string[];
|
1467
1469
|
created_at: string;
|
@@ -1491,7 +1493,7 @@ export interface components {
|
|
1491
1493
|
GetMeResponseDto: {
|
1492
1494
|
id: string;
|
1493
1495
|
username: string;
|
1494
|
-
role: "USER" | "ADMIN" | "FORM";
|
1496
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
1495
1497
|
isGlobalFilterActive: boolean;
|
1496
1498
|
fcmToken: string[];
|
1497
1499
|
created_at: string;
|
@@ -2160,6 +2162,7 @@ export interface components {
|
|
2160
2162
|
profiles: {
|
2161
2163
|
id: string;
|
2162
2164
|
shortId: number;
|
2165
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
2163
2166
|
firstTimeMiExpo: boolean;
|
2164
2167
|
username: string | null;
|
2165
2168
|
password: string | null;
|
@@ -2199,6 +2202,7 @@ export interface components {
|
|
2199
2202
|
profiles: {
|
2200
2203
|
id: string;
|
2201
2204
|
shortId: number;
|
2205
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
2202
2206
|
firstTimeMiExpo: boolean;
|
2203
2207
|
username: string | null;
|
2204
2208
|
password: string | null;
|
@@ -2256,6 +2260,7 @@ export interface components {
|
|
2256
2260
|
profiles: {
|
2257
2261
|
id: string;
|
2258
2262
|
shortId: number;
|
2263
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
2259
2264
|
firstTimeMiExpo: boolean;
|
2260
2265
|
username: string | null;
|
2261
2266
|
password: string | null;
|
@@ -2296,6 +2301,7 @@ export interface components {
|
|
2296
2301
|
profiles: {
|
2297
2302
|
id: string;
|
2298
2303
|
shortId: number;
|
2304
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
2299
2305
|
firstTimeMiExpo: boolean;
|
2300
2306
|
username: string | null;
|
2301
2307
|
password: string | null;
|
@@ -2331,6 +2337,7 @@ export interface components {
|
|
2331
2337
|
[key: string]: {
|
2332
2338
|
id: string;
|
2333
2339
|
shortId: number;
|
2340
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
2334
2341
|
firstTimeMiExpo: boolean;
|
2335
2342
|
username: string | null;
|
2336
2343
|
password: string | null;
|
@@ -2368,6 +2375,7 @@ export interface components {
|
|
2368
2375
|
FindByPhoneNumberResponseDto: {
|
2369
2376
|
id: string;
|
2370
2377
|
shortId: number;
|
2378
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
2371
2379
|
firstTimeMiExpo: boolean;
|
2372
2380
|
username: string | null;
|
2373
2381
|
password: string | null;
|
@@ -2457,6 +2465,7 @@ export interface components {
|
|
2457
2465
|
FindByIdProfileResponseDto: {
|
2458
2466
|
id: string;
|
2459
2467
|
shortId: number;
|
2468
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
2460
2469
|
firstTimeMiExpo: boolean;
|
2461
2470
|
username: string | null;
|
2462
2471
|
phoneNumber: string;
|
@@ -2514,6 +2523,7 @@ export interface components {
|
|
2514
2523
|
DeleteProfileResponseDto: {
|
2515
2524
|
id: string;
|
2516
2525
|
shortId: number;
|
2526
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
2517
2527
|
firstTimeMiExpo: boolean;
|
2518
2528
|
username: string | null;
|
2519
2529
|
password: string | null;
|
@@ -2746,6 +2756,7 @@ export interface components {
|
|
2746
2756
|
profile: {
|
2747
2757
|
id: string;
|
2748
2758
|
shortId: number;
|
2759
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
2749
2760
|
firstTimeMiExpo: boolean;
|
2750
2761
|
username: string | null;
|
2751
2762
|
password: string | null;
|
@@ -2788,6 +2799,7 @@ export interface components {
|
|
2788
2799
|
profile: {
|
2789
2800
|
id: string;
|
2790
2801
|
shortId: number;
|
2802
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
2791
2803
|
firstTimeMiExpo: boolean;
|
2792
2804
|
username: string | null;
|
2793
2805
|
password: string | null;
|
@@ -2830,6 +2842,7 @@ export interface components {
|
|
2830
2842
|
profile: {
|
2831
2843
|
id: string;
|
2832
2844
|
shortId: number;
|
2845
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
2833
2846
|
firstTimeMiExpo: boolean;
|
2834
2847
|
username: string | null;
|
2835
2848
|
password: string | null;
|
@@ -2941,6 +2954,7 @@ export interface components {
|
|
2941
2954
|
profile: {
|
2942
2955
|
id: string;
|
2943
2956
|
shortId: number;
|
2957
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
2944
2958
|
firstTimeMiExpo: boolean;
|
2945
2959
|
username: string | null;
|
2946
2960
|
password: string | null;
|
@@ -2988,6 +3002,7 @@ export interface components {
|
|
2988
3002
|
profile: {
|
2989
3003
|
id: string;
|
2990
3004
|
shortId: number;
|
3005
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
2991
3006
|
firstTimeMiExpo: boolean;
|
2992
3007
|
username: string | null;
|
2993
3008
|
phoneNumber: string;
|
@@ -3013,6 +3028,7 @@ export interface components {
|
|
3013
3028
|
GetMiExpoMeResponseDto: {
|
3014
3029
|
id: string;
|
3015
3030
|
shortId: number;
|
3031
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
3016
3032
|
firstTimeMiExpo: boolean;
|
3017
3033
|
username: string | null;
|
3018
3034
|
phoneNumber: string;
|
@@ -3131,6 +3147,7 @@ export interface components {
|
|
3131
3147
|
user: {
|
3132
3148
|
id: string;
|
3133
3149
|
shortId: number;
|
3150
|
+
role: "USER" | "ADMIN" | "FORM" | "MI_EXPO";
|
3134
3151
|
firstTimeMiExpo: boolean;
|
3135
3152
|
username: string | null;
|
3136
3153
|
phoneNumber: string;
|