1
0
mirror of https://github.com/taigrr/wtf synced 2025-01-18 04:03:14 -08:00

Update dependencies to latest versions

This commit is contained in:
Chris Cummer
2019-01-11 16:44:42 -08:00
parent ea27f40164
commit 48cb7ba773
358 changed files with 29553 additions and 8982 deletions

View File

@@ -3,7 +3,7 @@
"oauth2": {
"scopes": {
"https://www.googleapis.com/auth/calendar": {
"description": "Manage your calendars"
"description": "See, edit, share, and permanently delete all the calendars you can access using Google Calendar"
},
"https://www.googleapis.com/auth/calendar.events": {
"description": "View and edit events on all your calendars"
@@ -26,7 +26,7 @@
"description": "Manipulates events and other calendar data.",
"discoveryVersion": "v1",
"documentationLink": "https://developers.google.com/google-apps/calendar/firstapp",
"etag": "\"J3WqvAcMk4eQjJXvfSI4Yr8VouA/HcEmuhTEJ15i1AnuK6mgjI8kmMs\"",
"etag": "\"J3WqvAcMk4eQjJXvfSI4Yr8VouA/lI7ZDM8riDWk38LHz77rwUi1L4g\"",
"icons": {
"x16": "http://www.google.com/images/icons/product/calendar-16.png",
"x32": "http://www.google.com/images/icons/product/calendar-32.png"
@@ -1724,7 +1724,7 @@
}
}
},
"revision": "20181002",
"revision": "20181125",
"rootUrl": "https://www.googleapis.com/",
"schemas": {
"Acl": {
@@ -1991,7 +1991,7 @@
"id": "CalendarNotification",
"properties": {
"method": {
"description": "The method used to deliver the notification. Possible values are: \n- \"email\" - Reminders are sent via email. \n- \"sms\" - Reminders are sent via SMS. This value is read-only and is ignored on inserts and updates. SMS reminders are only available for G Suite customers. \nRequired when adding a notification.",
"description": "The method used to deliver the notification. Possible values are: \n- \"email\" - Notifications are sent via email. \n- \"sms\" - Deprecated. Once this feature is shutdown, the API will no longer return notifications using this method. Any newly added SMS notifications will be ignored. See Google Calendar SMS notifications to be removed for more information.\nNotifications are sent via SMS. This value is read-only and is ignored on inserts and updates. SMS notifications are only available for G Suite customers. \nRequired when adding a notification.",
"type": "string"
},
"type": {
@@ -2710,7 +2710,7 @@
"id": "EventReminder",
"properties": {
"method": {
"description": "The method used by this reminder. Possible values are: \n- \"email\" - Reminders are sent via email. \n- \"sms\" - Reminders are sent via SMS. These are only available for G Suite customers. Requests to set SMS reminders for other account types are ignored. \n- \"popup\" - Reminders are sent via a UI popup. \nRequired when adding a reminder.",
"description": "The method used by this reminder. Possible values are: \n- \"email\" - Reminders are sent via email. \n- \"sms\" - Deprecated. Once this feature is shutdown, the API will no longer return reminders using this method. Any newly added SMS reminders will be ignored. See Google Calendar SMS notifications to be removed for more information.\nReminders are sent via SMS. These are only available for G Suite customers. Requests to set SMS reminders for other account types are ignored. \n- \"popup\" - Reminders are sent via a UI popup. \nRequired when adding a reminder.",
"type": "string"
},
"minutes": {

View File

@@ -1,3 +1,9 @@
// Copyright 2019 Google Inc. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Code generated file. DO NOT EDIT.
// Package calendar provides access to the Calendar API.
//
// See https://developers.google.com/google-apps/calendar/firstapp
@@ -11,18 +17,18 @@ package calendar // import "google.golang.org/api/calendar/v3"
import (
"bytes"
"context"
"encoding/json"
"errors"
"fmt"
context "golang.org/x/net/context"
ctxhttp "golang.org/x/net/context/ctxhttp"
gensupport "google.golang.org/api/gensupport"
googleapi "google.golang.org/api/googleapi"
"io"
"net/http"
"net/url"
"strconv"
"strings"
gensupport "google.golang.org/api/gensupport"
googleapi "google.golang.org/api/googleapi"
)
// Always reference these packages, just in case the auto-generated code
@@ -38,7 +44,6 @@ var _ = googleapi.Version
var _ = errors.New
var _ = strings.Replace
var _ = context.Canceled
var _ = ctxhttp.Do
const apiId = "calendar:v3"
const apiName = "calendar"
@@ -47,7 +52,8 @@ const basePath = "https://www.googleapis.com/calendar/v3/"
// OAuth2 scopes used by this API.
const (
// Manage your calendars
// See, edit, share, and permanently delete all the calendars you can
// access using Google Calendar
CalendarScope = "https://www.googleapis.com/auth/calendar"
// View and edit events on all your calendars
@@ -577,10 +583,14 @@ func (s *CalendarListEntryNotificationSettings) MarshalJSON() ([]byte, error) {
type CalendarNotification struct {
// Method: The method used to deliver the notification. Possible values
// are:
// - "email" - Reminders are sent via email.
// - "sms" - Reminders are sent via SMS. This value is read-only and is
// ignored on inserts and updates. SMS reminders are only available for
// G Suite customers.
// - "email" - Notifications are sent via email.
// - "sms" - Deprecated. Once this feature is shutdown, the API will no
// longer return notifications using this method. Any newly added SMS
// notifications will be ignored. See Google Calendar SMS notifications
// to be removed for more information.
// Notifications are sent via SMS. This value is read-only and is
// ignored on inserts and updates. SMS notifications are only available
// for G Suite customers.
// Required when adding a notification.
Method string `json:"method,omitempty"`
@@ -1888,9 +1898,13 @@ func (s *EventDateTime) MarshalJSON() ([]byte, error) {
type EventReminder struct {
// Method: The method used by this reminder. Possible values are:
// - "email" - Reminders are sent via email.
// - "sms" - Reminders are sent via SMS. These are only available for G
// Suite customers. Requests to set SMS reminders for other account
// types are ignored.
// - "sms" - Deprecated. Once this feature is shutdown, the API will no
// longer return reminders using this method. Any newly added SMS
// reminders will be ignored. See Google Calendar SMS notifications to
// be removed for more information.
// Reminders are sent via SMS. These are only available for G Suite
// customers. Requests to set SMS reminders for other account types are
// ignored.
// - "popup" - Reminders are sent via a UI popup.
// Required when adding a reminder.
Method string `json:"method,omitempty"`