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

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.
Files changed (31) hide show
  1. package/dist/endpoints/contributed-agent-pins/contributed-agent-pins.d.ts +6 -1
  2. package/dist/endpoints/contributed-agent-pins/contributed-agent-pins.js +34 -1
  3. package/dist/models/agentInvokeRequestDto.d.ts +2 -2
  4. package/dist/models/agentOwnerSpaceDto.d.ts +15 -0
  5. package/dist/models/agentOwnerSpaceDto.js +2 -0
  6. package/dist/models/agentOwnerSpaceDtoTier.d.ts +15 -0
  7. package/dist/models/agentOwnerSpaceDtoTier.js +17 -0
  8. package/dist/models/agentOwnerSpaceRefDto.d.ts +13 -0
  9. package/dist/models/agentOwnerSpaceRefDto.js +2 -0
  10. package/dist/models/agentOwnerSpaceRefDtoFence.d.ts +10 -0
  11. package/dist/models/agentOwnerSpaceRefDtoFence.js +12 -0
  12. package/dist/models/contributedAgentPinControllerResolveReleaseTargetParams.d.ts +8 -0
  13. package/dist/models/contributedAgentReleaseTargetResponseDto.d.ts +19 -0
  14. package/dist/models/contributedAgentReleaseTargetResponseDto.js +2 -0
  15. package/dist/models/contributedAgentReleaseTargetResponseDtoDataEnvelope.d.ts +9 -0
  16. package/dist/models/contributedAgentReleaseTargetResponseDtoDataEnvelope.js +2 -0
  17. package/dist/models/exactRevisionSelectorDto.d.ts +16 -0
  18. package/dist/models/exactRevisionSelectorDto.js +2 -0
  19. package/dist/models/exactRevisionSelectorDtoKind.d.ts +9 -0
  20. package/dist/models/exactRevisionSelectorDtoKind.js +11 -0
  21. package/dist/models/index.d.ts +12 -1
  22. package/dist/models/index.js +12 -1
  23. package/dist/models/releaseChannelRevisionSelectorDto.d.ts +11 -0
  24. package/dist/models/releaseChannelRevisionSelectorDto.js +2 -0
  25. package/dist/models/releaseChannelRevisionSelectorDtoKind.d.ts +9 -0
  26. package/dist/models/releaseChannelRevisionSelectorDtoKind.js +11 -0
  27. package/dist/models/revisionTargetDto.d.ts +17 -0
  28. package/dist/models/revisionTargetDto.js +2 -0
  29. package/package.json +1 -1
  30. package/dist/models/agentInvokeRequestDtoLaunchDefinition.d.ts +0 -11
  31. /package/dist/models/{agentInvokeRequestDtoLaunchDefinition.js → contributedAgentPinControllerResolveReleaseTargetParams.js} +0 -0
@@ -3,9 +3,14 @@
3
3
  * LLM Registry API
4
4
  * OpenAPI spec version: 0.1.3
5
5
  */
6
- import type { ContributedAgentPinResponseDtoDataEnvelope } from '../../models';
6
+ import type { ContributedAgentPinControllerResolveReleaseTargetParams, ContributedAgentPinResponseDtoDataEnvelope, ContributedAgentReleaseTargetResponseDtoDataEnvelope } from '../../models';
7
7
  export declare const getContributedAgentPinControllerResolvePinUrl: (ownerScopeId: string, slug: string) => string;
8
8
  /**
9
9
  * @summary Resolve one biome-contributed Agent to its exact stable revision pin, owner-qualified.
10
10
  */
11
11
  export declare const contributedAgentPinControllerResolvePin: (ownerScopeId: string, slug: string, options?: RequestInit) => Promise<ContributedAgentPinResponseDtoDataEnvelope>;
12
+ export declare const getContributedAgentPinControllerResolveReleaseTargetUrl: (resourceId: string, revisionId: string, params: ContributedAgentPinControllerResolveReleaseTargetParams) => string;
13
+ /**
14
+ * @summary Resolve the owner-qualified exact release target of one immutable Agent revision.
15
+ */
16
+ export declare const contributedAgentPinControllerResolveReleaseTarget: (resourceId: string, revisionId: string, params: ContributedAgentPinControllerResolveReleaseTargetParams, options?: RequestInit) => Promise<ContributedAgentReleaseTargetResponseDtoDataEnvelope>;
@@ -1,6 +1,6 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.contributedAgentPinControllerResolvePin = exports.getContributedAgentPinControllerResolvePinUrl = void 0;
3
+ exports.contributedAgentPinControllerResolveReleaseTarget = exports.getContributedAgentPinControllerResolveReleaseTargetUrl = exports.contributedAgentPinControllerResolvePin = exports.getContributedAgentPinControllerResolvePinUrl = void 0;
4
4
  const custom_fetch_1 = require("../../custom-fetch");
5
5
  const getContributedAgentPinControllerResolvePinUrl = (ownerScopeId, slug) => {
6
6
  return `/internal/contributed-agents/scopes/${ownerScopeId}/by-slug/${slug}/pin`;
@@ -16,3 +16,36 @@ const contributedAgentPinControllerResolvePin = async (ownerScopeId, slug, optio
16
16
  });
17
17
  };
18
18
  exports.contributedAgentPinControllerResolvePin = contributedAgentPinControllerResolvePin;
19
+ const getContributedAgentPinControllerResolveReleaseTargetUrl = (resourceId, revisionId, params) => {
20
+ const normalizedParams = new URLSearchParams();
21
+ Object.entries(params || {}).forEach(([key, value]) => {
22
+ if (value === undefined)
23
+ return;
24
+ if (value === null) {
25
+ normalizedParams.append(key, 'null');
26
+ return;
27
+ }
28
+ if (Array.isArray(value)) {
29
+ for (const item of value) {
30
+ if (item === undefined || item === null)
31
+ continue;
32
+ normalizedParams.append(key, item.toString());
33
+ }
34
+ return;
35
+ }
36
+ normalizedParams.append(key, value.toString());
37
+ });
38
+ const stringifiedParams = normalizedParams.toString();
39
+ return stringifiedParams.length > 0 ? `/internal/contributed-agents/revisions/${resourceId}/${revisionId}/release-target?${stringifiedParams}` : `/internal/contributed-agents/revisions/${resourceId}/${revisionId}/release-target`;
40
+ };
41
+ exports.getContributedAgentPinControllerResolveReleaseTargetUrl = getContributedAgentPinControllerResolveReleaseTargetUrl;
42
+ /**
43
+ * @summary Resolve the owner-qualified exact release target of one immutable Agent revision.
44
+ */
45
+ const contributedAgentPinControllerResolveReleaseTarget = async (resourceId, revisionId, params, options) => {
46
+ return (0, custom_fetch_1.customFetch)((0, exports.getContributedAgentPinControllerResolveReleaseTargetUrl)(resourceId, revisionId, params), {
47
+ ...options,
48
+ method: 'GET'
49
+ });
50
+ };
51
+ exports.contributedAgentPinControllerResolveReleaseTarget = contributedAgentPinControllerResolveReleaseTarget;
@@ -4,12 +4,12 @@
4
4
  * OpenAPI spec version: 0.1.3
5
5
  */
6
6
  import type { AgentInvokeRequestDtoInput } from './agentInvokeRequestDtoInput.js';
7
- import type { AgentInvokeRequestDtoLaunchDefinition } from './agentInvokeRequestDtoLaunchDefinition.js';
8
7
  import type { AgentInvokeRequestDtoWorkspace } from './agentInvokeRequestDtoWorkspace.js';
9
8
  import type { ExecutionRequirementsDto } from './executionRequirementsDto.js';
9
+ import type { RevisionTargetDto } from './revisionTargetDto.js';
10
10
  export interface AgentInvokeRequestDto {
11
11
  /** Canonical LaunchDefinition RevisionTarget. Stable/channel selection is resolved centrally by agent-session. */
12
- launchDefinition: AgentInvokeRequestDtoLaunchDefinition;
12
+ launchDefinition: RevisionTargetDto;
13
13
  /** Canonical workspace action for the session launch. */
14
14
  workspace: AgentInvokeRequestDtoWorkspace;
15
15
  /** Tenant scope: organization id. */
@@ -0,0 +1,15 @@
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 { AgentOwnerSpaceDtoTier } from './agentOwnerSpaceDtoTier.js';
7
+ export interface AgentOwnerSpaceDto {
8
+ tier: AgentOwnerSpaceDtoTier;
9
+ orgId?: string;
10
+ projectId?: string;
11
+ appId?: string;
12
+ sessionId?: string;
13
+ biomeId?: string;
14
+ userId?: string;
15
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,15 @@
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 type AgentOwnerSpaceDtoTier = typeof AgentOwnerSpaceDtoTier[keyof typeof AgentOwnerSpaceDtoTier];
7
+ export declare const AgentOwnerSpaceDtoTier: {
8
+ readonly system: "system";
9
+ readonly org: "org";
10
+ readonly project: "project";
11
+ readonly app: "app";
12
+ readonly session: "session";
13
+ readonly biome: "biome";
14
+ readonly user: "user";
15
+ };
@@ -0,0 +1,17 @@
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 });
8
+ exports.AgentOwnerSpaceDtoTier = void 0;
9
+ exports.AgentOwnerSpaceDtoTier = {
10
+ system: 'system',
11
+ org: 'org',
12
+ project: 'project',
13
+ app: 'app',
14
+ session: 'session',
15
+ biome: 'biome',
16
+ user: 'user',
17
+ };
@@ -0,0 +1,13 @@
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 { AgentOwnerSpaceDto } from './agentOwnerSpaceDto.js';
7
+ import type { AgentOwnerSpaceRefDtoFence } from './agentOwnerSpaceRefDtoFence.js';
8
+ export interface AgentOwnerSpaceRefDto {
9
+ fence: AgentOwnerSpaceRefDtoFence;
10
+ /** @nullable */
11
+ orgId: string | null;
12
+ space: AgentOwnerSpaceDto;
13
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -0,0 +1,10 @@
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 type AgentOwnerSpaceRefDtoFence = typeof AgentOwnerSpaceRefDtoFence[keyof typeof AgentOwnerSpaceRefDtoFence];
7
+ export declare const AgentOwnerSpaceRefDtoFence: {
8
+ readonly global: "global";
9
+ readonly tenant: "tenant";
10
+ };
@@ -0,0 +1,12 @@
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 });
8
+ exports.AgentOwnerSpaceRefDtoFence = void 0;
9
+ exports.AgentOwnerSpaceRefDtoFence = {
10
+ global: 'global',
11
+ tenant: 'tenant',
12
+ };
@@ -0,0 +1,8 @@
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 type ContributedAgentPinControllerResolveReleaseTargetParams = {
7
+ contentHash: string;
8
+ };
@@ -0,0 +1,19 @@
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 { AgentOwnerSpaceRefDto } from './agentOwnerSpaceRefDto.js';
7
+ export interface ContributedAgentReleaseTargetResponseDto {
8
+ /** Stable Agent AuthoredResource identity. */
9
+ resourceId: string;
10
+ /** Immutable AgentRevision id that was resolved. */
11
+ revisionId: string;
12
+ /**
13
+ * SHA-256 of the immutable AgentRevision content.
14
+ * @pattern ^[a-f0-9]{64}$
15
+ */
16
+ contentHash: string;
17
+ /** The canonical owner space this revision is registered under in the release plane. */
18
+ ownerSpaceRef: AgentOwnerSpaceRefDto;
19
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ 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 { ContributedAgentReleaseTargetResponseDto } from './contributedAgentReleaseTargetResponseDto.js';
7
+ export interface ContributedAgentReleaseTargetResponseDtoDataEnvelope {
8
+ data: ContributedAgentReleaseTargetResponseDto;
9
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
@@ -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
+ import type { ExactRevisionSelectorDtoKind } from './exactRevisionSelectorDtoKind.js';
7
+ export interface ExactRevisionSelectorDto {
8
+ kind: ExactRevisionSelectorDtoKind;
9
+ /**
10
+ * @maxLength 2048
11
+ * @pattern ^\S+$
12
+ */
13
+ revisionId: string;
14
+ /** @pattern ^[a-f0-9]{64}$ */
15
+ contentHash: string;
16
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ 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
+ export type ExactRevisionSelectorDtoKind = typeof ExactRevisionSelectorDtoKind[keyof typeof ExactRevisionSelectorDtoKind];
7
+ export declare const ExactRevisionSelectorDtoKind: {
8
+ readonly exact: "exact";
9
+ };
@@ -0,0 +1,11 @@
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 });
8
+ exports.ExactRevisionSelectorDtoKind = void 0;
9
+ exports.ExactRevisionSelectorDtoKind = {
10
+ exact: 'exact',
11
+ };
@@ -1,14 +1,20 @@
1
1
  export * from './agentInvokeRequestDto';
2
2
  export * from './agentInvokeRequestDtoInput';
3
- export * from './agentInvokeRequestDtoLaunchDefinition';
4
3
  export * from './agentInvokeRequestDtoWorkspace';
5
4
  export * from './agentInvokeResponseDto';
6
5
  export * from './agentInvokeResponseDtoDataEnvelope';
7
6
  export * from './agentInvokeResponseDtoMode';
8
7
  export * from './agentInvokeResponseDtoOutput';
9
8
  export * from './agentInvokeResponseDtoStatus';
9
+ export * from './agentOwnerSpaceDto';
10
+ export * from './agentOwnerSpaceDtoTier';
11
+ export * from './agentOwnerSpaceRefDto';
12
+ export * from './agentOwnerSpaceRefDtoFence';
13
+ export * from './contributedAgentPinControllerResolveReleaseTargetParams';
10
14
  export * from './contributedAgentPinResponseDto';
11
15
  export * from './contributedAgentPinResponseDtoDataEnvelope';
16
+ export * from './contributedAgentReleaseTargetResponseDto';
17
+ export * from './contributedAgentReleaseTargetResponseDtoDataEnvelope';
12
18
  export * from './defaultTargetRefDto';
13
19
  export * from './describeObjectsResponseDto';
14
20
  export * from './describeObjectsResponseDtoDataEnvelope';
@@ -20,6 +26,8 @@ export * from './exactContentPinDto';
20
26
  export * from './exactLogicalModelResolutionDto';
21
27
  export * from './exactLogicalModelResolutionDtoContextWindow';
22
28
  export * from './exactLogicalModelResolutionDtoDataEnvelope';
29
+ export * from './exactRevisionSelectorDto';
30
+ export * from './exactRevisionSelectorDtoKind';
23
31
  export * from './executionRequirementsDto';
24
32
  export * from './executionRequirementsDtoMode';
25
33
  export * from './executionRequirementsDtoPriority';
@@ -44,8 +52,11 @@ export * from './modelResolutionSelectorResponseDtoExtra';
44
52
  export * from './modelResolutionSelectorResponseDtoModelCapability';
45
53
  export * from './modelResolutionSelectorResponseDtoModelClass';
46
54
  export * from './objectLifecycle';
55
+ export * from './releaseChannelRevisionSelectorDto';
56
+ export * from './releaseChannelRevisionSelectorDtoKind';
47
57
  export * from './repointDefaultTargetDto';
48
58
  export * from './resolveExactLogicalModelDto';
59
+ export * from './revisionTargetDto';
49
60
  export * from './spaceKind';
50
61
  export * from './upsertManagedModelResolutionRuleDto';
51
62
  export * from './upsertManagedModelResolutionRuleDtoTargetKind';
@@ -17,15 +17,21 @@ Object.defineProperty(exports, "__esModule", { value: true });
17
17
  // Auto-generated by tooling/codegen/regenerate-models-barrel.js — do not edit manually.
18
18
  __exportStar(require("./agentInvokeRequestDto"), exports);
19
19
  __exportStar(require("./agentInvokeRequestDtoInput"), exports);
20
- __exportStar(require("./agentInvokeRequestDtoLaunchDefinition"), exports);
21
20
  __exportStar(require("./agentInvokeRequestDtoWorkspace"), exports);
22
21
  __exportStar(require("./agentInvokeResponseDto"), exports);
23
22
  __exportStar(require("./agentInvokeResponseDtoDataEnvelope"), exports);
24
23
  __exportStar(require("./agentInvokeResponseDtoMode"), exports);
25
24
  __exportStar(require("./agentInvokeResponseDtoOutput"), exports);
26
25
  __exportStar(require("./agentInvokeResponseDtoStatus"), exports);
26
+ __exportStar(require("./agentOwnerSpaceDto"), exports);
27
+ __exportStar(require("./agentOwnerSpaceDtoTier"), exports);
28
+ __exportStar(require("./agentOwnerSpaceRefDto"), exports);
29
+ __exportStar(require("./agentOwnerSpaceRefDtoFence"), exports);
30
+ __exportStar(require("./contributedAgentPinControllerResolveReleaseTargetParams"), exports);
27
31
  __exportStar(require("./contributedAgentPinResponseDto"), exports);
28
32
  __exportStar(require("./contributedAgentPinResponseDtoDataEnvelope"), exports);
33
+ __exportStar(require("./contributedAgentReleaseTargetResponseDto"), exports);
34
+ __exportStar(require("./contributedAgentReleaseTargetResponseDtoDataEnvelope"), exports);
29
35
  __exportStar(require("./defaultTargetRefDto"), exports);
30
36
  __exportStar(require("./describeObjectsResponseDto"), exports);
31
37
  __exportStar(require("./describeObjectsResponseDtoDataEnvelope"), exports);
@@ -37,6 +43,8 @@ __exportStar(require("./exactContentPinDto"), exports);
37
43
  __exportStar(require("./exactLogicalModelResolutionDto"), exports);
38
44
  __exportStar(require("./exactLogicalModelResolutionDtoContextWindow"), exports);
39
45
  __exportStar(require("./exactLogicalModelResolutionDtoDataEnvelope"), exports);
46
+ __exportStar(require("./exactRevisionSelectorDto"), exports);
47
+ __exportStar(require("./exactRevisionSelectorDtoKind"), exports);
40
48
  __exportStar(require("./executionRequirementsDto"), exports);
41
49
  __exportStar(require("./executionRequirementsDtoMode"), exports);
42
50
  __exportStar(require("./executionRequirementsDtoPriority"), exports);
@@ -61,8 +69,11 @@ __exportStar(require("./modelResolutionSelectorResponseDtoExtra"), exports);
61
69
  __exportStar(require("./modelResolutionSelectorResponseDtoModelCapability"), exports);
62
70
  __exportStar(require("./modelResolutionSelectorResponseDtoModelClass"), exports);
63
71
  __exportStar(require("./objectLifecycle"), exports);
72
+ __exportStar(require("./releaseChannelRevisionSelectorDto"), exports);
73
+ __exportStar(require("./releaseChannelRevisionSelectorDtoKind"), exports);
64
74
  __exportStar(require("./repointDefaultTargetDto"), exports);
65
75
  __exportStar(require("./resolveExactLogicalModelDto"), exports);
76
+ __exportStar(require("./revisionTargetDto"), exports);
66
77
  __exportStar(require("./spaceKind"), exports);
67
78
  __exportStar(require("./upsertManagedModelResolutionRuleDto"), exports);
68
79
  __exportStar(require("./upsertManagedModelResolutionRuleDtoTargetKind"), exports);
@@ -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 { ReleaseChannelRevisionSelectorDtoKind } from './releaseChannelRevisionSelectorDtoKind.js';
7
+ export interface ReleaseChannelRevisionSelectorDto {
8
+ kind: ReleaseChannelRevisionSelectorDtoKind;
9
+ /** @pattern ^[a-z][a-z0-9-]{0,62}$ */
10
+ channel: string;
11
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ 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
+ export type ReleaseChannelRevisionSelectorDtoKind = typeof ReleaseChannelRevisionSelectorDtoKind[keyof typeof ReleaseChannelRevisionSelectorDtoKind];
7
+ export declare const ReleaseChannelRevisionSelectorDtoKind: {
8
+ readonly 'release-channel': "release-channel";
9
+ };
@@ -0,0 +1,11 @@
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 });
8
+ exports.ReleaseChannelRevisionSelectorDtoKind = void 0;
9
+ exports.ReleaseChannelRevisionSelectorDtoKind = {
10
+ 'release-channel': 'release-channel',
11
+ };
@@ -0,0 +1,17 @@
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 { ExactRevisionSelectorDto } from './exactRevisionSelectorDto.js';
7
+ import type { ReleaseChannelRevisionSelectorDto } from './releaseChannelRevisionSelectorDto.js';
8
+ export interface RevisionTargetDto {
9
+ /** @pattern ^[a-z][a-z0-9-]{0,62}$ */
10
+ resourceKind: string;
11
+ /**
12
+ * @maxLength 2048
13
+ * @pattern ^\S+$
14
+ */
15
+ resourceId: string;
16
+ selector: ExactRevisionSelectorDto | ReleaseChannelRevisionSelectorDto;
17
+ }
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@xemahq/llm-registry-internal-api-client",
3
- "version": "0.7.26",
3
+ "version": "0.7.28",
4
4
  "main": "./dist/index.js",
5
5
  "types": "./dist/index.d.ts",
6
6
  "files": [
@@ -1,11 +0,0 @@
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
- /**
7
- * Canonical LaunchDefinition RevisionTarget. Stable/channel selection is resolved centrally by agent-session.
8
- */
9
- export type AgentInvokeRequestDtoLaunchDefinition = {
10
- [key: string]: unknown;
11
- };