postproxy-sdk 1.4.0 → 1.4.1
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/lib/postproxy/constants.rb +1 -1
- data/lib/postproxy/types.rb +1 -1
- data/lib/postproxy/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 220a9066d8453acb2430cf48d76d634e8ac69a62a244bedb28a8d1e00a4f5232
|
|
4
|
+
data.tar.gz: c5b68356a893d52101198f827d55e31f2931629d170b152b1a038a02f9151350
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 580704f8585988b149e298ad924865d7a6bf7004709af8babb0761e898d6748ac907dcbe428042049d2951f61dd25de103f28edb57b966fa5b7a70c1394fffb9
|
|
7
|
+
data.tar.gz: 9d259eeab2ff02ddb7af93d1c62eb8950469d18ecbb01d42321d8d158f20299bb4447da88a1200b933f993bad119693ac98a522980fdd5cb3335f4c29935e2f8
|
data/lib/postproxy/constants.rb
CHANGED
|
@@ -14,7 +14,7 @@ module PostProxy
|
|
|
14
14
|
PLATFORM_POST_STATUSES = %w[pending processing published failed deleted].freeze
|
|
15
15
|
|
|
16
16
|
INSTAGRAM_FORMATS = %w[post reel story].freeze
|
|
17
|
-
FACEBOOK_FORMATS = %w[post story].freeze
|
|
17
|
+
FACEBOOK_FORMATS = %w[post story reel].freeze
|
|
18
18
|
TIKTOK_FORMATS = %w[video image].freeze
|
|
19
19
|
LINKEDIN_FORMATS = %w[post].freeze
|
|
20
20
|
YOUTUBE_FORMATS = %w[post].freeze
|
data/lib/postproxy/types.rb
CHANGED
|
@@ -291,7 +291,7 @@ module PostProxy
|
|
|
291
291
|
# Platform-specific parameter structs
|
|
292
292
|
|
|
293
293
|
class FacebookParams < Model
|
|
294
|
-
attr_accessor :format, :first_comment, :page_id
|
|
294
|
+
attr_accessor :format, :title, :first_comment, :page_id
|
|
295
295
|
end
|
|
296
296
|
|
|
297
297
|
class InstagramParams < Model
|
data/lib/postproxy/version.rb
CHANGED