diff options
Diffstat (limited to 'vendor/github.com/SevereCloud/vksdk/v2/object')
4 files changed, 22 insertions, 1 deletions
diff --git a/vendor/github.com/SevereCloud/vksdk/v2/object/stats.go b/vendor/github.com/SevereCloud/vksdk/v2/object/stats.go index b8fe5001..46b891ba 100644 --- a/vendor/github.com/SevereCloud/vksdk/v2/object/stats.go +++ b/vendor/github.com/SevereCloud/vksdk/v2/object/stats.go @@ -66,12 +66,24 @@ type StatsViews struct { // StatsWallpostStat struct. type StatsWallpostStat struct { + PostID int `json:"post_id"` Hide int `json:"hide"` // Hidings number JoinGroup int `json:"join_group"` // People have joined the group Links int `json:"links"` // Link click-through ReachSubscribers int `json:"reach_subscribers"` // Subscribers reach ReachTotal int `json:"reach_total"` // Total reach + ReachViral int `json:"reach_viral"` // Viral reach + ReachAds int `json:"reach_ads"` // Advertising reach Report int `json:"report"` // Reports number ToGroup int `json:"to_group"` // Click-through to community Unsubscribe int `json:"unsubscribe"` // Unsubscribed members + AdViews int `json:"ad_views"` + AdSubscribers int `json:"ad_subscribers"` + AdHide int `json:"ad_hide"` + AdUnsubscribe int `json:"ad_unsubscribe"` + AdLinks int `json:"ad_links"` + AdToGroup int `json:"ad_to_group"` + AdJoinGroup int `json:"ad_join_group"` + AdCoverage int `json:"ad_coverage"` + AdReport int `json:"ad_report"` } diff --git a/vendor/github.com/SevereCloud/vksdk/v2/object/stories.go b/vendor/github.com/SevereCloud/vksdk/v2/object/stories.go index 5f87745a..5de9494c 100644 --- a/vendor/github.com/SevereCloud/vksdk/v2/object/stories.go +++ b/vendor/github.com/SevereCloud/vksdk/v2/object/stories.go @@ -239,7 +239,7 @@ func (cs StoriesClickableStickers) ToJSON() string { } // StoriesClickableSticker struct. -type StoriesClickableSticker struct { // nolint: maligned +type StoriesClickableSticker struct { //nolint: maligned ID int `json:"id"` Type string `json:"type"` ClickableArea []StoriesClickablePoint `json:"clickable_area"` diff --git a/vendor/github.com/SevereCloud/vksdk/v2/object/users.go b/vendor/github.com/SevereCloud/vksdk/v2/object/users.go index 91ef92be..9027229c 100644 --- a/vendor/github.com/SevereCloud/vksdk/v2/object/users.go +++ b/vendor/github.com/SevereCloud/vksdk/v2/object/users.go @@ -125,6 +125,7 @@ type UsersUser struct { MobilePhone string `json:"mobile_phone"` HomePhone string `json:"home_phone"` FoundWith int `json:"found_with"` // TODO: check it + ImageStatus ImageStatusInfo `json:"image_status"` OnlineInfo UsersOnlineInfo `json:"online_info"` Mutual FriendsRequestsMutual `json:"mutual"` TrackCode string `json:"track_code"` @@ -138,6 +139,13 @@ func (user UsersUser) ToMention() string { return fmt.Sprintf("[id%d|%s %s]", user.ID, user.FirstName, user.LastName) } +// ImageStatusInfo struct. +type ImageStatusInfo struct { + ID int `json:"id"` + Name string `json:"name"` + Images []BaseImage `json:"images"` +} + // UsersOnlineInfo struct. type UsersOnlineInfo struct { AppID int `json:"app_id"` diff --git a/vendor/github.com/SevereCloud/vksdk/v2/object/wall.go b/vendor/github.com/SevereCloud/vksdk/v2/object/wall.go index 1a195b39..99443659 100644 --- a/vendor/github.com/SevereCloud/vksdk/v2/object/wall.go +++ b/vendor/github.com/SevereCloud/vksdk/v2/object/wall.go @@ -161,6 +161,7 @@ type WallWallpost struct { Edited int `json:"edited"` // Date of editing in Unixtime Copyright WallPostCopyright `json:"copyright"` PostID int `json:"post_id"` + PostponedID int `json:"postponed_id"` // ID from scheduled posts ParentsStack []int `json:"parents_stack"` Donut WallWallpostDonut `json:"donut"` ShortTextRate float64 `json:"short_text_rate"` |