gscdump 1.0.1 → 1.0.2

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/dates.mjs CHANGED
@@ -1,4 +1,5 @@
1
- import { format, subDays } from "date-fns";
1
+ import { format } from "date-fns/format";
2
+ import { subDays } from "date-fns/subDays";
2
3
  const MS_PER_DAY = 864e5;
3
4
  function toIsoDate(d) {
4
5
  return d.toISOString().slice(0, 10);
@@ -1,4 +1,5 @@
1
- import { format, subDays } from "date-fns";
1
+ import { format } from "date-fns/format";
2
+ import { subDays } from "date-fns/subDays";
2
3
  const PST_FORMATTER = new Intl.DateTimeFormat("en-CA", {
3
4
  timeZone: "America/Los_Angeles",
4
5
  year: "numeric",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "gscdump",
3
3
  "type": "module",
4
- "version": "1.0.1",
4
+ "version": "1.0.2",
5
5
  "description": "Direct Google Search Console client with typed queries, streaming pagination, URL inspection, and indexing helpers",
6
6
  "author": {
7
7
  "name": "Harlan Wilton",
@@ -84,7 +84,7 @@
84
84
  "dependencies": {
85
85
  "date-fns": "^4.4.0",
86
86
  "ofetch": "^1.5.1",
87
- "@gscdump/contracts": "^1.0.1"
87
+ "@gscdump/contracts": "^1.0.2"
88
88
  },
89
89
  "scripts": {
90
90
  "dev": "obuild --stub",