@openclaw/pixverse-provider 2026.7.2-beta.5 → 2026.7.33

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/onboard.js CHANGED
@@ -43,17 +43,14 @@ function applyPixVerseProviderConfig(cfg, region, options) {
43
43
  }
44
44
  function applyPixVerseConfig(cfg, region, options) {
45
45
  const next = applyPixVerseProviderConfig(cfg, region, options);
46
- if (next.agents?.defaults?.mediaModels?.video) return next;
46
+ if (next.agents?.defaults?.videoGenerationModel) return next;
47
47
  return {
48
48
  ...next,
49
49
  agents: {
50
50
  ...next.agents,
51
51
  defaults: {
52
52
  ...next.agents?.defaults,
53
- mediaModels: {
54
- ...next.agents?.defaults?.mediaModels,
55
- video: { primary: PIXVERSE_DEFAULT_VIDEO_MODEL_REF }
56
- }
53
+ videoGenerationModel: { primary: PIXVERSE_DEFAULT_VIDEO_MODEL_REF }
57
54
  }
58
55
  }
59
56
  };
@@ -158,4 +155,4 @@ function buildPixVerseApiKeyAuthMethod() {
158
155
  };
159
156
  }
160
157
  //#endregion
161
- export { buildPixVerseApiKeyAuthMethod };
158
+ export { applyPixVerseConfig, applyPixVerseProviderConfig, buildPixVerseApiKeyAuthMethod };
@@ -34,7 +34,8 @@ function resolvePixVerseBaseUrl(req) {
34
34
  const provider = req.cfg?.models?.providers?.[PIXVERSE_PROVIDER_ID];
35
35
  const configuredBaseUrl = normalizeOptionalString(provider?.baseUrl);
36
36
  if (configuredBaseUrl) return configuredBaseUrl;
37
- return PIXVERSE_BASE_URL_BY_REGION[resolvePixVerseApiRegion(provider?.region)];
37
+ const region = resolvePixVerseApiRegion(provider?.region);
38
+ return PIXVERSE_BASE_URL_BY_REGION[region];
38
39
  }
39
40
  function resolvePixVerseApiRegion(value) {
40
41
  const region = normalizeOptionalString(value)?.toLowerCase();
@@ -6,14 +6,8 @@
6
6
  "onStartup": false
7
7
  },
8
8
  "enabledByDefault": true,
9
- "setup": {
10
- "providers": [
11
- {
12
- "id": "pixverse",
13
- "authMethods": ["api-key"],
14
- "envVars": ["PIXVERSE_API_KEY"]
15
- }
16
- ]
9
+ "providerAuthEnvVars": {
10
+ "pixverse": ["PIXVERSE_API_KEY"]
17
11
  },
18
12
  "providerAuthChoices": [
19
13
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openclaw/pixverse-provider",
3
- "version": "2026.7.2-beta.5",
3
+ "version": "2026.7.33",
4
4
  "description": "OpenClaw PixVerse video generation provider plugin.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -8,7 +8,7 @@
8
8
  },
9
9
  "type": "module",
10
10
  "peerDependencies": {
11
- "openclaw": ">=2026.7.2-beta.5"
11
+ "openclaw": ">=2026.7.33"
12
12
  },
13
13
  "peerDependenciesMeta": {
14
14
  "openclaw": {
@@ -26,10 +26,10 @@
26
26
  "minHostVersion": ">=2026.5.26"
27
27
  },
28
28
  "compat": {
29
- "pluginApi": ">=2026.7.2-beta.5"
29
+ "pluginApi": ">=2026.7.33"
30
30
  },
31
31
  "build": {
32
- "openclawVersion": "2026.7.2-beta.5",
32
+ "openclawVersion": "2026.7.33",
33
33
  "bundledDist": false
34
34
  },
35
35
  "release": {