@actuarial-ts/interchange 0.2.0 → 0.3.0
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 +28 -1
- package/dist/convert/result.d.ts +4 -4
- package/dist/convert/result.js +3 -3
- package/dist/convert/result.js.map +1 -1
- package/dist/envelope.d.ts +1 -1
- package/dist/envelope.js +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/index.js.map +1 -1
- package/dist/parse.d.ts.map +1 -1
- package/dist/parse.js +49 -0
- package/dist/parse.js.map +1 -1
- package/dist/referee/crosscheck.d.ts +12 -0
- package/dist/referee/crosscheck.d.ts.map +1 -1
- package/dist/referee/crosscheck.js +109 -9
- package/dist/referee/crosscheck.js.map +1 -1
- package/dist/referee/crosscheckStochastic.d.ts +24 -0
- package/dist/referee/crosscheckStochastic.d.ts.map +1 -0
- package/dist/referee/crosscheckStochastic.js +367 -0
- package/dist/referee/crosscheckStochastic.js.map +1 -0
- package/dist/schemas/result.d.ts +552 -0
- package/dist/schemas/result.d.ts.map +1 -1
- package/dist/schemas/result.js +52 -0
- package/dist/schemas/result.js.map +1 -1
- package/package.json +4 -2
- package/src/convert/result.ts +212 -0
- package/src/convert/selection.ts +565 -0
- package/src/convert/triangle.ts +208 -0
- package/src/envelope.ts +193 -0
- package/src/index.ts +15 -0
- package/src/parse.ts +175 -0
- package/src/referee/crosscheck.ts +459 -0
- package/src/referee/crosscheckStochastic.ts +488 -0
- package/src/referee/profiles.ts +113 -0
- package/src/schemas/bundle.ts +64 -0
- package/src/schemas/crosscheck.ts +84 -0
- package/src/schemas/manifest.ts +75 -0
- package/src/schemas/result.ts +180 -0
- package/src/schemas/selection.ts +175 -0
- package/src/schemas/study.ts +98 -0
- package/src/schemas/triangle.ts +138 -0
package/dist/schemas/result.d.ts
CHANGED
|
@@ -881,9 +881,121 @@ export declare const stochasticSummarySchema: z.ZodObject<{
|
|
|
881
881
|
/** e.g. { "75": ..., "95": ... } — percentile label → value. */
|
|
882
882
|
percentiles: z.ZodRecord<z.ZodString, z.ZodNumber>;
|
|
883
883
|
}, z.ZodTypeAny, "passthrough">>;
|
|
884
|
+
/**
|
|
885
|
+
* How much a consumer may rely on re-running this result.
|
|
886
|
+
*
|
|
887
|
+
* A seed is NOT the same guarantee as reproducibility: it removes one source
|
|
888
|
+
* of variance, but the engine underneath may still be non-deterministic. This
|
|
889
|
+
* field says which promise the document actually carries, so an actuary knows
|
|
890
|
+
* whether they hold a derivation anyone can regenerate or an observation
|
|
891
|
+
* somebody recorded.
|
|
892
|
+
*
|
|
893
|
+
* - `seeded-reproducible` — re-running with this seed reproduces this document
|
|
894
|
+
* byte-for-byte. @actuarial-ts/core's own stochastic layer is this
|
|
895
|
+
* (packages/core/test/odpBootstrap.test.ts pins it), because it uses a seeded
|
|
896
|
+
* PRNG with no ambient randomness.
|
|
897
|
+
* - `witnessed` — the engine is NOT byte-reproducible even under a fixed seed.
|
|
898
|
+
* The document is an integrity-checked record of what that engine produced on
|
|
899
|
+
* that run, not something a reviewer can regenerate. Still legitimate ASOP
|
|
900
|
+
* No. 56 evidence — it just supports an attestation, not a replay.
|
|
901
|
+
*
|
|
902
|
+
* Absent means unstated (documents written before this field existed); treat
|
|
903
|
+
* an absent value as unknown, never as a reproducibility guarantee.
|
|
904
|
+
*
|
|
905
|
+
* Deterministic methods do not carry this field: kind `method-result` already
|
|
906
|
+
* implies reproducibility, and the frozen conformance corpus proves it across
|
|
907
|
+
* three independent shores.
|
|
908
|
+
*/
|
|
909
|
+
export declare const reproducibilitySchema: z.ZodEnum<["seeded-reproducible", "witnessed"]>;
|
|
910
|
+
export type Reproducibility = z.infer<typeof reproducibilitySchema>;
|
|
911
|
+
/**
|
|
912
|
+
* The engine's own self-check: it ran the identical seeded request more than
|
|
913
|
+
* once and reports whether the runs agreed. This is what lets a
|
|
914
|
+
* non-reproducible engine be HONEST rather than silently unstable — the
|
|
915
|
+
* instability is measured and disclosed on the document instead of surfacing
|
|
916
|
+
* later as a mysteriously failing test.
|
|
917
|
+
*/
|
|
918
|
+
export declare const stabilityCheckSchema: z.ZodObject<{
|
|
919
|
+
/** How many independent runs of the identical seeded request were compared (>= 2). */
|
|
920
|
+
repeats: z.ZodNumber;
|
|
921
|
+
/** True when every repeat produced the identical semantic body. */
|
|
922
|
+
byteIdentical: z.ZodBoolean;
|
|
923
|
+
/**
|
|
924
|
+
* Worst relative deviation observed across repeats on the summary mean,
|
|
925
|
+
* using the cross-shore definition |a-b| / max(|a|,|b|). Null when not
|
|
926
|
+
* computable. Zero with byteIdentical=false means the bodies differed
|
|
927
|
+
* somewhere other than the summary mean.
|
|
928
|
+
*/
|
|
929
|
+
maxRelativeDeviation: z.ZodNullable<z.ZodNumber>;
|
|
930
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
931
|
+
/** How many independent runs of the identical seeded request were compared (>= 2). */
|
|
932
|
+
repeats: z.ZodNumber;
|
|
933
|
+
/** True when every repeat produced the identical semantic body. */
|
|
934
|
+
byteIdentical: z.ZodBoolean;
|
|
935
|
+
/**
|
|
936
|
+
* Worst relative deviation observed across repeats on the summary mean,
|
|
937
|
+
* using the cross-shore definition |a-b| / max(|a|,|b|). Null when not
|
|
938
|
+
* computable. Zero with byteIdentical=false means the bodies differed
|
|
939
|
+
* somewhere other than the summary mean.
|
|
940
|
+
*/
|
|
941
|
+
maxRelativeDeviation: z.ZodNullable<z.ZodNumber>;
|
|
942
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
943
|
+
/** How many independent runs of the identical seeded request were compared (>= 2). */
|
|
944
|
+
repeats: z.ZodNumber;
|
|
945
|
+
/** True when every repeat produced the identical semantic body. */
|
|
946
|
+
byteIdentical: z.ZodBoolean;
|
|
947
|
+
/**
|
|
948
|
+
* Worst relative deviation observed across repeats on the summary mean,
|
|
949
|
+
* using the cross-shore definition |a-b| / max(|a|,|b|). Null when not
|
|
950
|
+
* computable. Zero with byteIdentical=false means the bodies differed
|
|
951
|
+
* somewhere other than the summary mean.
|
|
952
|
+
*/
|
|
953
|
+
maxRelativeDeviation: z.ZodNullable<z.ZodNumber>;
|
|
954
|
+
}, z.ZodTypeAny, "passthrough">>;
|
|
955
|
+
export type StabilityCheck = z.infer<typeof stabilityCheckSchema>;
|
|
884
956
|
export declare const stochasticResultBodySchema: z.ZodObject<{
|
|
885
957
|
seed: z.ZodOptional<z.ZodNumber>;
|
|
886
958
|
nSims: z.ZodNumber;
|
|
959
|
+
/** Which reproducibility promise this document carries; see the schema doc. */
|
|
960
|
+
reproducibility: z.ZodOptional<z.ZodEnum<["seeded-reproducible", "witnessed"]>>;
|
|
961
|
+
/** The engine's repeat-run self-check, when it performed one. */
|
|
962
|
+
stability: z.ZodOptional<z.ZodObject<{
|
|
963
|
+
/** How many independent runs of the identical seeded request were compared (>= 2). */
|
|
964
|
+
repeats: z.ZodNumber;
|
|
965
|
+
/** True when every repeat produced the identical semantic body. */
|
|
966
|
+
byteIdentical: z.ZodBoolean;
|
|
967
|
+
/**
|
|
968
|
+
* Worst relative deviation observed across repeats on the summary mean,
|
|
969
|
+
* using the cross-shore definition |a-b| / max(|a|,|b|). Null when not
|
|
970
|
+
* computable. Zero with byteIdentical=false means the bodies differed
|
|
971
|
+
* somewhere other than the summary mean.
|
|
972
|
+
*/
|
|
973
|
+
maxRelativeDeviation: z.ZodNullable<z.ZodNumber>;
|
|
974
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
975
|
+
/** How many independent runs of the identical seeded request were compared (>= 2). */
|
|
976
|
+
repeats: z.ZodNumber;
|
|
977
|
+
/** True when every repeat produced the identical semantic body. */
|
|
978
|
+
byteIdentical: z.ZodBoolean;
|
|
979
|
+
/**
|
|
980
|
+
* Worst relative deviation observed across repeats on the summary mean,
|
|
981
|
+
* using the cross-shore definition |a-b| / max(|a|,|b|). Null when not
|
|
982
|
+
* computable. Zero with byteIdentical=false means the bodies differed
|
|
983
|
+
* somewhere other than the summary mean.
|
|
984
|
+
*/
|
|
985
|
+
maxRelativeDeviation: z.ZodNullable<z.ZodNumber>;
|
|
986
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
987
|
+
/** How many independent runs of the identical seeded request were compared (>= 2). */
|
|
988
|
+
repeats: z.ZodNumber;
|
|
989
|
+
/** True when every repeat produced the identical semantic body. */
|
|
990
|
+
byteIdentical: z.ZodBoolean;
|
|
991
|
+
/**
|
|
992
|
+
* Worst relative deviation observed across repeats on the summary mean,
|
|
993
|
+
* using the cross-shore definition |a-b| / max(|a|,|b|). Null when not
|
|
994
|
+
* computable. Zero with byteIdentical=false means the bodies differed
|
|
995
|
+
* somewhere other than the summary mean.
|
|
996
|
+
*/
|
|
997
|
+
maxRelativeDeviation: z.ZodNullable<z.ZodNumber>;
|
|
998
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
887
999
|
summary: z.ZodObject<{
|
|
888
1000
|
mean: z.ZodNumber;
|
|
889
1001
|
sd: z.ZodNumber;
|
|
@@ -986,6 +1098,46 @@ export declare const stochasticResultBodySchema: z.ZodObject<{
|
|
|
986
1098
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
987
1099
|
seed: z.ZodOptional<z.ZodNumber>;
|
|
988
1100
|
nSims: z.ZodNumber;
|
|
1101
|
+
/** Which reproducibility promise this document carries; see the schema doc. */
|
|
1102
|
+
reproducibility: z.ZodOptional<z.ZodEnum<["seeded-reproducible", "witnessed"]>>;
|
|
1103
|
+
/** The engine's repeat-run self-check, when it performed one. */
|
|
1104
|
+
stability: z.ZodOptional<z.ZodObject<{
|
|
1105
|
+
/** How many independent runs of the identical seeded request were compared (>= 2). */
|
|
1106
|
+
repeats: z.ZodNumber;
|
|
1107
|
+
/** True when every repeat produced the identical semantic body. */
|
|
1108
|
+
byteIdentical: z.ZodBoolean;
|
|
1109
|
+
/**
|
|
1110
|
+
* Worst relative deviation observed across repeats on the summary mean,
|
|
1111
|
+
* using the cross-shore definition |a-b| / max(|a|,|b|). Null when not
|
|
1112
|
+
* computable. Zero with byteIdentical=false means the bodies differed
|
|
1113
|
+
* somewhere other than the summary mean.
|
|
1114
|
+
*/
|
|
1115
|
+
maxRelativeDeviation: z.ZodNullable<z.ZodNumber>;
|
|
1116
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1117
|
+
/** How many independent runs of the identical seeded request were compared (>= 2). */
|
|
1118
|
+
repeats: z.ZodNumber;
|
|
1119
|
+
/** True when every repeat produced the identical semantic body. */
|
|
1120
|
+
byteIdentical: z.ZodBoolean;
|
|
1121
|
+
/**
|
|
1122
|
+
* Worst relative deviation observed across repeats on the summary mean,
|
|
1123
|
+
* using the cross-shore definition |a-b| / max(|a|,|b|). Null when not
|
|
1124
|
+
* computable. Zero with byteIdentical=false means the bodies differed
|
|
1125
|
+
* somewhere other than the summary mean.
|
|
1126
|
+
*/
|
|
1127
|
+
maxRelativeDeviation: z.ZodNullable<z.ZodNumber>;
|
|
1128
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1129
|
+
/** How many independent runs of the identical seeded request were compared (>= 2). */
|
|
1130
|
+
repeats: z.ZodNumber;
|
|
1131
|
+
/** True when every repeat produced the identical semantic body. */
|
|
1132
|
+
byteIdentical: z.ZodBoolean;
|
|
1133
|
+
/**
|
|
1134
|
+
* Worst relative deviation observed across repeats on the summary mean,
|
|
1135
|
+
* using the cross-shore definition |a-b| / max(|a|,|b|). Null when not
|
|
1136
|
+
* computable. Zero with byteIdentical=false means the bodies differed
|
|
1137
|
+
* somewhere other than the summary mean.
|
|
1138
|
+
*/
|
|
1139
|
+
maxRelativeDeviation: z.ZodNullable<z.ZodNumber>;
|
|
1140
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
989
1141
|
summary: z.ZodObject<{
|
|
990
1142
|
mean: z.ZodNumber;
|
|
991
1143
|
sd: z.ZodNumber;
|
|
@@ -1088,6 +1240,46 @@ export declare const stochasticResultBodySchema: z.ZodObject<{
|
|
|
1088
1240
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1089
1241
|
seed: z.ZodOptional<z.ZodNumber>;
|
|
1090
1242
|
nSims: z.ZodNumber;
|
|
1243
|
+
/** Which reproducibility promise this document carries; see the schema doc. */
|
|
1244
|
+
reproducibility: z.ZodOptional<z.ZodEnum<["seeded-reproducible", "witnessed"]>>;
|
|
1245
|
+
/** The engine's repeat-run self-check, when it performed one. */
|
|
1246
|
+
stability: z.ZodOptional<z.ZodObject<{
|
|
1247
|
+
/** How many independent runs of the identical seeded request were compared (>= 2). */
|
|
1248
|
+
repeats: z.ZodNumber;
|
|
1249
|
+
/** True when every repeat produced the identical semantic body. */
|
|
1250
|
+
byteIdentical: z.ZodBoolean;
|
|
1251
|
+
/**
|
|
1252
|
+
* Worst relative deviation observed across repeats on the summary mean,
|
|
1253
|
+
* using the cross-shore definition |a-b| / max(|a|,|b|). Null when not
|
|
1254
|
+
* computable. Zero with byteIdentical=false means the bodies differed
|
|
1255
|
+
* somewhere other than the summary mean.
|
|
1256
|
+
*/
|
|
1257
|
+
maxRelativeDeviation: z.ZodNullable<z.ZodNumber>;
|
|
1258
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1259
|
+
/** How many independent runs of the identical seeded request were compared (>= 2). */
|
|
1260
|
+
repeats: z.ZodNumber;
|
|
1261
|
+
/** True when every repeat produced the identical semantic body. */
|
|
1262
|
+
byteIdentical: z.ZodBoolean;
|
|
1263
|
+
/**
|
|
1264
|
+
* Worst relative deviation observed across repeats on the summary mean,
|
|
1265
|
+
* using the cross-shore definition |a-b| / max(|a|,|b|). Null when not
|
|
1266
|
+
* computable. Zero with byteIdentical=false means the bodies differed
|
|
1267
|
+
* somewhere other than the summary mean.
|
|
1268
|
+
*/
|
|
1269
|
+
maxRelativeDeviation: z.ZodNullable<z.ZodNumber>;
|
|
1270
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1271
|
+
/** How many independent runs of the identical seeded request were compared (>= 2). */
|
|
1272
|
+
repeats: z.ZodNumber;
|
|
1273
|
+
/** True when every repeat produced the identical semantic body. */
|
|
1274
|
+
byteIdentical: z.ZodBoolean;
|
|
1275
|
+
/**
|
|
1276
|
+
* Worst relative deviation observed across repeats on the summary mean,
|
|
1277
|
+
* using the cross-shore definition |a-b| / max(|a|,|b|). Null when not
|
|
1278
|
+
* computable. Zero with byteIdentical=false means the bodies differed
|
|
1279
|
+
* somewhere other than the summary mean.
|
|
1280
|
+
*/
|
|
1281
|
+
maxRelativeDeviation: z.ZodNullable<z.ZodNumber>;
|
|
1282
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
1091
1283
|
summary: z.ZodObject<{
|
|
1092
1284
|
mean: z.ZodNumber;
|
|
1093
1285
|
sd: z.ZodNumber;
|
|
@@ -1193,6 +1385,46 @@ export declare const stochasticResultDocSchema: z.ZodObject<{
|
|
|
1193
1385
|
result: z.ZodObject<{
|
|
1194
1386
|
seed: z.ZodOptional<z.ZodNumber>;
|
|
1195
1387
|
nSims: z.ZodNumber;
|
|
1388
|
+
/** Which reproducibility promise this document carries; see the schema doc. */
|
|
1389
|
+
reproducibility: z.ZodOptional<z.ZodEnum<["seeded-reproducible", "witnessed"]>>;
|
|
1390
|
+
/** The engine's repeat-run self-check, when it performed one. */
|
|
1391
|
+
stability: z.ZodOptional<z.ZodObject<{
|
|
1392
|
+
/** How many independent runs of the identical seeded request were compared (>= 2). */
|
|
1393
|
+
repeats: z.ZodNumber;
|
|
1394
|
+
/** True when every repeat produced the identical semantic body. */
|
|
1395
|
+
byteIdentical: z.ZodBoolean;
|
|
1396
|
+
/**
|
|
1397
|
+
* Worst relative deviation observed across repeats on the summary mean,
|
|
1398
|
+
* using the cross-shore definition |a-b| / max(|a|,|b|). Null when not
|
|
1399
|
+
* computable. Zero with byteIdentical=false means the bodies differed
|
|
1400
|
+
* somewhere other than the summary mean.
|
|
1401
|
+
*/
|
|
1402
|
+
maxRelativeDeviation: z.ZodNullable<z.ZodNumber>;
|
|
1403
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1404
|
+
/** How many independent runs of the identical seeded request were compared (>= 2). */
|
|
1405
|
+
repeats: z.ZodNumber;
|
|
1406
|
+
/** True when every repeat produced the identical semantic body. */
|
|
1407
|
+
byteIdentical: z.ZodBoolean;
|
|
1408
|
+
/**
|
|
1409
|
+
* Worst relative deviation observed across repeats on the summary mean,
|
|
1410
|
+
* using the cross-shore definition |a-b| / max(|a|,|b|). Null when not
|
|
1411
|
+
* computable. Zero with byteIdentical=false means the bodies differed
|
|
1412
|
+
* somewhere other than the summary mean.
|
|
1413
|
+
*/
|
|
1414
|
+
maxRelativeDeviation: z.ZodNullable<z.ZodNumber>;
|
|
1415
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1416
|
+
/** How many independent runs of the identical seeded request were compared (>= 2). */
|
|
1417
|
+
repeats: z.ZodNumber;
|
|
1418
|
+
/** True when every repeat produced the identical semantic body. */
|
|
1419
|
+
byteIdentical: z.ZodBoolean;
|
|
1420
|
+
/**
|
|
1421
|
+
* Worst relative deviation observed across repeats on the summary mean,
|
|
1422
|
+
* using the cross-shore definition |a-b| / max(|a|,|b|). Null when not
|
|
1423
|
+
* computable. Zero with byteIdentical=false means the bodies differed
|
|
1424
|
+
* somewhere other than the summary mean.
|
|
1425
|
+
*/
|
|
1426
|
+
maxRelativeDeviation: z.ZodNullable<z.ZodNumber>;
|
|
1427
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
1196
1428
|
summary: z.ZodObject<{
|
|
1197
1429
|
mean: z.ZodNumber;
|
|
1198
1430
|
sd: z.ZodNumber;
|
|
@@ -1295,6 +1527,46 @@ export declare const stochasticResultDocSchema: z.ZodObject<{
|
|
|
1295
1527
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1296
1528
|
seed: z.ZodOptional<z.ZodNumber>;
|
|
1297
1529
|
nSims: z.ZodNumber;
|
|
1530
|
+
/** Which reproducibility promise this document carries; see the schema doc. */
|
|
1531
|
+
reproducibility: z.ZodOptional<z.ZodEnum<["seeded-reproducible", "witnessed"]>>;
|
|
1532
|
+
/** The engine's repeat-run self-check, when it performed one. */
|
|
1533
|
+
stability: z.ZodOptional<z.ZodObject<{
|
|
1534
|
+
/** How many independent runs of the identical seeded request were compared (>= 2). */
|
|
1535
|
+
repeats: z.ZodNumber;
|
|
1536
|
+
/** True when every repeat produced the identical semantic body. */
|
|
1537
|
+
byteIdentical: z.ZodBoolean;
|
|
1538
|
+
/**
|
|
1539
|
+
* Worst relative deviation observed across repeats on the summary mean,
|
|
1540
|
+
* using the cross-shore definition |a-b| / max(|a|,|b|). Null when not
|
|
1541
|
+
* computable. Zero with byteIdentical=false means the bodies differed
|
|
1542
|
+
* somewhere other than the summary mean.
|
|
1543
|
+
*/
|
|
1544
|
+
maxRelativeDeviation: z.ZodNullable<z.ZodNumber>;
|
|
1545
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1546
|
+
/** How many independent runs of the identical seeded request were compared (>= 2). */
|
|
1547
|
+
repeats: z.ZodNumber;
|
|
1548
|
+
/** True when every repeat produced the identical semantic body. */
|
|
1549
|
+
byteIdentical: z.ZodBoolean;
|
|
1550
|
+
/**
|
|
1551
|
+
* Worst relative deviation observed across repeats on the summary mean,
|
|
1552
|
+
* using the cross-shore definition |a-b| / max(|a|,|b|). Null when not
|
|
1553
|
+
* computable. Zero with byteIdentical=false means the bodies differed
|
|
1554
|
+
* somewhere other than the summary mean.
|
|
1555
|
+
*/
|
|
1556
|
+
maxRelativeDeviation: z.ZodNullable<z.ZodNumber>;
|
|
1557
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1558
|
+
/** How many independent runs of the identical seeded request were compared (>= 2). */
|
|
1559
|
+
repeats: z.ZodNumber;
|
|
1560
|
+
/** True when every repeat produced the identical semantic body. */
|
|
1561
|
+
byteIdentical: z.ZodBoolean;
|
|
1562
|
+
/**
|
|
1563
|
+
* Worst relative deviation observed across repeats on the summary mean,
|
|
1564
|
+
* using the cross-shore definition |a-b| / max(|a|,|b|). Null when not
|
|
1565
|
+
* computable. Zero with byteIdentical=false means the bodies differed
|
|
1566
|
+
* somewhere other than the summary mean.
|
|
1567
|
+
*/
|
|
1568
|
+
maxRelativeDeviation: z.ZodNullable<z.ZodNumber>;
|
|
1569
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
1298
1570
|
summary: z.ZodObject<{
|
|
1299
1571
|
mean: z.ZodNumber;
|
|
1300
1572
|
sd: z.ZodNumber;
|
|
@@ -1397,6 +1669,46 @@ export declare const stochasticResultDocSchema: z.ZodObject<{
|
|
|
1397
1669
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1398
1670
|
seed: z.ZodOptional<z.ZodNumber>;
|
|
1399
1671
|
nSims: z.ZodNumber;
|
|
1672
|
+
/** Which reproducibility promise this document carries; see the schema doc. */
|
|
1673
|
+
reproducibility: z.ZodOptional<z.ZodEnum<["seeded-reproducible", "witnessed"]>>;
|
|
1674
|
+
/** The engine's repeat-run self-check, when it performed one. */
|
|
1675
|
+
stability: z.ZodOptional<z.ZodObject<{
|
|
1676
|
+
/** How many independent runs of the identical seeded request were compared (>= 2). */
|
|
1677
|
+
repeats: z.ZodNumber;
|
|
1678
|
+
/** True when every repeat produced the identical semantic body. */
|
|
1679
|
+
byteIdentical: z.ZodBoolean;
|
|
1680
|
+
/**
|
|
1681
|
+
* Worst relative deviation observed across repeats on the summary mean,
|
|
1682
|
+
* using the cross-shore definition |a-b| / max(|a|,|b|). Null when not
|
|
1683
|
+
* computable. Zero with byteIdentical=false means the bodies differed
|
|
1684
|
+
* somewhere other than the summary mean.
|
|
1685
|
+
*/
|
|
1686
|
+
maxRelativeDeviation: z.ZodNullable<z.ZodNumber>;
|
|
1687
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1688
|
+
/** How many independent runs of the identical seeded request were compared (>= 2). */
|
|
1689
|
+
repeats: z.ZodNumber;
|
|
1690
|
+
/** True when every repeat produced the identical semantic body. */
|
|
1691
|
+
byteIdentical: z.ZodBoolean;
|
|
1692
|
+
/**
|
|
1693
|
+
* Worst relative deviation observed across repeats on the summary mean,
|
|
1694
|
+
* using the cross-shore definition |a-b| / max(|a|,|b|). Null when not
|
|
1695
|
+
* computable. Zero with byteIdentical=false means the bodies differed
|
|
1696
|
+
* somewhere other than the summary mean.
|
|
1697
|
+
*/
|
|
1698
|
+
maxRelativeDeviation: z.ZodNullable<z.ZodNumber>;
|
|
1699
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1700
|
+
/** How many independent runs of the identical seeded request were compared (>= 2). */
|
|
1701
|
+
repeats: z.ZodNumber;
|
|
1702
|
+
/** True when every repeat produced the identical semantic body. */
|
|
1703
|
+
byteIdentical: z.ZodBoolean;
|
|
1704
|
+
/**
|
|
1705
|
+
* Worst relative deviation observed across repeats on the summary mean,
|
|
1706
|
+
* using the cross-shore definition |a-b| / max(|a|,|b|). Null when not
|
|
1707
|
+
* computable. Zero with byteIdentical=false means the bodies differed
|
|
1708
|
+
* somewhere other than the summary mean.
|
|
1709
|
+
*/
|
|
1710
|
+
maxRelativeDeviation: z.ZodNullable<z.ZodNumber>;
|
|
1711
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
1400
1712
|
summary: z.ZodObject<{
|
|
1401
1713
|
mean: z.ZodNumber;
|
|
1402
1714
|
sd: z.ZodNumber;
|
|
@@ -1516,6 +1828,46 @@ export declare const stochasticResultDocSchema: z.ZodObject<{
|
|
|
1516
1828
|
result: z.ZodObject<{
|
|
1517
1829
|
seed: z.ZodOptional<z.ZodNumber>;
|
|
1518
1830
|
nSims: z.ZodNumber;
|
|
1831
|
+
/** Which reproducibility promise this document carries; see the schema doc. */
|
|
1832
|
+
reproducibility: z.ZodOptional<z.ZodEnum<["seeded-reproducible", "witnessed"]>>;
|
|
1833
|
+
/** The engine's repeat-run self-check, when it performed one. */
|
|
1834
|
+
stability: z.ZodOptional<z.ZodObject<{
|
|
1835
|
+
/** How many independent runs of the identical seeded request were compared (>= 2). */
|
|
1836
|
+
repeats: z.ZodNumber;
|
|
1837
|
+
/** True when every repeat produced the identical semantic body. */
|
|
1838
|
+
byteIdentical: z.ZodBoolean;
|
|
1839
|
+
/**
|
|
1840
|
+
* Worst relative deviation observed across repeats on the summary mean,
|
|
1841
|
+
* using the cross-shore definition |a-b| / max(|a|,|b|). Null when not
|
|
1842
|
+
* computable. Zero with byteIdentical=false means the bodies differed
|
|
1843
|
+
* somewhere other than the summary mean.
|
|
1844
|
+
*/
|
|
1845
|
+
maxRelativeDeviation: z.ZodNullable<z.ZodNumber>;
|
|
1846
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1847
|
+
/** How many independent runs of the identical seeded request were compared (>= 2). */
|
|
1848
|
+
repeats: z.ZodNumber;
|
|
1849
|
+
/** True when every repeat produced the identical semantic body. */
|
|
1850
|
+
byteIdentical: z.ZodBoolean;
|
|
1851
|
+
/**
|
|
1852
|
+
* Worst relative deviation observed across repeats on the summary mean,
|
|
1853
|
+
* using the cross-shore definition |a-b| / max(|a|,|b|). Null when not
|
|
1854
|
+
* computable. Zero with byteIdentical=false means the bodies differed
|
|
1855
|
+
* somewhere other than the summary mean.
|
|
1856
|
+
*/
|
|
1857
|
+
maxRelativeDeviation: z.ZodNullable<z.ZodNumber>;
|
|
1858
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1859
|
+
/** How many independent runs of the identical seeded request were compared (>= 2). */
|
|
1860
|
+
repeats: z.ZodNumber;
|
|
1861
|
+
/** True when every repeat produced the identical semantic body. */
|
|
1862
|
+
byteIdentical: z.ZodBoolean;
|
|
1863
|
+
/**
|
|
1864
|
+
* Worst relative deviation observed across repeats on the summary mean,
|
|
1865
|
+
* using the cross-shore definition |a-b| / max(|a|,|b|). Null when not
|
|
1866
|
+
* computable. Zero with byteIdentical=false means the bodies differed
|
|
1867
|
+
* somewhere other than the summary mean.
|
|
1868
|
+
*/
|
|
1869
|
+
maxRelativeDeviation: z.ZodNullable<z.ZodNumber>;
|
|
1870
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
1519
1871
|
summary: z.ZodObject<{
|
|
1520
1872
|
mean: z.ZodNumber;
|
|
1521
1873
|
sd: z.ZodNumber;
|
|
@@ -1618,6 +1970,46 @@ export declare const stochasticResultDocSchema: z.ZodObject<{
|
|
|
1618
1970
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1619
1971
|
seed: z.ZodOptional<z.ZodNumber>;
|
|
1620
1972
|
nSims: z.ZodNumber;
|
|
1973
|
+
/** Which reproducibility promise this document carries; see the schema doc. */
|
|
1974
|
+
reproducibility: z.ZodOptional<z.ZodEnum<["seeded-reproducible", "witnessed"]>>;
|
|
1975
|
+
/** The engine's repeat-run self-check, when it performed one. */
|
|
1976
|
+
stability: z.ZodOptional<z.ZodObject<{
|
|
1977
|
+
/** How many independent runs of the identical seeded request were compared (>= 2). */
|
|
1978
|
+
repeats: z.ZodNumber;
|
|
1979
|
+
/** True when every repeat produced the identical semantic body. */
|
|
1980
|
+
byteIdentical: z.ZodBoolean;
|
|
1981
|
+
/**
|
|
1982
|
+
* Worst relative deviation observed across repeats on the summary mean,
|
|
1983
|
+
* using the cross-shore definition |a-b| / max(|a|,|b|). Null when not
|
|
1984
|
+
* computable. Zero with byteIdentical=false means the bodies differed
|
|
1985
|
+
* somewhere other than the summary mean.
|
|
1986
|
+
*/
|
|
1987
|
+
maxRelativeDeviation: z.ZodNullable<z.ZodNumber>;
|
|
1988
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1989
|
+
/** How many independent runs of the identical seeded request were compared (>= 2). */
|
|
1990
|
+
repeats: z.ZodNumber;
|
|
1991
|
+
/** True when every repeat produced the identical semantic body. */
|
|
1992
|
+
byteIdentical: z.ZodBoolean;
|
|
1993
|
+
/**
|
|
1994
|
+
* Worst relative deviation observed across repeats on the summary mean,
|
|
1995
|
+
* using the cross-shore definition |a-b| / max(|a|,|b|). Null when not
|
|
1996
|
+
* computable. Zero with byteIdentical=false means the bodies differed
|
|
1997
|
+
* somewhere other than the summary mean.
|
|
1998
|
+
*/
|
|
1999
|
+
maxRelativeDeviation: z.ZodNullable<z.ZodNumber>;
|
|
2000
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2001
|
+
/** How many independent runs of the identical seeded request were compared (>= 2). */
|
|
2002
|
+
repeats: z.ZodNumber;
|
|
2003
|
+
/** True when every repeat produced the identical semantic body. */
|
|
2004
|
+
byteIdentical: z.ZodBoolean;
|
|
2005
|
+
/**
|
|
2006
|
+
* Worst relative deviation observed across repeats on the summary mean,
|
|
2007
|
+
* using the cross-shore definition |a-b| / max(|a|,|b|). Null when not
|
|
2008
|
+
* computable. Zero with byteIdentical=false means the bodies differed
|
|
2009
|
+
* somewhere other than the summary mean.
|
|
2010
|
+
*/
|
|
2011
|
+
maxRelativeDeviation: z.ZodNullable<z.ZodNumber>;
|
|
2012
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
1621
2013
|
summary: z.ZodObject<{
|
|
1622
2014
|
mean: z.ZodNumber;
|
|
1623
2015
|
sd: z.ZodNumber;
|
|
@@ -1720,6 +2112,46 @@ export declare const stochasticResultDocSchema: z.ZodObject<{
|
|
|
1720
2112
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
1721
2113
|
seed: z.ZodOptional<z.ZodNumber>;
|
|
1722
2114
|
nSims: z.ZodNumber;
|
|
2115
|
+
/** Which reproducibility promise this document carries; see the schema doc. */
|
|
2116
|
+
reproducibility: z.ZodOptional<z.ZodEnum<["seeded-reproducible", "witnessed"]>>;
|
|
2117
|
+
/** The engine's repeat-run self-check, when it performed one. */
|
|
2118
|
+
stability: z.ZodOptional<z.ZodObject<{
|
|
2119
|
+
/** How many independent runs of the identical seeded request were compared (>= 2). */
|
|
2120
|
+
repeats: z.ZodNumber;
|
|
2121
|
+
/** True when every repeat produced the identical semantic body. */
|
|
2122
|
+
byteIdentical: z.ZodBoolean;
|
|
2123
|
+
/**
|
|
2124
|
+
* Worst relative deviation observed across repeats on the summary mean,
|
|
2125
|
+
* using the cross-shore definition |a-b| / max(|a|,|b|). Null when not
|
|
2126
|
+
* computable. Zero with byteIdentical=false means the bodies differed
|
|
2127
|
+
* somewhere other than the summary mean.
|
|
2128
|
+
*/
|
|
2129
|
+
maxRelativeDeviation: z.ZodNullable<z.ZodNumber>;
|
|
2130
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2131
|
+
/** How many independent runs of the identical seeded request were compared (>= 2). */
|
|
2132
|
+
repeats: z.ZodNumber;
|
|
2133
|
+
/** True when every repeat produced the identical semantic body. */
|
|
2134
|
+
byteIdentical: z.ZodBoolean;
|
|
2135
|
+
/**
|
|
2136
|
+
* Worst relative deviation observed across repeats on the summary mean,
|
|
2137
|
+
* using the cross-shore definition |a-b| / max(|a|,|b|). Null when not
|
|
2138
|
+
* computable. Zero with byteIdentical=false means the bodies differed
|
|
2139
|
+
* somewhere other than the summary mean.
|
|
2140
|
+
*/
|
|
2141
|
+
maxRelativeDeviation: z.ZodNullable<z.ZodNumber>;
|
|
2142
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2143
|
+
/** How many independent runs of the identical seeded request were compared (>= 2). */
|
|
2144
|
+
repeats: z.ZodNumber;
|
|
2145
|
+
/** True when every repeat produced the identical semantic body. */
|
|
2146
|
+
byteIdentical: z.ZodBoolean;
|
|
2147
|
+
/**
|
|
2148
|
+
* Worst relative deviation observed across repeats on the summary mean,
|
|
2149
|
+
* using the cross-shore definition |a-b| / max(|a|,|b|). Null when not
|
|
2150
|
+
* computable. Zero with byteIdentical=false means the bodies differed
|
|
2151
|
+
* somewhere other than the summary mean.
|
|
2152
|
+
*/
|
|
2153
|
+
maxRelativeDeviation: z.ZodNullable<z.ZodNumber>;
|
|
2154
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
1723
2155
|
summary: z.ZodObject<{
|
|
1724
2156
|
mean: z.ZodNumber;
|
|
1725
2157
|
sd: z.ZodNumber;
|
|
@@ -1839,6 +2271,46 @@ export declare const stochasticResultDocSchema: z.ZodObject<{
|
|
|
1839
2271
|
result: z.ZodObject<{
|
|
1840
2272
|
seed: z.ZodOptional<z.ZodNumber>;
|
|
1841
2273
|
nSims: z.ZodNumber;
|
|
2274
|
+
/** Which reproducibility promise this document carries; see the schema doc. */
|
|
2275
|
+
reproducibility: z.ZodOptional<z.ZodEnum<["seeded-reproducible", "witnessed"]>>;
|
|
2276
|
+
/** The engine's repeat-run self-check, when it performed one. */
|
|
2277
|
+
stability: z.ZodOptional<z.ZodObject<{
|
|
2278
|
+
/** How many independent runs of the identical seeded request were compared (>= 2). */
|
|
2279
|
+
repeats: z.ZodNumber;
|
|
2280
|
+
/** True when every repeat produced the identical semantic body. */
|
|
2281
|
+
byteIdentical: z.ZodBoolean;
|
|
2282
|
+
/**
|
|
2283
|
+
* Worst relative deviation observed across repeats on the summary mean,
|
|
2284
|
+
* using the cross-shore definition |a-b| / max(|a|,|b|). Null when not
|
|
2285
|
+
* computable. Zero with byteIdentical=false means the bodies differed
|
|
2286
|
+
* somewhere other than the summary mean.
|
|
2287
|
+
*/
|
|
2288
|
+
maxRelativeDeviation: z.ZodNullable<z.ZodNumber>;
|
|
2289
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2290
|
+
/** How many independent runs of the identical seeded request were compared (>= 2). */
|
|
2291
|
+
repeats: z.ZodNumber;
|
|
2292
|
+
/** True when every repeat produced the identical semantic body. */
|
|
2293
|
+
byteIdentical: z.ZodBoolean;
|
|
2294
|
+
/**
|
|
2295
|
+
* Worst relative deviation observed across repeats on the summary mean,
|
|
2296
|
+
* using the cross-shore definition |a-b| / max(|a|,|b|). Null when not
|
|
2297
|
+
* computable. Zero with byteIdentical=false means the bodies differed
|
|
2298
|
+
* somewhere other than the summary mean.
|
|
2299
|
+
*/
|
|
2300
|
+
maxRelativeDeviation: z.ZodNullable<z.ZodNumber>;
|
|
2301
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2302
|
+
/** How many independent runs of the identical seeded request were compared (>= 2). */
|
|
2303
|
+
repeats: z.ZodNumber;
|
|
2304
|
+
/** True when every repeat produced the identical semantic body. */
|
|
2305
|
+
byteIdentical: z.ZodBoolean;
|
|
2306
|
+
/**
|
|
2307
|
+
* Worst relative deviation observed across repeats on the summary mean,
|
|
2308
|
+
* using the cross-shore definition |a-b| / max(|a|,|b|). Null when not
|
|
2309
|
+
* computable. Zero with byteIdentical=false means the bodies differed
|
|
2310
|
+
* somewhere other than the summary mean.
|
|
2311
|
+
*/
|
|
2312
|
+
maxRelativeDeviation: z.ZodNullable<z.ZodNumber>;
|
|
2313
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
1842
2314
|
summary: z.ZodObject<{
|
|
1843
2315
|
mean: z.ZodNumber;
|
|
1844
2316
|
sd: z.ZodNumber;
|
|
@@ -1941,6 +2413,46 @@ export declare const stochasticResultDocSchema: z.ZodObject<{
|
|
|
1941
2413
|
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
1942
2414
|
seed: z.ZodOptional<z.ZodNumber>;
|
|
1943
2415
|
nSims: z.ZodNumber;
|
|
2416
|
+
/** Which reproducibility promise this document carries; see the schema doc. */
|
|
2417
|
+
reproducibility: z.ZodOptional<z.ZodEnum<["seeded-reproducible", "witnessed"]>>;
|
|
2418
|
+
/** The engine's repeat-run self-check, when it performed one. */
|
|
2419
|
+
stability: z.ZodOptional<z.ZodObject<{
|
|
2420
|
+
/** How many independent runs of the identical seeded request were compared (>= 2). */
|
|
2421
|
+
repeats: z.ZodNumber;
|
|
2422
|
+
/** True when every repeat produced the identical semantic body. */
|
|
2423
|
+
byteIdentical: z.ZodBoolean;
|
|
2424
|
+
/**
|
|
2425
|
+
* Worst relative deviation observed across repeats on the summary mean,
|
|
2426
|
+
* using the cross-shore definition |a-b| / max(|a|,|b|). Null when not
|
|
2427
|
+
* computable. Zero with byteIdentical=false means the bodies differed
|
|
2428
|
+
* somewhere other than the summary mean.
|
|
2429
|
+
*/
|
|
2430
|
+
maxRelativeDeviation: z.ZodNullable<z.ZodNumber>;
|
|
2431
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2432
|
+
/** How many independent runs of the identical seeded request were compared (>= 2). */
|
|
2433
|
+
repeats: z.ZodNumber;
|
|
2434
|
+
/** True when every repeat produced the identical semantic body. */
|
|
2435
|
+
byteIdentical: z.ZodBoolean;
|
|
2436
|
+
/**
|
|
2437
|
+
* Worst relative deviation observed across repeats on the summary mean,
|
|
2438
|
+
* using the cross-shore definition |a-b| / max(|a|,|b|). Null when not
|
|
2439
|
+
* computable. Zero with byteIdentical=false means the bodies differed
|
|
2440
|
+
* somewhere other than the summary mean.
|
|
2441
|
+
*/
|
|
2442
|
+
maxRelativeDeviation: z.ZodNullable<z.ZodNumber>;
|
|
2443
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2444
|
+
/** How many independent runs of the identical seeded request were compared (>= 2). */
|
|
2445
|
+
repeats: z.ZodNumber;
|
|
2446
|
+
/** True when every repeat produced the identical semantic body. */
|
|
2447
|
+
byteIdentical: z.ZodBoolean;
|
|
2448
|
+
/**
|
|
2449
|
+
* Worst relative deviation observed across repeats on the summary mean,
|
|
2450
|
+
* using the cross-shore definition |a-b| / max(|a|,|b|). Null when not
|
|
2451
|
+
* computable. Zero with byteIdentical=false means the bodies differed
|
|
2452
|
+
* somewhere other than the summary mean.
|
|
2453
|
+
*/
|
|
2454
|
+
maxRelativeDeviation: z.ZodNullable<z.ZodNumber>;
|
|
2455
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
1944
2456
|
summary: z.ZodObject<{
|
|
1945
2457
|
mean: z.ZodNumber;
|
|
1946
2458
|
sd: z.ZodNumber;
|
|
@@ -2043,6 +2555,46 @@ export declare const stochasticResultDocSchema: z.ZodObject<{
|
|
|
2043
2555
|
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2044
2556
|
seed: z.ZodOptional<z.ZodNumber>;
|
|
2045
2557
|
nSims: z.ZodNumber;
|
|
2558
|
+
/** Which reproducibility promise this document carries; see the schema doc. */
|
|
2559
|
+
reproducibility: z.ZodOptional<z.ZodEnum<["seeded-reproducible", "witnessed"]>>;
|
|
2560
|
+
/** The engine's repeat-run self-check, when it performed one. */
|
|
2561
|
+
stability: z.ZodOptional<z.ZodObject<{
|
|
2562
|
+
/** How many independent runs of the identical seeded request were compared (>= 2). */
|
|
2563
|
+
repeats: z.ZodNumber;
|
|
2564
|
+
/** True when every repeat produced the identical semantic body. */
|
|
2565
|
+
byteIdentical: z.ZodBoolean;
|
|
2566
|
+
/**
|
|
2567
|
+
* Worst relative deviation observed across repeats on the summary mean,
|
|
2568
|
+
* using the cross-shore definition |a-b| / max(|a|,|b|). Null when not
|
|
2569
|
+
* computable. Zero with byteIdentical=false means the bodies differed
|
|
2570
|
+
* somewhere other than the summary mean.
|
|
2571
|
+
*/
|
|
2572
|
+
maxRelativeDeviation: z.ZodNullable<z.ZodNumber>;
|
|
2573
|
+
}, "passthrough", z.ZodTypeAny, z.objectOutputType<{
|
|
2574
|
+
/** How many independent runs of the identical seeded request were compared (>= 2). */
|
|
2575
|
+
repeats: z.ZodNumber;
|
|
2576
|
+
/** True when every repeat produced the identical semantic body. */
|
|
2577
|
+
byteIdentical: z.ZodBoolean;
|
|
2578
|
+
/**
|
|
2579
|
+
* Worst relative deviation observed across repeats on the summary mean,
|
|
2580
|
+
* using the cross-shore definition |a-b| / max(|a|,|b|). Null when not
|
|
2581
|
+
* computable. Zero with byteIdentical=false means the bodies differed
|
|
2582
|
+
* somewhere other than the summary mean.
|
|
2583
|
+
*/
|
|
2584
|
+
maxRelativeDeviation: z.ZodNullable<z.ZodNumber>;
|
|
2585
|
+
}, z.ZodTypeAny, "passthrough">, z.objectInputType<{
|
|
2586
|
+
/** How many independent runs of the identical seeded request were compared (>= 2). */
|
|
2587
|
+
repeats: z.ZodNumber;
|
|
2588
|
+
/** True when every repeat produced the identical semantic body. */
|
|
2589
|
+
byteIdentical: z.ZodBoolean;
|
|
2590
|
+
/**
|
|
2591
|
+
* Worst relative deviation observed across repeats on the summary mean,
|
|
2592
|
+
* using the cross-shore definition |a-b| / max(|a|,|b|). Null when not
|
|
2593
|
+
* computable. Zero with byteIdentical=false means the bodies differed
|
|
2594
|
+
* somewhere other than the summary mean.
|
|
2595
|
+
*/
|
|
2596
|
+
maxRelativeDeviation: z.ZodNullable<z.ZodNumber>;
|
|
2597
|
+
}, z.ZodTypeAny, "passthrough">>>;
|
|
2046
2598
|
summary: z.ZodObject<{
|
|
2047
2599
|
mean: z.ZodNumber;
|
|
2048
2600
|
sd: z.ZodNumber;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"result.d.ts","sourceRoot":"","sources":["../../src/schemas/result.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAGxB;;;;;;;;;;;;;;GAcG;AAEH,eAAO,MAAM,qBAAqB;;;;;;;;;gCAKlB,CAAC;AAEjB,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAEpE,eAAO,MAAM,iBAAiB;;;;;;;;;;;;;;;gCAEd,CAAC;AAEjB,MAAM,MAAM,WAAW,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,iBAAiB,CAAC,CAAC;AAE5D,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;gCAOlB,CAAC;AAEjB,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAEpE,eAAO,MAAM,wBAAwB;;;;;;;;;;;;gCAMrB,CAAC;AAEjB,MAAM,MAAM,kBAAkB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,wBAAwB,CAAC,CAAC;AAW1E,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gCAMnB,CAAC;AAEjB,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAEtE,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;gCAKlB,CAAC;AAEjB,MAAM,MAAM,eAAe,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,qBAAqB,CAAC,CAAC;AAEpE,gEAAgE;AAChE,eAAO,MAAM,gBAAgB;;;;;;;;;;;;gCAEb,CAAC;AAEjB,eAAO,MAAM,uBAAuB;;;;IAKhC,gEAAgE;;;;;;IAAhE,gEAAgE;;;;;;IAAhE,gEAAgE;;gCAGpD,CAAC;AAEjB,eAAO,MAAM,0BAA0B;;;;;;;
|
|
1
|
+
{"version":3,"file":"result.d.ts","sourceRoot":"","sources":["../../src/schemas/result.ts"],"names":[],"mappings":"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"}
|