@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,433 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.otherContactsDescription = void 0;
|
|
4
|
+
exports.otherContactsDescription = [
|
|
5
|
+
{
|
|
6
|
+
"displayName": "Operation",
|
|
7
|
+
"name": "operation",
|
|
8
|
+
"type": "options",
|
|
9
|
+
"noDataExpression": true,
|
|
10
|
+
"displayOptions": {
|
|
11
|
+
"show": {
|
|
12
|
+
"resource": [
|
|
13
|
+
"Other Contacts"
|
|
14
|
+
]
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
"options": [
|
|
18
|
+
{
|
|
19
|
+
"name": "People Other Contacts List",
|
|
20
|
+
"value": "People Other Contacts List",
|
|
21
|
+
"action": "People Other Contacts List",
|
|
22
|
+
"description": "List all \"Other contacts\", that is contacts that are not in a contact group. \"Other contacts\" are typically auto created contacts from interactions. Sync tokens expire 7 days after the full sync. A request with an expired sync token will get an error with an [google.rpc.ErrorInfo](https://cloud.google.com/apis/design/errors#error_info) with reason \"EXPIRED_SYNC_TOKEN\". In the case of such an error clients should make a full sync request without a `sync_token`. The first page of a full sync request has an additional quota. If the quota is exceeded, a 429 error will be returned. This quota is fixed and can not be increased. When the `sync_token` is specified, resources deleted since the last sync will be returned as a person with `PersonMetadata.deleted` set to true. When the `page_token` or `sync_token` is specified, all other request parameters must match the first call. Writes may have a propagation delay of several minutes for sync requests. Incremental syncs are not intended for read-after-write use cases. See example usage at [List the user's other contacts that have changed](/people/v1/other-contacts#list_the_users_other_contacts_that_have_changed).",
|
|
23
|
+
"routing": {
|
|
24
|
+
"request": {
|
|
25
|
+
"method": "GET",
|
|
26
|
+
"url": "=/v1/otherContacts"
|
|
27
|
+
}
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
"name": "People Other Contacts Search",
|
|
32
|
+
"value": "People Other Contacts Search",
|
|
33
|
+
"action": "People Other Contacts Search",
|
|
34
|
+
"description": "Provides a list of contacts in the authenticated user's other contacts that matches the search query. The query matches on a contact's `names`, `emailAddresses`, and `phoneNumbers` fields that are from the OTHER_CONTACT source. **IMPORTANT**: Before searching, clients should send a warmup request with an empty query to update the cache. See https://developers.google.com/people/v1/other-contacts#search_the_users_other_contacts",
|
|
35
|
+
"routing": {
|
|
36
|
+
"request": {
|
|
37
|
+
"method": "GET",
|
|
38
|
+
"url": "=/v1/otherContacts:search"
|
|
39
|
+
}
|
|
40
|
+
}
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
"name": "People Other Contacts Copy Other Contact To My Contacts Group",
|
|
44
|
+
"value": "People Other Contacts Copy Other Contact To My Contacts Group",
|
|
45
|
+
"action": "People Other Contacts Copy Other Contact To My Contacts Group",
|
|
46
|
+
"description": "Copies an \"Other contact\" to a new contact in the user's \"myContacts\" group Mutate requests for the same user should be sent sequentially to avoid increased latency and failures.",
|
|
47
|
+
"routing": {
|
|
48
|
+
"request": {
|
|
49
|
+
"method": "POST",
|
|
50
|
+
"url": "=/v1/{{$parameter[\"resourceName\"]}}:copyOtherContactToMyContactsGroup"
|
|
51
|
+
}
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
],
|
|
55
|
+
"default": ""
|
|
56
|
+
},
|
|
57
|
+
{
|
|
58
|
+
"displayName": "GET /v1/otherContacts",
|
|
59
|
+
"name": "operation",
|
|
60
|
+
"type": "notice",
|
|
61
|
+
"typeOptions": {
|
|
62
|
+
"theme": "info"
|
|
63
|
+
},
|
|
64
|
+
"default": "",
|
|
65
|
+
"displayOptions": {
|
|
66
|
+
"show": {
|
|
67
|
+
"resource": [
|
|
68
|
+
"Other Contacts"
|
|
69
|
+
],
|
|
70
|
+
"operation": [
|
|
71
|
+
"People Other Contacts List"
|
|
72
|
+
]
|
|
73
|
+
}
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"displayName": "Page Size",
|
|
78
|
+
"name": "pageSize",
|
|
79
|
+
"description": "Optional. The number of \"Other contacts\" to include in the response. Valid values are between 1 and 1000, inclusive. Defaults to 100 if not set or set to 0.",
|
|
80
|
+
"default": 0,
|
|
81
|
+
"type": "number",
|
|
82
|
+
"routing": {
|
|
83
|
+
"send": {
|
|
84
|
+
"type": "query",
|
|
85
|
+
"property": "pageSize",
|
|
86
|
+
"value": "={{ $value }}",
|
|
87
|
+
"propertyInDotNotation": false
|
|
88
|
+
}
|
|
89
|
+
},
|
|
90
|
+
"displayOptions": {
|
|
91
|
+
"show": {
|
|
92
|
+
"resource": [
|
|
93
|
+
"Other Contacts"
|
|
94
|
+
],
|
|
95
|
+
"operation": [
|
|
96
|
+
"People Other Contacts List"
|
|
97
|
+
]
|
|
98
|
+
}
|
|
99
|
+
}
|
|
100
|
+
},
|
|
101
|
+
{
|
|
102
|
+
"displayName": "Page Token",
|
|
103
|
+
"name": "pageToken",
|
|
104
|
+
"description": "Optional. A page token, received from a previous response `next_page_token`. Provide this to retrieve the subsequent page. When paginating, all other parameters provided to `otherContacts.list` must match the first call that provided the page token.",
|
|
105
|
+
"default": "",
|
|
106
|
+
"type": "string",
|
|
107
|
+
"routing": {
|
|
108
|
+
"send": {
|
|
109
|
+
"type": "query",
|
|
110
|
+
"property": "pageToken",
|
|
111
|
+
"value": "={{ $value }}",
|
|
112
|
+
"propertyInDotNotation": false
|
|
113
|
+
}
|
|
114
|
+
},
|
|
115
|
+
"displayOptions": {
|
|
116
|
+
"show": {
|
|
117
|
+
"resource": [
|
|
118
|
+
"Other Contacts"
|
|
119
|
+
],
|
|
120
|
+
"operation": [
|
|
121
|
+
"People Other Contacts List"
|
|
122
|
+
]
|
|
123
|
+
}
|
|
124
|
+
}
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"displayName": "Read Mask",
|
|
128
|
+
"name": "readMask",
|
|
129
|
+
"description": "Required. A field mask to restrict which fields on each person are returned. Multiple fields can be specified by separating them with commas. What values are valid depend on what ReadSourceType is used. If READ_SOURCE_TYPE_CONTACT is used, valid values are: * emailAddresses * metadata * names * phoneNumbers * photos If READ_SOURCE_TYPE_PROFILE is used, valid values are: * addresses * ageRanges * biographies * birthdays * calendarUrls * clientData * coverPhotos * emailAddresses * events * externalIds * genders * imClients * interests * locales * locations * memberships * metadata * miscKeywords * names * nicknames * occupations * organizations * phoneNumbers * photos * relations * sipAddresses * skills * urls * userDefined",
|
|
130
|
+
"default": "",
|
|
131
|
+
"type": "string",
|
|
132
|
+
"routing": {
|
|
133
|
+
"send": {
|
|
134
|
+
"type": "query",
|
|
135
|
+
"property": "readMask",
|
|
136
|
+
"value": "={{ $value }}",
|
|
137
|
+
"propertyInDotNotation": false
|
|
138
|
+
}
|
|
139
|
+
},
|
|
140
|
+
"displayOptions": {
|
|
141
|
+
"show": {
|
|
142
|
+
"resource": [
|
|
143
|
+
"Other Contacts"
|
|
144
|
+
],
|
|
145
|
+
"operation": [
|
|
146
|
+
"People Other Contacts List"
|
|
147
|
+
]
|
|
148
|
+
}
|
|
149
|
+
}
|
|
150
|
+
},
|
|
151
|
+
{
|
|
152
|
+
"displayName": "Request Sync Token",
|
|
153
|
+
"name": "requestSyncToken",
|
|
154
|
+
"description": "Optional. Whether the response should return `next_sync_token` on the last page of results. It can be used to get incremental changes since the last request by setting it on the request `sync_token`. More details about sync behavior at `otherContacts.list`.",
|
|
155
|
+
"default": true,
|
|
156
|
+
"type": "boolean",
|
|
157
|
+
"routing": {
|
|
158
|
+
"send": {
|
|
159
|
+
"type": "query",
|
|
160
|
+
"property": "requestSyncToken",
|
|
161
|
+
"value": "={{ $value }}",
|
|
162
|
+
"propertyInDotNotation": false
|
|
163
|
+
}
|
|
164
|
+
},
|
|
165
|
+
"displayOptions": {
|
|
166
|
+
"show": {
|
|
167
|
+
"resource": [
|
|
168
|
+
"Other Contacts"
|
|
169
|
+
],
|
|
170
|
+
"operation": [
|
|
171
|
+
"People Other Contacts List"
|
|
172
|
+
]
|
|
173
|
+
}
|
|
174
|
+
}
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"displayName": "Sources",
|
|
178
|
+
"name": "sources",
|
|
179
|
+
"description": "Optional. A mask of what source types to return. Defaults to READ_SOURCE_TYPE_CONTACT if not set. Possible values for this field are: * READ_SOURCE_TYPE_CONTACT * READ_SOURCE_TYPE_CONTACT,READ_SOURCE_TYPE_PROFILE Specifying READ_SOURCE_TYPE_PROFILE without specifying READ_SOURCE_TYPE_CONTACT is not permitted.",
|
|
180
|
+
"default": "[\n null\n]",
|
|
181
|
+
"type": "json",
|
|
182
|
+
"routing": {
|
|
183
|
+
"send": {
|
|
184
|
+
"type": "query",
|
|
185
|
+
"property": "sources",
|
|
186
|
+
"value": "={{ $value }}",
|
|
187
|
+
"propertyInDotNotation": false
|
|
188
|
+
}
|
|
189
|
+
},
|
|
190
|
+
"displayOptions": {
|
|
191
|
+
"show": {
|
|
192
|
+
"resource": [
|
|
193
|
+
"Other Contacts"
|
|
194
|
+
],
|
|
195
|
+
"operation": [
|
|
196
|
+
"People Other Contacts List"
|
|
197
|
+
]
|
|
198
|
+
}
|
|
199
|
+
}
|
|
200
|
+
},
|
|
201
|
+
{
|
|
202
|
+
"displayName": "Sync Token",
|
|
203
|
+
"name": "syncToken",
|
|
204
|
+
"description": "Optional. A sync token, received from a previous response `next_sync_token` Provide this to retrieve only the resources changed since the last request. When syncing, all other parameters provided to `otherContacts.list` must match the first call that provided the sync token. More details about sync behavior at `otherContacts.list`.",
|
|
205
|
+
"default": "",
|
|
206
|
+
"type": "string",
|
|
207
|
+
"routing": {
|
|
208
|
+
"send": {
|
|
209
|
+
"type": "query",
|
|
210
|
+
"property": "syncToken",
|
|
211
|
+
"value": "={{ $value }}",
|
|
212
|
+
"propertyInDotNotation": false
|
|
213
|
+
}
|
|
214
|
+
},
|
|
215
|
+
"displayOptions": {
|
|
216
|
+
"show": {
|
|
217
|
+
"resource": [
|
|
218
|
+
"Other Contacts"
|
|
219
|
+
],
|
|
220
|
+
"operation": [
|
|
221
|
+
"People Other Contacts List"
|
|
222
|
+
]
|
|
223
|
+
}
|
|
224
|
+
}
|
|
225
|
+
},
|
|
226
|
+
{
|
|
227
|
+
"displayName": "GET /v1/otherContacts:search",
|
|
228
|
+
"name": "operation",
|
|
229
|
+
"type": "notice",
|
|
230
|
+
"typeOptions": {
|
|
231
|
+
"theme": "info"
|
|
232
|
+
},
|
|
233
|
+
"default": "",
|
|
234
|
+
"displayOptions": {
|
|
235
|
+
"show": {
|
|
236
|
+
"resource": [
|
|
237
|
+
"Other Contacts"
|
|
238
|
+
],
|
|
239
|
+
"operation": [
|
|
240
|
+
"People Other Contacts Search"
|
|
241
|
+
]
|
|
242
|
+
}
|
|
243
|
+
}
|
|
244
|
+
},
|
|
245
|
+
{
|
|
246
|
+
"displayName": "Page Size",
|
|
247
|
+
"name": "pageSize",
|
|
248
|
+
"description": "Optional. The number of results to return. Defaults to 10 if field is not set, or set to 0. Values greater than 30 will be capped to 30.",
|
|
249
|
+
"default": 0,
|
|
250
|
+
"type": "number",
|
|
251
|
+
"routing": {
|
|
252
|
+
"send": {
|
|
253
|
+
"type": "query",
|
|
254
|
+
"property": "pageSize",
|
|
255
|
+
"value": "={{ $value }}",
|
|
256
|
+
"propertyInDotNotation": false
|
|
257
|
+
}
|
|
258
|
+
},
|
|
259
|
+
"displayOptions": {
|
|
260
|
+
"show": {
|
|
261
|
+
"resource": [
|
|
262
|
+
"Other Contacts"
|
|
263
|
+
],
|
|
264
|
+
"operation": [
|
|
265
|
+
"People Other Contacts Search"
|
|
266
|
+
]
|
|
267
|
+
}
|
|
268
|
+
}
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
"displayName": "Query",
|
|
272
|
+
"name": "query",
|
|
273
|
+
"description": "Required. The plain-text query for the request. The query is used to match prefix phrases of the fields on a person. For example, a person with name \"foo name\" matches queries such as \"f\", \"fo\", \"foo\", \"foo n\", \"nam\", etc., but not \"oo n\".",
|
|
274
|
+
"default": "",
|
|
275
|
+
"type": "string",
|
|
276
|
+
"routing": {
|
|
277
|
+
"send": {
|
|
278
|
+
"type": "query",
|
|
279
|
+
"property": "query",
|
|
280
|
+
"value": "={{ $value }}",
|
|
281
|
+
"propertyInDotNotation": false
|
|
282
|
+
}
|
|
283
|
+
},
|
|
284
|
+
"displayOptions": {
|
|
285
|
+
"show": {
|
|
286
|
+
"resource": [
|
|
287
|
+
"Other Contacts"
|
|
288
|
+
],
|
|
289
|
+
"operation": [
|
|
290
|
+
"People Other Contacts Search"
|
|
291
|
+
]
|
|
292
|
+
}
|
|
293
|
+
}
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
"displayName": "Read Mask",
|
|
297
|
+
"name": "readMask",
|
|
298
|
+
"description": "Required. A field mask to restrict which fields on each person are returned. Multiple fields can be specified by separating them with commas. Valid values are: * emailAddresses * metadata * names * phoneNumbers",
|
|
299
|
+
"default": "",
|
|
300
|
+
"type": "string",
|
|
301
|
+
"routing": {
|
|
302
|
+
"send": {
|
|
303
|
+
"type": "query",
|
|
304
|
+
"property": "readMask",
|
|
305
|
+
"value": "={{ $value }}",
|
|
306
|
+
"propertyInDotNotation": false
|
|
307
|
+
}
|
|
308
|
+
},
|
|
309
|
+
"displayOptions": {
|
|
310
|
+
"show": {
|
|
311
|
+
"resource": [
|
|
312
|
+
"Other Contacts"
|
|
313
|
+
],
|
|
314
|
+
"operation": [
|
|
315
|
+
"People Other Contacts Search"
|
|
316
|
+
]
|
|
317
|
+
}
|
|
318
|
+
}
|
|
319
|
+
},
|
|
320
|
+
{
|
|
321
|
+
"displayName": "POST /v1/{resourceName}:copyOtherContactToMyContactsGroup",
|
|
322
|
+
"name": "operation",
|
|
323
|
+
"type": "notice",
|
|
324
|
+
"typeOptions": {
|
|
325
|
+
"theme": "info"
|
|
326
|
+
},
|
|
327
|
+
"default": "",
|
|
328
|
+
"displayOptions": {
|
|
329
|
+
"show": {
|
|
330
|
+
"resource": [
|
|
331
|
+
"Other Contacts"
|
|
332
|
+
],
|
|
333
|
+
"operation": [
|
|
334
|
+
"People Other Contacts Copy Other Contact To My Contacts Group"
|
|
335
|
+
]
|
|
336
|
+
}
|
|
337
|
+
}
|
|
338
|
+
},
|
|
339
|
+
{
|
|
340
|
+
"displayName": "Resource Name",
|
|
341
|
+
"name": "resourceName",
|
|
342
|
+
"required": true,
|
|
343
|
+
"description": "Required. The resource name of the \"Other contact\" to copy.",
|
|
344
|
+
"default": "",
|
|
345
|
+
"type": "string",
|
|
346
|
+
"displayOptions": {
|
|
347
|
+
"show": {
|
|
348
|
+
"resource": [
|
|
349
|
+
"Other Contacts"
|
|
350
|
+
],
|
|
351
|
+
"operation": [
|
|
352
|
+
"People Other Contacts Copy Other Contact To My Contacts Group"
|
|
353
|
+
]
|
|
354
|
+
}
|
|
355
|
+
}
|
|
356
|
+
},
|
|
357
|
+
{
|
|
358
|
+
"displayName": "Copy Mask",
|
|
359
|
+
"name": "copyMask",
|
|
360
|
+
"type": "string",
|
|
361
|
+
"default": "",
|
|
362
|
+
"description": "Required. A field mask to restrict which fields are copied into the new contact. Valid values are: * emailAddresses * names * phoneNumbers",
|
|
363
|
+
"routing": {
|
|
364
|
+
"send": {
|
|
365
|
+
"property": "copyMask",
|
|
366
|
+
"propertyInDotNotation": false,
|
|
367
|
+
"type": "body",
|
|
368
|
+
"value": "={{ $value }}"
|
|
369
|
+
}
|
|
370
|
+
},
|
|
371
|
+
"displayOptions": {
|
|
372
|
+
"show": {
|
|
373
|
+
"resource": [
|
|
374
|
+
"Other Contacts"
|
|
375
|
+
],
|
|
376
|
+
"operation": [
|
|
377
|
+
"People Other Contacts Copy Other Contact To My Contacts Group"
|
|
378
|
+
]
|
|
379
|
+
}
|
|
380
|
+
}
|
|
381
|
+
},
|
|
382
|
+
{
|
|
383
|
+
"displayName": "Read Mask",
|
|
384
|
+
"name": "readMask",
|
|
385
|
+
"type": "string",
|
|
386
|
+
"default": "",
|
|
387
|
+
"description": "Optional. A field mask to restrict which fields on the person are returned. Multiple fields can be specified by separating them with commas. Defaults to the copy mask with metadata and membership fields if not set. Valid values are: * addresses * ageRanges * biographies * birthdays * calendarUrls * clientData * coverPhotos * emailAddresses * events * externalIds * genders * imClients * interests * locales * locations * memberships * metadata * miscKeywords * names * nicknames * occupations * organizations * phoneNumbers * photos * relations * sipAddresses * skills * urls * userDefined",
|
|
388
|
+
"routing": {
|
|
389
|
+
"send": {
|
|
390
|
+
"property": "readMask",
|
|
391
|
+
"propertyInDotNotation": false,
|
|
392
|
+
"type": "body",
|
|
393
|
+
"value": "={{ $value }}"
|
|
394
|
+
}
|
|
395
|
+
},
|
|
396
|
+
"displayOptions": {
|
|
397
|
+
"show": {
|
|
398
|
+
"resource": [
|
|
399
|
+
"Other Contacts"
|
|
400
|
+
],
|
|
401
|
+
"operation": [
|
|
402
|
+
"People Other Contacts Copy Other Contact To My Contacts Group"
|
|
403
|
+
]
|
|
404
|
+
}
|
|
405
|
+
}
|
|
406
|
+
},
|
|
407
|
+
{
|
|
408
|
+
"displayName": "Sources",
|
|
409
|
+
"name": "sources",
|
|
410
|
+
"type": "json",
|
|
411
|
+
"default": "[\n null\n]",
|
|
412
|
+
"description": "Optional. A mask of what source types to return. Defaults to READ_SOURCE_TYPE_CONTACT and READ_SOURCE_TYPE_PROFILE if not set.",
|
|
413
|
+
"routing": {
|
|
414
|
+
"send": {
|
|
415
|
+
"property": "sources",
|
|
416
|
+
"propertyInDotNotation": false,
|
|
417
|
+
"type": "body",
|
|
418
|
+
"value": "={{ JSON.parse($value) }}"
|
|
419
|
+
}
|
|
420
|
+
},
|
|
421
|
+
"displayOptions": {
|
|
422
|
+
"show": {
|
|
423
|
+
"resource": [
|
|
424
|
+
"Other Contacts"
|
|
425
|
+
],
|
|
426
|
+
"operation": [
|
|
427
|
+
"People Other Contacts Copy Other Contact To My Contacts Group"
|
|
428
|
+
]
|
|
429
|
+
}
|
|
430
|
+
}
|
|
431
|
+
},
|
|
432
|
+
];
|
|
433
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../../nodes/GoogleapisPeople/resources/other-contacts/index.ts"],"names":[],"mappings":"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"}
|