@sprucelabs/spruce-calendar-components 24.3.0 → 24.3.1
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/build/.spruce/schemas/schemas.types.d.ts +718 -712
- package/build/__tests__/support/utilities/calendarSkillAssert.js +1 -1
- package/build/esm/.spruce/schemas/schemas.types.d.ts +718 -712
- package/build/esm/__tests__/support/utilities/calendarSkillAssert.js +1 -1
- package/build/esm/toolBelt/CalendarToolRegistrar.js +5 -1
- package/build/toolBelt/CalendarToolRegistrar.js +5 -1
- package/package.json +1 -1
|
@@ -243,7 +243,7 @@ Try adding the following to your state's load():
|
|
|
243
243
|
const tools = new CalendarToolRegistrar(stateMachine)
|
|
244
244
|
await tools.fetchAndAddCards()
|
|
245
245
|
`);
|
|
246
|
-
test_utils_1.assert.
|
|
246
|
+
test_utils_1.assert.doesInclude(passedTargetAndPayload.target, { organizationId: org.id, calendarEventId: event.id }, `Your target is not what is expected! Make sure you are sending organizationId and calendarEventId`);
|
|
247
247
|
test_utils_1.assert.isEqualDeep(passedTargetAndPayload.payload, {
|
|
248
248
|
eventTypeSlug: event.eventTypeSlug,
|
|
249
249
|
}, `Your payload does not what is expected! Make sure you pass through eventTypeSlug.`);
|