@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.
@@ -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
  }