expo-backend-types 0.4.0-EXPO-248-EB-GrupoEtiqueta.4 → 0.4.0-EXPO-248-EB-GrupoEtiqueta.5

Sign up to get free protection for your applications and to get access to all the features.
@@ -60,6 +60,33 @@ export declare const getMeResponseSchema: z.ZodObject<z.objectUtil.extendShape<O
60
60
  isExclusive: boolean;
61
61
  };
62
62
  }>, "many">;
63
+ tags: z.ZodArray<z.ZodObject<{
64
+ id: z.ZodString;
65
+ name: z.ZodString;
66
+ groupId: z.ZodString;
67
+ type: z.ZodNativeEnum<{
68
+ PROFILE: "PROFILE";
69
+ EVENT: "EVENT";
70
+ PARTICIPANT: "PARTICIPANT";
71
+ NOT_IN_SYSTEM: "NOT_IN_SYSTEM";
72
+ }>;
73
+ created_at: z.ZodDate;
74
+ updated_at: z.ZodDate;
75
+ }, "strip", z.ZodTypeAny, {
76
+ id: string;
77
+ name: string;
78
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
79
+ created_at: Date;
80
+ updated_at: Date;
81
+ groupId: string;
82
+ }, {
83
+ id: string;
84
+ name: string;
85
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
86
+ created_at: Date;
87
+ updated_at: Date;
88
+ groupId: string;
89
+ }>, "many">;
63
90
  }>, "strip", z.ZodTypeAny, {
64
91
  id: string;
65
92
  username: string;
@@ -78,6 +105,14 @@ export declare const getMeResponseSchema: z.ZodObject<z.objectUtil.extendShape<O
78
105
  isExclusive: boolean;
79
106
  };
80
107
  }[];
108
+ tags: {
109
+ id: string;
110
+ name: string;
111
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
112
+ created_at: Date;
113
+ updated_at: Date;
114
+ groupId: string;
115
+ }[];
81
116
  }, {
82
117
  id: string;
83
118
  username: string;
@@ -94,6 +129,14 @@ export declare const getMeResponseSchema: z.ZodObject<z.objectUtil.extendShape<O
94
129
  isExclusive: boolean;
95
130
  };
96
131
  }[];
132
+ tags: {
133
+ id: string;
134
+ name: string;
135
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
136
+ created_at: Date;
137
+ updated_at: Date;
138
+ groupId: string;
139
+ }[];
97
140
  isGlobalFilterActive?: boolean | undefined;
98
141
  fcmToken?: string[] | undefined;
99
142
  }>;
@@ -158,6 +201,33 @@ declare const GetMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
158
201
  isExclusive: boolean;
159
202
  };
160
203
  }>, "many">;
204
+ tags: z.ZodArray<z.ZodObject<{
205
+ id: z.ZodString;
206
+ name: z.ZodString;
207
+ groupId: z.ZodString;
208
+ type: z.ZodNativeEnum<{
209
+ PROFILE: "PROFILE";
210
+ EVENT: "EVENT";
211
+ PARTICIPANT: "PARTICIPANT";
212
+ NOT_IN_SYSTEM: "NOT_IN_SYSTEM";
213
+ }>;
214
+ created_at: z.ZodDate;
215
+ updated_at: z.ZodDate;
216
+ }, "strip", z.ZodTypeAny, {
217
+ id: string;
218
+ name: string;
219
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
220
+ created_at: Date;
221
+ updated_at: Date;
222
+ groupId: string;
223
+ }, {
224
+ id: string;
225
+ name: string;
226
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
227
+ created_at: Date;
228
+ updated_at: Date;
229
+ groupId: string;
230
+ }>, "many">;
161
231
  }>, "strip", z.ZodTypeAny, {
162
232
  id: string;
163
233
  username: string;
@@ -176,6 +246,14 @@ declare const GetMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
176
246
  isExclusive: boolean;
177
247
  };
178
248
  }[];
249
+ tags: {
250
+ id: string;
251
+ name: string;
252
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
253
+ created_at: Date;
254
+ updated_at: Date;
255
+ groupId: string;
256
+ }[];
179
257
  }, {
180
258
  id: string;
181
259
  username: string;
@@ -192,6 +270,14 @@ declare const GetMeResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<
192
270
  isExclusive: boolean;
193
271
  };
194
272
  }[];
273
+ tags: {
274
+ id: string;
275
+ name: string;
276
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
277
+ created_at: Date;
278
+ updated_at: Date;
279
+ groupId: string;
280
+ }[];
195
281
  isGlobalFilterActive?: boolean | undefined;
196
282
  fcmToken?: string[] | undefined;
197
283
  }>>;
@@ -27,6 +27,7 @@ exports.getMeResponseSchema = account_dto_1.accountSchema
27
27
  isExclusive: true,
28
28
  }),
29
29
  }))),
30
+ tags: zod_1.default.array(tag_dto_1.tagSchema),
30
31
  }));
31
32
  class GetMeResponseDto extends (0, zod_nestjs_1.createZodDto)(exports.getMeResponseSchema) {
32
33
  }
@@ -399,6 +399,14 @@ export interface components {
399
399
  isExclusive: boolean;
400
400
  };
401
401
  }[];
402
+ tags: {
403
+ id: string;
404
+ name: string;
405
+ groupId: string;
406
+ type: "PROFILE" | "EVENT" | "PARTICIPANT" | "NOT_IN_SYSTEM";
407
+ created_at: string;
408
+ updated_at: string;
409
+ }[];
402
410
  };
403
411
  CreateTagGroupDto: {
404
412
  color: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "expo-backend-types",
3
- "version": "0.4.0-EXPO-248-EB-GrupoEtiqueta.4",
3
+ "version": "0.4.0-EXPO-248-EB-GrupoEtiqueta.5",
4
4
  "description": "",
5
5
  "author": "Expo",
6
6
  "private": false,