expo-backend-types 0.57.0-EXPO-379-EB-Rutas-necesarias.13 → 0.57.0-EXPO-389-EB-Modificaciones-necesarias-solicitud-afiliacion.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 (37) hide show
  1. package/dist/src/dynamic-form/exports.d.ts +0 -1
  2. package/dist/src/dynamic-form/exports.js +0 -1
  3. package/dist/src/i18n/es.d.ts +0 -14
  4. package/dist/src/i18n/es.js +0 -14
  5. package/dist/src/i18n/es.js.map +1 -1
  6. package/dist/src/mi-expo/dto/get-me.dto.d.ts +0 -20
  7. package/dist/src/mi-expo/exports.d.ts +0 -1
  8. package/dist/src/mi-expo/exports.js +0 -1
  9. package/dist/src/production/dto/create-production.dto.d.ts +1 -8
  10. package/dist/src/production/dto/create-production.dto.js +0 -1
  11. package/dist/src/production/dto/delete-production.dto.d.ts +0 -6
  12. package/dist/src/production/dto/get-all-production.dto.d.ts +0 -10
  13. package/dist/src/production/dto/production.dto.d.ts +0 -3
  14. package/dist/src/production/dto/production.dto.js +0 -3
  15. package/dist/src/production/dto/update-production.dto.d.ts +0 -12
  16. package/dist/src/production/dto/update-production.dto.js +0 -1
  17. package/dist/src/production-affiliation-request/dto/find-by-production-affiliation-request.dto.d.ts +0 -14
  18. package/dist/src/production-affiliation-request/dto/update-production-affiliation-request.dto.d.ts +0 -10
  19. package/dist/src/profile/dto/find-by-phone-number.dto.d.ts +2 -141
  20. package/dist/src/profile/dto/find-by-phone-number.dto.js +1 -21
  21. package/dist/types/prisma-schema/edge.js +3 -4
  22. package/dist/types/prisma-schema/index-browser.js +0 -1
  23. package/dist/types/prisma-schema/index.d.ts +1 -51
  24. package/dist/types/prisma-schema/index.js +3 -4
  25. package/dist/types/prisma-schema/package.json +1 -1
  26. package/dist/types/prisma-schema/schema.prisma +1 -2
  27. package/dist/types/prisma-schema/wasm.js +0 -1
  28. package/dist/types/schema.d.ts +0 -286
  29. package/package.json +1 -1
  30. package/dist/src/dynamic-form/dto/find-by-id-dynamic-question.dto.d.ts +0 -266
  31. package/dist/src/dynamic-form/dto/find-by-id-dynamic-question.dto.js +0 -19
  32. package/dist/src/dynamic-form/dto/find-by-name-dynamic-form.dto.d.ts +0 -515
  33. package/dist/src/dynamic-form/dto/find-by-name-dynamic-form.dto.js +0 -23
  34. package/dist/src/dynamic-form/dto/submit-dynamic-form.dto.d.ts +0 -345
  35. package/dist/src/dynamic-form/dto/submit-dynamic-form.dto.js +0 -24
  36. package/dist/src/mi-expo/dto/update-me-first-time.dto.d.ts +0 -382
  37. package/dist/src/mi-expo/dto/update-me-first-time.dto.js +0 -35
@@ -1,5 +1,5 @@
1
1
  {
2
- "name": "prisma-client-0a9f094d045b99dd6452967dc538342f8916cba3f712716180b7f89df87c04fb",
2
+ "name": "prisma-client-b60cbfa142c027720d49748c49fe8d6a840b0d484480e313e1de66510f6e0028",
3
3
  "main": "index.js",
4
4
  "types": "index.d.ts",
5
5
  "browser": "index-browser.js",
@@ -342,8 +342,7 @@ model EventTicket {
342
342
  model Production {
343
343
  id String @id @default(uuid())
344
344
 
345
- name String @unique
346
- description String @default("")
345
+ name String @unique
347
346
 
348
347
  administratorId String? @map("adminstrator_id")
349
348
  administrator Profile? @relation("PRODUCTION_X_ADMINISTRATOR", fields: [administratorId], references: [id])
@@ -297,7 +297,6 @@ exports.Prisma.EventTicketScalarFieldEnum = {
297
297
  exports.Prisma.ProductionScalarFieldEnum = {
298
298
  id: 'id',
299
299
  name: 'name',
300
- description: 'description',
301
300
  administratorId: 'administratorId',
302
301
  created_at: 'created_at',
303
302
  updated_at: 'updated_at'
@@ -1471,22 +1471,6 @@ export interface paths {
1471
1471
  patch: operations["MiExpoController_updateMe"];
1472
1472
  trace?: never;
1473
1473
  };
1474
- "/mi-expo/me-first-time": {
1475
- parameters: {
1476
- query?: never;
1477
- header?: never;
1478
- path?: never;
1479
- cookie?: never;
1480
- };
1481
- get?: never;
1482
- put?: never;
1483
- post?: never;
1484
- delete?: never;
1485
- options?: never;
1486
- head?: never;
1487
- patch: operations["MiExpoController_updateMeWithoutLogin"];
1488
- trace?: never;
1489
- };
1490
1474
  "/mi-expo/invitations": {
1491
1475
  parameters: {
1492
1476
  query?: never;
@@ -1727,22 +1711,6 @@ export interface paths {
1727
1711
  patch?: never;
1728
1712
  trace?: never;
1729
1713
  };
1730
- "/dynamic-form/submit/{id}": {
1731
- parameters: {
1732
- query?: never;
1733
- header?: never;
1734
- path?: never;
1735
- cookie?: never;
1736
- };
1737
- get?: never;
1738
- put?: never;
1739
- post: operations["DynamicFormController_submit"];
1740
- delete?: never;
1741
- options?: never;
1742
- head?: never;
1743
- patch?: never;
1744
- trace?: never;
1745
- };
1746
1714
  "/dynamic-form/update/{id}": {
1747
1715
  parameters: {
1748
1716
  query?: never;
@@ -1775,22 +1743,6 @@ export interface paths {
1775
1743
  patch?: never;
1776
1744
  trace?: never;
1777
1745
  };
1778
- "/dynamic-form/{name}": {
1779
- parameters: {
1780
- query?: never;
1781
- header?: never;
1782
- path?: never;
1783
- cookie?: never;
1784
- };
1785
- get: operations["DynamicFormController_getByName"];
1786
- put?: never;
1787
- post?: never;
1788
- delete?: never;
1789
- options?: never;
1790
- head?: never;
1791
- patch?: never;
1792
- trace?: never;
1793
- };
1794
1746
  "/dynamic-form/delete/{id}": {
1795
1747
  parameters: {
1796
1748
  query?: never;
@@ -3101,20 +3053,6 @@ export interface components {
3101
3053
  created_at: string;
3102
3054
  updated_at: string;
3103
3055
  referralCode: string;
3104
- residenceLocation: {
3105
- city: string;
3106
- state: string;
3107
- country: string;
3108
- latitude: number;
3109
- longitude: number;
3110
- } | null;
3111
- birthLocation: {
3112
- city: string;
3113
- state: string;
3114
- country: string;
3115
- latitude: number;
3116
- longitude: number;
3117
- } | null;
3118
3056
  };
3119
3057
  FindTrashResponseDto: {
3120
3058
  profiles: {
@@ -4012,7 +3950,6 @@ export interface components {
4012
3950
  productionsAdministrated: {
4013
3951
  id: string;
4014
3952
  name: string;
4015
- description: string;
4016
3953
  administratorId: string | null;
4017
3954
  created_at: string;
4018
3955
  updated_at: string;
@@ -4020,7 +3957,6 @@ export interface components {
4020
3957
  productionsParticipated: {
4021
3958
  id: string;
4022
3959
  name: string;
4023
- description: string;
4024
3960
  administratorId: string | null;
4025
3961
  created_at: string;
4026
3962
  updated_at: string;
@@ -4060,33 +3996,6 @@ export interface components {
4060
3996
  state: string;
4061
3997
  };
4062
3998
  };
4063
- UpdateMiExpoMeFirstTimeDto: {
4064
- birthDate: string | null;
4065
- dni: string | null;
4066
- fullName: string;
4067
- gender: string | null;
4068
- instagram: string | null;
4069
- mail: string | null;
4070
- password: string | null;
4071
- phoneNumber: string;
4072
- secondaryPhoneNumber: string | null;
4073
- username: string | null;
4074
- birth: {
4075
- city: string;
4076
- country: string;
4077
- latitude: number;
4078
- longitude: number;
4079
- state: string;
4080
- };
4081
- residence: {
4082
- city: string;
4083
- country: string;
4084
- latitude: number;
4085
- longitude: number;
4086
- state: string;
4087
- };
4088
- id: string;
4089
- };
4090
3999
  GetInvitationsResponseDto: {
4091
4000
  events: {
4092
4001
  date: string;
@@ -4167,7 +4076,6 @@ export interface components {
4167
4076
  productions: {
4168
4077
  id: string;
4169
4078
  name: string;
4170
- description: string;
4171
4079
  administratorId: string | null;
4172
4080
  created_at: string;
4173
4081
  updated_at: string;
@@ -4202,7 +4110,6 @@ export interface components {
4202
4110
  };
4203
4111
  CreateProductionDto: {
4204
4112
  name: string;
4205
- description: string;
4206
4113
  administratorId: string | null;
4207
4114
  };
4208
4115
  CreateProductionRoleDto: {
@@ -4210,13 +4117,11 @@ export interface components {
4210
4117
  };
4211
4118
  UpdateProductionDto: {
4212
4119
  name?: string;
4213
- description?: string;
4214
4120
  administratorId?: string | null;
4215
4121
  };
4216
4122
  UpdateProductionResponseDto: {
4217
4123
  id: string;
4218
4124
  name: string;
4219
- description: string;
4220
4125
  administratorId: string | null;
4221
4126
  created_at: string;
4222
4127
  updated_at: string;
@@ -4224,7 +4129,6 @@ export interface components {
4224
4129
  DeleteProductionResponseDto: {
4225
4130
  id: string;
4226
4131
  name: string;
4227
- description: string;
4228
4132
  administratorId: string | null;
4229
4133
  created_at: string;
4230
4134
  updated_at: string;
@@ -4242,7 +4146,6 @@ export interface components {
4242
4146
  production: {
4243
4147
  id: string;
4244
4148
  name: string;
4245
- description: string;
4246
4149
  administratorId: string | null;
4247
4150
  created_at: string;
4248
4151
  updated_at: string;
@@ -4286,7 +4189,6 @@ export interface components {
4286
4189
  production: {
4287
4190
  id: string;
4288
4191
  name: string;
4289
- description: string;
4290
4192
  administratorId: string | null;
4291
4193
  created_at: string;
4292
4194
  updated_at: string;
@@ -4349,44 +4251,6 @@ export interface components {
4349
4251
  }[];
4350
4252
  }[];
4351
4253
  };
4352
- SubmitDynamicFormsDto: {
4353
- id: string;
4354
- formId: string;
4355
- disabled: boolean;
4356
- required: boolean;
4357
- multipleChoice: boolean;
4358
- tagGroupId: string;
4359
- answers: string[];
4360
- }[];
4361
- SubmitDynamicFormsResponseDto: {
4362
- profiles: {
4363
- id: string;
4364
- shortId: number;
4365
- role: "USER" | "ADMIN" | "FORM" | "TICKETS" | "MI_EXPO";
4366
- firstTimeMiExpo: boolean;
4367
- username: string | null;
4368
- password: string | null;
4369
- phoneNumber: string;
4370
- isPhoneVerified: boolean;
4371
- secondaryPhoneNumber: string | null;
4372
- fullName: string;
4373
- firstName: string | null;
4374
- gender: string | null;
4375
- birthDate: string | null;
4376
- profilePictureUrl: string | null;
4377
- instagram: string | null;
4378
- mail: string | null;
4379
- dni: string | null;
4380
- alternativeNames: string[];
4381
- birthLocationId: string | null;
4382
- residenceLocationId: string | null;
4383
- isInTrash: boolean;
4384
- movedToTrashDate: string | null;
4385
- created_at: string;
4386
- updated_at: string;
4387
- referralCode: string;
4388
- }[];
4389
- };
4390
4254
  UpdateDynamicFormDto: {
4391
4255
  name: string;
4392
4256
  questions: {
@@ -4467,47 +4331,6 @@ export interface components {
4467
4331
  }[];
4468
4332
  }[];
4469
4333
  }[];
4470
- FindByNameDynamicFormsResponseDto: {
4471
- id: string;
4472
- name: string;
4473
- created_at: string;
4474
- updated_at: string;
4475
- questions: {
4476
- id: string;
4477
- formId: string;
4478
- text: string;
4479
- disabled: boolean;
4480
- required: boolean;
4481
- multipleChoice: boolean;
4482
- tagGroupId: string;
4483
- created_at: string;
4484
- updated_at: string;
4485
- tagGroup: {
4486
- id: string;
4487
- name: string;
4488
- color: string;
4489
- isExclusive: boolean;
4490
- created_at: string;
4491
- updated_at: string;
4492
- };
4493
- options: {
4494
- id: string;
4495
- text: string;
4496
- tagId: string;
4497
- questionId: string;
4498
- created_at: string;
4499
- updated_at: string;
4500
- tag: {
4501
- id: string;
4502
- name: string;
4503
- groupId: string;
4504
- type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE" | "FORM_OPTION";
4505
- created_at: string;
4506
- updated_at: string;
4507
- };
4508
- }[];
4509
- }[];
4510
- };
4511
4334
  DeleteDynamicFormDto: {
4512
4335
  id: string;
4513
4336
  };
@@ -7528,29 +7351,6 @@ export interface operations {
7528
7351
  };
7529
7352
  };
7530
7353
  };
7531
- MiExpoController_updateMeWithoutLogin: {
7532
- parameters: {
7533
- query?: never;
7534
- header?: never;
7535
- path?: never;
7536
- cookie?: never;
7537
- };
7538
- requestBody: {
7539
- content: {
7540
- "application/json": components["schemas"]["UpdateMiExpoMeFirstTimeDto"];
7541
- };
7542
- };
7543
- responses: {
7544
- 200: {
7545
- headers: {
7546
- [name: string]: unknown;
7547
- };
7548
- content: {
7549
- "application/json": components["schemas"]["GetMiExpoMeResponseDto"];
7550
- };
7551
- };
7552
- };
7553
- };
7554
7354
  MiExpoController_invitations: {
7555
7355
  parameters: {
7556
7356
  query?: never;
@@ -8017,63 +7817,6 @@ export interface operations {
8017
7817
  };
8018
7818
  };
8019
7819
  };
8020
- DynamicFormController_submit: {
8021
- parameters: {
8022
- query?: never;
8023
- header?: never;
8024
- path: {
8025
- id: string;
8026
- };
8027
- cookie?: never;
8028
- };
8029
- requestBody: {
8030
- content: {
8031
- "application/json": components["schemas"]["SubmitDynamicFormsDto"];
8032
- };
8033
- };
8034
- responses: {
8035
- 200: {
8036
- headers: {
8037
- [name: string]: unknown;
8038
- };
8039
- content: {
8040
- "application/json": components["schemas"]["SubmitDynamicFormsResponseDto"];
8041
- };
8042
- };
8043
- 400: {
8044
- headers: {
8045
- [name: string]: unknown;
8046
- };
8047
- content: {
8048
- "application/json": components["schemas"]["ErrorDto"];
8049
- };
8050
- };
8051
- 404: {
8052
- headers: {
8053
- [name: string]: unknown;
8054
- };
8055
- content: {
8056
- "application/json": components["schemas"]["ErrorDto"];
8057
- };
8058
- };
8059
- 406: {
8060
- headers: {
8061
- [name: string]: unknown;
8062
- };
8063
- content: {
8064
- "application/json": components["schemas"]["ErrorDto"];
8065
- };
8066
- };
8067
- 409: {
8068
- headers: {
8069
- [name: string]: unknown;
8070
- };
8071
- content: {
8072
- "application/json": components["schemas"]["ErrorDto"];
8073
- };
8074
- };
8075
- };
8076
- };
8077
7820
  DynamicFormController_update: {
8078
7821
  parameters: {
8079
7822
  query?: never;
@@ -8126,35 +7869,6 @@ export interface operations {
8126
7869
  };
8127
7870
  };
8128
7871
  };
8129
- DynamicFormController_getByName: {
8130
- parameters: {
8131
- query?: never;
8132
- header?: never;
8133
- path: {
8134
- name: string;
8135
- };
8136
- cookie?: never;
8137
- };
8138
- requestBody?: never;
8139
- responses: {
8140
- 200: {
8141
- headers: {
8142
- [name: string]: unknown;
8143
- };
8144
- content: {
8145
- "application/json": components["schemas"]["FindByNameDynamicFormsResponseDto"];
8146
- };
8147
- };
8148
- 404: {
8149
- headers: {
8150
- [name: string]: unknown;
8151
- };
8152
- content: {
8153
- "application/json": components["schemas"]["ErrorDto"];
8154
- };
8155
- };
8156
- };
8157
- };
8158
7872
  DynamicFormController_delete: {
8159
7873
  parameters: {
8160
7874
  query?: never;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-backend-types",
3
- "version": "0.57.0-EXPO-379-EB-Rutas-necesarias.13",
3
+ "version": "0.57.0-EXPO-389-EB-Modificaciones-necesarias-solicitud-afiliacion.1",
4
4
  "description": "",
5
5
  "author": "Expo",
6
6
  "private": false,