@verifiedinc-public/shared-ui-elements 9.1.1 → 9.1.2

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.
@@ -61,7 +61,7 @@ export declare const healthInsurance: {
61
61
  payer: z.ZodObject<{
62
62
  verifiedId: z.ZodString;
63
63
  name: z.ZodString;
64
- logoUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
64
+ logoUrl: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>>;
65
65
  }, "strip", z.ZodTypeAny, {
66
66
  name: string;
67
67
  verifiedId: string;
@@ -525,7 +525,7 @@ export declare const fields: {
525
525
  payer: import('zod').ZodObject<{
526
526
  verifiedId: import('zod').ZodString;
527
527
  name: import('zod').ZodString;
528
- logoUrl: import('zod').ZodOptional<import('zod').ZodNullable<import('zod').ZodString>>;
528
+ logoUrl: import('zod').ZodOptional<import('zod').ZodNullable<import('zod').ZodUnion<[import('zod').ZodString, import('zod').ZodLiteral<"">]>>>;
529
529
  }, "strip", import('zod').ZodTypeAny, {
530
530
  name: string;
531
531
  verifiedId: string;
@@ -5,7 +5,7 @@ export declare const healthInsuranceSchema: z.ZodObject<{
5
5
  payer: z.ZodObject<{
6
6
  verifiedId: z.ZodString;
7
7
  name: z.ZodString;
8
- logoUrl: z.ZodOptional<z.ZodNullable<z.ZodString>>;
8
+ logoUrl: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodString, z.ZodLiteral<"">]>>>;
9
9
  }, "strip", z.ZodTypeAny, {
10
10
  name: string;
11
11
  verifiedId: string;
@@ -1 +1 @@
1
- "use strict";import{z as e}from"zod";import{memberIdSchema as r}from"./memberId.schema.mjs";import{payerNameSchema as m}from"./payerName.schema.mjs";const a=e.object({id:e.number().optional(),memberId:r,payer:e.object({verifiedId:e.string().regex(/^V\d+$/),name:m,logoUrl:e.string().url().nullish()})});export{a as healthInsuranceSchema};
1
+ "use strict";import{z as e}from"zod";import{memberIdSchema as r}from"./memberId.schema.mjs";import{payerNameSchema as m}from"./payerName.schema.mjs";const a=e.object({id:e.number().optional(),memberId:r,payer:e.object({verifiedId:e.string().regex(/^V\d+$/),name:m,logoUrl:e.union([e.string().url(),e.literal("")]).nullish()})});export{a as healthInsuranceSchema};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@verifiedinc-public/shared-ui-elements",
3
- "version": "9.1.1",
3
+ "version": "9.1.2",
4
4
  "description": "A set of UI components, utilities that is shareable with the core apps.",
5
5
  "private": false,
6
6
  "sideEffects": false,