mirror of
https://github.com/cwinfo/matterbridge.git
synced 2025-06-28 00:59:24 +00:00
Update dependencies (#1521)
This commit is contained in:
8
vendor/github.com/SevereCloud/vksdk/v2/object/account.go
generated
vendored
8
vendor/github.com/SevereCloud/vksdk/v2/object/account.go
generated
vendored
@ -16,9 +16,11 @@ type AccountPushConversations struct {
|
||||
|
||||
// AccountPushConversationsItem struct.
|
||||
type AccountPushConversationsItem struct {
|
||||
DisabledUntil int `json:"disabled_until"` // Time until that notifications are disabled in seconds
|
||||
PeerID int `json:"peer_id"` // Peer ID
|
||||
Sound int `json:"sound"` // Information whether the sound are enabled
|
||||
DisabledUntil int `json:"disabled_until"` // Time until that notifications are disabled in seconds
|
||||
PeerID int `json:"peer_id"` // Peer ID
|
||||
Sound int `json:"sound"` // Information whether the sound are enabled
|
||||
DisabledMentions BaseBoolInt `json:"disabled_mentions"`
|
||||
DisabledMassMentions BaseBoolInt `json:"disabled_mass_mentions"`
|
||||
}
|
||||
|
||||
// AccountPushParams struct.
|
||||
|
1
vendor/github.com/SevereCloud/vksdk/v2/object/groups.go
generated
vendored
1
vendor/github.com/SevereCloud/vksdk/v2/object/groups.go
generated
vendored
@ -32,6 +32,7 @@ type GroupsAddress struct {
|
||||
Timetable GroupsAddressTimetable `json:"timetable"` // Week timetable for the address
|
||||
Title string `json:"title"` // Title of the place (Zinger, etc)
|
||||
WorkInfoStatus string `json:"work_info_status"` // Status of information about timetable
|
||||
PlaceID int `json:"place_id"`
|
||||
}
|
||||
|
||||
// GroupsAddressTimetable Timetable for a week.
|
||||
|
6
vendor/github.com/SevereCloud/vksdk/v2/object/market.go
generated
vendored
6
vendor/github.com/SevereCloud/vksdk/v2/object/market.go
generated
vendored
@ -15,8 +15,9 @@ const (
|
||||
|
||||
// MarketCurrency struct.
|
||||
type MarketCurrency struct {
|
||||
ID int `json:"id"` // Currency ID
|
||||
Name string `json:"name"` // Currency sign
|
||||
ID int `json:"id"` // Currency ID
|
||||
Name string `json:"name"` // Currency sign
|
||||
Title string `json:"title"` // Currency Title
|
||||
}
|
||||
|
||||
// MarketMarketAlbum struct.
|
||||
@ -72,6 +73,7 @@ type MarketMarketItem struct {
|
||||
VariantsGroupingID int `json:"variants_grouping_id"`
|
||||
PropertyValues []MarketMarketItemProperty `json:"property_values"`
|
||||
CartQuantity int `json:"cart_quantity"`
|
||||
SKU string `json:"sku"`
|
||||
}
|
||||
|
||||
// UnmarshalJSON MarketMarketItem.
|
||||
|
3
vendor/github.com/SevereCloud/vksdk/v2/object/messages.go
generated
vendored
3
vendor/github.com/SevereCloud/vksdk/v2/object/messages.go
generated
vendored
@ -63,6 +63,7 @@ type MessagesMessage struct {
|
||||
Important BaseBoolInt `json:"important"` // Is it an important message
|
||||
IsHidden BaseBoolInt `json:"is_hidden"`
|
||||
IsCropped BaseBoolInt `json:"is_cropped"`
|
||||
IsSilent BaseBoolInt `json:"is_silent"`
|
||||
Out BaseBoolInt `json:"out"` // Information whether the message is outcoming
|
||||
WasListened BaseBoolInt `json:"was_listened,omitempty"`
|
||||
Keyboard MessagesKeyboard `json:"keyboard"`
|
||||
@ -461,6 +462,7 @@ type MessagesChatPreview struct {
|
||||
LocalID int `json:"local_id"`
|
||||
Joined bool `json:"joined"`
|
||||
ChatSettings MessagesConversationChatSettings `json:"chat_settings"`
|
||||
IsMember BaseBoolInt `json:"is_member"`
|
||||
}
|
||||
|
||||
// MessagesChatPushSettings struct.
|
||||
@ -510,6 +512,7 @@ type MessagesConversationCanWrite struct {
|
||||
// MessagesConversationChatSettings struct.
|
||||
type MessagesConversationChatSettings struct {
|
||||
MembersCount int `json:"members_count"`
|
||||
FriendsCount int `json:"friends_count"`
|
||||
Photo MessagesChatSettingsPhoto `json:"photo"`
|
||||
PinnedMessage MessagesPinnedMessage `json:"pinned_message"`
|
||||
State string `json:"state"`
|
||||
|
1
vendor/github.com/SevereCloud/vksdk/v2/object/object.go
generated
vendored
1
vendor/github.com/SevereCloud/vksdk/v2/object/object.go
generated
vendored
@ -262,6 +262,7 @@ type BaseSticker struct {
|
||||
ImagesWithBackground []BaseImage `json:"images_with_background"`
|
||||
ProductID int `json:"product_id"`
|
||||
StickerID int `json:"sticker_id"`
|
||||
IsAllowed bool `json:"is_allowed"`
|
||||
AnimationURL string `json:"animation_url"`
|
||||
}
|
||||
|
||||
|
1
vendor/github.com/SevereCloud/vksdk/v2/object/polls.go
generated
vendored
1
vendor/github.com/SevereCloud/vksdk/v2/object/polls.go
generated
vendored
@ -38,6 +38,7 @@ type PollsPoll struct {
|
||||
Friends []PollsFriend `json:"friends"`
|
||||
Profiles []UsersUser `json:"profiles"`
|
||||
Groups []GroupsGroup `json:"groups"`
|
||||
EmbedHash string `json:"embed_hash"`
|
||||
}
|
||||
|
||||
// ToAttachment return attachment format.
|
||||
|
19
vendor/github.com/SevereCloud/vksdk/v2/object/stories.go
generated
vendored
19
vendor/github.com/SevereCloud/vksdk/v2/object/stories.go
generated
vendored
@ -27,7 +27,9 @@ type StoriesNarrativeInfo struct {
|
||||
Views int `json:"views"`
|
||||
}
|
||||
|
||||
// StoriesPromoData struct.
|
||||
// StoriesPromoData additional data for promo stories.
|
||||
//
|
||||
// TODO: v3 rename StoriesPromoBlock.
|
||||
type StoriesPromoData struct {
|
||||
Name string `json:"name"`
|
||||
Photo50 string `json:"photo_50"`
|
||||
@ -164,11 +166,16 @@ const (
|
||||
|
||||
// StoriesFeedItem struct.
|
||||
type StoriesFeedItem struct {
|
||||
Type StoriesFeedItemType `json:"type"`
|
||||
ID string `json:"id"`
|
||||
Stories []StoriesStory `json:"stories"`
|
||||
Grouped StoriesFeedItemType `json:"grouped"`
|
||||
App AppsApp `json:"app"`
|
||||
Type StoriesFeedItemType `json:"type"`
|
||||
ID string `json:"id"`
|
||||
Stories []StoriesStory `json:"stories"`
|
||||
Grouped StoriesFeedItemType `json:"grouped"`
|
||||
App AppsApp `json:"app"`
|
||||
BirthdayUserID int `json:"birthday_user_id"`
|
||||
TrackCode string `json:"track_code"`
|
||||
HasUnseen BaseBoolInt `json:"has_unseen"`
|
||||
Name string `json:"name"`
|
||||
PromoData StoriesPromoData `json:"promo_data"`
|
||||
}
|
||||
|
||||
// StoriesClickableStickers struct.
|
||||
|
1
vendor/github.com/SevereCloud/vksdk/v2/object/users.go
generated
vendored
1
vendor/github.com/SevereCloud/vksdk/v2/object/users.go
generated
vendored
@ -69,6 +69,7 @@ type UsersUser struct {
|
||||
CanSeeAudio BaseBoolInt `json:"can_see_audio"`
|
||||
CanWritePrivateMessage BaseBoolInt `json:"can_write_private_message"`
|
||||
CanSendFriendRequest BaseBoolInt `json:"can_send_friend_request"`
|
||||
CanCallFromGroup BaseBoolInt `json:"can_call_from_group"`
|
||||
Verified BaseBoolInt `json:"verified"`
|
||||
Trending BaseBoolInt `json:"trending"`
|
||||
Blacklisted BaseBoolInt `json:"blacklisted"`
|
||||
|
19
vendor/github.com/SevereCloud/vksdk/v2/object/video.go
generated
vendored
19
vendor/github.com/SevereCloud/vksdk/v2/object/video.go
generated
vendored
@ -81,14 +81,15 @@ func (video VideoVideo) ToAttachment() string {
|
||||
|
||||
// VideoRestriction struct.
|
||||
type VideoRestriction struct {
|
||||
Title string `json:"title"`
|
||||
Text string `json:"text"`
|
||||
AlwaysShown BaseBoolInt `json:"always_shown"`
|
||||
Blur BaseBoolInt `json:"blur"`
|
||||
CanPlay BaseBoolInt `json:"can_play"`
|
||||
CanPreview BaseBoolInt `json:"can_preview"`
|
||||
CardIcon []BaseImage `json:"card_icon"`
|
||||
ListIcon []BaseImage `json:"list_icon"`
|
||||
Title string `json:"title"`
|
||||
Text string `json:"text"`
|
||||
AlwaysShown BaseBoolInt `json:"always_shown"`
|
||||
Blur BaseBoolInt `json:"blur"`
|
||||
CanPlay BaseBoolInt `json:"can_play"`
|
||||
CanPreview BaseBoolInt `json:"can_preview"`
|
||||
CardIcon []BaseImage `json:"card_icon"`
|
||||
ListIcon []BaseImage `json:"list_icon"`
|
||||
DisclaimerType int `json:"disclaimer_type"`
|
||||
}
|
||||
|
||||
// VideoActionButton struct.
|
||||
@ -113,6 +114,8 @@ type VideoSnippet struct {
|
||||
type VideoVideoFiles struct {
|
||||
External string `json:"external"` // URL of the external player
|
||||
Mp4_1080 string `json:"mp4_1080"` // URL of the mpeg4 file with 1080p quality
|
||||
Mp4_1440 string `json:"mp4_1440"` // URL of the mpeg4 file with 2k quality
|
||||
Mp4_2160 string `json:"mp4_2160"` // URL of the mpeg4 file with 4k quality
|
||||
Mp4_240 string `json:"mp4_240"` // URL of the mpeg4 file with 240p quality
|
||||
Mp4_360 string `json:"mp4_360"` // URL of the mpeg4 file with 360p quality
|
||||
Mp4_480 string `json:"mp4_480"` // URL of the mpeg4 file with 480p quality
|
||||
|
Reference in New Issue
Block a user