@shepherdjerred/helm-types 1.2.1-dev.2441 → 1.2.1-dev.2455

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.
Files changed (2) hide show
  1. package/dist/cli.js +2 -2
  2. package/package.json +1 -1
package/dist/cli.js CHANGED
@@ -18396,7 +18396,7 @@ function finalize(ctx, schema) {
18396
18396
  result.$schema = "http://json-schema.org/draft-07/schema#";
18397
18397
  } else if (ctx.target === "draft-04") {
18398
18398
  result.$schema = "http://json-schema.org/draft-04/schema#";
18399
- } else if (ctx.target === "openapi-3.0") {} else {}
18399
+ } else if (ctx.target === "openapi-3.0") {}
18400
18400
  if (ctx.external?.uri) {
18401
18401
  const id = ctx.external.registry.get(schema)?.id;
18402
18402
  if (!id)
@@ -18640,7 +18640,7 @@ var literalProcessor = (schema, ctx, json, _params) => {
18640
18640
  if (val === undefined) {
18641
18641
  if (ctx.unrepresentable === "throw") {
18642
18642
  throw new Error("Literal `undefined` cannot be represented in JSON Schema");
18643
- } else {}
18643
+ }
18644
18644
  } else if (typeof val === "bigint") {
18645
18645
  if (ctx.unrepresentable === "throw") {
18646
18646
  throw new Error("BigInt literals cannot be represented in JSON Schema");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shepherdjerred/helm-types",
3
- "version": "1.2.1-dev.2441",
3
+ "version": "1.2.1-dev.2455",
4
4
  "description": "Generate TypeScript types from Helm chart values.yaml and values.schema.json",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",