@n8n-dev/n8n-nodes-googleapis-people 1.0.0
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/README.md +134 -0
- package/dist/banner.svg +101 -0
- package/dist/credentials/GoogleapisPeopleApi.credentials.d.ts +9 -0
- package/dist/credentials/GoogleapisPeopleApi.credentials.js +49 -0
- package/dist/credentials/GoogleapisPeopleApi.credentials.js.map +1 -0
- package/dist/icons/googleapis-people.dark.png +0 -0
- package/dist/icons/googleapis-people.png +0 -0
- package/dist/nodes/GoogleapisPeople/GoogleapisPeople.node.d.ts +4 -0
- package/dist/nodes/GoogleapisPeople/GoogleapisPeople.node.js +68 -0
- package/dist/nodes/GoogleapisPeople/GoogleapisPeople.node.js.map +1 -0
- package/dist/nodes/GoogleapisPeople/GoogleapisPeople.node.json +20 -0
- package/dist/nodes/GoogleapisPeople/googleapis-people.dark.png +0 -0
- package/dist/nodes/GoogleapisPeople/googleapis-people.png +0 -0
- package/dist/nodes/GoogleapisPeople/resources/contact-groups/index.d.ts +2 -0
- package/dist/nodes/GoogleapisPeople/resources/contact-groups/index.js +637 -0
- package/dist/nodes/GoogleapisPeople/resources/contact-groups/index.js.map +1 -0
- package/dist/nodes/GoogleapisPeople/resources/index.d.ts +3 -0
- package/dist/nodes/GoogleapisPeople/resources/index.js +10 -0
- package/dist/nodes/GoogleapisPeople/resources/index.js.map +1 -0
- package/dist/nodes/GoogleapisPeople/resources/other-contacts/index.d.ts +2 -0
- package/dist/nodes/GoogleapisPeople/resources/other-contacts/index.js +433 -0
- package/dist/nodes/GoogleapisPeople/resources/other-contacts/index.js.map +1 -0
- package/dist/nodes/GoogleapisPeople/resources/people/index.d.ts +2 -0
- package/dist/nodes/GoogleapisPeople/resources/people/index.js +3768 -0
- package/dist/nodes/GoogleapisPeople/resources/people/index.js.map +1 -0
- package/dist/package.json +62 -0
- package/dist/tsconfig.tsbuildinfo +1 -0
- package/package.json +62 -0
|
@@ -0,0 +1,637 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.contactGroupsDescription = void 0;
|
|
4
|
+
exports.contactGroupsDescription = [
|
|
5
|
+
{
|
|
6
|
+
"displayName": "Operation",
|
|
7
|
+
"name": "operation",
|
|
8
|
+
"type": "options",
|
|
9
|
+
"noDataExpression": true,
|
|
10
|
+
"displayOptions": {
|
|
11
|
+
"show": {
|
|
12
|
+
"resource": [
|
|
13
|
+
"Contact Groups"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"options": [
|
|
18
|
+
{
|
|
19
|
+
"name": "People Contact Groups List",
|
|
20
|
+
"value": "People Contact Groups List",
|
|
21
|
+
"action": "People Contact Groups List",
|
|
22
|
+
"description": "List all contact groups owned by the authenticated user. Members of the contact groups are not populated.",
|
|
23
|
+
"routing": {
|
|
24
|
+
"request": {
|
|
25
|
+
"method": "GET",
|
|
26
|
+
"url": "=/v1/contactGroups"
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "People Contact Groups Create",
|
|
32
|
+
"value": "People Contact Groups Create",
|
|
33
|
+
"action": "People Contact Groups Create",
|
|
34
|
+
"description": "Create a new contact group owned by the authenticated user. Created contact group names must be unique to the users contact groups. Attempting to create a group with a duplicate name will return a HTTP 409 error. Mutate requests for the same user should be sent sequentially to avoid increased latency and failures.",
|
|
35
|
+
"routing": {
|
|
36
|
+
"request": {
|
|
37
|
+
"method": "POST",
|
|
38
|
+
"url": "=/v1/contactGroups"
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"name": "People Contact Groups Batch Get",
|
|
44
|
+
"value": "People Contact Groups Batch Get",
|
|
45
|
+
"action": "People Contact Groups Batch Get",
|
|
46
|
+
"description": "Get a list of contact groups owned by the authenticated user by specifying a list of contact group resource names.",
|
|
47
|
+
"routing": {
|
|
48
|
+
"request": {
|
|
49
|
+
"method": "GET",
|
|
50
|
+
"url": "=/v1/contactGroups:batchGet"
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"name": "People Contact Groups Delete",
|
|
56
|
+
"value": "People Contact Groups Delete",
|
|
57
|
+
"action": "People Contact Groups Delete",
|
|
58
|
+
"description": "Delete an existing contact group owned by the authenticated user by specifying a contact group resource name. Mutate requests for the same user should be sent sequentially to avoid increased latency and failures.",
|
|
59
|
+
"routing": {
|
|
60
|
+
"request": {
|
|
61
|
+
"method": "DELETE",
|
|
62
|
+
"url": "=/v1/{{$parameter[\"resourceName\"]}}"
|
|
63
|
+
}
|
|
64
|
+
}
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
"name": "People Contact Groups Update",
|
|
68
|
+
"value": "People Contact Groups Update",
|
|
69
|
+
"action": "People Contact Groups Update",
|
|
70
|
+
"description": "Update the name of an existing contact group owned by the authenticated user. Updated contact group names must be unique to the users contact groups. Attempting to create a group with a duplicate name will return a HTTP 409 error. Mutate requests for the same user should be sent sequentially to avoid increased latency and failures.",
|
|
71
|
+
"routing": {
|
|
72
|
+
"request": {
|
|
73
|
+
"method": "PUT",
|
|
74
|
+
"url": "=/v1/{{$parameter[\"resourceName\"]}}"
|
|
75
|
+
}
|
|
76
|
+
}
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
"name": "People Contact Groups Members Modify",
|
|
80
|
+
"value": "People Contact Groups Members Modify",
|
|
81
|
+
"action": "People Contact Groups Members Modify",
|
|
82
|
+
"description": "Modify the members of a contact group owned by the authenticated user. The only system contact groups that can have members added are `contactGroups/myContacts` and `contactGroups/starred`. Other system contact groups are deprecated and can only have contacts removed.",
|
|
83
|
+
"routing": {
|
|
84
|
+
"request": {
|
|
85
|
+
"method": "POST",
|
|
86
|
+
"url": "=/v1/{{$parameter[\"resourceName\"]}}/members:modify"
|
|
87
|
+
}
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
],
|
|
91
|
+
"default": ""
|
|
92
|
+
},
|
|
93
|
+
{
|
|
94
|
+
"displayName": "GET /v1/contactGroups",
|
|
95
|
+
"name": "operation",
|
|
96
|
+
"type": "notice",
|
|
97
|
+
"typeOptions": {
|
|
98
|
+
"theme": "info"
|
|
99
|
+
},
|
|
100
|
+
"default": "",
|
|
101
|
+
"displayOptions": {
|
|
102
|
+
"show": {
|
|
103
|
+
"resource": [
|
|
104
|
+
"Contact Groups"
|
|
105
|
+
],
|
|
106
|
+
"operation": [
|
|
107
|
+
"People Contact Groups List"
|
|
108
|
+
]
|
|
109
|
+
}
|
|
110
|
+
}
|
|
111
|
+
},
|
|
112
|
+
{
|
|
113
|
+
"displayName": "Group Fields",
|
|
114
|
+
"name": "groupFields",
|
|
115
|
+
"description": "Optional. A field mask to restrict which fields on the group are returned. Defaults to `metadata`, `groupType`, `memberCount`, and `name` if not set or set to empty. Valid fields are: * clientData * groupType * memberCount * metadata * name",
|
|
116
|
+
"default": "",
|
|
117
|
+
"type": "string",
|
|
118
|
+
"routing": {
|
|
119
|
+
"send": {
|
|
120
|
+
"type": "query",
|
|
121
|
+
"property": "groupFields",
|
|
122
|
+
"value": "={{ $value }}",
|
|
123
|
+
"propertyInDotNotation": false
|
|
124
|
+
}
|
|
125
|
+
},
|
|
126
|
+
"displayOptions": {
|
|
127
|
+
"show": {
|
|
128
|
+
"resource": [
|
|
129
|
+
"Contact Groups"
|
|
130
|
+
],
|
|
131
|
+
"operation": [
|
|
132
|
+
"People Contact Groups List"
|
|
133
|
+
]
|
|
134
|
+
}
|
|
135
|
+
}
|
|
136
|
+
},
|
|
137
|
+
{
|
|
138
|
+
"displayName": "Page Size",
|
|
139
|
+
"name": "pageSize",
|
|
140
|
+
"description": "Optional. The maximum number of resources to return. Valid values are between 1 and 1000, inclusive. Defaults to 30 if not set or set to 0.",
|
|
141
|
+
"default": 0,
|
|
142
|
+
"type": "number",
|
|
143
|
+
"routing": {
|
|
144
|
+
"send": {
|
|
145
|
+
"type": "query",
|
|
146
|
+
"property": "pageSize",
|
|
147
|
+
"value": "={{ $value }}",
|
|
148
|
+
"propertyInDotNotation": false
|
|
149
|
+
}
|
|
150
|
+
},
|
|
151
|
+
"displayOptions": {
|
|
152
|
+
"show": {
|
|
153
|
+
"resource": [
|
|
154
|
+
"Contact Groups"
|
|
155
|
+
],
|
|
156
|
+
"operation": [
|
|
157
|
+
"People Contact Groups List"
|
|
158
|
+
]
|
|
159
|
+
}
|
|
160
|
+
}
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
"displayName": "Page Token",
|
|
164
|
+
"name": "pageToken",
|
|
165
|
+
"description": "Optional. The next_page_token value returned from a previous call to [ListContactGroups](/people/api/rest/v1/contactgroups/list). Requests the next page of resources.",
|
|
166
|
+
"default": "",
|
|
167
|
+
"type": "string",
|
|
168
|
+
"routing": {
|
|
169
|
+
"send": {
|
|
170
|
+
"type": "query",
|
|
171
|
+
"property": "pageToken",
|
|
172
|
+
"value": "={{ $value }}",
|
|
173
|
+
"propertyInDotNotation": false
|
|
174
|
+
}
|
|
175
|
+
},
|
|
176
|
+
"displayOptions": {
|
|
177
|
+
"show": {
|
|
178
|
+
"resource": [
|
|
179
|
+
"Contact Groups"
|
|
180
|
+
],
|
|
181
|
+
"operation": [
|
|
182
|
+
"People Contact Groups List"
|
|
183
|
+
]
|
|
184
|
+
}
|
|
185
|
+
}
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"displayName": "Sync Token",
|
|
189
|
+
"name": "syncToken",
|
|
190
|
+
"description": "Optional. A sync token, returned by a previous call to `contactgroups.list`. Only resources changed since the sync token was created will be returned.",
|
|
191
|
+
"default": "",
|
|
192
|
+
"type": "string",
|
|
193
|
+
"routing": {
|
|
194
|
+
"send": {
|
|
195
|
+
"type": "query",
|
|
196
|
+
"property": "syncToken",
|
|
197
|
+
"value": "={{ $value }}",
|
|
198
|
+
"propertyInDotNotation": false
|
|
199
|
+
}
|
|
200
|
+
},
|
|
201
|
+
"displayOptions": {
|
|
202
|
+
"show": {
|
|
203
|
+
"resource": [
|
|
204
|
+
"Contact Groups"
|
|
205
|
+
],
|
|
206
|
+
"operation": [
|
|
207
|
+
"People Contact Groups List"
|
|
208
|
+
]
|
|
209
|
+
}
|
|
210
|
+
}
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"displayName": "POST /v1/contactGroups",
|
|
214
|
+
"name": "operation",
|
|
215
|
+
"type": "notice",
|
|
216
|
+
"typeOptions": {
|
|
217
|
+
"theme": "info"
|
|
218
|
+
},
|
|
219
|
+
"default": "",
|
|
220
|
+
"displayOptions": {
|
|
221
|
+
"show": {
|
|
222
|
+
"resource": [
|
|
223
|
+
"Contact Groups"
|
|
224
|
+
],
|
|
225
|
+
"operation": [
|
|
226
|
+
"People Contact Groups Create"
|
|
227
|
+
]
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
},
|
|
231
|
+
{
|
|
232
|
+
"displayName": "Contact Group",
|
|
233
|
+
"name": "contactGroup",
|
|
234
|
+
"type": "json",
|
|
235
|
+
"default": "{\n \"clientData\": [\n {}\n ],\n \"memberResourceNames\": [\n null\n ],\n \"metadata\": {}\n}",
|
|
236
|
+
"description": "A contact group.",
|
|
237
|
+
"routing": {
|
|
238
|
+
"send": {
|
|
239
|
+
"property": "contactGroup",
|
|
240
|
+
"propertyInDotNotation": false,
|
|
241
|
+
"type": "body",
|
|
242
|
+
"value": "={{ JSON.parse($value) }}"
|
|
243
|
+
}
|
|
244
|
+
},
|
|
245
|
+
"displayOptions": {
|
|
246
|
+
"show": {
|
|
247
|
+
"resource": [
|
|
248
|
+
"Contact Groups"
|
|
249
|
+
],
|
|
250
|
+
"operation": [
|
|
251
|
+
"People Contact Groups Create"
|
|
252
|
+
]
|
|
253
|
+
}
|
|
254
|
+
}
|
|
255
|
+
},
|
|
256
|
+
{
|
|
257
|
+
"displayName": "Read Group Fields",
|
|
258
|
+
"name": "readGroupFields",
|
|
259
|
+
"type": "string",
|
|
260
|
+
"default": "",
|
|
261
|
+
"description": "Optional. A field mask to restrict which fields on the group are returned. Defaults to `metadata`, `groupType`, and `name` if not set or set to empty. Valid fields are: * clientData * groupType * metadata * name",
|
|
262
|
+
"routing": {
|
|
263
|
+
"send": {
|
|
264
|
+
"property": "readGroupFields",
|
|
265
|
+
"propertyInDotNotation": false,
|
|
266
|
+
"type": "body",
|
|
267
|
+
"value": "={{ $value }}"
|
|
268
|
+
}
|
|
269
|
+
},
|
|
270
|
+
"displayOptions": {
|
|
271
|
+
"show": {
|
|
272
|
+
"resource": [
|
|
273
|
+
"Contact Groups"
|
|
274
|
+
],
|
|
275
|
+
"operation": [
|
|
276
|
+
"People Contact Groups Create"
|
|
277
|
+
]
|
|
278
|
+
}
|
|
279
|
+
}
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
"displayName": "GET /v1/contactGroups:batchGet",
|
|
283
|
+
"name": "operation",
|
|
284
|
+
"type": "notice",
|
|
285
|
+
"typeOptions": {
|
|
286
|
+
"theme": "info"
|
|
287
|
+
},
|
|
288
|
+
"default": "",
|
|
289
|
+
"displayOptions": {
|
|
290
|
+
"show": {
|
|
291
|
+
"resource": [
|
|
292
|
+
"Contact Groups"
|
|
293
|
+
],
|
|
294
|
+
"operation": [
|
|
295
|
+
"People Contact Groups Batch Get"
|
|
296
|
+
]
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
},
|
|
300
|
+
{
|
|
301
|
+
"displayName": "Group Fields",
|
|
302
|
+
"name": "groupFields",
|
|
303
|
+
"description": "Optional. A field mask to restrict which fields on the group are returned. Defaults to `metadata`, `groupType`, `memberCount`, and `name` if not set or set to empty. Valid fields are: * clientData * groupType * memberCount * metadata * name",
|
|
304
|
+
"default": "",
|
|
305
|
+
"type": "string",
|
|
306
|
+
"routing": {
|
|
307
|
+
"send": {
|
|
308
|
+
"type": "query",
|
|
309
|
+
"property": "groupFields",
|
|
310
|
+
"value": "={{ $value }}",
|
|
311
|
+
"propertyInDotNotation": false
|
|
312
|
+
}
|
|
313
|
+
},
|
|
314
|
+
"displayOptions": {
|
|
315
|
+
"show": {
|
|
316
|
+
"resource": [
|
|
317
|
+
"Contact Groups"
|
|
318
|
+
],
|
|
319
|
+
"operation": [
|
|
320
|
+
"People Contact Groups Batch Get"
|
|
321
|
+
]
|
|
322
|
+
}
|
|
323
|
+
}
|
|
324
|
+
},
|
|
325
|
+
{
|
|
326
|
+
"displayName": "Max Members",
|
|
327
|
+
"name": "maxMembers",
|
|
328
|
+
"description": "Optional. Specifies the maximum number of members to return for each group. Defaults to 0 if not set, which will return zero members.",
|
|
329
|
+
"default": 0,
|
|
330
|
+
"type": "number",
|
|
331
|
+
"routing": {
|
|
332
|
+
"send": {
|
|
333
|
+
"type": "query",
|
|
334
|
+
"property": "maxMembers",
|
|
335
|
+
"value": "={{ $value }}",
|
|
336
|
+
"propertyInDotNotation": false
|
|
337
|
+
}
|
|
338
|
+
},
|
|
339
|
+
"displayOptions": {
|
|
340
|
+
"show": {
|
|
341
|
+
"resource": [
|
|
342
|
+
"Contact Groups"
|
|
343
|
+
],
|
|
344
|
+
"operation": [
|
|
345
|
+
"People Contact Groups Batch Get"
|
|
346
|
+
]
|
|
347
|
+
}
|
|
348
|
+
}
|
|
349
|
+
},
|
|
350
|
+
{
|
|
351
|
+
"displayName": "Resource Names",
|
|
352
|
+
"name": "resourceNames",
|
|
353
|
+
"description": "Required. The resource names of the contact groups to get. There is a maximum of 200 resource names.",
|
|
354
|
+
"default": "[\n null\n]",
|
|
355
|
+
"type": "json",
|
|
356
|
+
"routing": {
|
|
357
|
+
"send": {
|
|
358
|
+
"type": "query",
|
|
359
|
+
"property": "resourceNames",
|
|
360
|
+
"value": "={{ $value }}",
|
|
361
|
+
"propertyInDotNotation": false
|
|
362
|
+
}
|
|
363
|
+
},
|
|
364
|
+
"displayOptions": {
|
|
365
|
+
"show": {
|
|
366
|
+
"resource": [
|
|
367
|
+
"Contact Groups"
|
|
368
|
+
],
|
|
369
|
+
"operation": [
|
|
370
|
+
"People Contact Groups Batch Get"
|
|
371
|
+
]
|
|
372
|
+
}
|
|
373
|
+
}
|
|
374
|
+
},
|
|
375
|
+
{
|
|
376
|
+
"displayName": "DELETE /v1/{resourceName}",
|
|
377
|
+
"name": "operation",
|
|
378
|
+
"type": "notice",
|
|
379
|
+
"typeOptions": {
|
|
380
|
+
"theme": "info"
|
|
381
|
+
},
|
|
382
|
+
"default": "",
|
|
383
|
+
"displayOptions": {
|
|
384
|
+
"show": {
|
|
385
|
+
"resource": [
|
|
386
|
+
"Contact Groups"
|
|
387
|
+
],
|
|
388
|
+
"operation": [
|
|
389
|
+
"People Contact Groups Delete"
|
|
390
|
+
]
|
|
391
|
+
}
|
|
392
|
+
}
|
|
393
|
+
},
|
|
394
|
+
{
|
|
395
|
+
"displayName": "Resource Name",
|
|
396
|
+
"name": "resourceName",
|
|
397
|
+
"required": true,
|
|
398
|
+
"description": "Required. The resource name of the contact group to delete.",
|
|
399
|
+
"default": "",
|
|
400
|
+
"type": "string",
|
|
401
|
+
"displayOptions": {
|
|
402
|
+
"show": {
|
|
403
|
+
"resource": [
|
|
404
|
+
"Contact Groups"
|
|
405
|
+
],
|
|
406
|
+
"operation": [
|
|
407
|
+
"People Contact Groups Delete"
|
|
408
|
+
]
|
|
409
|
+
}
|
|
410
|
+
}
|
|
411
|
+
},
|
|
412
|
+
{
|
|
413
|
+
"displayName": "Delete Contacts",
|
|
414
|
+
"name": "deleteContacts",
|
|
415
|
+
"description": "Optional. Set to true to also delete the contacts in the specified group.",
|
|
416
|
+
"default": true,
|
|
417
|
+
"type": "boolean",
|
|
418
|
+
"routing": {
|
|
419
|
+
"send": {
|
|
420
|
+
"type": "query",
|
|
421
|
+
"property": "deleteContacts",
|
|
422
|
+
"value": "={{ $value }}",
|
|
423
|
+
"propertyInDotNotation": false
|
|
424
|
+
}
|
|
425
|
+
},
|
|
426
|
+
"displayOptions": {
|
|
427
|
+
"show": {
|
|
428
|
+
"resource": [
|
|
429
|
+
"Contact Groups"
|
|
430
|
+
],
|
|
431
|
+
"operation": [
|
|
432
|
+
"People Contact Groups Delete"
|
|
433
|
+
]
|
|
434
|
+
}
|
|
435
|
+
}
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
"displayName": "PUT /v1/{resourceName}",
|
|
439
|
+
"name": "operation",
|
|
440
|
+
"type": "notice",
|
|
441
|
+
"typeOptions": {
|
|
442
|
+
"theme": "info"
|
|
443
|
+
},
|
|
444
|
+
"default": "",
|
|
445
|
+
"displayOptions": {
|
|
446
|
+
"show": {
|
|
447
|
+
"resource": [
|
|
448
|
+
"Contact Groups"
|
|
449
|
+
],
|
|
450
|
+
"operation": [
|
|
451
|
+
"People Contact Groups Update"
|
|
452
|
+
]
|
|
453
|
+
}
|
|
454
|
+
}
|
|
455
|
+
},
|
|
456
|
+
{
|
|
457
|
+
"displayName": "Resource Name",
|
|
458
|
+
"name": "resourceName",
|
|
459
|
+
"required": true,
|
|
460
|
+
"description": "The resource name for the contact group, assigned by the server. An ASCII string, in the form of `contactGroups/{contact_group_id}`.",
|
|
461
|
+
"default": "",
|
|
462
|
+
"type": "string",
|
|
463
|
+
"displayOptions": {
|
|
464
|
+
"show": {
|
|
465
|
+
"resource": [
|
|
466
|
+
"Contact Groups"
|
|
467
|
+
],
|
|
468
|
+
"operation": [
|
|
469
|
+
"People Contact Groups Update"
|
|
470
|
+
]
|
|
471
|
+
}
|
|
472
|
+
}
|
|
473
|
+
},
|
|
474
|
+
{
|
|
475
|
+
"displayName": "Contact Group",
|
|
476
|
+
"name": "contactGroup",
|
|
477
|
+
"type": "json",
|
|
478
|
+
"default": "{\n \"clientData\": [\n {}\n ],\n \"memberResourceNames\": [\n null\n ],\n \"metadata\": {}\n}",
|
|
479
|
+
"description": "A contact group.",
|
|
480
|
+
"routing": {
|
|
481
|
+
"send": {
|
|
482
|
+
"property": "contactGroup",
|
|
483
|
+
"propertyInDotNotation": false,
|
|
484
|
+
"type": "body",
|
|
485
|
+
"value": "={{ JSON.parse($value) }}"
|
|
486
|
+
}
|
|
487
|
+
},
|
|
488
|
+
"displayOptions": {
|
|
489
|
+
"show": {
|
|
490
|
+
"resource": [
|
|
491
|
+
"Contact Groups"
|
|
492
|
+
],
|
|
493
|
+
"operation": [
|
|
494
|
+
"People Contact Groups Update"
|
|
495
|
+
]
|
|
496
|
+
}
|
|
497
|
+
}
|
|
498
|
+
},
|
|
499
|
+
{
|
|
500
|
+
"displayName": "Read Group Fields",
|
|
501
|
+
"name": "readGroupFields",
|
|
502
|
+
"type": "string",
|
|
503
|
+
"default": "",
|
|
504
|
+
"description": "Optional. A field mask to restrict which fields on the group are returned. Defaults to `metadata`, `groupType`, and `name` if not set or set to empty. Valid fields are: * clientData * groupType * memberCount * metadata * name",
|
|
505
|
+
"routing": {
|
|
506
|
+
"send": {
|
|
507
|
+
"property": "readGroupFields",
|
|
508
|
+
"propertyInDotNotation": false,
|
|
509
|
+
"type": "body",
|
|
510
|
+
"value": "={{ $value }}"
|
|
511
|
+
}
|
|
512
|
+
},
|
|
513
|
+
"displayOptions": {
|
|
514
|
+
"show": {
|
|
515
|
+
"resource": [
|
|
516
|
+
"Contact Groups"
|
|
517
|
+
],
|
|
518
|
+
"operation": [
|
|
519
|
+
"People Contact Groups Update"
|
|
520
|
+
]
|
|
521
|
+
}
|
|
522
|
+
}
|
|
523
|
+
},
|
|
524
|
+
{
|
|
525
|
+
"displayName": "Update Group Fields",
|
|
526
|
+
"name": "updateGroupFields",
|
|
527
|
+
"type": "string",
|
|
528
|
+
"default": "",
|
|
529
|
+
"description": "Optional. A field mask to restrict which fields on the group are updated. Multiple fields can be specified by separating them with commas. Defaults to `name` if not set or set to empty. Updated fields are replaced. Valid values are: * clientData * name",
|
|
530
|
+
"routing": {
|
|
531
|
+
"send": {
|
|
532
|
+
"property": "updateGroupFields",
|
|
533
|
+
"propertyInDotNotation": false,
|
|
534
|
+
"type": "body",
|
|
535
|
+
"value": "={{ $value }}"
|
|
536
|
+
}
|
|
537
|
+
},
|
|
538
|
+
"displayOptions": {
|
|
539
|
+
"show": {
|
|
540
|
+
"resource": [
|
|
541
|
+
"Contact Groups"
|
|
542
|
+
],
|
|
543
|
+
"operation": [
|
|
544
|
+
"People Contact Groups Update"
|
|
545
|
+
]
|
|
546
|
+
}
|
|
547
|
+
}
|
|
548
|
+
},
|
|
549
|
+
{
|
|
550
|
+
"displayName": "POST /v1/{resourceName}/members:modify",
|
|
551
|
+
"name": "operation",
|
|
552
|
+
"type": "notice",
|
|
553
|
+
"typeOptions": {
|
|
554
|
+
"theme": "info"
|
|
555
|
+
},
|
|
556
|
+
"default": "",
|
|
557
|
+
"displayOptions": {
|
|
558
|
+
"show": {
|
|
559
|
+
"resource": [
|
|
560
|
+
"Contact Groups"
|
|
561
|
+
],
|
|
562
|
+
"operation": [
|
|
563
|
+
"People Contact Groups Members Modify"
|
|
564
|
+
]
|
|
565
|
+
}
|
|
566
|
+
}
|
|
567
|
+
},
|
|
568
|
+
{
|
|
569
|
+
"displayName": "Resource Name",
|
|
570
|
+
"name": "resourceName",
|
|
571
|
+
"required": true,
|
|
572
|
+
"description": "Required. The resource name of the contact group to modify.",
|
|
573
|
+
"default": "",
|
|
574
|
+
"type": "string",
|
|
575
|
+
"displayOptions": {
|
|
576
|
+
"show": {
|
|
577
|
+
"resource": [
|
|
578
|
+
"Contact Groups"
|
|
579
|
+
],
|
|
580
|
+
"operation": [
|
|
581
|
+
"People Contact Groups Members Modify"
|
|
582
|
+
]
|
|
583
|
+
}
|
|
584
|
+
}
|
|
585
|
+
},
|
|
586
|
+
{
|
|
587
|
+
"displayName": "Resource Names To Add",
|
|
588
|
+
"name": "resourceNamesToAdd",
|
|
589
|
+
"type": "json",
|
|
590
|
+
"default": "[\n null\n]",
|
|
591
|
+
"description": "Optional. The resource names of the contact people to add in the form of `people/{person_id}`. The total number of resource names in `resource_names_to_add` and `resource_names_to_remove` must be less than or equal to 1000.",
|
|
592
|
+
"routing": {
|
|
593
|
+
"send": {
|
|
594
|
+
"property": "resourceNamesToAdd",
|
|
595
|
+
"propertyInDotNotation": false,
|
|
596
|
+
"type": "body",
|
|
597
|
+
"value": "={{ JSON.parse($value) }}"
|
|
598
|
+
}
|
|
599
|
+
},
|
|
600
|
+
"displayOptions": {
|
|
601
|
+
"show": {
|
|
602
|
+
"resource": [
|
|
603
|
+
"Contact Groups"
|
|
604
|
+
],
|
|
605
|
+
"operation": [
|
|
606
|
+
"People Contact Groups Members Modify"
|
|
607
|
+
]
|
|
608
|
+
}
|
|
609
|
+
}
|
|
610
|
+
},
|
|
611
|
+
{
|
|
612
|
+
"displayName": "Resource Names To Remove",
|
|
613
|
+
"name": "resourceNamesToRemove",
|
|
614
|
+
"type": "json",
|
|
615
|
+
"default": "[\n null\n]",
|
|
616
|
+
"description": "Optional. The resource names of the contact people to remove in the form of `people/{person_id}`. The total number of resource names in `resource_names_to_add` and `resource_names_to_remove` must be less than or equal to 1000.",
|
|
617
|
+
"routing": {
|
|
618
|
+
"send": {
|
|
619
|
+
"property": "resourceNamesToRemove",
|
|
620
|
+
"propertyInDotNotation": false,
|
|
621
|
+
"type": "body",
|
|
622
|
+
"value": "={{ JSON.parse($value) }}"
|
|
623
|
+
}
|
|
624
|
+
},
|
|
625
|
+
"displayOptions": {
|
|
626
|
+
"show": {
|
|
627
|
+
"resource": [
|
|
628
|
+
"Contact Groups"
|
|
629
|
+
],
|
|
630
|
+
"operation": [
|
|
631
|
+
"People Contact Groups Members Modify"
|
|
632
|
+
]
|
|
633
|
+
}
|
|
634
|
+
}
|
|
635
|
+
},
|
|
636
|
+
];
|
|
637
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../nodes/GoogleapisPeople/resources/contact-groups/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.peopleDescription = exports.otherContactsDescription = exports.contactGroupsDescription = void 0;
|
|
4
|
+
var contact_groups_1 = require("./contact-groups");
|
|
5
|
+
Object.defineProperty(exports, "contactGroupsDescription", { enumerable: true, get: function () { return contact_groups_1.contactGroupsDescription; } });
|
|
6
|
+
var other_contacts_1 = require("./other-contacts");
|
|
7
|
+
Object.defineProperty(exports, "otherContactsDescription", { enumerable: true, get: function () { return other_contacts_1.otherContactsDescription; } });
|
|
8
|
+
var people_1 = require("./people");
|
|
9
|
+
Object.defineProperty(exports, "peopleDescription", { enumerable: true, get: function () { return people_1.peopleDescription; } });
|
|
10
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../nodes/GoogleapisPeople/resources/index.ts"],"names":[],"mappings":";;;AAAA,mDAA4D;AAAnD,0HAAA,wBAAwB,OAAA;AACjC,mDAA4D;AAAnD,0HAAA,wBAAwB,OAAA;AACjC,mCAA6C;AAApC,2GAAA,iBAAiB,OAAA"}
|