ugcinc 2.87.15 → 2.87.16

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.
Files changed (2) hide show
  1. package/dist/types.d.ts +2 -0
  2. package/package.json +1 -1
package/dist/types.d.ts CHANGED
@@ -102,6 +102,7 @@ export interface Post {
102
102
  status: PostStatus;
103
103
  social_id: string | null;
104
104
  caption: string | null;
105
+ title: string | null;
105
106
  media_urls: string[] | null;
106
107
  music_post_id: string | null;
107
108
  social_audio_id: string | null;
@@ -245,6 +246,7 @@ export interface GetPostsParams {
245
246
  export interface CreateSlideshowParams {
246
247
  accountId: string | null;
247
248
  caption?: string;
249
+ title?: string;
248
250
  socialAudioId?: string;
249
251
  postTime?: string;
250
252
  imageUrls: string[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ugcinc",
3
- "version": "2.87.15",
3
+ "version": "2.87.16",
4
4
  "description": "TypeScript/JavaScript client for the UGC Inc API",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",