@opencrvs/toolkit 1.8.0-rc.fc4c805 → 1.8.0-rc.fcd89ec

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.
@@ -6277,7 +6277,7 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6277
6277
  keepAssignment: z.ZodOptional<z.ZodBoolean>;
6278
6278
  }, {
6279
6279
  type: z.ZodDefault<z.ZodLiteral<"CREATE">>;
6280
- createdAtLocation: z.ZodString;
6280
+ createdAtLocation: z.ZodOptional<z.ZodNullable<z.ZodString>>;
6281
6281
  }>, "strip", z.ZodTypeAny, {
6282
6282
  type: "CREATE";
6283
6283
  transactionId: string;
@@ -6319,8 +6319,8 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6319
6319
  filename: string;
6320
6320
  originalFilename: string;
6321
6321
  }[] | [string, string] | undefined>;
6322
- createdAtLocation: string;
6323
6322
  eventId: string;
6323
+ createdAtLocation?: string | null | undefined;
6324
6324
  annotation?: Record<string, string | number | boolean | {
6325
6325
  type: string;
6326
6326
  filename: string;
@@ -6363,9 +6363,9 @@ export declare const ActionInput: z.ZodDiscriminatedUnion<"type", [z.ZodObject<z
6363
6363
  keepAssignment?: boolean | undefined;
6364
6364
  }, {
6365
6365
  transactionId: string;
6366
- createdAtLocation: string;
6367
6366
  eventId: string;
6368
6367
  type?: "CREATE" | undefined;
6368
+ createdAtLocation?: string | null | undefined;
6369
6369
  declaration?: Record<string, string | number | boolean | {
6370
6370
  type: string;
6371
6371
  filename: string;