Skip to content

Commit

Permalink
test: update snapshot
Browse files Browse the repository at this point in the history
  • Loading branch information
velut committed Jun 19, 2024
1 parent ab16332 commit 0a6a917
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions test/packages/__snapshots__/query-registry.test.ts.snap
Original file line number Diff line number Diff line change
Expand Up @@ -4178,7 +4178,7 @@ The following time periods are supported by npm:
"file": "/zod-package-json/dist/index.d.ts",
"id": "+type.PackageJson",
"kind": "type",
"line": 575,
"line": 587,
"name": "PackageJson",
"signature": "type PackageJson = z.infer<typeof PackageJson>;",
},
Expand Down Expand Up @@ -6797,7 +6797,9 @@ for all packages in the registry in a given time period.
>
>;
packageManager: z.ZodOptional<z.ZodString>;
sideEffects: z.ZodOptional<z.ZodBoolean>;
sideEffects: z.ZodOptional<
z.ZodUnion<[z.ZodBoolean, z.ZodArray<z.ZodString, "many">]>
>;
imports: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
exports: z.ZodOptional<
z.ZodUnion<
Expand Down Expand Up @@ -7032,7 +7034,9 @@ for all packages in the registry in a given time period.
>
>;
packageManager: z.ZodOptional<z.ZodString>;
sideEffects: z.ZodOptional<z.ZodBoolean>;
sideEffects: z.ZodOptional<
z.ZodUnion<[z.ZodBoolean, z.ZodArray<z.ZodString, "many">]>
>;
imports: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
exports: z.ZodOptional<
z.ZodUnion<
Expand Down Expand Up @@ -7268,7 +7272,9 @@ for all packages in the registry in a given time period.
>
>;
packageManager: z.ZodOptional<z.ZodString>;
sideEffects: z.ZodOptional<z.ZodBoolean>;
sideEffects: z.ZodOptional<
z.ZodUnion<[z.ZodBoolean, z.ZodArray<z.ZodString, "many">]>
>;
imports: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
exports: z.ZodOptional<
z.ZodUnion<
Expand Down

0 comments on commit 0a6a917

Please sign in to comment.