kintone-migrator 0.20.2 → 0.21.0
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/README.md +16 -16
- package/dist/index.mjs +135 -132
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -166,7 +166,7 @@ In multi-app mode, each command resolves its config file path using a convention
|
|
|
166
166
|
|
|
167
167
|
All file paths can be explicitly overridden per app in the project config. If not specified, the convention-based default path is used.
|
|
168
168
|
|
|
169
|
-
For details, see [Project Config Specification](./spec/projectConfig.md).
|
|
169
|
+
For details, see [Project Config Specification](./spec/fileFormats/projectConfig.md).
|
|
170
170
|
|
|
171
171
|
## Commands
|
|
172
172
|
|
|
@@ -637,8 +637,8 @@ Supported field types: `SINGLE_LINE_TEXT`, `MULTI_LINE_TEXT`, `RICH_TEXT`, `NUMB
|
|
|
637
637
|
|
|
638
638
|
Lookup fields and reference tables are also supported. For details, see:
|
|
639
639
|
|
|
640
|
-
- [Schema Specification](./spec/schema.md) -- format reference, all field types, and validation rules
|
|
641
|
-
- [Sample Schema (YAML)](./spec/sample_schema.yaml) / [JSON](./spec/sample_schema.json) -- comprehensive examples
|
|
640
|
+
- [Schema Specification](./spec/fileFormats/schema.md) -- format reference, all field types, and validation rules
|
|
641
|
+
- [Sample Schema (YAML)](./spec/fileFormats/sample_schema.yaml) / [JSON](./spec/fileFormats/sample_schema.json) -- comprehensive examples
|
|
642
642
|
|
|
643
643
|
### Seed Data File
|
|
644
644
|
|
|
@@ -655,7 +655,7 @@ records:
|
|
|
655
655
|
- "long-term"
|
|
656
656
|
```
|
|
657
657
|
|
|
658
|
-
For field type mappings and details, see [Seed Data Specification](./spec/seed.md).
|
|
658
|
+
For field type mappings and details, see [Seed Data Specification](./spec/fileFormats/seed.md).
|
|
659
659
|
|
|
660
660
|
### Customization Config File
|
|
661
661
|
|
|
@@ -678,7 +678,7 @@ mobile:
|
|
|
678
678
|
path: ./dist/mobile.js
|
|
679
679
|
```
|
|
680
680
|
|
|
681
|
-
For details, see [Customization Specification](./spec/
|
|
681
|
+
For details, see [Customization Specification](./spec/fileFormats/customization.md).
|
|
682
682
|
|
|
683
683
|
### Field ACL File
|
|
684
684
|
|
|
@@ -703,7 +703,7 @@ rights:
|
|
|
703
703
|
code: general_staff
|
|
704
704
|
```
|
|
705
705
|
|
|
706
|
-
For details, see [Field Permission Specification](./spec/
|
|
706
|
+
For details, see [Field Permission Specification](./spec/fileFormats/fieldPermission.md).
|
|
707
707
|
|
|
708
708
|
### View File
|
|
709
709
|
|
|
@@ -729,7 +729,7 @@ views:
|
|
|
729
729
|
title: customer_name
|
|
730
730
|
```
|
|
731
731
|
|
|
732
|
-
View types: `LIST`, `CALENDAR`, `CUSTOM`. For details, see [View Specification](./spec/
|
|
732
|
+
View types: `LIST`, `CALENDAR`, `CUSTOM`. For details, see [View Specification](./spec/fileFormats/view.md).
|
|
733
733
|
|
|
734
734
|
### App ACL File
|
|
735
735
|
|
|
@@ -761,7 +761,7 @@ rights:
|
|
|
761
761
|
recordExportable: false
|
|
762
762
|
```
|
|
763
763
|
|
|
764
|
-
For details, see [App Permission Specification](./spec/
|
|
764
|
+
For details, see [App Permission Specification](./spec/fileFormats/appPermission.md).
|
|
765
765
|
|
|
766
766
|
### Record ACL File
|
|
767
767
|
|
|
@@ -787,7 +787,7 @@ rights:
|
|
|
787
787
|
includeSubs: false
|
|
788
788
|
```
|
|
789
789
|
|
|
790
|
-
For details, see [Record Permission Specification](./spec/
|
|
790
|
+
For details, see [Record Permission Specification](./spec/fileFormats/recordPermission.md).
|
|
791
791
|
|
|
792
792
|
### Process Management File
|
|
793
793
|
|
|
@@ -827,7 +827,7 @@ actions:
|
|
|
827
827
|
type: PRIMARY
|
|
828
828
|
```
|
|
829
829
|
|
|
830
|
-
For details, see [Process Management Specification](./spec/
|
|
830
|
+
For details, see [Process Management Specification](./spec/fileFormats/processManagement.md).
|
|
831
831
|
|
|
832
832
|
### General Settings File
|
|
833
833
|
|
|
@@ -853,7 +853,7 @@ numberPrecision:
|
|
|
853
853
|
firstMonthOfFiscalYear: 4
|
|
854
854
|
```
|
|
855
855
|
|
|
856
|
-
For details, see [General Settings Specification](./spec/
|
|
856
|
+
For details, see [General Settings Specification](./spec/fileFormats/generalSettings.md).
|
|
857
857
|
|
|
858
858
|
### Notification File
|
|
859
859
|
|
|
@@ -892,7 +892,7 @@ reminder:
|
|
|
892
892
|
code: creator
|
|
893
893
|
```
|
|
894
894
|
|
|
895
|
-
For details, see [Notification Specification](./spec/
|
|
895
|
+
For details, see [Notification Specification](./spec/fileFormats/notification.md).
|
|
896
896
|
|
|
897
897
|
### Report File
|
|
898
898
|
|
|
@@ -927,7 +927,7 @@ reports:
|
|
|
927
927
|
order: DESC
|
|
928
928
|
```
|
|
929
929
|
|
|
930
|
-
Chart types: `BAR`, `COLUMN`, `PIE`, `LINE`, `PIVOT_TABLE`, `TABLE`, `AREA`, `SPLINE`, `SPLINE_AREA`. For details, see [Report Specification](./spec/
|
|
930
|
+
Chart types: `BAR`, `COLUMN`, `PIE`, `LINE`, `PIVOT_TABLE`, `TABLE`, `AREA`, `SPLINE`, `SPLINE_AREA`. For details, see [Report Specification](./spec/fileFormats/report.md).
|
|
931
931
|
|
|
932
932
|
### Action File
|
|
933
933
|
|
|
@@ -951,7 +951,7 @@ actions:
|
|
|
951
951
|
filterCond: status in ("approved")
|
|
952
952
|
```
|
|
953
953
|
|
|
954
|
-
For details, see [Action Specification](./spec/
|
|
954
|
+
For details, see [Action Specification](./spec/fileFormats/action.md).
|
|
955
955
|
|
|
956
956
|
### Admin Notes File
|
|
957
957
|
|
|
@@ -964,7 +964,7 @@ content: |
|
|
|
964
964
|
includeInTemplateAndDuplicates: true
|
|
965
965
|
```
|
|
966
966
|
|
|
967
|
-
For details, see [Admin Notes Specification](./spec/
|
|
967
|
+
For details, see [Admin Notes Specification](./spec/fileFormats/adminNotes.md).
|
|
968
968
|
|
|
969
969
|
### Plugin File
|
|
970
970
|
|
|
@@ -980,7 +980,7 @@ plugins:
|
|
|
980
980
|
enabled: false
|
|
981
981
|
```
|
|
982
982
|
|
|
983
|
-
For details, see [Plugin Specification](./spec/
|
|
983
|
+
For details, see [Plugin Specification](./spec/fileFormats/plugin.md).
|
|
984
984
|
|
|
985
985
|
## License
|
|
986
986
|
|