@vendasta/social-posts 5.45.2 → 5.45.4

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.
@@ -260,6 +260,7 @@ export interface SocialServiceInterface {
260
260
  fullName?: string;
261
261
  collectPostsFlag?: boolean;
262
262
  collectStatsFlag?: boolean;
263
+ googleUserId?: string;
263
264
  }
264
265
  export interface TitleGenerationInterface {
265
266
  blogTitle?: string;
@@ -60,6 +60,8 @@ export interface TikTokCustomizationV2Interface {
60
60
  allowComment?: boolean;
61
61
  allowDuet?: boolean;
62
62
  allowStitch?: boolean;
63
+ isBrandOrganic?: boolean;
64
+ isBrandedContent?: boolean;
63
65
  }
64
66
  export interface YoutubeCustomizationV2Interface {
65
67
  privacyStatus?: e.YoutubeCustomizationV2PrivacyStatusV2;
@@ -122,6 +122,8 @@ export interface TikTokCustomizationInterface {
122
122
  allowComment?: boolean;
123
123
  allowDuet?: boolean;
124
124
  allowStitch?: boolean;
125
+ isBrandOrganic?: boolean;
126
+ isBrandedContent?: boolean;
125
127
  }
126
128
  export interface YoutubeCustomizationInterface {
127
129
  title?: string;
@@ -406,6 +406,7 @@ export declare class SocialService implements i.SocialServiceInterface {
406
406
  fullName: string;
407
407
  collectPostsFlag: boolean;
408
408
  collectStatsFlag: boolean;
409
+ googleUserId: string;
409
410
  static fromProto(proto: any): SocialService;
410
411
  constructor(kwargs?: i.SocialServiceInterface);
411
412
  toApiJson(): object;
@@ -86,6 +86,8 @@ export declare class TikTokCustomizationV2 implements i.TikTokCustomizationV2Int
86
86
  allowComment: boolean;
87
87
  allowDuet: boolean;
88
88
  allowStitch: boolean;
89
+ isBrandOrganic: boolean;
90
+ isBrandedContent: boolean;
89
91
  static fromProto(proto: any): TikTokCustomizationV2;
90
92
  constructor(kwargs?: i.TikTokCustomizationV2Interface);
91
93
  toApiJson(): object;
@@ -169,6 +169,8 @@ export declare class TikTokCustomization implements i.TikTokCustomizationInterfa
169
169
  allowComment: boolean;
170
170
  allowDuet: boolean;
171
171
  allowStitch: boolean;
172
+ isBrandOrganic: boolean;
173
+ isBrandedContent: boolean;
172
174
  static fromProto(proto: any): TikTokCustomization;
173
175
  constructor(kwargs?: i.TikTokCustomizationInterface);
174
176
  toApiJson(): object;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vendasta/social-posts",
3
- "version": "5.45.2",
3
+ "version": "5.45.4",
4
4
  "peerDependencies": {
5
5
  "@angular/common": "^15.1.0",
6
6
  "@angular/core": "^15.1.0"