fix(Google Calendar Node): Fix incorrect labels for start and end times when getting all events (#5529)

This commit is contained in:
Jonathan Bennetts 2023-02-23 08:34:41 +00:00 committed by GitHub
parent 3af3db160b
commit f965469e13
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -642,6 +642,20 @@ export const eventFields: INodeProperties[] = [
},
},
options: [
{
displayName: 'After',
name: 'timeMin',
type: 'dateTime',
default: '',
description: 'At least some part of the event must be after this time',
},
{
displayName: 'Before',
name: 'timeMax',
type: 'dateTime',
default: '',
description: 'At least some part of the event must be before this time',
},
{
displayName: 'iCalUID',
name: 'iCalUID',
@ -708,20 +722,6 @@ export const eventFields: INodeProperties[] = [
description:
'Whether to expand recurring events into instances and only return single one-off events and instances of recurring events, but not the underlying recurring events themselves',
},
{
displayName: 'Start Time',
name: 'timeMax',
type: 'dateTime',
default: '',
description: "Upper bound (exclusive) for an event's start time to filter by",
},
{
displayName: 'End Time',
name: 'timeMin',
type: 'dateTime',
default: '',
description: "Lower bound (exclusive) for an event's end time to filter by",
},
{
displayName: 'Timezone',
name: 'timeZone',