@actuarial-ts/interchange 0.5.0 → 0.6.1
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/README.md +36 -70
- package/dist/convert/diagnosticDefinition.d.ts +16 -0
- package/dist/convert/diagnosticDefinition.d.ts.map +1 -0
- package/dist/convert/diagnosticDefinition.js +82 -0
- package/dist/convert/diagnosticDefinition.js.map +1 -0
- package/dist/convert/result.d.ts.map +1 -1
- package/dist/convert/result.js +2 -2
- package/dist/convert/result.js.map +1 -1
- package/dist/envelope.d.ts +6 -6
- package/dist/envelope.d.ts.map +1 -1
- package/dist/envelope.js +13 -7
- package/dist/envelope.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -1
- package/dist/json.d.ts +5 -0
- package/dist/json.d.ts.map +1 -0
- package/dist/json.js +13 -0
- package/dist/json.js.map +1 -0
- package/dist/parse.d.ts +2 -1
- package/dist/parse.d.ts.map +1 -1
- package/dist/parse.js +8 -2
- package/dist/parse.js.map +1 -1
- package/dist/schemas/bundle.d.ts +2 -0
- package/dist/schemas/bundle.d.ts.map +1 -1
- package/dist/schemas/bundle.js +2 -0
- package/dist/schemas/bundle.js.map +1 -1
- package/dist/schemas/crosscheck.d.ts +6 -6
- package/dist/schemas/diagnosticDefinition.d.ts +11572 -0
- package/dist/schemas/diagnosticDefinition.d.ts.map +1 -0
- package/dist/schemas/diagnosticDefinition.js +133 -0
- package/dist/schemas/diagnosticDefinition.js.map +1 -0
- package/dist/schemas/manifest.d.ts.map +1 -1
- package/dist/schemas/manifest.js +7 -1
- package/dist/schemas/manifest.js.map +1 -1
- package/dist/schemas/record.d.ts +5 -0
- package/dist/schemas/record.d.ts.map +1 -0
- package/dist/schemas/record.js +9 -0
- package/dist/schemas/record.js.map +1 -0
- package/dist/schemas/result.d.ts +12 -12
- package/dist/schemas/selection.d.ts +6 -6
- package/dist/schemas/triangle.d.ts +89 -89
- package/dist/schemas/triangle.d.ts.map +1 -1
- package/dist/schemas/triangle.js +20 -5
- package/dist/schemas/triangle.js.map +1 -1
- package/package.json +4 -3
- package/src/convert/diagnosticDefinition.ts +150 -0
- package/src/convert/result.ts +2 -1
- package/src/envelope.ts +28 -9
- package/src/index.ts +2 -0
- package/src/json.ts +17 -0
- package/src/parse.ts +11 -3
- package/src/schemas/bundle.ts +3 -0
- package/src/schemas/diagnosticDefinition.ts +172 -0
- package/src/schemas/manifest.ts +7 -1
- package/src/schemas/record.ts +16 -0
- package/src/schemas/triangle.ts +23 -5
|
@@ -1795,8 +1795,8 @@ export declare const crosscheckReportDocSchema: z.ZodObject<{
|
|
|
1795
1795
|
name: z.ZodString;
|
|
1796
1796
|
version: z.ZodString;
|
|
1797
1797
|
}, z.ZodTypeAny, "passthrough">>;
|
|
1798
|
-
createdAt: z.ZodString
|
|
1799
|
-
extensions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown
|
|
1798
|
+
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
1799
|
+
extensions: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodEffects<z.ZodString, string, string>, z.ZodUnknown>, Record<string, unknown>, Record<string, unknown>>>;
|
|
1800
1800
|
integrity: z.ZodString;
|
|
1801
1801
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1802
1802
|
/** Semantic body key per spec rev 2.1: `report` (the head-noun rule). */
|
|
@@ -2677,8 +2677,8 @@ export declare const crosscheckReportDocSchema: z.ZodObject<{
|
|
|
2677
2677
|
name: z.ZodString;
|
|
2678
2678
|
version: z.ZodString;
|
|
2679
2679
|
}, z.ZodTypeAny, "passthrough">>;
|
|
2680
|
-
createdAt: z.ZodString
|
|
2681
|
-
extensions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown
|
|
2680
|
+
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
2681
|
+
extensions: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodEffects<z.ZodString, string, string>, z.ZodUnknown>, Record<string, unknown>, Record<string, unknown>>>;
|
|
2682
2682
|
integrity: z.ZodString;
|
|
2683
2683
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2684
2684
|
/** Semantic body key per spec rev 2.1: `report` (the head-noun rule). */
|
|
@@ -3559,8 +3559,8 @@ export declare const crosscheckReportDocSchema: z.ZodObject<{
|
|
|
3559
3559
|
name: z.ZodString;
|
|
3560
3560
|
version: z.ZodString;
|
|
3561
3561
|
}, z.ZodTypeAny, "passthrough">>;
|
|
3562
|
-
createdAt: z.ZodString
|
|
3563
|
-
extensions: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown
|
|
3562
|
+
createdAt: z.ZodEffects<z.ZodString, string, string>;
|
|
3563
|
+
extensions: z.ZodOptional<z.ZodEffects<z.ZodRecord<z.ZodEffects<z.ZodString, string, string>, z.ZodUnknown>, Record<string, unknown>, Record<string, unknown>>>;
|
|
3564
3564
|
integrity: z.ZodString;
|
|
3565
3565
|
}, z.ZodTypeAny, "passthrough">>;
|
|
3566
3566
|
export type CrosscheckReportDoc = z.infer<typeof crosscheckReportDocSchema>;
|