ugcinc 4.5.40 → 4.5.41
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/dist/accounts.d.ts
CHANGED
|
@@ -252,9 +252,10 @@ export declare class AccountsClient extends BaseClient {
|
|
|
252
252
|
* Update account social profile for one or more accounts
|
|
253
253
|
* Supports: username, avatarUrl, nickName, bio
|
|
254
254
|
*
|
|
255
|
-
*
|
|
255
|
+
* For active accounts, changes are submitted as pending and applied manually within 24 hours.
|
|
256
|
+
* For accounts still being created, changes are applied directly.
|
|
256
257
|
*
|
|
257
|
-
* Note: Rate limits apply per account:
|
|
258
|
+
* Note: Rate limits apply per active account:
|
|
258
259
|
* - Username: once every 7 days
|
|
259
260
|
* - Nickname: once every 7 days
|
|
260
261
|
* - Avatar: once every 24 hours
|
package/dist/accounts.js
CHANGED
|
@@ -38,9 +38,10 @@ class AccountsClient extends base_1.BaseClient {
|
|
|
38
38
|
* Update account social profile for one or more accounts
|
|
39
39
|
* Supports: username, avatarUrl, nickName, bio
|
|
40
40
|
*
|
|
41
|
-
*
|
|
41
|
+
* For active accounts, changes are submitted as pending and applied manually within 24 hours.
|
|
42
|
+
* For accounts still being created, changes are applied directly.
|
|
42
43
|
*
|
|
43
|
-
* Note: Rate limits apply per account:
|
|
44
|
+
* Note: Rate limits apply per active account:
|
|
44
45
|
* - Username: once every 7 days
|
|
45
46
|
* - Nickname: once every 7 days
|
|
46
47
|
* - Avatar: once every 24 hours
|
|
@@ -5,7 +5,7 @@ import { z } from 'zod';
|
|
|
5
5
|
export type LLMNodeInputs = Record<string, PortValue | PortValue[]>;
|
|
6
6
|
/** LLM outputs are dynamic based on outputFields config. Output port IDs are user-defined. */
|
|
7
7
|
export type LLMNodeOutputs = Record<string, PortValue | PortValue[]>;
|
|
8
|
-
declare const LLMProviders: readonly ["groq", "openai", "claude", "gemini"];
|
|
8
|
+
declare const LLMProviders: readonly ["groq", "openai", "claude", "gemini", "kimi", "grok"];
|
|
9
9
|
type LLMProvider = typeof LLMProviders[number];
|
|
10
10
|
declare const definition: import("./types").NodeDefinition<"llm", "generator", {
|
|
11
11
|
provider: LLMProvider;
|
|
@@ -9,7 +9,7 @@ const zod_1 = require("zod");
|
|
|
9
9
|
// =============================================================================
|
|
10
10
|
// Config Types
|
|
11
11
|
// =============================================================================
|
|
12
|
-
const LLMProviders = ['groq', 'openai', 'claude', 'gemini'];
|
|
12
|
+
const LLMProviders = ['groq', 'openai', 'claude', 'gemini', 'kimi', 'grok'];
|
|
13
13
|
exports.LLMProviders = LLMProviders;
|
|
14
14
|
// =============================================================================
|
|
15
15
|
// Node Definition
|