@lanes-sh/link 0.6.10 → 0.7.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/.gcloudignore +25 -15
- package/README.md +62 -45
- package/instructions/skills/lanes-link/SKILL.md +25 -0
- package/package.json +3 -2
- package/src/audit/conformance.ts +1 -1
- package/src/cli/argv.ts +14 -1
- package/src/cli/commands/connect/acquire.ts +100 -0
- package/src/cli/commands/connect/custom/index.ts +1 -1
- package/src/cli/commands/connect/declare.ts +19 -0
- package/src/cli/commands/connect/index.ts +54 -56
- package/src/cli/commands/connect/requirements.ts +23 -1
- package/src/cli/commands/connect/setup.ts +1 -1
- package/src/cli/commands/connect/variables.ts +220 -0
- package/src/cli/commands/knowledge/index.ts +22 -4
- package/src/cli/commands/knowledge/migrate.ts +61 -43
- package/src/cli/commands/operate/tools.ts +1 -1
- package/src/cli/commands/owner/entities.ts +244 -0
- package/src/cli/commands/owner/shared.ts +14 -0
- package/src/cli/commands/owner/vault.ts +2 -2
- package/src/cli/commands/owner.ts +13 -3
- package/src/cli/commands/setup.ts +12 -0
- package/src/cli/config-edit.ts +16 -6
- package/src/cli/config-repair.ts +10 -0
- package/src/cli/dispatch-owner.ts +30 -1
- package/src/cli/main.ts +2 -1
- package/src/cli/runtime/open.ts +14 -7
- package/src/cli/runtime/registry.ts +6 -1
- package/src/cli/selection.ts +11 -0
- package/src/cli/usage.ts +13 -2
- package/src/connectivity/auth/strategy/index.ts +1 -1
- package/src/connectivity/capability.ts +1 -1
- package/src/connectivity/context.ts +1 -1
- package/src/connectivity/index.ts +1 -1
- package/src/connectivity/mail/attachments.ts +42 -73
- package/src/connectivity/mail/content-type.ts +71 -0
- package/src/connectivity/mail/index.ts +1 -1
- package/src/connectivity/manifest/provider.ts +50 -0
- package/src/connectivity/manifest/variables.ts +173 -0
- package/src/connectivity/transports/factory.ts +74 -1
- package/src/connectivity/transports/http/index.ts +8 -2
- package/src/connectivity/transports/http/keys.ts +83 -0
- package/src/connectivity/transports/imap/attachment.ts +53 -10
- package/src/connectivity/transports/imap/capabilities.ts +28 -0
- package/src/connectivity/transports/imap/download.ts +111 -0
- package/src/connectivity/transports/imap/index.ts +13 -0
- package/src/connectivity/transports/imap/operations.ts +1 -0
- package/src/deployments/adapters/s3.ts +1 -1
- package/src/deployments/gcp/provision.ts +1 -1
- package/src/deployments/knowledge.ts +44 -18
- package/src/deployments/prepare.ts +1 -1
- package/src/deployments/serving.ts +1 -1
- package/src/dispatch/dispatch.ts +17 -10
- package/src/dispatch/staging.ts +76 -1
- package/src/profile/knowledge.ts +19 -11
- package/src/profile/schema.ts +2 -2
- package/src/providers/README.md +189 -0
- package/src/providers/airtable/index.ts +10 -0
- package/src/providers/algolia/index.ts +10 -0
- package/src/providers/amplitude/index.ts +10 -0
- package/src/providers/apify/index.ts +10 -0
- package/src/providers/asana/index.ts +10 -0
- package/src/providers/assets/provider.ts +11 -4
- package/src/providers/atlassian/index.ts +19 -0
- package/src/providers/attio/index.ts +10 -0
- package/src/providers/betterstack/index.ts +10 -0
- package/src/providers/box/index.ts +64 -0
- package/src/providers/brightdata/index.ts +10 -0
- package/src/providers/buildkite/index.ts +10 -0
- package/src/providers/bunq/index.ts +2 -2
- package/src/providers/calendly/index.ts +10 -0
- package/src/providers/canva/index.ts +10 -0
- package/src/providers/circleci/index.ts +10 -0
- package/src/providers/clickup/index.ts +10 -0
- package/src/providers/close/index.ts +10 -0
- package/src/providers/cloudflare_bindings/index.ts +14 -0
- package/src/providers/cloudflare_observability/index.ts +10 -0
- package/src/providers/contentful/index.ts +10 -0
- package/src/providers/custom/load.ts +1 -1
- package/src/providers/datadog/index.ts +10 -0
- package/src/providers/discord/index.ts +1 -1
- package/src/providers/discord/specs/discord.v10.json +0 -88
- package/src/providers/discord/specs/vendor.ts +1 -1
- package/src/providers/dropbox/index.ts +10 -0
- package/src/providers/entities/catalogue.ts +366 -0
- package/src/providers/entities/find.ts +279 -0
- package/src/providers/entities/provider.ts +334 -0
- package/src/providers/entities/render.ts +142 -0
- package/src/providers/entities/store.ts +276 -0
- package/src/providers/entities/writes.ts +279 -0
- package/src/providers/example/provider.ts +1 -1
- package/src/providers/expensify/index.ts +10 -0
- package/src/providers/fastmail/calendar/index.ts +21 -0
- package/src/providers/fastmail/contacts/index.ts +17 -0
- package/src/providers/fastmail/index.ts +4 -0
- package/src/providers/fastmail/mail/index.ts +38 -0
- package/src/providers/fastmail/shared/setup.ts +52 -0
- package/src/providers/figma/index.ts +10 -0
- package/src/providers/fireflies/index.ts +10 -0
- package/src/providers/flagsmith/index.ts +10 -0
- package/src/providers/gamma/index.ts +10 -0
- package/src/providers/github/index.ts +2 -2
- package/src/providers/google/gmail/attachment.ts +16 -1
- package/src/providers/google/gmail-imap/index.ts +7 -2
- package/src/providers/google/shared/oauth.ts +1 -1
- package/src/providers/google/shared/service-account.ts +1 -1
- package/src/providers/google/shared/setup.ts +1 -1
- package/src/providers/google/specs/calendar.v3.json +0 -32
- package/src/providers/google/specs/docs.v1.json +0 -76
- package/src/providers/google/specs/drive.v3.json +0 -32
- package/src/providers/google/specs/gmail.v1.json +0 -76
- package/src/providers/google/specs/people.v1.json +0 -77
- package/src/providers/google/specs/sheets.v4.json +0 -76
- package/src/providers/google/specs/tasks.v1.json +0 -76
- package/src/providers/grafana/index.ts +10 -0
- package/src/providers/heroku/index.ts +10 -0
- package/src/providers/hubspot/index.ts +75 -0
- package/src/providers/hygraph/index.ts +10 -0
- package/src/providers/icloud/mail/index.ts +5 -0
- package/src/providers/icloud/shared/setup.ts +1 -1
- package/src/providers/index.ts +255 -0
- package/src/providers/insightly/index.ts +10 -0
- package/src/providers/jam/index.ts +10 -0
- package/src/providers/klaviyo/index.ts +10 -0
- package/src/providers/mailbox/index.ts +87 -0
- package/src/providers/memory/provider.ts +3 -8
- package/src/providers/mercury/index.ts +10 -0
- package/src/providers/microsoft/calendar/index.ts +49 -0
- package/src/providers/microsoft/contacts/index.ts +50 -0
- package/src/providers/microsoft/drive/index.ts +62 -0
- package/src/providers/microsoft/index.ts +12 -0
- package/src/providers/microsoft/mail/index.ts +76 -0
- package/src/providers/microsoft/shared/oauth.ts +58 -0
- package/src/providers/microsoft/shared/scopes.ts +56 -0
- package/src/providers/microsoft/shared/setup.ts +45 -0
- package/src/providers/microsoft/specs/microsoft-todo.v1.json +755 -0
- package/src/providers/microsoft/specs/onedrive.v1.json +993 -0
- package/src/providers/microsoft/specs/outlook-calendar.v1.json +1743 -0
- package/src/providers/microsoft/specs/outlook-contacts.v1.json +430 -0
- package/src/providers/microsoft/specs/outlook-mail.v1.json +901 -0
- package/src/providers/microsoft/specs/vendor.ts +232 -0
- package/src/providers/microsoft/todo/index.ts +54 -0
- package/src/providers/miro/index.ts +10 -0
- package/src/providers/mixpanel/index.ts +10 -0
- package/src/providers/monday/index.ts +10 -0
- package/src/providers/mux/index.ts +10 -0
- package/src/providers/navan/index.ts +10 -0
- package/src/providers/neon/index.ts +10 -0
- package/src/providers/netlify/index.ts +10 -0
- package/src/providers/nextcloud/calendar/index.ts +28 -0
- package/src/providers/nextcloud/contacts/index.ts +18 -0
- package/src/providers/nextcloud/index.ts +3 -0
- package/src/providers/nextcloud/shared/setup.ts +59 -0
- package/src/providers/owner.ts +15 -3
- package/src/providers/paddle/index.ts +10 -0
- package/src/providers/paypal/index.ts +10 -0
- package/src/providers/posthog/index.ts +10 -0
- package/src/providers/prisma/index.ts +10 -0
- package/src/providers/ramp/index.ts +10 -0
- package/src/providers/recurly/index.ts +10 -0
- package/src/providers/reddit/index.ts +1 -1
- package/src/providers/remote/index.ts +10 -0
- package/src/providers/render/index.ts +35 -0
- package/src/providers/replicate/index.ts +10 -0
- package/src/providers/resend/index.ts +10 -0
- package/src/providers/riverside/index.ts +10 -0
- package/src/providers/rootly/index.ts +10 -0
- package/src/providers/rudderstack/index.ts +10 -0
- package/src/providers/salesloft/index.ts +10 -0
- package/src/providers/sanity/index.ts +10 -0
- package/src/providers/scopes.ts +2 -0
- package/src/providers/sentry/index.ts +10 -0
- package/src/providers/setup/plan.ts +11 -0
- package/src/providers/setup/provider.ts +12 -0
- package/src/providers/shared/openapi.ts +70 -0
- package/src/providers/shared/slug.ts +28 -0
- package/src/providers/shared/vendor-operations.ts +43 -1
- package/src/providers/shared/vendor-spec.ts +98 -17
- package/src/providers/shortcut/index.ts +10 -0
- package/src/providers/slack/index.ts +2 -2
- package/src/providers/square/index.ts +10 -0
- package/src/providers/storyblok/index.ts +10 -0
- package/src/providers/stripe/index.ts +10 -0
- package/src/providers/supabase/index.ts +10 -0
- package/src/providers/tasks/store.ts +2 -7
- package/src/providers/tavily/index.ts +10 -0
- package/src/providers/todoist/index.ts +10 -0
- package/src/providers/untested.ts +105 -0
- package/src/providers/vault/provider.ts +1 -1
- package/src/providers/vercel/index.ts +10 -0
- package/src/providers/vimeo/index.ts +10 -0
- package/src/providers/webflow/index.ts +10 -0
- package/src/providers/whimsical/index.ts +10 -0
- package/src/providers/wix/index.ts +10 -0
- package/src/providers/workable/index.ts +10 -0
- package/src/providers/yahoo_mail/index.ts +73 -0
- package/src/providers/zapier/index.ts +10 -0
- package/src/providers/zoho_mail/index.ts +79 -0
- package/src/secrets/document.ts +1 -1
- package/src/server/attachments.ts +129 -5
- package/src/server/index.ts +3 -3
- package/src/server/mcp/instructions.ts +88 -18
- package/src/server/stdio.ts +1 -1
|
@@ -0,0 +1,755 @@
|
|
|
1
|
+
{
|
|
2
|
+
"openapi": "3.0.1",
|
|
3
|
+
"info": {
|
|
4
|
+
"contact": {
|
|
5
|
+
"x-twitter": "microsoft"
|
|
6
|
+
},
|
|
7
|
+
"description": "This OData service is located at https://graph.microsoft.com/v1.0",
|
|
8
|
+
"title": "OData Service for namespace microsoft.graph",
|
|
9
|
+
"version": "1.0.1",
|
|
10
|
+
"x-apisguru-categories": [
|
|
11
|
+
"developer_tools"
|
|
12
|
+
],
|
|
13
|
+
"x-logo": {
|
|
14
|
+
"url": "https://api.apis.guru/v2/cache/logo/https_twitter.com_microsoft_profile_image.png"
|
|
15
|
+
},
|
|
16
|
+
"x-ms-generated-by": {
|
|
17
|
+
"toolName": "Microsoft.OpenApi.OData",
|
|
18
|
+
"toolVersion": "1.0.9.0"
|
|
19
|
+
},
|
|
20
|
+
"x-origin": [
|
|
21
|
+
{
|
|
22
|
+
"format": "openapi",
|
|
23
|
+
"url": "https://raw.githubusercontent.com/microsoftgraph/msgraph-metadata/master/openapi/v1.0/openapi.yaml",
|
|
24
|
+
"version": "3.0"
|
|
25
|
+
}
|
|
26
|
+
],
|
|
27
|
+
"x-providerName": "microsoft.com",
|
|
28
|
+
"x-serviceName": "graph",
|
|
29
|
+
"x-tags": [
|
|
30
|
+
"Microsoft"
|
|
31
|
+
],
|
|
32
|
+
"x-preferred": true,
|
|
33
|
+
"x-vendored-from": "https://api.apis.guru/v2/specs/microsoft.com/graph/1.0.1/openapi.json",
|
|
34
|
+
"x-vendored-note": "Trimmed by src/providers/microsoft/specs/vendor.ts. Committed deliberately: a spec decides which paths are called with the operator token, so it must be reviewable rather than fetched at connect time."
|
|
35
|
+
},
|
|
36
|
+
"servers": [
|
|
37
|
+
{
|
|
38
|
+
"url": "https://graph.microsoft.com/v1.0"
|
|
39
|
+
}
|
|
40
|
+
],
|
|
41
|
+
"paths": {
|
|
42
|
+
"/me/todo/lists": {
|
|
43
|
+
"description": "Provides operations to manage the lists property of the microsoft.graph.todo entity.",
|
|
44
|
+
"get": {
|
|
45
|
+
"description": "Get a list of the todoTaskList objects and their properties.",
|
|
46
|
+
"externalDocs": {
|
|
47
|
+
"description": "Find more info here",
|
|
48
|
+
"url": "https://docs.microsoft.com/graph/api/todo-list-lists?view=graph-rest-1.0"
|
|
49
|
+
},
|
|
50
|
+
"operationId": "me.todo.ListLists",
|
|
51
|
+
"parameters": [
|
|
52
|
+
{
|
|
53
|
+
"$ref": "#/components/parameters/top"
|
|
54
|
+
},
|
|
55
|
+
{
|
|
56
|
+
"$ref": "#/components/parameters/search"
|
|
57
|
+
},
|
|
58
|
+
{
|
|
59
|
+
"$ref": "#/components/parameters/filter"
|
|
60
|
+
},
|
|
61
|
+
{
|
|
62
|
+
"description": "Order items by property values",
|
|
63
|
+
"explode": false,
|
|
64
|
+
"in": "query",
|
|
65
|
+
"name": "$orderby",
|
|
66
|
+
"schema": {
|
|
67
|
+
"items": {
|
|
68
|
+
"enum": [
|
|
69
|
+
"id",
|
|
70
|
+
"id desc",
|
|
71
|
+
"displayName",
|
|
72
|
+
"displayName desc",
|
|
73
|
+
"isOwner",
|
|
74
|
+
"isOwner desc",
|
|
75
|
+
"isShared",
|
|
76
|
+
"isShared desc",
|
|
77
|
+
"wellknownListName",
|
|
78
|
+
"wellknownListName desc"
|
|
79
|
+
],
|
|
80
|
+
"type": "string"
|
|
81
|
+
},
|
|
82
|
+
"type": "array",
|
|
83
|
+
"uniqueItems": true
|
|
84
|
+
},
|
|
85
|
+
"style": "form"
|
|
86
|
+
},
|
|
87
|
+
{
|
|
88
|
+
"description": "Select properties to be returned",
|
|
89
|
+
"explode": false,
|
|
90
|
+
"in": "query",
|
|
91
|
+
"name": "$select",
|
|
92
|
+
"schema": {
|
|
93
|
+
"items": {
|
|
94
|
+
"enum": [
|
|
95
|
+
"id",
|
|
96
|
+
"displayName",
|
|
97
|
+
"isOwner",
|
|
98
|
+
"isShared",
|
|
99
|
+
"wellknownListName",
|
|
100
|
+
"extensions",
|
|
101
|
+
"tasks"
|
|
102
|
+
],
|
|
103
|
+
"type": "string"
|
|
104
|
+
},
|
|
105
|
+
"type": "array",
|
|
106
|
+
"uniqueItems": true
|
|
107
|
+
},
|
|
108
|
+
"style": "form"
|
|
109
|
+
}
|
|
110
|
+
],
|
|
111
|
+
"responses": {
|
|
112
|
+
"200": {
|
|
113
|
+
"description": "Success. The response body is returned verbatim."
|
|
114
|
+
}
|
|
115
|
+
},
|
|
116
|
+
"summary": "List lists",
|
|
117
|
+
"tags": [
|
|
118
|
+
"me.todo"
|
|
119
|
+
],
|
|
120
|
+
"x-ms-docs-operation-type": "operation",
|
|
121
|
+
"x-ms-pageable": {
|
|
122
|
+
"nextLinkName": "@odata.nextLink",
|
|
123
|
+
"operationName": "listMore"
|
|
124
|
+
}
|
|
125
|
+
},
|
|
126
|
+
"post": {
|
|
127
|
+
"description": "Create a new lists object.",
|
|
128
|
+
"externalDocs": {
|
|
129
|
+
"description": "Find more info here",
|
|
130
|
+
"url": "https://docs.microsoft.com/graph/api/todo-post-lists?view=graph-rest-1.0"
|
|
131
|
+
},
|
|
132
|
+
"operationId": "me.todo.CreateLists",
|
|
133
|
+
"requestBody": {
|
|
134
|
+
"content": {
|
|
135
|
+
"application/json": {
|
|
136
|
+
"schema": {
|
|
137
|
+
"type": "object",
|
|
138
|
+
"description": "The fields this call writes. A message carries far more, and the rest is computed by Graph rather than set here.",
|
|
139
|
+
"properties": {
|
|
140
|
+
"displayName": {
|
|
141
|
+
"description": "The name of the task list.",
|
|
142
|
+
"nullable": true,
|
|
143
|
+
"type": "string"
|
|
144
|
+
}
|
|
145
|
+
},
|
|
146
|
+
"required": [
|
|
147
|
+
"displayName"
|
|
148
|
+
]
|
|
149
|
+
}
|
|
150
|
+
}
|
|
151
|
+
},
|
|
152
|
+
"description": "New navigation property",
|
|
153
|
+
"required": true
|
|
154
|
+
},
|
|
155
|
+
"responses": {
|
|
156
|
+
"200": {
|
|
157
|
+
"description": "Success. The response body is returned verbatim."
|
|
158
|
+
}
|
|
159
|
+
},
|
|
160
|
+
"summary": "Create todoTaskList",
|
|
161
|
+
"tags": [
|
|
162
|
+
"me.todo"
|
|
163
|
+
],
|
|
164
|
+
"x-ms-docs-operation-type": "operation"
|
|
165
|
+
}
|
|
166
|
+
},
|
|
167
|
+
"/me/todo/lists/{todoTaskList-id}/tasks": {
|
|
168
|
+
"description": "Provides operations to manage the tasks property of the microsoft.graph.todoTaskList entity.",
|
|
169
|
+
"get": {
|
|
170
|
+
"description": "Get the **todoTask** resources from the **tasks** navigation property of a specified todoTaskList.",
|
|
171
|
+
"externalDocs": {
|
|
172
|
+
"description": "Find more info here",
|
|
173
|
+
"url": "https://docs.microsoft.com/graph/api/todotasklist-list-tasks?view=graph-rest-1.0"
|
|
174
|
+
},
|
|
175
|
+
"operationId": "me.todo.lists.ListTasks",
|
|
176
|
+
"parameters": [
|
|
177
|
+
{
|
|
178
|
+
"description": "key: id of todoTaskList",
|
|
179
|
+
"in": "path",
|
|
180
|
+
"name": "todoTaskList-id",
|
|
181
|
+
"required": true,
|
|
182
|
+
"schema": {
|
|
183
|
+
"type": "string"
|
|
184
|
+
},
|
|
185
|
+
"x-ms-docs-key-type": "todoTaskList"
|
|
186
|
+
},
|
|
187
|
+
{
|
|
188
|
+
"$ref": "#/components/parameters/top"
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
"$ref": "#/components/parameters/search"
|
|
192
|
+
},
|
|
193
|
+
{
|
|
194
|
+
"$ref": "#/components/parameters/filter"
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"description": "Order items by property values",
|
|
198
|
+
"explode": false,
|
|
199
|
+
"in": "query",
|
|
200
|
+
"name": "$orderby",
|
|
201
|
+
"schema": {
|
|
202
|
+
"items": {
|
|
203
|
+
"enum": [
|
|
204
|
+
"id",
|
|
205
|
+
"id desc",
|
|
206
|
+
"body",
|
|
207
|
+
"body desc",
|
|
208
|
+
"bodyLastModifiedDateTime",
|
|
209
|
+
"bodyLastModifiedDateTime desc",
|
|
210
|
+
"categories",
|
|
211
|
+
"categories desc",
|
|
212
|
+
"completedDateTime",
|
|
213
|
+
"completedDateTime desc",
|
|
214
|
+
"createdDateTime",
|
|
215
|
+
"createdDateTime desc",
|
|
216
|
+
"dueDateTime",
|
|
217
|
+
"dueDateTime desc",
|
|
218
|
+
"hasAttachments",
|
|
219
|
+
"hasAttachments desc",
|
|
220
|
+
"importance",
|
|
221
|
+
"importance desc",
|
|
222
|
+
"isReminderOn",
|
|
223
|
+
"isReminderOn desc",
|
|
224
|
+
"lastModifiedDateTime",
|
|
225
|
+
"lastModifiedDateTime desc",
|
|
226
|
+
"recurrence",
|
|
227
|
+
"recurrence desc",
|
|
228
|
+
"reminderDateTime",
|
|
229
|
+
"reminderDateTime desc",
|
|
230
|
+
"startDateTime",
|
|
231
|
+
"startDateTime desc",
|
|
232
|
+
"status",
|
|
233
|
+
"status desc",
|
|
234
|
+
"title",
|
|
235
|
+
"title desc"
|
|
236
|
+
],
|
|
237
|
+
"type": "string"
|
|
238
|
+
},
|
|
239
|
+
"type": "array",
|
|
240
|
+
"uniqueItems": true
|
|
241
|
+
},
|
|
242
|
+
"style": "form"
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"description": "Select properties to be returned",
|
|
246
|
+
"explode": false,
|
|
247
|
+
"in": "query",
|
|
248
|
+
"name": "$select",
|
|
249
|
+
"schema": {
|
|
250
|
+
"items": {
|
|
251
|
+
"enum": [
|
|
252
|
+
"id",
|
|
253
|
+
"body",
|
|
254
|
+
"bodyLastModifiedDateTime",
|
|
255
|
+
"categories",
|
|
256
|
+
"completedDateTime",
|
|
257
|
+
"createdDateTime",
|
|
258
|
+
"dueDateTime",
|
|
259
|
+
"hasAttachments",
|
|
260
|
+
"importance",
|
|
261
|
+
"isReminderOn",
|
|
262
|
+
"lastModifiedDateTime",
|
|
263
|
+
"recurrence",
|
|
264
|
+
"reminderDateTime",
|
|
265
|
+
"startDateTime",
|
|
266
|
+
"status",
|
|
267
|
+
"title",
|
|
268
|
+
"attachments",
|
|
269
|
+
"attachmentSessions",
|
|
270
|
+
"checklistItems",
|
|
271
|
+
"extensions",
|
|
272
|
+
"linkedResources"
|
|
273
|
+
],
|
|
274
|
+
"type": "string"
|
|
275
|
+
},
|
|
276
|
+
"type": "array",
|
|
277
|
+
"uniqueItems": true
|
|
278
|
+
},
|
|
279
|
+
"style": "form"
|
|
280
|
+
}
|
|
281
|
+
],
|
|
282
|
+
"responses": {
|
|
283
|
+
"200": {
|
|
284
|
+
"description": "Success. The response body is returned verbatim."
|
|
285
|
+
}
|
|
286
|
+
},
|
|
287
|
+
"summary": "List tasks",
|
|
288
|
+
"tags": [
|
|
289
|
+
"me.todo"
|
|
290
|
+
],
|
|
291
|
+
"x-ms-docs-operation-type": "operation",
|
|
292
|
+
"x-ms-pageable": {
|
|
293
|
+
"nextLinkName": "@odata.nextLink",
|
|
294
|
+
"operationName": "listMore"
|
|
295
|
+
}
|
|
296
|
+
},
|
|
297
|
+
"post": {
|
|
298
|
+
"description": "Create a new task object in a specified todoTaskList.",
|
|
299
|
+
"externalDocs": {
|
|
300
|
+
"description": "Find more info here",
|
|
301
|
+
"url": "https://docs.microsoft.com/graph/api/todotasklist-post-tasks?view=graph-rest-1.0"
|
|
302
|
+
},
|
|
303
|
+
"operationId": "me.todo.lists.CreateTasks",
|
|
304
|
+
"requestBody": {
|
|
305
|
+
"content": {
|
|
306
|
+
"application/json": {
|
|
307
|
+
"schema": {
|
|
308
|
+
"type": "object",
|
|
309
|
+
"description": "The fields this call writes. A message carries far more, and the rest is computed by Graph rather than set here.",
|
|
310
|
+
"properties": {
|
|
311
|
+
"title": {
|
|
312
|
+
"description": "A brief description of the task.",
|
|
313
|
+
"nullable": true,
|
|
314
|
+
"type": "string"
|
|
315
|
+
},
|
|
316
|
+
"body": {
|
|
317
|
+
"anyOf": [
|
|
318
|
+
{
|
|
319
|
+
"$ref": "#/components/schemas/microsoft.graph.itemBody"
|
|
320
|
+
},
|
|
321
|
+
{
|
|
322
|
+
"nullable": true,
|
|
323
|
+
"type": "object"
|
|
324
|
+
}
|
|
325
|
+
],
|
|
326
|
+
"description": "The task body that typically contains information about the task."
|
|
327
|
+
},
|
|
328
|
+
"dueDateTime": {
|
|
329
|
+
"anyOf": [
|
|
330
|
+
{
|
|
331
|
+
"$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone"
|
|
332
|
+
},
|
|
333
|
+
{
|
|
334
|
+
"nullable": true,
|
|
335
|
+
"type": "object"
|
|
336
|
+
}
|
|
337
|
+
],
|
|
338
|
+
"description": "The date and time in the specified time zone that the task is to be finished."
|
|
339
|
+
},
|
|
340
|
+
"reminderDateTime": {
|
|
341
|
+
"anyOf": [
|
|
342
|
+
{
|
|
343
|
+
"$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone"
|
|
344
|
+
},
|
|
345
|
+
{
|
|
346
|
+
"nullable": true,
|
|
347
|
+
"type": "object"
|
|
348
|
+
}
|
|
349
|
+
],
|
|
350
|
+
"description": "The date and time in the specified time zone for a reminder alert of the task to occur."
|
|
351
|
+
},
|
|
352
|
+
"importance": {
|
|
353
|
+
"$ref": "#/components/schemas/microsoft.graph.importance"
|
|
354
|
+
},
|
|
355
|
+
"status": {
|
|
356
|
+
"$ref": "#/components/schemas/microsoft.graph.taskStatus"
|
|
357
|
+
},
|
|
358
|
+
"categories": {
|
|
359
|
+
"description": "The categories associated with the task. Each category corresponds to the displayName property of an outlookCategory that the user has defined.",
|
|
360
|
+
"items": {
|
|
361
|
+
"nullable": true,
|
|
362
|
+
"type": "string"
|
|
363
|
+
},
|
|
364
|
+
"type": "array"
|
|
365
|
+
}
|
|
366
|
+
},
|
|
367
|
+
"required": [
|
|
368
|
+
"title",
|
|
369
|
+
"body",
|
|
370
|
+
"dueDateTime",
|
|
371
|
+
"reminderDateTime",
|
|
372
|
+
"importance",
|
|
373
|
+
"status",
|
|
374
|
+
"categories"
|
|
375
|
+
]
|
|
376
|
+
}
|
|
377
|
+
}
|
|
378
|
+
},
|
|
379
|
+
"description": "New navigation property",
|
|
380
|
+
"required": true
|
|
381
|
+
},
|
|
382
|
+
"responses": {
|
|
383
|
+
"200": {
|
|
384
|
+
"description": "Success. The response body is returned verbatim."
|
|
385
|
+
}
|
|
386
|
+
},
|
|
387
|
+
"summary": "Create todoTask",
|
|
388
|
+
"tags": [
|
|
389
|
+
"me.todo"
|
|
390
|
+
],
|
|
391
|
+
"x-ms-docs-operation-type": "operation",
|
|
392
|
+
"parameters": [
|
|
393
|
+
{
|
|
394
|
+
"description": "key: id of todoTaskList",
|
|
395
|
+
"in": "path",
|
|
396
|
+
"name": "todoTaskList-id",
|
|
397
|
+
"required": true,
|
|
398
|
+
"schema": {
|
|
399
|
+
"type": "string"
|
|
400
|
+
},
|
|
401
|
+
"x-ms-docs-key-type": "todoTaskList"
|
|
402
|
+
}
|
|
403
|
+
]
|
|
404
|
+
}
|
|
405
|
+
},
|
|
406
|
+
"/me/todo/lists/{todoTaskList-id}/tasks/{todoTask-id}": {
|
|
407
|
+
"delete": {
|
|
408
|
+
"operationId": "me.todo.lists.DeleteTasks",
|
|
409
|
+
"parameters": [
|
|
410
|
+
{
|
|
411
|
+
"description": "key: id of todoTaskList",
|
|
412
|
+
"in": "path",
|
|
413
|
+
"name": "todoTaskList-id",
|
|
414
|
+
"required": true,
|
|
415
|
+
"schema": {
|
|
416
|
+
"type": "string"
|
|
417
|
+
},
|
|
418
|
+
"x-ms-docs-key-type": "todoTaskList"
|
|
419
|
+
},
|
|
420
|
+
{
|
|
421
|
+
"description": "key: id of todoTask",
|
|
422
|
+
"in": "path",
|
|
423
|
+
"name": "todoTask-id",
|
|
424
|
+
"required": true,
|
|
425
|
+
"schema": {
|
|
426
|
+
"type": "string"
|
|
427
|
+
},
|
|
428
|
+
"x-ms-docs-key-type": "todoTask"
|
|
429
|
+
},
|
|
430
|
+
{
|
|
431
|
+
"description": "ETag",
|
|
432
|
+
"in": "header",
|
|
433
|
+
"name": "If-Match",
|
|
434
|
+
"schema": {
|
|
435
|
+
"type": "string"
|
|
436
|
+
}
|
|
437
|
+
}
|
|
438
|
+
],
|
|
439
|
+
"responses": {
|
|
440
|
+
"200": {
|
|
441
|
+
"description": "Success. The response body is returned verbatim."
|
|
442
|
+
}
|
|
443
|
+
},
|
|
444
|
+
"summary": "Delete navigation property tasks for me",
|
|
445
|
+
"tags": [
|
|
446
|
+
"me.todo"
|
|
447
|
+
],
|
|
448
|
+
"x-ms-docs-operation-type": "operation"
|
|
449
|
+
},
|
|
450
|
+
"description": "Provides operations to manage the tasks property of the microsoft.graph.todoTaskList entity.",
|
|
451
|
+
"get": {
|
|
452
|
+
"description": "The tasks in this task list. Read-only. Nullable.",
|
|
453
|
+
"operationId": "me.todo.lists.GetTasks",
|
|
454
|
+
"parameters": [
|
|
455
|
+
{
|
|
456
|
+
"description": "key: id of todoTaskList",
|
|
457
|
+
"in": "path",
|
|
458
|
+
"name": "todoTaskList-id",
|
|
459
|
+
"required": true,
|
|
460
|
+
"schema": {
|
|
461
|
+
"type": "string"
|
|
462
|
+
},
|
|
463
|
+
"x-ms-docs-key-type": "todoTaskList"
|
|
464
|
+
},
|
|
465
|
+
{
|
|
466
|
+
"description": "key: id of todoTask",
|
|
467
|
+
"in": "path",
|
|
468
|
+
"name": "todoTask-id",
|
|
469
|
+
"required": true,
|
|
470
|
+
"schema": {
|
|
471
|
+
"type": "string"
|
|
472
|
+
},
|
|
473
|
+
"x-ms-docs-key-type": "todoTask"
|
|
474
|
+
},
|
|
475
|
+
{
|
|
476
|
+
"description": "Select properties to be returned",
|
|
477
|
+
"explode": false,
|
|
478
|
+
"in": "query",
|
|
479
|
+
"name": "$select",
|
|
480
|
+
"schema": {
|
|
481
|
+
"items": {
|
|
482
|
+
"enum": [
|
|
483
|
+
"id",
|
|
484
|
+
"body",
|
|
485
|
+
"bodyLastModifiedDateTime",
|
|
486
|
+
"categories",
|
|
487
|
+
"completedDateTime",
|
|
488
|
+
"createdDateTime",
|
|
489
|
+
"dueDateTime",
|
|
490
|
+
"hasAttachments",
|
|
491
|
+
"importance",
|
|
492
|
+
"isReminderOn",
|
|
493
|
+
"lastModifiedDateTime",
|
|
494
|
+
"recurrence",
|
|
495
|
+
"reminderDateTime",
|
|
496
|
+
"startDateTime",
|
|
497
|
+
"status",
|
|
498
|
+
"title",
|
|
499
|
+
"attachments",
|
|
500
|
+
"attachmentSessions",
|
|
501
|
+
"checklistItems",
|
|
502
|
+
"extensions",
|
|
503
|
+
"linkedResources"
|
|
504
|
+
],
|
|
505
|
+
"type": "string"
|
|
506
|
+
},
|
|
507
|
+
"type": "array",
|
|
508
|
+
"uniqueItems": true
|
|
509
|
+
},
|
|
510
|
+
"style": "form"
|
|
511
|
+
}
|
|
512
|
+
],
|
|
513
|
+
"responses": {
|
|
514
|
+
"200": {
|
|
515
|
+
"description": "Success. The response body is returned verbatim."
|
|
516
|
+
}
|
|
517
|
+
},
|
|
518
|
+
"summary": "Get tasks from me",
|
|
519
|
+
"tags": [
|
|
520
|
+
"me.todo"
|
|
521
|
+
],
|
|
522
|
+
"x-ms-docs-operation-type": "operation"
|
|
523
|
+
},
|
|
524
|
+
"patch": {
|
|
525
|
+
"operationId": "me.todo.lists.UpdateTasks",
|
|
526
|
+
"requestBody": {
|
|
527
|
+
"content": {
|
|
528
|
+
"application/json": {
|
|
529
|
+
"schema": {
|
|
530
|
+
"type": "object",
|
|
531
|
+
"description": "The fields this call writes. A message carries far more, and the rest is computed by Graph rather than set here.",
|
|
532
|
+
"properties": {
|
|
533
|
+
"title": {
|
|
534
|
+
"description": "A brief description of the task.",
|
|
535
|
+
"nullable": true,
|
|
536
|
+
"type": "string"
|
|
537
|
+
},
|
|
538
|
+
"body": {
|
|
539
|
+
"anyOf": [
|
|
540
|
+
{
|
|
541
|
+
"$ref": "#/components/schemas/microsoft.graph.itemBody"
|
|
542
|
+
},
|
|
543
|
+
{
|
|
544
|
+
"nullable": true,
|
|
545
|
+
"type": "object"
|
|
546
|
+
}
|
|
547
|
+
],
|
|
548
|
+
"description": "The task body that typically contains information about the task."
|
|
549
|
+
},
|
|
550
|
+
"dueDateTime": {
|
|
551
|
+
"anyOf": [
|
|
552
|
+
{
|
|
553
|
+
"$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone"
|
|
554
|
+
},
|
|
555
|
+
{
|
|
556
|
+
"nullable": true,
|
|
557
|
+
"type": "object"
|
|
558
|
+
}
|
|
559
|
+
],
|
|
560
|
+
"description": "The date and time in the specified time zone that the task is to be finished."
|
|
561
|
+
},
|
|
562
|
+
"reminderDateTime": {
|
|
563
|
+
"anyOf": [
|
|
564
|
+
{
|
|
565
|
+
"$ref": "#/components/schemas/microsoft.graph.dateTimeTimeZone"
|
|
566
|
+
},
|
|
567
|
+
{
|
|
568
|
+
"nullable": true,
|
|
569
|
+
"type": "object"
|
|
570
|
+
}
|
|
571
|
+
],
|
|
572
|
+
"description": "The date and time in the specified time zone for a reminder alert of the task to occur."
|
|
573
|
+
},
|
|
574
|
+
"importance": {
|
|
575
|
+
"$ref": "#/components/schemas/microsoft.graph.importance"
|
|
576
|
+
},
|
|
577
|
+
"status": {
|
|
578
|
+
"$ref": "#/components/schemas/microsoft.graph.taskStatus"
|
|
579
|
+
},
|
|
580
|
+
"categories": {
|
|
581
|
+
"description": "The categories associated with the task. Each category corresponds to the displayName property of an outlookCategory that the user has defined.",
|
|
582
|
+
"items": {
|
|
583
|
+
"nullable": true,
|
|
584
|
+
"type": "string"
|
|
585
|
+
},
|
|
586
|
+
"type": "array"
|
|
587
|
+
}
|
|
588
|
+
},
|
|
589
|
+
"required": [
|
|
590
|
+
"title",
|
|
591
|
+
"body",
|
|
592
|
+
"dueDateTime",
|
|
593
|
+
"reminderDateTime",
|
|
594
|
+
"importance",
|
|
595
|
+
"status",
|
|
596
|
+
"categories"
|
|
597
|
+
]
|
|
598
|
+
}
|
|
599
|
+
}
|
|
600
|
+
},
|
|
601
|
+
"description": "New navigation property values",
|
|
602
|
+
"required": true
|
|
603
|
+
},
|
|
604
|
+
"responses": {
|
|
605
|
+
"200": {
|
|
606
|
+
"description": "Success. The response body is returned verbatim."
|
|
607
|
+
}
|
|
608
|
+
},
|
|
609
|
+
"summary": "Update the navigation property tasks in me",
|
|
610
|
+
"tags": [
|
|
611
|
+
"me.todo"
|
|
612
|
+
],
|
|
613
|
+
"x-ms-docs-operation-type": "operation",
|
|
614
|
+
"parameters": [
|
|
615
|
+
{
|
|
616
|
+
"description": "key: id of todoTaskList",
|
|
617
|
+
"in": "path",
|
|
618
|
+
"name": "todoTaskList-id",
|
|
619
|
+
"required": true,
|
|
620
|
+
"schema": {
|
|
621
|
+
"type": "string"
|
|
622
|
+
},
|
|
623
|
+
"x-ms-docs-key-type": "todoTaskList"
|
|
624
|
+
},
|
|
625
|
+
{
|
|
626
|
+
"description": "key: id of todoTask",
|
|
627
|
+
"in": "path",
|
|
628
|
+
"name": "todoTask-id",
|
|
629
|
+
"required": true,
|
|
630
|
+
"schema": {
|
|
631
|
+
"type": "string"
|
|
632
|
+
},
|
|
633
|
+
"x-ms-docs-key-type": "todoTask"
|
|
634
|
+
}
|
|
635
|
+
]
|
|
636
|
+
}
|
|
637
|
+
}
|
|
638
|
+
},
|
|
639
|
+
"components": {
|
|
640
|
+
"parameters": {
|
|
641
|
+
"filter": {
|
|
642
|
+
"description": "Filter items by property values",
|
|
643
|
+
"explode": false,
|
|
644
|
+
"in": "query",
|
|
645
|
+
"name": "$filter",
|
|
646
|
+
"schema": {
|
|
647
|
+
"type": "string"
|
|
648
|
+
},
|
|
649
|
+
"style": "form"
|
|
650
|
+
},
|
|
651
|
+
"search": {
|
|
652
|
+
"description": "Search items by search phrases",
|
|
653
|
+
"explode": false,
|
|
654
|
+
"in": "query",
|
|
655
|
+
"name": "$search",
|
|
656
|
+
"schema": {
|
|
657
|
+
"type": "string"
|
|
658
|
+
},
|
|
659
|
+
"style": "form"
|
|
660
|
+
},
|
|
661
|
+
"top": {
|
|
662
|
+
"description": "Show only the first n items",
|
|
663
|
+
"example": 50,
|
|
664
|
+
"explode": false,
|
|
665
|
+
"in": "query",
|
|
666
|
+
"name": "$top",
|
|
667
|
+
"schema": {
|
|
668
|
+
"minimum": 0,
|
|
669
|
+
"type": "integer"
|
|
670
|
+
},
|
|
671
|
+
"style": "form"
|
|
672
|
+
}
|
|
673
|
+
},
|
|
674
|
+
"schemas": {
|
|
675
|
+
"microsoft.graph.bodyType": {
|
|
676
|
+
"enum": [
|
|
677
|
+
"text",
|
|
678
|
+
"html"
|
|
679
|
+
],
|
|
680
|
+
"title": "bodyType",
|
|
681
|
+
"type": "string"
|
|
682
|
+
},
|
|
683
|
+
"microsoft.graph.dateTimeTimeZone": {
|
|
684
|
+
"properties": {
|
|
685
|
+
"@odata.type": {
|
|
686
|
+
"type": "string"
|
|
687
|
+
},
|
|
688
|
+
"dateTime": {
|
|
689
|
+
"description": "A single point of time in a combined date and time representation ({date}T{time}; for example, 2017-08-29T04:00:00.0000000).",
|
|
690
|
+
"type": "string"
|
|
691
|
+
},
|
|
692
|
+
"timeZone": {
|
|
693
|
+
"description": "Represents a time zone, for example, 'Pacific Standard Time'. See below for more possible values.",
|
|
694
|
+
"nullable": true,
|
|
695
|
+
"type": "string"
|
|
696
|
+
}
|
|
697
|
+
},
|
|
698
|
+
"required": [
|
|
699
|
+
"@odata.type"
|
|
700
|
+
],
|
|
701
|
+
"title": "dateTimeTimeZone",
|
|
702
|
+
"type": "object"
|
|
703
|
+
},
|
|
704
|
+
"microsoft.graph.importance": {
|
|
705
|
+
"enum": [
|
|
706
|
+
"low",
|
|
707
|
+
"normal",
|
|
708
|
+
"high"
|
|
709
|
+
],
|
|
710
|
+
"title": "importance",
|
|
711
|
+
"type": "string"
|
|
712
|
+
},
|
|
713
|
+
"microsoft.graph.itemBody": {
|
|
714
|
+
"properties": {
|
|
715
|
+
"@odata.type": {
|
|
716
|
+
"type": "string"
|
|
717
|
+
},
|
|
718
|
+
"content": {
|
|
719
|
+
"description": "The content of the item.",
|
|
720
|
+
"nullable": true,
|
|
721
|
+
"type": "string"
|
|
722
|
+
},
|
|
723
|
+
"contentType": {
|
|
724
|
+
"anyOf": [
|
|
725
|
+
{
|
|
726
|
+
"$ref": "#/components/schemas/microsoft.graph.bodyType"
|
|
727
|
+
},
|
|
728
|
+
{
|
|
729
|
+
"nullable": true,
|
|
730
|
+
"type": "object"
|
|
731
|
+
}
|
|
732
|
+
],
|
|
733
|
+
"description": "The type of the content. Possible values are text and html."
|
|
734
|
+
}
|
|
735
|
+
},
|
|
736
|
+
"required": [
|
|
737
|
+
"@odata.type"
|
|
738
|
+
],
|
|
739
|
+
"title": "itemBody",
|
|
740
|
+
"type": "object"
|
|
741
|
+
},
|
|
742
|
+
"microsoft.graph.taskStatus": {
|
|
743
|
+
"enum": [
|
|
744
|
+
"notStarted",
|
|
745
|
+
"inProgress",
|
|
746
|
+
"completed",
|
|
747
|
+
"waitingOnOthers",
|
|
748
|
+
"deferred"
|
|
749
|
+
],
|
|
750
|
+
"title": "taskStatus",
|
|
751
|
+
"type": "string"
|
|
752
|
+
}
|
|
753
|
+
}
|
|
754
|
+
}
|
|
755
|
+
}
|