@vendasta/social-posts 5.45.2 → 5.45.3
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/api-v2.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/index.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/social-post-v2.interface.mjs +1 -1
- package/esm2020/lib/_internal/interfaces/social-posts.interface.mjs +1 -1
- package/esm2020/lib/_internal/objects/api-v2.mjs +4 -1
- package/esm2020/lib/_internal/objects/social-post-v2.mjs +7 -1
- package/esm2020/lib/_internal/objects/social-posts.mjs +7 -1
- package/fesm2015/vendasta-social-posts.mjs +15 -0
- package/fesm2015/vendasta-social-posts.mjs.map +1 -1
- package/fesm2020/vendasta-social-posts.mjs +15 -0
- package/fesm2020/vendasta-social-posts.mjs.map +1 -1
- package/lib/_internal/interfaces/api-v2.interface.d.ts +1 -0
- package/lib/_internal/interfaces/social-post-v2.interface.d.ts +2 -0
- package/lib/_internal/interfaces/social-posts.interface.d.ts +2 -0
- package/lib/_internal/objects/api-v2.d.ts +1 -0
- package/lib/_internal/objects/social-post-v2.d.ts +2 -0
- package/lib/_internal/objects/social-posts.d.ts +2 -0
- package/package.json +1 -1
|
@@ -960,6 +960,12 @@ class TikTokCustomization {
|
|
|
960
960
|
if (typeof this.allowStitch !== 'undefined') {
|
|
961
961
|
toReturn['allowStitch'] = this.allowStitch;
|
|
962
962
|
}
|
|
963
|
+
if (typeof this.isBrandOrganic !== 'undefined') {
|
|
964
|
+
toReturn['isBrandOrganic'] = this.isBrandOrganic;
|
|
965
|
+
}
|
|
966
|
+
if (typeof this.isBrandedContent !== 'undefined') {
|
|
967
|
+
toReturn['isBrandedContent'] = this.isBrandedContent;
|
|
968
|
+
}
|
|
963
969
|
return toReturn;
|
|
964
970
|
}
|
|
965
971
|
}
|
|
@@ -4007,6 +4013,12 @@ class TikTokCustomizationV2 {
|
|
|
4007
4013
|
if (typeof this.allowStitch !== 'undefined') {
|
|
4008
4014
|
toReturn['allowStitch'] = this.allowStitch;
|
|
4009
4015
|
}
|
|
4016
|
+
if (typeof this.isBrandOrganic !== 'undefined') {
|
|
4017
|
+
toReturn['isBrandOrganic'] = this.isBrandOrganic;
|
|
4018
|
+
}
|
|
4019
|
+
if (typeof this.isBrandedContent !== 'undefined') {
|
|
4020
|
+
toReturn['isBrandedContent'] = this.isBrandedContent;
|
|
4021
|
+
}
|
|
4010
4022
|
return toReturn;
|
|
4011
4023
|
}
|
|
4012
4024
|
}
|
|
@@ -6065,6 +6077,9 @@ class SocialService {
|
|
|
6065
6077
|
if (typeof this.collectStatsFlag !== 'undefined') {
|
|
6066
6078
|
toReturn['collectStatsFlag'] = this.collectStatsFlag;
|
|
6067
6079
|
}
|
|
6080
|
+
if (typeof this.googleUserId !== 'undefined') {
|
|
6081
|
+
toReturn['googleUserId'] = this.googleUserId;
|
|
6082
|
+
}
|
|
6068
6083
|
return toReturn;
|
|
6069
6084
|
}
|
|
6070
6085
|
}
|