ugcinc 2.11.0 → 2.11.2
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/README.md +3 -2
- package/dist/accounts.d.ts +1 -1
- package/dist/accounts.js +1 -1
- package/dist/automations.js +15 -0
- package/dist/types.d.ts +2 -1
- package/package.json +34 -34
- package/dist/video-render-types/segment.d.ts +0 -78
- package/dist/video-render-types/segment.js +0 -2
- package/dist/video-render-types/video.d.ts +0 -12
- package/dist/video-render-types/video.js +0 -2
- package/dist/video.d.ts +0 -50
- package/dist/video.js +0 -55
package/README.md
CHANGED
|
@@ -114,7 +114,7 @@ if (response.ok) {
|
|
|
114
114
|
}
|
|
115
115
|
```
|
|
116
116
|
|
|
117
|
-
**Update account info (tags, groups, keywords, profiles, description):**
|
|
117
|
+
**Update account info (tags, groups, keywords, profiles, description, warmup version):**
|
|
118
118
|
```typescript
|
|
119
119
|
// Update account metadata
|
|
120
120
|
const response = await client.accounts.updateInfo({
|
|
@@ -124,7 +124,8 @@ const response = await client.accounts.updateInfo({
|
|
|
124
124
|
user_group: 'creators',
|
|
125
125
|
keywords: 'fitness,health,workout',
|
|
126
126
|
profiles: '@fitinfluencer1,@healthguru2',
|
|
127
|
-
description: 'health and wellness content'
|
|
127
|
+
description: 'health and wellness content',
|
|
128
|
+
warmupVersion: 'v1_smart' // 'original' or 'v1_smart'
|
|
128
129
|
});
|
|
129
130
|
|
|
130
131
|
if (response.ok) {
|
package/dist/accounts.d.ts
CHANGED
|
@@ -13,7 +13,7 @@ export declare class AccountsClient extends BaseClient {
|
|
|
13
13
|
*/
|
|
14
14
|
getStatus(params?: GetAccountStatusParams): Promise<ApiResponse<AccountTask[]>>;
|
|
15
15
|
/**
|
|
16
|
-
* Update account metadata (tag, org_group, user_group, keywords, profiles, description)
|
|
16
|
+
* Update account metadata (tag, org_group, user_group, keywords, profiles, description, warmupVersion)
|
|
17
17
|
*/
|
|
18
18
|
updateInfo(params: UpdateAccountInfoParams): Promise<ApiResponse<{
|
|
19
19
|
message: string;
|
package/dist/accounts.js
CHANGED
|
@@ -19,7 +19,7 @@ class AccountsClient extends base_1.BaseClient {
|
|
|
19
19
|
return this.post('/accounts/status', params ?? {});
|
|
20
20
|
}
|
|
21
21
|
/**
|
|
22
|
-
* Update account metadata (tag, org_group, user_group, keywords, profiles, description)
|
|
22
|
+
* Update account metadata (tag, org_group, user_group, keywords, profiles, description, warmupVersion)
|
|
23
23
|
*/
|
|
24
24
|
async updateInfo(params) {
|
|
25
25
|
return this.post('/accounts/update-info', params);
|
package/dist/automations.js
CHANGED
|
@@ -168,6 +168,21 @@ function getAllNodes() {
|
|
|
168
168
|
},
|
|
169
169
|
],
|
|
170
170
|
},
|
|
171
|
+
{
|
|
172
|
+
type: "output",
|
|
173
|
+
label: "Output",
|
|
174
|
+
description: "Final output of the automation",
|
|
175
|
+
category: "Output",
|
|
176
|
+
inputs: [
|
|
177
|
+
{
|
|
178
|
+
id: "result",
|
|
179
|
+
title: "Result",
|
|
180
|
+
type: ["image", "video", "audio", "text"],
|
|
181
|
+
required: true,
|
|
182
|
+
},
|
|
183
|
+
],
|
|
184
|
+
outputs: [],
|
|
185
|
+
},
|
|
171
186
|
];
|
|
172
187
|
}
|
|
173
188
|
/**
|
package/dist/types.d.ts
CHANGED
|
@@ -130,6 +130,7 @@ export interface UpdateAccountInfoParams {
|
|
|
130
130
|
keywords?: string;
|
|
131
131
|
profiles?: string;
|
|
132
132
|
description?: string;
|
|
133
|
+
warmupVersion?: 'original' | 'v1_smart';
|
|
133
134
|
}
|
|
134
135
|
export interface UpdateAccountSocialParams {
|
|
135
136
|
accountId: string;
|
|
@@ -551,7 +552,7 @@ export interface NodeControlConfig {
|
|
|
551
552
|
inputs: NodePort[];
|
|
552
553
|
outputs: NodePort[];
|
|
553
554
|
}
|
|
554
|
-
export type NodeTypeEnum = 'image' | 'video' | 'audio' | 'image-editor' | 'video-editor' | 'llm';
|
|
555
|
+
export type NodeTypeEnum = 'image' | 'video' | 'audio' | 'image-editor' | 'video-editor' | 'llm' | 'output';
|
|
555
556
|
export interface OutputSchemaProperty {
|
|
556
557
|
type: 'string' | 'number' | 'boolean' | 'array' | 'object';
|
|
557
558
|
items?: 'string' | 'number' | 'boolean';
|
package/package.json
CHANGED
|
@@ -1,34 +1,34 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "ugcinc",
|
|
3
|
-
"version": "2.11.
|
|
4
|
-
"description": "TypeScript/JavaScript client for the UGC Inc API",
|
|
5
|
-
"main": "dist/index.js",
|
|
6
|
-
"types": "dist/index.d.ts",
|
|
7
|
-
"scripts": {
|
|
8
|
-
"build": "tsc",
|
|
9
|
-
"prepublishOnly": "npm run build",
|
|
10
|
-
"test": "echo \"No tests specified\" && exit 0"
|
|
11
|
-
},
|
|
12
|
-
"keywords": [
|
|
13
|
-
"ugcinc",
|
|
14
|
-
"api",
|
|
15
|
-
"client",
|
|
16
|
-
"tiktok",
|
|
17
|
-
"automation",
|
|
18
|
-
"social-media",
|
|
19
|
-
"content-management"
|
|
20
|
-
],
|
|
21
|
-
"author": "UGC Inc",
|
|
22
|
-
"license": "MIT",
|
|
23
|
-
"devDependencies": {
|
|
24
|
-
"@types/node": "^20.0.0",
|
|
25
|
-
"typescript": "^5.0.0"
|
|
26
|
-
},
|
|
27
|
-
"dependencies": {
|
|
28
|
-
"ugcinc": "^1.7.0"
|
|
29
|
-
},
|
|
30
|
-
"files": [
|
|
31
|
-
"dist",
|
|
32
|
-
"README.md"
|
|
33
|
-
]
|
|
34
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "ugcinc",
|
|
3
|
+
"version": "2.11.2",
|
|
4
|
+
"description": "TypeScript/JavaScript client for the UGC Inc API",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"scripts": {
|
|
8
|
+
"build": "tsc",
|
|
9
|
+
"prepublishOnly": "npm run build",
|
|
10
|
+
"test": "echo \"No tests specified\" && exit 0"
|
|
11
|
+
},
|
|
12
|
+
"keywords": [
|
|
13
|
+
"ugcinc",
|
|
14
|
+
"api",
|
|
15
|
+
"client",
|
|
16
|
+
"tiktok",
|
|
17
|
+
"automation",
|
|
18
|
+
"social-media",
|
|
19
|
+
"content-management"
|
|
20
|
+
],
|
|
21
|
+
"author": "UGC Inc",
|
|
22
|
+
"license": "MIT",
|
|
23
|
+
"devDependencies": {
|
|
24
|
+
"@types/node": "^20.0.0",
|
|
25
|
+
"typescript": "^5.0.0"
|
|
26
|
+
},
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"ugcinc": "^1.7.0"
|
|
29
|
+
},
|
|
30
|
+
"files": [
|
|
31
|
+
"dist",
|
|
32
|
+
"README.md"
|
|
33
|
+
]
|
|
34
|
+
}
|
|
@@ -1,78 +0,0 @@
|
|
|
1
|
-
export type SegmentType = 'video' | 'image' | 'text' | 'audio' | 'editor';
|
|
2
|
-
export type TimeValue = {
|
|
3
|
-
type: 'absolute';
|
|
4
|
-
value: number;
|
|
5
|
-
} | {
|
|
6
|
-
type: 'relative';
|
|
7
|
-
value: number;
|
|
8
|
-
};
|
|
9
|
-
export interface BaseSegment {
|
|
10
|
-
id: string;
|
|
11
|
-
type: SegmentType;
|
|
12
|
-
source: string;
|
|
13
|
-
order: number;
|
|
14
|
-
offset: TimeValue;
|
|
15
|
-
startTrim: number;
|
|
16
|
-
endTrim: number;
|
|
17
|
-
duration?: TimeValue;
|
|
18
|
-
}
|
|
19
|
-
export interface VisualSegment extends BaseSegment {
|
|
20
|
-
type: 'video' | 'image' | 'text';
|
|
21
|
-
xOffset: number;
|
|
22
|
-
yOffset: number;
|
|
23
|
-
width: number;
|
|
24
|
-
height: number;
|
|
25
|
-
zIndex: number;
|
|
26
|
-
scale: number;
|
|
27
|
-
rotation: number;
|
|
28
|
-
}
|
|
29
|
-
export interface PictureSegment extends VisualSegment {
|
|
30
|
-
type: 'video' | 'image';
|
|
31
|
-
fit: 'cover' | 'contain' | 'fill';
|
|
32
|
-
speed: number;
|
|
33
|
-
opacity: number;
|
|
34
|
-
}
|
|
35
|
-
export interface VideoSegment extends PictureSegment {
|
|
36
|
-
type: 'video';
|
|
37
|
-
volume: number;
|
|
38
|
-
}
|
|
39
|
-
export interface ImageSegment extends PictureSegment {
|
|
40
|
-
type: 'image';
|
|
41
|
-
loop: boolean;
|
|
42
|
-
}
|
|
43
|
-
export interface AudioSegment extends BaseSegment {
|
|
44
|
-
type: 'audio';
|
|
45
|
-
}
|
|
46
|
-
export interface TextSegment extends VisualSegment {
|
|
47
|
-
type: 'text';
|
|
48
|
-
text: string;
|
|
49
|
-
alignment: 'left' | 'center' | 'right' | 'justify';
|
|
50
|
-
verticalAlign: 'top' | 'middle' | 'bottom';
|
|
51
|
-
direction: 'ltr' | 'rtl' | 'auto';
|
|
52
|
-
padding: number;
|
|
53
|
-
fontType: 'arial' | 'tiktok' | 'apple';
|
|
54
|
-
fontSize: number;
|
|
55
|
-
fontWeight: 'normal' | 'bold';
|
|
56
|
-
lineHeight: number;
|
|
57
|
-
letterSpacing: number;
|
|
58
|
-
textWrap: 'word' | 'char' | 'none';
|
|
59
|
-
wordBreak: 'normal' | 'break-word' | 'break-all';
|
|
60
|
-
hyphenation: 'none' | 'auto';
|
|
61
|
-
maxLines: number;
|
|
62
|
-
textOverflow: 'clip' | 'ellipsis';
|
|
63
|
-
ellipsis: string;
|
|
64
|
-
color: string;
|
|
65
|
-
backgroundColor: string;
|
|
66
|
-
strokeColor?: string;
|
|
67
|
-
strokeWidth?: number;
|
|
68
|
-
}
|
|
69
|
-
import type { Editor } from './video';
|
|
70
|
-
export interface EditorSegment extends Omit<VisualSegment, 'type' | 'source'> {
|
|
71
|
-
type: 'editor';
|
|
72
|
-
source: '';
|
|
73
|
-
editor: Editor;
|
|
74
|
-
fit?: 'cover' | 'contain' | 'fill';
|
|
75
|
-
opacity?: number;
|
|
76
|
-
speed?: number;
|
|
77
|
-
volume?: number;
|
|
78
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import type { BaseSegment, EditorSegment } from "./segment";
|
|
2
|
-
export interface Channel {
|
|
3
|
-
id: string;
|
|
4
|
-
segments: Array<BaseSegment | EditorSegment>;
|
|
5
|
-
}
|
|
6
|
-
export interface Editor {
|
|
7
|
-
width: number;
|
|
8
|
-
height: number;
|
|
9
|
-
duration?: number;
|
|
10
|
-
fps: number;
|
|
11
|
-
channels: Channel[];
|
|
12
|
-
}
|
package/dist/video.d.ts
DELETED
|
@@ -1,50 +0,0 @@
|
|
|
1
|
-
import { BaseClient } from './base';
|
|
2
|
-
import type { RenderVideoParams, RenderVideoResponse, ApiResponse } from './types';
|
|
3
|
-
/**
|
|
4
|
-
* Client for video rendering operations
|
|
5
|
-
*/
|
|
6
|
-
export declare class VideoClient extends BaseClient {
|
|
7
|
-
/**
|
|
8
|
-
* Render a video from an editor configuration
|
|
9
|
-
*
|
|
10
|
-
* @example
|
|
11
|
-
* ```typescript
|
|
12
|
-
* const result = await client.video.render({
|
|
13
|
-
* editor: {
|
|
14
|
-
* width: 1080,
|
|
15
|
-
* height: 1920,
|
|
16
|
-
* fps: 30,
|
|
17
|
-
* duration: 5000,
|
|
18
|
-
* channels: [
|
|
19
|
-
* {
|
|
20
|
-
* id: "background",
|
|
21
|
-
* segments: [
|
|
22
|
-
* {
|
|
23
|
-
* id: "bg-video",
|
|
24
|
-
* type: "video",
|
|
25
|
-
* source: "https://example.com/video.mp4",
|
|
26
|
-
* order: 0,
|
|
27
|
-
* offset: { type: "absolute", value: 0 },
|
|
28
|
-
* startTrim: 0,
|
|
29
|
-
* endTrim: 0,
|
|
30
|
-
* xOffset: 0,
|
|
31
|
-
* yOffset: 0,
|
|
32
|
-
* width: 1080,
|
|
33
|
-
* height: 1920,
|
|
34
|
-
* zIndex: 0,
|
|
35
|
-
* scale: 1,
|
|
36
|
-
* rotation: 0,
|
|
37
|
-
* fit: "cover",
|
|
38
|
-
* speed: 1,
|
|
39
|
-
* opacity: 100,
|
|
40
|
-
* volume: 50
|
|
41
|
-
* }
|
|
42
|
-
* ]
|
|
43
|
-
* }
|
|
44
|
-
* ]
|
|
45
|
-
* }
|
|
46
|
-
* });
|
|
47
|
-
* ```
|
|
48
|
-
*/
|
|
49
|
-
render(params: RenderVideoParams): Promise<ApiResponse<RenderVideoResponse>>;
|
|
50
|
-
}
|
package/dist/video.js
DELETED
|
@@ -1,55 +0,0 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.VideoClient = void 0;
|
|
4
|
-
const base_1 = require("./base");
|
|
5
|
-
/**
|
|
6
|
-
* Client for video rendering operations
|
|
7
|
-
*/
|
|
8
|
-
class VideoClient extends base_1.BaseClient {
|
|
9
|
-
/**
|
|
10
|
-
* Render a video from an editor configuration
|
|
11
|
-
*
|
|
12
|
-
* @example
|
|
13
|
-
* ```typescript
|
|
14
|
-
* const result = await client.video.render({
|
|
15
|
-
* editor: {
|
|
16
|
-
* width: 1080,
|
|
17
|
-
* height: 1920,
|
|
18
|
-
* fps: 30,
|
|
19
|
-
* duration: 5000,
|
|
20
|
-
* channels: [
|
|
21
|
-
* {
|
|
22
|
-
* id: "background",
|
|
23
|
-
* segments: [
|
|
24
|
-
* {
|
|
25
|
-
* id: "bg-video",
|
|
26
|
-
* type: "video",
|
|
27
|
-
* source: "https://example.com/video.mp4",
|
|
28
|
-
* order: 0,
|
|
29
|
-
* offset: { type: "absolute", value: 0 },
|
|
30
|
-
* startTrim: 0,
|
|
31
|
-
* endTrim: 0,
|
|
32
|
-
* xOffset: 0,
|
|
33
|
-
* yOffset: 0,
|
|
34
|
-
* width: 1080,
|
|
35
|
-
* height: 1920,
|
|
36
|
-
* zIndex: 0,
|
|
37
|
-
* scale: 1,
|
|
38
|
-
* rotation: 0,
|
|
39
|
-
* fit: "cover",
|
|
40
|
-
* speed: 1,
|
|
41
|
-
* opacity: 100,
|
|
42
|
-
* volume: 50
|
|
43
|
-
* }
|
|
44
|
-
* ]
|
|
45
|
-
* }
|
|
46
|
-
* ]
|
|
47
|
-
* }
|
|
48
|
-
* });
|
|
49
|
-
* ```
|
|
50
|
-
*/
|
|
51
|
-
async render(params) {
|
|
52
|
-
return this.post('/video/render', params);
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
exports.VideoClient = VideoClient;
|