expo-backend-types 0.57.0-EXPO-379-EB-Rutas-necesarias.2 → 0.57.0-EXPO-379-EB-Rutas-necesarias.3
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/dynamic-form/dto/find-by-name-dynamic-form.dto.d.ts +515 -0
- package/dist/src/dynamic-form/dto/find-by-name-dynamic-form.dto.js +23 -0
- package/dist/src/i18n/es.d.ts +7 -0
- package/dist/src/i18n/es.js +7 -0
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/mi-expo/dto/get-me.dto.d.ts +20 -0
- package/dist/src/production/dto/create-production.dto.d.ts +8 -1
- package/dist/src/production/dto/create-production.dto.js +1 -0
- package/dist/src/production/dto/delete-production.dto.d.ts +6 -0
- package/dist/src/production/dto/get-all-production.dto.d.ts +10 -0
- package/dist/src/production/dto/production.dto.d.ts +3 -0
- package/dist/src/production/dto/production.dto.js +3 -0
- package/dist/src/production/dto/update-production.dto.d.ts +12 -0
- package/dist/src/production/dto/update-production.dto.js +1 -0
- package/dist/src/production-affiliation-request/dto/find-by-production-affiliation-request.dto.d.ts +14 -0
- package/dist/src/production-affiliation-request/dto/update-production-affiliation-request.dto.d.ts +10 -0
- package/dist/types/schema.d.ts +95 -0
- package/package.json +1 -1
package/dist/types/schema.d.ts
CHANGED
@@ -1759,6 +1759,22 @@ export interface paths {
|
|
1759
1759
|
patch?: never;
|
1760
1760
|
trace?: never;
|
1761
1761
|
};
|
1762
|
+
"/dynamic-form/{name}": {
|
1763
|
+
parameters: {
|
1764
|
+
query?: never;
|
1765
|
+
header?: never;
|
1766
|
+
path?: never;
|
1767
|
+
cookie?: never;
|
1768
|
+
};
|
1769
|
+
get: operations["DynamicFormController_getByName"];
|
1770
|
+
put?: never;
|
1771
|
+
post?: never;
|
1772
|
+
delete?: never;
|
1773
|
+
options?: never;
|
1774
|
+
head?: never;
|
1775
|
+
patch?: never;
|
1776
|
+
trace?: never;
|
1777
|
+
};
|
1762
1778
|
"/dynamic-form/delete/{id}": {
|
1763
1779
|
parameters: {
|
1764
1780
|
query?: never;
|
@@ -3980,6 +3996,7 @@ export interface components {
|
|
3980
3996
|
productionsAdministrated: {
|
3981
3997
|
id: string;
|
3982
3998
|
name: string;
|
3999
|
+
description: string;
|
3983
4000
|
administratorId: string | null;
|
3984
4001
|
created_at: string;
|
3985
4002
|
updated_at: string;
|
@@ -3987,6 +4004,7 @@ export interface components {
|
|
3987
4004
|
productionsParticipated: {
|
3988
4005
|
id: string;
|
3989
4006
|
name: string;
|
4007
|
+
description: string;
|
3990
4008
|
administratorId: string | null;
|
3991
4009
|
created_at: string;
|
3992
4010
|
updated_at: string;
|
@@ -4133,6 +4151,7 @@ export interface components {
|
|
4133
4151
|
productions: {
|
4134
4152
|
id: string;
|
4135
4153
|
name: string;
|
4154
|
+
description: string;
|
4136
4155
|
administratorId: string | null;
|
4137
4156
|
created_at: string;
|
4138
4157
|
updated_at: string;
|
@@ -4167,6 +4186,7 @@ export interface components {
|
|
4167
4186
|
};
|
4168
4187
|
CreateProductionDto: {
|
4169
4188
|
name: string;
|
4189
|
+
description: string;
|
4170
4190
|
administratorId: string | null;
|
4171
4191
|
};
|
4172
4192
|
CreateProductionRoleDto: {
|
@@ -4174,11 +4194,13 @@ export interface components {
|
|
4174
4194
|
};
|
4175
4195
|
UpdateProductionDto: {
|
4176
4196
|
name?: string;
|
4197
|
+
description?: string;
|
4177
4198
|
administratorId?: string | null;
|
4178
4199
|
};
|
4179
4200
|
UpdateProductionResponseDto: {
|
4180
4201
|
id: string;
|
4181
4202
|
name: string;
|
4203
|
+
description: string;
|
4182
4204
|
administratorId: string | null;
|
4183
4205
|
created_at: string;
|
4184
4206
|
updated_at: string;
|
@@ -4186,6 +4208,7 @@ export interface components {
|
|
4186
4208
|
DeleteProductionResponseDto: {
|
4187
4209
|
id: string;
|
4188
4210
|
name: string;
|
4211
|
+
description: string;
|
4189
4212
|
administratorId: string | null;
|
4190
4213
|
created_at: string;
|
4191
4214
|
updated_at: string;
|
@@ -4203,6 +4226,7 @@ export interface components {
|
|
4203
4226
|
production: {
|
4204
4227
|
id: string;
|
4205
4228
|
name: string;
|
4229
|
+
description: string;
|
4206
4230
|
administratorId: string | null;
|
4207
4231
|
created_at: string;
|
4208
4232
|
updated_at: string;
|
@@ -4246,6 +4270,7 @@ export interface components {
|
|
4246
4270
|
production: {
|
4247
4271
|
id: string;
|
4248
4272
|
name: string;
|
4273
|
+
description: string;
|
4249
4274
|
administratorId: string | null;
|
4250
4275
|
created_at: string;
|
4251
4276
|
updated_at: string;
|
@@ -4388,6 +4413,47 @@ export interface components {
|
|
4388
4413
|
}[];
|
4389
4414
|
}[];
|
4390
4415
|
}[];
|
4416
|
+
FindByNameDynamicFormsResponseDto: {
|
4417
|
+
id: string;
|
4418
|
+
name: string;
|
4419
|
+
created_at: string;
|
4420
|
+
updated_at: string;
|
4421
|
+
questions: {
|
4422
|
+
id: string;
|
4423
|
+
formId: string;
|
4424
|
+
text: string;
|
4425
|
+
disabled: boolean;
|
4426
|
+
required: boolean;
|
4427
|
+
multipleChoice: boolean;
|
4428
|
+
tagGroupId: string;
|
4429
|
+
created_at: string;
|
4430
|
+
updated_at: string;
|
4431
|
+
tagGroup: {
|
4432
|
+
id: string;
|
4433
|
+
name: string;
|
4434
|
+
color: string;
|
4435
|
+
isExclusive: boolean;
|
4436
|
+
created_at: string;
|
4437
|
+
updated_at: string;
|
4438
|
+
};
|
4439
|
+
options: {
|
4440
|
+
id: string;
|
4441
|
+
text: string;
|
4442
|
+
tagId: string;
|
4443
|
+
questionId: string;
|
4444
|
+
created_at: string;
|
4445
|
+
updated_at: string;
|
4446
|
+
tag: {
|
4447
|
+
id: string;
|
4448
|
+
name: string;
|
4449
|
+
groupId: string;
|
4450
|
+
type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE" | "FORM_OPTION";
|
4451
|
+
created_at: string;
|
4452
|
+
updated_at: string;
|
4453
|
+
};
|
4454
|
+
}[];
|
4455
|
+
}[];
|
4456
|
+
};
|
4391
4457
|
DeleteDynamicFormDto: {
|
4392
4458
|
id: string;
|
4393
4459
|
};
|
@@ -7949,6 +8015,35 @@ export interface operations {
|
|
7949
8015
|
};
|
7950
8016
|
};
|
7951
8017
|
};
|
8018
|
+
DynamicFormController_getByName: {
|
8019
|
+
parameters: {
|
8020
|
+
query?: never;
|
8021
|
+
header?: never;
|
8022
|
+
path: {
|
8023
|
+
name: string;
|
8024
|
+
};
|
8025
|
+
cookie?: never;
|
8026
|
+
};
|
8027
|
+
requestBody?: never;
|
8028
|
+
responses: {
|
8029
|
+
200: {
|
8030
|
+
headers: {
|
8031
|
+
[name: string]: unknown;
|
8032
|
+
};
|
8033
|
+
content: {
|
8034
|
+
"application/json": components["schemas"]["FindByNameDynamicFormsResponseDto"];
|
8035
|
+
};
|
8036
|
+
};
|
8037
|
+
404: {
|
8038
|
+
headers: {
|
8039
|
+
[name: string]: unknown;
|
8040
|
+
};
|
8041
|
+
content: {
|
8042
|
+
"application/json": components["schemas"]["ErrorDto"];
|
8043
|
+
};
|
8044
|
+
};
|
8045
|
+
};
|
8046
|
+
};
|
7952
8047
|
DynamicFormController_delete: {
|
7953
8048
|
parameters: {
|
7954
8049
|
query?: never;
|