@vendasta/social-posts 5.19.5 → 5.20.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/enums/social-posts.enum.mjs +2 -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/index.mjs +3 -3
- package/esm2020/lib/_internal/objects/social-post-v2.mjs +39 -1
- package/esm2020/lib/_internal/objects/social-posts.mjs +39 -1
- package/fesm2015/vendasta-social-posts.mjs +78 -1
- package/fesm2015/vendasta-social-posts.mjs.map +1 -1
- package/fesm2020/vendasta-social-posts.mjs +78 -1
- package/fesm2020/vendasta-social-posts.mjs.map +1 -1
- package/lib/_internal/enums/social-posts.enum.d.ts +2 -1
- package/lib/_internal/interfaces/index.d.ts +2 -2
- package/lib/_internal/interfaces/social-post-v2.interface.d.ts +8 -0
- package/lib/_internal/interfaces/social-posts.interface.d.ts +7 -0
- package/lib/_internal/objects/index.d.ts +2 -2
- package/lib/_internal/objects/social-post-v2.d.ts +11 -0
- package/lib/_internal/objects/social-posts.d.ts +10 -0
- package/package.json +1 -1
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
export { FieldMaskInterface, } from './field-mask.interface';
|
|
2
2
|
export { HashtagInterface, } from './hashtag.interface';
|
|
3
|
-
export { CallToActionInterface, ErrorInterface, EventInterface, MediaEntryInterface, MetaDataInterface, PostTemplateInterface, SSIDPostTypeInterface, SchedulePostStatusInterface, SocialPostInterface, SocialPostDataInterface, YoutubeCustomizationInterface, } from './social-posts.interface';
|
|
3
|
+
export { CallToActionInterface, ErrorInterface, EventInterface, MediaEntryInterface, MetaDataInterface, PostTemplateInterface, SSIDPostTypeInterface, SchedulePostStatusInterface, SocialPostInterface, SocialPostDataInterface, TikTokCustomizationInterface, YoutubeCustomizationInterface, } from './social-posts.interface';
|
|
4
4
|
export { LocationInterface, MultilocationPostInterface, MultilocationPostErrorInterface, PostActionInterface, PostCustomizationInterface, PostEventInterface, } from './multilocation-post.interface';
|
|
5
5
|
export { PixabayImageInterface, } from './pixabay-image.interface';
|
|
6
6
|
export { FacebookPostStatsInterface, SocialPostStatsInterface, TwitterPostStatsInterface, } from './social-post-stats.interface';
|
|
7
7
|
export { TenorGifMediaMapEntryInterface, TenorGifInterface, TenorMediaObjectInterface, } from './tenor-gif.interface';
|
|
8
8
|
export { CreateMultilocationPostRequestInterface, CreateMultilocationPostResponseInterface, CreatePostTemplateRequestInterface, CreatePostTemplateResponseInterface, DateRangeFilterInterface, DeleteHashtagsRequestInterface, DeleteMultilocationPostRequestInterface, DeletePostTemplateRequestInterface, DeleteSocialPostRequestInterface, EditMultilocationPostRequestInterface, EditMultilocationPostResponseInterface, PartnerListScheduledSocialPostsRequestFiltersInterface, GenerateCSVForPerformanceStatsRequestInterface, GenerateCSVForPerformanceStatsResponseInterface, GetGeneratedCSVForPerformanceStatsRequestInterface, GetGeneratedCSVForPerformanceStatsResponseInterface, GetMultiSocialPostStatsRequestInterface, GetMultiSocialPostStatsResponseInterface, GetMultiSocialPostsRequestInterface, GetMultiSocialPostsResponseInterface, GetMultilocationPostRequestInterface, GetMultilocationPostResponseInterface, GetPostTemplateRequestInterface, GetPostTemplateResponseInterface, GetScheduledPostCountRequestInterface, GetScheduledPostCountResponseInterface, GetTenorAnonymousIdRequestInterface, GetTenorAnonymousIdResponseInterface, ListMultilocationPostsForBrandRequestInterface, ListMultilocationPostsForBrandResponseInterface, ListPixabayImagesRequestInterface, ListPixabayImagesResponseInterface, ListPostTemplatesRequestInterface, ListPostTemplatesResponseInterface, ListSocialPostsRequestInterface, ListSocialPostsResponseInterface, ListTenorGifsRequestInterface, ListTenorGifsResponseInterface, PartnerListScheduledPostsResponseInterface, PartnerListScheduledSocialPostsRequestInterface, PostDataInterface, RemoveFromMultilocationPostRequestInterface, ReplaceHashtagsRequestInterface, SchedulePostRequestInterface, SchedulePostResponseInterface, ScheduleToAllPagesRequestInterface, ScheduleToAllPagesResponseInterface, SearchHashtagRequestInterface, SearchHashtagResponseInterface, SuggestMessageRequestInterface, SuggestMessageResponseInterface, UpdatePostTemplateRequestInterface, } from './api.interface';
|
|
9
|
-
export { LinkV2Interface, MetadataV2Interface, PostActionV2Interface, PostContentV2Interface, PostCustomizationV2Interface, PostEventV2Interface, PostMediaV2Interface, SocialPostV2Interface, YoutubeCustomizationV2Interface, } from './social-post-v2.interface';
|
|
9
|
+
export { LinkV2Interface, MetadataV2Interface, PostActionV2Interface, PostContentV2Interface, PostCustomizationV2Interface, PostEventV2Interface, PostMediaV2Interface, SocialPostV2Interface, TikTokCustomizationV2Interface, YoutubeCustomizationV2Interface, } from './social-post-v2.interface';
|
|
10
10
|
export { MediaInterface, } from './linkedin-v2.interface';
|
|
11
11
|
export { AncestryInterface, CollectionInterface, ImageInterface, LinksInterface, PhotoInterface, SocialInterface, SourceInterface, SubAncestryInterface, TagsInterface, UrlsInterface, UserInterface, UserLinkInterface, } from './unsplash-image.interface';
|
|
12
12
|
export { AiInstructionsInterface, CreateCommonAiInstructionsRequestInterface, CreateCommonAiInstructionsResponseInterface, CreateImageRequestInterface, CreateImageResponseInterface, DeletePostRequestInterface, GeneratePostsRequestInterface, GeneratePostsResponseInterface, GetCommonAiInstructionsRequestInterface, GetCommonAiInstructionsResponseInterface, ImageBlobInterface, ImageCreatedInterface, ImageUrlInterface, ListUnsplashImagesRequestInterface, ListUnsplashImagesResponseInterface, MediaUploadRequestInterface, MediaUploadResponseInterface, GeneratePostsResponsePostInterface, RepostSocialPostRequestInterface, SocialPostOutputInterface, SocialPostRequestInterface, SocialPostResponseInterface, UpdateCommonAiInstructionsRequestInterface, UpdateCommonAiInstructionsResponseInterface, UpdateSocialPostRequestInterface, UpdateSocialPostResponseInterface, UploadToStorageRequestInterface, UploadToStorageResponseInterface, } from './api-v2.interface';
|
|
@@ -51,6 +51,14 @@ export interface SocialPostV2Interface {
|
|
|
51
51
|
brandId?: string;
|
|
52
52
|
multilocationPostId?: string;
|
|
53
53
|
youtubeCustomization?: YoutubeCustomizationV2Interface;
|
|
54
|
+
userId?: string;
|
|
55
|
+
shareId?: string;
|
|
56
|
+
tiktokCustomization?: TikTokCustomizationV2Interface;
|
|
57
|
+
}
|
|
58
|
+
export interface TikTokCustomizationV2Interface {
|
|
59
|
+
allowComment?: boolean;
|
|
60
|
+
allowDuet?: boolean;
|
|
61
|
+
allowStitch?: boolean;
|
|
54
62
|
}
|
|
55
63
|
export interface YoutubeCustomizationV2Interface {
|
|
56
64
|
privacyStatus?: e.YoutubeCustomizationV2PrivacyStatusV2;
|
|
@@ -42,6 +42,7 @@ export interface PostTemplateInterface {
|
|
|
42
42
|
metaData?: MetaDataInterface[];
|
|
43
43
|
postType?: e.PostType;
|
|
44
44
|
youtubeCustomization?: YoutubeCustomizationInterface;
|
|
45
|
+
tiktokCustomization?: TikTokCustomizationInterface;
|
|
45
46
|
}
|
|
46
47
|
export interface SSIDPostTypeInterface {
|
|
47
48
|
socialServiceId?: string;
|
|
@@ -85,12 +86,18 @@ export interface SocialPostInterface {
|
|
|
85
86
|
metaData?: MetaDataInterface[];
|
|
86
87
|
title?: string;
|
|
87
88
|
youtubeCustomization?: YoutubeCustomizationInterface;
|
|
89
|
+
tiktokCustomization?: TikTokCustomizationInterface;
|
|
88
90
|
}
|
|
89
91
|
export interface SocialPostDataInterface {
|
|
90
92
|
postText?: string;
|
|
91
93
|
imageUrl?: string;
|
|
92
94
|
scheduleFor?: Date;
|
|
93
95
|
}
|
|
96
|
+
export interface TikTokCustomizationInterface {
|
|
97
|
+
allowComment?: boolean;
|
|
98
|
+
allowDuet?: boolean;
|
|
99
|
+
allowStitch?: boolean;
|
|
100
|
+
}
|
|
94
101
|
export interface YoutubeCustomizationInterface {
|
|
95
102
|
title?: string;
|
|
96
103
|
privacyStatus?: e.YoutubeCustomizationPrivacyStatus;
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
export { FieldMask, } from './field-mask';
|
|
2
2
|
export { Hashtag, } from './hashtag';
|
|
3
|
-
export { CallToAction, Error, Event, MediaEntry, MetaData, PostTemplate, SSIDPostType, SchedulePostStatus, SocialPost, SocialPostData, YoutubeCustomization, } from './social-posts';
|
|
3
|
+
export { CallToAction, Error, Event, MediaEntry, MetaData, PostTemplate, SSIDPostType, SchedulePostStatus, SocialPost, SocialPostData, TikTokCustomization, YoutubeCustomization, } from './social-posts';
|
|
4
4
|
export { Location, MultilocationPost, MultilocationPostError, PostAction, PostCustomization, PostEvent, } from './multilocation-post';
|
|
5
5
|
export { PixabayImage, } from './pixabay-image';
|
|
6
6
|
export { FacebookPostStats, SocialPostStats, TwitterPostStats, } from './social-post-stats';
|
|
7
7
|
export { TenorGifMediaMapEntry, TenorGif, TenorMediaObject, } from './tenor-gif';
|
|
8
8
|
export { CreateMultilocationPostRequest, CreateMultilocationPostResponse, CreatePostTemplateRequest, CreatePostTemplateResponse, DateRangeFilter, DeleteHashtagsRequest, DeleteMultilocationPostRequest, DeletePostTemplateRequest, DeleteSocialPostRequest, EditMultilocationPostRequest, EditMultilocationPostResponse, PartnerListScheduledSocialPostsRequestFilters, GenerateCSVForPerformanceStatsRequest, GenerateCSVForPerformanceStatsResponse, GetGeneratedCSVForPerformanceStatsRequest, GetGeneratedCSVForPerformanceStatsResponse, GetMultiSocialPostStatsRequest, GetMultiSocialPostStatsResponse, GetMultiSocialPostsRequest, GetMultiSocialPostsResponse, GetMultilocationPostRequest, GetMultilocationPostResponse, GetPostTemplateRequest, GetPostTemplateResponse, GetScheduledPostCountRequest, GetScheduledPostCountResponse, GetTenorAnonymousIdRequest, GetTenorAnonymousIdResponse, ListMultilocationPostsForBrandRequest, ListMultilocationPostsForBrandResponse, ListPixabayImagesRequest, ListPixabayImagesResponse, ListPostTemplatesRequest, ListPostTemplatesResponse, ListSocialPostsRequest, ListSocialPostsResponse, ListTenorGifsRequest, ListTenorGifsResponse, PartnerListScheduledPostsResponse, PartnerListScheduledSocialPostsRequest, PostData, RemoveFromMultilocationPostRequest, ReplaceHashtagsRequest, SchedulePostRequest, SchedulePostResponse, ScheduleToAllPagesRequest, ScheduleToAllPagesResponse, SearchHashtagRequest, SearchHashtagResponse, SuggestMessageRequest, SuggestMessageResponse, UpdatePostTemplateRequest, } from './api';
|
|
9
|
-
export { LinkV2, MetadataV2, PostActionV2, PostContentV2, PostCustomizationV2, PostEventV2, PostMediaV2, SocialPostV2, YoutubeCustomizationV2, } from './social-post-v2';
|
|
9
|
+
export { LinkV2, MetadataV2, PostActionV2, PostContentV2, PostCustomizationV2, PostEventV2, PostMediaV2, SocialPostV2, TikTokCustomizationV2, YoutubeCustomizationV2, } from './social-post-v2';
|
|
10
10
|
export { Media, } from './linkedin-v2';
|
|
11
11
|
export { Ancestry, Collection, Image, Links, Photo, Social, Source, SubAncestry, Tags, Urls, User, UserLink, } from './unsplash-image';
|
|
12
12
|
export { AiInstructions, CreateCommonAiInstructionsRequest, CreateCommonAiInstructionsResponse, CreateImageRequest, CreateImageResponse, DeletePostRequest, GeneratePostsRequest, GeneratePostsResponse, GetCommonAiInstructionsRequest, GetCommonAiInstructionsResponse, ImageBlob, ImageCreated, ImageUrl, ListUnsplashImagesRequest, ListUnsplashImagesResponse, MediaUploadRequest, MediaUploadResponse, GeneratePostsResponsePost, RepostSocialPostRequest, SocialPostOutput, SocialPostRequest, SocialPostResponse, UpdateCommonAiInstructionsRequest, UpdateCommonAiInstructionsResponse, UpdateSocialPostRequest, UpdateSocialPostResponse, UploadToStorageRequest, UploadToStorageResponse, } from './api-v2';
|
|
@@ -74,10 +74,21 @@ export declare class SocialPostV2 implements i.SocialPostV2Interface {
|
|
|
74
74
|
brandId: string;
|
|
75
75
|
multilocationPostId: string;
|
|
76
76
|
youtubeCustomization: YoutubeCustomizationV2;
|
|
77
|
+
userId: string;
|
|
78
|
+
shareId: string;
|
|
79
|
+
tiktokCustomization: TikTokCustomizationV2;
|
|
77
80
|
static fromProto(proto: any): SocialPostV2;
|
|
78
81
|
constructor(kwargs?: i.SocialPostV2Interface);
|
|
79
82
|
toApiJson(): object;
|
|
80
83
|
}
|
|
84
|
+
export declare class TikTokCustomizationV2 implements i.TikTokCustomizationV2Interface {
|
|
85
|
+
allowComment: boolean;
|
|
86
|
+
allowDuet: boolean;
|
|
87
|
+
allowStitch: boolean;
|
|
88
|
+
static fromProto(proto: any): TikTokCustomizationV2;
|
|
89
|
+
constructor(kwargs?: i.TikTokCustomizationV2Interface);
|
|
90
|
+
toApiJson(): object;
|
|
91
|
+
}
|
|
81
92
|
export declare class YoutubeCustomizationV2 implements i.YoutubeCustomizationV2Interface {
|
|
82
93
|
privacyStatus: e.YoutubeCustomizationV2PrivacyStatusV2;
|
|
83
94
|
static fromProto(proto: any): YoutubeCustomizationV2;
|
|
@@ -59,6 +59,7 @@ export declare class PostTemplate implements i.PostTemplateInterface {
|
|
|
59
59
|
metaData: MetaData[];
|
|
60
60
|
postType: e.PostType;
|
|
61
61
|
youtubeCustomization: YoutubeCustomization;
|
|
62
|
+
tiktokCustomization: TikTokCustomization;
|
|
62
63
|
static fromProto(proto: any): PostTemplate;
|
|
63
64
|
constructor(kwargs?: i.PostTemplateInterface);
|
|
64
65
|
toApiJson(): object;
|
|
@@ -111,6 +112,7 @@ export declare class SocialPost implements i.SocialPostInterface {
|
|
|
111
112
|
metaData: MetaData[];
|
|
112
113
|
title: string;
|
|
113
114
|
youtubeCustomization: YoutubeCustomization;
|
|
115
|
+
tiktokCustomization: TikTokCustomization;
|
|
114
116
|
static fromProto(proto: any): SocialPost;
|
|
115
117
|
constructor(kwargs?: i.SocialPostInterface);
|
|
116
118
|
toApiJson(): object;
|
|
@@ -123,6 +125,14 @@ export declare class SocialPostData implements i.SocialPostDataInterface {
|
|
|
123
125
|
constructor(kwargs?: i.SocialPostDataInterface);
|
|
124
126
|
toApiJson(): object;
|
|
125
127
|
}
|
|
128
|
+
export declare class TikTokCustomization implements i.TikTokCustomizationInterface {
|
|
129
|
+
allowComment: boolean;
|
|
130
|
+
allowDuet: boolean;
|
|
131
|
+
allowStitch: boolean;
|
|
132
|
+
static fromProto(proto: any): TikTokCustomization;
|
|
133
|
+
constructor(kwargs?: i.TikTokCustomizationInterface);
|
|
134
|
+
toApiJson(): object;
|
|
135
|
+
}
|
|
126
136
|
export declare class YoutubeCustomization implements i.YoutubeCustomizationInterface {
|
|
127
137
|
title: string;
|
|
128
138
|
privacyStatus: e.YoutubeCustomizationPrivacyStatus;
|