mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-09 22:24:05 -08:00
fix: Google Contacts node warm up request, Google Calendar node events>getAll fields option (#10700)
This commit is contained in:
parent
4b2b5235db
commit
22c70d5069
|
@ -656,6 +656,15 @@ export const eventFields: INodeProperties[] = [
|
||||||
default: '',
|
default: '',
|
||||||
description: 'At least some part of the event must be before this time',
|
description: 'At least some part of the event must be before this time',
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
displayName: 'Fields',
|
||||||
|
name: 'fields',
|
||||||
|
type: 'string',
|
||||||
|
placeholder: 'e.g. items(ID,status,summary)',
|
||||||
|
default: '',
|
||||||
|
description:
|
||||||
|
"Specify fields to return, by default a predefined by Google set of commonly used fields would be returned. To return all fields, use '*', <a href='https://developers.google.com/calendar/api/guides/performance#partial' target='_blank'>more info</a>.",
|
||||||
|
},
|
||||||
{
|
{
|
||||||
displayName: 'iCalUID',
|
displayName: 'iCalUID',
|
||||||
name: 'iCalUID',
|
name: 'iCalUID',
|
||||||
|
|
|
@ -436,6 +436,10 @@ export class GoogleCalendar implements INodeType {
|
||||||
if (options.updatedMin) {
|
if (options.updatedMin) {
|
||||||
qs.updatedMin = addTimezoneToDate(options.updatedMin as string, tz || timezone);
|
qs.updatedMin = addTimezoneToDate(options.updatedMin as string, tz || timezone);
|
||||||
}
|
}
|
||||||
|
if (options.fields) {
|
||||||
|
qs.fields = options.fields as string;
|
||||||
|
}
|
||||||
|
|
||||||
if (returnAll) {
|
if (returnAll) {
|
||||||
responseData = await googleApiRequestAllItems.call(
|
responseData = await googleApiRequestAllItems.call(
|
||||||
this,
|
this,
|
||||||
|
|
|
@ -92,6 +92,19 @@ export class GoogleContacts implements INodeType {
|
||||||
let responseData;
|
let responseData;
|
||||||
const resource = this.getNodeParameter('resource', 0);
|
const resource = this.getNodeParameter('resource', 0);
|
||||||
const operation = this.getNodeParameter('operation', 0);
|
const operation = this.getNodeParameter('operation', 0);
|
||||||
|
|
||||||
|
// Warmup cache
|
||||||
|
// https://developers.google.com/people/v1/contacts#protocol_1
|
||||||
|
if (resource === 'contact' && operation === 'getAll') {
|
||||||
|
await googleApiRequest.call(this, 'GET', '/people:searchContacts', undefined, {
|
||||||
|
query: '',
|
||||||
|
readMask: 'names',
|
||||||
|
});
|
||||||
|
await googleApiRequest.call(this, 'GET', '/people/me/connections', undefined, {
|
||||||
|
personFields: 'names',
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
for (let i = 0; i < length; i++) {
|
for (let i = 0; i < length; i++) {
|
||||||
try {
|
try {
|
||||||
if (resource === 'contact') {
|
if (resource === 'contact') {
|
||||||
|
|
Loading…
Reference in a new issue