@openclaw/meta-provider 2026.7.1-beta.6 → 2026.7.2-beta.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/dist/api.js CHANGED
@@ -1,4 +1,4 @@
1
- import { i as buildMetaModelDefinition, n as META_MODEL_CATALOG, r as buildMetaCatalogModels, t as META_BASE_URL } from "./models-BNbptoDd.js";
1
+ import { i as buildMetaModelDefinition, n as META_MODEL_CATALOG, r as buildMetaCatalogModels, t as META_BASE_URL } from "./models-B0gmBIU-.js";
2
2
  import { META_DEFAULT_MODEL_REF, applyMetaConfig } from "./onboard.js";
3
3
  import { buildMetaProvider } from "./provider-catalog.js";
4
4
  export { META_BASE_URL, META_DEFAULT_MODEL_REF, META_MODEL_CATALOG, applyMetaConfig, buildMetaCatalogModels, buildMetaModelDefinition, buildMetaProvider };
@@ -1,3 +1,4 @@
1
+ import { expectDefined } from "openclaw/plugin-sdk/expect-runtime";
1
2
  import { buildManifestModelProviderConfig } from "openclaw/plugin-sdk/provider-catalog-shared";
2
3
  //#endregion
3
4
  //#region extensions/meta/models.ts
@@ -57,13 +58,13 @@ function buildMetaCatalogModels() {
57
58
  }
58
59
  /** Builds one normalized Meta model definition from a manifest entry. */
59
60
  function buildMetaModelDefinition(model) {
60
- return buildManifestModelProviderConfig({
61
+ return expectDefined(buildManifestModelProviderConfig({
61
62
  providerId: "meta",
62
63
  catalog: {
63
64
  ...META_MANIFEST_CATALOG,
64
65
  models: [model]
65
66
  }
66
- }).models[0];
67
+ }).models.at(0), "normalized Meta manifest model");
67
68
  }
68
69
  //#endregion
69
70
  export { buildMetaModelDefinition as i, META_MODEL_CATALOG as n, buildMetaCatalogModels as r, META_BASE_URL as t };
package/dist/models.js CHANGED
@@ -1,2 +1,2 @@
1
- import { i as buildMetaModelDefinition, n as META_MODEL_CATALOG, r as buildMetaCatalogModels, t as META_BASE_URL } from "./models-BNbptoDd.js";
1
+ import { i as buildMetaModelDefinition, n as META_MODEL_CATALOG, r as buildMetaCatalogModels, t as META_BASE_URL } from "./models-B0gmBIU-.js";
2
2
  export { META_BASE_URL, META_MODEL_CATALOG, buildMetaCatalogModels, buildMetaModelDefinition };
package/dist/onboard.js CHANGED
@@ -1,4 +1,4 @@
1
- import { i as buildMetaModelDefinition, n as META_MODEL_CATALOG, t as META_BASE_URL } from "./models-BNbptoDd.js";
1
+ import { i as buildMetaModelDefinition, n as META_MODEL_CATALOG, t as META_BASE_URL } from "./models-B0gmBIU-.js";
2
2
  import { createModelCatalogPresetAppliers } from "openclaw/plugin-sdk/provider-onboard";
3
3
  //#region extensions/meta/onboard.ts
4
4
  /**
@@ -1,4 +1,4 @@
1
- import { r as buildMetaCatalogModels, t as META_BASE_URL } from "./models-BNbptoDd.js";
1
+ import { r as buildMetaCatalogModels, t as META_BASE_URL } from "./models-B0gmBIU-.js";
2
2
  //#region extensions/meta/provider-catalog.ts
3
3
  /** Builds the Meta OpenAI-compatible model provider config. */
4
4
  function buildMetaProvider() {
package/dist/stream.js CHANGED
@@ -22,4 +22,4 @@ function wrapMetaProviderStream(ctx) {
22
22
  return createMetaResponsesWrapper(ctx.streamFn);
23
23
  }
24
24
  //#endregion
25
- export { createMetaResponsesWrapper, wrapMetaProviderStream };
25
+ export { wrapMetaProviderStream };
@@ -1,12 +1,12 @@
1
1
  {
2
2
  "name": "@openclaw/meta-provider",
3
- "version": "2026.7.1-beta.6",
3
+ "version": "2026.7.2-beta.1",
4
4
  "lockfileVersion": 3,
5
5
  "requires": true,
6
6
  "packages": {
7
7
  "": {
8
8
  "name": "@openclaw/meta-provider",
9
- "version": "2026.7.1-beta.6"
9
+ "version": "2026.7.2-beta.1"
10
10
  }
11
11
  }
12
12
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@openclaw/meta-provider",
3
- "version": "2026.7.1-beta.6",
3
+ "version": "2026.7.2-beta.1",
4
4
  "description": "OpenClaw Meta provider plugin.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -18,10 +18,10 @@
18
18
  "minHostVersion": ">=2026.6.11"
19
19
  },
20
20
  "compat": {
21
- "pluginApi": ">=2026.7.1-beta.6"
21
+ "pluginApi": ">=2026.7.2-beta.1"
22
22
  },
23
23
  "build": {
24
- "openclawVersion": "2026.7.1-beta.6",
24
+ "openclawVersion": "2026.7.2-beta.1",
25
25
  "bundledDist": true
26
26
  },
27
27
  "release": {
@@ -39,7 +39,7 @@
39
39
  "README.md"
40
40
  ],
41
41
  "peerDependencies": {
42
- "openclaw": ">=2026.7.1-beta.6"
42
+ "openclaw": ">=2026.7.2-beta.1"
43
43
  },
44
44
  "peerDependenciesMeta": {
45
45
  "openclaw": {