vendor: update all dependencies to latest versions

This commit is contained in:
Nick Craig-Wood
2017-09-30 15:27:27 +01:00
parent 911d121bb9
commit b017fcfe9a
3048 changed files with 537057 additions and 189681 deletions

File diff suppressed because it is too large Load Diff

View File

@ -469,6 +469,8 @@ type CreateImageRequest struct {
// cannot exceed 25 megapixels, and must be in either in PNG, JPEG, or
// GIF
// format.
//
// The provided URL can be at maximum 2K bytes large.
Url string `json:"url,omitempty"`
// ForceSendFields is a list of field names (e.g. "ElementProperties")
@ -640,7 +642,7 @@ type CreateParagraphBulletsRequest struct {
// `DIAMOND` and `DISC` bullet glyph for
// the first 3 list nesting levels.
// "BULLET_STAR_CIRCLE_SQUARE" - A bulleted list with a `STAR`,
// `CIRCLE` and `DISC` bullet glyph for
// `CIRCLE` and `SQUARE` bullet glyph for
// the first 3 list nesting levels.
// "BULLET_ARROW3D_CIRCLE_SQUARE" - A bulleted list with a `ARROW3D`,
// `CIRCLE` and `SQUARE` bullet glyph for
@ -2712,6 +2714,35 @@ func (s *List) MarshalJSON() ([]byte, error) {
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// MasterProperties: The properties of Page that are only
// relevant for pages with page_type MASTER.
type MasterProperties struct {
// DisplayName: The human-readable name of the master.
DisplayName string `json:"displayName,omitempty"`
// ForceSendFields is a list of field names (e.g. "DisplayName") to
// unconditionally include in API requests. By default, fields with
// empty values are omitted from API requests. However, any non-pointer,
// non-interface field appearing in ForceSendFields will be sent to the
// server regardless of whether the field is empty or not. This may be
// used to include empty fields in Patch requests.
ForceSendFields []string `json:"-"`
// NullFields is a list of field names (e.g. "DisplayName") to include
// in API requests with the JSON null value. By default, fields with
// empty values are omitted from API requests. However, any field with
// an empty value appearing in NullFields will be sent to the server as
// null. It is an error if a field in this list has a non-empty value.
// This may be used to include null fields in Patch requests.
NullFields []string `json:"-"`
}
func (s *MasterProperties) MarshalJSON() ([]byte, error) {
type noMethod MasterProperties
raw := noMethod(*s)
return gensupport.MarshalJSON(raw, s.ForceSendFields, s.NullFields)
}
// NestingLevel: Contains properties describing the look and feel of a
// list bullet at a given
// level of nesting.
@ -2999,6 +3030,10 @@ type Page struct {
// LAYOUT.
LayoutProperties *LayoutProperties `json:"layoutProperties,omitempty"`
// MasterProperties: Master specific properties. Only set if page_type =
// MASTER.
MasterProperties *MasterProperties `json:"masterProperties,omitempty"`
// NotesProperties: Notes specific properties. Only set if page_type =
// NOTES.
NotesProperties *NotesProperties `json:"notesProperties,omitempty"`
@ -3083,7 +3118,7 @@ func (s *Page) MarshalJSON() ([]byte, error) {
type PageBackgroundFill struct {
// PropertyState: The background fill property state.
//
// Updating the the fill on a page will implicitly update this field
// Updating the fill on a page will implicitly update this field
// to
// `RENDERED`, unless another value is specified in the same request.
// To
@ -3189,6 +3224,19 @@ type PageElement struct {
Title string `json:"title,omitempty"`
// Transform: The transform of the page element.
//
// The visual appearance of the page element is determined by its
// absolute
// transform. To compute the absolute transform, preconcatenate a
// page
// element's transform with the transforms of all of its parent groups.
// If the
// page element is not in a group, its absolute transform is the same as
// the
// value in this field.
//
// The initial transform for the newly created Group is always the
// identity transform.
Transform *AffineTransform `json:"transform,omitempty"`
// Video: A video page element.
@ -3861,6 +3909,8 @@ type ReplaceAllShapesWithImageRequest struct {
// cannot exceed 25 megapixels, and must be in either in PNG, JPEG, or
// GIF
// format.
//
// The provided URL can be at maximum 2K bytes large.
ImageUrl string `json:"imageUrl,omitempty"`
// PageObjectIds: If non-empty, limits the matches to page elements only
@ -5222,6 +5272,8 @@ type StretchedPictureFill struct {
// cannot exceed 25 megapixels, and must be in either in PNG, JPEG, or
// GIF
// format.
//
// The provided URL can be at maximum 2K bytes large.
ContentUrl string `json:"contentUrl,omitempty"`
// Size: The original size of the picture fill. This field is read-only.
@ -6144,6 +6196,12 @@ func (s *UpdateLinePropertiesRequest) MarshalJSON() ([]byte, error) {
// UpdatePageElementTransformRequest: Updates the transform of a page
// element.
//
// Updating the transform of a group will change the absolute transform
// of the
// page elements in that group, which can change their visual
// appearance. See
// the documentation for PageElement.transform for more details.
type UpdatePageElementTransformRequest struct {
// ApplyMode: The apply mode of the transform update.
//