veryfront 0.1.625 → 0.1.626
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/esm/deno.js +1 -1
- package/esm/src/agent/runtime/current-run-tool-state.d.ts +36 -0
- package/esm/src/agent/runtime/current-run-tool-state.d.ts.map +1 -0
- package/esm/src/agent/runtime/current-run-tool-state.js +246 -0
- package/esm/src/agent/runtime/index.d.ts.map +1 -1
- package/esm/src/agent/runtime/index.js +65 -9
- package/esm/src/integrations/_data.js +7 -7
- package/esm/src/integrations/_tool_summaries.d.ts.map +1 -1
- package/esm/src/integrations/_tool_summaries.js +788 -0
- package/esm/src/integrations/schema.d.ts +4 -4
- package/esm/src/utils/version-constant.d.ts +1 -1
- package/esm/src/utils/version-constant.js +1 -1
- package/package.json +1 -1
|
@@ -1,4 +1,188 @@
|
|
|
1
1
|
export const historicalToolSummaries = {
|
|
2
|
+
"asana__list_projects": {
|
|
3
|
+
"collectionKeys": ["data", "projects"],
|
|
4
|
+
"collectionName": "projects",
|
|
5
|
+
"itemFields": [
|
|
6
|
+
{ "name": "id" },
|
|
7
|
+
{ "name": "gid" },
|
|
8
|
+
{ "name": "key" },
|
|
9
|
+
{ "name": "node_id" },
|
|
10
|
+
{ "name": "name" },
|
|
11
|
+
{ "name": "title" },
|
|
12
|
+
{ "name": "summary" },
|
|
13
|
+
{ "name": "subject" },
|
|
14
|
+
{ "name": "number" },
|
|
15
|
+
{ "name": "state" },
|
|
16
|
+
{ "name": "status" },
|
|
17
|
+
{ "name": "url" },
|
|
18
|
+
{ "name": "html_url" },
|
|
19
|
+
{ "name": "created_at" },
|
|
20
|
+
{ "name": "updated_at" },
|
|
21
|
+
{ "name": "createdAt" },
|
|
22
|
+
{ "name": "updatedAt" },
|
|
23
|
+
{ "name": "user", "kind": "contact" },
|
|
24
|
+
{ "name": "author", "kind": "contact" },
|
|
25
|
+
{ "name": "created_by", "kind": "contact" },
|
|
26
|
+
{ "name": "assignee", "kind": "contact" },
|
|
27
|
+
{ "name": "owner", "kind": "contact" },
|
|
28
|
+
],
|
|
29
|
+
"outputFields": [
|
|
30
|
+
{ "name": "nextPageToken" },
|
|
31
|
+
{ "name": "next_page" },
|
|
32
|
+
{ "name": "next" },
|
|
33
|
+
{ "name": "offset" },
|
|
34
|
+
{ "name": "total" },
|
|
35
|
+
{ "name": "per_page" },
|
|
36
|
+
{ "name": "page" },
|
|
37
|
+
],
|
|
38
|
+
"omitted": "projects details and provider-specific payload fields",
|
|
39
|
+
},
|
|
40
|
+
"asana__list_task_comments": {
|
|
41
|
+
"collectionKeys": ["data", "comments", "stories"],
|
|
42
|
+
"collectionName": "comments",
|
|
43
|
+
"itemFields": [{ "name": "gid" }, { "name": "type" }, { "name": "text", "maxLength": 300 }, {
|
|
44
|
+
"name": "created_at",
|
|
45
|
+
}, { "name": "created_by", "kind": "contact" }],
|
|
46
|
+
"outputFields": [
|
|
47
|
+
{ "name": "nextPageToken" },
|
|
48
|
+
{ "name": "next_page" },
|
|
49
|
+
{ "name": "next" },
|
|
50
|
+
{ "name": "offset" },
|
|
51
|
+
{ "name": "total" },
|
|
52
|
+
{ "name": "per_page" },
|
|
53
|
+
{ "name": "page" },
|
|
54
|
+
],
|
|
55
|
+
"omitted": "full comment story payloads and provider-specific fields",
|
|
56
|
+
},
|
|
57
|
+
"asana__list_tasks": {
|
|
58
|
+
"collectionKeys": ["data", "tasks"],
|
|
59
|
+
"collectionName": "tasks",
|
|
60
|
+
"itemFields": [
|
|
61
|
+
{ "name": "id" },
|
|
62
|
+
{ "name": "gid" },
|
|
63
|
+
{ "name": "key" },
|
|
64
|
+
{ "name": "node_id" },
|
|
65
|
+
{ "name": "name" },
|
|
66
|
+
{ "name": "title" },
|
|
67
|
+
{ "name": "summary" },
|
|
68
|
+
{ "name": "subject" },
|
|
69
|
+
{ "name": "number" },
|
|
70
|
+
{ "name": "state" },
|
|
71
|
+
{ "name": "status" },
|
|
72
|
+
{ "name": "url" },
|
|
73
|
+
{ "name": "html_url" },
|
|
74
|
+
{ "name": "created_at" },
|
|
75
|
+
{ "name": "updated_at" },
|
|
76
|
+
{ "name": "createdAt" },
|
|
77
|
+
{ "name": "updatedAt" },
|
|
78
|
+
{ "name": "user", "kind": "contact" },
|
|
79
|
+
{ "name": "author", "kind": "contact" },
|
|
80
|
+
{ "name": "created_by", "kind": "contact" },
|
|
81
|
+
{ "name": "assignee", "kind": "contact" },
|
|
82
|
+
{ "name": "owner", "kind": "contact" },
|
|
83
|
+
],
|
|
84
|
+
"outputFields": [
|
|
85
|
+
{ "name": "nextPageToken" },
|
|
86
|
+
{ "name": "next_page" },
|
|
87
|
+
{ "name": "next" },
|
|
88
|
+
{ "name": "offset" },
|
|
89
|
+
{ "name": "total" },
|
|
90
|
+
{ "name": "per_page" },
|
|
91
|
+
{ "name": "page" },
|
|
92
|
+
],
|
|
93
|
+
"omitted": "tasks details and provider-specific payload fields",
|
|
94
|
+
},
|
|
95
|
+
"asana__list_teams": {
|
|
96
|
+
"collectionKeys": ["data", "teams"],
|
|
97
|
+
"collectionName": "teams",
|
|
98
|
+
"itemFields": [
|
|
99
|
+
{ "name": "id" },
|
|
100
|
+
{ "name": "gid" },
|
|
101
|
+
{ "name": "key" },
|
|
102
|
+
{ "name": "node_id" },
|
|
103
|
+
{ "name": "name" },
|
|
104
|
+
{ "name": "title" },
|
|
105
|
+
{ "name": "summary" },
|
|
106
|
+
{ "name": "subject" },
|
|
107
|
+
{ "name": "number" },
|
|
108
|
+
{ "name": "state" },
|
|
109
|
+
{ "name": "status" },
|
|
110
|
+
{ "name": "url" },
|
|
111
|
+
{ "name": "html_url" },
|
|
112
|
+
{ "name": "created_at" },
|
|
113
|
+
{ "name": "updated_at" },
|
|
114
|
+
{ "name": "createdAt" },
|
|
115
|
+
{ "name": "updatedAt" },
|
|
116
|
+
{ "name": "user", "kind": "contact" },
|
|
117
|
+
{ "name": "author", "kind": "contact" },
|
|
118
|
+
{ "name": "created_by", "kind": "contact" },
|
|
119
|
+
{ "name": "assignee", "kind": "contact" },
|
|
120
|
+
{ "name": "owner", "kind": "contact" },
|
|
121
|
+
],
|
|
122
|
+
"outputFields": [
|
|
123
|
+
{ "name": "nextPageToken" },
|
|
124
|
+
{ "name": "next_page" },
|
|
125
|
+
{ "name": "next" },
|
|
126
|
+
{ "name": "offset" },
|
|
127
|
+
{ "name": "total" },
|
|
128
|
+
{ "name": "per_page" },
|
|
129
|
+
{ "name": "page" },
|
|
130
|
+
],
|
|
131
|
+
"omitted": "teams details and provider-specific payload fields",
|
|
132
|
+
},
|
|
133
|
+
"asana__list_users": {
|
|
134
|
+
"collectionKeys": ["data", "users"],
|
|
135
|
+
"collectionName": "users",
|
|
136
|
+
"itemFields": [{ "name": "gid" }, { "name": "name" }, { "name": "email" }],
|
|
137
|
+
"outputFields": [
|
|
138
|
+
{ "name": "nextPageToken" },
|
|
139
|
+
{ "name": "next_page" },
|
|
140
|
+
{ "name": "next" },
|
|
141
|
+
{ "name": "offset" },
|
|
142
|
+
{ "name": "total" },
|
|
143
|
+
{ "name": "per_page" },
|
|
144
|
+
{ "name": "page" },
|
|
145
|
+
],
|
|
146
|
+
"omitted": "user profile details and provider-specific payload fields",
|
|
147
|
+
},
|
|
148
|
+
"asana__list_workspaces": {
|
|
149
|
+
"collectionKeys": ["data", "workspaces"],
|
|
150
|
+
"collectionName": "workspaces",
|
|
151
|
+
"itemFields": [
|
|
152
|
+
{ "name": "id" },
|
|
153
|
+
{ "name": "gid" },
|
|
154
|
+
{ "name": "key" },
|
|
155
|
+
{ "name": "node_id" },
|
|
156
|
+
{ "name": "name" },
|
|
157
|
+
{ "name": "title" },
|
|
158
|
+
{ "name": "summary" },
|
|
159
|
+
{ "name": "subject" },
|
|
160
|
+
{ "name": "number" },
|
|
161
|
+
{ "name": "state" },
|
|
162
|
+
{ "name": "status" },
|
|
163
|
+
{ "name": "url" },
|
|
164
|
+
{ "name": "html_url" },
|
|
165
|
+
{ "name": "created_at" },
|
|
166
|
+
{ "name": "updated_at" },
|
|
167
|
+
{ "name": "createdAt" },
|
|
168
|
+
{ "name": "updatedAt" },
|
|
169
|
+
{ "name": "user", "kind": "contact" },
|
|
170
|
+
{ "name": "author", "kind": "contact" },
|
|
171
|
+
{ "name": "created_by", "kind": "contact" },
|
|
172
|
+
{ "name": "assignee", "kind": "contact" },
|
|
173
|
+
{ "name": "owner", "kind": "contact" },
|
|
174
|
+
],
|
|
175
|
+
"outputFields": [
|
|
176
|
+
{ "name": "nextPageToken" },
|
|
177
|
+
{ "name": "next_page" },
|
|
178
|
+
{ "name": "next" },
|
|
179
|
+
{ "name": "offset" },
|
|
180
|
+
{ "name": "total" },
|
|
181
|
+
{ "name": "per_page" },
|
|
182
|
+
{ "name": "page" },
|
|
183
|
+
],
|
|
184
|
+
"omitted": "workspaces details and provider-specific payload fields",
|
|
185
|
+
},
|
|
2
186
|
"github__get_issue": {
|
|
3
187
|
"collectionKeys": ["issue", "data"],
|
|
4
188
|
"collectionName": "issues",
|
|
@@ -114,6 +298,13 @@ export const historicalToolSummaries = {
|
|
|
114
298
|
],
|
|
115
299
|
"omitted": "repository descriptions and provider-specific payload fields",
|
|
116
300
|
},
|
|
301
|
+
"gmail__list_drafts": {
|
|
302
|
+
"collectionKeys": ["drafts", "data"],
|
|
303
|
+
"collectionName": "drafts",
|
|
304
|
+
"itemFields": [{ "name": "id" }, { "name": "message", "kind": "object" }],
|
|
305
|
+
"outputFields": [{ "name": "nextPageToken" }, { "name": "resultSizeEstimate" }],
|
|
306
|
+
"omitted": "draft message bodies and provider-specific payload fields",
|
|
307
|
+
},
|
|
117
308
|
"gmail__list_emails": {
|
|
118
309
|
"collectionKeys": ["messages", "data"],
|
|
119
310
|
"collectionName": "messages",
|
|
@@ -134,6 +325,31 @@ export const historicalToolSummaries = {
|
|
|
134
325
|
"outputFields": [{ "name": "nextPageToken" }, { "name": "resultSizeEstimate" }],
|
|
135
326
|
"omitted": "large email bodies and provider-specific payload fields",
|
|
136
327
|
},
|
|
328
|
+
"gmail__list_history": {
|
|
329
|
+
"collectionKeys": ["history", "data"],
|
|
330
|
+
"collectionName": "history",
|
|
331
|
+
"itemFields": [{ "name": "id" }, { "name": "messages", "kind": "object" }, {
|
|
332
|
+
"name": "messagesAdded",
|
|
333
|
+
"kind": "object",
|
|
334
|
+
}, { "name": "messagesDeleted", "kind": "object" }],
|
|
335
|
+
"outputFields": [{ "name": "nextPageToken" }, { "name": "historyId" }],
|
|
336
|
+
"omitted": "history details and provider-specific payload fields",
|
|
337
|
+
},
|
|
338
|
+
"gmail__list_labels": {
|
|
339
|
+
"collectionKeys": ["labels", "data"],
|
|
340
|
+
"collectionName": "labels",
|
|
341
|
+
"itemFields": [{ "name": "id" }, { "name": "name" }, { "name": "type" }],
|
|
342
|
+
"omitted": "label counters and provider-specific payload fields",
|
|
343
|
+
},
|
|
344
|
+
"gmail__list_threads": {
|
|
345
|
+
"collectionKeys": ["threads", "data"],
|
|
346
|
+
"collectionName": "threads",
|
|
347
|
+
"itemFields": [{ "name": "id" }, { "name": "snippet", "maxLength": 300 }, {
|
|
348
|
+
"name": "historyId",
|
|
349
|
+
}],
|
|
350
|
+
"outputFields": [{ "name": "nextPageToken" }, { "name": "resultSizeEstimate" }],
|
|
351
|
+
"omitted": "large thread payloads and provider-specific fields",
|
|
352
|
+
},
|
|
137
353
|
"gmail__search_emails": {
|
|
138
354
|
"collectionKeys": ["messages", "data"],
|
|
139
355
|
"collectionName": "messages",
|
|
@@ -154,6 +370,534 @@ export const historicalToolSummaries = {
|
|
|
154
370
|
"outputFields": [{ "name": "nextPageToken" }, { "name": "resultSizeEstimate" }],
|
|
155
371
|
"omitted": "large email bodies and provider-specific payload fields",
|
|
156
372
|
},
|
|
373
|
+
"harvest__invoice_report": {
|
|
374
|
+
"collectionKeys": ["results", "data"],
|
|
375
|
+
"collectionName": "invoiceReports",
|
|
376
|
+
"itemFields": [
|
|
377
|
+
{ "name": "client_id" },
|
|
378
|
+
{ "name": "client_name" },
|
|
379
|
+
{ "name": "invoice_id" },
|
|
380
|
+
{ "name": "invoice_number" },
|
|
381
|
+
{ "name": "amount" },
|
|
382
|
+
{ "name": "currency" },
|
|
383
|
+
],
|
|
384
|
+
"outputFields": [
|
|
385
|
+
{ "name": "nextPageToken" },
|
|
386
|
+
{ "name": "next_page" },
|
|
387
|
+
{ "name": "next" },
|
|
388
|
+
{ "name": "offset" },
|
|
389
|
+
{ "name": "total" },
|
|
390
|
+
{ "name": "per_page" },
|
|
391
|
+
{ "name": "page" },
|
|
392
|
+
],
|
|
393
|
+
"omitted": "invoice report details and provider-specific payload fields",
|
|
394
|
+
},
|
|
395
|
+
"harvest__list_accounts": {
|
|
396
|
+
"collectionKeys": ["accounts", "data"],
|
|
397
|
+
"collectionName": "accounts",
|
|
398
|
+
"itemFields": [{ "name": "id" }, { "name": "name" }, { "name": "product" }],
|
|
399
|
+
"omitted": "account auth policy and provider-specific fields",
|
|
400
|
+
},
|
|
401
|
+
"harvest__list_clients": {
|
|
402
|
+
"collectionKeys": ["clients", "data"],
|
|
403
|
+
"collectionName": "clients",
|
|
404
|
+
"itemFields": [{ "name": "id" }, { "name": "name" }, { "name": "currency" }, {
|
|
405
|
+
"name": "is_active",
|
|
406
|
+
}, { "name": "updated_at" }],
|
|
407
|
+
"outputFields": [
|
|
408
|
+
{ "name": "nextPageToken" },
|
|
409
|
+
{ "name": "next_page" },
|
|
410
|
+
{ "name": "next" },
|
|
411
|
+
{ "name": "offset" },
|
|
412
|
+
{ "name": "total" },
|
|
413
|
+
{ "name": "per_page" },
|
|
414
|
+
{ "name": "page" },
|
|
415
|
+
],
|
|
416
|
+
"omitted": "client addresses, statement keys, and provider-specific payload fields",
|
|
417
|
+
},
|
|
418
|
+
"harvest__list_invoice_payments": {
|
|
419
|
+
"collectionKeys": ["invoice_payments", "data"],
|
|
420
|
+
"collectionName": "invoicePayments",
|
|
421
|
+
"itemFields": [{ "name": "id" }, { "name": "amount" }, { "name": "paid_at" }, {
|
|
422
|
+
"name": "created_at",
|
|
423
|
+
}, { "name": "updated_at" }],
|
|
424
|
+
"outputFields": [
|
|
425
|
+
{ "name": "nextPageToken" },
|
|
426
|
+
{ "name": "next_page" },
|
|
427
|
+
{ "name": "next" },
|
|
428
|
+
{ "name": "offset" },
|
|
429
|
+
{ "name": "total" },
|
|
430
|
+
{ "name": "per_page" },
|
|
431
|
+
{ "name": "page" },
|
|
432
|
+
],
|
|
433
|
+
"omitted": "payment notes and provider-specific payload fields",
|
|
434
|
+
},
|
|
435
|
+
"harvest__list_invoices": {
|
|
436
|
+
"collectionKeys": ["invoices", "data"],
|
|
437
|
+
"collectionName": "invoices",
|
|
438
|
+
"itemFields": [
|
|
439
|
+
{ "name": "id" },
|
|
440
|
+
{ "name": "number" },
|
|
441
|
+
{ "name": "state" },
|
|
442
|
+
{ "name": "amount" },
|
|
443
|
+
{ "name": "due_date" },
|
|
444
|
+
{ "name": "client", "kind": "object" },
|
|
445
|
+
{ "name": "updated_at" },
|
|
446
|
+
],
|
|
447
|
+
"outputFields": [
|
|
448
|
+
{ "name": "nextPageToken" },
|
|
449
|
+
{ "name": "next_page" },
|
|
450
|
+
{ "name": "next" },
|
|
451
|
+
{ "name": "offset" },
|
|
452
|
+
{ "name": "total" },
|
|
453
|
+
{ "name": "per_page" },
|
|
454
|
+
{ "name": "page" },
|
|
455
|
+
],
|
|
456
|
+
"omitted": "invoice notes, line items, and provider-specific payload fields",
|
|
457
|
+
},
|
|
458
|
+
"harvest__list_project_task_assignments": {
|
|
459
|
+
"collectionKeys": ["task_assignments", "data"],
|
|
460
|
+
"collectionName": "taskAssignments",
|
|
461
|
+
"itemFields": [
|
|
462
|
+
{ "name": "id" },
|
|
463
|
+
{ "name": "task", "kind": "object" },
|
|
464
|
+
{ "name": "project", "kind": "object" },
|
|
465
|
+
{ "name": "is_active" },
|
|
466
|
+
{ "name": "updated_at" },
|
|
467
|
+
],
|
|
468
|
+
"outputFields": [
|
|
469
|
+
{ "name": "nextPageToken" },
|
|
470
|
+
{ "name": "next_page" },
|
|
471
|
+
{ "name": "next" },
|
|
472
|
+
{ "name": "offset" },
|
|
473
|
+
{ "name": "total" },
|
|
474
|
+
{ "name": "per_page" },
|
|
475
|
+
{ "name": "page" },
|
|
476
|
+
],
|
|
477
|
+
"omitted": "task assignment rates and provider-specific payload fields",
|
|
478
|
+
},
|
|
479
|
+
"harvest__list_projects": {
|
|
480
|
+
"collectionKeys": ["projects", "data"],
|
|
481
|
+
"collectionName": "projects",
|
|
482
|
+
"itemFields": [
|
|
483
|
+
{ "name": "id" },
|
|
484
|
+
{ "name": "name" },
|
|
485
|
+
{ "name": "code" },
|
|
486
|
+
{ "name": "is_active" },
|
|
487
|
+
{ "name": "client", "kind": "object" },
|
|
488
|
+
{ "name": "updated_at" },
|
|
489
|
+
],
|
|
490
|
+
"outputFields": [
|
|
491
|
+
{ "name": "nextPageToken" },
|
|
492
|
+
{ "name": "next_page" },
|
|
493
|
+
{ "name": "next" },
|
|
494
|
+
{ "name": "offset" },
|
|
495
|
+
{ "name": "total" },
|
|
496
|
+
{ "name": "per_page" },
|
|
497
|
+
{ "name": "page" },
|
|
498
|
+
],
|
|
499
|
+
"omitted": "project budgets, notes, rates, and provider-specific payload fields",
|
|
500
|
+
},
|
|
501
|
+
"harvest__list_tasks": {
|
|
502
|
+
"collectionKeys": ["tasks", "data"],
|
|
503
|
+
"collectionName": "tasks",
|
|
504
|
+
"itemFields": [{ "name": "id" }, { "name": "name" }, { "name": "is_active" }, {
|
|
505
|
+
"name": "is_default",
|
|
506
|
+
}, { "name": "updated_at" }],
|
|
507
|
+
"outputFields": [
|
|
508
|
+
{ "name": "nextPageToken" },
|
|
509
|
+
{ "name": "next_page" },
|
|
510
|
+
{ "name": "next" },
|
|
511
|
+
{ "name": "offset" },
|
|
512
|
+
{ "name": "total" },
|
|
513
|
+
{ "name": "per_page" },
|
|
514
|
+
{ "name": "page" },
|
|
515
|
+
],
|
|
516
|
+
"omitted": "task rates and provider-specific payload fields",
|
|
517
|
+
},
|
|
518
|
+
"harvest__list_time_entries": {
|
|
519
|
+
"collectionKeys": ["time_entries", "data"],
|
|
520
|
+
"collectionName": "timeEntries",
|
|
521
|
+
"itemFields": [
|
|
522
|
+
{ "name": "id" },
|
|
523
|
+
{ "name": "spent_date" },
|
|
524
|
+
{ "name": "hours" },
|
|
525
|
+
{ "name": "billable" },
|
|
526
|
+
{ "name": "user", "kind": "contact" },
|
|
527
|
+
{ "name": "client", "kind": "object" },
|
|
528
|
+
{ "name": "project", "kind": "object" },
|
|
529
|
+
{ "name": "task", "kind": "object" },
|
|
530
|
+
],
|
|
531
|
+
"outputFields": [
|
|
532
|
+
{ "name": "nextPageToken" },
|
|
533
|
+
{ "name": "next_page" },
|
|
534
|
+
{ "name": "next" },
|
|
535
|
+
{ "name": "offset" },
|
|
536
|
+
{ "name": "total" },
|
|
537
|
+
{ "name": "per_page" },
|
|
538
|
+
{ "name": "page" },
|
|
539
|
+
],
|
|
540
|
+
"omitted": "notes, rates, invoice details, and provider-specific payload fields",
|
|
541
|
+
},
|
|
542
|
+
"harvest__list_users": {
|
|
543
|
+
"collectionKeys": ["users", "data"],
|
|
544
|
+
"collectionName": "users",
|
|
545
|
+
"itemFields": [
|
|
546
|
+
{ "name": "id" },
|
|
547
|
+
{ "name": "email" },
|
|
548
|
+
{ "name": "first_name" },
|
|
549
|
+
{ "name": "last_name" },
|
|
550
|
+
{ "name": "is_active" },
|
|
551
|
+
{ "name": "timezone" },
|
|
552
|
+
],
|
|
553
|
+
"outputFields": [
|
|
554
|
+
{ "name": "nextPageToken" },
|
|
555
|
+
{ "name": "next_page" },
|
|
556
|
+
{ "name": "next" },
|
|
557
|
+
{ "name": "offset" },
|
|
558
|
+
{ "name": "total" },
|
|
559
|
+
{ "name": "per_page" },
|
|
560
|
+
{ "name": "page" },
|
|
561
|
+
],
|
|
562
|
+
"omitted": "user rates, avatars, and provider-specific payload fields",
|
|
563
|
+
},
|
|
564
|
+
"harvest__time_report_by_client": {
|
|
565
|
+
"collectionKeys": ["results", "data"],
|
|
566
|
+
"collectionName": "clientTimeReports",
|
|
567
|
+
"itemFields": [
|
|
568
|
+
{ "name": "client_id" },
|
|
569
|
+
{ "name": "client_name" },
|
|
570
|
+
{ "name": "total_hours" },
|
|
571
|
+
{ "name": "billable_hours" },
|
|
572
|
+
{ "name": "billable_amount" },
|
|
573
|
+
{ "name": "currency" },
|
|
574
|
+
],
|
|
575
|
+
"outputFields": [
|
|
576
|
+
{ "name": "nextPageToken" },
|
|
577
|
+
{ "name": "next_page" },
|
|
578
|
+
{ "name": "next" },
|
|
579
|
+
{ "name": "offset" },
|
|
580
|
+
{ "name": "total" },
|
|
581
|
+
{ "name": "per_page" },
|
|
582
|
+
{ "name": "page" },
|
|
583
|
+
],
|
|
584
|
+
"omitted": "client report details and provider-specific payload fields",
|
|
585
|
+
},
|
|
586
|
+
"harvest__time_report_by_project": {
|
|
587
|
+
"collectionKeys": ["results", "data"],
|
|
588
|
+
"collectionName": "projectTimeReports",
|
|
589
|
+
"itemFields": [
|
|
590
|
+
{ "name": "project_id" },
|
|
591
|
+
{ "name": "project_name" },
|
|
592
|
+
{ "name": "client_id" },
|
|
593
|
+
{ "name": "client_name" },
|
|
594
|
+
{ "name": "total_hours" },
|
|
595
|
+
{ "name": "billable_hours" },
|
|
596
|
+
{ "name": "billable_amount" },
|
|
597
|
+
{ "name": "currency" },
|
|
598
|
+
],
|
|
599
|
+
"outputFields": [
|
|
600
|
+
{ "name": "nextPageToken" },
|
|
601
|
+
{ "name": "next_page" },
|
|
602
|
+
{ "name": "next" },
|
|
603
|
+
{ "name": "offset" },
|
|
604
|
+
{ "name": "total" },
|
|
605
|
+
{ "name": "per_page" },
|
|
606
|
+
{ "name": "page" },
|
|
607
|
+
],
|
|
608
|
+
"omitted": "report breakdown details and provider-specific payload fields",
|
|
609
|
+
},
|
|
610
|
+
"harvest__time_report_by_task": {
|
|
611
|
+
"collectionKeys": ["results", "data"],
|
|
612
|
+
"collectionName": "taskTimeReports",
|
|
613
|
+
"itemFields": [
|
|
614
|
+
{ "name": "task_id" },
|
|
615
|
+
{ "name": "task_name" },
|
|
616
|
+
{ "name": "total_hours" },
|
|
617
|
+
{ "name": "billable_hours" },
|
|
618
|
+
{ "name": "billable_amount" },
|
|
619
|
+
{ "name": "currency" },
|
|
620
|
+
],
|
|
621
|
+
"outputFields": [
|
|
622
|
+
{ "name": "nextPageToken" },
|
|
623
|
+
{ "name": "next_page" },
|
|
624
|
+
{ "name": "next" },
|
|
625
|
+
{ "name": "offset" },
|
|
626
|
+
{ "name": "total" },
|
|
627
|
+
{ "name": "per_page" },
|
|
628
|
+
{ "name": "page" },
|
|
629
|
+
],
|
|
630
|
+
"omitted": "task report details and provider-specific payload fields",
|
|
631
|
+
},
|
|
632
|
+
"harvest__time_report_by_team": {
|
|
633
|
+
"collectionKeys": ["results", "data"],
|
|
634
|
+
"collectionName": "teamTimeReports",
|
|
635
|
+
"itemFields": [
|
|
636
|
+
{ "name": "user_id" },
|
|
637
|
+
{ "name": "user_name" },
|
|
638
|
+
{ "name": "total_hours" },
|
|
639
|
+
{ "name": "billable_hours" },
|
|
640
|
+
{ "name": "billable_amount" },
|
|
641
|
+
{ "name": "currency" },
|
|
642
|
+
],
|
|
643
|
+
"outputFields": [
|
|
644
|
+
{ "name": "nextPageToken" },
|
|
645
|
+
{ "name": "next_page" },
|
|
646
|
+
{ "name": "next" },
|
|
647
|
+
{ "name": "offset" },
|
|
648
|
+
{ "name": "total" },
|
|
649
|
+
{ "name": "per_page" },
|
|
650
|
+
{ "name": "page" },
|
|
651
|
+
],
|
|
652
|
+
"omitted": "team report details and provider-specific payload fields",
|
|
653
|
+
},
|
|
654
|
+
"jira__list_comments": {
|
|
655
|
+
"collectionKeys": ["comments", "data"],
|
|
656
|
+
"collectionName": "comments",
|
|
657
|
+
"itemFields": [
|
|
658
|
+
{ "name": "id" },
|
|
659
|
+
{ "name": "body", "kind": "object" },
|
|
660
|
+
{ "name": "author", "kind": "contact" },
|
|
661
|
+
{ "name": "created" },
|
|
662
|
+
{ "name": "updated" },
|
|
663
|
+
],
|
|
664
|
+
"outputFields": [{ "name": "total" }, { "name": "startAt" }, { "name": "maxResults" }],
|
|
665
|
+
"omitted": "full comment payloads and provider-specific fields",
|
|
666
|
+
},
|
|
667
|
+
"jira__list_projects": {
|
|
668
|
+
"collectionKeys": ["values", "projects", "data"],
|
|
669
|
+
"collectionName": "projects",
|
|
670
|
+
"itemFields": [
|
|
671
|
+
{ "name": "id" },
|
|
672
|
+
{ "name": "gid" },
|
|
673
|
+
{ "name": "key" },
|
|
674
|
+
{ "name": "node_id" },
|
|
675
|
+
{ "name": "name" },
|
|
676
|
+
{ "name": "title" },
|
|
677
|
+
{ "name": "summary" },
|
|
678
|
+
{ "name": "subject" },
|
|
679
|
+
{ "name": "number" },
|
|
680
|
+
{ "name": "state" },
|
|
681
|
+
{ "name": "status" },
|
|
682
|
+
{ "name": "url" },
|
|
683
|
+
{ "name": "html_url" },
|
|
684
|
+
{ "name": "created_at" },
|
|
685
|
+
{ "name": "updated_at" },
|
|
686
|
+
{ "name": "createdAt" },
|
|
687
|
+
{ "name": "updatedAt" },
|
|
688
|
+
{ "name": "user", "kind": "contact" },
|
|
689
|
+
{ "name": "author", "kind": "contact" },
|
|
690
|
+
{ "name": "created_by", "kind": "contact" },
|
|
691
|
+
{ "name": "assignee", "kind": "contact" },
|
|
692
|
+
{ "name": "owner", "kind": "contact" },
|
|
693
|
+
],
|
|
694
|
+
"outputFields": [
|
|
695
|
+
{ "name": "nextPageToken" },
|
|
696
|
+
{ "name": "next_page" },
|
|
697
|
+
{ "name": "next" },
|
|
698
|
+
{ "name": "offset" },
|
|
699
|
+
{ "name": "total" },
|
|
700
|
+
{ "name": "per_page" },
|
|
701
|
+
{ "name": "page" },
|
|
702
|
+
],
|
|
703
|
+
"omitted": "projects details and provider-specific payload fields",
|
|
704
|
+
},
|
|
705
|
+
"jira__list_sites": {
|
|
706
|
+
"collectionKeys": ["values", "sites", "data"],
|
|
707
|
+
"collectionName": "sites",
|
|
708
|
+
"itemFields": [
|
|
709
|
+
{ "name": "id" },
|
|
710
|
+
{ "name": "gid" },
|
|
711
|
+
{ "name": "key" },
|
|
712
|
+
{ "name": "node_id" },
|
|
713
|
+
{ "name": "name" },
|
|
714
|
+
{ "name": "title" },
|
|
715
|
+
{ "name": "summary" },
|
|
716
|
+
{ "name": "subject" },
|
|
717
|
+
{ "name": "number" },
|
|
718
|
+
{ "name": "state" },
|
|
719
|
+
{ "name": "status" },
|
|
720
|
+
{ "name": "url" },
|
|
721
|
+
{ "name": "html_url" },
|
|
722
|
+
{ "name": "created_at" },
|
|
723
|
+
{ "name": "updated_at" },
|
|
724
|
+
{ "name": "createdAt" },
|
|
725
|
+
{ "name": "updatedAt" },
|
|
726
|
+
{ "name": "user", "kind": "contact" },
|
|
727
|
+
{ "name": "author", "kind": "contact" },
|
|
728
|
+
{ "name": "created_by", "kind": "contact" },
|
|
729
|
+
{ "name": "assignee", "kind": "contact" },
|
|
730
|
+
{ "name": "owner", "kind": "contact" },
|
|
731
|
+
],
|
|
732
|
+
"outputFields": [
|
|
733
|
+
{ "name": "nextPageToken" },
|
|
734
|
+
{ "name": "next_page" },
|
|
735
|
+
{ "name": "next" },
|
|
736
|
+
{ "name": "offset" },
|
|
737
|
+
{ "name": "total" },
|
|
738
|
+
{ "name": "per_page" },
|
|
739
|
+
{ "name": "page" },
|
|
740
|
+
],
|
|
741
|
+
"omitted": "sites details and provider-specific payload fields",
|
|
742
|
+
},
|
|
743
|
+
"jira__search_issues": {
|
|
744
|
+
"collectionKeys": ["issues", "data"],
|
|
745
|
+
"collectionName": "issues",
|
|
746
|
+
"itemFields": [
|
|
747
|
+
{ "name": "id" },
|
|
748
|
+
{ "name": "key" },
|
|
749
|
+
{ "name": "summary" },
|
|
750
|
+
{ "name": "status", "kind": "object" },
|
|
751
|
+
{ "name": "assignee", "kind": "contact" },
|
|
752
|
+
{ "name": "created" },
|
|
753
|
+
{ "name": "updated" },
|
|
754
|
+
],
|
|
755
|
+
"outputFields": [{ "name": "total" }, { "name": "startAt" }, { "name": "maxResults" }],
|
|
756
|
+
"omitted": "issue descriptions, comments, changelog, and provider-specific payload fields",
|
|
757
|
+
},
|
|
758
|
+
"linear__list_projects": {
|
|
759
|
+
"collectionKeys": ["projects", "nodes", "data"],
|
|
760
|
+
"collectionName": "projects",
|
|
761
|
+
"itemFields": [
|
|
762
|
+
{ "name": "id" },
|
|
763
|
+
{ "name": "gid" },
|
|
764
|
+
{ "name": "key" },
|
|
765
|
+
{ "name": "node_id" },
|
|
766
|
+
{ "name": "name" },
|
|
767
|
+
{ "name": "title" },
|
|
768
|
+
{ "name": "summary" },
|
|
769
|
+
{ "name": "subject" },
|
|
770
|
+
{ "name": "number" },
|
|
771
|
+
{ "name": "state" },
|
|
772
|
+
{ "name": "status" },
|
|
773
|
+
{ "name": "url" },
|
|
774
|
+
{ "name": "html_url" },
|
|
775
|
+
{ "name": "created_at" },
|
|
776
|
+
{ "name": "updated_at" },
|
|
777
|
+
{ "name": "createdAt" },
|
|
778
|
+
{ "name": "updatedAt" },
|
|
779
|
+
{ "name": "user", "kind": "contact" },
|
|
780
|
+
{ "name": "author", "kind": "contact" },
|
|
781
|
+
{ "name": "created_by", "kind": "contact" },
|
|
782
|
+
{ "name": "assignee", "kind": "contact" },
|
|
783
|
+
{ "name": "owner", "kind": "contact" },
|
|
784
|
+
],
|
|
785
|
+
"outputFields": [
|
|
786
|
+
{ "name": "nextPageToken" },
|
|
787
|
+
{ "name": "next_page" },
|
|
788
|
+
{ "name": "next" },
|
|
789
|
+
{ "name": "offset" },
|
|
790
|
+
{ "name": "total" },
|
|
791
|
+
{ "name": "per_page" },
|
|
792
|
+
{ "name": "page" },
|
|
793
|
+
],
|
|
794
|
+
"omitted": "projects details and provider-specific payload fields",
|
|
795
|
+
},
|
|
796
|
+
"linear__list_teams": {
|
|
797
|
+
"collectionKeys": ["teams", "nodes", "data"],
|
|
798
|
+
"collectionName": "teams",
|
|
799
|
+
"itemFields": [
|
|
800
|
+
{ "name": "id" },
|
|
801
|
+
{ "name": "gid" },
|
|
802
|
+
{ "name": "key" },
|
|
803
|
+
{ "name": "node_id" },
|
|
804
|
+
{ "name": "name" },
|
|
805
|
+
{ "name": "title" },
|
|
806
|
+
{ "name": "summary" },
|
|
807
|
+
{ "name": "subject" },
|
|
808
|
+
{ "name": "number" },
|
|
809
|
+
{ "name": "state" },
|
|
810
|
+
{ "name": "status" },
|
|
811
|
+
{ "name": "url" },
|
|
812
|
+
{ "name": "html_url" },
|
|
813
|
+
{ "name": "created_at" },
|
|
814
|
+
{ "name": "updated_at" },
|
|
815
|
+
{ "name": "createdAt" },
|
|
816
|
+
{ "name": "updatedAt" },
|
|
817
|
+
{ "name": "user", "kind": "contact" },
|
|
818
|
+
{ "name": "author", "kind": "contact" },
|
|
819
|
+
{ "name": "created_by", "kind": "contact" },
|
|
820
|
+
{ "name": "assignee", "kind": "contact" },
|
|
821
|
+
{ "name": "owner", "kind": "contact" },
|
|
822
|
+
],
|
|
823
|
+
"outputFields": [
|
|
824
|
+
{ "name": "nextPageToken" },
|
|
825
|
+
{ "name": "next_page" },
|
|
826
|
+
{ "name": "next" },
|
|
827
|
+
{ "name": "offset" },
|
|
828
|
+
{ "name": "total" },
|
|
829
|
+
{ "name": "per_page" },
|
|
830
|
+
{ "name": "page" },
|
|
831
|
+
],
|
|
832
|
+
"omitted": "teams details and provider-specific payload fields",
|
|
833
|
+
},
|
|
834
|
+
"linear__list_users": {
|
|
835
|
+
"collectionKeys": ["users", "nodes", "data"],
|
|
836
|
+
"collectionName": "users",
|
|
837
|
+
"itemFields": [
|
|
838
|
+
{ "name": "id" },
|
|
839
|
+
{ "name": "name" },
|
|
840
|
+
{ "name": "email" },
|
|
841
|
+
{ "name": "active" },
|
|
842
|
+
{ "name": "displayName" },
|
|
843
|
+
],
|
|
844
|
+
"outputFields": [{ "name": "pageInfo", "kind": "object" }],
|
|
845
|
+
"omitted": "user avatars and provider-specific payload fields",
|
|
846
|
+
},
|
|
847
|
+
"linear__list_workflow_states": {
|
|
848
|
+
"collectionKeys": ["states", "nodes", "data"],
|
|
849
|
+
"collectionName": "workflowStates",
|
|
850
|
+
"itemFields": [
|
|
851
|
+
{ "name": "id" },
|
|
852
|
+
{ "name": "gid" },
|
|
853
|
+
{ "name": "key" },
|
|
854
|
+
{ "name": "node_id" },
|
|
855
|
+
{ "name": "name" },
|
|
856
|
+
{ "name": "title" },
|
|
857
|
+
{ "name": "summary" },
|
|
858
|
+
{ "name": "subject" },
|
|
859
|
+
{ "name": "number" },
|
|
860
|
+
{ "name": "state" },
|
|
861
|
+
{ "name": "status" },
|
|
862
|
+
{ "name": "url" },
|
|
863
|
+
{ "name": "html_url" },
|
|
864
|
+
{ "name": "created_at" },
|
|
865
|
+
{ "name": "updated_at" },
|
|
866
|
+
{ "name": "createdAt" },
|
|
867
|
+
{ "name": "updatedAt" },
|
|
868
|
+
{ "name": "user", "kind": "contact" },
|
|
869
|
+
{ "name": "author", "kind": "contact" },
|
|
870
|
+
{ "name": "created_by", "kind": "contact" },
|
|
871
|
+
{ "name": "assignee", "kind": "contact" },
|
|
872
|
+
{ "name": "owner", "kind": "contact" },
|
|
873
|
+
],
|
|
874
|
+
"outputFields": [
|
|
875
|
+
{ "name": "nextPageToken" },
|
|
876
|
+
{ "name": "next_page" },
|
|
877
|
+
{ "name": "next" },
|
|
878
|
+
{ "name": "offset" },
|
|
879
|
+
{ "name": "total" },
|
|
880
|
+
{ "name": "per_page" },
|
|
881
|
+
{ "name": "page" },
|
|
882
|
+
],
|
|
883
|
+
"omitted": "workflowStates details and provider-specific payload fields",
|
|
884
|
+
},
|
|
885
|
+
"linear__search_issues": {
|
|
886
|
+
"collectionKeys": ["searchIssues", "issues", "nodes", "data"],
|
|
887
|
+
"collectionName": "issues",
|
|
888
|
+
"itemFields": [
|
|
889
|
+
{ "name": "id" },
|
|
890
|
+
{ "name": "identifier" },
|
|
891
|
+
{ "name": "title" },
|
|
892
|
+
{ "name": "state", "kind": "object" },
|
|
893
|
+
{ "name": "assignee", "kind": "contact" },
|
|
894
|
+
{ "name": "url" },
|
|
895
|
+
{ "name": "createdAt" },
|
|
896
|
+
{ "name": "updatedAt" },
|
|
897
|
+
],
|
|
898
|
+
"outputFields": [{ "name": "pageInfo", "kind": "object" }],
|
|
899
|
+
"omitted": "issue descriptions, comments, and provider-specific payload fields",
|
|
900
|
+
},
|
|
157
901
|
"outlook__list_emails": {
|
|
158
902
|
"collectionKeys": ["value", "data", "messages"],
|
|
159
903
|
"collectionName": "messages",
|
|
@@ -175,6 +919,20 @@ export const historicalToolSummaries = {
|
|
|
175
919
|
"outputFields": [{ "name": "@odata.nextLink" }, { "name": "@odata.count" }],
|
|
176
920
|
"omitted": "large email bodies and provider-specific message fields",
|
|
177
921
|
},
|
|
922
|
+
"outlook__list_folders": {
|
|
923
|
+
"collectionKeys": ["value", "folders", "data"],
|
|
924
|
+
"collectionName": "folders",
|
|
925
|
+
"itemFields": [
|
|
926
|
+
{ "name": "id" },
|
|
927
|
+
{ "name": "displayName" },
|
|
928
|
+
{ "name": "parentFolderId" },
|
|
929
|
+
{ "name": "childFolderCount" },
|
|
930
|
+
{ "name": "unreadItemCount" },
|
|
931
|
+
{ "name": "totalItemCount" },
|
|
932
|
+
],
|
|
933
|
+
"outputFields": [{ "name": "@odata.nextLink" }, { "name": "@odata.count" }],
|
|
934
|
+
"omitted": "folder provider-specific payload fields",
|
|
935
|
+
},
|
|
178
936
|
"outlook__search_emails": {
|
|
179
937
|
"collectionKeys": ["value", "data", "messages"],
|
|
180
938
|
"collectionName": "messages",
|
|
@@ -196,4 +954,34 @@ export const historicalToolSummaries = {
|
|
|
196
954
|
"outputFields": [{ "name": "@odata.nextLink" }, { "name": "@odata.count" }],
|
|
197
955
|
"omitted": "large email bodies and provider-specific message fields",
|
|
198
956
|
},
|
|
957
|
+
"slack__list_channels": {
|
|
958
|
+
"collectionKeys": ["channels", "data"],
|
|
959
|
+
"collectionName": "channels",
|
|
960
|
+
"itemFields": [
|
|
961
|
+
{ "name": "id" },
|
|
962
|
+
{ "name": "name" },
|
|
963
|
+
{ "name": "is_channel" },
|
|
964
|
+
{ "name": "is_group" },
|
|
965
|
+
{ "name": "is_im" },
|
|
966
|
+
{ "name": "is_private" },
|
|
967
|
+
{ "name": "is_archived" },
|
|
968
|
+
{ "name": "num_members" },
|
|
969
|
+
],
|
|
970
|
+
"outputFields": [{ "name": "response_metadata", "kind": "object" }],
|
|
971
|
+
"omitted": "channel topics, purposes, and provider-specific payload fields",
|
|
972
|
+
},
|
|
973
|
+
"slack__list_users": {
|
|
974
|
+
"collectionKeys": ["members", "users", "data"],
|
|
975
|
+
"collectionName": "users",
|
|
976
|
+
"itemFields": [
|
|
977
|
+
{ "name": "id" },
|
|
978
|
+
{ "name": "name" },
|
|
979
|
+
{ "name": "real_name" },
|
|
980
|
+
{ "name": "team_id" },
|
|
981
|
+
{ "name": "is_bot" },
|
|
982
|
+
{ "name": "deleted" },
|
|
983
|
+
],
|
|
984
|
+
"outputFields": [{ "name": "response_metadata", "kind": "object" }],
|
|
985
|
+
"omitted": "user profiles, avatars, and provider-specific payload fields",
|
|
986
|
+
},
|
|
199
987
|
};
|