@miso.ai/server-wordpress 0.6.3-beta.19 → 0.6.3-beta.20

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/cli/download.js CHANGED
@@ -16,7 +16,8 @@ async function run({
16
16
  } = {}) {
17
17
  const client = new WordPressClient(options);
18
18
 
19
- const [firstPostYear, lastPostYear] = await client.posts.yearRange();
19
+ // TODO: respect --after and --before
20
+ const [firstPostYear, lastPostYear] = await client.posts.yearRange();
20
21
 
21
22
  // divide into batches
22
23
  const batches = [];
package/package.json CHANGED
@@ -17,9 +17,9 @@
17
17
  "simonpai <simon.pai@askmiso.com>"
18
18
  ],
19
19
  "dependencies": {
20
- "@miso.ai/server-commons": "0.6.3-beta.19",
20
+ "@miso.ai/server-commons": "0.6.3-beta.20",
21
21
  "axios": "^1.6.2",
22
22
  "axios-retry": "^3.3.1"
23
23
  },
24
- "version": "0.6.3-beta.19"
24
+ "version": "0.6.3-beta.20"
25
25
  }
package/src/version.js CHANGED
@@ -1 +1 @@
1
- export default '0.6.3-beta.19';
1
+ export default '0.6.3-beta.20';