@lanes-sh/link 0.1.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/LICENSE +202 -0
- package/README.md +144 -0
- package/bin/lanes +42 -0
- package/instructions/agents/lanes-link-scout.md +73 -0
- package/instructions/skills/lanes-link/SKILL.md +187 -0
- package/package.json +95 -0
- package/src/audit/chain.ts +278 -0
- package/src/audit/conformance.ts +374 -0
- package/src/audit/fanout.ts +97 -0
- package/src/audit/index.ts +218 -0
- package/src/audit/stdout.ts +60 -0
- package/src/auth/index.ts +220 -0
- package/src/auth/oauth/metadata.ts +75 -0
- package/src/auth/oauth/server.ts +385 -0
- package/src/auth/oauth/store.ts +215 -0
- package/src/auth/oidc.ts +206 -0
- package/src/auth/remote.ts +72 -0
- package/src/cli/argv.ts +94 -0
- package/src/cli/callback-page.ts +256 -0
- package/src/cli/commands/connect/accounts.ts +94 -0
- package/src/cli/commands/connect/authorise.ts +298 -0
- package/src/cli/commands/connect/client.ts +284 -0
- package/src/cli/commands/connect/index.ts +398 -0
- package/src/cli/commands/connect/outcome.ts +119 -0
- package/src/cli/commands/connect/requirements.ts +103 -0
- package/src/cli/commands/connect/scopes-gate.ts +146 -0
- package/src/cli/commands/connect/settle.ts +136 -0
- package/src/cli/commands/connect/setup.ts +276 -0
- package/src/cli/commands/mcp/assets.ts +189 -0
- package/src/cli/commands/mcp/harnesses.ts +143 -0
- package/src/cli/commands/mcp/list.ts +70 -0
- package/src/cli/commands/mcp/register.ts +199 -0
- package/src/cli/commands/mcp/stdio.ts +57 -0
- package/src/cli/commands/mcp.ts +22 -0
- package/src/cli/commands/operate/attach.ts +121 -0
- package/src/cli/commands/operate/audit.ts +119 -0
- package/src/cli/commands/operate/inspect.ts +355 -0
- package/src/cli/commands/operate/outputs.ts +206 -0
- package/src/cli/commands/operate/policy.ts +80 -0
- package/src/cli/commands/operate/serve.ts +55 -0
- package/src/cli/commands/operate/status.ts +133 -0
- package/src/cli/commands/operate/token.ts +70 -0
- package/src/cli/commands/operate.ts +27 -0
- package/src/cli/commands/owner/memory.ts +110 -0
- package/src/cli/commands/owner/shared.ts +125 -0
- package/src/cli/commands/owner/skills.ts +92 -0
- package/src/cli/commands/owner/vault.ts +140 -0
- package/src/cli/commands/owner.ts +46 -0
- package/src/cli/commands/profile/removal.ts +278 -0
- package/src/cli/commands/profile/remove.ts +315 -0
- package/src/cli/commands/profile.ts +156 -0
- package/src/cli/commands/secrets.ts +176 -0
- package/src/cli/commands/setup.ts +150 -0
- package/src/cli/commands/target.ts +310 -0
- package/src/cli/config-edit.ts +397 -0
- package/src/cli/endpoint-url.ts +77 -0
- package/src/cli/identity.ts +109 -0
- package/src/cli/lanes.ts +78 -0
- package/src/cli/main.ts +333 -0
- package/src/cli/oauth-error.ts +13 -0
- package/src/cli/oauth-exchange.ts +146 -0
- package/src/cli/oauth.ts +354 -0
- package/src/cli/output.ts +184 -0
- package/src/cli/prompt.ts +180 -0
- package/src/cli/publish.ts +185 -0
- package/src/cli/runtime/discovery.ts +123 -0
- package/src/cli/runtime/open.ts +342 -0
- package/src/cli/runtime/registry.ts +185 -0
- package/src/cli/runtime/select.ts +124 -0
- package/src/cli/runtime.ts +34 -0
- package/src/cli/scopes.ts +63 -0
- package/src/cli/usage.ts +111 -0
- package/src/cli/version.ts +25 -0
- package/src/connectivity/auth/README.md +36 -0
- package/src/connectivity/auth/api-key/index.ts +43 -0
- package/src/connectivity/auth/authorize.ts +49 -0
- package/src/connectivity/auth/basic/index.ts +68 -0
- package/src/connectivity/auth/bearer/index.ts +13 -0
- package/src/connectivity/auth/credential.ts +19 -0
- package/src/connectivity/auth/header/index.ts +18 -0
- package/src/connectivity/auth/index.ts +35 -0
- package/src/connectivity/auth/none/index.ts +12 -0
- package/src/connectivity/auth/oauth-authcode/broker.ts +261 -0
- package/src/connectivity/auth/oauth-authcode/index.ts +64 -0
- package/src/connectivity/auth/oauth-authcode/provider.ts +279 -0
- package/src/connectivity/auth/oauth-authcode/refresh.ts +118 -0
- package/src/connectivity/auth/resolve.ts +61 -0
- package/src/connectivity/auth/strategy/index.ts +14 -0
- package/src/connectivity/capability.ts +164 -0
- package/src/connectivity/connector.ts +175 -0
- package/src/connectivity/context.ts +77 -0
- package/src/connectivity/index.ts +94 -0
- package/src/connectivity/mail/attachments.ts +368 -0
- package/src/connectivity/mail/compose.ts +73 -0
- package/src/connectivity/mail/index.ts +40 -0
- package/src/connectivity/mail/message.ts +82 -0
- package/src/connectivity/mail/nodemailer.d.ts +83 -0
- package/src/connectivity/mail/staging.ts +143 -0
- package/src/connectivity/mail/url.ts +301 -0
- package/src/connectivity/manifest/auth.ts +135 -0
- package/src/connectivity/manifest/bundles.ts +23 -0
- package/src/connectivity/manifest/connector.ts +168 -0
- package/src/connectivity/manifest/credential-ref.ts +73 -0
- package/src/connectivity/manifest/identity.ts +43 -0
- package/src/connectivity/manifest/index.ts +46 -0
- package/src/connectivity/manifest/primitives.ts +20 -0
- package/src/connectivity/manifest/provider.ts +208 -0
- package/src/connectivity/manifest/requirements.ts +146 -0
- package/src/connectivity/manifest/setup.ts +55 -0
- package/src/connectivity/provider.ts +163 -0
- package/src/connectivity/transports/README.md +33 -0
- package/src/connectivity/transports/composite/index.ts +68 -0
- package/src/connectivity/transports/dav/calendar.ts +217 -0
- package/src/connectivity/transports/dav/capabilities.ts +151 -0
- package/src/connectivity/transports/dav/client.ts +226 -0
- package/src/connectivity/transports/dav/contacts.ts +75 -0
- package/src/connectivity/transports/dav/ical.ts +412 -0
- package/src/connectivity/transports/dav/index.ts +143 -0
- package/src/connectivity/transports/dav/operations.ts +43 -0
- package/src/connectivity/transports/dav/request.ts +161 -0
- package/src/connectivity/transports/dav/xml.ts +123 -0
- package/src/connectivity/transports/factory.ts +181 -0
- package/src/connectivity/transports/fs/capabilities.ts +88 -0
- package/src/connectivity/transports/fs/commands.ts +258 -0
- package/src/connectivity/transports/fs/index.ts +121 -0
- package/src/connectivity/transports/fs/operations.ts +45 -0
- package/src/connectivity/transports/fs/paths.ts +120 -0
- package/src/connectivity/transports/fs/result.ts +12 -0
- package/src/connectivity/transports/http/index.ts +255 -0
- package/src/connectivity/transports/imap/attachment.ts +166 -0
- package/src/connectivity/transports/imap/capabilities.ts +158 -0
- package/src/connectivity/transports/imap/client.ts +398 -0
- package/src/connectivity/transports/imap/commands.ts +385 -0
- package/src/connectivity/transports/imap/index.ts +152 -0
- package/src/connectivity/transports/imap/operations.ts +64 -0
- package/src/connectivity/transports/imap/parse.ts +130 -0
- package/src/connectivity/transports/imap/parser.ts +272 -0
- package/src/connectivity/transports/imap/result.ts +15 -0
- package/src/connectivity/transports/imap/send.ts +92 -0
- package/src/connectivity/transports/imap/socket.ts +111 -0
- package/src/connectivity/transports/imap/utf7.ts +136 -0
- package/src/connectivity/transports/index.ts +20 -0
- package/src/connectivity/transports/local/index.ts +173 -0
- package/src/connectivity/transports/mcp/index.ts +215 -0
- package/src/deployments/README.md +63 -0
- package/src/deployments/adapters/audit-blob.ts +203 -0
- package/src/deployments/adapters/filesystem.ts +184 -0
- package/src/deployments/adapters/gcp-secret-manager.ts +492 -0
- package/src/deployments/adapters/gcs.ts +191 -0
- package/src/deployments/adapters/otlp.ts +128 -0
- package/src/deployments/adapters/s3.ts +195 -0
- package/src/deployments/azure/README.md +21 -0
- package/src/deployments/bootstrap.ts +177 -0
- package/src/deployments/deploy.ts +290 -0
- package/src/deployments/driver.ts +157 -0
- package/src/deployments/drivers.ts +35 -0
- package/src/deployments/gcp/Dockerfile +70 -0
- package/src/deployments/gcp/cloudbuild.yaml +31 -0
- package/src/deployments/gcp/driver.ts +175 -0
- package/src/deployments/gcp/gcloud.ts +178 -0
- package/src/deployments/gcp/provision.ts +290 -0
- package/src/deployments/gcp/survey.ts +319 -0
- package/src/deployments/local/README.md +12 -0
- package/src/deployments/prepare.ts +257 -0
- package/src/deployments/steps.ts +137 -0
- package/src/deployments/target.ts +295 -0
- package/src/deployments/upload.ts +207 -0
- package/src/dispatch/context.ts +195 -0
- package/src/dispatch/dispatch.ts +350 -0
- package/src/dispatch/index.ts +32 -0
- package/src/dispatch/staging.ts +102 -0
- package/src/policy/index.ts +179 -0
- package/src/policy/limits.ts +77 -0
- package/src/profile/authorization.ts +81 -0
- package/src/profile/files.ts +71 -0
- package/src/profile/index.ts +76 -0
- package/src/profile/layout.ts +123 -0
- package/src/profile/load.ts +199 -0
- package/src/profile/primitives.ts +45 -0
- package/src/profile/schema.ts +347 -0
- package/src/profile/secret-detection.ts +162 -0
- package/src/profile/targets.ts +152 -0
- package/src/profile/workspace.ts +262 -0
- package/src/providers/custom/index.ts +21 -0
- package/src/providers/custom/load.ts +115 -0
- package/src/providers/custom/template.ts +156 -0
- package/src/providers/example/provider.ts +207 -0
- package/src/providers/google/calendar/index.ts +66 -0
- package/src/providers/google/calendar/redact.ts +40 -0
- package/src/providers/google/contacts/index.ts +50 -0
- package/src/providers/google/contacts/redact.ts +21 -0
- package/src/providers/google/docs/index.ts +45 -0
- package/src/providers/google/drive/hints.ts +28 -0
- package/src/providers/google/drive/index.ts +34 -0
- package/src/providers/google/drive/redact.ts +39 -0
- package/src/providers/google/drive-mcp/index.ts +21 -0
- package/src/providers/google/gmail/api.ts +42 -0
- package/src/providers/google/gmail/attachment.ts +142 -0
- package/src/providers/google/gmail/hints.ts +55 -0
- package/src/providers/google/gmail/index.ts +112 -0
- package/src/providers/google/gmail/redact.ts +56 -0
- package/src/providers/google/gmail/send.ts +365 -0
- package/src/providers/google/gmail-mcp/index.ts +35 -0
- package/src/providers/google/index.ts +10 -0
- package/src/providers/google/shared/oauth.ts +122 -0
- package/src/providers/google/shared/scopes.ts +99 -0
- package/src/providers/google/shared/setup.ts +80 -0
- package/src/providers/google/sheets/hints.ts +45 -0
- package/src/providers/google/sheets/index.ts +70 -0
- package/src/providers/google/sheets/redact.ts +45 -0
- package/src/providers/google/specs/calendar.v3.json +1829 -0
- package/src/providers/google/specs/docs.v1.json +381 -0
- package/src/providers/google/specs/drive.v3.json +2208 -0
- package/src/providers/google/specs/gmail.v1.json +2578 -0
- package/src/providers/google/specs/people.v1.json +506 -0
- package/src/providers/google/specs/sheets.v4.json +1269 -0
- package/src/providers/google/specs/tasks.v1.json +840 -0
- package/src/providers/google/specs/vendor.ts +661 -0
- package/src/providers/google/tasks/index.ts +53 -0
- package/src/providers/google/tasks/redact.ts +34 -0
- package/src/providers/harness.ts +95 -0
- package/src/providers/icloud/calendar/index.ts +27 -0
- package/src/providers/icloud/contacts/index.ts +17 -0
- package/src/providers/icloud/drive/index.ts +47 -0
- package/src/providers/icloud/index.ts +8 -0
- package/src/providers/icloud/mail/index.ts +37 -0
- package/src/providers/icloud/shared/setup.ts +66 -0
- package/src/providers/index.ts +93 -0
- package/src/providers/linear/index.ts +11 -0
- package/src/providers/linear/scopes.ts +7 -0
- package/src/providers/memory/provider.ts +429 -0
- package/src/providers/notion/index.ts +19 -0
- package/src/providers/owner.ts +49 -0
- package/src/providers/scopes.ts +26 -0
- package/src/providers/setup/plan.ts +141 -0
- package/src/providers/setup/provider.ts +323 -0
- package/src/providers/shared/frontmatter.ts +119 -0
- package/src/providers/skills/provider.ts +283 -0
- package/src/providers/skills/store.ts +252 -0
- package/src/providers/vault/provider.ts +194 -0
- package/src/registry/index.ts +36 -0
- package/src/registry/policy-bridge.ts +32 -0
- package/src/registry/reconcile.ts +313 -0
- package/src/registry/registry.ts +240 -0
- package/src/secrets/document.ts +293 -0
- package/src/secrets/index.ts +154 -0
- package/src/secrets/system.ts +173 -0
- package/src/secrets/vault.ts +336 -0
- package/src/server/attachments.ts +197 -0
- package/src/server/container.ts +96 -0
- package/src/server/edge.ts +53 -0
- package/src/server/endpoint.ts +352 -0
- package/src/server/generations.ts +362 -0
- package/src/server/harness.ts +400 -0
- package/src/server/index.ts +331 -0
- package/src/server/logging.ts +41 -0
- package/src/server/mcp/build.ts +68 -0
- package/src/server/mcp/icon.ts +145 -0
- package/src/server/mcp/index.ts +32 -0
- package/src/server/mcp/instructions.ts +245 -0
- package/src/server/mcp/naming.ts +39 -0
- package/src/server/mcp/prompts.ts +78 -0
- package/src/server/mcp/resources.ts +106 -0
- package/src/server/mcp/routing.ts +117 -0
- package/src/server/mcp/schema.ts +78 -0
- package/src/server/mcp/tools.ts +186 -0
- package/src/server/mcp/visibility.ts +132 -0
- package/src/server/oauth.ts +222 -0
- package/src/server/rebinding.ts +53 -0
- package/src/server/stdio.ts +192 -0
- package/src/stores/blobs/conformance.ts +223 -0
- package/src/stores/blobs/index.ts +125 -0
- package/src/stores/blobs/testing.ts +49 -0
- package/src/stores/state/index.ts +247 -0
- package/src/stores/state/keys.ts +68 -0
- package/src/stores/state/testing.ts +41 -0
|
@@ -0,0 +1,1829 @@
|
|
|
1
|
+
{
|
|
2
|
+
"openapi": "3.0.0",
|
|
3
|
+
"info": {
|
|
4
|
+
"contact": {
|
|
5
|
+
"name": "Google",
|
|
6
|
+
"url": "https://google.com",
|
|
7
|
+
"x-twitter": "youtube"
|
|
8
|
+
},
|
|
9
|
+
"description": "Manipulates events and other calendar data.",
|
|
10
|
+
"license": {
|
|
11
|
+
"name": "Creative Commons Attribution 3.0",
|
|
12
|
+
"url": "http://creativecommons.org/licenses/by/3.0/"
|
|
13
|
+
},
|
|
14
|
+
"termsOfService": "https://developers.google.com/terms/",
|
|
15
|
+
"title": "Calendar API",
|
|
16
|
+
"version": "v3",
|
|
17
|
+
"x-apiClientRegistration": {
|
|
18
|
+
"url": "https://console.developers.google.com"
|
|
19
|
+
},
|
|
20
|
+
"x-apisguru-categories": [
|
|
21
|
+
"analytics",
|
|
22
|
+
"media"
|
|
23
|
+
],
|
|
24
|
+
"x-logo": {
|
|
25
|
+
"url": "https://api.apis.guru/v2/cache/logo/https_www.google.com_images_branding_googlelogo_2x_googlelogo_color_272x92dp.png"
|
|
26
|
+
},
|
|
27
|
+
"x-origin": [
|
|
28
|
+
{
|
|
29
|
+
"format": "google",
|
|
30
|
+
"url": "https://calendar-json.googleapis.com/$discovery/rest?version=v3",
|
|
31
|
+
"version": "v1"
|
|
32
|
+
}
|
|
33
|
+
],
|
|
34
|
+
"x-providerName": "googleapis.com",
|
|
35
|
+
"x-serviceName": "calendar",
|
|
36
|
+
"x-vendored-from": "https://api.apis.guru/v2/specs/googleapis.com/calendar/v3/openapi.json",
|
|
37
|
+
"x-vendored-note": "Trimmed by src/providers/google/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."
|
|
38
|
+
},
|
|
39
|
+
"servers": [
|
|
40
|
+
{
|
|
41
|
+
"url": "https://www.googleapis.com/calendar/v3"
|
|
42
|
+
}
|
|
43
|
+
],
|
|
44
|
+
"paths": {
|
|
45
|
+
"/calendars/{calendarId}/events": {
|
|
46
|
+
"get": {
|
|
47
|
+
"description": "Returns events on the specified calendar.",
|
|
48
|
+
"operationId": "calendar.events.list",
|
|
49
|
+
"parameters": [
|
|
50
|
+
{
|
|
51
|
+
"description": "Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the \"primary\" keyword.",
|
|
52
|
+
"in": "path",
|
|
53
|
+
"name": "calendarId",
|
|
54
|
+
"required": true,
|
|
55
|
+
"schema": {
|
|
56
|
+
"type": "string"
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"description": "Deprecated and ignored. A value will always be returned in the email field for the organizer, creator and attendees, even if no real email address is available (i.e. a generated, non-working value will be provided).",
|
|
61
|
+
"in": "query",
|
|
62
|
+
"name": "alwaysIncludeEmail",
|
|
63
|
+
"schema": {
|
|
64
|
+
"type": "boolean"
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
"description": "Event types to return. Optional. Possible values are: \n- \"default\" \n- \"focusTime\" \n- \"outOfOffice\"This parameter can be repeated multiple times to return events of different types. Currently, this is the only allowed value for this field: \n- [\"default\", \"focusTime\", \"outOfOffice\"] This value will be the default.\n\nIf you're enrolled in the Working Location developer preview program, in addition to the default value above you can also set the \"workingLocation\" event type: \n- [\"default\", \"focusTime\", \"outOfOffice\", \"workingLocation\"] \n- [\"workingLocation\"] Additional combinations of these 4 event types will be made available in later releases. Developer Preview.",
|
|
69
|
+
"explode": true,
|
|
70
|
+
"in": "query",
|
|
71
|
+
"name": "eventTypes",
|
|
72
|
+
"schema": {
|
|
73
|
+
"items": {
|
|
74
|
+
"type": "string"
|
|
75
|
+
},
|
|
76
|
+
"type": "array"
|
|
77
|
+
},
|
|
78
|
+
"style": "form"
|
|
79
|
+
},
|
|
80
|
+
{
|
|
81
|
+
"description": "Specifies an event ID in the iCalendar format to be provided in the response. Optional. Use this if you want to search for an event by its iCalendar ID.",
|
|
82
|
+
"in": "query",
|
|
83
|
+
"name": "iCalUID",
|
|
84
|
+
"schema": {
|
|
85
|
+
"type": "string"
|
|
86
|
+
}
|
|
87
|
+
},
|
|
88
|
+
{
|
|
89
|
+
"description": "The maximum number of attendees to include in the response. If there are more than the specified number of attendees, only the participant is returned. Optional.",
|
|
90
|
+
"in": "query",
|
|
91
|
+
"name": "maxAttendees",
|
|
92
|
+
"schema": {
|
|
93
|
+
"minimum": 1,
|
|
94
|
+
"type": "integer"
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
{
|
|
98
|
+
"description": "Maximum number of events returned on one result page. The number of events in the resulting page may be less than this value, or none at all, even if there are more events matching the query. Incomplete pages can be detected by a non-empty nextPageToken field in the response. By default the value is 250 events. The page size can never be larger than 2500 events. Optional.",
|
|
99
|
+
"in": "query",
|
|
100
|
+
"name": "maxResults",
|
|
101
|
+
"schema": {
|
|
102
|
+
"minimum": 1,
|
|
103
|
+
"type": "integer"
|
|
104
|
+
}
|
|
105
|
+
},
|
|
106
|
+
{
|
|
107
|
+
"description": "The order of the events returned in the result. Optional. The default is an unspecified, stable order.",
|
|
108
|
+
"in": "query",
|
|
109
|
+
"name": "orderBy",
|
|
110
|
+
"schema": {
|
|
111
|
+
"enum": [
|
|
112
|
+
"startTime",
|
|
113
|
+
"updated"
|
|
114
|
+
],
|
|
115
|
+
"type": "string"
|
|
116
|
+
}
|
|
117
|
+
},
|
|
118
|
+
{
|
|
119
|
+
"description": "Token specifying which result page to return. Optional.",
|
|
120
|
+
"in": "query",
|
|
121
|
+
"name": "pageToken",
|
|
122
|
+
"schema": {
|
|
123
|
+
"type": "string"
|
|
124
|
+
}
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
"description": "Extended properties constraint specified as propertyName=value. Matches only private properties. This parameter might be repeated multiple times to return events that match all given constraints.",
|
|
128
|
+
"explode": true,
|
|
129
|
+
"in": "query",
|
|
130
|
+
"name": "privateExtendedProperty",
|
|
131
|
+
"schema": {
|
|
132
|
+
"items": {
|
|
133
|
+
"type": "string"
|
|
134
|
+
},
|
|
135
|
+
"type": "array"
|
|
136
|
+
},
|
|
137
|
+
"style": "form"
|
|
138
|
+
},
|
|
139
|
+
{
|
|
140
|
+
"description": "Free text search terms to find events that match these terms in the following fields: summary, description, location, attendee's displayName, attendee's email. Optional.",
|
|
141
|
+
"in": "query",
|
|
142
|
+
"name": "q",
|
|
143
|
+
"schema": {
|
|
144
|
+
"type": "string"
|
|
145
|
+
}
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
"description": "Extended properties constraint specified as propertyName=value. Matches only shared properties. This parameter might be repeated multiple times to return events that match all given constraints.",
|
|
149
|
+
"explode": true,
|
|
150
|
+
"in": "query",
|
|
151
|
+
"name": "sharedExtendedProperty",
|
|
152
|
+
"schema": {
|
|
153
|
+
"items": {
|
|
154
|
+
"type": "string"
|
|
155
|
+
},
|
|
156
|
+
"type": "array"
|
|
157
|
+
},
|
|
158
|
+
"style": "form"
|
|
159
|
+
},
|
|
160
|
+
{
|
|
161
|
+
"description": "Whether to include deleted events (with status equals \"cancelled\") in the result. Cancelled instances of recurring events (but not the underlying recurring event) will still be included if showDeleted and singleEvents are both False. If showDeleted and singleEvents are both True, only single instances of deleted events (but not the underlying recurring events) are returned. Optional. The default is False.",
|
|
162
|
+
"in": "query",
|
|
163
|
+
"name": "showDeleted",
|
|
164
|
+
"schema": {
|
|
165
|
+
"type": "boolean"
|
|
166
|
+
}
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
"description": "Whether to include hidden invitations in the result. Optional. The default is False.",
|
|
170
|
+
"in": "query",
|
|
171
|
+
"name": "showHiddenInvitations",
|
|
172
|
+
"schema": {
|
|
173
|
+
"type": "boolean"
|
|
174
|
+
}
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"description": "Whether to expand recurring events into instances and only return single one-off events and instances of recurring events, but not the underlying recurring events themselves. Optional. The default is False.",
|
|
178
|
+
"in": "query",
|
|
179
|
+
"name": "singleEvents",
|
|
180
|
+
"schema": {
|
|
181
|
+
"type": "boolean"
|
|
182
|
+
}
|
|
183
|
+
},
|
|
184
|
+
{
|
|
185
|
+
"description": "Token obtained from the nextSyncToken field returned on the last page of results from the previous list request. It makes the result of this list request contain only entries that have changed since then. All events deleted since the previous list request will always be in the result set and it is not allowed to set showDeleted to False.\nThere are several query parameters that cannot be specified together with nextSyncToken to ensure consistency of the client state.\n\nThese are: \n- iCalUID \n- orderBy \n- privateExtendedProperty \n- q \n- sharedExtendedProperty \n- timeMin \n- timeMax \n- updatedMin If the syncToken expires, the server will respond with a 410 GONE response code and the client should clear its storage and perform a full synchronization without any syncToken.\nLearn more about incremental synchronization.\nOptional. The default is to return all entries.",
|
|
186
|
+
"in": "query",
|
|
187
|
+
"name": "syncToken",
|
|
188
|
+
"schema": {
|
|
189
|
+
"type": "string"
|
|
190
|
+
}
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
"description": "Upper bound (exclusive) for an event's start time to filter by. Optional. The default is not to filter by start time. Must be an RFC3339 timestamp with mandatory time zone offset, for example, 2011-06-03T10:00:00-07:00, 2011-06-03T10:00:00Z. Milliseconds may be provided but are ignored. If timeMin is set, timeMax must be greater than timeMin.",
|
|
194
|
+
"in": "query",
|
|
195
|
+
"name": "timeMax",
|
|
196
|
+
"schema": {
|
|
197
|
+
"type": "string"
|
|
198
|
+
}
|
|
199
|
+
},
|
|
200
|
+
{
|
|
201
|
+
"description": "Lower bound (exclusive) for an event's end time to filter by. Optional. The default is not to filter by end time. Must be an RFC3339 timestamp with mandatory time zone offset, for example, 2011-06-03T10:00:00-07:00, 2011-06-03T10:00:00Z. Milliseconds may be provided but are ignored. If timeMax is set, timeMin must be smaller than timeMax.",
|
|
202
|
+
"in": "query",
|
|
203
|
+
"name": "timeMin",
|
|
204
|
+
"schema": {
|
|
205
|
+
"type": "string"
|
|
206
|
+
}
|
|
207
|
+
},
|
|
208
|
+
{
|
|
209
|
+
"description": "Time zone used in the response. Optional. The default is the time zone of the calendar.",
|
|
210
|
+
"in": "query",
|
|
211
|
+
"name": "timeZone",
|
|
212
|
+
"schema": {
|
|
213
|
+
"type": "string"
|
|
214
|
+
}
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
"description": "Lower bound for an event's last modification time (as a RFC3339 timestamp) to filter by. When specified, entries deleted since this time will always be included regardless of showDeleted. Optional. The default is not to filter by last modification time.",
|
|
218
|
+
"in": "query",
|
|
219
|
+
"name": "updatedMin",
|
|
220
|
+
"schema": {
|
|
221
|
+
"type": "string"
|
|
222
|
+
}
|
|
223
|
+
}
|
|
224
|
+
],
|
|
225
|
+
"responses": {
|
|
226
|
+
"200": {
|
|
227
|
+
"description": "Success. The response body is returned verbatim."
|
|
228
|
+
}
|
|
229
|
+
},
|
|
230
|
+
"security": [
|
|
231
|
+
{
|
|
232
|
+
"Oauth2": [
|
|
233
|
+
"https://www.googleapis.com/auth/calendar"
|
|
234
|
+
],
|
|
235
|
+
"Oauth2c": [
|
|
236
|
+
"https://www.googleapis.com/auth/calendar"
|
|
237
|
+
]
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"Oauth2": [
|
|
241
|
+
"https://www.googleapis.com/auth/calendar.events"
|
|
242
|
+
],
|
|
243
|
+
"Oauth2c": [
|
|
244
|
+
"https://www.googleapis.com/auth/calendar.events"
|
|
245
|
+
]
|
|
246
|
+
},
|
|
247
|
+
{
|
|
248
|
+
"Oauth2": [
|
|
249
|
+
"https://www.googleapis.com/auth/calendar.events.readonly"
|
|
250
|
+
],
|
|
251
|
+
"Oauth2c": [
|
|
252
|
+
"https://www.googleapis.com/auth/calendar.events.readonly"
|
|
253
|
+
]
|
|
254
|
+
},
|
|
255
|
+
{
|
|
256
|
+
"Oauth2": [
|
|
257
|
+
"https://www.googleapis.com/auth/calendar.readonly"
|
|
258
|
+
],
|
|
259
|
+
"Oauth2c": [
|
|
260
|
+
"https://www.googleapis.com/auth/calendar.readonly"
|
|
261
|
+
]
|
|
262
|
+
}
|
|
263
|
+
],
|
|
264
|
+
"tags": [
|
|
265
|
+
"events"
|
|
266
|
+
]
|
|
267
|
+
},
|
|
268
|
+
"parameters": [
|
|
269
|
+
{
|
|
270
|
+
"$ref": "#/components/parameters/alt"
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
"$ref": "#/components/parameters/fields"
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
"$ref": "#/components/parameters/userIp"
|
|
277
|
+
}
|
|
278
|
+
],
|
|
279
|
+
"post": {
|
|
280
|
+
"description": "Creates an event.",
|
|
281
|
+
"operationId": "calendar.events.insert",
|
|
282
|
+
"parameters": [
|
|
283
|
+
{
|
|
284
|
+
"description": "Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the \"primary\" keyword.",
|
|
285
|
+
"in": "path",
|
|
286
|
+
"name": "calendarId",
|
|
287
|
+
"required": true,
|
|
288
|
+
"schema": {
|
|
289
|
+
"type": "string"
|
|
290
|
+
}
|
|
291
|
+
},
|
|
292
|
+
{
|
|
293
|
+
"description": "Version number of conference data supported by the API client. Version 0 assumes no conference data support and ignores conference data in the event's body. Version 1 enables support for copying of ConferenceData as well as for creating new conferences using the createRequest field of conferenceData. The default is 0.",
|
|
294
|
+
"in": "query",
|
|
295
|
+
"name": "conferenceDataVersion",
|
|
296
|
+
"schema": {
|
|
297
|
+
"maximum": 1,
|
|
298
|
+
"minimum": 0,
|
|
299
|
+
"type": "integer"
|
|
300
|
+
}
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
"description": "The maximum number of attendees to include in the response. If there are more than the specified number of attendees, only the participant is returned. Optional.",
|
|
304
|
+
"in": "query",
|
|
305
|
+
"name": "maxAttendees",
|
|
306
|
+
"schema": {
|
|
307
|
+
"minimum": 1,
|
|
308
|
+
"type": "integer"
|
|
309
|
+
}
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
"description": "Deprecated. Please use sendUpdates instead.\n\nWhether to send notifications about the creation of the new event. Note that some emails might still be sent even if you set the value to false. The default is false.",
|
|
313
|
+
"in": "query",
|
|
314
|
+
"name": "sendNotifications",
|
|
315
|
+
"schema": {
|
|
316
|
+
"type": "boolean"
|
|
317
|
+
}
|
|
318
|
+
},
|
|
319
|
+
{
|
|
320
|
+
"description": "Whether to send notifications about the creation of the new event. Note that some emails might still be sent. The default is false.",
|
|
321
|
+
"in": "query",
|
|
322
|
+
"name": "sendUpdates",
|
|
323
|
+
"schema": {
|
|
324
|
+
"enum": [
|
|
325
|
+
"all",
|
|
326
|
+
"externalOnly",
|
|
327
|
+
"none"
|
|
328
|
+
],
|
|
329
|
+
"type": "string"
|
|
330
|
+
}
|
|
331
|
+
},
|
|
332
|
+
{
|
|
333
|
+
"description": "Whether API client performing operation supports event attachments. Optional. The default is False.",
|
|
334
|
+
"in": "query",
|
|
335
|
+
"name": "supportsAttachments",
|
|
336
|
+
"schema": {
|
|
337
|
+
"type": "boolean"
|
|
338
|
+
}
|
|
339
|
+
}
|
|
340
|
+
],
|
|
341
|
+
"requestBody": {
|
|
342
|
+
"content": {
|
|
343
|
+
"application/json": {
|
|
344
|
+
"schema": {
|
|
345
|
+
"$ref": "#/components/schemas/Event"
|
|
346
|
+
}
|
|
347
|
+
}
|
|
348
|
+
}
|
|
349
|
+
},
|
|
350
|
+
"responses": {
|
|
351
|
+
"200": {
|
|
352
|
+
"description": "Success. The response body is returned verbatim."
|
|
353
|
+
}
|
|
354
|
+
},
|
|
355
|
+
"security": [
|
|
356
|
+
{
|
|
357
|
+
"Oauth2": [
|
|
358
|
+
"https://www.googleapis.com/auth/calendar"
|
|
359
|
+
],
|
|
360
|
+
"Oauth2c": [
|
|
361
|
+
"https://www.googleapis.com/auth/calendar"
|
|
362
|
+
]
|
|
363
|
+
},
|
|
364
|
+
{
|
|
365
|
+
"Oauth2": [
|
|
366
|
+
"https://www.googleapis.com/auth/calendar.events"
|
|
367
|
+
],
|
|
368
|
+
"Oauth2c": [
|
|
369
|
+
"https://www.googleapis.com/auth/calendar.events"
|
|
370
|
+
]
|
|
371
|
+
}
|
|
372
|
+
],
|
|
373
|
+
"tags": [
|
|
374
|
+
"events"
|
|
375
|
+
]
|
|
376
|
+
}
|
|
377
|
+
},
|
|
378
|
+
"/calendars/{calendarId}/events/{eventId}": {
|
|
379
|
+
"delete": {
|
|
380
|
+
"description": "Deletes an event.",
|
|
381
|
+
"operationId": "calendar.events.delete",
|
|
382
|
+
"parameters": [
|
|
383
|
+
{
|
|
384
|
+
"description": "Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the \"primary\" keyword.",
|
|
385
|
+
"in": "path",
|
|
386
|
+
"name": "calendarId",
|
|
387
|
+
"required": true,
|
|
388
|
+
"schema": {
|
|
389
|
+
"type": "string"
|
|
390
|
+
}
|
|
391
|
+
},
|
|
392
|
+
{
|
|
393
|
+
"description": "Event identifier.",
|
|
394
|
+
"in": "path",
|
|
395
|
+
"name": "eventId",
|
|
396
|
+
"required": true,
|
|
397
|
+
"schema": {
|
|
398
|
+
"type": "string"
|
|
399
|
+
}
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
"description": "Deprecated. Please use sendUpdates instead.\n\nWhether to send notifications about the deletion of the event. Note that some emails might still be sent even if you set the value to false. The default is false.",
|
|
403
|
+
"in": "query",
|
|
404
|
+
"name": "sendNotifications",
|
|
405
|
+
"schema": {
|
|
406
|
+
"type": "boolean"
|
|
407
|
+
}
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
"description": "Guests who should receive notifications about the deletion of the event.",
|
|
411
|
+
"in": "query",
|
|
412
|
+
"name": "sendUpdates",
|
|
413
|
+
"schema": {
|
|
414
|
+
"enum": [
|
|
415
|
+
"all",
|
|
416
|
+
"externalOnly",
|
|
417
|
+
"none"
|
|
418
|
+
],
|
|
419
|
+
"type": "string"
|
|
420
|
+
}
|
|
421
|
+
}
|
|
422
|
+
],
|
|
423
|
+
"responses": {
|
|
424
|
+
"200": {
|
|
425
|
+
"description": "Success. The response body is returned verbatim."
|
|
426
|
+
}
|
|
427
|
+
},
|
|
428
|
+
"security": [
|
|
429
|
+
{
|
|
430
|
+
"Oauth2": [
|
|
431
|
+
"https://www.googleapis.com/auth/calendar"
|
|
432
|
+
],
|
|
433
|
+
"Oauth2c": [
|
|
434
|
+
"https://www.googleapis.com/auth/calendar"
|
|
435
|
+
]
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
"Oauth2": [
|
|
439
|
+
"https://www.googleapis.com/auth/calendar.events"
|
|
440
|
+
],
|
|
441
|
+
"Oauth2c": [
|
|
442
|
+
"https://www.googleapis.com/auth/calendar.events"
|
|
443
|
+
]
|
|
444
|
+
}
|
|
445
|
+
],
|
|
446
|
+
"tags": [
|
|
447
|
+
"events"
|
|
448
|
+
]
|
|
449
|
+
},
|
|
450
|
+
"get": {
|
|
451
|
+
"description": "Returns an event based on its Google Calendar ID. To retrieve an event using its iCalendar ID, call the events.list method using the iCalUID parameter.",
|
|
452
|
+
"operationId": "calendar.events.get",
|
|
453
|
+
"parameters": [
|
|
454
|
+
{
|
|
455
|
+
"description": "Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the \"primary\" keyword.",
|
|
456
|
+
"in": "path",
|
|
457
|
+
"name": "calendarId",
|
|
458
|
+
"required": true,
|
|
459
|
+
"schema": {
|
|
460
|
+
"type": "string"
|
|
461
|
+
}
|
|
462
|
+
},
|
|
463
|
+
{
|
|
464
|
+
"description": "Event identifier.",
|
|
465
|
+
"in": "path",
|
|
466
|
+
"name": "eventId",
|
|
467
|
+
"required": true,
|
|
468
|
+
"schema": {
|
|
469
|
+
"type": "string"
|
|
470
|
+
}
|
|
471
|
+
},
|
|
472
|
+
{
|
|
473
|
+
"description": "Deprecated and ignored. A value will always be returned in the email field for the organizer, creator and attendees, even if no real email address is available (i.e. a generated, non-working value will be provided).",
|
|
474
|
+
"in": "query",
|
|
475
|
+
"name": "alwaysIncludeEmail",
|
|
476
|
+
"schema": {
|
|
477
|
+
"type": "boolean"
|
|
478
|
+
}
|
|
479
|
+
},
|
|
480
|
+
{
|
|
481
|
+
"description": "The maximum number of attendees to include in the response. If there are more than the specified number of attendees, only the participant is returned. Optional.",
|
|
482
|
+
"in": "query",
|
|
483
|
+
"name": "maxAttendees",
|
|
484
|
+
"schema": {
|
|
485
|
+
"minimum": 1,
|
|
486
|
+
"type": "integer"
|
|
487
|
+
}
|
|
488
|
+
},
|
|
489
|
+
{
|
|
490
|
+
"description": "Time zone used in the response. Optional. The default is the time zone of the calendar.",
|
|
491
|
+
"in": "query",
|
|
492
|
+
"name": "timeZone",
|
|
493
|
+
"schema": {
|
|
494
|
+
"type": "string"
|
|
495
|
+
}
|
|
496
|
+
}
|
|
497
|
+
],
|
|
498
|
+
"responses": {
|
|
499
|
+
"200": {
|
|
500
|
+
"description": "Success. The response body is returned verbatim."
|
|
501
|
+
}
|
|
502
|
+
},
|
|
503
|
+
"security": [
|
|
504
|
+
{
|
|
505
|
+
"Oauth2": [
|
|
506
|
+
"https://www.googleapis.com/auth/calendar"
|
|
507
|
+
],
|
|
508
|
+
"Oauth2c": [
|
|
509
|
+
"https://www.googleapis.com/auth/calendar"
|
|
510
|
+
]
|
|
511
|
+
},
|
|
512
|
+
{
|
|
513
|
+
"Oauth2": [
|
|
514
|
+
"https://www.googleapis.com/auth/calendar.events"
|
|
515
|
+
],
|
|
516
|
+
"Oauth2c": [
|
|
517
|
+
"https://www.googleapis.com/auth/calendar.events"
|
|
518
|
+
]
|
|
519
|
+
},
|
|
520
|
+
{
|
|
521
|
+
"Oauth2": [
|
|
522
|
+
"https://www.googleapis.com/auth/calendar.events.readonly"
|
|
523
|
+
],
|
|
524
|
+
"Oauth2c": [
|
|
525
|
+
"https://www.googleapis.com/auth/calendar.events.readonly"
|
|
526
|
+
]
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
"Oauth2": [
|
|
530
|
+
"https://www.googleapis.com/auth/calendar.readonly"
|
|
531
|
+
],
|
|
532
|
+
"Oauth2c": [
|
|
533
|
+
"https://www.googleapis.com/auth/calendar.readonly"
|
|
534
|
+
]
|
|
535
|
+
}
|
|
536
|
+
],
|
|
537
|
+
"tags": [
|
|
538
|
+
"events"
|
|
539
|
+
]
|
|
540
|
+
},
|
|
541
|
+
"parameters": [
|
|
542
|
+
{
|
|
543
|
+
"$ref": "#/components/parameters/alt"
|
|
544
|
+
},
|
|
545
|
+
{
|
|
546
|
+
"$ref": "#/components/parameters/fields"
|
|
547
|
+
},
|
|
548
|
+
{
|
|
549
|
+
"$ref": "#/components/parameters/userIp"
|
|
550
|
+
}
|
|
551
|
+
],
|
|
552
|
+
"patch": {
|
|
553
|
+
"description": "Updates an event. This method supports patch semantics.",
|
|
554
|
+
"operationId": "calendar.events.patch",
|
|
555
|
+
"parameters": [
|
|
556
|
+
{
|
|
557
|
+
"description": "Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the \"primary\" keyword.",
|
|
558
|
+
"in": "path",
|
|
559
|
+
"name": "calendarId",
|
|
560
|
+
"required": true,
|
|
561
|
+
"schema": {
|
|
562
|
+
"type": "string"
|
|
563
|
+
}
|
|
564
|
+
},
|
|
565
|
+
{
|
|
566
|
+
"description": "Event identifier.",
|
|
567
|
+
"in": "path",
|
|
568
|
+
"name": "eventId",
|
|
569
|
+
"required": true,
|
|
570
|
+
"schema": {
|
|
571
|
+
"type": "string"
|
|
572
|
+
}
|
|
573
|
+
},
|
|
574
|
+
{
|
|
575
|
+
"description": "Deprecated and ignored. A value will always be returned in the email field for the organizer, creator and attendees, even if no real email address is available (i.e. a generated, non-working value will be provided).",
|
|
576
|
+
"in": "query",
|
|
577
|
+
"name": "alwaysIncludeEmail",
|
|
578
|
+
"schema": {
|
|
579
|
+
"type": "boolean"
|
|
580
|
+
}
|
|
581
|
+
},
|
|
582
|
+
{
|
|
583
|
+
"description": "Version number of conference data supported by the API client. Version 0 assumes no conference data support and ignores conference data in the event's body. Version 1 enables support for copying of ConferenceData as well as for creating new conferences using the createRequest field of conferenceData. The default is 0.",
|
|
584
|
+
"in": "query",
|
|
585
|
+
"name": "conferenceDataVersion",
|
|
586
|
+
"schema": {
|
|
587
|
+
"maximum": 1,
|
|
588
|
+
"minimum": 0,
|
|
589
|
+
"type": "integer"
|
|
590
|
+
}
|
|
591
|
+
},
|
|
592
|
+
{
|
|
593
|
+
"description": "The maximum number of attendees to include in the response. If there are more than the specified number of attendees, only the participant is returned. Optional.",
|
|
594
|
+
"in": "query",
|
|
595
|
+
"name": "maxAttendees",
|
|
596
|
+
"schema": {
|
|
597
|
+
"minimum": 1,
|
|
598
|
+
"type": "integer"
|
|
599
|
+
}
|
|
600
|
+
},
|
|
601
|
+
{
|
|
602
|
+
"description": "Deprecated. Please use sendUpdates instead.\n\nWhether to send notifications about the event update (for example, description changes, etc.). Note that some emails might still be sent even if you set the value to false. The default is false.",
|
|
603
|
+
"in": "query",
|
|
604
|
+
"name": "sendNotifications",
|
|
605
|
+
"schema": {
|
|
606
|
+
"type": "boolean"
|
|
607
|
+
}
|
|
608
|
+
},
|
|
609
|
+
{
|
|
610
|
+
"description": "Guests who should receive notifications about the event update (for example, title changes, etc.).",
|
|
611
|
+
"in": "query",
|
|
612
|
+
"name": "sendUpdates",
|
|
613
|
+
"schema": {
|
|
614
|
+
"enum": [
|
|
615
|
+
"all",
|
|
616
|
+
"externalOnly",
|
|
617
|
+
"none"
|
|
618
|
+
],
|
|
619
|
+
"type": "string"
|
|
620
|
+
}
|
|
621
|
+
},
|
|
622
|
+
{
|
|
623
|
+
"description": "Whether API client performing operation supports event attachments. Optional. The default is False.",
|
|
624
|
+
"in": "query",
|
|
625
|
+
"name": "supportsAttachments",
|
|
626
|
+
"schema": {
|
|
627
|
+
"type": "boolean"
|
|
628
|
+
}
|
|
629
|
+
}
|
|
630
|
+
],
|
|
631
|
+
"requestBody": {
|
|
632
|
+
"content": {
|
|
633
|
+
"application/json": {
|
|
634
|
+
"schema": {
|
|
635
|
+
"$ref": "#/components/schemas/Event"
|
|
636
|
+
}
|
|
637
|
+
}
|
|
638
|
+
}
|
|
639
|
+
},
|
|
640
|
+
"responses": {
|
|
641
|
+
"200": {
|
|
642
|
+
"description": "Success. The response body is returned verbatim."
|
|
643
|
+
}
|
|
644
|
+
},
|
|
645
|
+
"security": [
|
|
646
|
+
{
|
|
647
|
+
"Oauth2": [
|
|
648
|
+
"https://www.googleapis.com/auth/calendar"
|
|
649
|
+
],
|
|
650
|
+
"Oauth2c": [
|
|
651
|
+
"https://www.googleapis.com/auth/calendar"
|
|
652
|
+
]
|
|
653
|
+
},
|
|
654
|
+
{
|
|
655
|
+
"Oauth2": [
|
|
656
|
+
"https://www.googleapis.com/auth/calendar.events"
|
|
657
|
+
],
|
|
658
|
+
"Oauth2c": [
|
|
659
|
+
"https://www.googleapis.com/auth/calendar.events"
|
|
660
|
+
]
|
|
661
|
+
}
|
|
662
|
+
],
|
|
663
|
+
"tags": [
|
|
664
|
+
"events"
|
|
665
|
+
]
|
|
666
|
+
}
|
|
667
|
+
},
|
|
668
|
+
"/calendars/{calendarId}/events/{eventId}/instances": {
|
|
669
|
+
"get": {
|
|
670
|
+
"description": "Returns instances of the specified recurring event.",
|
|
671
|
+
"operationId": "calendar.events.instances",
|
|
672
|
+
"parameters": [
|
|
673
|
+
{
|
|
674
|
+
"description": "Calendar identifier. To retrieve calendar IDs call the calendarList.list method. If you want to access the primary calendar of the currently logged in user, use the \"primary\" keyword.",
|
|
675
|
+
"in": "path",
|
|
676
|
+
"name": "calendarId",
|
|
677
|
+
"required": true,
|
|
678
|
+
"schema": {
|
|
679
|
+
"type": "string"
|
|
680
|
+
}
|
|
681
|
+
},
|
|
682
|
+
{
|
|
683
|
+
"description": "Recurring event identifier.",
|
|
684
|
+
"in": "path",
|
|
685
|
+
"name": "eventId",
|
|
686
|
+
"required": true,
|
|
687
|
+
"schema": {
|
|
688
|
+
"type": "string"
|
|
689
|
+
}
|
|
690
|
+
},
|
|
691
|
+
{
|
|
692
|
+
"description": "Deprecated and ignored. A value will always be returned in the email field for the organizer, creator and attendees, even if no real email address is available (i.e. a generated, non-working value will be provided).",
|
|
693
|
+
"in": "query",
|
|
694
|
+
"name": "alwaysIncludeEmail",
|
|
695
|
+
"schema": {
|
|
696
|
+
"type": "boolean"
|
|
697
|
+
}
|
|
698
|
+
},
|
|
699
|
+
{
|
|
700
|
+
"description": "The maximum number of attendees to include in the response. If there are more than the specified number of attendees, only the participant is returned. Optional.",
|
|
701
|
+
"in": "query",
|
|
702
|
+
"name": "maxAttendees",
|
|
703
|
+
"schema": {
|
|
704
|
+
"minimum": 1,
|
|
705
|
+
"type": "integer"
|
|
706
|
+
}
|
|
707
|
+
},
|
|
708
|
+
{
|
|
709
|
+
"description": "Maximum number of events returned on one result page. By default the value is 250 events. The page size can never be larger than 2500 events. Optional.",
|
|
710
|
+
"in": "query",
|
|
711
|
+
"name": "maxResults",
|
|
712
|
+
"schema": {
|
|
713
|
+
"minimum": 1,
|
|
714
|
+
"type": "integer"
|
|
715
|
+
}
|
|
716
|
+
},
|
|
717
|
+
{
|
|
718
|
+
"description": "The original start time of the instance in the result. Optional.",
|
|
719
|
+
"in": "query",
|
|
720
|
+
"name": "originalStart",
|
|
721
|
+
"schema": {
|
|
722
|
+
"type": "string"
|
|
723
|
+
}
|
|
724
|
+
},
|
|
725
|
+
{
|
|
726
|
+
"description": "Token specifying which result page to return. Optional.",
|
|
727
|
+
"in": "query",
|
|
728
|
+
"name": "pageToken",
|
|
729
|
+
"schema": {
|
|
730
|
+
"type": "string"
|
|
731
|
+
}
|
|
732
|
+
},
|
|
733
|
+
{
|
|
734
|
+
"description": "Whether to include deleted events (with status equals \"cancelled\") in the result. Cancelled instances of recurring events will still be included if singleEvents is False. Optional. The default is False.",
|
|
735
|
+
"in": "query",
|
|
736
|
+
"name": "showDeleted",
|
|
737
|
+
"schema": {
|
|
738
|
+
"type": "boolean"
|
|
739
|
+
}
|
|
740
|
+
},
|
|
741
|
+
{
|
|
742
|
+
"description": "Upper bound (exclusive) for an event's start time to filter by. Optional. The default is not to filter by start time. Must be an RFC3339 timestamp with mandatory time zone offset.",
|
|
743
|
+
"in": "query",
|
|
744
|
+
"name": "timeMax",
|
|
745
|
+
"schema": {
|
|
746
|
+
"type": "string"
|
|
747
|
+
}
|
|
748
|
+
},
|
|
749
|
+
{
|
|
750
|
+
"description": "Lower bound (inclusive) for an event's end time to filter by. Optional. The default is not to filter by end time. Must be an RFC3339 timestamp with mandatory time zone offset.",
|
|
751
|
+
"in": "query",
|
|
752
|
+
"name": "timeMin",
|
|
753
|
+
"schema": {
|
|
754
|
+
"type": "string"
|
|
755
|
+
}
|
|
756
|
+
},
|
|
757
|
+
{
|
|
758
|
+
"description": "Time zone used in the response. Optional. The default is the time zone of the calendar.",
|
|
759
|
+
"in": "query",
|
|
760
|
+
"name": "timeZone",
|
|
761
|
+
"schema": {
|
|
762
|
+
"type": "string"
|
|
763
|
+
}
|
|
764
|
+
}
|
|
765
|
+
],
|
|
766
|
+
"responses": {
|
|
767
|
+
"200": {
|
|
768
|
+
"description": "Success. The response body is returned verbatim."
|
|
769
|
+
}
|
|
770
|
+
},
|
|
771
|
+
"security": [
|
|
772
|
+
{
|
|
773
|
+
"Oauth2": [
|
|
774
|
+
"https://www.googleapis.com/auth/calendar"
|
|
775
|
+
],
|
|
776
|
+
"Oauth2c": [
|
|
777
|
+
"https://www.googleapis.com/auth/calendar"
|
|
778
|
+
]
|
|
779
|
+
},
|
|
780
|
+
{
|
|
781
|
+
"Oauth2": [
|
|
782
|
+
"https://www.googleapis.com/auth/calendar.events"
|
|
783
|
+
],
|
|
784
|
+
"Oauth2c": [
|
|
785
|
+
"https://www.googleapis.com/auth/calendar.events"
|
|
786
|
+
]
|
|
787
|
+
},
|
|
788
|
+
{
|
|
789
|
+
"Oauth2": [
|
|
790
|
+
"https://www.googleapis.com/auth/calendar.events.readonly"
|
|
791
|
+
],
|
|
792
|
+
"Oauth2c": [
|
|
793
|
+
"https://www.googleapis.com/auth/calendar.events.readonly"
|
|
794
|
+
]
|
|
795
|
+
},
|
|
796
|
+
{
|
|
797
|
+
"Oauth2": [
|
|
798
|
+
"https://www.googleapis.com/auth/calendar.readonly"
|
|
799
|
+
],
|
|
800
|
+
"Oauth2c": [
|
|
801
|
+
"https://www.googleapis.com/auth/calendar.readonly"
|
|
802
|
+
]
|
|
803
|
+
}
|
|
804
|
+
],
|
|
805
|
+
"tags": [
|
|
806
|
+
"events"
|
|
807
|
+
]
|
|
808
|
+
},
|
|
809
|
+
"parameters": [
|
|
810
|
+
{
|
|
811
|
+
"$ref": "#/components/parameters/alt"
|
|
812
|
+
},
|
|
813
|
+
{
|
|
814
|
+
"$ref": "#/components/parameters/fields"
|
|
815
|
+
},
|
|
816
|
+
{
|
|
817
|
+
"$ref": "#/components/parameters/userIp"
|
|
818
|
+
}
|
|
819
|
+
]
|
|
820
|
+
},
|
|
821
|
+
"/calendars/{calendarId}/events/{eventId}/move": {
|
|
822
|
+
"parameters": [
|
|
823
|
+
{
|
|
824
|
+
"$ref": "#/components/parameters/alt"
|
|
825
|
+
},
|
|
826
|
+
{
|
|
827
|
+
"$ref": "#/components/parameters/fields"
|
|
828
|
+
},
|
|
829
|
+
{
|
|
830
|
+
"$ref": "#/components/parameters/userIp"
|
|
831
|
+
}
|
|
832
|
+
],
|
|
833
|
+
"post": {
|
|
834
|
+
"description": "Moves an event to another calendar, i.e. changes an event's organizer.",
|
|
835
|
+
"operationId": "calendar.events.move",
|
|
836
|
+
"parameters": [
|
|
837
|
+
{
|
|
838
|
+
"description": "Calendar identifier of the source calendar where the event currently is on.",
|
|
839
|
+
"in": "path",
|
|
840
|
+
"name": "calendarId",
|
|
841
|
+
"required": true,
|
|
842
|
+
"schema": {
|
|
843
|
+
"type": "string"
|
|
844
|
+
}
|
|
845
|
+
},
|
|
846
|
+
{
|
|
847
|
+
"description": "Event identifier.",
|
|
848
|
+
"in": "path",
|
|
849
|
+
"name": "eventId",
|
|
850
|
+
"required": true,
|
|
851
|
+
"schema": {
|
|
852
|
+
"type": "string"
|
|
853
|
+
}
|
|
854
|
+
},
|
|
855
|
+
{
|
|
856
|
+
"description": "Calendar identifier of the target calendar where the event is to be moved to.",
|
|
857
|
+
"in": "query",
|
|
858
|
+
"name": "destination",
|
|
859
|
+
"required": true,
|
|
860
|
+
"schema": {
|
|
861
|
+
"type": "string"
|
|
862
|
+
}
|
|
863
|
+
},
|
|
864
|
+
{
|
|
865
|
+
"description": "Deprecated. Please use sendUpdates instead.\n\nWhether to send notifications about the change of the event's organizer. Note that some emails might still be sent even if you set the value to false. The default is false.",
|
|
866
|
+
"in": "query",
|
|
867
|
+
"name": "sendNotifications",
|
|
868
|
+
"schema": {
|
|
869
|
+
"type": "boolean"
|
|
870
|
+
}
|
|
871
|
+
},
|
|
872
|
+
{
|
|
873
|
+
"description": "Guests who should receive notifications about the change of the event's organizer.",
|
|
874
|
+
"in": "query",
|
|
875
|
+
"name": "sendUpdates",
|
|
876
|
+
"schema": {
|
|
877
|
+
"enum": [
|
|
878
|
+
"all",
|
|
879
|
+
"externalOnly",
|
|
880
|
+
"none"
|
|
881
|
+
],
|
|
882
|
+
"type": "string"
|
|
883
|
+
}
|
|
884
|
+
}
|
|
885
|
+
],
|
|
886
|
+
"responses": {
|
|
887
|
+
"200": {
|
|
888
|
+
"description": "Success. The response body is returned verbatim."
|
|
889
|
+
}
|
|
890
|
+
},
|
|
891
|
+
"security": [
|
|
892
|
+
{
|
|
893
|
+
"Oauth2": [
|
|
894
|
+
"https://www.googleapis.com/auth/calendar"
|
|
895
|
+
],
|
|
896
|
+
"Oauth2c": [
|
|
897
|
+
"https://www.googleapis.com/auth/calendar"
|
|
898
|
+
]
|
|
899
|
+
},
|
|
900
|
+
{
|
|
901
|
+
"Oauth2": [
|
|
902
|
+
"https://www.googleapis.com/auth/calendar.events"
|
|
903
|
+
],
|
|
904
|
+
"Oauth2c": [
|
|
905
|
+
"https://www.googleapis.com/auth/calendar.events"
|
|
906
|
+
]
|
|
907
|
+
}
|
|
908
|
+
],
|
|
909
|
+
"tags": [
|
|
910
|
+
"events"
|
|
911
|
+
]
|
|
912
|
+
}
|
|
913
|
+
},
|
|
914
|
+
"/freeBusy": {
|
|
915
|
+
"parameters": [
|
|
916
|
+
{
|
|
917
|
+
"$ref": "#/components/parameters/alt"
|
|
918
|
+
},
|
|
919
|
+
{
|
|
920
|
+
"$ref": "#/components/parameters/fields"
|
|
921
|
+
},
|
|
922
|
+
{
|
|
923
|
+
"$ref": "#/components/parameters/userIp"
|
|
924
|
+
}
|
|
925
|
+
],
|
|
926
|
+
"post": {
|
|
927
|
+
"description": "Returns free/busy information for a set of calendars.",
|
|
928
|
+
"operationId": "calendar.freebusy.query",
|
|
929
|
+
"requestBody": {
|
|
930
|
+
"content": {
|
|
931
|
+
"application/json": {
|
|
932
|
+
"schema": {
|
|
933
|
+
"$ref": "#/components/schemas/FreeBusyRequest"
|
|
934
|
+
}
|
|
935
|
+
}
|
|
936
|
+
}
|
|
937
|
+
},
|
|
938
|
+
"responses": {
|
|
939
|
+
"200": {
|
|
940
|
+
"description": "Success. The response body is returned verbatim."
|
|
941
|
+
}
|
|
942
|
+
},
|
|
943
|
+
"security": [
|
|
944
|
+
{
|
|
945
|
+
"Oauth2": [
|
|
946
|
+
"https://www.googleapis.com/auth/calendar"
|
|
947
|
+
],
|
|
948
|
+
"Oauth2c": [
|
|
949
|
+
"https://www.googleapis.com/auth/calendar"
|
|
950
|
+
]
|
|
951
|
+
},
|
|
952
|
+
{
|
|
953
|
+
"Oauth2": [
|
|
954
|
+
"https://www.googleapis.com/auth/calendar.readonly"
|
|
955
|
+
],
|
|
956
|
+
"Oauth2c": [
|
|
957
|
+
"https://www.googleapis.com/auth/calendar.readonly"
|
|
958
|
+
]
|
|
959
|
+
}
|
|
960
|
+
],
|
|
961
|
+
"tags": [
|
|
962
|
+
"freebusy"
|
|
963
|
+
]
|
|
964
|
+
}
|
|
965
|
+
},
|
|
966
|
+
"/users/me/calendarList": {
|
|
967
|
+
"get": {
|
|
968
|
+
"description": "Returns the calendars on the user's calendar list.",
|
|
969
|
+
"operationId": "calendar.calendarList.list",
|
|
970
|
+
"parameters": [
|
|
971
|
+
{
|
|
972
|
+
"description": "Maximum number of entries returned on one result page. By default the value is 100 entries. The page size can never be larger than 250 entries. Optional.",
|
|
973
|
+
"in": "query",
|
|
974
|
+
"name": "maxResults",
|
|
975
|
+
"schema": {
|
|
976
|
+
"minimum": 1,
|
|
977
|
+
"type": "integer"
|
|
978
|
+
}
|
|
979
|
+
},
|
|
980
|
+
{
|
|
981
|
+
"description": "The minimum access role for the user in the returned entries. Optional. The default is no restriction.",
|
|
982
|
+
"in": "query",
|
|
983
|
+
"name": "minAccessRole",
|
|
984
|
+
"schema": {
|
|
985
|
+
"enum": [
|
|
986
|
+
"freeBusyReader",
|
|
987
|
+
"owner",
|
|
988
|
+
"reader",
|
|
989
|
+
"writer"
|
|
990
|
+
],
|
|
991
|
+
"type": "string"
|
|
992
|
+
}
|
|
993
|
+
},
|
|
994
|
+
{
|
|
995
|
+
"description": "Token specifying which result page to return. Optional.",
|
|
996
|
+
"in": "query",
|
|
997
|
+
"name": "pageToken",
|
|
998
|
+
"schema": {
|
|
999
|
+
"type": "string"
|
|
1000
|
+
}
|
|
1001
|
+
},
|
|
1002
|
+
{
|
|
1003
|
+
"description": "Whether to include deleted calendar list entries in the result. Optional. The default is False.",
|
|
1004
|
+
"in": "query",
|
|
1005
|
+
"name": "showDeleted",
|
|
1006
|
+
"schema": {
|
|
1007
|
+
"type": "boolean"
|
|
1008
|
+
}
|
|
1009
|
+
},
|
|
1010
|
+
{
|
|
1011
|
+
"description": "Whether to show hidden entries. Optional. The default is False.",
|
|
1012
|
+
"in": "query",
|
|
1013
|
+
"name": "showHidden",
|
|
1014
|
+
"schema": {
|
|
1015
|
+
"type": "boolean"
|
|
1016
|
+
}
|
|
1017
|
+
},
|
|
1018
|
+
{
|
|
1019
|
+
"description": "Token obtained from the nextSyncToken field returned on the last page of results from the previous list request. It makes the result of this list request contain only entries that have changed since then. If only read-only fields such as calendar properties or ACLs have changed, the entry won't be returned. All entries deleted and hidden since the previous list request will always be in the result set and it is not allowed to set showDeleted neither showHidden to False.\nTo ensure client state consistency minAccessRole query parameter cannot be specified together with nextSyncToken.\nIf the syncToken expires, the server will respond with a 410 GONE response code and the client should clear its storage and perform a full synchronization without any syncToken.\nLearn more about incremental synchronization.\nOptional. The default is to return all entries.",
|
|
1020
|
+
"in": "query",
|
|
1021
|
+
"name": "syncToken",
|
|
1022
|
+
"schema": {
|
|
1023
|
+
"type": "string"
|
|
1024
|
+
}
|
|
1025
|
+
}
|
|
1026
|
+
],
|
|
1027
|
+
"responses": {
|
|
1028
|
+
"200": {
|
|
1029
|
+
"description": "Success. The response body is returned verbatim."
|
|
1030
|
+
}
|
|
1031
|
+
},
|
|
1032
|
+
"security": [
|
|
1033
|
+
{
|
|
1034
|
+
"Oauth2": [
|
|
1035
|
+
"https://www.googleapis.com/auth/calendar"
|
|
1036
|
+
],
|
|
1037
|
+
"Oauth2c": [
|
|
1038
|
+
"https://www.googleapis.com/auth/calendar"
|
|
1039
|
+
]
|
|
1040
|
+
},
|
|
1041
|
+
{
|
|
1042
|
+
"Oauth2": [
|
|
1043
|
+
"https://www.googleapis.com/auth/calendar.readonly"
|
|
1044
|
+
],
|
|
1045
|
+
"Oauth2c": [
|
|
1046
|
+
"https://www.googleapis.com/auth/calendar.readonly"
|
|
1047
|
+
]
|
|
1048
|
+
}
|
|
1049
|
+
],
|
|
1050
|
+
"tags": [
|
|
1051
|
+
"calendarList"
|
|
1052
|
+
]
|
|
1053
|
+
},
|
|
1054
|
+
"parameters": [
|
|
1055
|
+
{
|
|
1056
|
+
"$ref": "#/components/parameters/alt"
|
|
1057
|
+
},
|
|
1058
|
+
{
|
|
1059
|
+
"$ref": "#/components/parameters/fields"
|
|
1060
|
+
},
|
|
1061
|
+
{
|
|
1062
|
+
"$ref": "#/components/parameters/userIp"
|
|
1063
|
+
}
|
|
1064
|
+
]
|
|
1065
|
+
}
|
|
1066
|
+
},
|
|
1067
|
+
"components": {
|
|
1068
|
+
"parameters": {
|
|
1069
|
+
"alt": {
|
|
1070
|
+
"description": "Data format for the response.",
|
|
1071
|
+
"in": "query",
|
|
1072
|
+
"name": "alt",
|
|
1073
|
+
"schema": {
|
|
1074
|
+
"enum": [
|
|
1075
|
+
"json"
|
|
1076
|
+
],
|
|
1077
|
+
"type": "string"
|
|
1078
|
+
}
|
|
1079
|
+
},
|
|
1080
|
+
"fields": {
|
|
1081
|
+
"description": "Selector specifying which fields to include in a partial response.",
|
|
1082
|
+
"in": "query",
|
|
1083
|
+
"name": "fields",
|
|
1084
|
+
"schema": {
|
|
1085
|
+
"type": "string"
|
|
1086
|
+
}
|
|
1087
|
+
},
|
|
1088
|
+
"key": {
|
|
1089
|
+
"description": "API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.",
|
|
1090
|
+
"in": "query",
|
|
1091
|
+
"name": "key",
|
|
1092
|
+
"schema": {
|
|
1093
|
+
"type": "string"
|
|
1094
|
+
}
|
|
1095
|
+
},
|
|
1096
|
+
"oauth_token": {
|
|
1097
|
+
"description": "OAuth 2.0 token for the current user.",
|
|
1098
|
+
"in": "query",
|
|
1099
|
+
"name": "oauth_token",
|
|
1100
|
+
"schema": {
|
|
1101
|
+
"type": "string"
|
|
1102
|
+
}
|
|
1103
|
+
},
|
|
1104
|
+
"prettyPrint": {
|
|
1105
|
+
"description": "Returns response with indentations and line breaks.",
|
|
1106
|
+
"in": "query",
|
|
1107
|
+
"name": "prettyPrint",
|
|
1108
|
+
"schema": {
|
|
1109
|
+
"type": "boolean"
|
|
1110
|
+
}
|
|
1111
|
+
},
|
|
1112
|
+
"quotaUser": {
|
|
1113
|
+
"description": "An opaque string that represents a user for quota purposes. Must not exceed 40 characters.",
|
|
1114
|
+
"in": "query",
|
|
1115
|
+
"name": "quotaUser",
|
|
1116
|
+
"schema": {
|
|
1117
|
+
"type": "string"
|
|
1118
|
+
}
|
|
1119
|
+
},
|
|
1120
|
+
"userIp": {
|
|
1121
|
+
"description": "Deprecated. Please use quotaUser instead.",
|
|
1122
|
+
"in": "query",
|
|
1123
|
+
"name": "userIp",
|
|
1124
|
+
"schema": {
|
|
1125
|
+
"type": "string"
|
|
1126
|
+
}
|
|
1127
|
+
}
|
|
1128
|
+
},
|
|
1129
|
+
"schemas": {
|
|
1130
|
+
"ConferenceData": {
|
|
1131
|
+
"properties": {
|
|
1132
|
+
"conferenceId": {
|
|
1133
|
+
"description": "The ID of the conference.\nCan be used by developers to keep track of conferences, should not be displayed to users.\nThe ID value is formed differently for each conference solution type: \n- eventHangout: ID is not set. (This conference type is deprecated.)\n- eventNamedHangout: ID is the name of the Hangout. (This conference type is deprecated.)\n- hangoutsMeet: ID is the 10-letter meeting code, for example aaa-bbbb-ccc.\n- addOn: ID is defined by the third-party provider. Optional.",
|
|
1134
|
+
"type": "string"
|
|
1135
|
+
},
|
|
1136
|
+
"conferenceSolution": {
|
|
1137
|
+
"$ref": "#/components/schemas/ConferenceSolution",
|
|
1138
|
+
"description": "The conference solution, such as Google Meet.\nUnset for a conference with a failed create request.\nEither conferenceSolution and at least one entryPoint, or createRequest is required."
|
|
1139
|
+
},
|
|
1140
|
+
"createRequest": {
|
|
1141
|
+
"$ref": "#/components/schemas/CreateConferenceRequest",
|
|
1142
|
+
"description": "A request to generate a new conference and attach it to the event. The data is generated asynchronously. To see whether the data is present check the status field.\nEither conferenceSolution and at least one entryPoint, or createRequest is required."
|
|
1143
|
+
},
|
|
1144
|
+
"entryPoints": {
|
|
1145
|
+
"description": "Information about individual conference entry points, such as URLs or phone numbers.\nAll of them must belong to the same conference.\nEither conferenceSolution and at least one entryPoint, or createRequest is required.",
|
|
1146
|
+
"items": {
|
|
1147
|
+
"$ref": "#/components/schemas/EntryPoint"
|
|
1148
|
+
},
|
|
1149
|
+
"type": "array"
|
|
1150
|
+
},
|
|
1151
|
+
"notes": {
|
|
1152
|
+
"description": "Additional notes (such as instructions from the domain administrator, legal notices) to display to the user. Can contain HTML. The maximum length is 2048 characters. Optional.",
|
|
1153
|
+
"type": "string"
|
|
1154
|
+
},
|
|
1155
|
+
"parameters": {
|
|
1156
|
+
"$ref": "#/components/schemas/ConferenceParameters",
|
|
1157
|
+
"description": "Additional properties related to a conference. An example would be a solution-specific setting for enabling video streaming."
|
|
1158
|
+
},
|
|
1159
|
+
"signature": {
|
|
1160
|
+
"description": "The signature of the conference data.\nGenerated on server side.\nUnset for a conference with a failed create request.\nOptional for a conference with a pending create request.",
|
|
1161
|
+
"type": "string"
|
|
1162
|
+
}
|
|
1163
|
+
},
|
|
1164
|
+
"type": "object"
|
|
1165
|
+
},
|
|
1166
|
+
"ConferenceParameters": {
|
|
1167
|
+
"properties": {
|
|
1168
|
+
"addOnParameters": {
|
|
1169
|
+
"$ref": "#/components/schemas/ConferenceParametersAddOnParameters",
|
|
1170
|
+
"description": "Additional add-on specific data."
|
|
1171
|
+
}
|
|
1172
|
+
},
|
|
1173
|
+
"type": "object"
|
|
1174
|
+
},
|
|
1175
|
+
"ConferenceParametersAddOnParameters": {
|
|
1176
|
+
"properties": {
|
|
1177
|
+
"parameters": {
|
|
1178
|
+
"additionalProperties": {
|
|
1179
|
+
"type": "string"
|
|
1180
|
+
},
|
|
1181
|
+
"type": "object"
|
|
1182
|
+
}
|
|
1183
|
+
},
|
|
1184
|
+
"type": "object"
|
|
1185
|
+
},
|
|
1186
|
+
"ConferenceRequestStatus": {
|
|
1187
|
+
"properties": {
|
|
1188
|
+
"statusCode": {
|
|
1189
|
+
"description": "The current status of the conference create request. Read-only.\nThe possible values are: \n- \"pending\": the conference create request is still being processed.\n- \"success\": the conference create request succeeded, the entry points are populated.\n- \"failure\": the conference create request failed, there are no entry points.",
|
|
1190
|
+
"type": "string"
|
|
1191
|
+
}
|
|
1192
|
+
},
|
|
1193
|
+
"type": "object"
|
|
1194
|
+
},
|
|
1195
|
+
"ConferenceSolution": {
|
|
1196
|
+
"properties": {
|
|
1197
|
+
"iconUri": {
|
|
1198
|
+
"description": "The user-visible icon for this solution.",
|
|
1199
|
+
"type": "string"
|
|
1200
|
+
},
|
|
1201
|
+
"key": {
|
|
1202
|
+
"$ref": "#/components/schemas/ConferenceSolutionKey",
|
|
1203
|
+
"description": "The key which can uniquely identify the conference solution for this event."
|
|
1204
|
+
},
|
|
1205
|
+
"name": {
|
|
1206
|
+
"description": "The user-visible name of this solution. Not localized.",
|
|
1207
|
+
"type": "string"
|
|
1208
|
+
}
|
|
1209
|
+
},
|
|
1210
|
+
"type": "object"
|
|
1211
|
+
},
|
|
1212
|
+
"ConferenceSolutionKey": {
|
|
1213
|
+
"properties": {
|
|
1214
|
+
"type": {
|
|
1215
|
+
"description": "The conference solution type.\nIf a client encounters an unfamiliar or empty type, it should still be able to display the entry points. However, it should disallow modifications.\nThe possible values are: \n- \"eventHangout\" for Hangouts for consumers (deprecated; existing events may show this conference solution type but new conferences cannot be created)\n- \"eventNamedHangout\" for classic Hangouts for Google Workspace users (deprecated; existing events may show this conference solution type but new conferences cannot be created)\n- \"hangoutsMeet\" for Google Meet (http://meet.google.com)\n- \"addOn\" for 3P conference providers",
|
|
1216
|
+
"type": "string"
|
|
1217
|
+
}
|
|
1218
|
+
},
|
|
1219
|
+
"type": "object"
|
|
1220
|
+
},
|
|
1221
|
+
"CreateConferenceRequest": {
|
|
1222
|
+
"properties": {
|
|
1223
|
+
"conferenceSolutionKey": {
|
|
1224
|
+
"$ref": "#/components/schemas/ConferenceSolutionKey",
|
|
1225
|
+
"description": "The conference solution, such as Hangouts or Google Meet."
|
|
1226
|
+
},
|
|
1227
|
+
"requestId": {
|
|
1228
|
+
"description": "The client-generated unique ID for this request.\nClients should regenerate this ID for every new request. If an ID provided is the same as for the previous request, the request is ignored.",
|
|
1229
|
+
"type": "string"
|
|
1230
|
+
},
|
|
1231
|
+
"status": {
|
|
1232
|
+
"$ref": "#/components/schemas/ConferenceRequestStatus",
|
|
1233
|
+
"description": "The status of the conference create request."
|
|
1234
|
+
}
|
|
1235
|
+
},
|
|
1236
|
+
"type": "object"
|
|
1237
|
+
},
|
|
1238
|
+
"EntryPoint": {
|
|
1239
|
+
"properties": {
|
|
1240
|
+
"accessCode": {
|
|
1241
|
+
"description": "The access code to access the conference. The maximum length is 128 characters.\nWhen creating new conference data, populate only the subset of {meetingCode, accessCode, passcode, password, pin} fields that match the terminology that the conference provider uses. Only the populated fields should be displayed.\nOptional.",
|
|
1242
|
+
"type": "string"
|
|
1243
|
+
},
|
|
1244
|
+
"entryPointFeatures": {
|
|
1245
|
+
"description": "Features of the entry point, such as being toll or toll-free. One entry point can have multiple features. However, toll and toll-free cannot be both set on the same entry point.",
|
|
1246
|
+
"items": {
|
|
1247
|
+
"type": "string"
|
|
1248
|
+
},
|
|
1249
|
+
"type": "array"
|
|
1250
|
+
},
|
|
1251
|
+
"entryPointType": {
|
|
1252
|
+
"description": "The type of the conference entry point.\nPossible values are: \n- \"video\" - joining a conference over HTTP. A conference can have zero or one video entry point.\n- \"phone\" - joining a conference by dialing a phone number. A conference can have zero or more phone entry points.\n- \"sip\" - joining a conference over SIP. A conference can have zero or one sip entry point.\n- \"more\" - further conference joining instructions, for example additional phone numbers. A conference can have zero or one more entry point. A conference with only a more entry point is not a valid conference.",
|
|
1253
|
+
"type": "string"
|
|
1254
|
+
},
|
|
1255
|
+
"label": {
|
|
1256
|
+
"description": "The label for the URI. Visible to end users. Not localized. The maximum length is 512 characters.\nExamples: \n- for video: meet.google.com/aaa-bbbb-ccc\n- for phone: +1 123 268 2601\n- for sip: 12345678@altostrat.com\n- for more: should not be filled \nOptional.",
|
|
1257
|
+
"type": "string"
|
|
1258
|
+
},
|
|
1259
|
+
"meetingCode": {
|
|
1260
|
+
"description": "The meeting code to access the conference. The maximum length is 128 characters.\nWhen creating new conference data, populate only the subset of {meetingCode, accessCode, passcode, password, pin} fields that match the terminology that the conference provider uses. Only the populated fields should be displayed.\nOptional.",
|
|
1261
|
+
"type": "string"
|
|
1262
|
+
},
|
|
1263
|
+
"passcode": {
|
|
1264
|
+
"description": "The passcode to access the conference. The maximum length is 128 characters.\nWhen creating new conference data, populate only the subset of {meetingCode, accessCode, passcode, password, pin} fields that match the terminology that the conference provider uses. Only the populated fields should be displayed.",
|
|
1265
|
+
"type": "string"
|
|
1266
|
+
},
|
|
1267
|
+
"password": {
|
|
1268
|
+
"description": "The password to access the conference. The maximum length is 128 characters.\nWhen creating new conference data, populate only the subset of {meetingCode, accessCode, passcode, password, pin} fields that match the terminology that the conference provider uses. Only the populated fields should be displayed.\nOptional.",
|
|
1269
|
+
"type": "string"
|
|
1270
|
+
},
|
|
1271
|
+
"pin": {
|
|
1272
|
+
"description": "The PIN to access the conference. The maximum length is 128 characters.\nWhen creating new conference data, populate only the subset of {meetingCode, accessCode, passcode, password, pin} fields that match the terminology that the conference provider uses. Only the populated fields should be displayed.\nOptional.",
|
|
1273
|
+
"type": "string"
|
|
1274
|
+
},
|
|
1275
|
+
"regionCode": {
|
|
1276
|
+
"description": "The CLDR/ISO 3166 region code for the country associated with this phone access. Example: \"SE\" for Sweden.\nCalendar backend will populate this field only for EntryPointType.PHONE.",
|
|
1277
|
+
"type": "string"
|
|
1278
|
+
},
|
|
1279
|
+
"uri": {
|
|
1280
|
+
"description": "The URI of the entry point. The maximum length is 1300 characters.\nFormat: \n- for video, http: or https: schema is required.\n- for phone, tel: schema is required. The URI should include the entire dial sequence (e.g., tel:+12345678900,,,123456789;1234).\n- for sip, sip: schema is required, e.g., sip:12345678@myprovider.com.\n- for more, http: or https: schema is required.",
|
|
1281
|
+
"type": "string"
|
|
1282
|
+
}
|
|
1283
|
+
},
|
|
1284
|
+
"type": "object"
|
|
1285
|
+
},
|
|
1286
|
+
"Event": {
|
|
1287
|
+
"properties": {
|
|
1288
|
+
"anyoneCanAddSelf": {
|
|
1289
|
+
"default": false,
|
|
1290
|
+
"description": "Whether anyone can invite themselves to the event (deprecated). Optional. The default is False.",
|
|
1291
|
+
"type": "boolean"
|
|
1292
|
+
},
|
|
1293
|
+
"attachments": {
|
|
1294
|
+
"description": "File attachments for the event.\nIn order to modify attachments the supportsAttachments request parameter should be set to true.\nThere can be at most 25 attachments per event,",
|
|
1295
|
+
"items": {
|
|
1296
|
+
"$ref": "#/components/schemas/EventAttachment"
|
|
1297
|
+
},
|
|
1298
|
+
"type": "array"
|
|
1299
|
+
},
|
|
1300
|
+
"attendees": {
|
|
1301
|
+
"description": "The attendees of the event. See the Events with attendees guide for more information on scheduling events with other calendar users. Service accounts need to use domain-wide delegation of authority to populate the attendee list.",
|
|
1302
|
+
"items": {
|
|
1303
|
+
"$ref": "#/components/schemas/EventAttendee"
|
|
1304
|
+
},
|
|
1305
|
+
"type": "array"
|
|
1306
|
+
},
|
|
1307
|
+
"attendeesOmitted": {
|
|
1308
|
+
"default": false,
|
|
1309
|
+
"description": "Whether attendees may have been omitted from the event's representation. When retrieving an event, this may be due to a restriction specified by the maxAttendee query parameter. When updating an event, this can be used to only update the participant's response. Optional. The default is False.",
|
|
1310
|
+
"type": "boolean"
|
|
1311
|
+
},
|
|
1312
|
+
"colorId": {
|
|
1313
|
+
"description": "The color of the event. This is an ID referring to an entry in the event section of the colors definition (see the colors endpoint). Optional.",
|
|
1314
|
+
"type": "string"
|
|
1315
|
+
},
|
|
1316
|
+
"conferenceData": {
|
|
1317
|
+
"$ref": "#/components/schemas/ConferenceData",
|
|
1318
|
+
"description": "The conference-related information, such as details of a Google Meet conference. To create new conference details use the createRequest field. To persist your changes, remember to set the conferenceDataVersion request parameter to 1 for all event modification requests."
|
|
1319
|
+
},
|
|
1320
|
+
"created": {
|
|
1321
|
+
"description": "Creation time of the event (as a RFC3339 timestamp). Read-only.",
|
|
1322
|
+
"format": "date-time",
|
|
1323
|
+
"type": "string"
|
|
1324
|
+
},
|
|
1325
|
+
"creator": {
|
|
1326
|
+
"description": "The creator of the event. Read-only.",
|
|
1327
|
+
"properties": {
|
|
1328
|
+
"displayName": {
|
|
1329
|
+
"description": "The creator's name, if available.",
|
|
1330
|
+
"type": "string"
|
|
1331
|
+
},
|
|
1332
|
+
"email": {
|
|
1333
|
+
"description": "The creator's email address, if available.",
|
|
1334
|
+
"type": "string"
|
|
1335
|
+
},
|
|
1336
|
+
"id": {
|
|
1337
|
+
"description": "The creator's Profile ID, if available.",
|
|
1338
|
+
"type": "string"
|
|
1339
|
+
},
|
|
1340
|
+
"self": {
|
|
1341
|
+
"default": false,
|
|
1342
|
+
"description": "Whether the creator corresponds to the calendar on which this copy of the event appears. Read-only. The default is False.",
|
|
1343
|
+
"type": "boolean"
|
|
1344
|
+
}
|
|
1345
|
+
},
|
|
1346
|
+
"type": "object"
|
|
1347
|
+
},
|
|
1348
|
+
"description": {
|
|
1349
|
+
"description": "Description of the event. Can contain HTML. Optional.",
|
|
1350
|
+
"type": "string"
|
|
1351
|
+
},
|
|
1352
|
+
"end": {
|
|
1353
|
+
"$ref": "#/components/schemas/EventDateTime",
|
|
1354
|
+
"description": "The (exclusive) end time of the event. For a recurring event, this is the end time of the first instance."
|
|
1355
|
+
},
|
|
1356
|
+
"endTimeUnspecified": {
|
|
1357
|
+
"default": false,
|
|
1358
|
+
"description": "Whether the end time is actually unspecified. An end time is still provided for compatibility reasons, even if this attribute is set to True. The default is False.",
|
|
1359
|
+
"type": "boolean"
|
|
1360
|
+
},
|
|
1361
|
+
"etag": {
|
|
1362
|
+
"description": "ETag of the resource.",
|
|
1363
|
+
"type": "string"
|
|
1364
|
+
},
|
|
1365
|
+
"eventType": {
|
|
1366
|
+
"default": "default",
|
|
1367
|
+
"description": "Specific type of the event. Read-only. Possible values are: \n- \"default\" - A regular event or not further specified. \n- \"outOfOffice\" - An out-of-office event. \n- \"focusTime\" - A focus-time event. \n- \"workingLocation\" - A working location event. Developer Preview.",
|
|
1368
|
+
"type": "string"
|
|
1369
|
+
},
|
|
1370
|
+
"extendedProperties": {
|
|
1371
|
+
"description": "Extended properties of the event.",
|
|
1372
|
+
"properties": {
|
|
1373
|
+
"private": {
|
|
1374
|
+
"additionalProperties": {
|
|
1375
|
+
"description": "The name of the private property and the corresponding value.",
|
|
1376
|
+
"type": "string"
|
|
1377
|
+
},
|
|
1378
|
+
"description": "Properties that are private to the copy of the event that appears on this calendar.",
|
|
1379
|
+
"type": "object"
|
|
1380
|
+
},
|
|
1381
|
+
"shared": {
|
|
1382
|
+
"additionalProperties": {
|
|
1383
|
+
"description": "The name of the shared property and the corresponding value.",
|
|
1384
|
+
"type": "string"
|
|
1385
|
+
},
|
|
1386
|
+
"description": "Properties that are shared between copies of the event on other attendees' calendars.",
|
|
1387
|
+
"type": "object"
|
|
1388
|
+
}
|
|
1389
|
+
},
|
|
1390
|
+
"type": "object"
|
|
1391
|
+
},
|
|
1392
|
+
"gadget": {
|
|
1393
|
+
"description": "A gadget that extends this event. Gadgets are deprecated; this structure is instead only used for returning birthday calendar metadata.",
|
|
1394
|
+
"properties": {
|
|
1395
|
+
"display": {
|
|
1396
|
+
"description": "The gadget's display mode. Deprecated. Possible values are: \n- \"icon\" - The gadget displays next to the event's title in the calendar view. \n- \"chip\" - The gadget displays when the event is clicked.",
|
|
1397
|
+
"type": "string"
|
|
1398
|
+
},
|
|
1399
|
+
"height": {
|
|
1400
|
+
"description": "The gadget's height in pixels. The height must be an integer greater than 0. Optional. Deprecated.",
|
|
1401
|
+
"format": "int32",
|
|
1402
|
+
"type": "integer"
|
|
1403
|
+
},
|
|
1404
|
+
"iconLink": {
|
|
1405
|
+
"description": "The gadget's icon URL. The URL scheme must be HTTPS. Deprecated.",
|
|
1406
|
+
"type": "string"
|
|
1407
|
+
},
|
|
1408
|
+
"link": {
|
|
1409
|
+
"description": "The gadget's URL. The URL scheme must be HTTPS. Deprecated.",
|
|
1410
|
+
"type": "string"
|
|
1411
|
+
},
|
|
1412
|
+
"preferences": {
|
|
1413
|
+
"additionalProperties": {
|
|
1414
|
+
"description": "The preference name and corresponding value.",
|
|
1415
|
+
"type": "string"
|
|
1416
|
+
},
|
|
1417
|
+
"description": "Preferences.",
|
|
1418
|
+
"type": "object"
|
|
1419
|
+
},
|
|
1420
|
+
"title": {
|
|
1421
|
+
"description": "The gadget's title. Deprecated.",
|
|
1422
|
+
"type": "string"
|
|
1423
|
+
},
|
|
1424
|
+
"type": {
|
|
1425
|
+
"description": "The gadget's type. Deprecated.",
|
|
1426
|
+
"type": "string"
|
|
1427
|
+
},
|
|
1428
|
+
"width": {
|
|
1429
|
+
"description": "The gadget's width in pixels. The width must be an integer greater than 0. Optional. Deprecated.",
|
|
1430
|
+
"format": "int32",
|
|
1431
|
+
"type": "integer"
|
|
1432
|
+
}
|
|
1433
|
+
},
|
|
1434
|
+
"type": "object"
|
|
1435
|
+
},
|
|
1436
|
+
"guestsCanInviteOthers": {
|
|
1437
|
+
"default": true,
|
|
1438
|
+
"description": "Whether attendees other than the organizer can invite others to the event. Optional. The default is True.",
|
|
1439
|
+
"type": "boolean"
|
|
1440
|
+
},
|
|
1441
|
+
"guestsCanModify": {
|
|
1442
|
+
"default": false,
|
|
1443
|
+
"description": "Whether attendees other than the organizer can modify the event. Optional. The default is False.",
|
|
1444
|
+
"type": "boolean"
|
|
1445
|
+
},
|
|
1446
|
+
"guestsCanSeeOtherGuests": {
|
|
1447
|
+
"default": true,
|
|
1448
|
+
"description": "Whether attendees other than the organizer can see who the event's attendees are. Optional. The default is True.",
|
|
1449
|
+
"type": "boolean"
|
|
1450
|
+
},
|
|
1451
|
+
"hangoutLink": {
|
|
1452
|
+
"description": "An absolute link to the Google Hangout associated with this event. Read-only.",
|
|
1453
|
+
"type": "string"
|
|
1454
|
+
},
|
|
1455
|
+
"htmlLink": {
|
|
1456
|
+
"description": "An absolute link to this event in the Google Calendar Web UI. Read-only.",
|
|
1457
|
+
"type": "string"
|
|
1458
|
+
},
|
|
1459
|
+
"iCalUID": {
|
|
1460
|
+
"description": "Event unique identifier as defined in RFC5545. It is used to uniquely identify events accross calendaring systems and must be supplied when importing events via the import method.\nNote that the iCalUID and the id are not identical and only one of them should be supplied at event creation time. One difference in their semantics is that in recurring events, all occurrences of one event have different ids while they all share the same iCalUIDs. To retrieve an event using its iCalUID, call the events.list method using the iCalUID parameter. To retrieve an event using its id, call the events.get method.",
|
|
1461
|
+
"type": "string"
|
|
1462
|
+
},
|
|
1463
|
+
"id": {
|
|
1464
|
+
"description": "Opaque identifier of the event. When creating new single or recurring events, you can specify their IDs. Provided IDs must follow these rules: \n- characters allowed in the ID are those used in base32hex encoding, i.e. lowercase letters a-v and digits 0-9, see section 3.1.2 in RFC2938 \n- the length of the ID must be between 5 and 1024 characters \n- the ID must be unique per calendar Due to the globally distributed nature of the system, we cannot guarantee that ID collisions will be detected at event creation time. To minimize the risk of collisions we recommend using an established UUID algorithm such as one described in RFC4122.\nIf you do not specify an ID, it will be automatically generated by the server.\nNote that the icalUID and the id are not identical and only one of them should be supplied at event creation time. One difference in their semantics is that in recurring events, all occurrences of one event have different ids while they all share the same icalUIDs.",
|
|
1465
|
+
"type": "string"
|
|
1466
|
+
},
|
|
1467
|
+
"kind": {
|
|
1468
|
+
"default": "calendar#event",
|
|
1469
|
+
"description": "Type of the resource (\"calendar#event\").",
|
|
1470
|
+
"type": "string"
|
|
1471
|
+
},
|
|
1472
|
+
"location": {
|
|
1473
|
+
"description": "Geographic location of the event as free-form text. Optional.",
|
|
1474
|
+
"type": "string"
|
|
1475
|
+
},
|
|
1476
|
+
"locked": {
|
|
1477
|
+
"default": false,
|
|
1478
|
+
"description": "Whether this is a locked event copy where no changes can be made to the main event fields \"summary\", \"description\", \"location\", \"start\", \"end\" or \"recurrence\". The default is False. Read-Only.",
|
|
1479
|
+
"type": "boolean"
|
|
1480
|
+
},
|
|
1481
|
+
"organizer": {
|
|
1482
|
+
"description": "The organizer of the event. If the organizer is also an attendee, this is indicated with a separate entry in attendees with the organizer field set to True. To change the organizer, use the move operation. Read-only, except when importing an event.",
|
|
1483
|
+
"properties": {
|
|
1484
|
+
"displayName": {
|
|
1485
|
+
"description": "The organizer's name, if available.",
|
|
1486
|
+
"type": "string"
|
|
1487
|
+
},
|
|
1488
|
+
"email": {
|
|
1489
|
+
"description": "The organizer's email address, if available. It must be a valid email address as per RFC5322.",
|
|
1490
|
+
"type": "string"
|
|
1491
|
+
},
|
|
1492
|
+
"id": {
|
|
1493
|
+
"description": "The organizer's Profile ID, if available.",
|
|
1494
|
+
"type": "string"
|
|
1495
|
+
},
|
|
1496
|
+
"self": {
|
|
1497
|
+
"default": false,
|
|
1498
|
+
"description": "Whether the organizer corresponds to the calendar on which this copy of the event appears. Read-only. The default is False.",
|
|
1499
|
+
"type": "boolean"
|
|
1500
|
+
}
|
|
1501
|
+
},
|
|
1502
|
+
"type": "object"
|
|
1503
|
+
},
|
|
1504
|
+
"originalStartTime": {
|
|
1505
|
+
"$ref": "#/components/schemas/EventDateTime",
|
|
1506
|
+
"description": "For an instance of a recurring event, this is the time at which this event would start according to the recurrence data in the recurring event identified by recurringEventId. It uniquely identifies the instance within the recurring event series even if the instance was moved to a different time. Immutable."
|
|
1507
|
+
},
|
|
1508
|
+
"privateCopy": {
|
|
1509
|
+
"default": false,
|
|
1510
|
+
"description": "If set to True, Event propagation is disabled. Note that it is not the same thing as Private event properties. Optional. Immutable. The default is False.",
|
|
1511
|
+
"type": "boolean"
|
|
1512
|
+
},
|
|
1513
|
+
"recurrence": {
|
|
1514
|
+
"description": "List of RRULE, EXRULE, RDATE and EXDATE lines for a recurring event, as specified in RFC5545. Note that DTSTART and DTEND lines are not allowed in this field; event start and end times are specified in the start and end fields. This field is omitted for single events or instances of recurring events.",
|
|
1515
|
+
"items": {
|
|
1516
|
+
"type": "string"
|
|
1517
|
+
},
|
|
1518
|
+
"type": "array"
|
|
1519
|
+
},
|
|
1520
|
+
"recurringEventId": {
|
|
1521
|
+
"description": "For an instance of a recurring event, this is the id of the recurring event to which this instance belongs. Immutable.",
|
|
1522
|
+
"type": "string"
|
|
1523
|
+
},
|
|
1524
|
+
"reminders": {
|
|
1525
|
+
"description": "Information about the event's reminders for the authenticated user.",
|
|
1526
|
+
"properties": {
|
|
1527
|
+
"overrides": {
|
|
1528
|
+
"description": "If the event doesn't use the default reminders, this lists the reminders specific to the event, or, if not set, indicates that no reminders are set for this event. The maximum number of override reminders is 5.",
|
|
1529
|
+
"items": {
|
|
1530
|
+
"$ref": "#/components/schemas/EventReminder"
|
|
1531
|
+
},
|
|
1532
|
+
"type": "array"
|
|
1533
|
+
},
|
|
1534
|
+
"useDefault": {
|
|
1535
|
+
"description": "Whether the default reminders of the calendar apply to the event.",
|
|
1536
|
+
"type": "boolean"
|
|
1537
|
+
}
|
|
1538
|
+
},
|
|
1539
|
+
"type": "object"
|
|
1540
|
+
},
|
|
1541
|
+
"sequence": {
|
|
1542
|
+
"description": "Sequence number as per iCalendar.",
|
|
1543
|
+
"format": "int32",
|
|
1544
|
+
"type": "integer"
|
|
1545
|
+
},
|
|
1546
|
+
"source": {
|
|
1547
|
+
"description": "Source from which the event was created. For example, a web page, an email message or any document identifiable by an URL with HTTP or HTTPS scheme. Can only be seen or modified by the creator of the event.",
|
|
1548
|
+
"properties": {
|
|
1549
|
+
"title": {
|
|
1550
|
+
"description": "Title of the source; for example a title of a web page or an email subject.",
|
|
1551
|
+
"type": "string"
|
|
1552
|
+
},
|
|
1553
|
+
"url": {
|
|
1554
|
+
"description": "URL of the source pointing to a resource. The URL scheme must be HTTP or HTTPS.",
|
|
1555
|
+
"type": "string"
|
|
1556
|
+
}
|
|
1557
|
+
},
|
|
1558
|
+
"type": "object"
|
|
1559
|
+
},
|
|
1560
|
+
"start": {
|
|
1561
|
+
"$ref": "#/components/schemas/EventDateTime",
|
|
1562
|
+
"description": "The (inclusive) start time of the event. For a recurring event, this is the start time of the first instance."
|
|
1563
|
+
},
|
|
1564
|
+
"status": {
|
|
1565
|
+
"description": "Status of the event. Optional. Possible values are: \n- \"confirmed\" - The event is confirmed. This is the default status. \n- \"tentative\" - The event is tentatively confirmed. \n- \"cancelled\" - The event is cancelled (deleted). The list method returns cancelled events only on incremental sync (when syncToken or updatedMin are specified) or if the showDeleted flag is set to true. The get method always returns them.\nA cancelled status represents two different states depending on the event type: \n- Cancelled exceptions of an uncancelled recurring event indicate that this instance should no longer be presented to the user. Clients should store these events for the lifetime of the parent recurring event.\nCancelled exceptions are only guaranteed to have values for the id, recurringEventId and originalStartTime fields populated. The other fields might be empty. \n- All other cancelled events represent deleted events. Clients should remove their locally synced copies. Such cancelled events will eventually disappear, so do not rely on them being available indefinitely.\nDeleted events are only guaranteed to have the id field populated. On the organizer's calendar, cancelled events continue to expose event details (summary, location, etc.) so that they can be restored (undeleted). Similarly, the events to which the user was invited and that they manually removed continue to provide details. However, incremental sync requests with showDeleted set to false will not return these details.\nIf an event changes its organizer (for example via the move operation) and the original organizer is not on the attendee list, it will leave behind a cancelled event where only the id field is guaranteed to be populated.",
|
|
1566
|
+
"type": "string"
|
|
1567
|
+
},
|
|
1568
|
+
"summary": {
|
|
1569
|
+
"description": "Title of the event.",
|
|
1570
|
+
"type": "string"
|
|
1571
|
+
},
|
|
1572
|
+
"transparency": {
|
|
1573
|
+
"default": "opaque",
|
|
1574
|
+
"description": "Whether the event blocks time on the calendar. Optional. Possible values are: \n- \"opaque\" - Default value. The event does block time on the calendar. This is equivalent to setting Show me as to Busy in the Calendar UI. \n- \"transparent\" - The event does not block time on the calendar. This is equivalent to setting Show me as to Available in the Calendar UI.",
|
|
1575
|
+
"type": "string"
|
|
1576
|
+
},
|
|
1577
|
+
"updated": {
|
|
1578
|
+
"description": "Last modification time of the event (as a RFC3339 timestamp). Read-only.",
|
|
1579
|
+
"format": "date-time",
|
|
1580
|
+
"type": "string"
|
|
1581
|
+
},
|
|
1582
|
+
"visibility": {
|
|
1583
|
+
"default": "default",
|
|
1584
|
+
"description": "Visibility of the event. Optional. Possible values are: \n- \"default\" - Uses the default visibility for events on the calendar. This is the default value. \n- \"public\" - The event is public and event details are visible to all readers of the calendar. \n- \"private\" - The event is private and only event attendees may view event details. \n- \"confidential\" - The event is private. This value is provided for compatibility reasons.",
|
|
1585
|
+
"type": "string"
|
|
1586
|
+
},
|
|
1587
|
+
"workingLocationProperties": {
|
|
1588
|
+
"$ref": "#/components/schemas/EventWorkingLocationProperties",
|
|
1589
|
+
"description": "Developer Preview: Working Location event data. Read-only."
|
|
1590
|
+
}
|
|
1591
|
+
},
|
|
1592
|
+
"type": "object"
|
|
1593
|
+
},
|
|
1594
|
+
"EventAttachment": {
|
|
1595
|
+
"properties": {
|
|
1596
|
+
"fileId": {
|
|
1597
|
+
"description": "ID of the attached file. Read-only.\nFor Google Drive files, this is the ID of the corresponding Files resource entry in the Drive API.",
|
|
1598
|
+
"type": "string"
|
|
1599
|
+
},
|
|
1600
|
+
"fileUrl": {
|
|
1601
|
+
"description": "URL link to the attachment.\nFor adding Google Drive file attachments use the same format as in alternateLink property of the Files resource in the Drive API.\nRequired when adding an attachment.",
|
|
1602
|
+
"type": "string"
|
|
1603
|
+
},
|
|
1604
|
+
"iconLink": {
|
|
1605
|
+
"description": "URL link to the attachment's icon. This field can only be modified for custom third-party attachments.",
|
|
1606
|
+
"type": "string"
|
|
1607
|
+
},
|
|
1608
|
+
"mimeType": {
|
|
1609
|
+
"description": "Internet media type (MIME type) of the attachment.",
|
|
1610
|
+
"type": "string"
|
|
1611
|
+
},
|
|
1612
|
+
"title": {
|
|
1613
|
+
"description": "Attachment title.",
|
|
1614
|
+
"type": "string"
|
|
1615
|
+
}
|
|
1616
|
+
},
|
|
1617
|
+
"type": "object"
|
|
1618
|
+
},
|
|
1619
|
+
"EventAttendee": {
|
|
1620
|
+
"properties": {
|
|
1621
|
+
"additionalGuests": {
|
|
1622
|
+
"default": 0,
|
|
1623
|
+
"description": "Number of additional guests. Optional. The default is 0.",
|
|
1624
|
+
"format": "int32",
|
|
1625
|
+
"type": "integer"
|
|
1626
|
+
},
|
|
1627
|
+
"comment": {
|
|
1628
|
+
"description": "The attendee's response comment. Optional.",
|
|
1629
|
+
"type": "string"
|
|
1630
|
+
},
|
|
1631
|
+
"displayName": {
|
|
1632
|
+
"description": "The attendee's name, if available. Optional.",
|
|
1633
|
+
"type": "string"
|
|
1634
|
+
},
|
|
1635
|
+
"email": {
|
|
1636
|
+
"description": "The attendee's email address, if available. This field must be present when adding an attendee. It must be a valid email address as per RFC5322.\nRequired when adding an attendee.",
|
|
1637
|
+
"type": "string"
|
|
1638
|
+
},
|
|
1639
|
+
"id": {
|
|
1640
|
+
"description": "The attendee's Profile ID, if available.",
|
|
1641
|
+
"type": "string"
|
|
1642
|
+
},
|
|
1643
|
+
"optional": {
|
|
1644
|
+
"default": false,
|
|
1645
|
+
"description": "Whether this is an optional attendee. Optional. The default is False.",
|
|
1646
|
+
"type": "boolean"
|
|
1647
|
+
},
|
|
1648
|
+
"organizer": {
|
|
1649
|
+
"description": "Whether the attendee is the organizer of the event. Read-only. The default is False.",
|
|
1650
|
+
"type": "boolean"
|
|
1651
|
+
},
|
|
1652
|
+
"resource": {
|
|
1653
|
+
"default": false,
|
|
1654
|
+
"description": "Whether the attendee is a resource. Can only be set when the attendee is added to the event for the first time. Subsequent modifications are ignored. Optional. The default is False.",
|
|
1655
|
+
"type": "boolean"
|
|
1656
|
+
},
|
|
1657
|
+
"responseStatus": {
|
|
1658
|
+
"description": "The attendee's response status. Possible values are: \n- \"needsAction\" - The attendee has not responded to the invitation (recommended for new events). \n- \"declined\" - The attendee has declined the invitation. \n- \"tentative\" - The attendee has tentatively accepted the invitation. \n- \"accepted\" - The attendee has accepted the invitation. Warning: If you add an event using the values declined, tentative, or accepted, attendees with the \"Add invitations to my calendar\" setting set to \"When I respond to invitation in email\" won't see an event on their calendar unless they choose to change their invitation response in the event invitation email.",
|
|
1659
|
+
"type": "string"
|
|
1660
|
+
},
|
|
1661
|
+
"self": {
|
|
1662
|
+
"default": false,
|
|
1663
|
+
"description": "Whether this entry represents the calendar on which this copy of the event appears. Read-only. The default is False.",
|
|
1664
|
+
"type": "boolean"
|
|
1665
|
+
}
|
|
1666
|
+
},
|
|
1667
|
+
"type": "object"
|
|
1668
|
+
},
|
|
1669
|
+
"EventDateTime": {
|
|
1670
|
+
"properties": {
|
|
1671
|
+
"date": {
|
|
1672
|
+
"description": "The date, in the format \"yyyy-mm-dd\", if this is an all-day event.",
|
|
1673
|
+
"format": "date",
|
|
1674
|
+
"type": "string"
|
|
1675
|
+
},
|
|
1676
|
+
"dateTime": {
|
|
1677
|
+
"description": "The time, as a combined date-time value (formatted according to RFC3339). A time zone offset is required unless a time zone is explicitly specified in timeZone.",
|
|
1678
|
+
"format": "date-time",
|
|
1679
|
+
"type": "string"
|
|
1680
|
+
},
|
|
1681
|
+
"timeZone": {
|
|
1682
|
+
"description": "The time zone in which the time is specified. (Formatted as an IANA Time Zone Database name, e.g. \"Europe/Zurich\".) For recurring events this field is required and specifies the time zone in which the recurrence is expanded. For single events this field is optional and indicates a custom time zone for the event start/end.",
|
|
1683
|
+
"type": "string"
|
|
1684
|
+
}
|
|
1685
|
+
},
|
|
1686
|
+
"type": "object"
|
|
1687
|
+
},
|
|
1688
|
+
"EventReminder": {
|
|
1689
|
+
"properties": {
|
|
1690
|
+
"method": {
|
|
1691
|
+
"description": "The method used by this reminder. Possible values are: \n- \"email\" - Reminders are sent via email. \n- \"popup\" - Reminders are sent via a UI popup. \nRequired when adding a reminder.",
|
|
1692
|
+
"type": "string"
|
|
1693
|
+
},
|
|
1694
|
+
"minutes": {
|
|
1695
|
+
"description": "Number of minutes before the start of the event when the reminder should trigger. Valid values are between 0 and 40320 (4 weeks in minutes).\nRequired when adding a reminder.",
|
|
1696
|
+
"format": "int32",
|
|
1697
|
+
"type": "integer"
|
|
1698
|
+
}
|
|
1699
|
+
},
|
|
1700
|
+
"type": "object"
|
|
1701
|
+
},
|
|
1702
|
+
"EventWorkingLocationProperties": {
|
|
1703
|
+
"properties": {
|
|
1704
|
+
"customLocation": {
|
|
1705
|
+
"description": "If present, specifies that the user is working from a custom location.",
|
|
1706
|
+
"properties": {
|
|
1707
|
+
"label": {
|
|
1708
|
+
"description": "An optional extra label for additional information.",
|
|
1709
|
+
"type": "string"
|
|
1710
|
+
}
|
|
1711
|
+
},
|
|
1712
|
+
"type": "object"
|
|
1713
|
+
},
|
|
1714
|
+
"homeOffice": {
|
|
1715
|
+
"description": "If present, specifies that the user is working at home."
|
|
1716
|
+
},
|
|
1717
|
+
"officeLocation": {
|
|
1718
|
+
"description": "If present, specifies that the user is working from an office.",
|
|
1719
|
+
"properties": {
|
|
1720
|
+
"buildingId": {
|
|
1721
|
+
"description": "An optional building identifier. This should reference a building ID in the organization's Resources database.",
|
|
1722
|
+
"type": "string"
|
|
1723
|
+
},
|
|
1724
|
+
"deskId": {
|
|
1725
|
+
"description": "An optional arbitrary desk identifier.",
|
|
1726
|
+
"type": "string"
|
|
1727
|
+
},
|
|
1728
|
+
"floorId": {
|
|
1729
|
+
"description": "An optional arbitrary floor identifier.",
|
|
1730
|
+
"type": "string"
|
|
1731
|
+
},
|
|
1732
|
+
"floorSectionId": {
|
|
1733
|
+
"description": "An optional arbitrary floor section identifier.",
|
|
1734
|
+
"type": "string"
|
|
1735
|
+
},
|
|
1736
|
+
"label": {
|
|
1737
|
+
"description": "An optional extra label for additional information.",
|
|
1738
|
+
"type": "string"
|
|
1739
|
+
}
|
|
1740
|
+
},
|
|
1741
|
+
"type": "object"
|
|
1742
|
+
}
|
|
1743
|
+
},
|
|
1744
|
+
"type": "object"
|
|
1745
|
+
},
|
|
1746
|
+
"FreeBusyRequest": {
|
|
1747
|
+
"properties": {
|
|
1748
|
+
"calendarExpansionMax": {
|
|
1749
|
+
"description": "Maximal number of calendars for which FreeBusy information is to be provided. Optional. Maximum value is 50.",
|
|
1750
|
+
"format": "int32",
|
|
1751
|
+
"type": "integer"
|
|
1752
|
+
},
|
|
1753
|
+
"groupExpansionMax": {
|
|
1754
|
+
"description": "Maximal number of calendar identifiers to be provided for a single group. Optional. An error is returned for a group with more members than this value. Maximum value is 100.",
|
|
1755
|
+
"format": "int32",
|
|
1756
|
+
"type": "integer"
|
|
1757
|
+
},
|
|
1758
|
+
"items": {
|
|
1759
|
+
"description": "List of calendars and/or groups to query.",
|
|
1760
|
+
"items": {
|
|
1761
|
+
"$ref": "#/components/schemas/FreeBusyRequestItem"
|
|
1762
|
+
},
|
|
1763
|
+
"type": "array"
|
|
1764
|
+
},
|
|
1765
|
+
"timeMax": {
|
|
1766
|
+
"description": "The end of the interval for the query formatted as per RFC3339.",
|
|
1767
|
+
"format": "date-time",
|
|
1768
|
+
"type": "string"
|
|
1769
|
+
},
|
|
1770
|
+
"timeMin": {
|
|
1771
|
+
"description": "The start of the interval for the query formatted as per RFC3339.",
|
|
1772
|
+
"format": "date-time",
|
|
1773
|
+
"type": "string"
|
|
1774
|
+
},
|
|
1775
|
+
"timeZone": {
|
|
1776
|
+
"default": "UTC",
|
|
1777
|
+
"description": "Time zone used in the response. Optional. The default is UTC.",
|
|
1778
|
+
"type": "string"
|
|
1779
|
+
}
|
|
1780
|
+
},
|
|
1781
|
+
"type": "object"
|
|
1782
|
+
},
|
|
1783
|
+
"FreeBusyRequestItem": {
|
|
1784
|
+
"properties": {
|
|
1785
|
+
"id": {
|
|
1786
|
+
"description": "The identifier of a calendar or a group.",
|
|
1787
|
+
"type": "string"
|
|
1788
|
+
}
|
|
1789
|
+
},
|
|
1790
|
+
"type": "object"
|
|
1791
|
+
}
|
|
1792
|
+
},
|
|
1793
|
+
"securitySchemes": {
|
|
1794
|
+
"Oauth2": {
|
|
1795
|
+
"description": "Oauth 2.0 implicit authentication",
|
|
1796
|
+
"flows": {
|
|
1797
|
+
"implicit": {
|
|
1798
|
+
"authorizationUrl": "https://accounts.google.com/o/oauth2/auth",
|
|
1799
|
+
"scopes": {
|
|
1800
|
+
"https://www.googleapis.com/auth/calendar": "See, edit, share, and permanently delete all the calendars you can access using Google Calendar",
|
|
1801
|
+
"https://www.googleapis.com/auth/calendar.events": "View and edit events on all your calendars",
|
|
1802
|
+
"https://www.googleapis.com/auth/calendar.events.readonly": "View events on all your calendars",
|
|
1803
|
+
"https://www.googleapis.com/auth/calendar.readonly": "See and download any calendar you can access using your Google Calendar",
|
|
1804
|
+
"https://www.googleapis.com/auth/calendar.settings.readonly": "View your Calendar settings"
|
|
1805
|
+
}
|
|
1806
|
+
}
|
|
1807
|
+
},
|
|
1808
|
+
"type": "oauth2"
|
|
1809
|
+
},
|
|
1810
|
+
"Oauth2c": {
|
|
1811
|
+
"description": "Oauth 2.0 authorizationCode authentication",
|
|
1812
|
+
"flows": {
|
|
1813
|
+
"authorizationCode": {
|
|
1814
|
+
"authorizationUrl": "https://accounts.google.com/o/oauth2/auth",
|
|
1815
|
+
"scopes": {
|
|
1816
|
+
"https://www.googleapis.com/auth/calendar": "See, edit, share, and permanently delete all the calendars you can access using Google Calendar",
|
|
1817
|
+
"https://www.googleapis.com/auth/calendar.events": "View and edit events on all your calendars",
|
|
1818
|
+
"https://www.googleapis.com/auth/calendar.events.readonly": "View events on all your calendars",
|
|
1819
|
+
"https://www.googleapis.com/auth/calendar.readonly": "See and download any calendar you can access using your Google Calendar",
|
|
1820
|
+
"https://www.googleapis.com/auth/calendar.settings.readonly": "View your Calendar settings"
|
|
1821
|
+
},
|
|
1822
|
+
"tokenUrl": "https://accounts.google.com/o/oauth2/token"
|
|
1823
|
+
}
|
|
1824
|
+
},
|
|
1825
|
+
"type": "oauth2"
|
|
1826
|
+
}
|
|
1827
|
+
}
|
|
1828
|
+
}
|
|
1829
|
+
}
|