freee-demo-kit 0.1.4

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.
Files changed (157) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +280 -0
  3. package/dist/cli.d.ts +3 -0
  4. package/dist/cli.d.ts.map +1 -0
  5. package/dist/cli.js +35 -0
  6. package/dist/cli.js.map +1 -0
  7. package/dist/commands/auth.d.ts +3 -0
  8. package/dist/commands/auth.d.ts.map +1 -0
  9. package/dist/commands/auth.js +57 -0
  10. package/dist/commands/auth.js.map +1 -0
  11. package/dist/commands/corrupt.d.ts +3 -0
  12. package/dist/commands/corrupt.d.ts.map +1 -0
  13. package/dist/commands/corrupt.js +72 -0
  14. package/dist/commands/corrupt.js.map +1 -0
  15. package/dist/commands/dry-run.d.ts +3 -0
  16. package/dist/commands/dry-run.d.ts.map +1 -0
  17. package/dist/commands/dry-run.js +59 -0
  18. package/dist/commands/dry-run.js.map +1 -0
  19. package/dist/commands/list.d.ts +3 -0
  20. package/dist/commands/list.d.ts.map +1 -0
  21. package/dist/commands/list.js +58 -0
  22. package/dist/commands/list.js.map +1 -0
  23. package/dist/commands/load-all.d.ts +3 -0
  24. package/dist/commands/load-all.d.ts.map +1 -0
  25. package/dist/commands/load-all.js +69 -0
  26. package/dist/commands/load-all.js.map +1 -0
  27. package/dist/commands/load.d.ts +25 -0
  28. package/dist/commands/load.d.ts.map +1 -0
  29. package/dist/commands/load.js +197 -0
  30. package/dist/commands/load.js.map +1 -0
  31. package/dist/commands/reset.d.ts +3 -0
  32. package/dist/commands/reset.d.ts.map +1 -0
  33. package/dist/commands/reset.js +117 -0
  34. package/dist/commands/reset.js.map +1 -0
  35. package/dist/commands/setup.d.ts +4 -0
  36. package/dist/commands/setup.d.ts.map +1 -0
  37. package/dist/commands/setup.js +190 -0
  38. package/dist/commands/setup.js.map +1 -0
  39. package/dist/commands/status.d.ts +3 -0
  40. package/dist/commands/status.d.ts.map +1 -0
  41. package/dist/commands/status.js +25 -0
  42. package/dist/commands/status.js.map +1 -0
  43. package/dist/commands/validate.d.ts +5 -0
  44. package/dist/commands/validate.d.ts.map +1 -0
  45. package/dist/commands/validate.js +132 -0
  46. package/dist/commands/validate.js.map +1 -0
  47. package/dist/commands/verify.d.ts +3 -0
  48. package/dist/commands/verify.d.ts.map +1 -0
  49. package/dist/commands/verify.js +87 -0
  50. package/dist/commands/verify.js.map +1 -0
  51. package/dist/commands/whoami.d.ts +3 -0
  52. package/dist/commands/whoami.d.ts.map +1 -0
  53. package/dist/commands/whoami.js +31 -0
  54. package/dist/commands/whoami.js.map +1 -0
  55. package/dist/types/freee.d.ts +112 -0
  56. package/dist/types/freee.d.ts.map +1 -0
  57. package/dist/types/freee.js +3 -0
  58. package/dist/types/freee.js.map +1 -0
  59. package/dist/types/preset.d.ts +14 -0
  60. package/dist/types/preset.d.ts.map +1 -0
  61. package/dist/types/preset.js +2 -0
  62. package/dist/types/preset.js.map +1 -0
  63. package/dist/utils/accounting-validator.d.ts +13 -0
  64. package/dist/utils/accounting-validator.d.ts.map +1 -0
  65. package/dist/utils/accounting-validator.js +95 -0
  66. package/dist/utils/accounting-validator.js.map +1 -0
  67. package/dist/utils/auth-flow.d.ts +17 -0
  68. package/dist/utils/auth-flow.d.ts.map +1 -0
  69. package/dist/utils/auth-flow.js +137 -0
  70. package/dist/utils/auth-flow.js.map +1 -0
  71. package/dist/utils/config.d.ts +11 -0
  72. package/dist/utils/config.d.ts.map +1 -0
  73. package/dist/utils/config.js +13 -0
  74. package/dist/utils/config.js.map +1 -0
  75. package/dist/utils/confirm-company.d.ts +7 -0
  76. package/dist/utils/confirm-company.d.ts.map +1 -0
  77. package/dist/utils/confirm-company.js +20 -0
  78. package/dist/utils/confirm-company.js.map +1 -0
  79. package/dist/utils/corrupt-injector.d.ts +17 -0
  80. package/dist/utils/corrupt-injector.d.ts.map +1 -0
  81. package/dist/utils/corrupt-injector.js +123 -0
  82. package/dist/utils/corrupt-injector.js.map +1 -0
  83. package/dist/utils/env-loader.d.ts +9 -0
  84. package/dist/utils/env-loader.d.ts.map +1 -0
  85. package/dist/utils/env-loader.js +12 -0
  86. package/dist/utils/env-loader.js.map +1 -0
  87. package/dist/utils/env-writer.d.ts +10 -0
  88. package/dist/utils/env-writer.d.ts.map +1 -0
  89. package/dist/utils/env-writer.js +40 -0
  90. package/dist/utils/env-writer.js.map +1 -0
  91. package/dist/utils/freee-api.d.ts +24 -0
  92. package/dist/utils/freee-api.d.ts.map +1 -0
  93. package/dist/utils/freee-api.js +175 -0
  94. package/dist/utils/freee-api.js.map +1 -0
  95. package/dist/utils/logger.d.ts +6 -0
  96. package/dist/utils/logger.d.ts.map +1 -0
  97. package/dist/utils/logger.js +22 -0
  98. package/dist/utils/logger.js.map +1 -0
  99. package/dist/utils/pkce.d.ts +12 -0
  100. package/dist/utils/pkce.d.ts.map +1 -0
  101. package/dist/utils/pkce.js +18 -0
  102. package/dist/utils/pkce.js.map +1 -0
  103. package/dist/utils/preset-loader.d.ts +3 -0
  104. package/dist/utils/preset-loader.d.ts.map +1 -0
  105. package/dist/utils/preset-loader.js +47 -0
  106. package/dist/utils/preset-loader.js.map +1 -0
  107. package/dist/utils/preset-validator.d.ts +10 -0
  108. package/dist/utils/preset-validator.d.ts.map +1 -0
  109. package/dist/utils/preset-validator.js +23 -0
  110. package/dist/utils/preset-validator.js.map +1 -0
  111. package/dist/utils/state-store.d.ts +6 -0
  112. package/dist/utils/state-store.d.ts.map +1 -0
  113. package/dist/utils/state-store.js +37 -0
  114. package/dist/utils/state-store.js.map +1 -0
  115. package/dist/utils/token-store.d.ts +6 -0
  116. package/dist/utils/token-store.d.ts.map +1 -0
  117. package/dist/utils/token-store.js +30 -0
  118. package/dist/utils/token-store.js.map +1 -0
  119. package/package.json +58 -0
  120. package/presets/README.md +182 -0
  121. package/presets/accounting/README.md +3 -0
  122. package/presets/accounting/construction/preset.json +309 -0
  123. package/presets/accounting/freelance-invoice/preset.json +261 -0
  124. package/presets/accounting/full-year/preset.json +1534 -0
  125. package/presets/accounting/it-startup/preset.json +472 -0
  126. package/presets/accounting/manufacturing/preset.json +333 -0
  127. package/presets/accounting/medical/preset.json +453 -0
  128. package/presets/accounting/non-profit/preset.json +375 -0
  129. package/presets/accounting/npo-subsidy/preset.json +454 -0
  130. package/presets/accounting/payroll-agency/preset.json +286 -0
  131. package/presets/accounting/quickstart/preset.json +917 -0
  132. package/presets/accounting/real-estate/preset.json +453 -0
  133. package/presets/accounting/restaurant/preset.json +349 -0
  134. package/presets/accounting/retail/preset.json +536 -0
  135. package/presets/accounting/sole-proprietor/preset.json +408 -0
  136. package/presets/advanced/multi-company/README.md +3 -0
  137. package/presets/advanced/multi-company/preset.json +640 -0
  138. package/presets/advanced/multi-period/README.md +3 -0
  139. package/presets/advanced/multi-period/preset.json +633 -0
  140. package/presets/common/depreciation/preset.json +433 -0
  141. package/presets/errors/consumption-tax/preset.json +136 -0
  142. package/presets/errors/depreciation-method/preset.json +133 -0
  143. package/presets/errors/duplicate-journal/preset.json +181 -0
  144. package/presets/errors/entertainment/preset.json +108 -0
  145. package/presets/errors/mixed/preset.json +171 -0
  146. package/presets/errors/officer-pay/preset.json +100 -0
  147. package/presets/errors/overdue-receivable/preset.json +157 -0
  148. package/presets/errors/tax-code/preset.json +140 -0
  149. package/presets/errors/year-end-closing/preset.json +163 -0
  150. package/presets/expenses/README.md +3 -0
  151. package/presets/expenses/quickstart/preset.json +240 -0
  152. package/presets/hr/README.md +3 -0
  153. package/presets/hr/quickstart/preset.json +443 -0
  154. package/presets/invoices/README.md +3 -0
  155. package/presets/invoices/quickstart/preset.json +246 -0
  156. package/presets/invoices/subscription/preset.json +263 -0
  157. package/presets/unclassified/quickstart/preset.json +182 -0
@@ -0,0 +1,917 @@
1
+ {
2
+ "name": "会計クイックスタート(中小サービス業)",
3
+ "description": "架空の中小企業(ITサービス業、年商3,000万円相当)の3ヶ月分デモデータ。売上・仕入・給与・経費・手動仕訳を含む標準的なデータセット。",
4
+ "version": "1.0.0",
5
+ "expected": {
6
+ "walletables": 3,
7
+ "deals": 52,
8
+ "manualJournals": 11
9
+ },
10
+ "data": {
11
+ "walletables": [
12
+ {
13
+ "type": "bank_account",
14
+ "name": "さくら信用銀行 普通預金",
15
+ "bank_id": 2407
16
+ },
17
+ {
18
+ "type": "wallet",
19
+ "name": "現金"
20
+ },
21
+ {
22
+ "type": "credit_card",
23
+ "name": "法人クレジットカード",
24
+ "bank_id": 1442
25
+ }
26
+ ],
27
+ "deals": [
28
+ {
29
+ "issue_date": "2026-01-10",
30
+ "type": "income",
31
+ "partner_name": "株式会社アルファシステム",
32
+ "details": [
33
+ {
34
+ "account_item_name": "売上高",
35
+ "tax_code": 21,
36
+ "amount": 880000,
37
+ "description": "Webシステム開発 1月分"
38
+ }
39
+ ]
40
+ },
41
+ {
42
+ "issue_date": "2026-01-15",
43
+ "type": "income",
44
+ "partner_name": "ベータ工業株式会社",
45
+ "details": [
46
+ {
47
+ "account_item_name": "売上高",
48
+ "tax_code": 21,
49
+ "amount": 660000,
50
+ "description": "基幹システム保守 1月分"
51
+ }
52
+ ]
53
+ },
54
+ {
55
+ "issue_date": "2026-01-20",
56
+ "type": "income",
57
+ "partner_name": "ガンマ商事株式会社",
58
+ "details": [
59
+ {
60
+ "account_item_name": "売上高",
61
+ "tax_code": 21,
62
+ "amount": 550000,
63
+ "description": "コンサルティング 1月分"
64
+ }
65
+ ]
66
+ },
67
+ {
68
+ "issue_date": "2026-01-25",
69
+ "type": "income",
70
+ "partner_name": "デルタ物流株式会社",
71
+ "details": [
72
+ {
73
+ "account_item_name": "売上高",
74
+ "tax_code": 21,
75
+ "amount": 440000,
76
+ "description": "データ分析支援 1月分"
77
+ }
78
+ ]
79
+ },
80
+ {
81
+ "issue_date": "2026-02-10",
82
+ "type": "income",
83
+ "partner_name": "株式会社アルファシステム",
84
+ "details": [
85
+ {
86
+ "account_item_name": "売上高",
87
+ "tax_code": 21,
88
+ "amount": 880000,
89
+ "description": "Webシステム開発 2月分"
90
+ }
91
+ ]
92
+ },
93
+ {
94
+ "issue_date": "2026-02-14",
95
+ "type": "income",
96
+ "partner_name": "ベータ工業株式会社",
97
+ "details": [
98
+ {
99
+ "account_item_name": "売上高",
100
+ "tax_code": 21,
101
+ "amount": 715000,
102
+ "description": "基幹システム保守 2月分(緊急対応含む)"
103
+ }
104
+ ]
105
+ },
106
+ {
107
+ "issue_date": "2026-02-20",
108
+ "type": "income",
109
+ "partner_name": "ガンマ商事株式会社",
110
+ "details": [
111
+ {
112
+ "account_item_name": "売上高",
113
+ "tax_code": 21,
114
+ "amount": 550000,
115
+ "description": "コンサルティング 2月分"
116
+ }
117
+ ]
118
+ },
119
+ {
120
+ "issue_date": "2026-02-25",
121
+ "type": "income",
122
+ "partner_name": "デルタ物流株式会社",
123
+ "details": [
124
+ {
125
+ "account_item_name": "売上高",
126
+ "tax_code": 21,
127
+ "amount": 440000,
128
+ "description": "データ分析支援 2月分"
129
+ }
130
+ ]
131
+ },
132
+ {
133
+ "issue_date": "2026-03-10",
134
+ "type": "income",
135
+ "partner_name": "株式会社アルファシステム",
136
+ "details": [
137
+ {
138
+ "account_item_name": "売上高",
139
+ "tax_code": 21,
140
+ "amount": 935000,
141
+ "description": "Webシステム開発 3月分(追加機能対応)"
142
+ }
143
+ ]
144
+ },
145
+ {
146
+ "issue_date": "2026-03-14",
147
+ "type": "income",
148
+ "partner_name": "ベータ工業株式会社",
149
+ "details": [
150
+ {
151
+ "account_item_name": "売上高",
152
+ "tax_code": 21,
153
+ "amount": 660000,
154
+ "description": "基幹システム保守 3月分"
155
+ }
156
+ ]
157
+ },
158
+ {
159
+ "issue_date": "2026-03-20",
160
+ "type": "income",
161
+ "partner_name": "ガンマ商事株式会社",
162
+ "details": [
163
+ {
164
+ "account_item_name": "売上高",
165
+ "tax_code": 21,
166
+ "amount": 605000,
167
+ "description": "コンサルティング 3月分(追加MTG対応)"
168
+ }
169
+ ]
170
+ },
171
+ {
172
+ "issue_date": "2026-03-25",
173
+ "type": "income",
174
+ "partner_name": "デルタ物流株式会社",
175
+ "details": [
176
+ {
177
+ "account_item_name": "売上高",
178
+ "tax_code": 21,
179
+ "amount": 440000,
180
+ "description": "データ分析支援 3月分"
181
+ }
182
+ ]
183
+ },
184
+ {
185
+ "issue_date": "2026-01-05",
186
+ "type": "expense",
187
+ "partner_name": "フリーランスエンジニア 木村",
188
+ "details": [
189
+ {
190
+ "account_item_name": "外注費",
191
+ "tax_code": 34,
192
+ "amount": 330000,
193
+ "description": "開発業務委託 1月分"
194
+ }
195
+ ]
196
+ },
197
+ {
198
+ "issue_date": "2026-01-07",
199
+ "type": "expense",
200
+ "partner_name": "株式会社クラウドサービス",
201
+ "details": [
202
+ {
203
+ "account_item_name": "外注費",
204
+ "tax_code": 34,
205
+ "amount": 110000,
206
+ "description": "インフラ構築支援 1月"
207
+ }
208
+ ]
209
+ },
210
+ {
211
+ "issue_date": "2026-01-12",
212
+ "type": "expense",
213
+ "partner_name": "クラウドネクスト合同会社",
214
+ "details": [
215
+ {
216
+ "account_item_name": "通信費",
217
+ "tax_code": 34,
218
+ "amount": 55000,
219
+ "description": "クラウドサーバー利用料 2025年12月分"
220
+ }
221
+ ]
222
+ },
223
+ {
224
+ "issue_date": "2026-01-28",
225
+ "type": "expense",
226
+ "partner_name": "株式会社オフィスリンク",
227
+ "details": [
228
+ {
229
+ "account_item_name": "消耗品費",
230
+ "tax_code": 34,
231
+ "amount": 22000,
232
+ "description": "文房具・コピー用紙"
233
+ }
234
+ ]
235
+ },
236
+ {
237
+ "issue_date": "2026-02-05",
238
+ "type": "expense",
239
+ "partner_name": "フリーランスエンジニア 木村",
240
+ "details": [
241
+ {
242
+ "account_item_name": "外注費",
243
+ "tax_code": 34,
244
+ "amount": 330000,
245
+ "description": "開発業務委託 2月分"
246
+ }
247
+ ]
248
+ },
249
+ {
250
+ "issue_date": "2026-02-07",
251
+ "type": "expense",
252
+ "partner_name": "株式会社クラウドサービス",
253
+ "details": [
254
+ {
255
+ "account_item_name": "外注費",
256
+ "tax_code": 34,
257
+ "amount": 110000,
258
+ "description": "インフラ構築支援 2月"
259
+ }
260
+ ]
261
+ },
262
+ {
263
+ "issue_date": "2026-02-12",
264
+ "type": "expense",
265
+ "partner_name": "クラウドネクスト合同会社",
266
+ "details": [
267
+ {
268
+ "account_item_name": "通信費",
269
+ "tax_code": 34,
270
+ "amount": 58000,
271
+ "description": "クラウドサーバー利用料 2026年1月分"
272
+ }
273
+ ]
274
+ },
275
+ {
276
+ "issue_date": "2026-02-25",
277
+ "type": "expense",
278
+ "partner_name": "株式会社オフィスリンク",
279
+ "details": [
280
+ {
281
+ "account_item_name": "消耗品費",
282
+ "tax_code": 34,
283
+ "amount": 18000,
284
+ "description": "プリンターインク他"
285
+ }
286
+ ]
287
+ },
288
+ {
289
+ "issue_date": "2026-03-05",
290
+ "type": "expense",
291
+ "partner_name": "フリーランスエンジニア 木村",
292
+ "details": [
293
+ {
294
+ "account_item_name": "外注費",
295
+ "tax_code": 34,
296
+ "amount": 330000,
297
+ "description": "開発業務委託 3月分"
298
+ }
299
+ ]
300
+ },
301
+ {
302
+ "issue_date": "2026-03-07",
303
+ "type": "expense",
304
+ "partner_name": "株式会社クラウドサービス",
305
+ "details": [
306
+ {
307
+ "account_item_name": "外注費",
308
+ "tax_code": 34,
309
+ "amount": 110000,
310
+ "description": "インフラ構築支援 3月"
311
+ }
312
+ ]
313
+ },
314
+ {
315
+ "issue_date": "2026-03-12",
316
+ "type": "expense",
317
+ "partner_name": "クラウドネクスト合同会社",
318
+ "details": [
319
+ {
320
+ "account_item_name": "通信費",
321
+ "tax_code": 34,
322
+ "amount": 52000,
323
+ "description": "クラウドサーバー利用料 2026年2月分"
324
+ }
325
+ ]
326
+ },
327
+ {
328
+ "issue_date": "2026-03-27",
329
+ "type": "expense",
330
+ "partner_name": "株式会社オフィスリンク",
331
+ "details": [
332
+ {
333
+ "account_item_name": "消耗品費",
334
+ "tax_code": 34,
335
+ "amount": 15000,
336
+ "description": "コピー用紙・ファイル類"
337
+ }
338
+ ]
339
+ },
340
+ {
341
+ "issue_date": "2026-01-25",
342
+ "type": "expense",
343
+ "partner_name": "代表取締役 山田 義明",
344
+ "details": [
345
+ {
346
+ "account_item_name": "役員報酬",
347
+ "tax_code": 0,
348
+ "amount": 500000,
349
+ "description": "1月度 役員報酬"
350
+ }
351
+ ]
352
+ },
353
+ {
354
+ "issue_date": "2026-02-25",
355
+ "type": "expense",
356
+ "partner_name": "代表取締役 山田 義明",
357
+ "details": [
358
+ {
359
+ "account_item_name": "役員報酬",
360
+ "tax_code": 0,
361
+ "amount": 500000,
362
+ "description": "2月度 役員報酬"
363
+ }
364
+ ]
365
+ },
366
+ {
367
+ "issue_date": "2026-03-25",
368
+ "type": "expense",
369
+ "partner_name": "代表取締役 山田 義明",
370
+ "details": [
371
+ {
372
+ "account_item_name": "役員報酬",
373
+ "tax_code": 0,
374
+ "amount": 500000,
375
+ "description": "3月度 役員報酬"
376
+ }
377
+ ]
378
+ },
379
+ {
380
+ "issue_date": "2026-01-06",
381
+ "type": "expense",
382
+ "partner_name": "メトロポリス鉄道株式会社",
383
+ "details": [
384
+ {
385
+ "account_item_name": "旅費交通費",
386
+ "tax_code": 34,
387
+ "amount": 12000,
388
+ "description": "1月 交通費精算"
389
+ }
390
+ ]
391
+ },
392
+ {
393
+ "issue_date": "2026-01-10",
394
+ "type": "expense",
395
+ "partner_name": "ネットリンク通信株式会社",
396
+ "details": [
397
+ {
398
+ "account_item_name": "通信費",
399
+ "tax_code": 34,
400
+ "amount": 15000,
401
+ "description": "オフィス電話・インターネット 1月"
402
+ }
403
+ ]
404
+ },
405
+ {
406
+ "issue_date": "2026-01-15",
407
+ "type": "expense",
408
+ "partner_name": "首都エネルギー株式会社",
409
+ "details": [
410
+ {
411
+ "account_item_name": "水道光熱費",
412
+ "tax_code": 34,
413
+ "amount": 28000,
414
+ "description": "電気料金 12月分"
415
+ }
416
+ ]
417
+ },
418
+ {
419
+ "issue_date": "2026-01-20",
420
+ "type": "expense",
421
+ "partner_name": "サーチマーケティング合同会社",
422
+ "details": [
423
+ {
424
+ "account_item_name": "広告宣伝費",
425
+ "tax_code": 34,
426
+ "amount": 80000,
427
+ "description": "ネット広告費 1月分"
428
+ }
429
+ ]
430
+ },
431
+ {
432
+ "issue_date": "2026-01-22",
433
+ "type": "expense",
434
+ "partner_name": "銀座 日本料理 さくら",
435
+ "details": [
436
+ {
437
+ "account_item_name": "交際費",
438
+ "tax_code": 34,
439
+ "amount": 33000,
440
+ "description": "顧客接待 アルファシステム担当"
441
+ }
442
+ ]
443
+ },
444
+ {
445
+ "issue_date": "2026-01-31",
446
+ "type": "expense",
447
+ "partner_name": "エムオーテックス株式会社",
448
+ "details": [
449
+ {
450
+ "account_item_name": "諸会費",
451
+ "tax_code": 0,
452
+ "amount": 5000,
453
+ "description": "ITツール年会費"
454
+ }
455
+ ]
456
+ },
457
+ {
458
+ "issue_date": "2026-01-31",
459
+ "type": "expense",
460
+ "partner_name": "株式会社ドメイン",
461
+ "details": [
462
+ {
463
+ "account_item_name": "地代家賃",
464
+ "tax_code": 0,
465
+ "amount": 150000,
466
+ "description": "オフィス賃料 1月分"
467
+ }
468
+ ]
469
+ },
470
+ {
471
+ "issue_date": "2026-02-06",
472
+ "type": "expense",
473
+ "partner_name": "メトロポリス鉄道株式会社",
474
+ "details": [
475
+ {
476
+ "account_item_name": "旅費交通費",
477
+ "tax_code": 34,
478
+ "amount": 9500,
479
+ "description": "2月 交通費精算"
480
+ }
481
+ ]
482
+ },
483
+ {
484
+ "issue_date": "2026-02-10",
485
+ "type": "expense",
486
+ "partner_name": "ネットリンク通信株式会社",
487
+ "details": [
488
+ {
489
+ "account_item_name": "通信費",
490
+ "tax_code": 34,
491
+ "amount": 15000,
492
+ "description": "オフィス電話・インターネット 2月"
493
+ }
494
+ ]
495
+ },
496
+ {
497
+ "issue_date": "2026-02-16",
498
+ "type": "expense",
499
+ "partner_name": "首都エネルギー株式会社",
500
+ "details": [
501
+ {
502
+ "account_item_name": "水道光熱費",
503
+ "tax_code": 34,
504
+ "amount": 31000,
505
+ "description": "電気料金 1月分"
506
+ }
507
+ ]
508
+ },
509
+ {
510
+ "issue_date": "2026-02-20",
511
+ "type": "expense",
512
+ "partner_name": "サーチマーケティング合同会社",
513
+ "details": [
514
+ {
515
+ "account_item_name": "広告宣伝費",
516
+ "tax_code": 34,
517
+ "amount": 90000,
518
+ "description": "ネット広告費 2月分"
519
+ }
520
+ ]
521
+ },
522
+ {
523
+ "issue_date": "2026-02-25",
524
+ "type": "expense",
525
+ "partner_name": "渋谷 寿司 海鮮",
526
+ "details": [
527
+ {
528
+ "account_item_name": "交際費",
529
+ "tax_code": 34,
530
+ "amount": 44000,
531
+ "description": "顧客接待 ベータ工業担当"
532
+ }
533
+ ]
534
+ },
535
+ {
536
+ "issue_date": "2026-02-28",
537
+ "type": "expense",
538
+ "partner_name": "株式会社ドメイン",
539
+ "details": [
540
+ {
541
+ "account_item_name": "地代家賃",
542
+ "tax_code": 0,
543
+ "amount": 150000,
544
+ "description": "オフィス賃料 2月分"
545
+ }
546
+ ]
547
+ },
548
+ {
549
+ "issue_date": "2026-03-06",
550
+ "type": "expense",
551
+ "partner_name": "メトロポリス鉄道株式会社",
552
+ "details": [
553
+ {
554
+ "account_item_name": "旅費交通費",
555
+ "tax_code": 34,
556
+ "amount": 14000,
557
+ "description": "3月 交通費精算"
558
+ }
559
+ ]
560
+ },
561
+ {
562
+ "issue_date": "2026-03-10",
563
+ "type": "expense",
564
+ "partner_name": "ネットリンク通信株式会社",
565
+ "details": [
566
+ {
567
+ "account_item_name": "通信費",
568
+ "tax_code": 34,
569
+ "amount": 15000,
570
+ "description": "オフィス電話・インターネット 3月"
571
+ }
572
+ ]
573
+ },
574
+ {
575
+ "issue_date": "2026-03-16",
576
+ "type": "expense",
577
+ "partner_name": "首都エネルギー株式会社",
578
+ "details": [
579
+ {
580
+ "account_item_name": "水道光熱費",
581
+ "tax_code": 34,
582
+ "amount": 25000,
583
+ "description": "電気料金 2月分"
584
+ }
585
+ ]
586
+ },
587
+ {
588
+ "issue_date": "2026-03-20",
589
+ "type": "expense",
590
+ "partner_name": "サーチマーケティング合同会社",
591
+ "details": [
592
+ {
593
+ "account_item_name": "広告宣伝費",
594
+ "tax_code": 34,
595
+ "amount": 85000,
596
+ "description": "ネット広告費 3月分"
597
+ }
598
+ ]
599
+ },
600
+ {
601
+ "issue_date": "2026-03-25",
602
+ "type": "expense",
603
+ "partner_name": "銀座 イタリアン アルプス",
604
+ "details": [
605
+ {
606
+ "account_item_name": "交際費",
607
+ "tax_code": 34,
608
+ "amount": 38500,
609
+ "description": "顧客接待 ガンマ商事担当"
610
+ }
611
+ ]
612
+ },
613
+ {
614
+ "issue_date": "2026-03-31",
615
+ "type": "expense",
616
+ "partner_name": "株式会社ドメイン",
617
+ "details": [
618
+ {
619
+ "account_item_name": "地代家賃",
620
+ "tax_code": 0,
621
+ "amount": 150000,
622
+ "description": "オフィス賃料 3月分"
623
+ }
624
+ ]
625
+ },
626
+ {
627
+ "issue_date": "2026-01-31",
628
+ "type": "expense",
629
+ "partner_name": "オフィスソリューションズ株式会社",
630
+ "details": [
631
+ {
632
+ "account_item_name": "通信費",
633
+ "tax_code": 34,
634
+ "amount": 33000,
635
+ "description": "オフィスソフト利用料 1月分"
636
+ }
637
+ ]
638
+ },
639
+ {
640
+ "issue_date": "2026-02-28",
641
+ "type": "expense",
642
+ "partner_name": "オフィスソリューションズ株式会社",
643
+ "details": [
644
+ {
645
+ "account_item_name": "通信費",
646
+ "tax_code": 34,
647
+ "amount": 33000,
648
+ "description": "オフィスソフト利用料 2月分"
649
+ }
650
+ ]
651
+ },
652
+ {
653
+ "issue_date": "2026-03-31",
654
+ "type": "expense",
655
+ "partner_name": "オフィスソリューションズ株式会社",
656
+ "details": [
657
+ {
658
+ "account_item_name": "通信費",
659
+ "tax_code": 34,
660
+ "amount": 33000,
661
+ "description": "オフィスソフト利用料 3月分"
662
+ }
663
+ ]
664
+ },
665
+ {
666
+ "issue_date": "2026-02-28",
667
+ "type": "expense",
668
+ "partner_name": "株式会社ビジネスサポート",
669
+ "details": [
670
+ {
671
+ "account_item_name": "支払手数料",
672
+ "tax_code": 34,
673
+ "amount": 11000,
674
+ "description": "会計ソフト利用料 2月分"
675
+ }
676
+ ]
677
+ },
678
+ {
679
+ "issue_date": "2026-01-31",
680
+ "type": "expense",
681
+ "partner_name": "株式会社ビジネスサポート",
682
+ "details": [
683
+ {
684
+ "account_item_name": "支払手数料",
685
+ "tax_code": 34,
686
+ "amount": 11000,
687
+ "description": "会計ソフト利用料 1月分"
688
+ }
689
+ ]
690
+ },
691
+ {
692
+ "issue_date": "2026-03-31",
693
+ "type": "expense",
694
+ "partner_name": "株式会社ビジネスサポート",
695
+ "details": [
696
+ {
697
+ "account_item_name": "支払手数料",
698
+ "tax_code": 34,
699
+ "amount": 11000,
700
+ "description": "会計ソフト利用料 3月分"
701
+ }
702
+ ]
703
+ }
704
+ ],
705
+ "manualJournals": [
706
+ {
707
+ "issue_date": "2026-01-31",
708
+ "details": [
709
+ {
710
+ "entry_side": "debit",
711
+ "account_item_name": "外注費",
712
+ "tax_code": 0,
713
+ "amount": 132000,
714
+ "description": "1月末 外注費未払計上(月末締め未入力分)"
715
+ },
716
+ {
717
+ "entry_side": "credit",
718
+ "account_item_name": "未払費用",
719
+ "tax_code": 0,
720
+ "amount": 132000,
721
+ "description": "1月末 外注費未払"
722
+ }
723
+ ]
724
+ },
725
+ {
726
+ "issue_date": "2026-02-28",
727
+ "details": [
728
+ {
729
+ "entry_side": "debit",
730
+ "account_item_name": "法定福利費",
731
+ "tax_code": 0,
732
+ "amount": 38500,
733
+ "description": "2月 社会保険料 会社負担分計上"
734
+ },
735
+ {
736
+ "entry_side": "credit",
737
+ "account_item_name": "未払費用",
738
+ "tax_code": 0,
739
+ "amount": 38500,
740
+ "description": "2月 社会保険料 未払計上"
741
+ }
742
+ ]
743
+ },
744
+ {
745
+ "issue_date": "2026-03-31",
746
+ "details": [
747
+ {
748
+ "entry_side": "debit",
749
+ "account_item_name": "広告宣伝費",
750
+ "tax_code": 0,
751
+ "amount": 110000,
752
+ "description": "3月末 広告費未払計上(請求書未着分)"
753
+ },
754
+ {
755
+ "entry_side": "credit",
756
+ "account_item_name": "未払費用",
757
+ "tax_code": 0,
758
+ "amount": 110000,
759
+ "description": "3月末 広告費未払"
760
+ }
761
+ ]
762
+ },
763
+ {
764
+ "issue_date": "2026-01-31",
765
+ "details": [
766
+ {
767
+ "entry_side": "debit",
768
+ "account_item_name": "減価償却費",
769
+ "tax_code": 0,
770
+ "amount": 50000,
771
+ "description": "1月 PC・機器 月次償却"
772
+ },
773
+ {
774
+ "entry_side": "credit",
775
+ "account_item_name": "工具器具備品",
776
+ "tax_code": 0,
777
+ "amount": 50000,
778
+ "description": "1月 減価償却累計"
779
+ }
780
+ ]
781
+ },
782
+ {
783
+ "issue_date": "2026-03-31",
784
+ "details": [
785
+ {
786
+ "entry_side": "debit",
787
+ "account_item_name": "前払費用",
788
+ "tax_code": 0,
789
+ "amount": 120000,
790
+ "description": "期末 保険料前払計上"
791
+ },
792
+ {
793
+ "entry_side": "credit",
794
+ "account_item_name": "保険料",
795
+ "tax_code": 0,
796
+ "amount": 120000,
797
+ "description": "期末 保険料振替"
798
+ }
799
+ ]
800
+ },
801
+ {
802
+ "issue_date": "2026-01-31",
803
+ "details": [
804
+ {
805
+ "entry_side": "debit",
806
+ "account_item_name": "売掛金",
807
+ "tax_code": 0,
808
+ "amount": 1540000,
809
+ "description": "1月末 売掛金計上(アルファシステム・ベータ工業 Net-30条件)"
810
+ },
811
+ {
812
+ "entry_side": "credit",
813
+ "account_item_name": "売上高",
814
+ "tax_code": 21,
815
+ "amount": 1540000,
816
+ "description": "1月末 未収売上計上"
817
+ }
818
+ ]
819
+ },
820
+ {
821
+ "issue_date": "2026-02-10",
822
+ "details": [
823
+ {
824
+ "entry_side": "debit",
825
+ "account_item_name": "さくら信用銀行 普通預金",
826
+ "tax_code": 0,
827
+ "amount": 1540000,
828
+ "description": "1月分売掛金 入金(アルファシステム・ベータ工業)"
829
+ },
830
+ {
831
+ "entry_side": "credit",
832
+ "account_item_name": "売掛金",
833
+ "tax_code": 0,
834
+ "amount": 1540000,
835
+ "description": "1月分売掛金 消込"
836
+ }
837
+ ]
838
+ },
839
+ {
840
+ "issue_date": "2026-02-28",
841
+ "details": [
842
+ {
843
+ "entry_side": "debit",
844
+ "account_item_name": "売掛金",
845
+ "tax_code": 0,
846
+ "amount": 1540000,
847
+ "description": "2月末 売掛金計上(アルファシステム・ベータ工業 Net-30条件)"
848
+ },
849
+ {
850
+ "entry_side": "credit",
851
+ "account_item_name": "売上高",
852
+ "tax_code": 21,
853
+ "amount": 1540000,
854
+ "description": "2月末 未収売上計上"
855
+ }
856
+ ]
857
+ },
858
+ {
859
+ "issue_date": "2026-03-10",
860
+ "details": [
861
+ {
862
+ "entry_side": "debit",
863
+ "account_item_name": "さくら信用銀行 普通預金",
864
+ "tax_code": 0,
865
+ "amount": 1540000,
866
+ "description": "2月分売掛金 入金(アルファシステム・ベータ工業)"
867
+ },
868
+ {
869
+ "entry_side": "credit",
870
+ "account_item_name": "売掛金",
871
+ "tax_code": 0,
872
+ "amount": 1540000,
873
+ "description": "2月分売掛金 消込"
874
+ }
875
+ ]
876
+ },
877
+ {
878
+ "issue_date": "2026-03-31",
879
+ "details": [
880
+ {
881
+ "entry_side": "debit",
882
+ "account_item_name": "売掛金",
883
+ "tax_code": 0,
884
+ "amount": 1540000,
885
+ "description": "3月末 売掛金計上(アルファシステム・ベータ工業 Net-30条件)"
886
+ },
887
+ {
888
+ "entry_side": "credit",
889
+ "account_item_name": "売上高",
890
+ "tax_code": 21,
891
+ "amount": 1540000,
892
+ "description": "3月末 未収売上計上"
893
+ }
894
+ ]
895
+ },
896
+ {
897
+ "issue_date": "2026-04-10",
898
+ "details": [
899
+ {
900
+ "entry_side": "debit",
901
+ "account_item_name": "さくら信用銀行 普通預金",
902
+ "tax_code": 0,
903
+ "amount": 1540000,
904
+ "description": "3月分売掛金 入金(アルファシステム・ベータ工業)"
905
+ },
906
+ {
907
+ "entry_side": "credit",
908
+ "account_item_name": "売掛金",
909
+ "tax_code": 0,
910
+ "amount": 1540000,
911
+ "description": "3月分売掛金 消込"
912
+ }
913
+ ]
914
+ }
915
+ ]
916
+ }
917
+ }