@zentodo/cli 0.1.12 → 0.1.13

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.
@@ -547,10 +547,11 @@
547
547
  "name": "zentodo.task.add",
548
548
  "domain": "task",
549
549
  "action": "add",
550
- "description": "调用 /taskController/insertTask,使用 FormData 提交。",
550
+ "description": "调用 /taskController/insertTask,使用 JSON 请求体(后端 @RequestBody)。",
551
551
  "http": {
552
552
  "method": "POST",
553
- "path": "/taskController/insertTask"
553
+ "path": "/taskController/insertTask",
554
+ "bodyFormat": "json"
554
555
  },
555
556
  "scopes": [
556
557
  "write"
@@ -642,10 +643,11 @@
642
643
  "name": "zentodo.task.update",
643
644
  "domain": "task",
644
645
  "action": "update",
645
- "description": "调用 /taskController/updateTask。未传入的字段不会被写入 FormData,避免把现有列置空。",
646
+ "description": "调用 /taskController/updateTask(后端 @RequestBody)。未传入的字段不会被写入 JSON payload,避免把现有列置空。",
646
647
  "http": {
647
648
  "method": "POST",
648
- "path": "/taskController/updateTask"
649
+ "path": "/taskController/updateTask",
650
+ "bodyFormat": "json"
649
651
  },
650
652
  "scopes": [
651
653
  "write"
@@ -743,7 +745,8 @@
743
745
  "path": "/taskController/updateTask",
744
746
  "pragmas": [
745
747
  "softDelete"
746
- ]
748
+ ],
749
+ "bodyFormat": "json"
747
750
  },
748
751
  "scopes": [
749
752
  "destructive",
@@ -777,7 +780,8 @@
777
780
  "path": "/taskController/updateTask",
778
781
  "pragmas": [
779
782
  "completeTask"
780
- ]
783
+ ],
784
+ "bodyFormat": "json"
781
785
  },
782
786
  "scopes": [
783
787
  "write"
@@ -804,10 +808,11 @@
804
808
  "name": "zentodo.task.uncomplete",
805
809
  "domain": "task",
806
810
  "action": "uncomplete",
807
- "description": "调用 /taskController/updateTask,把 taskState 还原为 1 并清空完成时间。",
811
+ "description": "调用 /taskController/updateTask(@RequestBody),把 taskState 还原为 1 并清空完成时间。",
808
812
  "http": {
809
813
  "method": "POST",
810
- "path": "/taskController/updateTask"
814
+ "path": "/taskController/updateTask",
815
+ "bodyFormat": "json"
811
816
  },
812
817
  "scopes": [
813
818
  "write"
@@ -855,7 +860,8 @@
855
860
  "path": "/taskController/updateTask",
856
861
  "pragmas": [
857
862
  "setMit"
858
- ]
863
+ ],
864
+ "bodyFormat": "json"
859
865
  },
860
866
  "scopes": [
861
867
  "write"
@@ -894,7 +900,8 @@
894
900
  "path": "/taskController/updateTask",
895
901
  "pragmas": [
896
902
  "setQuadrant"
897
- ]
903
+ ],
904
+ "bodyFormat": "json"
898
905
  },
899
906
  "scopes": [
900
907
  "write"
@@ -1205,13 +1212,14 @@
1205
1212
  "name": "zentodo.task.sync-push",
1206
1213
  "domain": "task",
1207
1214
  "action": "sync-push",
1208
- "description": "调用 /taskController/putSyncTask。所有字段通过 FormData 提交,自动剥离 id / rowid。",
1215
+ "description": "调用 /taskController/putSyncTask(@RequestBody),完整字段提交,自动剥离 id / rowid。",
1209
1216
  "http": {
1210
1217
  "method": "POST",
1211
1218
  "path": "/taskController/putSyncTask",
1212
1219
  "pragmas": [
1213
1220
  "stripAutoKeys"
1214
- ]
1221
+ ],
1222
+ "bodyFormat": "json"
1215
1223
  },
1216
1224
  "scopes": [
1217
1225
  "sync",
@@ -1266,13 +1274,14 @@
1266
1274
  "name": "zentodo.subtask.sync-push",
1267
1275
  "domain": "subtask",
1268
1276
  "action": "sync-push",
1269
- "description": "调用 /subTaskController/putSyncSubTask。所有字段通过 FormData 提交,自动剥离 id/rowid。",
1277
+ "description": "调用 /subTaskController/putSyncSubTask(后端 @RequestBody SubTask)。JSON 体,自动剥离 id/rowid。",
1270
1278
  "http": {
1271
1279
  "method": "POST",
1272
1280
  "path": "/subTaskController/putSyncSubTask",
1273
1281
  "pragmas": [
1274
1282
  "stripAutoKeys"
1275
- ]
1283
+ ],
1284
+ "bodyFormat": "json"
1276
1285
  },
1277
1286
  "scopes": [
1278
1287
  "sync",
@@ -1378,13 +1387,14 @@
1378
1387
  "name": "zentodo.project.sync-push",
1379
1388
  "domain": "project",
1380
1389
  "action": "sync-push",
1381
- "description": "调用 /projectController/putSyncProject。所有字段通过 FormData 提交,自动剥离 id/rowid。",
1390
+ "description": "调用 /projectController/putSyncProject(后端 @RequestBody Project)。所有字段以 JSON 体提交,自动剥离 id/rowid。",
1382
1391
  "http": {
1383
1392
  "method": "POST",
1384
1393
  "path": "/projectController/putSyncProject",
1385
1394
  "pragmas": [
1386
1395
  "stripAutoKeys"
1387
- ]
1396
+ ],
1397
+ "bodyFormat": "json"
1388
1398
  },
1389
1399
  "scopes": [
1390
1400
  "sync",
@@ -1619,13 +1629,14 @@
1619
1629
  "name": "zentodo.subproject.sync-push",
1620
1630
  "domain": "subproject",
1621
1631
  "action": "sync-push",
1622
- "description": "调用 /subProjectController/putSyncSubProject。",
1632
+ "description": "调用 /subProjectController/putSyncSubProject(后端 @RequestBody SubProject)JSON 体。",
1623
1633
  "http": {
1624
1634
  "method": "POST",
1625
1635
  "path": "/subProjectController/putSyncSubProject",
1626
1636
  "pragmas": [
1627
1637
  "stripAutoKeys"
1628
- ]
1638
+ ],
1639
+ "bodyFormat": "json"
1629
1640
  },
1630
1641
  "scopes": [
1631
1642
  "sync",
@@ -1725,13 +1736,14 @@
1725
1736
  "name": "zentodo.scene.sync-push",
1726
1737
  "domain": "scene",
1727
1738
  "action": "sync-push",
1728
- "description": "调用 /sceneController/putSyncScene。",
1739
+ "description": "调用 /sceneController/putSyncScene(后端 @RequestBody Scene)JSON 体。",
1729
1740
  "http": {
1730
1741
  "method": "POST",
1731
1742
  "path": "/sceneController/putSyncScene",
1732
1743
  "pragmas": [
1733
1744
  "stripAutoKeys"
1734
- ]
1745
+ ],
1746
+ "bodyFormat": "json"
1735
1747
  },
1736
1748
  "scopes": [
1737
1749
  "sync",
@@ -1836,13 +1848,14 @@
1836
1848
  "name": "zentodo.target.sync-push",
1837
1849
  "domain": "target",
1838
1850
  "action": "sync-push",
1839
- "description": "调用 /targetController/putSyncTarget。",
1851
+ "description": "调用 /targetController/putSyncTarget(后端 @RequestBody Target)JSON 体。",
1840
1852
  "http": {
1841
1853
  "method": "POST",
1842
1854
  "path": "/targetController/putSyncTarget",
1843
1855
  "pragmas": [
1844
1856
  "stripAutoKeys"
1845
- ]
1857
+ ],
1858
+ "bodyFormat": "json"
1846
1859
  },
1847
1860
  "scopes": [
1848
1861
  "sync",
@@ -1948,13 +1961,14 @@
1948
1961
  "name": "zentodo.label.sync-push",
1949
1962
  "domain": "label",
1950
1963
  "action": "sync-push",
1951
- "description": "调用 /labelController/putSyncLabel。",
1964
+ "description": "调用 /labelController/putSyncLabel(后端 @RequestBody Label)JSON 体。",
1952
1965
  "http": {
1953
1966
  "method": "POST",
1954
1967
  "path": "/labelController/putSyncLabel",
1955
1968
  "pragmas": [
1956
1969
  "stripAutoKeys"
1957
- ]
1970
+ ],
1971
+ "bodyFormat": "json"
1958
1972
  },
1959
1973
  "scopes": [
1960
1974
  "sync",
@@ -2158,13 +2172,14 @@
2158
2172
  "name": "zentodo.quadrant.sync-push",
2159
2173
  "domain": "quadrant",
2160
2174
  "action": "sync-push",
2161
- "description": "调用 /quadrantController/putSyncQuadrant。",
2175
+ "description": "调用 /quadrantController/putSyncQuadrant(后端 @RequestBody Quadrant)JSON 体。",
2162
2176
  "http": {
2163
2177
  "method": "POST",
2164
2178
  "path": "/quadrantController/putSyncQuadrant",
2165
2179
  "pragmas": [
2166
2180
  "stripAutoKeys"
2167
- ]
2181
+ ],
2182
+ "bodyFormat": "json"
2168
2183
  },
2169
2184
  "scopes": [
2170
2185
  "sync",
@@ -2263,13 +2278,14 @@
2263
2278
  "name": "zentodo.timeline.sync-push",
2264
2279
  "domain": "timeline",
2265
2280
  "action": "sync-push",
2266
- "description": "调用 /timeLineController/putSyncTimeLine。",
2281
+ "description": "调用 /timeLineController/putSyncTimeLine(后端 @RequestBody TimeLine)JSON 体。",
2267
2282
  "http": {
2268
2283
  "method": "POST",
2269
2284
  "path": "/timeLineController/putSyncTimeLine",
2270
2285
  "pragmas": [
2271
2286
  "stripAutoKeys"
2272
- ]
2287
+ ],
2288
+ "bodyFormat": "json"
2273
2289
  },
2274
2290
  "scopes": [
2275
2291
  "sync",
@@ -2539,13 +2555,14 @@
2539
2555
  "name": "zentodo.attach.sync-push",
2540
2556
  "domain": "attach",
2541
2557
  "action": "sync-push",
2542
- "description": "调用 /attachmentController/putSyncAttchment。",
2558
+ "description": "调用 /attachmentController/putSyncAttchment(后端 @RequestBody Attachment)JSON 体,仅元数据,不包含文件二进制。",
2543
2559
  "http": {
2544
2560
  "method": "POST",
2545
2561
  "path": "/attachmentController/putSyncAttchment",
2546
2562
  "pragmas": [
2547
2563
  "stripAutoKeys"
2548
- ]
2564
+ ],
2565
+ "bodyFormat": "json"
2549
2566
  },
2550
2567
  "scopes": [
2551
2568
  "sync",
@@ -2750,13 +2767,14 @@
2750
2767
  "name": "zentodo.pomo.sync-push-worker",
2751
2768
  "domain": "pomo",
2752
2769
  "action": "sync-push-worker",
2753
- "description": "调用 /tomatoWorkerController/putSyncTomatoWorker。",
2770
+ "description": "调用 /tomatoWorkerController/putSyncTomatoWorker(后端 @RequestBody TomatoWorker)JSON 体。",
2754
2771
  "http": {
2755
2772
  "method": "POST",
2756
2773
  "path": "/tomatoWorkerController/putSyncTomatoWorker",
2757
2774
  "pragmas": [
2758
2775
  "stripAutoKeys"
2759
- ]
2776
+ ],
2777
+ "bodyFormat": "json"
2760
2778
  },
2761
2779
  "scopes": [
2762
2780
  "sync",
@@ -2818,13 +2836,14 @@
2818
2836
  "name": "zentodo.pomo.config-set",
2819
2837
  "domain": "pomo",
2820
2838
  "action": "config-set",
2821
- "description": "调用 /tomatoConfigController/putSyncTomatoConfig。",
2839
+ "description": "调用 /tomatoConfigController/putSyncTomatoConfig(后端 @RequestBody TomatoConfig)JSON 体。",
2822
2840
  "http": {
2823
2841
  "method": "POST",
2824
2842
  "path": "/tomatoConfigController/putSyncTomatoConfig",
2825
2843
  "pragmas": [
2826
2844
  "stripAutoKeys"
2827
- ]
2845
+ ],
2846
+ "bodyFormat": "json"
2828
2847
  },
2829
2848
  "scopes": [
2830
2849
  "sync",
@@ -3036,10 +3055,11 @@
3036
3055
  "name": "zentodo.workstate.update",
3037
3056
  "domain": "workstate",
3038
3057
  "action": "update",
3039
- "description": "调用 /workStateController/updateWorkState。",
3058
+ "description": "调用 /workStateController/updateWorkState(后端 @RequestBody WorkState)JSON 体。",
3040
3059
  "http": {
3041
3060
  "method": "POST",
3042
- "path": "/workStateController/updateWorkState"
3061
+ "path": "/workStateController/updateWorkState",
3062
+ "bodyFormat": "json"
3043
3063
  },
3044
3064
  "scopes": [
3045
3065
  "write"
@@ -3131,13 +3151,14 @@
3131
3151
  "name": "zentodo.workstate.sync-push",
3132
3152
  "domain": "workstate",
3133
3153
  "action": "sync-push",
3134
- "description": "调用 /workStateController/putSyncWorkState。",
3154
+ "description": "调用 /workStateController/putSyncWorkState(后端 @RequestBody WorkState)JSON 体。",
3135
3155
  "http": {
3136
3156
  "method": "POST",
3137
3157
  "path": "/workStateController/putSyncWorkState",
3138
3158
  "pragmas": [
3139
3159
  "stripAutoKeys"
3140
- ]
3160
+ ],
3161
+ "bodyFormat": "json"
3141
3162
  },
3142
3163
  "scopes": [
3143
3164
  "sync",
@@ -3382,13 +3403,14 @@
3382
3403
  "name": "zentodo.mindmap.sync-push",
3383
3404
  "domain": "mindmap",
3384
3405
  "action": "sync-push",
3385
- "description": "调用 /gdMetaController/putSyncGDMeta。",
3406
+ "description": "调用 /gdMetaController/putSyncGDMeta(后端 @RequestBody GDMeta)JSON 体。",
3386
3407
  "http": {
3387
3408
  "method": "POST",
3388
3409
  "path": "/gdMetaController/putSyncGDMeta",
3389
3410
  "pragmas": [
3390
3411
  "stripAutoKeys"
3391
- ]
3412
+ ],
3413
+ "bodyFormat": "json"
3392
3414
  },
3393
3415
  "scopes": [
3394
3416
  "sync",
@@ -3487,13 +3509,14 @@
3487
3509
  "name": "zentodo.reward.store-sync-push",
3488
3510
  "domain": "reward",
3489
3511
  "action": "store-sync-push",
3490
- "description": "调用 /rewardStoreController/putSyncRewardStore。",
3512
+ "description": "调用 /rewardStoreController/putSyncRewardStore(后端 @RequestBody RewardStore)JSON 体。",
3491
3513
  "http": {
3492
3514
  "method": "POST",
3493
3515
  "path": "/rewardStoreController/putSyncRewardStore",
3494
3516
  "pragmas": [
3495
3517
  "stripAutoKeys"
3496
- ]
3518
+ ],
3519
+ "bodyFormat": "json"
3497
3520
  },
3498
3521
  "scopes": [
3499
3522
  "sync",
@@ -3629,13 +3652,14 @@
3629
3652
  "name": "zentodo.reward.record-sync-push",
3630
3653
  "domain": "reward",
3631
3654
  "action": "record-sync-push",
3632
- "description": "调用 /rewardRecordController/putSyncRewardRecord。",
3655
+ "description": "调用 /rewardRecordController/putSyncRewardRecord(后端 @RequestBody RewardRecord)JSON 体。",
3633
3656
  "http": {
3634
3657
  "method": "POST",
3635
3658
  "path": "/rewardRecordController/putSyncRewardRecord",
3636
3659
  "pragmas": [
3637
3660
  "stripAutoKeys"
3638
- ]
3661
+ ],
3662
+ "bodyFormat": "json"
3639
3663
  },
3640
3664
  "scopes": [
3641
3665
  "sync",
@@ -3734,13 +3758,14 @@
3734
3758
  "name": "zentodo.fasttime.sync-push",
3735
3759
  "domain": "fasttime",
3736
3760
  "action": "sync-push",
3737
- "description": "调用 /fastTimeRecordController/putSyncFastTimeRecord。",
3761
+ "description": "调用 /fastTimeRecordController/putSyncFastTimeRecord(后端 @RequestBody FastTimeRecord)JSON 体。",
3738
3762
  "http": {
3739
3763
  "method": "POST",
3740
3764
  "path": "/fastTimeRecordController/putSyncFastTimeRecord",
3741
3765
  "pragmas": [
3742
3766
  "stripAutoKeys"
3743
- ]
3767
+ ],
3768
+ "bodyFormat": "json"
3744
3769
  },
3745
3770
  "scopes": [
3746
3771
  "sync",
@@ -209,7 +209,7 @@
209
209
 
210
210
  ## `zentodo.task.add`
211
211
 
212
- 调用 /taskController/insertTask,使用 FormData 提交。
212
+ 调用 /taskController/insertTask,使用 JSON 请求体(后端 @RequestBody)。
213
213
 
214
214
  - **后端端点**:`POST /taskController/insertTask`
215
215
  - **所需 scope**:`write`
@@ -231,7 +231,7 @@
231
231
 
232
232
  ## `zentodo.task.update`
233
233
 
234
- 调用 /taskController/updateTask。未传入的字段不会被写入 FormData,避免把现有列置空。
234
+ 调用 /taskController/updateTask(后端 @RequestBody)。未传入的字段不会被写入 JSON payload,避免把现有列置空。
235
235
 
236
236
  - **后端端点**:`POST /taskController/updateTask`
237
237
  - **所需 scope**:`write`
@@ -277,7 +277,7 @@
277
277
 
278
278
  ## `zentodo.task.uncomplete`
279
279
 
280
- 调用 /taskController/updateTask,把 taskState 还原为 1 并清空完成时间。
280
+ 调用 /taskController/updateTask(@RequestBody),把 taskState 还原为 1 并清空完成时间。
281
281
 
282
282
  - **后端端点**:`POST /taskController/updateTask`
283
283
  - **所需 scope**:`write`
@@ -417,7 +417,7 @@
417
417
 
418
418
  ## `zentodo.task.sync-push`
419
419
 
420
- 调用 /taskController/putSyncTask。所有字段通过 FormData 提交,自动剥离 id / rowid。
420
+ 调用 /taskController/putSyncTask(@RequestBody),完整字段提交,自动剥离 id / rowid。
421
421
 
422
422
  - **后端端点**:`POST /taskController/putSyncTask`
423
423
  - **所需 scope**:`sync, write`
@@ -438,7 +438,7 @@
438
438
 
439
439
  ## `zentodo.subtask.sync-push`
440
440
 
441
- 调用 /subTaskController/putSyncSubTask。所有字段通过 FormData 提交,自动剥离 id/rowid。
441
+ 调用 /subTaskController/putSyncSubTask(后端 @RequestBody SubTask)。JSON 体,自动剥离 id/rowid。
442
442
 
443
443
  - **后端端点**:`POST /subTaskController/putSyncSubTask`
444
444
  - **所需 scope**:`sync, write`
@@ -474,7 +474,7 @@
474
474
 
475
475
  ## `zentodo.project.sync-push`
476
476
 
477
- 调用 /projectController/putSyncProject。所有字段通过 FormData 提交,自动剥离 id/rowid。
477
+ 调用 /projectController/putSyncProject(后端 @RequestBody Project)。所有字段以 JSON 体提交,自动剥离 id/rowid。
478
478
 
479
479
  - **后端端点**:`POST /projectController/putSyncProject`
480
480
  - **所需 scope**:`sync, write`
@@ -554,7 +554,7 @@
554
554
 
555
555
  ## `zentodo.subproject.sync-push`
556
556
 
557
- 调用 /subProjectController/putSyncSubProject。
557
+ 调用 /subProjectController/putSyncSubProject(后端 @RequestBody SubProject)JSON 体。
558
558
 
559
559
  - **后端端点**:`POST /subProjectController/putSyncSubProject`
560
560
  - **所需 scope**:`sync, write`
@@ -589,7 +589,7 @@
589
589
 
590
590
  ## `zentodo.scene.sync-push`
591
591
 
592
- 调用 /sceneController/putSyncScene。
592
+ 调用 /sceneController/putSyncScene(后端 @RequestBody Scene)JSON 体。
593
593
 
594
594
  - **后端端点**:`POST /sceneController/putSyncScene`
595
595
  - **所需 scope**:`sync, write`
@@ -625,7 +625,7 @@
625
625
 
626
626
  ## `zentodo.target.sync-push`
627
627
 
628
- 调用 /targetController/putSyncTarget。
628
+ 调用 /targetController/putSyncTarget(后端 @RequestBody Target)JSON 体。
629
629
 
630
630
  - **后端端点**:`POST /targetController/putSyncTarget`
631
631
  - **所需 scope**:`sync, write`
@@ -661,7 +661,7 @@
661
661
 
662
662
  ## `zentodo.label.sync-push`
663
663
 
664
- 调用 /labelController/putSyncLabel。
664
+ 调用 /labelController/putSyncLabel(后端 @RequestBody Label)JSON 体。
665
665
 
666
666
  - **后端端点**:`POST /labelController/putSyncLabel`
667
667
  - **所需 scope**:`sync, write`
@@ -731,7 +731,7 @@
731
731
 
732
732
  ## `zentodo.quadrant.sync-push`
733
733
 
734
- 调用 /quadrantController/putSyncQuadrant。
734
+ 调用 /quadrantController/putSyncQuadrant(后端 @RequestBody Quadrant)JSON 体。
735
735
 
736
736
  - **后端端点**:`POST /quadrantController/putSyncQuadrant`
737
737
  - **所需 scope**:`sync, write`
@@ -766,7 +766,7 @@
766
766
 
767
767
  ## `zentodo.timeline.sync-push`
768
768
 
769
- 调用 /timeLineController/putSyncTimeLine。
769
+ 调用 /timeLineController/putSyncTimeLine(后端 @RequestBody TimeLine)JSON 体。
770
770
 
771
771
  - **后端端点**:`POST /timeLineController/putSyncTimeLine`
772
772
  - **所需 scope**:`sync, write`
@@ -861,7 +861,7 @@
861
861
 
862
862
  ## `zentodo.attach.sync-push`
863
863
 
864
- 调用 /attachmentController/putSyncAttchment。
864
+ 调用 /attachmentController/putSyncAttchment(后端 @RequestBody Attachment)JSON 体,仅元数据,不包含文件二进制。
865
865
 
866
866
  - **后端端点**:`POST /attachmentController/putSyncAttchment`
867
867
  - **所需 scope**:`sync, write`
@@ -934,7 +934,7 @@
934
934
 
935
935
  ## `zentodo.pomo.sync-push-worker`
936
936
 
937
- 调用 /tomatoWorkerController/putSyncTomatoWorker。
937
+ 调用 /tomatoWorkerController/putSyncTomatoWorker(后端 @RequestBody TomatoWorker)JSON 体。
938
938
 
939
939
  - **后端端点**:`POST /tomatoWorkerController/putSyncTomatoWorker`
940
940
  - **所需 scope**:`sync, write`
@@ -956,7 +956,7 @@
956
956
 
957
957
  ## `zentodo.pomo.config-set`
958
958
 
959
- 调用 /tomatoConfigController/putSyncTomatoConfig。
959
+ 调用 /tomatoConfigController/putSyncTomatoConfig(后端 @RequestBody TomatoConfig)JSON 体。
960
960
 
961
961
  - **后端端点**:`POST /tomatoConfigController/putSyncTomatoConfig`
962
962
  - **所需 scope**:`sync, write`
@@ -1031,7 +1031,7 @@
1031
1031
 
1032
1032
  ## `zentodo.workstate.update`
1033
1033
 
1034
- 调用 /workStateController/updateWorkState。
1034
+ 调用 /workStateController/updateWorkState(后端 @RequestBody WorkState)JSON 体。
1035
1035
 
1036
1036
  - **后端端点**:`POST /workStateController/updateWorkState`
1037
1037
  - **所需 scope**:`write`
@@ -1065,7 +1065,7 @@
1065
1065
 
1066
1066
  ## `zentodo.workstate.sync-push`
1067
1067
 
1068
- 调用 /workStateController/putSyncWorkState。
1068
+ 调用 /workStateController/putSyncWorkState(后端 @RequestBody WorkState)JSON 体。
1069
1069
 
1070
1070
  - **后端端点**:`POST /workStateController/putSyncWorkState`
1071
1071
  - **所需 scope**:`sync, write`
@@ -1148,7 +1148,7 @@
1148
1148
 
1149
1149
  ## `zentodo.mindmap.sync-push`
1150
1150
 
1151
- 调用 /gdMetaController/putSyncGDMeta。
1151
+ 调用 /gdMetaController/putSyncGDMeta(后端 @RequestBody GDMeta)JSON 体。
1152
1152
 
1153
1153
  - **后端端点**:`POST /gdMetaController/putSyncGDMeta`
1154
1154
  - **所需 scope**:`sync, write`
@@ -1183,7 +1183,7 @@
1183
1183
 
1184
1184
  ## `zentodo.reward.store-sync-push`
1185
1185
 
1186
- 调用 /rewardStoreController/putSyncRewardStore。
1186
+ 调用 /rewardStoreController/putSyncRewardStore(后端 @RequestBody RewardStore)JSON 体。
1187
1187
 
1188
1188
  - **后端端点**:`POST /rewardStoreController/putSyncRewardStore`
1189
1189
  - **所需 scope**:`sync, write`
@@ -1231,7 +1231,7 @@
1231
1231
 
1232
1232
  ## `zentodo.reward.record-sync-push`
1233
1233
 
1234
- 调用 /rewardRecordController/putSyncRewardRecord。
1234
+ 调用 /rewardRecordController/putSyncRewardRecord(后端 @RequestBody RewardRecord)JSON 体。
1235
1235
 
1236
1236
  - **后端端点**:`POST /rewardRecordController/putSyncRewardRecord`
1237
1237
  - **所需 scope**:`sync, write`
@@ -1266,7 +1266,7 @@
1266
1266
 
1267
1267
  ## `zentodo.fasttime.sync-push`
1268
1268
 
1269
- 调用 /fastTimeRecordController/putSyncFastTimeRecord。
1269
+ 调用 /fastTimeRecordController/putSyncFastTimeRecord(后端 @RequestBody FastTimeRecord)JSON 体。
1270
1270
 
1271
1271
  - **后端端点**:`POST /fastTimeRecordController/putSyncFastTimeRecord`
1272
1272
  - **所需 scope**:`sync, write`