@smartytalent/mcp-tools 0.1.33-dev.31 → 0.1.33-dev.32
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/tools.json +94 -2
- package/package.json +1 -1
package/dist/tools.json
CHANGED
|
@@ -255,6 +255,24 @@
|
|
|
255
255
|
}
|
|
256
256
|
}
|
|
257
257
|
},
|
|
258
|
+
"boeCalendar": {
|
|
259
|
+
"title": "TenantRelationshipsBoeCalendarSchema",
|
|
260
|
+
"type": "object",
|
|
261
|
+
"description": "Boe's primary calendar. Denormalized here so workflow seeds and FE can resolve it in one tenant fetch instead of a list_calendars round trip. Mirror of boeUser semantics: written by tenant onboarding / workflow seeding, not client-writable via tenant PATCH. May be null on tenants provisioned before boe calendars existed - fall back to GET /v1/calendars?filterOwnerId=boeUserId.",
|
|
262
|
+
"properties": {
|
|
263
|
+
"data": {
|
|
264
|
+
"type": "object",
|
|
265
|
+
"properties": {
|
|
266
|
+
"type": {
|
|
267
|
+
"type": "string"
|
|
268
|
+
},
|
|
269
|
+
"id": {
|
|
270
|
+
"type": "string"
|
|
271
|
+
}
|
|
272
|
+
}
|
|
273
|
+
}
|
|
274
|
+
}
|
|
275
|
+
},
|
|
258
276
|
"feedbacks": {
|
|
259
277
|
"title": "TenantRelationshipsFeedbacksSchema",
|
|
260
278
|
"type": "object",
|
|
@@ -546,6 +564,24 @@
|
|
|
546
564
|
}
|
|
547
565
|
}
|
|
548
566
|
},
|
|
567
|
+
"boeCalendar": {
|
|
568
|
+
"title": "TenantRelationshipsBoeCalendarSchema",
|
|
569
|
+
"type": "object",
|
|
570
|
+
"description": "Boe's primary calendar. Denormalized here so workflow seeds and FE can resolve it in one tenant fetch instead of a list_calendars round trip. Mirror of boeUser semantics: written by tenant onboarding / workflow seeding, not client-writable via tenant PATCH. May be null on tenants provisioned before boe calendars existed - fall back to GET /v1/calendars?filterOwnerId=boeUserId.",
|
|
571
|
+
"properties": {
|
|
572
|
+
"data": {
|
|
573
|
+
"type": "object",
|
|
574
|
+
"properties": {
|
|
575
|
+
"type": {
|
|
576
|
+
"type": "string"
|
|
577
|
+
},
|
|
578
|
+
"id": {
|
|
579
|
+
"type": "string"
|
|
580
|
+
}
|
|
581
|
+
}
|
|
582
|
+
}
|
|
583
|
+
}
|
|
584
|
+
},
|
|
549
585
|
"feedbacks": {
|
|
550
586
|
"title": "TenantRelationshipsFeedbacksSchema",
|
|
551
587
|
"type": "object",
|
|
@@ -18134,7 +18170,35 @@
|
|
|
18134
18170
|
"type": "integer"
|
|
18135
18171
|
},
|
|
18136
18172
|
"workingHours": {
|
|
18137
|
-
"
|
|
18173
|
+
"title": "CalendarWorkingHoursSchema",
|
|
18174
|
+
"type": "object",
|
|
18175
|
+
"description": "Recurring weekly schedule. days[] uses tokens (mon/tue/wed/thu/fri/sat/sun); startHour/endHour are local 24h numbers. Single type used by Calendar read/create/update so PATCH callers get the same autocomplete as readers.",
|
|
18176
|
+
"properties": {
|
|
18177
|
+
"timezone": {
|
|
18178
|
+
"type": "string"
|
|
18179
|
+
},
|
|
18180
|
+
"days": {
|
|
18181
|
+
"type": "array",
|
|
18182
|
+
"items": {
|
|
18183
|
+
"type": "string",
|
|
18184
|
+
"enum": [
|
|
18185
|
+
"mon",
|
|
18186
|
+
"tue",
|
|
18187
|
+
"wed",
|
|
18188
|
+
"thu",
|
|
18189
|
+
"fri",
|
|
18190
|
+
"sat",
|
|
18191
|
+
"sun"
|
|
18192
|
+
]
|
|
18193
|
+
}
|
|
18194
|
+
},
|
|
18195
|
+
"startHour": {
|
|
18196
|
+
"type": "integer"
|
|
18197
|
+
},
|
|
18198
|
+
"endHour": {
|
|
18199
|
+
"type": "integer"
|
|
18200
|
+
}
|
|
18201
|
+
}
|
|
18138
18202
|
}
|
|
18139
18203
|
}
|
|
18140
18204
|
}
|
|
@@ -18206,7 +18270,35 @@
|
|
|
18206
18270
|
"type": "integer"
|
|
18207
18271
|
},
|
|
18208
18272
|
"workingHours": {
|
|
18209
|
-
"
|
|
18273
|
+
"title": "CalendarWorkingHoursSchema",
|
|
18274
|
+
"type": "object",
|
|
18275
|
+
"description": "Recurring weekly schedule. days[] uses tokens (mon/tue/wed/thu/fri/sat/sun); startHour/endHour are local 24h numbers. Single type used by Calendar read/create/update so PATCH callers get the same autocomplete as readers.",
|
|
18276
|
+
"properties": {
|
|
18277
|
+
"timezone": {
|
|
18278
|
+
"type": "string"
|
|
18279
|
+
},
|
|
18280
|
+
"days": {
|
|
18281
|
+
"type": "array",
|
|
18282
|
+
"items": {
|
|
18283
|
+
"type": "string",
|
|
18284
|
+
"enum": [
|
|
18285
|
+
"mon",
|
|
18286
|
+
"tue",
|
|
18287
|
+
"wed",
|
|
18288
|
+
"thu",
|
|
18289
|
+
"fri",
|
|
18290
|
+
"sat",
|
|
18291
|
+
"sun"
|
|
18292
|
+
]
|
|
18293
|
+
}
|
|
18294
|
+
},
|
|
18295
|
+
"startHour": {
|
|
18296
|
+
"type": "integer"
|
|
18297
|
+
},
|
|
18298
|
+
"endHour": {
|
|
18299
|
+
"type": "integer"
|
|
18300
|
+
}
|
|
18301
|
+
}
|
|
18210
18302
|
}
|
|
18211
18303
|
}
|
|
18212
18304
|
}
|