Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions packages/messages/__tests__/__dataSets__/rcs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,9 @@ export default [
text: 'too many secrets',
suggestions: [
new RCSCreateCalendarEventSuggestion({
startDate: '2015-10-15T10:00:00Z',
endDate: '2015-10-15T11:00:00Z',
type: 'create_calendar_event',
startTime: '2015-10-21T10:00:00Z',
endTime: '2015-10-21T11:00:00Z',
title: 'Sports Alamac',
text: 'We gotta save your kids',
postbackData: 'QmlmZidzIGhpbGwgdmFsbGV5IGNhc2lubw'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@ export type RCSCreateCalendarEventSuggestionParams = RCSSuggestionParams & {
/**
* The start time of the calendar event in ISO 8601 format.
*/
startDate: string
startTime: string

/**
* The end time of the calendar event in ISO 8601 format.
*/
endDate: string
endTime: string

/**
* The title of the calendar event
Expand Down
Loading