@kickflow/mcp-server 0.1.5 → 0.1.6
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 +23 -0
- package/dist/index.js +4 -238
- package/dist/index.js.map +1 -1
- package/dist/kickflow-api/generated/audit-log/audit-log.zod.d.ts +3 -3
- package/dist/kickflow-api/generated/audit-log/audit-log.zod.js +3 -3
- package/dist/kickflow-api/generated/audit-log/audit-log.zod.js.map +1 -1
- package/dist/kickflow-api/generated/comment/comment.zod.d.ts +24 -24
- package/dist/kickflow-api/generated/comment/comment.zod.js +24 -24
- package/dist/kickflow-api/generated/comment/comment.zod.js.map +1 -1
- package/dist/kickflow-api/generated/folder/folder.zod.d.ts +20 -20
- package/dist/kickflow-api/generated/folder/folder.zod.js +20 -20
- package/dist/kickflow-api/generated/general-master/general-master.zod.d.ts +32 -32
- package/dist/kickflow-api/generated/general-master/general-master.zod.js +32 -32
- package/dist/kickflow-api/generated/grade/grade.zod.d.ts +10 -10
- package/dist/kickflow-api/generated/grade/grade.zod.js +10 -10
- package/dist/kickflow-api/generated/kickflowRESTAPIV1.schemas.d.ts +44 -38
- package/dist/kickflow-api/generated/kickflowRESTAPIV1.schemas.js +1 -0
- package/dist/kickflow-api/generated/kickflowRESTAPIV1.schemas.js.map +1 -1
- package/dist/kickflow-api/generated/organization-chart/organization-chart.zod.d.ts +6 -6
- package/dist/kickflow-api/generated/organization-chart/organization-chart.zod.js +6 -6
- package/dist/kickflow-api/generated/proxy-applicant/proxy-applicant.zod.d.ts +28 -28
- package/dist/kickflow-api/generated/proxy-applicant/proxy-applicant.zod.js +28 -28
- package/dist/kickflow-api/generated/proxy-applicant/proxy-applicant.zod.js.map +1 -1
- package/dist/kickflow-api/generated/proxy-approver/proxy-approver.zod.d.ts +28 -28
- package/dist/kickflow-api/generated/proxy-approver/proxy-approver.zod.js +28 -28
- package/dist/kickflow-api/generated/proxy-approver/proxy-approver.zod.js.map +1 -1
- package/dist/kickflow-api/generated/role/role.zod.d.ts +34 -31
- package/dist/kickflow-api/generated/role/role.zod.js +37 -34
- package/dist/kickflow-api/generated/role/role.zod.js.map +1 -1
- package/dist/kickflow-api/generated/route/route.zod.d.ts +33 -31
- package/dist/kickflow-api/generated/route/route.zod.js +35 -33
- package/dist/kickflow-api/generated/route/route.zod.js.map +1 -1
- package/dist/kickflow-api/generated/team/team.zod.d.ts +50 -40
- package/dist/kickflow-api/generated/team/team.zod.js +60 -50
- package/dist/kickflow-api/generated/team/team.zod.js.map +1 -1
- package/dist/kickflow-api/generated/ticket/ticket.zod.d.ts +3630 -3476
- package/dist/kickflow-api/generated/ticket/ticket.zod.js +3724 -3624
- package/dist/kickflow-api/generated/ticket/ticket.zod.js.map +1 -1
- package/dist/kickflow-api/generated/user/user.zod.d.ts +39 -38
- package/dist/kickflow-api/generated/user/user.zod.js +40 -39
- package/dist/kickflow-api/generated/user/user.zod.js.map +1 -1
- package/dist/kickflow-api/generated/workflow/workflow.zod.d.ts +73 -70
- package/dist/kickflow-api/generated/workflow/workflow.zod.js +75 -73
- package/dist/kickflow-api/generated/workflow/workflow.zod.js.map +1 -1
- package/dist/kickflow-api/tools/file/upload-file.js +3 -1
- package/dist/kickflow-api/tools/file/upload-file.js.map +1 -1
- package/dist/server.d.ts +4 -0
- package/dist/server.js +240 -0
- package/dist/server.js.map +1 -0
- package/package.json +10 -5
package/README.md
CHANGED
|
@@ -228,6 +228,29 @@ npm run dev
|
|
|
228
228
|
|
|
229
229
|
_(開発時も `KICKFLOW_ACCESS_TOKEN` 環境変数の設定が必要です)_
|
|
230
230
|
|
|
231
|
+
#### テストの実行
|
|
232
|
+
|
|
233
|
+
```bash
|
|
234
|
+
# ユニットテストを実行
|
|
235
|
+
npm run test
|
|
236
|
+
|
|
237
|
+
# ウォッチモードでテストを実行(ファイル変更時に自動再実行)
|
|
238
|
+
npm run test:watch
|
|
239
|
+
|
|
240
|
+
# MCP Inspector でサーバーをデバッグ
|
|
241
|
+
npm run test:inspector
|
|
242
|
+
```
|
|
243
|
+
|
|
244
|
+
#### Lint と型チェック
|
|
245
|
+
|
|
246
|
+
```bash
|
|
247
|
+
# ESLint によるコードチェック
|
|
248
|
+
npm run lint
|
|
249
|
+
|
|
250
|
+
# TypeScript の型チェック
|
|
251
|
+
npm run typecheck
|
|
252
|
+
```
|
|
253
|
+
|
|
231
254
|
#### OpenAPI型定義の更新
|
|
232
255
|
|
|
233
256
|
kickflow APIのスキーマから TypeScript の型定義を更新するには:
|
package/dist/index.js
CHANGED
|
@@ -1,118 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
import { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';
|
|
3
2
|
import { StdioServerTransport } from '@modelcontextprotocol/sdk/server/stdio.js';
|
|
4
3
|
import { setKickflowAccessToken } from './kickflow-api/custom-axios-instance.js';
|
|
5
|
-
|
|
6
|
-
import pkg from '../package.json' with { type: 'json' };
|
|
7
|
-
// Audit Log tools
|
|
8
|
-
import listAuditLogsTool from './kickflow-api/tools/audit-log/list-audit-logs.js';
|
|
9
|
-
// Category tools
|
|
10
|
-
import createCategoryTool from './kickflow-api/tools/category/create-category.js';
|
|
11
|
-
import updateCategoryTool from './kickflow-api/tools/category/update-category.js';
|
|
12
|
-
import listCategoriesTool from './kickflow-api/tools/category/list-categories.js';
|
|
13
|
-
import deleteCategoryTool from './kickflow-api/tools/category/delete-category.js';
|
|
14
|
-
// Folder tools
|
|
15
|
-
import listFoldersTool from './kickflow-api/tools/folder/list-folders.js';
|
|
16
|
-
import createFolderTool from './kickflow-api/tools/folder/create-folder.js';
|
|
17
|
-
import updateFolderTool from './kickflow-api/tools/folder/update-folder.js';
|
|
18
|
-
import getFolderTool from './kickflow-api/tools/folder/get-folder.js';
|
|
19
|
-
import deleteFolderTool from './kickflow-api/tools/folder/delete-folder.js';
|
|
20
|
-
// User tools
|
|
21
|
-
import getCurrentUserTool from './kickflow-api/tools/user/get-current-user.js';
|
|
22
|
-
import listUsersTool from './kickflow-api/tools/user/list-users.js';
|
|
23
|
-
import createUserTool from './kickflow-api/tools/user/create-user.js';
|
|
24
|
-
import getUserTool from './kickflow-api/tools/user/get-user.js';
|
|
25
|
-
import deleteUserTool from './kickflow-api/tools/user/delete-user.js';
|
|
26
|
-
import updateUserTool from './kickflow-api/tools/user/update-user.js';
|
|
27
|
-
import lookupUserByEmailTool from './kickflow-api/tools/user/lookup-user-by-email.js';
|
|
28
|
-
import reinviteUserTool from './kickflow-api/tools/user/reinvite-user.js';
|
|
29
|
-
import suspendUserTool from './kickflow-api/tools/user/suspend-user.js';
|
|
30
|
-
import reactivateUserTool from './kickflow-api/tools/user/reactivate-user.js';
|
|
31
|
-
import listUserTeamsTool from './kickflow-api/tools/user/list-user-teams.js';
|
|
32
|
-
import listUserRolesTool from './kickflow-api/tools/user/list-user-roles.js';
|
|
33
|
-
// Grade tools
|
|
34
|
-
import listGradesTool from './kickflow-api/tools/grade/list-grades.js';
|
|
35
|
-
import createGradeTool from './kickflow-api/tools/grade/create-grade.js';
|
|
36
|
-
import getGradeTool from './kickflow-api/tools/grade/get-grade.js';
|
|
37
|
-
import updateGradeTool from './kickflow-api/tools/grade/update-grade.js';
|
|
38
|
-
import deleteGradeTool from './kickflow-api/tools/grade/delete-grade.js';
|
|
39
|
-
import setDefaultGradeTool from './kickflow-api/tools/grade/set-default-grade.js';
|
|
40
|
-
// Proxy Applicant tools
|
|
41
|
-
import listProxyApplicantsTool from './kickflow-api/tools/proxy-applicant/list-proxy-applicants.js';
|
|
42
|
-
import createProxyApplicantTool from './kickflow-api/tools/proxy-applicant/create-proxy-applicant.js';
|
|
43
|
-
import deleteProxyApplicantTool from './kickflow-api/tools/proxy-applicant/delete-proxy-applicant.js';
|
|
44
|
-
// Proxy Approver tools
|
|
45
|
-
import listProxyApproversTool from './kickflow-api/tools/proxy-approver/list-proxy-approvers.js';
|
|
46
|
-
import createProxyApproverTool from './kickflow-api/tools/proxy-approver/create-proxy-approver.js';
|
|
47
|
-
import deleteProxyApproverTool from './kickflow-api/tools/proxy-approver/delete-proxy-approver.js';
|
|
48
|
-
// Organization Chart tools
|
|
49
|
-
import listOrganizationChartsTool from './kickflow-api/tools/organization-chart/list-organization-charts.js';
|
|
50
|
-
import createOrganizationChartTool from './kickflow-api/tools/organization-chart/create-organization-chart.js';
|
|
51
|
-
import getOrganizationChartTool from './kickflow-api/tools/organization-chart/get-organization-chart.js';
|
|
52
|
-
import updateOrganizationChartTool from './kickflow-api/tools/organization-chart/update-organization-chart.js';
|
|
53
|
-
import deleteOrganizationChartTool from './kickflow-api/tools/organization-chart/delete-organization-chart.js';
|
|
54
|
-
import getCurrentOrganizationChartTool from './kickflow-api/tools/organization-chart/get-current-organization-chart.js';
|
|
55
|
-
import activateOrganizationChartTool from './kickflow-api/tools/organization-chart/activate-organization-chart.js';
|
|
56
|
-
// Team tools
|
|
57
|
-
import listTeamsTool from './kickflow-api/tools/team/list-teams.js';
|
|
58
|
-
import createTeamTool from './kickflow-api/tools/team/create-team.js';
|
|
59
|
-
import getTeamTool from './kickflow-api/tools/team/get-team.js';
|
|
60
|
-
import updateTeamTool from './kickflow-api/tools/team/update-team.js';
|
|
61
|
-
import deleteTeamTool from './kickflow-api/tools/team/delete-team.js';
|
|
62
|
-
import listTeamMembersTool from './kickflow-api/tools/team/list-team-members.js';
|
|
63
|
-
import createTeamMembersTool from './kickflow-api/tools/team/create-team-members.js';
|
|
64
|
-
import deleteTeamMembersTool from './kickflow-api/tools/team/delete-team-members.js';
|
|
65
|
-
import updateTeamMemberTool from './kickflow-api/tools/team/update-team-member.js';
|
|
66
|
-
// General Master tools
|
|
67
|
-
import listGeneralMastersTool from './kickflow-api/tools/general-master/list-general-masters.js';
|
|
68
|
-
import createGeneralMasterTool from './kickflow-api/tools/general-master/create-general-master.js';
|
|
69
|
-
import getGeneralMasterTool from './kickflow-api/tools/general-master/get-general-master.js';
|
|
70
|
-
import updateGeneralMasterTool from './kickflow-api/tools/general-master/update-general-master.js';
|
|
71
|
-
import deleteGeneralMasterTool from './kickflow-api/tools/general-master/delete-general-master.js';
|
|
72
|
-
import listGeneralMasterItemsTool from './kickflow-api/tools/general-master/list-general-master-items.js';
|
|
73
|
-
import createGeneralMasterItemTool from './kickflow-api/tools/general-master/create-general-master-item.js';
|
|
74
|
-
import getGeneralMasterItemTool from './kickflow-api/tools/general-master/get-general-master-item.js';
|
|
75
|
-
import updateGeneralMasterItemTool from './kickflow-api/tools/general-master/update-general-master-item.js';
|
|
76
|
-
import deleteGeneralMasterItemTool from './kickflow-api/tools/general-master/delete-general-master-item.js';
|
|
77
|
-
// Route tools
|
|
78
|
-
import listRoutesTool from './kickflow-api/tools/route/list-routes.js';
|
|
79
|
-
import getRouteTool from './kickflow-api/tools/route/get-route.js';
|
|
80
|
-
// Workflow tools
|
|
81
|
-
import listWorkflowsTool from './kickflow-api/tools/workflow/list-workflows.js';
|
|
82
|
-
import getWorkflowTool from './kickflow-api/tools/workflow/get-workflow.js';
|
|
83
|
-
// Role tools
|
|
84
|
-
import listRolesTool from './kickflow-api/tools/role/list-roles.js';
|
|
85
|
-
import createRoleTool from './kickflow-api/tools/role/create-role.js';
|
|
86
|
-
import getRoleTool from './kickflow-api/tools/role/get-role.js';
|
|
87
|
-
import updateRoleTool from './kickflow-api/tools/role/update-role.js';
|
|
88
|
-
import deleteRoleTool from './kickflow-api/tools/role/delete-role.js';
|
|
89
|
-
import createRoleMembersTool from './kickflow-api/tools/role/create-role-members.js';
|
|
90
|
-
import listRoleMembersTool from './kickflow-api/tools/role/list-role-members.js';
|
|
91
|
-
import deleteRoleMemberTool from './kickflow-api/tools/role/delete-role-member.js';
|
|
92
|
-
// Ticket tools
|
|
93
|
-
import listTicketsTool from './kickflow-api/tools/ticket/list-tickets.js';
|
|
94
|
-
import createTicketTool from './kickflow-api/tools/ticket/create-ticket.js';
|
|
95
|
-
import listTasksTool from './kickflow-api/tools/ticket/list-tasks.js';
|
|
96
|
-
import getTicketTool from './kickflow-api/tools/ticket/get-ticket.js';
|
|
97
|
-
import updateTicketTool from './kickflow-api/tools/ticket/update-ticket.js';
|
|
98
|
-
import approveTicketTool from './kickflow-api/tools/ticket/approve-ticket.js';
|
|
99
|
-
import rejectTicketTool from './kickflow-api/tools/ticket/reject-ticket.js';
|
|
100
|
-
import denyTicketTool from './kickflow-api/tools/ticket/deny-ticket.js';
|
|
101
|
-
import withdrawTicketTool from './kickflow-api/tools/ticket/withdraw-ticket.js';
|
|
102
|
-
import archiveTicketTool from './kickflow-api/tools/ticket/archive-ticket.js';
|
|
103
|
-
import listTicketLinksTool from './kickflow-api/tools/ticket/list-ticket-links.js';
|
|
104
|
-
import listViewersTool from './kickflow-api/tools/ticket/list-viewers.js';
|
|
105
|
-
import createViewerTool from './kickflow-api/tools/ticket/create-viewer.js';
|
|
106
|
-
import deleteViewerTool from './kickflow-api/tools/ticket/delete-viewer.js';
|
|
107
|
-
// Comment tools
|
|
108
|
-
import listCommentsTool from './kickflow-api/tools/comment/list-comments.js';
|
|
109
|
-
import createCommentTool from './kickflow-api/tools/comment/create-comment.js';
|
|
110
|
-
import getCommentTool from './kickflow-api/tools/comment/get-comment.js';
|
|
111
|
-
import updateCommentTool from './kickflow-api/tools/comment/update-comment.js';
|
|
112
|
-
import deleteCommentTool from './kickflow-api/tools/comment/delete-comment.js';
|
|
113
|
-
// File tools
|
|
114
|
-
import uploadFileTool from './kickflow-api/tools/file/upload-file.js';
|
|
115
|
-
import getFileTool from './kickflow-api/tools/file/get-file.js';
|
|
4
|
+
import { createServer } from './server.js';
|
|
116
5
|
// コマンドライン引数からトークンを取得
|
|
117
6
|
function parseArguments() {
|
|
118
7
|
const args = process.argv.slice(2);
|
|
@@ -152,9 +41,9 @@ if (!ACCESS_TOKEN) {
|
|
|
152
41
|
|
|
153
42
|
例:
|
|
154
43
|
npx kickflow-mcp-server --kickflow-access-token=YOUR_TOKEN
|
|
155
|
-
|
|
44
|
+
|
|
156
45
|
または
|
|
157
|
-
|
|
46
|
+
|
|
158
47
|
KICKFLOW_ACCESS_TOKEN=YOUR_TOKEN npx kickflow-mcp-server
|
|
159
48
|
`);
|
|
160
49
|
process.exit(1);
|
|
@@ -162,130 +51,7 @@ if (!ACCESS_TOKEN) {
|
|
|
162
51
|
// アクセストークンを設定
|
|
163
52
|
setKickflowAccessToken(ACCESS_TOKEN);
|
|
164
53
|
// Create server instance
|
|
165
|
-
const server =
|
|
166
|
-
name: 'kickflow',
|
|
167
|
-
version: pkg.version,
|
|
168
|
-
}, {
|
|
169
|
-
capabilities: {
|
|
170
|
-
resources: {},
|
|
171
|
-
tools: {},
|
|
172
|
-
},
|
|
173
|
-
});
|
|
174
|
-
// Register all tools dynamically
|
|
175
|
-
const tools = [
|
|
176
|
-
// Audit Log tools
|
|
177
|
-
listAuditLogsTool,
|
|
178
|
-
// Category tools
|
|
179
|
-
createCategoryTool,
|
|
180
|
-
updateCategoryTool,
|
|
181
|
-
listCategoriesTool,
|
|
182
|
-
deleteCategoryTool,
|
|
183
|
-
// Folder tools
|
|
184
|
-
listFoldersTool,
|
|
185
|
-
createFolderTool,
|
|
186
|
-
updateFolderTool,
|
|
187
|
-
getFolderTool,
|
|
188
|
-
deleteFolderTool,
|
|
189
|
-
// User tools
|
|
190
|
-
getCurrentUserTool,
|
|
191
|
-
listUsersTool,
|
|
192
|
-
createUserTool,
|
|
193
|
-
getUserTool,
|
|
194
|
-
deleteUserTool,
|
|
195
|
-
updateUserTool,
|
|
196
|
-
lookupUserByEmailTool,
|
|
197
|
-
reinviteUserTool,
|
|
198
|
-
suspendUserTool,
|
|
199
|
-
reactivateUserTool,
|
|
200
|
-
listUserTeamsTool,
|
|
201
|
-
listUserRolesTool,
|
|
202
|
-
// Grade tools
|
|
203
|
-
listGradesTool,
|
|
204
|
-
createGradeTool,
|
|
205
|
-
getGradeTool,
|
|
206
|
-
updateGradeTool,
|
|
207
|
-
deleteGradeTool,
|
|
208
|
-
setDefaultGradeTool,
|
|
209
|
-
// Proxy Applicant tools
|
|
210
|
-
listProxyApplicantsTool,
|
|
211
|
-
createProxyApplicantTool,
|
|
212
|
-
deleteProxyApplicantTool,
|
|
213
|
-
// Proxy Approver tools
|
|
214
|
-
listProxyApproversTool,
|
|
215
|
-
createProxyApproverTool,
|
|
216
|
-
deleteProxyApproverTool,
|
|
217
|
-
// Organization Chart tools
|
|
218
|
-
listOrganizationChartsTool,
|
|
219
|
-
createOrganizationChartTool,
|
|
220
|
-
getOrganizationChartTool,
|
|
221
|
-
updateOrganizationChartTool,
|
|
222
|
-
deleteOrganizationChartTool,
|
|
223
|
-
getCurrentOrganizationChartTool,
|
|
224
|
-
activateOrganizationChartTool,
|
|
225
|
-
// Team tools
|
|
226
|
-
listTeamsTool,
|
|
227
|
-
createTeamTool,
|
|
228
|
-
getTeamTool,
|
|
229
|
-
updateTeamTool,
|
|
230
|
-
deleteTeamTool,
|
|
231
|
-
listTeamMembersTool,
|
|
232
|
-
createTeamMembersTool,
|
|
233
|
-
deleteTeamMembersTool,
|
|
234
|
-
updateTeamMemberTool,
|
|
235
|
-
// General Master tools
|
|
236
|
-
listGeneralMastersTool,
|
|
237
|
-
createGeneralMasterTool,
|
|
238
|
-
getGeneralMasterTool,
|
|
239
|
-
updateGeneralMasterTool,
|
|
240
|
-
deleteGeneralMasterTool,
|
|
241
|
-
listGeneralMasterItemsTool,
|
|
242
|
-
createGeneralMasterItemTool,
|
|
243
|
-
getGeneralMasterItemTool,
|
|
244
|
-
updateGeneralMasterItemTool,
|
|
245
|
-
deleteGeneralMasterItemTool,
|
|
246
|
-
// Route tools
|
|
247
|
-
listRoutesTool,
|
|
248
|
-
getRouteTool,
|
|
249
|
-
// Workflow tools
|
|
250
|
-
listWorkflowsTool,
|
|
251
|
-
getWorkflowTool,
|
|
252
|
-
// Role tools
|
|
253
|
-
listRolesTool,
|
|
254
|
-
createRoleTool,
|
|
255
|
-
getRoleTool,
|
|
256
|
-
updateRoleTool,
|
|
257
|
-
deleteRoleTool,
|
|
258
|
-
createRoleMembersTool,
|
|
259
|
-
listRoleMembersTool,
|
|
260
|
-
deleteRoleMemberTool,
|
|
261
|
-
// Ticket tools
|
|
262
|
-
listTicketsTool,
|
|
263
|
-
createTicketTool,
|
|
264
|
-
listTasksTool,
|
|
265
|
-
getTicketTool,
|
|
266
|
-
updateTicketTool,
|
|
267
|
-
approveTicketTool,
|
|
268
|
-
rejectTicketTool,
|
|
269
|
-
denyTicketTool,
|
|
270
|
-
withdrawTicketTool,
|
|
271
|
-
archiveTicketTool,
|
|
272
|
-
listTicketLinksTool,
|
|
273
|
-
listViewersTool,
|
|
274
|
-
createViewerTool,
|
|
275
|
-
deleteViewerTool,
|
|
276
|
-
// Comment tools
|
|
277
|
-
listCommentsTool,
|
|
278
|
-
createCommentTool,
|
|
279
|
-
getCommentTool,
|
|
280
|
-
updateCommentTool,
|
|
281
|
-
deleteCommentTool,
|
|
282
|
-
// File tools
|
|
283
|
-
uploadFileTool,
|
|
284
|
-
getFileTool,
|
|
285
|
-
];
|
|
286
|
-
tools.forEach((tool) => {
|
|
287
|
-
server.tool(tool.name, tool.description, tool.paramsSchema, tool.cb);
|
|
288
|
-
});
|
|
54
|
+
const server = createServer();
|
|
289
55
|
async function main() {
|
|
290
56
|
const transport = new StdioServerTransport();
|
|
291
57
|
await server.connect(transport);
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AACA,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AACA,OAAO,EAAE,oBAAoB,EAAE,MAAM,2CAA2C,CAAA;AAChF,OAAO,EAAE,sBAAsB,EAAE,MAAM,yCAAyC,CAAA;AAChF,OAAO,EAAE,YAAY,EAAE,MAAM,aAAa,CAAA;AAE1C,qBAAqB;AACrB,SAAS,cAAc;IACrB,MAAM,IAAI,GAAG,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAA;IAClC,MAAM,cAAc,GAAG,0BAA0B,CAAA;IAEjD,cAAc;IACd,IAAI,IAAI,CAAC,QAAQ,CAAC,QAAQ,CAAC,IAAI,IAAI,CAAC,QAAQ,CAAC,IAAI,CAAC,EAAE,CAAC;QACnD,OAAO,CAAC,GAAG,CAAC;;;;;;;;;;;CAWf,CAAC,CAAA;QACE,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;IACjB,CAAC;IAED,cAAc;IACd,MAAM,QAAQ,GAAG,IAAI,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,CAAC,UAAU,CAAC,cAAc,CAAC,CAAC,CAAA;IACnE,IAAI,QAAQ,EAAE,CAAC;QACb,OAAO,QAAQ,CAAC,SAAS,CAAC,cAAc,CAAC,MAAM,CAAC,CAAA;IAClD,CAAC;IAED,gBAAgB;IAChB,OAAO,OAAO,CAAC,GAAG,CAAC,qBAAqB,CAAA;AAC1C,CAAC;AAED,UAAU;AACV,MAAM,YAAY,GAAG,cAAc,EAAE,CAAA;AACrC,IAAI,CAAC,YAAY,EAAE,CAAC;IAClB,OAAO,CAAC,KAAK,CAAC;;;;;;;;;;;;CAYf,CAAC,CAAA;IACA,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;AACjB,CAAC;AAED,cAAc;AACd,sBAAsB,CAAC,YAAY,CAAC,CAAA;AAEpC,yBAAyB;AACzB,MAAM,MAAM,GAAG,YAAY,EAAE,CAAA;AAE7B,KAAK,UAAU,IAAI;IACjB,MAAM,SAAS,GAAG,IAAI,oBAAoB,EAAE,CAAA;IAC5C,MAAM,MAAM,CAAC,OAAO,CAAC,SAAS,CAAC,CAAA;IAC/B,OAAO,CAAC,KAAK,CAAC,sCAAsC,CAAC,CAAA;AACvD,CAAC;AAED,IAAI,EAAE,CAAC,KAAK,CAAC,CAAC,KAAK,EAAE,EAAE;IACrB,OAAO,CAAC,KAAK,CAAC,wBAAwB,EAAE,KAAK,CAAC,CAAA;IAC9C,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,CAAA;AACjB,CAAC,CAAC,CAAA"}
|
|
@@ -22,12 +22,12 @@ export declare const listAuditLogsQueryParams: zod.ZodObject<{
|
|
|
22
22
|
createdAtEnd: zod.ZodOptional<zod.ZodString>;
|
|
23
23
|
userId: zod.ZodOptional<zod.ZodString>;
|
|
24
24
|
}, zod.core.$strip>;
|
|
25
|
-
export declare const listAuditLogsResponseUserEmailMax =
|
|
26
|
-
export declare const listAuditLogsResponseUserCodeMax =
|
|
25
|
+
export declare const listAuditLogsResponseUserEmailMax = 254;
|
|
26
|
+
export declare const listAuditLogsResponseUserCodeMax = 100;
|
|
27
27
|
export declare const listAuditLogsResponseUserFirstNameMax = 255;
|
|
28
28
|
export declare const listAuditLogsResponseUserLastNameMax = 255;
|
|
29
29
|
export declare const listAuditLogsResponseUserFullNameMax = 255;
|
|
30
|
-
export declare const listAuditLogsResponseUserEmployeeIdMax =
|
|
30
|
+
export declare const listAuditLogsResponseUserEmployeeIdMax = 30;
|
|
31
31
|
export declare const listAuditLogsResponseItem: zod.ZodObject<{
|
|
32
32
|
id: zod.ZodString;
|
|
33
33
|
user: zod.ZodUnion<[zod.ZodObject<{
|
|
@@ -22,12 +22,12 @@ export const listAuditLogsQueryParams = zod.object({
|
|
|
22
22
|
"createdAtEnd": zod.string().optional().describe('作成日時の終点'),
|
|
23
23
|
"userId": zod.string().uuid().optional().describe('ユーザーID')
|
|
24
24
|
});
|
|
25
|
-
export const listAuditLogsResponseUserEmailMax =
|
|
26
|
-
export const listAuditLogsResponseUserCodeMax =
|
|
25
|
+
export const listAuditLogsResponseUserEmailMax = 254;
|
|
26
|
+
export const listAuditLogsResponseUserCodeMax = 100;
|
|
27
27
|
export const listAuditLogsResponseUserFirstNameMax = 255;
|
|
28
28
|
export const listAuditLogsResponseUserLastNameMax = 255;
|
|
29
29
|
export const listAuditLogsResponseUserFullNameMax = 255;
|
|
30
|
-
export const listAuditLogsResponseUserEmployeeIdMax =
|
|
30
|
+
export const listAuditLogsResponseUserEmployeeIdMax = 30;
|
|
31
31
|
export const listAuditLogsResponseItem = zod.object({
|
|
32
32
|
"id": zod.string().uuid().describe('UUID'),
|
|
33
33
|
"user": zod.object({
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"audit-log.zod.js","sourceRoot":"","sources":["../../../../src/kickflow-api/generated/audit-log/audit-log.zod.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AACH,OAAO,EACL,CAAC,IAAI,GAAG,EACT,MAAM,KAAK,CAAC;AAGb;;;GAGG;AACH,MAAM,CAAC,MAAM,6BAA6B,GAAG,CAAC,CAAC;AAAA,MAAM,CAAC,MAAM,gCAAgC,GAAG,EAAE,CAAC;AAClG,MAAM,CAAC,MAAM,4BAA4B,GAAG,GAAG,CAAC;AAChD,MAAM,CAAC,MAAM,8BAA8B,GAAG,IAAI,MAAM,CAAC,4BAA4B,CAAC,CAAC;AAGvF,MAAM,CAAC,MAAM,wBAAwB,GAAG,GAAG,CAAC,MAAM,CAAC;IACjD,MAAM,EAAE,GAAG,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,6BAA6B,CAAC,CAAC,QAAQ,CAAC,KAAK,CAAC;IAClF,SAAS,EAAE,GAAG,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,4BAA4B,CAAC,CAAC,OAAO,CAAC,gCAAgC,CAAC,CAAC,QAAQ,CAAC,YAAY,CAAC;IACjI,QAAQ,EAAE,GAAG,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,8BAA8B,CAAC,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,yCAAyC,CAAC;IAC3H,gBAAgB,EAAE,GAAG,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,SAAS,CAAC;IAC7D,cAAc,EAAE,GAAG,CAAC,MAAM,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,SAAS,CAAC;IAC3D,QAAQ,EAAE,GAAG,CAAC,MAAM,EAAE,CAAC,IAAI,EAAE,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,QAAQ,CAAC;CAC5D,CAAC,CAAA;AAEF,MAAM,CAAC,MAAM,iCAAiC,GAAG,GAAG,CAAC;AACrD,MAAM,CAAC,MAAM,gCAAgC,GAAG,GAAG,CAAC;AACpD,MAAM,CAAC,MAAM,qCAAqC,GAAG,GAAG,CAAC;AACzD,MAAM,CAAC,MAAM,oCAAoC,GAAG,GAAG,CAAC;AACxD,MAAM,CAAC,MAAM,oCAAoC,GAAG,GAAG,CAAC;AACxD,MAAM,CAAC,MAAM,sCAAsC,GAAG,
|
|
1
|
+
{"version":3,"file":"audit-log.zod.js","sourceRoot":"","sources":["../../../../src/kickflow-api/generated/audit-log/audit-log.zod.ts"],"names":[],"mappings":"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"}
|
|
@@ -19,18 +19,18 @@ export declare const listCommentsQueryParams: zod.ZodObject<{
|
|
|
19
19
|
perPage: zod.ZodDefault<zod.ZodNumber>;
|
|
20
20
|
sortBy: zod.ZodOptional<zod.ZodString>;
|
|
21
21
|
}, zod.core.$strip>;
|
|
22
|
-
export declare const listCommentsResponseUserEmailMax =
|
|
23
|
-
export declare const listCommentsResponseUserCodeMax =
|
|
22
|
+
export declare const listCommentsResponseUserEmailMax = 254;
|
|
23
|
+
export declare const listCommentsResponseUserCodeMax = 100;
|
|
24
24
|
export declare const listCommentsResponseUserFirstNameMax = 255;
|
|
25
25
|
export declare const listCommentsResponseUserLastNameMax = 255;
|
|
26
26
|
export declare const listCommentsResponseUserFullNameMax = 255;
|
|
27
|
-
export declare const listCommentsResponseUserEmployeeIdMax =
|
|
28
|
-
export declare const listCommentsResponseMentionedUsersItemEmailMax =
|
|
29
|
-
export declare const listCommentsResponseMentionedUsersItemCodeMax =
|
|
27
|
+
export declare const listCommentsResponseUserEmployeeIdMax = 30;
|
|
28
|
+
export declare const listCommentsResponseMentionedUsersItemEmailMax = 254;
|
|
29
|
+
export declare const listCommentsResponseMentionedUsersItemCodeMax = 100;
|
|
30
30
|
export declare const listCommentsResponseMentionedUsersItemFirstNameMax = 255;
|
|
31
31
|
export declare const listCommentsResponseMentionedUsersItemLastNameMax = 255;
|
|
32
32
|
export declare const listCommentsResponseMentionedUsersItemFullNameMax = 255;
|
|
33
|
-
export declare const listCommentsResponseMentionedUsersItemEmployeeIdMax =
|
|
33
|
+
export declare const listCommentsResponseMentionedUsersItemEmployeeIdMax = 30;
|
|
34
34
|
export declare const listCommentsResponseItem: zod.ZodObject<{
|
|
35
35
|
id: zod.ZodString;
|
|
36
36
|
body: zod.ZodString;
|
|
@@ -159,18 +159,18 @@ export declare const createCommentBody: zod.ZodObject<{
|
|
|
159
159
|
body: zod.ZodString;
|
|
160
160
|
files: zod.ZodOptional<zod.ZodNullable<zod.ZodArray<zod.ZodString>>>;
|
|
161
161
|
}, zod.core.$strip>;
|
|
162
|
-
export declare const createCommentResponseUserEmailMax =
|
|
163
|
-
export declare const createCommentResponseUserCodeMax =
|
|
162
|
+
export declare const createCommentResponseUserEmailMax = 254;
|
|
163
|
+
export declare const createCommentResponseUserCodeMax = 100;
|
|
164
164
|
export declare const createCommentResponseUserFirstNameMax = 255;
|
|
165
165
|
export declare const createCommentResponseUserLastNameMax = 255;
|
|
166
166
|
export declare const createCommentResponseUserFullNameMax = 255;
|
|
167
|
-
export declare const createCommentResponseUserEmployeeIdMax =
|
|
168
|
-
export declare const createCommentResponseMentionedUsersItemEmailMax =
|
|
169
|
-
export declare const createCommentResponseMentionedUsersItemCodeMax =
|
|
167
|
+
export declare const createCommentResponseUserEmployeeIdMax = 30;
|
|
168
|
+
export declare const createCommentResponseMentionedUsersItemEmailMax = 254;
|
|
169
|
+
export declare const createCommentResponseMentionedUsersItemCodeMax = 100;
|
|
170
170
|
export declare const createCommentResponseMentionedUsersItemFirstNameMax = 255;
|
|
171
171
|
export declare const createCommentResponseMentionedUsersItemLastNameMax = 255;
|
|
172
172
|
export declare const createCommentResponseMentionedUsersItemFullNameMax = 255;
|
|
173
|
-
export declare const createCommentResponseMentionedUsersItemEmployeeIdMax =
|
|
173
|
+
export declare const createCommentResponseMentionedUsersItemEmployeeIdMax = 30;
|
|
174
174
|
export declare const createCommentResponse: zod.ZodObject<{
|
|
175
175
|
id: zod.ZodString;
|
|
176
176
|
body: zod.ZodString;
|
|
@@ -235,18 +235,18 @@ export declare const createCommentResponse: zod.ZodObject<{
|
|
|
235
235
|
* チケットのコメントを取得します。
|
|
236
236
|
* @summary コメントを取得
|
|
237
237
|
*/
|
|
238
|
-
export declare const getCommentResponseUserEmailMax =
|
|
239
|
-
export declare const getCommentResponseUserCodeMax =
|
|
238
|
+
export declare const getCommentResponseUserEmailMax = 254;
|
|
239
|
+
export declare const getCommentResponseUserCodeMax = 100;
|
|
240
240
|
export declare const getCommentResponseUserFirstNameMax = 255;
|
|
241
241
|
export declare const getCommentResponseUserLastNameMax = 255;
|
|
242
242
|
export declare const getCommentResponseUserFullNameMax = 255;
|
|
243
|
-
export declare const getCommentResponseUserEmployeeIdMax =
|
|
244
|
-
export declare const getCommentResponseMentionedUsersItemEmailMax =
|
|
245
|
-
export declare const getCommentResponseMentionedUsersItemCodeMax =
|
|
243
|
+
export declare const getCommentResponseUserEmployeeIdMax = 30;
|
|
244
|
+
export declare const getCommentResponseMentionedUsersItemEmailMax = 254;
|
|
245
|
+
export declare const getCommentResponseMentionedUsersItemCodeMax = 100;
|
|
246
246
|
export declare const getCommentResponseMentionedUsersItemFirstNameMax = 255;
|
|
247
247
|
export declare const getCommentResponseMentionedUsersItemLastNameMax = 255;
|
|
248
248
|
export declare const getCommentResponseMentionedUsersItemFullNameMax = 255;
|
|
249
|
-
export declare const getCommentResponseMentionedUsersItemEmployeeIdMax =
|
|
249
|
+
export declare const getCommentResponseMentionedUsersItemEmployeeIdMax = 30;
|
|
250
250
|
export declare const getCommentResponse: zod.ZodObject<{
|
|
251
251
|
id: zod.ZodString;
|
|
252
252
|
body: zod.ZodString;
|
|
@@ -314,18 +314,18 @@ export declare const getCommentResponse: zod.ZodObject<{
|
|
|
314
314
|
export declare const updateCommentBody: zod.ZodObject<{
|
|
315
315
|
body: zod.ZodString;
|
|
316
316
|
}, zod.core.$strip>;
|
|
317
|
-
export declare const updateCommentResponseUserEmailMax =
|
|
318
|
-
export declare const updateCommentResponseUserCodeMax =
|
|
317
|
+
export declare const updateCommentResponseUserEmailMax = 254;
|
|
318
|
+
export declare const updateCommentResponseUserCodeMax = 100;
|
|
319
319
|
export declare const updateCommentResponseUserFirstNameMax = 255;
|
|
320
320
|
export declare const updateCommentResponseUserLastNameMax = 255;
|
|
321
321
|
export declare const updateCommentResponseUserFullNameMax = 255;
|
|
322
|
-
export declare const updateCommentResponseUserEmployeeIdMax =
|
|
323
|
-
export declare const updateCommentResponseMentionedUsersItemEmailMax =
|
|
324
|
-
export declare const updateCommentResponseMentionedUsersItemCodeMax =
|
|
322
|
+
export declare const updateCommentResponseUserEmployeeIdMax = 30;
|
|
323
|
+
export declare const updateCommentResponseMentionedUsersItemEmailMax = 254;
|
|
324
|
+
export declare const updateCommentResponseMentionedUsersItemCodeMax = 100;
|
|
325
325
|
export declare const updateCommentResponseMentionedUsersItemFirstNameMax = 255;
|
|
326
326
|
export declare const updateCommentResponseMentionedUsersItemLastNameMax = 255;
|
|
327
327
|
export declare const updateCommentResponseMentionedUsersItemFullNameMax = 255;
|
|
328
|
-
export declare const updateCommentResponseMentionedUsersItemEmployeeIdMax =
|
|
328
|
+
export declare const updateCommentResponseMentionedUsersItemEmployeeIdMax = 30;
|
|
329
329
|
export declare const updateCommentResponse: zod.ZodObject<{
|
|
330
330
|
id: zod.ZodString;
|
|
331
331
|
body: zod.ZodString;
|
|
@@ -19,18 +19,18 @@ export const listCommentsQueryParams = zod.object({
|
|
|
19
19
|
"perPage": zod.number().min(1).max(listCommentsQueryPerPageMax).default(listCommentsQueryPerPageDefault).describe('1ページあたりの件数'),
|
|
20
20
|
"sortBy": zod.string().regex(listCommentsQuerySortByRegExp).optional().describe('ソート対象のフィールドと順序。指定可能なフィールド: createdAt')
|
|
21
21
|
});
|
|
22
|
-
export const listCommentsResponseUserEmailMax =
|
|
23
|
-
export const listCommentsResponseUserCodeMax =
|
|
22
|
+
export const listCommentsResponseUserEmailMax = 254;
|
|
23
|
+
export const listCommentsResponseUserCodeMax = 100;
|
|
24
24
|
export const listCommentsResponseUserFirstNameMax = 255;
|
|
25
25
|
export const listCommentsResponseUserLastNameMax = 255;
|
|
26
26
|
export const listCommentsResponseUserFullNameMax = 255;
|
|
27
|
-
export const listCommentsResponseUserEmployeeIdMax =
|
|
28
|
-
export const listCommentsResponseMentionedUsersItemEmailMax =
|
|
29
|
-
export const listCommentsResponseMentionedUsersItemCodeMax =
|
|
27
|
+
export const listCommentsResponseUserEmployeeIdMax = 30;
|
|
28
|
+
export const listCommentsResponseMentionedUsersItemEmailMax = 254;
|
|
29
|
+
export const listCommentsResponseMentionedUsersItemCodeMax = 100;
|
|
30
30
|
export const listCommentsResponseMentionedUsersItemFirstNameMax = 255;
|
|
31
31
|
export const listCommentsResponseMentionedUsersItemLastNameMax = 255;
|
|
32
32
|
export const listCommentsResponseMentionedUsersItemFullNameMax = 255;
|
|
33
|
-
export const listCommentsResponseMentionedUsersItemEmployeeIdMax =
|
|
33
|
+
export const listCommentsResponseMentionedUsersItemEmployeeIdMax = 30;
|
|
34
34
|
export const listCommentsResponseItem = zod.object({
|
|
35
35
|
"id": zod.string().uuid().describe('UUID'),
|
|
36
36
|
"body": zod.string().describe('本文'),
|
|
@@ -90,18 +90,18 @@ export const createCommentBody = zod.object({
|
|
|
90
90
|
"body": zod.string().describe('本文'),
|
|
91
91
|
"files": zod.array(zod.string()).nullish().describe('添付ファイルの署名済みID')
|
|
92
92
|
});
|
|
93
|
-
export const createCommentResponseUserEmailMax =
|
|
94
|
-
export const createCommentResponseUserCodeMax =
|
|
93
|
+
export const createCommentResponseUserEmailMax = 254;
|
|
94
|
+
export const createCommentResponseUserCodeMax = 100;
|
|
95
95
|
export const createCommentResponseUserFirstNameMax = 255;
|
|
96
96
|
export const createCommentResponseUserLastNameMax = 255;
|
|
97
97
|
export const createCommentResponseUserFullNameMax = 255;
|
|
98
|
-
export const createCommentResponseUserEmployeeIdMax =
|
|
99
|
-
export const createCommentResponseMentionedUsersItemEmailMax =
|
|
100
|
-
export const createCommentResponseMentionedUsersItemCodeMax =
|
|
98
|
+
export const createCommentResponseUserEmployeeIdMax = 30;
|
|
99
|
+
export const createCommentResponseMentionedUsersItemEmailMax = 254;
|
|
100
|
+
export const createCommentResponseMentionedUsersItemCodeMax = 100;
|
|
101
101
|
export const createCommentResponseMentionedUsersItemFirstNameMax = 255;
|
|
102
102
|
export const createCommentResponseMentionedUsersItemLastNameMax = 255;
|
|
103
103
|
export const createCommentResponseMentionedUsersItemFullNameMax = 255;
|
|
104
|
-
export const createCommentResponseMentionedUsersItemEmployeeIdMax =
|
|
104
|
+
export const createCommentResponseMentionedUsersItemEmployeeIdMax = 30;
|
|
105
105
|
export const createCommentResponse = zod.object({
|
|
106
106
|
"id": zod.string().uuid().describe('UUID'),
|
|
107
107
|
"body": zod.string().describe('本文'),
|
|
@@ -156,18 +156,18 @@ export const createCommentResponse = zod.object({
|
|
|
156
156
|
* チケットのコメントを取得します。
|
|
157
157
|
* @summary コメントを取得
|
|
158
158
|
*/
|
|
159
|
-
export const getCommentResponseUserEmailMax =
|
|
160
|
-
export const getCommentResponseUserCodeMax =
|
|
159
|
+
export const getCommentResponseUserEmailMax = 254;
|
|
160
|
+
export const getCommentResponseUserCodeMax = 100;
|
|
161
161
|
export const getCommentResponseUserFirstNameMax = 255;
|
|
162
162
|
export const getCommentResponseUserLastNameMax = 255;
|
|
163
163
|
export const getCommentResponseUserFullNameMax = 255;
|
|
164
|
-
export const getCommentResponseUserEmployeeIdMax =
|
|
165
|
-
export const getCommentResponseMentionedUsersItemEmailMax =
|
|
166
|
-
export const getCommentResponseMentionedUsersItemCodeMax =
|
|
164
|
+
export const getCommentResponseUserEmployeeIdMax = 30;
|
|
165
|
+
export const getCommentResponseMentionedUsersItemEmailMax = 254;
|
|
166
|
+
export const getCommentResponseMentionedUsersItemCodeMax = 100;
|
|
167
167
|
export const getCommentResponseMentionedUsersItemFirstNameMax = 255;
|
|
168
168
|
export const getCommentResponseMentionedUsersItemLastNameMax = 255;
|
|
169
169
|
export const getCommentResponseMentionedUsersItemFullNameMax = 255;
|
|
170
|
-
export const getCommentResponseMentionedUsersItemEmployeeIdMax =
|
|
170
|
+
export const getCommentResponseMentionedUsersItemEmployeeIdMax = 30;
|
|
171
171
|
export const getCommentResponse = zod.object({
|
|
172
172
|
"id": zod.string().uuid().describe('UUID'),
|
|
173
173
|
"body": zod.string().describe('本文'),
|
|
@@ -225,18 +225,18 @@ export const getCommentResponse = zod.object({
|
|
|
225
225
|
export const updateCommentBody = zod.object({
|
|
226
226
|
"body": zod.string().describe('本文')
|
|
227
227
|
});
|
|
228
|
-
export const updateCommentResponseUserEmailMax =
|
|
229
|
-
export const updateCommentResponseUserCodeMax =
|
|
228
|
+
export const updateCommentResponseUserEmailMax = 254;
|
|
229
|
+
export const updateCommentResponseUserCodeMax = 100;
|
|
230
230
|
export const updateCommentResponseUserFirstNameMax = 255;
|
|
231
231
|
export const updateCommentResponseUserLastNameMax = 255;
|
|
232
232
|
export const updateCommentResponseUserFullNameMax = 255;
|
|
233
|
-
export const updateCommentResponseUserEmployeeIdMax =
|
|
234
|
-
export const updateCommentResponseMentionedUsersItemEmailMax =
|
|
235
|
-
export const updateCommentResponseMentionedUsersItemCodeMax =
|
|
233
|
+
export const updateCommentResponseUserEmployeeIdMax = 30;
|
|
234
|
+
export const updateCommentResponseMentionedUsersItemEmailMax = 254;
|
|
235
|
+
export const updateCommentResponseMentionedUsersItemCodeMax = 100;
|
|
236
236
|
export const updateCommentResponseMentionedUsersItemFirstNameMax = 255;
|
|
237
237
|
export const updateCommentResponseMentionedUsersItemLastNameMax = 255;
|
|
238
238
|
export const updateCommentResponseMentionedUsersItemFullNameMax = 255;
|
|
239
|
-
export const updateCommentResponseMentionedUsersItemEmployeeIdMax =
|
|
239
|
+
export const updateCommentResponseMentionedUsersItemEmployeeIdMax = 30;
|
|
240
240
|
export const updateCommentResponse = zod.object({
|
|
241
241
|
"id": zod.string().uuid().describe('UUID'),
|
|
242
242
|
"body": zod.string().describe('本文'),
|