nuxt-google-sheets-import 0.1.13 → 0.1.15

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/module.mjs CHANGED
@@ -17,9 +17,9 @@ const module$1 = defineNuxtModule({
17
17
  onInstall() {
18
18
  const resolver = createResolver(import.meta.url);
19
19
  addTemplate({
20
- filename: "googleSheetsImportSchemas.ts",
20
+ filename: "app/utils/googleSheetsImportSchemas.ts",
21
21
  src: resolver.resolve("./runtime/app/examples/googleSheetsImportSchemas.js"),
22
- dst: "utils/.googleSheetsImportSchemas.ts",
22
+ // dst: 'utils/.googleSheetsImportSchemas.ts',
23
23
  write: true
24
24
  });
25
25
  },
@@ -8,7 +8,6 @@ const example = z.object({
8
8
  literalString: z.literal("foo"),
9
9
  unionString: z.union([z.literal("foo"), z.literal("bar")]),
10
10
  unionStringArray: z.union([z.literal("foo"), z.literal("bar")]).array(),
11
- // exclusiveUnionString: z.xor([z.literal('foo'), z.literal('bar')]), // requires zod v4
12
11
  stringArray: z.string().array(),
13
12
  numberArray: z.coerce.number().array(),
14
13
  boolean: z.coerce.boolean(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "nuxt-google-sheets-import",
3
- "version": "0.1.13",
3
+ "version": "0.1.15",
4
4
  "description": "Schema-driven Google Sheets import module for Nuxt Content",
5
5
  "repository": "tribeweb/nuxt-google-sheets-import",
6
6
  "license": "MIT",