@moxn/kb-migrate 0.4.30 → 0.4.31

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.
@@ -42,7 +42,7 @@ export class OneNoteApiClient {
42
42
  return this.paginate(`${this.baseUrl}/${this.userSlug}/onenote/sectionGroups/${encodeURIComponent(sectionGroupId)}/sections?$top=${DEFAULT_PAGE_SIZE}`);
43
43
  }
44
44
  async listPages(sectionId, options) {
45
- const select = '$select=id,title,createdDateTime,lastModifiedDateTime,links';
45
+ const select = '$select=id,title,lastModifiedDateTime,links';
46
46
  const filters = [];
47
47
  if (options?.modifiedAfter) {
48
48
  filters.push(`lastModifiedDateTime ge ${options.modifiedAfter.toISOString()}`);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@moxn/kb-migrate",
3
- "version": "0.4.30",
3
+ "version": "0.4.31",
4
4
  "description": "Migration tool for importing documents into Moxn Knowledge Base from local files, Notion, Google Docs, and more",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",