post-for-me 0.1.0.pre.alpha.7 → 0.1.0.pre.alpha.8
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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -0
- data/README.md +1 -1
- data/lib/post_for_me/models/bluesky_configuration_dto.rb +32 -3
- data/lib/post_for_me/models/facebook_configuration_dto.rb +32 -3
- data/lib/post_for_me/models/instagram_configuration_dto.rb +32 -3
- data/lib/post_for_me/models/linkedin_configuration_dto.rb +32 -3
- data/lib/post_for_me/models/pinterest_configuration_dto.rb +32 -3
- data/lib/post_for_me/models/threads_configuration_dto.rb +32 -3
- data/lib/post_for_me/models/tiktok_configuration.rb +32 -3
- data/lib/post_for_me/models/twitter_configuration_dto.rb +32 -3
- data/lib/post_for_me/models/youtube_configuration_dto.rb +32 -3
- data/lib/post_for_me/version.rb +1 -1
- data/rbi/post_for_me/models/bluesky_configuration_dto.rbi +63 -3
- data/rbi/post_for_me/models/facebook_configuration_dto.rbi +60 -3
- data/rbi/post_for_me/models/instagram_configuration_dto.rbi +62 -3
- data/rbi/post_for_me/models/linkedin_configuration_dto.rbi +63 -3
- data/rbi/post_for_me/models/pinterest_configuration_dto.rbi +62 -3
- data/rbi/post_for_me/models/threads_configuration_dto.rbi +60 -3
- data/rbi/post_for_me/models/tiktok_configuration.rbi +57 -3
- data/rbi/post_for_me/models/twitter_configuration_dto.rbi +63 -3
- data/rbi/post_for_me/models/youtube_configuration_dto.rbi +60 -3
- data/sig/post_for_me/models/bluesky_configuration_dto.rbs +37 -4
- data/sig/post_for_me/models/facebook_configuration_dto.rbs +27 -4
- data/sig/post_for_me/models/instagram_configuration_dto.rbs +27 -4
- data/sig/post_for_me/models/linkedin_configuration_dto.rbs +37 -4
- data/sig/post_for_me/models/pinterest_configuration_dto.rbs +27 -4
- data/sig/post_for_me/models/threads_configuration_dto.rbs +27 -4
- data/sig/post_for_me/models/tiktok_configuration.rbs +27 -4
- data/sig/post_for_me/models/twitter_configuration_dto.rbs +37 -4
- data/sig/post_for_me/models/youtube_configuration_dto.rbs +35 -4
- metadata +2 -2
|
@@ -3,29 +3,52 @@ module PostForMe
|
|
|
3
3
|
type facebook_configuration_dto =
|
|
4
4
|
{
|
|
5
5
|
caption: top?,
|
|
6
|
-
media: ::Array[
|
|
6
|
+
media: ::Array[PostForMe::FacebookConfigurationDto::Media]?,
|
|
7
7
|
placement: PostForMe::Models::FacebookConfigurationDto::placement?
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
class FacebookConfigurationDto < PostForMe::Internal::Type::BaseModel
|
|
11
11
|
attr_accessor caption: top?
|
|
12
12
|
|
|
13
|
-
attr_accessor media: ::Array[
|
|
13
|
+
attr_accessor media: ::Array[PostForMe::FacebookConfigurationDto::Media]?
|
|
14
14
|
|
|
15
15
|
attr_accessor placement: PostForMe::Models::FacebookConfigurationDto::placement?
|
|
16
16
|
|
|
17
17
|
def initialize: (
|
|
18
18
|
?caption: top?,
|
|
19
|
-
?media: ::Array[
|
|
19
|
+
?media: ::Array[PostForMe::FacebookConfigurationDto::Media]?,
|
|
20
20
|
?placement: PostForMe::Models::FacebookConfigurationDto::placement?
|
|
21
21
|
) -> void
|
|
22
22
|
|
|
23
23
|
def to_hash: -> {
|
|
24
24
|
caption: top?,
|
|
25
|
-
media: ::Array[
|
|
25
|
+
media: ::Array[PostForMe::FacebookConfigurationDto::Media]?,
|
|
26
26
|
placement: PostForMe::Models::FacebookConfigurationDto::placement?
|
|
27
27
|
}
|
|
28
28
|
|
|
29
|
+
type media =
|
|
30
|
+
{ url: String, thumbnail_timestamp_ms: top?, thumbnail_url: top? }
|
|
31
|
+
|
|
32
|
+
class Media < PostForMe::Internal::Type::BaseModel
|
|
33
|
+
attr_accessor url: String
|
|
34
|
+
|
|
35
|
+
attr_accessor thumbnail_timestamp_ms: top?
|
|
36
|
+
|
|
37
|
+
attr_accessor thumbnail_url: top?
|
|
38
|
+
|
|
39
|
+
def initialize: (
|
|
40
|
+
url: String,
|
|
41
|
+
?thumbnail_timestamp_ms: top?,
|
|
42
|
+
?thumbnail_url: top?
|
|
43
|
+
) -> void
|
|
44
|
+
|
|
45
|
+
def to_hash: -> {
|
|
46
|
+
url: String,
|
|
47
|
+
thumbnail_timestamp_ms: top?,
|
|
48
|
+
thumbnail_url: top?
|
|
49
|
+
}
|
|
50
|
+
end
|
|
51
|
+
|
|
29
52
|
type placement = :reels | :stories | :timeline
|
|
30
53
|
|
|
31
54
|
module Placement
|
|
@@ -4,7 +4,7 @@ module PostForMe
|
|
|
4
4
|
{
|
|
5
5
|
caption: top?,
|
|
6
6
|
collaborators: ::Array[String]?,
|
|
7
|
-
media: ::Array[
|
|
7
|
+
media: ::Array[PostForMe::InstagramConfigurationDto::Media]?,
|
|
8
8
|
placement: PostForMe::Models::InstagramConfigurationDto::placement?
|
|
9
9
|
}
|
|
10
10
|
|
|
@@ -13,24 +13,47 @@ module PostForMe
|
|
|
13
13
|
|
|
14
14
|
attr_accessor collaborators: ::Array[String]?
|
|
15
15
|
|
|
16
|
-
attr_accessor media: ::Array[
|
|
16
|
+
attr_accessor media: ::Array[PostForMe::InstagramConfigurationDto::Media]?
|
|
17
17
|
|
|
18
18
|
attr_accessor placement: PostForMe::Models::InstagramConfigurationDto::placement?
|
|
19
19
|
|
|
20
20
|
def initialize: (
|
|
21
21
|
?caption: top?,
|
|
22
22
|
?collaborators: ::Array[String]?,
|
|
23
|
-
?media: ::Array[
|
|
23
|
+
?media: ::Array[PostForMe::InstagramConfigurationDto::Media]?,
|
|
24
24
|
?placement: PostForMe::Models::InstagramConfigurationDto::placement?
|
|
25
25
|
) -> void
|
|
26
26
|
|
|
27
27
|
def to_hash: -> {
|
|
28
28
|
caption: top?,
|
|
29
29
|
collaborators: ::Array[String]?,
|
|
30
|
-
media: ::Array[
|
|
30
|
+
media: ::Array[PostForMe::InstagramConfigurationDto::Media]?,
|
|
31
31
|
placement: PostForMe::Models::InstagramConfigurationDto::placement?
|
|
32
32
|
}
|
|
33
33
|
|
|
34
|
+
type media =
|
|
35
|
+
{ url: String, thumbnail_timestamp_ms: top?, thumbnail_url: top? }
|
|
36
|
+
|
|
37
|
+
class Media < PostForMe::Internal::Type::BaseModel
|
|
38
|
+
attr_accessor url: String
|
|
39
|
+
|
|
40
|
+
attr_accessor thumbnail_timestamp_ms: top?
|
|
41
|
+
|
|
42
|
+
attr_accessor thumbnail_url: top?
|
|
43
|
+
|
|
44
|
+
def initialize: (
|
|
45
|
+
url: String,
|
|
46
|
+
?thumbnail_timestamp_ms: top?,
|
|
47
|
+
?thumbnail_url: top?
|
|
48
|
+
) -> void
|
|
49
|
+
|
|
50
|
+
def to_hash: -> {
|
|
51
|
+
url: String,
|
|
52
|
+
thumbnail_timestamp_ms: top?,
|
|
53
|
+
thumbnail_url: top?
|
|
54
|
+
}
|
|
55
|
+
end
|
|
56
|
+
|
|
34
57
|
type placement = :reels | :stories | :timeline
|
|
35
58
|
|
|
36
59
|
module Placement
|
|
@@ -1,15 +1,48 @@
|
|
|
1
1
|
module PostForMe
|
|
2
2
|
module Models
|
|
3
|
-
type linkedin_configuration_dto =
|
|
3
|
+
type linkedin_configuration_dto =
|
|
4
|
+
{
|
|
5
|
+
caption: top?,
|
|
6
|
+
media: ::Array[PostForMe::LinkedinConfigurationDto::Media]?
|
|
7
|
+
}
|
|
4
8
|
|
|
5
9
|
class LinkedinConfigurationDto < PostForMe::Internal::Type::BaseModel
|
|
6
10
|
attr_accessor caption: top?
|
|
7
11
|
|
|
8
|
-
attr_accessor media: ::Array[
|
|
12
|
+
attr_accessor media: ::Array[PostForMe::LinkedinConfigurationDto::Media]?
|
|
9
13
|
|
|
10
|
-
def initialize: (
|
|
14
|
+
def initialize: (
|
|
15
|
+
?caption: top?,
|
|
16
|
+
?media: ::Array[PostForMe::LinkedinConfigurationDto::Media]?
|
|
17
|
+
) -> void
|
|
11
18
|
|
|
12
|
-
def to_hash: -> {
|
|
19
|
+
def to_hash: -> {
|
|
20
|
+
caption: top?,
|
|
21
|
+
media: ::Array[PostForMe::LinkedinConfigurationDto::Media]?
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
type media =
|
|
25
|
+
{ url: String, thumbnail_timestamp_ms: top?, thumbnail_url: top? }
|
|
26
|
+
|
|
27
|
+
class Media < PostForMe::Internal::Type::BaseModel
|
|
28
|
+
attr_accessor url: String
|
|
29
|
+
|
|
30
|
+
attr_accessor thumbnail_timestamp_ms: top?
|
|
31
|
+
|
|
32
|
+
attr_accessor thumbnail_url: top?
|
|
33
|
+
|
|
34
|
+
def initialize: (
|
|
35
|
+
url: String,
|
|
36
|
+
?thumbnail_timestamp_ms: top?,
|
|
37
|
+
?thumbnail_url: top?
|
|
38
|
+
) -> void
|
|
39
|
+
|
|
40
|
+
def to_hash: -> {
|
|
41
|
+
url: String,
|
|
42
|
+
thumbnail_timestamp_ms: top?,
|
|
43
|
+
thumbnail_url: top?
|
|
44
|
+
}
|
|
45
|
+
end
|
|
13
46
|
end
|
|
14
47
|
end
|
|
15
48
|
end
|
|
@@ -5,7 +5,7 @@ module PostForMe
|
|
|
5
5
|
board_ids: ::Array[String]?,
|
|
6
6
|
caption: top?,
|
|
7
7
|
link: String?,
|
|
8
|
-
media: ::Array[
|
|
8
|
+
media: ::Array[PostForMe::PinterestConfigurationDto::Media]?
|
|
9
9
|
}
|
|
10
10
|
|
|
11
11
|
class PinterestConfigurationDto < PostForMe::Internal::Type::BaseModel
|
|
@@ -15,21 +15,44 @@ module PostForMe
|
|
|
15
15
|
|
|
16
16
|
attr_accessor link: String?
|
|
17
17
|
|
|
18
|
-
attr_accessor media: ::Array[
|
|
18
|
+
attr_accessor media: ::Array[PostForMe::PinterestConfigurationDto::Media]?
|
|
19
19
|
|
|
20
20
|
def initialize: (
|
|
21
21
|
?board_ids: ::Array[String]?,
|
|
22
22
|
?caption: top?,
|
|
23
23
|
?link: String?,
|
|
24
|
-
?media: ::Array[
|
|
24
|
+
?media: ::Array[PostForMe::PinterestConfigurationDto::Media]?
|
|
25
25
|
) -> void
|
|
26
26
|
|
|
27
27
|
def to_hash: -> {
|
|
28
28
|
board_ids: ::Array[String]?,
|
|
29
29
|
caption: top?,
|
|
30
30
|
link: String?,
|
|
31
|
-
media: ::Array[
|
|
31
|
+
media: ::Array[PostForMe::PinterestConfigurationDto::Media]?
|
|
32
32
|
}
|
|
33
|
+
|
|
34
|
+
type media =
|
|
35
|
+
{ url: String, thumbnail_timestamp_ms: top?, thumbnail_url: top? }
|
|
36
|
+
|
|
37
|
+
class Media < PostForMe::Internal::Type::BaseModel
|
|
38
|
+
attr_accessor url: String
|
|
39
|
+
|
|
40
|
+
attr_accessor thumbnail_timestamp_ms: top?
|
|
41
|
+
|
|
42
|
+
attr_accessor thumbnail_url: top?
|
|
43
|
+
|
|
44
|
+
def initialize: (
|
|
45
|
+
url: String,
|
|
46
|
+
?thumbnail_timestamp_ms: top?,
|
|
47
|
+
?thumbnail_url: top?
|
|
48
|
+
) -> void
|
|
49
|
+
|
|
50
|
+
def to_hash: -> {
|
|
51
|
+
url: String,
|
|
52
|
+
thumbnail_timestamp_ms: top?,
|
|
53
|
+
thumbnail_url: top?
|
|
54
|
+
}
|
|
55
|
+
end
|
|
33
56
|
end
|
|
34
57
|
end
|
|
35
58
|
end
|
|
@@ -3,29 +3,52 @@ module PostForMe
|
|
|
3
3
|
type threads_configuration_dto =
|
|
4
4
|
{
|
|
5
5
|
caption: top?,
|
|
6
|
-
media: ::Array[
|
|
6
|
+
media: ::Array[PostForMe::ThreadsConfigurationDto::Media]?,
|
|
7
7
|
placement: PostForMe::Models::ThreadsConfigurationDto::placement?
|
|
8
8
|
}
|
|
9
9
|
|
|
10
10
|
class ThreadsConfigurationDto < PostForMe::Internal::Type::BaseModel
|
|
11
11
|
attr_accessor caption: top?
|
|
12
12
|
|
|
13
|
-
attr_accessor media: ::Array[
|
|
13
|
+
attr_accessor media: ::Array[PostForMe::ThreadsConfigurationDto::Media]?
|
|
14
14
|
|
|
15
15
|
attr_accessor placement: PostForMe::Models::ThreadsConfigurationDto::placement?
|
|
16
16
|
|
|
17
17
|
def initialize: (
|
|
18
18
|
?caption: top?,
|
|
19
|
-
?media: ::Array[
|
|
19
|
+
?media: ::Array[PostForMe::ThreadsConfigurationDto::Media]?,
|
|
20
20
|
?placement: PostForMe::Models::ThreadsConfigurationDto::placement?
|
|
21
21
|
) -> void
|
|
22
22
|
|
|
23
23
|
def to_hash: -> {
|
|
24
24
|
caption: top?,
|
|
25
|
-
media: ::Array[
|
|
25
|
+
media: ::Array[PostForMe::ThreadsConfigurationDto::Media]?,
|
|
26
26
|
placement: PostForMe::Models::ThreadsConfigurationDto::placement?
|
|
27
27
|
}
|
|
28
28
|
|
|
29
|
+
type media =
|
|
30
|
+
{ url: String, thumbnail_timestamp_ms: top?, thumbnail_url: top? }
|
|
31
|
+
|
|
32
|
+
class Media < PostForMe::Internal::Type::BaseModel
|
|
33
|
+
attr_accessor url: String
|
|
34
|
+
|
|
35
|
+
attr_accessor thumbnail_timestamp_ms: top?
|
|
36
|
+
|
|
37
|
+
attr_accessor thumbnail_url: top?
|
|
38
|
+
|
|
39
|
+
def initialize: (
|
|
40
|
+
url: String,
|
|
41
|
+
?thumbnail_timestamp_ms: top?,
|
|
42
|
+
?thumbnail_url: top?
|
|
43
|
+
) -> void
|
|
44
|
+
|
|
45
|
+
def to_hash: -> {
|
|
46
|
+
url: String,
|
|
47
|
+
thumbnail_timestamp_ms: top?,
|
|
48
|
+
thumbnail_url: top?
|
|
49
|
+
}
|
|
50
|
+
end
|
|
51
|
+
|
|
29
52
|
type placement = :reels | :timeline
|
|
30
53
|
|
|
31
54
|
module Placement
|
|
@@ -10,7 +10,7 @@ module PostForMe
|
|
|
10
10
|
disclose_your_brand: bool?,
|
|
11
11
|
is_ai_generated: bool?,
|
|
12
12
|
is_draft: bool?,
|
|
13
|
-
media: ::Array[
|
|
13
|
+
media: ::Array[PostForMe::TiktokConfiguration::Media]?,
|
|
14
14
|
privacy_status: String?,
|
|
15
15
|
title: String?
|
|
16
16
|
}
|
|
@@ -32,7 +32,7 @@ module PostForMe
|
|
|
32
32
|
|
|
33
33
|
attr_accessor is_draft: bool?
|
|
34
34
|
|
|
35
|
-
attr_accessor media: ::Array[
|
|
35
|
+
attr_accessor media: ::Array[PostForMe::TiktokConfiguration::Media]?
|
|
36
36
|
|
|
37
37
|
attr_accessor privacy_status: String?
|
|
38
38
|
|
|
@@ -47,7 +47,7 @@ module PostForMe
|
|
|
47
47
|
?disclose_your_brand: bool?,
|
|
48
48
|
?is_ai_generated: bool?,
|
|
49
49
|
?is_draft: bool?,
|
|
50
|
-
?media: ::Array[
|
|
50
|
+
?media: ::Array[PostForMe::TiktokConfiguration::Media]?,
|
|
51
51
|
?privacy_status: String?,
|
|
52
52
|
?title: String?
|
|
53
53
|
) -> void
|
|
@@ -61,10 +61,33 @@ module PostForMe
|
|
|
61
61
|
disclose_your_brand: bool?,
|
|
62
62
|
is_ai_generated: bool?,
|
|
63
63
|
is_draft: bool?,
|
|
64
|
-
media: ::Array[
|
|
64
|
+
media: ::Array[PostForMe::TiktokConfiguration::Media]?,
|
|
65
65
|
privacy_status: String?,
|
|
66
66
|
title: String?
|
|
67
67
|
}
|
|
68
|
+
|
|
69
|
+
type media =
|
|
70
|
+
{ url: String, thumbnail_timestamp_ms: top?, thumbnail_url: top? }
|
|
71
|
+
|
|
72
|
+
class Media < PostForMe::Internal::Type::BaseModel
|
|
73
|
+
attr_accessor url: String
|
|
74
|
+
|
|
75
|
+
attr_accessor thumbnail_timestamp_ms: top?
|
|
76
|
+
|
|
77
|
+
attr_accessor thumbnail_url: top?
|
|
78
|
+
|
|
79
|
+
def initialize: (
|
|
80
|
+
url: String,
|
|
81
|
+
?thumbnail_timestamp_ms: top?,
|
|
82
|
+
?thumbnail_url: top?
|
|
83
|
+
) -> void
|
|
84
|
+
|
|
85
|
+
def to_hash: -> {
|
|
86
|
+
url: String,
|
|
87
|
+
thumbnail_timestamp_ms: top?,
|
|
88
|
+
thumbnail_url: top?
|
|
89
|
+
}
|
|
90
|
+
end
|
|
68
91
|
end
|
|
69
92
|
end
|
|
70
93
|
end
|
|
@@ -1,15 +1,48 @@
|
|
|
1
1
|
module PostForMe
|
|
2
2
|
module Models
|
|
3
|
-
type twitter_configuration_dto =
|
|
3
|
+
type twitter_configuration_dto =
|
|
4
|
+
{
|
|
5
|
+
caption: top?,
|
|
6
|
+
media: ::Array[PostForMe::TwitterConfigurationDto::Media]?
|
|
7
|
+
}
|
|
4
8
|
|
|
5
9
|
class TwitterConfigurationDto < PostForMe::Internal::Type::BaseModel
|
|
6
10
|
attr_accessor caption: top?
|
|
7
11
|
|
|
8
|
-
attr_accessor media: ::Array[
|
|
12
|
+
attr_accessor media: ::Array[PostForMe::TwitterConfigurationDto::Media]?
|
|
9
13
|
|
|
10
|
-
def initialize: (
|
|
14
|
+
def initialize: (
|
|
15
|
+
?caption: top?,
|
|
16
|
+
?media: ::Array[PostForMe::TwitterConfigurationDto::Media]?
|
|
17
|
+
) -> void
|
|
11
18
|
|
|
12
|
-
def to_hash: -> {
|
|
19
|
+
def to_hash: -> {
|
|
20
|
+
caption: top?,
|
|
21
|
+
media: ::Array[PostForMe::TwitterConfigurationDto::Media]?
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
type media =
|
|
25
|
+
{ url: String, thumbnail_timestamp_ms: top?, thumbnail_url: top? }
|
|
26
|
+
|
|
27
|
+
class Media < PostForMe::Internal::Type::BaseModel
|
|
28
|
+
attr_accessor url: String
|
|
29
|
+
|
|
30
|
+
attr_accessor thumbnail_timestamp_ms: top?
|
|
31
|
+
|
|
32
|
+
attr_accessor thumbnail_url: top?
|
|
33
|
+
|
|
34
|
+
def initialize: (
|
|
35
|
+
url: String,
|
|
36
|
+
?thumbnail_timestamp_ms: top?,
|
|
37
|
+
?thumbnail_url: top?
|
|
38
|
+
) -> void
|
|
39
|
+
|
|
40
|
+
def to_hash: -> {
|
|
41
|
+
url: String,
|
|
42
|
+
thumbnail_timestamp_ms: top?,
|
|
43
|
+
thumbnail_url: top?
|
|
44
|
+
}
|
|
45
|
+
end
|
|
13
46
|
end
|
|
14
47
|
end
|
|
15
48
|
end
|
|
@@ -1,22 +1,53 @@
|
|
|
1
1
|
module PostForMe
|
|
2
2
|
module Models
|
|
3
3
|
type youtube_configuration_dto =
|
|
4
|
-
{
|
|
4
|
+
{
|
|
5
|
+
caption: top?,
|
|
6
|
+
media: ::Array[PostForMe::YoutubeConfigurationDto::Media]?,
|
|
7
|
+
title: String?
|
|
8
|
+
}
|
|
5
9
|
|
|
6
10
|
class YoutubeConfigurationDto < PostForMe::Internal::Type::BaseModel
|
|
7
11
|
attr_accessor caption: top?
|
|
8
12
|
|
|
9
|
-
attr_accessor media: ::Array[
|
|
13
|
+
attr_accessor media: ::Array[PostForMe::YoutubeConfigurationDto::Media]?
|
|
10
14
|
|
|
11
15
|
attr_accessor title: String?
|
|
12
16
|
|
|
13
17
|
def initialize: (
|
|
14
18
|
?caption: top?,
|
|
15
|
-
?media: ::Array[
|
|
19
|
+
?media: ::Array[PostForMe::YoutubeConfigurationDto::Media]?,
|
|
16
20
|
?title: String?
|
|
17
21
|
) -> void
|
|
18
22
|
|
|
19
|
-
def to_hash: -> {
|
|
23
|
+
def to_hash: -> {
|
|
24
|
+
caption: top?,
|
|
25
|
+
media: ::Array[PostForMe::YoutubeConfigurationDto::Media]?,
|
|
26
|
+
title: String?
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
type media =
|
|
30
|
+
{ url: String, thumbnail_timestamp_ms: top?, thumbnail_url: top? }
|
|
31
|
+
|
|
32
|
+
class Media < PostForMe::Internal::Type::BaseModel
|
|
33
|
+
attr_accessor url: String
|
|
34
|
+
|
|
35
|
+
attr_accessor thumbnail_timestamp_ms: top?
|
|
36
|
+
|
|
37
|
+
attr_accessor thumbnail_url: top?
|
|
38
|
+
|
|
39
|
+
def initialize: (
|
|
40
|
+
url: String,
|
|
41
|
+
?thumbnail_timestamp_ms: top?,
|
|
42
|
+
?thumbnail_url: top?
|
|
43
|
+
) -> void
|
|
44
|
+
|
|
45
|
+
def to_hash: -> {
|
|
46
|
+
url: String,
|
|
47
|
+
thumbnail_timestamp_ms: top?,
|
|
48
|
+
thumbnail_url: top?
|
|
49
|
+
}
|
|
50
|
+
end
|
|
20
51
|
end
|
|
21
52
|
end
|
|
22
53
|
end
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: post-for-me
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.0.pre.alpha.
|
|
4
|
+
version: 0.1.0.pre.alpha.8
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Post For Me
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-
|
|
11
|
+
date: 2025-09-16 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: connection_pool
|