@vendasta/social-posts 5.31.0 → 5.31.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.
- package/esm2020/lib/_internal/interfaces/wordpress-plugin.interface.mjs +1 -1
- package/esm2020/lib/_internal/objects/wordpress-plugin.mjs +4 -1
- package/esm2020/lib/_internal/wordpress-plugin.api.service.mjs +1 -1
- package/fesm2015/vendasta-social-posts.mjs +3 -0
- package/fesm2015/vendasta-social-posts.mjs.map +1 -1
- package/fesm2020/vendasta-social-posts.mjs +3 -0
- package/fesm2020/vendasta-social-posts.mjs.map +1 -1
- package/lib/_internal/interfaces/wordpress-plugin.interface.d.ts +1 -0
- package/lib/_internal/objects/wordpress-plugin.d.ts +1 -0
- package/package.json +1 -1
|
@@ -5920,6 +5920,9 @@ class PublishPostRequest {
|
|
|
5920
5920
|
if (typeof this.partnerId !== 'undefined') {
|
|
5921
5921
|
toReturn['partnerId'] = this.partnerId;
|
|
5922
5922
|
}
|
|
5923
|
+
if (typeof this.internalPostId !== 'undefined') {
|
|
5924
|
+
toReturn['internalPostId'] = this.internalPostId;
|
|
5925
|
+
}
|
|
5923
5926
|
return toReturn;
|
|
5924
5927
|
}
|
|
5925
5928
|
}
|