@opencrvs/toolkit 1.8.1-rc.032a7f2 → 1.8.1-rc.06c1a33

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.
@@ -264,7 +264,37 @@ export declare const EventIndex: z.ZodObject<z.objectUtil.extendShape<{
264
264
  firstname: string;
265
265
  surname: string;
266
266
  middlename?: string | null | undefined;
267
- }>, z.ZodNull]>, z.ZodUndefined]>]>>;
267
+ }>, z.ZodNull]>, z.ZodUndefined]>, z.ZodNumber, z.ZodObject<{
268
+ loading: z.ZodBoolean;
269
+ error: z.ZodNullable<z.ZodObject<{
270
+ statusCode: z.ZodNullable<z.ZodNumber>;
271
+ message: z.ZodString;
272
+ }, "strip", z.ZodTypeAny, {
273
+ message: string;
274
+ statusCode: number | null;
275
+ }, {
276
+ message: string;
277
+ statusCode: number | null;
278
+ }>>;
279
+ data: z.ZodAny;
280
+ trackingValue: z.ZodOptional<z.ZodString>;
281
+ }, "strip", z.ZodTypeAny, {
282
+ error: {
283
+ message: string;
284
+ statusCode: number | null;
285
+ } | null;
286
+ loading: boolean;
287
+ data?: any;
288
+ trackingValue?: string | undefined;
289
+ }, {
290
+ error: {
291
+ message: string;
292
+ statusCode: number | null;
293
+ } | null;
294
+ loading: boolean;
295
+ data?: any;
296
+ trackingValue?: string | undefined;
297
+ }>]>>;
268
298
  }>, "strip", z.ZodTypeAny, {
269
299
  type: string;
270
300
  id: string & z.BRAND<"UUID">;
@@ -317,6 +347,14 @@ export declare const EventIndex: z.ZodObject<z.objectUtil.extendShape<{
317
347
  path: string;
318
348
  originalFilename: string;
319
349
  }[] | {
350
+ error: {
351
+ message: string;
352
+ statusCode: number | null;
353
+ } | null;
354
+ loading: boolean;
355
+ data?: any;
356
+ trackingValue?: string | undefined;
357
+ } | {
320
358
  start: string;
321
359
  end: string;
322
360
  } | null | undefined>;
@@ -404,6 +442,14 @@ export declare const EventIndex: z.ZodObject<z.objectUtil.extendShape<{
404
442
  path: string;
405
443
  originalFilename: string;
406
444
  }[] | {
445
+ error: {
446
+ message: string;
447
+ statusCode: number | null;
448
+ } | null;
449
+ loading: boolean;
450
+ data?: any;
451
+ trackingValue?: string | undefined;
452
+ } | {
407
453
  start: string;
408
454
  end: string;
409
455
  } | null | undefined>;