@xemahq/llm-registry-internal-api-client 0.7.25 → 0.7.26

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.
@@ -0,0 +1,11 @@
1
+ /**
2
+ * Generated by @xemahq/api-client-generator — do not edit manually.
3
+ * LLM Registry API
4
+ * OpenAPI spec version: 0.1.3
5
+ */
6
+ import type { ContributedAgentPinResponseDtoDataEnvelope } from '../../models';
7
+ export declare const getContributedAgentPinControllerResolvePinUrl: (ownerScopeId: string, slug: string) => string;
8
+ /**
9
+ * @summary Resolve one biome-contributed Agent to its exact stable revision pin, owner-qualified.
10
+ */
11
+ export declare const contributedAgentPinControllerResolvePin: (ownerScopeId: string, slug: string, options?: RequestInit) => Promise<ContributedAgentPinResponseDtoDataEnvelope>;
@@ -0,0 +1,18 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.contributedAgentPinControllerResolvePin = exports.getContributedAgentPinControllerResolvePinUrl = void 0;
4
+ const custom_fetch_1 = require("../../custom-fetch");
5
+ const getContributedAgentPinControllerResolvePinUrl = (ownerScopeId, slug) => {
6
+ return `/internal/contributed-agents/scopes/${ownerScopeId}/by-slug/${slug}/pin`;
7
+ };
8
+ exports.getContributedAgentPinControllerResolvePinUrl = getContributedAgentPinControllerResolvePinUrl;
9
+ /**
10
+ * @summary Resolve one biome-contributed Agent to its exact stable revision pin, owner-qualified.
11
+ */
12
+ const contributedAgentPinControllerResolvePin = async (ownerScopeId, slug, options) => {
13
+ return (0, custom_fetch_1.customFetch)((0, exports.getContributedAgentPinControllerResolvePinUrl)(ownerScopeId, slug), {
14
+ ...options,
15
+ method: 'GET'
16
+ });
17
+ };
18
+ exports.contributedAgentPinControllerResolvePin = contributedAgentPinControllerResolvePin;
package/dist/index.d.ts CHANGED
@@ -1,5 +1,6 @@
1
1
  export { configureClient, getClientConfig, ClientError, customFetch, type ClientConfig, type RetryNotice } from './custom-fetch';
2
2
  export * from './models';
3
+ export * from './endpoints/contributed-agent-pins/contributed-agent-pins';
3
4
  export * from './endpoints/contribution-sync/contribution-sync';
4
5
  export * from './endpoints/describe-objects/describe-objects';
5
6
  export * from './endpoints/internal-agent-invocation/internal-agent-invocation';
package/dist/index.js CHANGED
@@ -22,6 +22,7 @@ Object.defineProperty(exports, "getClientConfig", { enumerable: true, get: funct
22
22
  Object.defineProperty(exports, "ClientError", { enumerable: true, get: function () { return custom_fetch_1.ClientError; } });
23
23
  Object.defineProperty(exports, "customFetch", { enumerable: true, get: function () { return custom_fetch_1.customFetch; } });
24
24
  __exportStar(require("./models"), exports);
25
+ __exportStar(require("./endpoints/contributed-agent-pins/contributed-agent-pins"), exports);
25
26
  __exportStar(require("./endpoints/contribution-sync/contribution-sync"), exports);
26
27
  __exportStar(require("./endpoints/describe-objects/describe-objects"), exports);
27
28
  __exportStar(require("./endpoints/internal-agent-invocation/internal-agent-invocation"), exports);
@@ -0,0 +1,16 @@
1
+ /**
2
+ * Generated by @xemahq/api-client-generator — do not edit manually.
3
+ * LLM Registry API
4
+ * OpenAPI spec version: 0.1.3
5
+ */
6
+ export interface ContributedAgentPinResponseDto {
7
+ /** Stable Agent AuthoredResource identity. */
8
+ resourceId: string;
9
+ /** Immutable AgentRevision id on the stable channel. */
10
+ revisionId: string;
11
+ /**
12
+ * SHA-256 of the immutable AgentRevision content.
13
+ * @pattern ^[a-f0-9]{64}$
14
+ */
15
+ contentHash: string;
16
+ }
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ /**
3
+ * Generated by @xemahq/api-client-generator — do not edit manually.
4
+ * LLM Registry API
5
+ * OpenAPI spec version: 0.1.3
6
+ */
7
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Generated by @xemahq/api-client-generator — do not edit manually.
3
+ * LLM Registry API
4
+ * OpenAPI spec version: 0.1.3
5
+ */
6
+ import type { ContributedAgentPinResponseDto } from './contributedAgentPinResponseDto.js';
7
+ export interface ContributedAgentPinResponseDtoDataEnvelope {
8
+ data: ContributedAgentPinResponseDto;
9
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -7,6 +7,8 @@ export * from './agentInvokeResponseDtoDataEnvelope';
7
7
  export * from './agentInvokeResponseDtoMode';
8
8
  export * from './agentInvokeResponseDtoOutput';
9
9
  export * from './agentInvokeResponseDtoStatus';
10
+ export * from './contributedAgentPinResponseDto';
11
+ export * from './contributedAgentPinResponseDtoDataEnvelope';
10
12
  export * from './defaultTargetRefDto';
11
13
  export * from './describeObjectsResponseDto';
12
14
  export * from './describeObjectsResponseDtoDataEnvelope';
@@ -24,6 +24,8 @@ __exportStar(require("./agentInvokeResponseDtoDataEnvelope"), exports);
24
24
  __exportStar(require("./agentInvokeResponseDtoMode"), exports);
25
25
  __exportStar(require("./agentInvokeResponseDtoOutput"), exports);
26
26
  __exportStar(require("./agentInvokeResponseDtoStatus"), exports);
27
+ __exportStar(require("./contributedAgentPinResponseDto"), exports);
28
+ __exportStar(require("./contributedAgentPinResponseDtoDataEnvelope"), exports);
27
29
  __exportStar(require("./defaultTargetRefDto"), exports);
28
30
  __exportStar(require("./describeObjectsResponseDto"), exports);
29
31
  __exportStar(require("./describeObjectsResponseDtoDataEnvelope"), exports);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xemahq/llm-registry-internal-api-client",
3
- "version": "0.7.25",
3
+ "version": "0.7.26",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "files": [