@metriport/shared 0.1.5 → 0.1.6-alpha.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.
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export {};
|
|
2
|
-
//# sourceMappingURL=env-setup.d.ts.map
|
|
2
|
+
//# sourceMappingURL=env-setup.d.ts.map
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export {};
|
|
2
|
-
//# sourceMappingURL=normalize-oid.test.d.ts.map
|
|
2
|
+
//# sourceMappingURL=normalize-oid.test.d.ts.map
|
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
export declare const ISO_DATE = "YYYY-MM-DD";
|
|
3
3
|
export declare function isValidISODate(date: string): boolean;
|
|
4
|
-
export declare const optionalDateSchema: z.ZodEffects<
|
|
5
|
-
|
|
4
|
+
export declare const optionalDateSchema: z.ZodEffects<
|
|
5
|
+
z.ZodOptional<z.ZodNullable<z.ZodString>>,
|
|
6
|
+
string | null | undefined,
|
|
7
|
+
string | null | undefined
|
|
8
|
+
>;
|
|
9
|
+
//# sourceMappingURL=date.d.ts.map
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
export declare function normalizeOid(oid: string): string;
|
|
2
|
-
//# sourceMappingURL=normalize-oid.d.ts.map
|
|
2
|
+
//# sourceMappingURL=normalize-oid.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metriport/shared",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.6-alpha.0",
|
|
4
4
|
"description": "Common code shared across packages - by Metriport Inc.",
|
|
5
5
|
"author": "Metriport Inc. <contact@metriport.com>",
|
|
6
6
|
"homepage": "https://metriport.com/",
|
|
@@ -51,5 +51,5 @@
|
|
|
51
51
|
"test": "jest --runInBand --detectOpenHandles --passWithNoTests",
|
|
52
52
|
"test:e2e": "E2E=true jest --runInBand --detectOpenHandles --passWithNoTests"
|
|
53
53
|
},
|
|
54
|
-
"gitHead": "
|
|
54
|
+
"gitHead": "92dfc05cda00ceef8d6e6327314cf0f79dffc307"
|
|
55
55
|
}
|