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