kintone-migrator 0.18.0 → 0.18.1
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/index.mjs +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/dist/index.mjs
CHANGED
|
@@ -4886,7 +4886,7 @@ function fromKintoneReportConfig(raw) {
|
|
|
4886
4886
|
filterCond: raw.filterCond,
|
|
4887
4887
|
sorts: raw.sorts.map(fromKintoneSort)
|
|
4888
4888
|
};
|
|
4889
|
-
if (raw.periodicReport
|
|
4889
|
+
if (raw.periodicReport != null) return {
|
|
4890
4890
|
...result,
|
|
4891
4891
|
periodicReport: fromKintonePeriodicReport(raw.periodicReport)
|
|
4892
4892
|
};
|