0.16.0 • Published 4 months ago

@clipboard-health/contract-core v0.16.0

Weekly downloads
-
License
MIT
Repository
github
Last release
4 months ago

@clipboard-health/contract-core

Shared Zod schemas for Clipboard's contracts.

Table of contents

Install

npm install @clipboard-health/contract-core

Usage

Zod schemas

import { apiErrors, booleanString, nonEmptyString, uuid } from "@clipboard-health/contract-core";
import { type ZodError } from "zod";

function logError(error: unknown) {
  console.error((error as ZodError).issues[0]!.message);
}

apiErrors.parse({
  errors: [
    {
      code: "NotFound",
      detail: "Resource 'b146a790-9ed1-499f-966d-6c4905dc667f' not found",
      id: "6191a8a0-96ff-4d4b-8e0f-746a5ab215f9",
      status: "404",
      title: "Not Found",
    },
  ],
});

booleanString.parse("true");

try {
  booleanString.parse("invalid");
} catch (error) {
  logError(error);
  // => Invalid enum value. Expected 'true' | 'false', received 'invalid'
}

nonEmptyString.parse("hello");
try {
  nonEmptyString.parse("");
} catch (error) {
  logError(error);
  // => String must contain at least 1 character(s)
}

// UUID validation examples
uuid.parse("b8d617bb-edef-4262-a6e3-6cc807fa1b26");
try {
  uuid.parse("invalid");
} catch (error) {
  logError(error);
  // => Invalid UUID format
}

Local development commands

See package.json scripts for a list of commands.

0.11.8

8 months ago

0.11.9

8 months ago

0.11.0

11 months ago

0.11.1

11 months ago

0.13.0

6 months ago

0.11.2

11 months ago

0.13.1

6 months ago

0.11.3

9 months ago

0.15.0

4 months ago

0.13.2

6 months ago

0.11.4

9 months ago

0.15.1

4 months ago

0.13.3

4 months ago

0.11.5

9 months ago

0.13.4

4 months ago

0.11.6

9 months ago

0.11.7

8 months ago

0.9.0

11 months ago

0.9.1

11 months ago

0.12.10

6 months ago

0.12.11

6 months ago

0.12.7

6 months ago

0.12.8

6 months ago

0.12.9

6 months ago

0.12.0

8 months ago

0.12.1

7 months ago

0.14.0

4 months ago

0.12.2

7 months ago

0.12.3

7 months ago

0.16.0

4 months ago

0.12.4

7 months ago

0.12.5

7 months ago

0.12.6

6 months ago

0.11.10

8 months ago

0.10.0

11 months ago

0.8.1

11 months ago

0.8.0

11 months ago

0.8.3

11 months ago

0.8.2

11 months ago

0.7.11

11 months ago

0.7.10

11 months ago

0.7.9

11 months ago

0.7.8

11 months ago

0.7.7

11 months ago

0.7.6

11 months ago

0.7.5

11 months ago

0.3.0

11 months ago

0.2.0

11 months ago

0.7.2

11 months ago

0.7.1

11 months ago

0.7.4

11 months ago

0.7.3

11 months ago

0.5.0

11 months ago

0.4.0

11 months ago

0.3.1

11 months ago

0.7.0

11 months ago

0.6.0

11 months ago

0.1.1

12 months ago

0.1.0

12 months ago