ignotum 0.0.9 → 0.0.10

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.
package/dist/cli/bin.mjs CHANGED
@@ -29547,6 +29547,7 @@ const TransportValueSchema = Schema.suspend(() => Schema.Union([
29547
29547
  Schema.Array(TransportValueSchema),
29548
29548
  Schema.Record(Schema.String, Schema.UndefinedOr(TransportValueSchema))
29549
29549
  ]));
29550
+ Schema.toType(TransportValueSchema);
29550
29551
  const collectDatePaths = (value, path, paths) => {
29551
29552
  if (Predicate.isDate(value)) {
29552
29553
  Schema.decodeSync(Schema.Date)(value);
@@ -30089,7 +30090,7 @@ var IdGenerator = class IdGenerator extends Context.Service()("@ignotum/shared/i
30089
30090
  };
30090
30091
  //#endregion
30091
30092
  //#region package.json
30092
- var version = "0.0.9";
30093
+ var version = "0.0.10";
30093
30094
  //#endregion
30094
30095
  //#region src/cli/codegen.ts
30095
30096
  const generatedHeader = "// Generated by `ignotum codegen`. Do not edit.";