expo-backend-types 0.32.0 → 0.33.0-EXPO-308-auth.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 (111) hide show
  1. package/dist/src/event/dto/create-event.dto.d.ts +2 -115
  2. package/dist/src/event/dto/create-event.dto.js +0 -8
  3. package/dist/src/event/dto/delete-event.dto.d.ts +0 -18
  4. package/dist/src/event/dto/event.dto.d.ts +0 -9
  5. package/dist/src/event/dto/event.dto.js +0 -9
  6. package/dist/src/event/dto/get-all-event.dto.d.ts +160 -424
  7. package/dist/src/event/dto/get-by-id-event.dto.d.ts +48 -208
  8. package/dist/src/event/dto/get-by-id-event.dto.js +0 -2
  9. package/dist/src/event/dto/update-event.dto.d.ts +22 -193
  10. package/dist/src/event/dto/update-event.dto.js +0 -9
  11. package/dist/src/event/exports.d.ts +0 -3
  12. package/dist/src/event/exports.js +0 -3
  13. package/dist/src/event-folder/dto/get-all-event-folder.dto.d.ts +0 -42
  14. package/dist/src/event-folder/dto/get-by-id-event-folder.dto.d.ts +0 -30
  15. package/dist/src/exports.d.ts +3 -1
  16. package/dist/src/exports.js +3 -1
  17. package/dist/src/i18n/es.d.ts +20 -24
  18. package/dist/src/i18n/es.js +20 -24
  19. package/dist/src/i18n/es.js.map +1 -1
  20. package/dist/src/image/constants.d.ts +5 -0
  21. package/dist/src/image/constants.js +9 -0
  22. package/dist/src/location/dto/find-all-location.dto.js +2 -2
  23. package/dist/src/location/exports.d.ts +0 -1
  24. package/dist/src/location/exports.js +0 -1
  25. package/dist/src/message/dto/non-read-messages.dto.d.ts +2 -2
  26. package/dist/src/message/dto/non-read-messages.dto.js +2 -2
  27. package/dist/src/message/dto/send-message-to-phone.dto.d.ts +2 -2
  28. package/dist/src/message/dto/send-message-to-phone.dto.js +2 -2
  29. package/dist/src/mi-expo/dto/get-me.dto.d.ts +337 -0
  30. package/dist/src/mi-expo/dto/get-me.dto.js +16 -0
  31. package/dist/src/mi-expo/dto/login-with-phone.dto.d.ts +311 -0
  32. package/dist/src/mi-expo/dto/login-with-phone.dto.js +29 -0
  33. package/dist/src/mi-expo/dto/login.dto.d.ts +327 -0
  34. package/dist/src/mi-expo/dto/login.dto.js +31 -0
  35. package/dist/src/mi-expo/dto/update-me.dto.d.ts +352 -0
  36. package/dist/src/mi-expo/dto/update-me.dto.js +31 -0
  37. package/dist/src/mi-expo/exports.d.ts +4 -0
  38. package/dist/src/mi-expo/exports.js +21 -0
  39. package/dist/src/otp/constants.d.ts +2 -0
  40. package/dist/src/otp/constants.js +6 -0
  41. package/dist/src/otp/dto/send-otp.dto.d.ts +158 -0
  42. package/dist/src/otp/dto/send-otp.dto.js +35 -0
  43. package/dist/src/otp/dto/verify-otp.dto.d.ts +455 -0
  44. package/dist/src/otp/dto/verify-otp.dto.js +46 -0
  45. package/dist/src/otp/exports.d.ts +2 -0
  46. package/dist/src/otp/exports.js +19 -0
  47. package/dist/src/prisma/constants.d.ts +1 -0
  48. package/dist/src/prisma/constants.js +5 -0
  49. package/dist/src/profile/dto/create-profile.dto.d.ts +48 -14
  50. package/dist/src/profile/dto/create-profile.dto.js +9 -7
  51. package/dist/src/profile/dto/delete-profile.dto.d.ts +30 -6
  52. package/dist/src/profile/dto/delete-profile.dto.js +2 -2
  53. package/dist/src/profile/dto/find-all-profile.dto.d.ts +47 -7
  54. package/dist/src/profile/dto/find-all-profile.dto.js +2 -2
  55. package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +75 -11
  56. package/dist/src/profile/dto/find-by-date-range-profile.dto.js +3 -3
  57. package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +32 -13
  58. package/dist/src/profile/dto/find-by-id-profile.dto.js +7 -5
  59. package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +30 -6
  60. package/dist/src/profile/dto/find-by-phone-number.dto.js +2 -2
  61. package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +47 -7
  62. package/dist/src/profile/dto/find-by-tag-groups-profile.dto.js +2 -2
  63. package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +47 -7
  64. package/dist/src/profile/dto/find-by-tags-profile.dto.js +2 -2
  65. package/dist/src/profile/dto/find-trash.dto.d.ts +7 -3
  66. package/dist/src/profile/dto/find-trash.dto.js +2 -2
  67. package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +47 -7
  68. package/dist/src/profile/dto/find-with-active-chat.dto.js +2 -2
  69. package/dist/src/profile/dto/profile.dto.d.ts +44 -30
  70. package/dist/src/profile/dto/profile.dto.js +6 -63
  71. package/dist/src/profile/dto/update-profile.dto.d.ts +54 -12
  72. package/dist/src/profile/dto/update-profile.dto.js +9 -6
  73. package/dist/src/schema/exports.d.ts +2 -0
  74. package/dist/src/schema/exports.js +19 -0
  75. package/dist/src/{location/dto/location.dto.js → schema/location.schema.js} +2 -2
  76. package/dist/src/schema/profile.schema.d.ts +74 -0
  77. package/dist/src/schema/profile.schema.js +133 -0
  78. package/dist/src/shared/dto-modification/zod-without-dates.d.ts +2 -4
  79. package/dist/src/shared/dto-modification/zod-without-dates.js +8 -0
  80. package/dist/src/shared/dto-modification/zod-without-dates.js.map +1 -1
  81. package/dist/src/tag/dto/massive-allocation.dto.d.ts +47 -7
  82. package/dist/src/tag/dto/massive-allocation.dto.js +3 -3
  83. package/dist/src/tag/dto/massive-deallocation.dto.d.ts +47 -7
  84. package/dist/src/tag/dto/massive-deallocation.dto.js +3 -3
  85. package/dist/src/webhook/constants.d.ts +1 -0
  86. package/dist/src/webhook/constants.js +5 -0
  87. package/dist/types/prisma-schema/edge.js +37 -43
  88. package/dist/types/prisma-schema/index-browser.js +19 -30
  89. package/dist/types/prisma-schema/index.d.ts +6249 -5155
  90. package/dist/types/prisma-schema/index.js +37 -43
  91. package/dist/types/prisma-schema/libquery_engine-debian-openssl-3.0.x.so.node +0 -0
  92. package/dist/types/prisma-schema/package.json +8 -2
  93. package/dist/types/prisma-schema/runtime/edge-esm.js +18 -18
  94. package/dist/types/prisma-schema/runtime/edge.js +18 -18
  95. package/dist/types/prisma-schema/runtime/index-browser.d.ts +3 -1
  96. package/dist/types/prisma-schema/runtime/index-browser.js +3 -3
  97. package/dist/types/prisma-schema/runtime/library.d.ts +205 -153
  98. package/dist/types/prisma-schema/runtime/library.js +55 -55
  99. package/dist/types/prisma-schema/runtime/react-native.js +26 -26
  100. package/dist/types/prisma-schema/runtime/wasm.js +17 -17
  101. package/dist/types/prisma-schema/schema.prisma +27 -33
  102. package/dist/types/prisma-schema/wasm.js +19 -30
  103. package/dist/types/schema.d.ts +510 -198
  104. package/package.json +32 -38
  105. package/dist/src/event/dto/event-tickets.dto.d.ts +0 -21
  106. package/dist/src/event/dto/event-tickets.dto.js +0 -21
  107. package/dist/src/event/dto/get-active-events.dto.d.ts +0 -247
  108. package/dist/src/event/dto/get-active-events.dto.js +0 -19
  109. package/dist/src/event/dto/toggle-active-event.dto.d.ts +0 -43
  110. package/dist/src/event/dto/toggle-active-event.dto.js +0 -6
  111. /package/dist/src/{location/dto/location.dto.d.ts → schema/location.schema.d.ts} +0 -0
@@ -44,7 +44,15 @@ model Profile {
44
44
  id String @id @default(uuid())
45
45
  shortId Int @map("short_id")
46
46
 
47
- phoneNumber String @unique @map("phone_number")
47
+ firstTimeMiExpo Boolean @default(true) @map("first_time_mi_expo")
48
+
49
+ username String? @unique
50
+ password String?
51
+
52
+ phoneNumber String @unique @map("phone_number")
53
+ isPhoneVerified Boolean @default(false) @map("is_phone_verified")
54
+ otp Otp[]
55
+
48
56
  secondaryPhoneNumber String? @unique @map("secondary_phone_number")
49
57
  fullName String @map("full_name")
50
58
  firstName String? @map("first_name")
@@ -75,6 +83,19 @@ model Profile {
75
83
  @@map("PROFILE")
76
84
  }
77
85
 
86
+ model Otp {
87
+ id String @id @default(uuid())
88
+ code String
89
+ ownerPhoneNumber String @map("account_id")
90
+ owner Profile @relation(fields: [ownerPhoneNumber], references: [phoneNumber])
91
+ expiresAt DateTime @map("expires_at")
92
+
93
+ created_at DateTime @default(now())
94
+ updated_at DateTime @updatedAt
95
+
96
+ @@map("OTP")
97
+ }
98
+
78
99
  model Location {
79
100
  id String @id @default(uuid())
80
101
  latitude Float
@@ -133,7 +154,6 @@ model Tag {
133
154
 
134
155
  created_at DateTime @default(now())
135
156
  updated_at DateTime @updatedAt
136
- Event Event[] @relation("EVENT_X_TAGS")
137
157
 
138
158
  @@map("TAG")
139
159
  }
@@ -152,12 +172,10 @@ model TagGroup {
152
172
  }
153
173
 
154
174
  model Event {
155
- id String @id @default(uuid())
156
- name String
157
- date DateTime
158
- startingDate DateTime @map("starting_date")
159
- endingDate DateTime @map("ending_date")
160
- location String
175
+ id String @id @default(uuid())
176
+ name String
177
+ date DateTime
178
+ location String
161
179
 
162
180
  folderId String? @map("folder_id")
163
181
  folder EventFolder? @relation("EVENT_FOLDER_X_EVENT", fields: [folderId], references: [id], onDelete: Cascade)
@@ -171,11 +189,7 @@ model Event {
171
189
  supraEventId String? @map("supra_event_id")
172
190
  supraEvent Event? @relation("SubEvents", fields: [supraEventId], references: [id], onDelete: Cascade)
173
191
 
174
- subEvents Event[] @relation("SubEvents")
175
- tags Tag[] @relation("EVENT_X_TAGS")
176
- eventTickets EventTicket[] @relation("EVENT_X_EVENTTICKET")
177
-
178
- active Boolean @default(false)
192
+ subEvents Event[] @relation("SubEvents")
179
193
 
180
194
  created_at DateTime @default(now())
181
195
  updated_at DateTime @updatedAt
@@ -228,20 +242,6 @@ model Enums {
228
242
  templateCategory TemplateCategory
229
243
  }
230
244
 
231
- model EventTicket {
232
- id String @id @default(uuid())
233
- eventId String @map("event_id")
234
- event Event @relation("EVENT_X_EVENTTICKET", fields: [eventId], references: [id], onDelete: Cascade)
235
- amount Int
236
- type TicketType
237
- price Float?
238
-
239
- created_at DateTime @default(now())
240
- updated_at DateTime @updatedAt
241
-
242
- @@map("EVENT_TICKET")
243
- }
244
-
245
245
  enum TemplateStatus {
246
246
  APPROVED
247
247
  PENDING
@@ -266,9 +266,3 @@ enum MessageState {
266
266
  RECEIVED
267
267
  SEEN
268
268
  }
269
-
270
- enum TicketType {
271
- PARTICIPANT
272
- STAFF
273
- SPECTATOR
274
- }
@@ -17,12 +17,12 @@ exports.Prisma = Prisma
17
17
  exports.$Enums = {}
18
18
 
19
19
  /**
20
- * Prisma Client JS version: 5.22.0
21
- * Query Engine version: 605197351a3c8bdd595af2d2a9bc3025bca48ea2
20
+ * Prisma Client JS version: 6.4.1
21
+ * Query Engine version: a9055b89e58b4b5bfb59600785423b1db3d0e75d
22
22
  */
23
23
  Prisma.prismaVersion = {
24
- client: "5.22.0",
25
- engine: "605197351a3c8bdd595af2d2a9bc3025bca48ea2"
24
+ client: "6.4.1",
25
+ engine: "a9055b89e58b4b5bfb59600785423b1db3d0e75d"
26
26
  }
27
27
 
28
28
  Prisma.PrismaClientKnownRequestError = () => {
@@ -50,11 +50,6 @@ Prisma.PrismaClientValidationError = () => {
50
50
  throw new Error(`PrismaClientValidationError is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
51
51
  In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`,
52
52
  )}
53
- Prisma.NotFoundError = () => {
54
- const runtimeName = getRuntime().prettyName;
55
- throw new Error(`NotFoundError is unable to run in this browser environment, or has been bundled for the browser (running in ${runtimeName}).
56
- In case this error is unexpected for you, please report it in https://pris.ly/prisma-prisma-bug-report`,
57
- )}
58
53
  Prisma.Decimal = Decimal
59
54
 
60
55
  /**
@@ -136,7 +131,11 @@ exports.Prisma.AccountScalarFieldEnum = {
136
131
  exports.Prisma.ProfileScalarFieldEnum = {
137
132
  id: 'id',
138
133
  shortId: 'shortId',
134
+ firstTimeMiExpo: 'firstTimeMiExpo',
135
+ username: 'username',
136
+ password: 'password',
139
137
  phoneNumber: 'phoneNumber',
138
+ isPhoneVerified: 'isPhoneVerified',
140
139
  secondaryPhoneNumber: 'secondaryPhoneNumber',
141
140
  fullName: 'fullName',
142
141
  firstName: 'firstName',
@@ -155,6 +154,15 @@ exports.Prisma.ProfileScalarFieldEnum = {
155
154
  updated_at: 'updated_at'
156
155
  };
157
156
 
157
+ exports.Prisma.OtpScalarFieldEnum = {
158
+ id: 'id',
159
+ code: 'code',
160
+ ownerPhoneNumber: 'ownerPhoneNumber',
161
+ expiresAt: 'expiresAt',
162
+ created_at: 'created_at',
163
+ updated_at: 'updated_at'
164
+ };
165
+
158
166
  exports.Prisma.LocationScalarFieldEnum = {
159
167
  id: 'id',
160
168
  latitude: 'latitude',
@@ -201,14 +209,11 @@ exports.Prisma.EventScalarFieldEnum = {
201
209
  id: 'id',
202
210
  name: 'name',
203
211
  date: 'date',
204
- startingDate: 'startingDate',
205
- endingDate: 'endingDate',
206
212
  location: 'location',
207
213
  folderId: 'folderId',
208
214
  tagAssistedId: 'tagAssistedId',
209
215
  tagConfirmedId: 'tagConfirmedId',
210
216
  supraEventId: 'supraEventId',
211
- active: 'active',
212
217
  created_at: 'created_at',
213
218
  updated_at: 'updated_at'
214
219
  };
@@ -245,16 +250,6 @@ exports.Prisma.EnumsScalarFieldEnum = {
245
250
  templateCategory: 'templateCategory'
246
251
  };
247
252
 
248
- exports.Prisma.EventTicketScalarFieldEnum = {
249
- id: 'id',
250
- eventId: 'eventId',
251
- amount: 'amount',
252
- type: 'type',
253
- price: 'price',
254
- created_at: 'created_at',
255
- updated_at: 'updated_at'
256
- };
257
-
258
253
  exports.Prisma.SortOrder = {
259
254
  asc: 'asc',
260
255
  desc: 'desc'
@@ -310,15 +305,10 @@ exports.TemplateCategory = exports.$Enums.TemplateCategory = {
310
305
  AUTHENTICATION: 'AUTHENTICATION'
311
306
  };
312
307
 
313
- exports.TicketType = exports.$Enums.TicketType = {
314
- PARTICIPANT: 'PARTICIPANT',
315
- STAFF: 'STAFF',
316
- SPECTATOR: 'SPECTATOR'
317
- };
318
-
319
308
  exports.Prisma.ModelName = {
320
309
  Account: 'Account',
321
310
  Profile: 'Profile',
311
+ Otp: 'Otp',
322
312
  Location: 'Location',
323
313
  Comment: 'Comment',
324
314
  Tag: 'Tag',
@@ -327,8 +317,7 @@ exports.Prisma.ModelName = {
327
317
  EventFolder: 'EventFolder',
328
318
  Message: 'Message',
329
319
  CannedResponse: 'CannedResponse',
330
- Enums: 'Enums',
331
- EventTicket: 'EventTicket'
320
+ Enums: 'Enums'
332
321
  };
333
322
 
334
323
  /**