expo-backend-types 0.3.0-EXPO-245.7 → 0.3.0-EXPO-245.9

Sign up to get free protection for your applications and to get access to all the features.
Files changed (57) hide show
  1. package/dist/src/{cuenta/dto/cuenta.dto.d.ts → account/dto/account.dto.d.ts} +57 -51
  2. package/dist/src/account/dto/account.dto.js +52 -0
  3. package/dist/src/{cuenta/dto/createCuenta.dto.d.ts → account/dto/createAccount.dto.d.ts} +92 -80
  4. package/dist/src/account/dto/createAccount.dto.js +23 -0
  5. package/dist/src/{cuenta/dto/getFiltroBase.dto.d.ts → account/dto/getGlobalFilter.dto.d.ts} +35 -35
  6. package/dist/src/account/dto/getGlobalFilter.dto.js +30 -0
  7. package/dist/src/{cuenta → account}/dto/getMe.dto.d.ts +56 -50
  8. package/dist/src/{cuenta → account}/dto/getMe.dto.js +2 -2
  9. package/dist/src/{cuenta/dto/updateFiltroBase.dto.d.ts → account/dto/updateGlobalFilter.dto.d.ts} +58 -58
  10. package/dist/src/account/dto/updateGlobalFilter.dto.js +29 -0
  11. package/dist/src/account/exports.d.ts +5 -0
  12. package/dist/src/{cuenta → account}/exports.js +4 -4
  13. package/dist/src/auth/dto/login.dto.d.ts +112 -100
  14. package/dist/src/auth/dto/login.dto.js +3 -3
  15. package/dist/src/comment/dto/comment.dto.d.ts +66 -0
  16. package/dist/src/comment/dto/comment.dto.js +26 -0
  17. package/dist/src/comment/exports.d.ts +1 -0
  18. package/dist/src/{etiqueta → comment}/exports.js +1 -1
  19. package/dist/src/event/dto/event.dto.d.ts +41 -0
  20. package/dist/src/event/dto/event.dto.js +33 -0
  21. package/dist/src/event/exports.d.ts +1 -0
  22. package/dist/src/{evento → event}/exports.js +1 -1
  23. package/dist/src/event-folder/dto/event-folder.dto.d.ts +14 -0
  24. package/dist/src/event-folder/dto/event-folder.dto.js +22 -0
  25. package/dist/src/exports.d.ts +5 -5
  26. package/dist/src/exports.js +5 -5
  27. package/dist/src/{etiqueta/dto/etiqueta.dto.d.ts → tag/dto/tag.dto.d.ts} +15 -15
  28. package/dist/src/tag/dto/tag.dto.js +30 -0
  29. package/dist/src/tag/exports.d.ts +1 -0
  30. package/dist/src/{grupo-etiqueta → tag}/exports.js +1 -1
  31. package/dist/src/{grupo-etiqueta/dto/grupo-etiqueta.dto.d.ts → tag-group/dto/tag-group.dto.d.ts} +3 -3
  32. package/dist/src/{grupo-etiqueta/dto/grupo-etiqueta.dto.js → tag-group/dto/tag-group.dto.js} +8 -8
  33. package/dist/src/tag-group/exports.d.ts +1 -0
  34. package/dist/src/{comentario → tag-group}/exports.js +1 -1
  35. package/dist/types/prisma-schema/edge.js +86 -70
  36. package/dist/types/prisma-schema/index-browser.js +83 -67
  37. package/dist/types/prisma-schema/index.d.ts +8283 -6804
  38. package/dist/types/prisma-schema/index.js +86 -70
  39. package/dist/types/prisma-schema/package.json +1 -1
  40. package/dist/types/prisma-schema/schema.prisma +144 -112
  41. package/dist/types/prisma-schema/wasm.js +83 -67
  42. package/dist/types/schema.d.ts +37 -37
  43. package/package.json +1 -1
  44. package/dist/src/comentario/dto/comentario.dto.d.ts +0 -42
  45. package/dist/src/comentario/dto/comentario.dto.js +0 -22
  46. package/dist/src/comentario/exports.d.ts +0 -1
  47. package/dist/src/cuenta/dto/createCuenta.dto.js +0 -23
  48. package/dist/src/cuenta/dto/cuenta.dto.js +0 -49
  49. package/dist/src/cuenta/dto/getFiltroBase.dto.js +0 -29
  50. package/dist/src/cuenta/dto/updateFiltroBase.dto.js +0 -28
  51. package/dist/src/cuenta/exports.d.ts +0 -5
  52. package/dist/src/etiqueta/dto/etiqueta.dto.js +0 -30
  53. package/dist/src/etiqueta/exports.d.ts +0 -1
  54. package/dist/src/evento/dto/evento.dto.d.ts +0 -126
  55. package/dist/src/evento/dto/evento.dto.js +0 -37
  56. package/dist/src/evento/exports.d.ts +0 -1
  57. package/dist/src/grupo-etiqueta/exports.d.ts +0 -1
@@ -119,101 +119,111 @@ exports.Prisma.TransactionIsolationLevel = makeStrictEnum({
119
119
  Serializable: 'Serializable'
120
120
  });
121
121
 
122
- exports.Prisma.CuentaScalarFieldEnum = {
122
+ exports.Prisma.AccountScalarFieldEnum = {
123
123
  id: 'id',
124
- nombreUsuario: 'nombreUsuario',
125
- contrasena: 'contrasena',
126
- esAdmin: 'esAdmin',
124
+ username: 'username',
125
+ password: 'password',
126
+ role: 'role',
127
+ isGlobalFilterActive: 'isGlobalFilterActive',
128
+ fcmToken: 'fcmToken',
127
129
  created_at: 'created_at',
128
- updated_at: 'updated_at',
129
- filtroBaseActivo: 'filtroBaseActivo',
130
- fcmToken: 'fcmToken'
130
+ updated_at: 'updated_at'
131
131
  };
132
132
 
133
- exports.Prisma.PerfilScalarFieldEnum = {
133
+ exports.Prisma.ProfileScalarFieldEnum = {
134
134
  id: 'id',
135
- idLegible: 'idLegible',
136
- telefono: 'telefono',
137
- telefonoSecundario: 'telefonoSecundario',
138
- nombreCompleto: 'nombreCompleto',
139
- nombrePila: 'nombrePila',
140
- genero: 'genero',
141
- fechaNacimiento: 'fechaNacimiento',
142
- fotoUrl: 'fotoUrl',
135
+ shortId: 'shortId',
136
+ phoneNumber: 'phoneNumber',
137
+ secondaryPhoneNumber: 'secondaryPhoneNumber',
138
+ fullName: 'fullName',
139
+ fistName: 'fistName',
140
+ gender: 'gender',
141
+ birthDate: 'birthDate',
142
+ profilePictureUrl: 'profilePictureUrl',
143
143
  instagram: 'instagram',
144
144
  mail: 'mail',
145
145
  dni: 'dni',
146
- nombresAlternativos: 'nombresAlternativos',
147
- esPapelera: 'esPapelera',
148
- fechaPapelera: 'fechaPapelera',
146
+ alternativeNames: 'alternativeNames',
147
+ isInTrash: 'isInTrash',
148
+ movedToTrashDate: 'movedToTrashDate',
149
149
  created_at: 'created_at',
150
150
  updated_at: 'updated_at'
151
151
  };
152
152
 
153
- exports.Prisma.ComentarioScalarFieldEnum = {
153
+ exports.Prisma.CommentScalarFieldEnum = {
154
154
  id: 'id',
155
- contenido: 'contenido',
156
- creadoPor: 'creadoPor',
157
- perfilId: 'perfilId',
155
+ content: 'content',
156
+ createdBy: 'createdBy',
157
+ profileId: 'profileId',
158
+ isSolvable: 'isSolvable',
159
+ isSolved: 'isSolved',
160
+ solvedAt: 'solvedAt',
161
+ solvedById: 'solvedById',
158
162
  created_at: 'created_at',
159
163
  updated_at: 'updated_at'
160
164
  };
161
165
 
162
- exports.Prisma.EtiquetaScalarFieldEnum = {
166
+ exports.Prisma.TagScalarFieldEnum = {
163
167
  id: 'id',
164
- nombre: 'nombre',
165
- grupoId: 'grupoId',
166
- tipo: 'tipo',
168
+ name: 'name',
169
+ type: 'type',
170
+ groupId: 'groupId',
167
171
  created_at: 'created_at',
168
172
  updated_at: 'updated_at'
169
173
  };
170
174
 
171
- exports.Prisma.EtiquetaGrupoScalarFieldEnum = {
175
+ exports.Prisma.TagGroupScalarFieldEnum = {
172
176
  id: 'id',
173
- nombre: 'nombre',
177
+ name: 'name',
174
178
  color: 'color',
175
- esExclusivo: 'esExclusivo',
179
+ isExclusive: 'isExclusive',
176
180
  created_at: 'created_at',
177
181
  updated_at: 'updated_at'
178
182
  };
179
183
 
180
- exports.Prisma.EventosCarpetaScalarFieldEnum = {
184
+ exports.Prisma.EventScalarFieldEnum = {
181
185
  id: 'id',
182
- nombre: 'nombre',
183
- color: 'color',
186
+ name: 'name',
187
+ date: 'date',
188
+ location: 'location',
189
+ folderId: 'folderId',
190
+ tagAssistedId: 'tagAssistedId',
191
+ tagConfirmedId: 'tagConfirmedId',
192
+ supraEventId: 'supraEventId',
184
193
  created_at: 'created_at',
185
194
  updated_at: 'updated_at'
186
195
  };
187
196
 
188
- exports.Prisma.EventoScalarFieldEnum = {
197
+ exports.Prisma.EventFolderScalarFieldEnum = {
189
198
  id: 'id',
190
- nombre: 'nombre',
191
- fecha: 'fecha',
192
- ubicacion: 'ubicacion',
193
- carpetaId: 'carpetaId',
194
- etiquetaAsistioId: 'etiquetaAsistioId',
195
- etiquetaConfirmoId: 'etiquetaConfirmoId',
196
- eventoPadreId: 'eventoPadreId',
199
+ name: 'name',
200
+ color: 'color',
197
201
  created_at: 'created_at',
198
202
  updated_at: 'updated_at'
199
203
  };
200
204
 
201
- exports.Prisma.MensajeScalarFieldEnum = {
205
+ exports.Prisma.MessageScalarFieldEnum = {
202
206
  id: 'id',
203
207
  wamId: 'wamId',
204
208
  message: 'message',
205
- perfilTelefono: 'perfilTelefono',
206
- status: 'status',
207
- statusAt: 'statusAt',
208
- visto: 'visto',
209
+ profilePhoneNumber: 'profilePhoneNumber',
210
+ state: 'state',
211
+ created_at: 'created_at',
212
+ updated_at: 'updated_at'
213
+ };
214
+
215
+ exports.Prisma.CannedResponseScalarFieldEnum = {
216
+ id: 'id',
217
+ name: 'name',
218
+ content: 'content',
209
219
  created_at: 'created_at',
210
220
  updated_at: 'updated_at'
211
221
  };
212
222
 
213
223
  exports.Prisma.EnumsScalarFieldEnum = {
214
224
  id: 'id',
215
- EstadoPlantilla: 'EstadoPlantilla',
216
- CategoriaPlantilla: 'CategoriaPlantilla'
225
+ templateStatus: 'templateStatus',
226
+ templateCategory: 'templateCategory'
217
227
  };
218
228
 
219
229
  exports.Prisma.SortOrder = {
@@ -240,40 +250,46 @@ exports.Prisma.JsonNullValueFilter = {
240
250
  JsonNull: Prisma.JsonNull,
241
251
  AnyNull: Prisma.AnyNull
242
252
  };
243
- exports.TipoEtiqueta = exports.$Enums.TipoEtiqueta = {
244
- PERSONAL: 'PERSONAL',
245
- EVENTO: 'EVENTO',
246
- MODELO: 'MODELO',
247
- TENTATIVA: 'TENTATIVA'
253
+ exports.Role = exports.$Enums.Role = {
254
+ USER: 'USER',
255
+ ADMIN: 'ADMIN'
256
+ };
257
+
258
+ exports.TagType = exports.$Enums.TagType = {
259
+ PROFILE: 'PROFILE',
260
+ EVENT: 'EVENT',
261
+ PARTICIPANT: 'PARTICIPANT',
262
+ NOT_IN_SYSTEM: 'NOT_IN_SYSTEM'
248
263
  };
249
264
 
250
- exports.MensajeStatus = exports.$Enums.MensajeStatus = {
251
- ENVIADO: 'ENVIADO',
252
- RECIBIDO: 'RECIBIDO',
253
- LEIDO: 'LEIDO'
265
+ exports.MessageState = exports.$Enums.MessageState = {
266
+ SENT: 'SENT',
267
+ RECEIVED: 'RECEIVED',
268
+ SEEN: 'SEEN'
254
269
  };
255
270
 
256
- exports.EstadoPlantilla = exports.$Enums.EstadoPlantilla = {
271
+ exports.TemplateStatus = exports.$Enums.TemplateStatus = {
257
272
  APRROVED: 'APRROVED',
258
273
  PENDING: 'PENDING',
259
274
  REJECTED: 'REJECTED'
260
275
  };
261
276
 
262
- exports.CategoriaPlantilla = exports.$Enums.CategoriaPlantilla = {
277
+ exports.TemplateCategory = exports.$Enums.TemplateCategory = {
263
278
  MARKETING: 'MARKETING',
264
279
  UTILITY: 'UTILITY',
265
280
  AUTHENTICATION: 'AUTHENTICATION'
266
281
  };
267
282
 
268
283
  exports.Prisma.ModelName = {
269
- Cuenta: 'Cuenta',
270
- Perfil: 'Perfil',
271
- Comentario: 'Comentario',
272
- Etiqueta: 'Etiqueta',
273
- EtiquetaGrupo: 'EtiquetaGrupo',
274
- EventosCarpeta: 'EventosCarpeta',
275
- Evento: 'Evento',
276
- Mensaje: 'Mensaje',
284
+ Account: 'Account',
285
+ Profile: 'Profile',
286
+ Comment: 'Comment',
287
+ Tag: 'Tag',
288
+ TagGroup: 'TagGroup',
289
+ Event: 'Event',
290
+ EventFolder: 'EventFolder',
291
+ Message: 'Message',
292
+ CannedResponse: 'CannedResponse',
277
293
  Enums: 'Enums'
278
294
  };
279
295