@agentxm/workspace-state 0.28.4-bootstrap.0
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/LICENSE +110 -0
- package/README.md +11 -0
- package/dist/src/index.d.ts +72 -0
- package/dist/src/index.js +88 -0
- package/dist/src/knowledge/discovery-config.d.ts +12 -0
- package/dist/src/knowledge/discovery-config.js +9 -0
- package/dist/src/lockfile/accepted-registry-version.d.ts +12 -0
- package/dist/src/lockfile/accepted-registry-version.js +13 -0
- package/dist/src/lockfile/entry-fields.d.ts +189 -0
- package/dist/src/lockfile/entry-fields.js +89 -0
- package/dist/src/lockfile/errors.d.ts +48 -0
- package/dist/src/lockfile/errors.js +27 -0
- package/dist/src/lockfile/index.d.ts +18 -0
- package/dist/src/lockfile/index.js +16 -0
- package/dist/src/lockfile/lockfile.d.ts +2255 -0
- package/dist/src/lockfile/lockfile.js +235 -0
- package/dist/src/lockfile/resolved-version.d.ts +4 -0
- package/dist/src/lockfile/resolved-version.js +7 -0
- package/dist/src/lockfile/schema.d.ts +3062 -0
- package/dist/src/lockfile/schema.js +406 -0
- package/dist/src/schema/index.d.ts +3 -0
- package/dist/src/schema/index.js +2 -0
- package/dist/src/schema/read-and-validate-json-file.d.ts +20 -0
- package/dist/src/schema/read-and-validate-json-file.js +85 -0
- package/dist/src/schema/types.d.ts +26 -0
- package/dist/src/schema/types.js +2 -0
- package/dist/src/settings/errors.d.ts +22 -0
- package/dist/src/settings/errors.js +15 -0
- package/dist/src/settings/format-preserving-json.d.ts +40 -0
- package/dist/src/settings/format-preserving-json.js +80 -0
- package/dist/src/settings/index.d.ts +15 -0
- package/dist/src/settings/index.js +14 -0
- package/dist/src/settings/schema.d.ts +687 -0
- package/dist/src/settings/schema.js +977 -0
- package/dist/src/settings/settings.d.ts +38 -0
- package/dist/src/settings/settings.js +213 -0
- package/dist/src/testing.d.ts +17 -0
- package/dist/src/testing.js +17 -0
- package/dist/src/utils/atomic-write.d.ts +67 -0
- package/dist/src/utils/atomic-write.js +71 -0
- package/dist/src/utils/environment.d.ts +16 -0
- package/dist/src/utils/environment.js +19 -0
- package/dist/src/utils/path-safety.d.ts +25 -0
- package/dist/src/utils/path-safety.js +34 -0
- package/dist/src/utils/resolve-parent-symlinks.d.ts +16 -0
- package/dist/src/utils/resolve-parent-symlinks.js +36 -0
- package/dist/src/workspace/accepted-canonical-ref.d.ts +58 -0
- package/dist/src/workspace/accepted-canonical-ref.js +229 -0
- package/dist/src/workspace/artifact-change.d.ts +14 -0
- package/dist/src/workspace/artifact-change.js +18 -0
- package/dist/src/workspace/canonical-observation.d.ts +39 -0
- package/dist/src/workspace/canonical-observation.js +307 -0
- package/dist/src/workspace/configured-agent-outcome.d.ts +22 -0
- package/dist/src/workspace/configured-agent-outcome.js +33 -0
- package/dist/src/workspace/configured-agent-outcomes-provider.d.ts +50 -0
- package/dist/src/workspace/configured-agent-outcomes-provider.js +26 -0
- package/dist/src/workspace/configured-agent-outcomes.d.ts +48 -0
- package/dist/src/workspace/configured-agent-outcomes.js +113 -0
- package/dist/src/workspace/configured-entry-resolution/types.d.ts +32 -0
- package/dist/src/workspace/configured-entry-resolution/types.js +2 -0
- package/dist/src/workspace/configured-entry-resolution/workspace-ref.d.ts +32 -0
- package/dist/src/workspace/configured-entry-resolution/workspace-ref.js +176 -0
- package/dist/src/workspace/constants.d.ts +6 -0
- package/dist/src/workspace/constants.js +6 -0
- package/dist/src/workspace/create-symlink.d.ts +26 -0
- package/dist/src/workspace/create-symlink.js +87 -0
- package/dist/src/workspace/desired-pack-lock.d.ts +18 -0
- package/dist/src/workspace/desired-pack-lock.js +132 -0
- package/dist/src/workspace/desired-state-enabled.d.ts +18 -0
- package/dist/src/workspace/desired-state-enabled.js +16 -0
- package/dist/src/workspace/desired-state-graph.d.ts +114 -0
- package/dist/src/workspace/desired-state-graph.js +384 -0
- package/dist/src/workspace/desired-state-problem-text.d.ts +6 -0
- package/dist/src/workspace/desired-state-problem-text.js +27 -0
- package/dist/src/workspace/errors.d.ts +184 -0
- package/dist/src/workspace/errors.js +79 -0
- package/dist/src/workspace/extension-name.d.ts +28 -0
- package/dist/src/workspace/extension-name.js +66 -0
- package/dist/src/workspace/extension-paths.d.ts +82 -0
- package/dist/src/workspace/extension-paths.js +172 -0
- package/dist/src/workspace/footprint-recorder.d.ts +30 -0
- package/dist/src/workspace/footprint-recorder.js +32 -0
- package/dist/src/workspace/layout.d.ts +43 -0
- package/dist/src/workspace/layout.js +164 -0
- package/dist/src/workspace/lock-entry-to-ref.d.ts +40 -0
- package/dist/src/workspace/lock-entry-to-ref.js +433 -0
- package/dist/src/workspace/lock-entry-to-source-params.d.ts +26 -0
- package/dist/src/workspace/lock-entry-to-source-params.js +81 -0
- package/dist/src/workspace/locked-entries.d.ts +30 -0
- package/dist/src/workspace/locked-entries.js +34 -0
- package/dist/src/workspace/materialized-file-target.d.ts +14 -0
- package/dist/src/workspace/materialized-file-target.js +14 -0
- package/dist/src/workspace/materialized-tree.d.ts +23 -0
- package/dist/src/workspace/materialized-tree.js +90 -0
- package/dist/src/workspace/mcp-entry-semantics.d.ts +31 -0
- package/dist/src/workspace/mcp-entry-semantics.js +60 -0
- package/dist/src/workspace/observed-installed.d.ts +9 -0
- package/dist/src/workspace/observed-installed.js +9 -0
- package/dist/src/workspace/pack-manifest-content-identity.d.ts +12 -0
- package/dist/src/workspace/pack-manifest-content-identity.js +20 -0
- package/dist/src/workspace/pack-paths.d.ts +24 -0
- package/dist/src/workspace/pack-paths.js +16 -0
- package/dist/src/workspace/package-hash.d.ts +25 -0
- package/dist/src/workspace/package-hash.js +45 -0
- package/dist/src/workspace/paths.d.ts +24 -0
- package/dist/src/workspace/paths.js +52 -0
- package/dist/src/workspace/read-model/__fixtures__/builder.d.ts +199 -0
- package/dist/src/workspace/read-model/__fixtures__/builder.js +588 -0
- package/dist/src/workspace/read-model/__fixtures__/decoders.d.ts +15 -0
- package/dist/src/workspace/read-model/__fixtures__/decoders.js +15 -0
- package/dist/src/workspace/read-model/__fixtures__/occurrences.d.ts +72 -0
- package/dist/src/workspace/read-model/__fixtures__/occurrences.js +134 -0
- package/dist/src/workspace/read-model/__fixtures__/scenario-harness.d.ts +99 -0
- package/dist/src/workspace/read-model/__fixtures__/scenario-harness.js +142 -0
- package/dist/src/workspace/read-model/__fixtures__/test-layer.d.ts +60 -0
- package/dist/src/workspace/read-model/__fixtures__/test-layer.js +57 -0
- package/dist/src/workspace/read-model/agent-presence.d.ts +32 -0
- package/dist/src/workspace/read-model/agent-presence.js +21 -0
- package/dist/src/workspace/read-model/agent-root-resolver.d.ts +38 -0
- package/dist/src/workspace/read-model/agent-root-resolver.js +35 -0
- package/dist/src/workspace/read-model/agents/index.d.ts +38 -0
- package/dist/src/workspace/read-model/agents/index.js +45 -0
- package/dist/src/workspace/read-model/agents/shared.d.ts +27 -0
- package/dist/src/workspace/read-model/agents/shared.js +63 -0
- package/dist/src/workspace/read-model/agents/types.d.ts +133 -0
- package/dist/src/workspace/read-model/agents/types.js +51 -0
- package/dist/src/workspace/read-model/diagnostics.d.ts +18 -0
- package/dist/src/workspace/read-model/diagnostics.js +14 -0
- package/dist/src/workspace/read-model/discovery/index.d.ts +5 -0
- package/dist/src/workspace/read-model/discovery/index.js +5 -0
- package/dist/src/workspace/read-model/discovery/plugin-manifests.d.ts +16 -0
- package/dist/src/workspace/read-model/discovery/plugin-manifests.js +168 -0
- package/dist/src/workspace/read-model/discovery/skills.d.ts +58 -0
- package/dist/src/workspace/read-model/discovery/skills.js +263 -0
- package/dist/src/workspace/read-model/discovery/subagents.d.ts +37 -0
- package/dist/src/workspace/read-model/discovery/subagents.js +48 -0
- package/dist/src/workspace/read-model/errors.d.ts +93 -0
- package/dist/src/workspace/read-model/errors.js +30 -0
- package/dist/src/workspace/read-model/extensions/actual-helpers.d.ts +4 -0
- package/dist/src/workspace/read-model/extensions/actual-helpers.js +4 -0
- package/dist/src/workspace/read-model/extensions/hook.d.ts +104 -0
- package/dist/src/workspace/read-model/extensions/hook.js +119 -0
- package/dist/src/workspace/read-model/extensions/index.d.ts +19 -0
- package/dist/src/workspace/read-model/extensions/index.js +43 -0
- package/dist/src/workspace/read-model/extensions/indexByName.d.ts +31 -0
- package/dist/src/workspace/read-model/extensions/indexByName.js +30 -0
- package/dist/src/workspace/read-model/extensions/inventory.d.ts +99 -0
- package/dist/src/workspace/read-model/extensions/inventory.js +111 -0
- package/dist/src/workspace/read-model/extensions/knowledge.d.ts +101 -0
- package/dist/src/workspace/read-model/extensions/knowledge.js +121 -0
- package/dist/src/workspace/read-model/extensions/mcp-server.d.ts +106 -0
- package/dist/src/workspace/read-model/extensions/mcp-server.js +122 -0
- package/dist/src/workspace/read-model/extensions/pack.d.ts +104 -0
- package/dist/src/workspace/read-model/extensions/pack.js +123 -0
- package/dist/src/workspace/read-model/extensions/package-root.d.ts +39 -0
- package/dist/src/workspace/read-model/extensions/package-root.js +48 -0
- package/dist/src/workspace/read-model/extensions/projection.d.ts +137 -0
- package/dist/src/workspace/read-model/extensions/projection.js +180 -0
- package/dist/src/workspace/read-model/extensions/rule.d.ts +104 -0
- package/dist/src/workspace/read-model/extensions/rule.js +113 -0
- package/dist/src/workspace/read-model/extensions/skill.d.ts +170 -0
- package/dist/src/workspace/read-model/extensions/skill.js +148 -0
- package/dist/src/workspace/read-model/extensions/subagent.d.ts +97 -0
- package/dist/src/workspace/read-model/extensions/subagent.js +120 -0
- package/dist/src/workspace/read-model/scanners/agent-dir.d.ts +49 -0
- package/dist/src/workspace/read-model/scanners/agent-dir.js +180 -0
- package/dist/src/workspace/read-model/scanners/agent-root.d.ts +73 -0
- package/dist/src/workspace/read-model/scanners/agent-root.js +148 -0
- package/dist/src/workspace/read-model/scanners/agent-settings.d.ts +43 -0
- package/dist/src/workspace/read-model/scanners/agent-settings.js +54 -0
- package/dist/src/workspace/read-model/scanners/canonical-extensions.d.ts +48 -0
- package/dist/src/workspace/read-model/scanners/canonical-extensions.js +237 -0
- package/dist/src/workspace/read-model/scanners/fs-helpers.d.ts +63 -0
- package/dist/src/workspace/read-model/scanners/fs-helpers.js +106 -0
- package/dist/src/workspace/read-model/scanners/index.d.ts +15 -0
- package/dist/src/workspace/read-model/scanners/index.js +34 -0
- package/dist/src/workspace/read-model/scanners/mcp-config.d.ts +47 -0
- package/dist/src/workspace/read-model/scanners/mcp-config.js +212 -0
- package/dist/src/workspace/read-model/scanners/types.d.ts +170 -0
- package/dist/src/workspace/read-model/scanners/types.js +86 -0
- package/dist/src/workspace/read-model/service.d.ts +103 -0
- package/dist/src/workspace/read-model/service.js +391 -0
- package/dist/src/workspace/read-model/state.d.ts +35 -0
- package/dist/src/workspace/read-model/state.js +97 -0
- package/dist/src/workspace/read-model/types.d.ts +75 -0
- package/dist/src/workspace/read-model/types.js +26 -0
- package/dist/src/workspace/read-model-record-readers.d.ts +34 -0
- package/dist/src/workspace/read-model-record-readers.js +467 -0
- package/dist/src/workspace/read-model-record-rows.d.ts +45 -0
- package/dist/src/workspace/read-model-record-rows.js +33 -0
- package/dist/src/workspace/read-model-record-types.d.ts +45 -0
- package/dist/src/workspace/read-model-record-types.js +13 -0
- package/dist/src/workspace/remove-if-exists.d.ts +13 -0
- package/dist/src/workspace/remove-if-exists.js +26 -0
- package/dist/src/workspace/rendered-files.d.ts +53 -0
- package/dist/src/workspace/rendered-files.js +50 -0
- package/dist/src/workspace/scope-refusal.d.ts +26 -0
- package/dist/src/workspace/scope-refusal.js +29 -0
- package/dist/src/workspace/service-interface.d.ts +479 -0
- package/dist/src/workspace/service-interface.js +27 -0
- package/dist/src/workspace/service.d.ts +1665 -0
- package/dist/src/workspace/service.js +1263 -0
- package/dist/src/workspace/setup-scope-support.d.ts +27 -0
- package/dist/src/workspace/setup-scope-support.js +299 -0
- package/dist/src/workspace/skill-paths.d.ts +33 -0
- package/dist/src/workspace/skill-paths.js +14 -0
- package/dist/src/workspace/source-metadata.d.ts +7 -0
- package/dist/src/workspace/source-metadata.js +10 -0
- package/dist/src/workspace/source-to-lock-entry.d.ts +32 -0
- package/dist/src/workspace/source-to-lock-entry.js +68 -0
- package/dist/src/workspace/test-stubs.d.ts +144 -0
- package/dist/src/workspace/test-stubs.js +412 -0
- package/dist/src/workspace/transaction.d.ts +218 -0
- package/dist/src/workspace/transaction.js +177 -0
- package/package.json +57 -0
|
@@ -0,0 +1,3062 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Lockfile schema definition.
|
|
3
|
+
*
|
|
4
|
+
* The lockfile (axm-lock.yaml) records accepted immutable resolutions for
|
|
5
|
+
* externally sourced extensions.
|
|
6
|
+
*
|
|
7
|
+
* Lockfile v6 is authority, not receipt history. It contains no authored,
|
|
8
|
+
* bundled, inline, projection, completion-time, or command-history state.
|
|
9
|
+
*
|
|
10
|
+
* @experimental This API is unstable and may change without notice.
|
|
11
|
+
*/
|
|
12
|
+
import * as Schema from "effect/Schema";
|
|
13
|
+
export declare const LOCKFILE_VERSION = 6;
|
|
14
|
+
/**
|
|
15
|
+
* Lock entry for a single installed skill.
|
|
16
|
+
* Discriminated union by the `type` field.
|
|
17
|
+
*
|
|
18
|
+
* Every external source carries immutable accepted-resolution identity:
|
|
19
|
+
* registry version/integrity/publisher binding, Git commit/tree/content identity,
|
|
20
|
+
* or local-path content identity.
|
|
21
|
+
*
|
|
22
|
+
* Source-specific fields are at the top level based on source type.
|
|
23
|
+
*
|
|
24
|
+
* @experimental This API is unstable and may change without notice.
|
|
25
|
+
*/
|
|
26
|
+
export declare const SkillLockEntrySchema: Schema.Union<readonly [Schema.Struct<{
|
|
27
|
+
readonly type: Schema.Literal<"github">;
|
|
28
|
+
readonly sourceType: Schema.Literal<"github">;
|
|
29
|
+
readonly sourceName: Schema.String;
|
|
30
|
+
readonly endpoint: Schema.URLFromString;
|
|
31
|
+
readonly extensionType: Schema.Literal<"skill">;
|
|
32
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
33
|
+
readonly packageFormat: Schema.Literals<readonly ["agentxm", "agent-skill"]>;
|
|
34
|
+
readonly packageOwner: Schema.optional<Schema.brand<Schema.String, "Handle">>;
|
|
35
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
36
|
+
readonly owner: Schema.NonEmptyString;
|
|
37
|
+
readonly repo: Schema.NonEmptyString;
|
|
38
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
39
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
40
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
41
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
42
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
43
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
44
|
+
}>, Schema.Struct<{
|
|
45
|
+
readonly type: Schema.Literal<"gitlab">;
|
|
46
|
+
readonly sourceType: Schema.Literal<"gitlab">;
|
|
47
|
+
readonly sourceName: Schema.String;
|
|
48
|
+
readonly endpoint: Schema.URLFromString;
|
|
49
|
+
readonly extensionType: Schema.Literal<"skill">;
|
|
50
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
51
|
+
readonly packageFormat: Schema.Literals<readonly ["agentxm", "agent-skill"]>;
|
|
52
|
+
readonly packageOwner: Schema.optional<Schema.brand<Schema.String, "Handle">>;
|
|
53
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
54
|
+
readonly owner: Schema.NonEmptyString;
|
|
55
|
+
readonly repo: Schema.NonEmptyString;
|
|
56
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
57
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
58
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
59
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
60
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
61
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
62
|
+
}>, Schema.Struct<{
|
|
63
|
+
readonly type: Schema.Literal<"bitbucket">;
|
|
64
|
+
readonly sourceType: Schema.Literal<"bitbucket">;
|
|
65
|
+
readonly sourceName: Schema.String;
|
|
66
|
+
readonly endpoint: Schema.URLFromString;
|
|
67
|
+
readonly extensionType: Schema.Literal<"skill">;
|
|
68
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
69
|
+
readonly packageFormat: Schema.Literals<readonly ["agentxm", "agent-skill"]>;
|
|
70
|
+
readonly packageOwner: Schema.optional<Schema.brand<Schema.String, "Handle">>;
|
|
71
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
72
|
+
readonly owner: Schema.NonEmptyString;
|
|
73
|
+
readonly repo: Schema.NonEmptyString;
|
|
74
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
75
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
76
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
77
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
78
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
79
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
80
|
+
}>, Schema.Struct<{
|
|
81
|
+
readonly type: Schema.Literal<"azurerepos">;
|
|
82
|
+
readonly sourceType: Schema.Literal<"azurerepos">;
|
|
83
|
+
readonly sourceName: Schema.String;
|
|
84
|
+
readonly endpoint: Schema.URLFromString;
|
|
85
|
+
readonly extensionType: Schema.Literal<"skill">;
|
|
86
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
87
|
+
readonly packageFormat: Schema.Literals<readonly ["agentxm", "agent-skill"]>;
|
|
88
|
+
readonly packageOwner: Schema.optional<Schema.brand<Schema.String, "Handle">>;
|
|
89
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
90
|
+
readonly organization: Schema.NonEmptyString;
|
|
91
|
+
readonly project: Schema.NonEmptyString;
|
|
92
|
+
readonly repo: Schema.NonEmptyString;
|
|
93
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
94
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
95
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
96
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
97
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
98
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
99
|
+
}>, Schema.Struct<{
|
|
100
|
+
readonly type: Schema.Literal<"git">;
|
|
101
|
+
readonly sourceType: Schema.Literal<"git">;
|
|
102
|
+
readonly sourceName: Schema.Literal<"git">;
|
|
103
|
+
readonly extensionType: Schema.Literal<"skill">;
|
|
104
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
105
|
+
readonly packageFormat: Schema.Literals<readonly ["agentxm", "agent-skill"]>;
|
|
106
|
+
readonly packageOwner: Schema.optional<Schema.brand<Schema.String, "Handle">>;
|
|
107
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
108
|
+
readonly url: Schema.String;
|
|
109
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
110
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
111
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
112
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
113
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
114
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
115
|
+
}>, Schema.Struct<{
|
|
116
|
+
readonly type: Schema.Literal<"local">;
|
|
117
|
+
readonly sourceType: Schema.Literal<"local">;
|
|
118
|
+
readonly sourceName: Schema.Literal<"local">;
|
|
119
|
+
readonly extensionType: Schema.Literal<"skill">;
|
|
120
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
121
|
+
readonly packageFormat: Schema.Literals<readonly ["agentxm", "agent-skill"]>;
|
|
122
|
+
readonly packageOwner: Schema.optional<Schema.brand<Schema.String, "Handle">>;
|
|
123
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
124
|
+
readonly path: Schema.String;
|
|
125
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
126
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
127
|
+
}>, Schema.Struct<{
|
|
128
|
+
readonly type: Schema.Literal<"registry">;
|
|
129
|
+
readonly sourceType: Schema.Literal<"registry">;
|
|
130
|
+
readonly endpoint: Schema.URLFromString;
|
|
131
|
+
readonly extensionType: Schema.Literal<"skill">;
|
|
132
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
133
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
134
|
+
readonly owner: Schema.brand<Schema.String, "Handle">;
|
|
135
|
+
readonly name: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
136
|
+
readonly resolvedVersion: Schema.brand<Schema.String, "Version">;
|
|
137
|
+
readonly integrity: Schema.String;
|
|
138
|
+
readonly sourceName: Schema.String;
|
|
139
|
+
readonly publisherBindingId: Schema.NonEmptyString;
|
|
140
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
141
|
+
}>]>;
|
|
142
|
+
/**
|
|
143
|
+
* Inferred type for SkillLockEntry schema.
|
|
144
|
+
*
|
|
145
|
+
* @experimental This API is unstable and may change without notice.
|
|
146
|
+
*/
|
|
147
|
+
export type SkillLockEntry = Schema.Schema.Type<typeof SkillLockEntrySchema>;
|
|
148
|
+
/**
|
|
149
|
+
* Map of skill names to their lock entries.
|
|
150
|
+
* Skill names are simple identifiers (not FQN patterns).
|
|
151
|
+
*
|
|
152
|
+
* @experimental This API is unstable and may change without notice.
|
|
153
|
+
*/
|
|
154
|
+
export declare const SkillsLockMapSchema: Schema.$Record<Schema.String, Schema.Union<readonly [Schema.Struct<{
|
|
155
|
+
readonly type: Schema.Literal<"github">;
|
|
156
|
+
readonly sourceType: Schema.Literal<"github">;
|
|
157
|
+
readonly sourceName: Schema.String;
|
|
158
|
+
readonly endpoint: Schema.URLFromString;
|
|
159
|
+
readonly extensionType: Schema.Literal<"skill">;
|
|
160
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
161
|
+
readonly packageFormat: Schema.Literals<readonly ["agentxm", "agent-skill"]>;
|
|
162
|
+
readonly packageOwner: Schema.optional<Schema.brand<Schema.String, "Handle">>;
|
|
163
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
164
|
+
readonly owner: Schema.NonEmptyString;
|
|
165
|
+
readonly repo: Schema.NonEmptyString;
|
|
166
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
167
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
168
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
169
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
170
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
171
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
172
|
+
}>, Schema.Struct<{
|
|
173
|
+
readonly type: Schema.Literal<"gitlab">;
|
|
174
|
+
readonly sourceType: Schema.Literal<"gitlab">;
|
|
175
|
+
readonly sourceName: Schema.String;
|
|
176
|
+
readonly endpoint: Schema.URLFromString;
|
|
177
|
+
readonly extensionType: Schema.Literal<"skill">;
|
|
178
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
179
|
+
readonly packageFormat: Schema.Literals<readonly ["agentxm", "agent-skill"]>;
|
|
180
|
+
readonly packageOwner: Schema.optional<Schema.brand<Schema.String, "Handle">>;
|
|
181
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
182
|
+
readonly owner: Schema.NonEmptyString;
|
|
183
|
+
readonly repo: Schema.NonEmptyString;
|
|
184
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
185
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
186
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
187
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
188
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
189
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
190
|
+
}>, Schema.Struct<{
|
|
191
|
+
readonly type: Schema.Literal<"bitbucket">;
|
|
192
|
+
readonly sourceType: Schema.Literal<"bitbucket">;
|
|
193
|
+
readonly sourceName: Schema.String;
|
|
194
|
+
readonly endpoint: Schema.URLFromString;
|
|
195
|
+
readonly extensionType: Schema.Literal<"skill">;
|
|
196
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
197
|
+
readonly packageFormat: Schema.Literals<readonly ["agentxm", "agent-skill"]>;
|
|
198
|
+
readonly packageOwner: Schema.optional<Schema.brand<Schema.String, "Handle">>;
|
|
199
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
200
|
+
readonly owner: Schema.NonEmptyString;
|
|
201
|
+
readonly repo: Schema.NonEmptyString;
|
|
202
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
203
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
204
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
205
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
206
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
207
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
208
|
+
}>, Schema.Struct<{
|
|
209
|
+
readonly type: Schema.Literal<"azurerepos">;
|
|
210
|
+
readonly sourceType: Schema.Literal<"azurerepos">;
|
|
211
|
+
readonly sourceName: Schema.String;
|
|
212
|
+
readonly endpoint: Schema.URLFromString;
|
|
213
|
+
readonly extensionType: Schema.Literal<"skill">;
|
|
214
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
215
|
+
readonly packageFormat: Schema.Literals<readonly ["agentxm", "agent-skill"]>;
|
|
216
|
+
readonly packageOwner: Schema.optional<Schema.brand<Schema.String, "Handle">>;
|
|
217
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
218
|
+
readonly organization: Schema.NonEmptyString;
|
|
219
|
+
readonly project: Schema.NonEmptyString;
|
|
220
|
+
readonly repo: Schema.NonEmptyString;
|
|
221
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
222
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
223
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
224
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
225
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
226
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
227
|
+
}>, Schema.Struct<{
|
|
228
|
+
readonly type: Schema.Literal<"git">;
|
|
229
|
+
readonly sourceType: Schema.Literal<"git">;
|
|
230
|
+
readonly sourceName: Schema.Literal<"git">;
|
|
231
|
+
readonly extensionType: Schema.Literal<"skill">;
|
|
232
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
233
|
+
readonly packageFormat: Schema.Literals<readonly ["agentxm", "agent-skill"]>;
|
|
234
|
+
readonly packageOwner: Schema.optional<Schema.brand<Schema.String, "Handle">>;
|
|
235
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
236
|
+
readonly url: Schema.String;
|
|
237
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
238
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
239
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
240
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
241
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
242
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
243
|
+
}>, Schema.Struct<{
|
|
244
|
+
readonly type: Schema.Literal<"local">;
|
|
245
|
+
readonly sourceType: Schema.Literal<"local">;
|
|
246
|
+
readonly sourceName: Schema.Literal<"local">;
|
|
247
|
+
readonly extensionType: Schema.Literal<"skill">;
|
|
248
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
249
|
+
readonly packageFormat: Schema.Literals<readonly ["agentxm", "agent-skill"]>;
|
|
250
|
+
readonly packageOwner: Schema.optional<Schema.brand<Schema.String, "Handle">>;
|
|
251
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
252
|
+
readonly path: Schema.String;
|
|
253
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
254
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
255
|
+
}>, Schema.Struct<{
|
|
256
|
+
readonly type: Schema.Literal<"registry">;
|
|
257
|
+
readonly sourceType: Schema.Literal<"registry">;
|
|
258
|
+
readonly endpoint: Schema.URLFromString;
|
|
259
|
+
readonly extensionType: Schema.Literal<"skill">;
|
|
260
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
261
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
262
|
+
readonly owner: Schema.brand<Schema.String, "Handle">;
|
|
263
|
+
readonly name: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
264
|
+
readonly resolvedVersion: Schema.brand<Schema.String, "Version">;
|
|
265
|
+
readonly integrity: Schema.String;
|
|
266
|
+
readonly sourceName: Schema.String;
|
|
267
|
+
readonly publisherBindingId: Schema.NonEmptyString;
|
|
268
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
269
|
+
}>]>>;
|
|
270
|
+
/**
|
|
271
|
+
* Inferred type for SkillsLockMap schema.
|
|
272
|
+
*
|
|
273
|
+
* @experimental This API is unstable and may change without notice.
|
|
274
|
+
*/
|
|
275
|
+
export type SkillsLockMap = Schema.Schema.Type<typeof SkillsLockMapSchema>;
|
|
276
|
+
/**
|
|
277
|
+
* Common fields for subagent lock entries.
|
|
278
|
+
*/
|
|
279
|
+
/**
|
|
280
|
+
* Lock entry for a single installed subagent.
|
|
281
|
+
* Discriminated union by the `type` field.
|
|
282
|
+
*
|
|
283
|
+
* External source entries carry immutable accepted-resolution identity.
|
|
284
|
+
*
|
|
285
|
+
* @experimental This API is unstable and may change without notice.
|
|
286
|
+
*/
|
|
287
|
+
export declare const SubagentLockEntrySchema: Schema.Union<readonly [Schema.Struct<{
|
|
288
|
+
readonly type: Schema.Literal<"github">;
|
|
289
|
+
readonly sourceType: Schema.Literal<"github">;
|
|
290
|
+
readonly sourceName: Schema.String;
|
|
291
|
+
readonly endpoint: Schema.URLFromString;
|
|
292
|
+
readonly extensionType: Schema.Literal<"subagent">;
|
|
293
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
294
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
295
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
296
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
297
|
+
readonly owner: Schema.NonEmptyString;
|
|
298
|
+
readonly repo: Schema.NonEmptyString;
|
|
299
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
300
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
301
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
302
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
303
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
304
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
305
|
+
}>, Schema.Struct<{
|
|
306
|
+
readonly type: Schema.Literal<"gitlab">;
|
|
307
|
+
readonly sourceType: Schema.Literal<"gitlab">;
|
|
308
|
+
readonly sourceName: Schema.String;
|
|
309
|
+
readonly endpoint: Schema.URLFromString;
|
|
310
|
+
readonly extensionType: Schema.Literal<"subagent">;
|
|
311
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
312
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
313
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
314
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
315
|
+
readonly owner: Schema.NonEmptyString;
|
|
316
|
+
readonly repo: Schema.NonEmptyString;
|
|
317
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
318
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
319
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
320
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
321
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
322
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
323
|
+
}>, Schema.Struct<{
|
|
324
|
+
readonly type: Schema.Literal<"bitbucket">;
|
|
325
|
+
readonly sourceType: Schema.Literal<"bitbucket">;
|
|
326
|
+
readonly sourceName: Schema.String;
|
|
327
|
+
readonly endpoint: Schema.URLFromString;
|
|
328
|
+
readonly extensionType: Schema.Literal<"subagent">;
|
|
329
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
330
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
331
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
332
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
333
|
+
readonly owner: Schema.NonEmptyString;
|
|
334
|
+
readonly repo: Schema.NonEmptyString;
|
|
335
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
336
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
337
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
338
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
339
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
340
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
341
|
+
}>, Schema.Struct<{
|
|
342
|
+
readonly type: Schema.Literal<"azurerepos">;
|
|
343
|
+
readonly sourceType: Schema.Literal<"azurerepos">;
|
|
344
|
+
readonly sourceName: Schema.String;
|
|
345
|
+
readonly endpoint: Schema.URLFromString;
|
|
346
|
+
readonly extensionType: Schema.Literal<"subagent">;
|
|
347
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
348
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
349
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
350
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
351
|
+
readonly organization: Schema.NonEmptyString;
|
|
352
|
+
readonly project: Schema.NonEmptyString;
|
|
353
|
+
readonly repo: Schema.NonEmptyString;
|
|
354
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
355
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
356
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
357
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
358
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
359
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
360
|
+
}>, Schema.Struct<{
|
|
361
|
+
readonly type: Schema.Literal<"git">;
|
|
362
|
+
readonly sourceType: Schema.Literal<"git">;
|
|
363
|
+
readonly sourceName: Schema.Literal<"git">;
|
|
364
|
+
readonly extensionType: Schema.Literal<"subagent">;
|
|
365
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
366
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
367
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
368
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
369
|
+
readonly url: Schema.String;
|
|
370
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
371
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
372
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
373
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
374
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
375
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
376
|
+
}>, Schema.Struct<{
|
|
377
|
+
readonly type: Schema.Literal<"local">;
|
|
378
|
+
readonly sourceType: Schema.Literal<"local">;
|
|
379
|
+
readonly sourceName: Schema.Literal<"local">;
|
|
380
|
+
readonly extensionType: Schema.Literal<"subagent">;
|
|
381
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
382
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
383
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
384
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
385
|
+
readonly path: Schema.String;
|
|
386
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
387
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
388
|
+
}>, Schema.Struct<{
|
|
389
|
+
readonly type: Schema.Literal<"registry">;
|
|
390
|
+
readonly sourceType: Schema.Literal<"registry">;
|
|
391
|
+
readonly endpoint: Schema.URLFromString;
|
|
392
|
+
readonly extensionType: Schema.Literal<"subagent">;
|
|
393
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
394
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
395
|
+
readonly owner: Schema.brand<Schema.String, "Handle">;
|
|
396
|
+
readonly name: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
397
|
+
readonly resolvedVersion: Schema.brand<Schema.String, "Version">;
|
|
398
|
+
readonly integrity: Schema.String;
|
|
399
|
+
readonly sourceName: Schema.String;
|
|
400
|
+
readonly publisherBindingId: Schema.NonEmptyString;
|
|
401
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
402
|
+
}>]>;
|
|
403
|
+
/**
|
|
404
|
+
* Inferred type for SubagentLockEntry schema.
|
|
405
|
+
*
|
|
406
|
+
* @experimental This API is unstable and may change without notice.
|
|
407
|
+
*/
|
|
408
|
+
export type SubagentLockEntry = Schema.Schema.Type<typeof SubagentLockEntrySchema>;
|
|
409
|
+
/**
|
|
410
|
+
* Map of subagent names to their lock entries.
|
|
411
|
+
*
|
|
412
|
+
* @experimental This API is unstable and may change without notice.
|
|
413
|
+
*/
|
|
414
|
+
export declare const SubagentsLockMapSchema: Schema.$Record<Schema.String, Schema.Union<readonly [Schema.Struct<{
|
|
415
|
+
readonly type: Schema.Literal<"github">;
|
|
416
|
+
readonly sourceType: Schema.Literal<"github">;
|
|
417
|
+
readonly sourceName: Schema.String;
|
|
418
|
+
readonly endpoint: Schema.URLFromString;
|
|
419
|
+
readonly extensionType: Schema.Literal<"subagent">;
|
|
420
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
421
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
422
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
423
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
424
|
+
readonly owner: Schema.NonEmptyString;
|
|
425
|
+
readonly repo: Schema.NonEmptyString;
|
|
426
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
427
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
428
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
429
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
430
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
431
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
432
|
+
}>, Schema.Struct<{
|
|
433
|
+
readonly type: Schema.Literal<"gitlab">;
|
|
434
|
+
readonly sourceType: Schema.Literal<"gitlab">;
|
|
435
|
+
readonly sourceName: Schema.String;
|
|
436
|
+
readonly endpoint: Schema.URLFromString;
|
|
437
|
+
readonly extensionType: Schema.Literal<"subagent">;
|
|
438
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
439
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
440
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
441
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
442
|
+
readonly owner: Schema.NonEmptyString;
|
|
443
|
+
readonly repo: Schema.NonEmptyString;
|
|
444
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
445
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
446
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
447
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
448
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
449
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
450
|
+
}>, Schema.Struct<{
|
|
451
|
+
readonly type: Schema.Literal<"bitbucket">;
|
|
452
|
+
readonly sourceType: Schema.Literal<"bitbucket">;
|
|
453
|
+
readonly sourceName: Schema.String;
|
|
454
|
+
readonly endpoint: Schema.URLFromString;
|
|
455
|
+
readonly extensionType: Schema.Literal<"subagent">;
|
|
456
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
457
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
458
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
459
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
460
|
+
readonly owner: Schema.NonEmptyString;
|
|
461
|
+
readonly repo: Schema.NonEmptyString;
|
|
462
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
463
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
464
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
465
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
466
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
467
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
468
|
+
}>, Schema.Struct<{
|
|
469
|
+
readonly type: Schema.Literal<"azurerepos">;
|
|
470
|
+
readonly sourceType: Schema.Literal<"azurerepos">;
|
|
471
|
+
readonly sourceName: Schema.String;
|
|
472
|
+
readonly endpoint: Schema.URLFromString;
|
|
473
|
+
readonly extensionType: Schema.Literal<"subagent">;
|
|
474
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
475
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
476
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
477
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
478
|
+
readonly organization: Schema.NonEmptyString;
|
|
479
|
+
readonly project: Schema.NonEmptyString;
|
|
480
|
+
readonly repo: Schema.NonEmptyString;
|
|
481
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
482
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
483
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
484
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
485
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
486
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
487
|
+
}>, Schema.Struct<{
|
|
488
|
+
readonly type: Schema.Literal<"git">;
|
|
489
|
+
readonly sourceType: Schema.Literal<"git">;
|
|
490
|
+
readonly sourceName: Schema.Literal<"git">;
|
|
491
|
+
readonly extensionType: Schema.Literal<"subagent">;
|
|
492
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
493
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
494
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
495
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
496
|
+
readonly url: Schema.String;
|
|
497
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
498
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
499
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
500
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
501
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
502
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
503
|
+
}>, Schema.Struct<{
|
|
504
|
+
readonly type: Schema.Literal<"local">;
|
|
505
|
+
readonly sourceType: Schema.Literal<"local">;
|
|
506
|
+
readonly sourceName: Schema.Literal<"local">;
|
|
507
|
+
readonly extensionType: Schema.Literal<"subagent">;
|
|
508
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
509
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
510
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
511
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
512
|
+
readonly path: Schema.String;
|
|
513
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
514
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
515
|
+
}>, Schema.Struct<{
|
|
516
|
+
readonly type: Schema.Literal<"registry">;
|
|
517
|
+
readonly sourceType: Schema.Literal<"registry">;
|
|
518
|
+
readonly endpoint: Schema.URLFromString;
|
|
519
|
+
readonly extensionType: Schema.Literal<"subagent">;
|
|
520
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
521
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
522
|
+
readonly owner: Schema.brand<Schema.String, "Handle">;
|
|
523
|
+
readonly name: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
524
|
+
readonly resolvedVersion: Schema.brand<Schema.String, "Version">;
|
|
525
|
+
readonly integrity: Schema.String;
|
|
526
|
+
readonly sourceName: Schema.String;
|
|
527
|
+
readonly publisherBindingId: Schema.NonEmptyString;
|
|
528
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
529
|
+
}>]>>;
|
|
530
|
+
/**
|
|
531
|
+
* Inferred type for SubagentsLockMap schema.
|
|
532
|
+
*
|
|
533
|
+
* @experimental This API is unstable and may change without notice.
|
|
534
|
+
*/
|
|
535
|
+
export type SubagentsLockMap = Schema.Schema.Type<typeof SubagentsLockMapSchema>;
|
|
536
|
+
/**
|
|
537
|
+
* Lock entry for a single installed MCP server.
|
|
538
|
+
* Discriminated union by the `type` field.
|
|
539
|
+
*
|
|
540
|
+
* Same structure as SkillLockEntry but without the `agents` field.
|
|
541
|
+
*
|
|
542
|
+
* External source entries carry immutable accepted-resolution identity. Inline
|
|
543
|
+
* servers are authored settings and therefore have no lock row.
|
|
544
|
+
*
|
|
545
|
+
* @experimental This API is unstable and may change without notice.
|
|
546
|
+
*/
|
|
547
|
+
export declare const McpServerLockEntrySchema: Schema.Union<readonly [Schema.Struct<{
|
|
548
|
+
readonly type: Schema.Literal<"github">;
|
|
549
|
+
readonly sourceType: Schema.Literal<"github">;
|
|
550
|
+
readonly sourceName: Schema.String;
|
|
551
|
+
readonly endpoint: Schema.URLFromString;
|
|
552
|
+
readonly extensionType: Schema.Literal<"mcp-server">;
|
|
553
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
554
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
555
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
556
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
557
|
+
readonly owner: Schema.NonEmptyString;
|
|
558
|
+
readonly repo: Schema.NonEmptyString;
|
|
559
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
560
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
561
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
562
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
563
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
564
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
565
|
+
}>, Schema.Struct<{
|
|
566
|
+
readonly type: Schema.Literal<"gitlab">;
|
|
567
|
+
readonly sourceType: Schema.Literal<"gitlab">;
|
|
568
|
+
readonly sourceName: Schema.String;
|
|
569
|
+
readonly endpoint: Schema.URLFromString;
|
|
570
|
+
readonly extensionType: Schema.Literal<"mcp-server">;
|
|
571
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
572
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
573
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
574
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
575
|
+
readonly owner: Schema.NonEmptyString;
|
|
576
|
+
readonly repo: Schema.NonEmptyString;
|
|
577
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
578
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
579
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
580
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
581
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
582
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
583
|
+
}>, Schema.Struct<{
|
|
584
|
+
readonly type: Schema.Literal<"bitbucket">;
|
|
585
|
+
readonly sourceType: Schema.Literal<"bitbucket">;
|
|
586
|
+
readonly sourceName: Schema.String;
|
|
587
|
+
readonly endpoint: Schema.URLFromString;
|
|
588
|
+
readonly extensionType: Schema.Literal<"mcp-server">;
|
|
589
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
590
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
591
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
592
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
593
|
+
readonly owner: Schema.NonEmptyString;
|
|
594
|
+
readonly repo: Schema.NonEmptyString;
|
|
595
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
596
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
597
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
598
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
599
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
600
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
601
|
+
}>, Schema.Struct<{
|
|
602
|
+
readonly type: Schema.Literal<"azurerepos">;
|
|
603
|
+
readonly sourceType: Schema.Literal<"azurerepos">;
|
|
604
|
+
readonly sourceName: Schema.String;
|
|
605
|
+
readonly endpoint: Schema.URLFromString;
|
|
606
|
+
readonly extensionType: Schema.Literal<"mcp-server">;
|
|
607
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
608
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
609
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
610
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
611
|
+
readonly organization: Schema.NonEmptyString;
|
|
612
|
+
readonly project: Schema.NonEmptyString;
|
|
613
|
+
readonly repo: Schema.NonEmptyString;
|
|
614
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
615
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
616
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
617
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
618
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
619
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
620
|
+
}>, Schema.Struct<{
|
|
621
|
+
readonly type: Schema.Literal<"git">;
|
|
622
|
+
readonly sourceType: Schema.Literal<"git">;
|
|
623
|
+
readonly sourceName: Schema.Literal<"git">;
|
|
624
|
+
readonly extensionType: Schema.Literal<"mcp-server">;
|
|
625
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
626
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
627
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
628
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
629
|
+
readonly url: Schema.String;
|
|
630
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
631
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
632
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
633
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
634
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
635
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
636
|
+
}>, Schema.Struct<{
|
|
637
|
+
readonly type: Schema.Literal<"local">;
|
|
638
|
+
readonly sourceType: Schema.Literal<"local">;
|
|
639
|
+
readonly sourceName: Schema.Literal<"local">;
|
|
640
|
+
readonly extensionType: Schema.Literal<"mcp-server">;
|
|
641
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
642
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
643
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
644
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
645
|
+
readonly path: Schema.String;
|
|
646
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
647
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
648
|
+
}>, Schema.Struct<{
|
|
649
|
+
readonly type: Schema.Literal<"registry">;
|
|
650
|
+
readonly sourceType: Schema.Literal<"registry">;
|
|
651
|
+
readonly endpoint: Schema.URLFromString;
|
|
652
|
+
readonly extensionType: Schema.Literal<"mcp-server">;
|
|
653
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
654
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
655
|
+
readonly owner: Schema.brand<Schema.String, "Handle">;
|
|
656
|
+
readonly name: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
657
|
+
readonly resolvedVersion: Schema.brand<Schema.String, "Version">;
|
|
658
|
+
readonly integrity: Schema.String;
|
|
659
|
+
readonly sourceName: Schema.String;
|
|
660
|
+
readonly publisherBindingId: Schema.NonEmptyString;
|
|
661
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
662
|
+
}>]>;
|
|
663
|
+
/**
|
|
664
|
+
* Inferred type for McpServerLockEntry schema.
|
|
665
|
+
*
|
|
666
|
+
* @experimental This API is unstable and may change without notice.
|
|
667
|
+
*/
|
|
668
|
+
export type McpServerLockEntry = Schema.Schema.Type<typeof McpServerLockEntrySchema>;
|
|
669
|
+
/**
|
|
670
|
+
* Map of MCP server names to their lock entries.
|
|
671
|
+
*
|
|
672
|
+
* @experimental This API is unstable and may change without notice.
|
|
673
|
+
*/
|
|
674
|
+
export declare const McpServersLockMapSchema: Schema.$Record<Schema.String, Schema.Union<readonly [Schema.Struct<{
|
|
675
|
+
readonly type: Schema.Literal<"github">;
|
|
676
|
+
readonly sourceType: Schema.Literal<"github">;
|
|
677
|
+
readonly sourceName: Schema.String;
|
|
678
|
+
readonly endpoint: Schema.URLFromString;
|
|
679
|
+
readonly extensionType: Schema.Literal<"mcp-server">;
|
|
680
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
681
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
682
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
683
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
684
|
+
readonly owner: Schema.NonEmptyString;
|
|
685
|
+
readonly repo: Schema.NonEmptyString;
|
|
686
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
687
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
688
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
689
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
690
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
691
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
692
|
+
}>, Schema.Struct<{
|
|
693
|
+
readonly type: Schema.Literal<"gitlab">;
|
|
694
|
+
readonly sourceType: Schema.Literal<"gitlab">;
|
|
695
|
+
readonly sourceName: Schema.String;
|
|
696
|
+
readonly endpoint: Schema.URLFromString;
|
|
697
|
+
readonly extensionType: Schema.Literal<"mcp-server">;
|
|
698
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
699
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
700
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
701
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
702
|
+
readonly owner: Schema.NonEmptyString;
|
|
703
|
+
readonly repo: Schema.NonEmptyString;
|
|
704
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
705
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
706
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
707
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
708
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
709
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
710
|
+
}>, Schema.Struct<{
|
|
711
|
+
readonly type: Schema.Literal<"bitbucket">;
|
|
712
|
+
readonly sourceType: Schema.Literal<"bitbucket">;
|
|
713
|
+
readonly sourceName: Schema.String;
|
|
714
|
+
readonly endpoint: Schema.URLFromString;
|
|
715
|
+
readonly extensionType: Schema.Literal<"mcp-server">;
|
|
716
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
717
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
718
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
719
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
720
|
+
readonly owner: Schema.NonEmptyString;
|
|
721
|
+
readonly repo: Schema.NonEmptyString;
|
|
722
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
723
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
724
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
725
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
726
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
727
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
728
|
+
}>, Schema.Struct<{
|
|
729
|
+
readonly type: Schema.Literal<"azurerepos">;
|
|
730
|
+
readonly sourceType: Schema.Literal<"azurerepos">;
|
|
731
|
+
readonly sourceName: Schema.String;
|
|
732
|
+
readonly endpoint: Schema.URLFromString;
|
|
733
|
+
readonly extensionType: Schema.Literal<"mcp-server">;
|
|
734
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
735
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
736
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
737
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
738
|
+
readonly organization: Schema.NonEmptyString;
|
|
739
|
+
readonly project: Schema.NonEmptyString;
|
|
740
|
+
readonly repo: Schema.NonEmptyString;
|
|
741
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
742
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
743
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
744
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
745
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
746
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
747
|
+
}>, Schema.Struct<{
|
|
748
|
+
readonly type: Schema.Literal<"git">;
|
|
749
|
+
readonly sourceType: Schema.Literal<"git">;
|
|
750
|
+
readonly sourceName: Schema.Literal<"git">;
|
|
751
|
+
readonly extensionType: Schema.Literal<"mcp-server">;
|
|
752
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
753
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
754
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
755
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
756
|
+
readonly url: Schema.String;
|
|
757
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
758
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
759
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
760
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
761
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
762
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
763
|
+
}>, Schema.Struct<{
|
|
764
|
+
readonly type: Schema.Literal<"local">;
|
|
765
|
+
readonly sourceType: Schema.Literal<"local">;
|
|
766
|
+
readonly sourceName: Schema.Literal<"local">;
|
|
767
|
+
readonly extensionType: Schema.Literal<"mcp-server">;
|
|
768
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
769
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
770
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
771
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
772
|
+
readonly path: Schema.String;
|
|
773
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
774
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
775
|
+
}>, Schema.Struct<{
|
|
776
|
+
readonly type: Schema.Literal<"registry">;
|
|
777
|
+
readonly sourceType: Schema.Literal<"registry">;
|
|
778
|
+
readonly endpoint: Schema.URLFromString;
|
|
779
|
+
readonly extensionType: Schema.Literal<"mcp-server">;
|
|
780
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
781
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
782
|
+
readonly owner: Schema.brand<Schema.String, "Handle">;
|
|
783
|
+
readonly name: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
784
|
+
readonly resolvedVersion: Schema.brand<Schema.String, "Version">;
|
|
785
|
+
readonly integrity: Schema.String;
|
|
786
|
+
readonly sourceName: Schema.String;
|
|
787
|
+
readonly publisherBindingId: Schema.NonEmptyString;
|
|
788
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
789
|
+
}>]>>;
|
|
790
|
+
/**
|
|
791
|
+
* Inferred type for McpServersLockMap schema.
|
|
792
|
+
*
|
|
793
|
+
* @experimental This API is unstable and may change without notice.
|
|
794
|
+
*/
|
|
795
|
+
export type McpServersLockMap = Schema.Schema.Type<typeof McpServersLockMapSchema>;
|
|
796
|
+
/**
|
|
797
|
+
* Materialized file target recorded for rule and hook lifecycle decisions.
|
|
798
|
+
*
|
|
799
|
+
* @experimental This API is unstable and may change without notice.
|
|
800
|
+
*/
|
|
801
|
+
/**
|
|
802
|
+
* Lock entry for a single installed rule.
|
|
803
|
+
*
|
|
804
|
+
* External source entries carry immutable accepted-resolution identity.
|
|
805
|
+
*
|
|
806
|
+
* @experimental This API is unstable and may change without notice.
|
|
807
|
+
*/
|
|
808
|
+
export declare const RuleLockEntrySchema: Schema.Union<readonly [Schema.Struct<{
|
|
809
|
+
readonly type: Schema.Literal<"github">;
|
|
810
|
+
readonly sourceType: Schema.Literal<"github">;
|
|
811
|
+
readonly sourceName: Schema.String;
|
|
812
|
+
readonly endpoint: Schema.URLFromString;
|
|
813
|
+
readonly extensionType: Schema.Literal<"rule">;
|
|
814
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
815
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
816
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
817
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
818
|
+
readonly owner: Schema.NonEmptyString;
|
|
819
|
+
readonly repo: Schema.NonEmptyString;
|
|
820
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
821
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
822
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
823
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
824
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
825
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
826
|
+
}>, Schema.Struct<{
|
|
827
|
+
readonly type: Schema.Literal<"gitlab">;
|
|
828
|
+
readonly sourceType: Schema.Literal<"gitlab">;
|
|
829
|
+
readonly sourceName: Schema.String;
|
|
830
|
+
readonly endpoint: Schema.URLFromString;
|
|
831
|
+
readonly extensionType: Schema.Literal<"rule">;
|
|
832
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
833
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
834
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
835
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
836
|
+
readonly owner: Schema.NonEmptyString;
|
|
837
|
+
readonly repo: Schema.NonEmptyString;
|
|
838
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
839
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
840
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
841
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
842
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
843
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
844
|
+
}>, Schema.Struct<{
|
|
845
|
+
readonly type: Schema.Literal<"bitbucket">;
|
|
846
|
+
readonly sourceType: Schema.Literal<"bitbucket">;
|
|
847
|
+
readonly sourceName: Schema.String;
|
|
848
|
+
readonly endpoint: Schema.URLFromString;
|
|
849
|
+
readonly extensionType: Schema.Literal<"rule">;
|
|
850
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
851
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
852
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
853
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
854
|
+
readonly owner: Schema.NonEmptyString;
|
|
855
|
+
readonly repo: Schema.NonEmptyString;
|
|
856
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
857
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
858
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
859
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
860
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
861
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
862
|
+
}>, Schema.Struct<{
|
|
863
|
+
readonly type: Schema.Literal<"azurerepos">;
|
|
864
|
+
readonly sourceType: Schema.Literal<"azurerepos">;
|
|
865
|
+
readonly sourceName: Schema.String;
|
|
866
|
+
readonly endpoint: Schema.URLFromString;
|
|
867
|
+
readonly extensionType: Schema.Literal<"rule">;
|
|
868
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
869
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
870
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
871
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
872
|
+
readonly organization: Schema.NonEmptyString;
|
|
873
|
+
readonly project: Schema.NonEmptyString;
|
|
874
|
+
readonly repo: Schema.NonEmptyString;
|
|
875
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
876
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
877
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
878
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
879
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
880
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
881
|
+
}>, Schema.Struct<{
|
|
882
|
+
readonly type: Schema.Literal<"git">;
|
|
883
|
+
readonly sourceType: Schema.Literal<"git">;
|
|
884
|
+
readonly sourceName: Schema.Literal<"git">;
|
|
885
|
+
readonly extensionType: Schema.Literal<"rule">;
|
|
886
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
887
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
888
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
889
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
890
|
+
readonly url: Schema.String;
|
|
891
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
892
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
893
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
894
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
895
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
896
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
897
|
+
}>, Schema.Struct<{
|
|
898
|
+
readonly type: Schema.Literal<"local">;
|
|
899
|
+
readonly sourceType: Schema.Literal<"local">;
|
|
900
|
+
readonly sourceName: Schema.Literal<"local">;
|
|
901
|
+
readonly extensionType: Schema.Literal<"rule">;
|
|
902
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
903
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
904
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
905
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
906
|
+
readonly path: Schema.String;
|
|
907
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
908
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
909
|
+
}>, Schema.Struct<{
|
|
910
|
+
readonly type: Schema.Literal<"registry">;
|
|
911
|
+
readonly sourceType: Schema.Literal<"registry">;
|
|
912
|
+
readonly endpoint: Schema.URLFromString;
|
|
913
|
+
readonly extensionType: Schema.Literal<"rule">;
|
|
914
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
915
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
916
|
+
readonly owner: Schema.brand<Schema.String, "Handle">;
|
|
917
|
+
readonly name: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
918
|
+
readonly resolvedVersion: Schema.brand<Schema.String, "Version">;
|
|
919
|
+
readonly integrity: Schema.String;
|
|
920
|
+
readonly sourceName: Schema.String;
|
|
921
|
+
readonly publisherBindingId: Schema.NonEmptyString;
|
|
922
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
923
|
+
}>]>;
|
|
924
|
+
/** @experimental */
|
|
925
|
+
export type RuleLockEntry = Schema.Schema.Type<typeof RuleLockEntrySchema>;
|
|
926
|
+
/**
|
|
927
|
+
* Map of rule names to their lock entries.
|
|
928
|
+
*
|
|
929
|
+
* @experimental This API is unstable and may change without notice.
|
|
930
|
+
*/
|
|
931
|
+
export declare const RulesLockMapSchema: Schema.$Record<Schema.String, Schema.Union<readonly [Schema.Struct<{
|
|
932
|
+
readonly type: Schema.Literal<"github">;
|
|
933
|
+
readonly sourceType: Schema.Literal<"github">;
|
|
934
|
+
readonly sourceName: Schema.String;
|
|
935
|
+
readonly endpoint: Schema.URLFromString;
|
|
936
|
+
readonly extensionType: Schema.Literal<"rule">;
|
|
937
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
938
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
939
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
940
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
941
|
+
readonly owner: Schema.NonEmptyString;
|
|
942
|
+
readonly repo: Schema.NonEmptyString;
|
|
943
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
944
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
945
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
946
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
947
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
948
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
949
|
+
}>, Schema.Struct<{
|
|
950
|
+
readonly type: Schema.Literal<"gitlab">;
|
|
951
|
+
readonly sourceType: Schema.Literal<"gitlab">;
|
|
952
|
+
readonly sourceName: Schema.String;
|
|
953
|
+
readonly endpoint: Schema.URLFromString;
|
|
954
|
+
readonly extensionType: Schema.Literal<"rule">;
|
|
955
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
956
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
957
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
958
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
959
|
+
readonly owner: Schema.NonEmptyString;
|
|
960
|
+
readonly repo: Schema.NonEmptyString;
|
|
961
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
962
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
963
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
964
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
965
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
966
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
967
|
+
}>, Schema.Struct<{
|
|
968
|
+
readonly type: Schema.Literal<"bitbucket">;
|
|
969
|
+
readonly sourceType: Schema.Literal<"bitbucket">;
|
|
970
|
+
readonly sourceName: Schema.String;
|
|
971
|
+
readonly endpoint: Schema.URLFromString;
|
|
972
|
+
readonly extensionType: Schema.Literal<"rule">;
|
|
973
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
974
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
975
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
976
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
977
|
+
readonly owner: Schema.NonEmptyString;
|
|
978
|
+
readonly repo: Schema.NonEmptyString;
|
|
979
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
980
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
981
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
982
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
983
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
984
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
985
|
+
}>, Schema.Struct<{
|
|
986
|
+
readonly type: Schema.Literal<"azurerepos">;
|
|
987
|
+
readonly sourceType: Schema.Literal<"azurerepos">;
|
|
988
|
+
readonly sourceName: Schema.String;
|
|
989
|
+
readonly endpoint: Schema.URLFromString;
|
|
990
|
+
readonly extensionType: Schema.Literal<"rule">;
|
|
991
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
992
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
993
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
994
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
995
|
+
readonly organization: Schema.NonEmptyString;
|
|
996
|
+
readonly project: Schema.NonEmptyString;
|
|
997
|
+
readonly repo: Schema.NonEmptyString;
|
|
998
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
999
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
1000
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
1001
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
1002
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
1003
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1004
|
+
}>, Schema.Struct<{
|
|
1005
|
+
readonly type: Schema.Literal<"git">;
|
|
1006
|
+
readonly sourceType: Schema.Literal<"git">;
|
|
1007
|
+
readonly sourceName: Schema.Literal<"git">;
|
|
1008
|
+
readonly extensionType: Schema.Literal<"rule">;
|
|
1009
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1010
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
1011
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
1012
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1013
|
+
readonly url: Schema.String;
|
|
1014
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
1015
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
1016
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
1017
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
1018
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
1019
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1020
|
+
}>, Schema.Struct<{
|
|
1021
|
+
readonly type: Schema.Literal<"local">;
|
|
1022
|
+
readonly sourceType: Schema.Literal<"local">;
|
|
1023
|
+
readonly sourceName: Schema.Literal<"local">;
|
|
1024
|
+
readonly extensionType: Schema.Literal<"rule">;
|
|
1025
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1026
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
1027
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
1028
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1029
|
+
readonly path: Schema.String;
|
|
1030
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
1031
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1032
|
+
}>, Schema.Struct<{
|
|
1033
|
+
readonly type: Schema.Literal<"registry">;
|
|
1034
|
+
readonly sourceType: Schema.Literal<"registry">;
|
|
1035
|
+
readonly endpoint: Schema.URLFromString;
|
|
1036
|
+
readonly extensionType: Schema.Literal<"rule">;
|
|
1037
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1038
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
1039
|
+
readonly owner: Schema.brand<Schema.String, "Handle">;
|
|
1040
|
+
readonly name: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1041
|
+
readonly resolvedVersion: Schema.brand<Schema.String, "Version">;
|
|
1042
|
+
readonly integrity: Schema.String;
|
|
1043
|
+
readonly sourceName: Schema.String;
|
|
1044
|
+
readonly publisherBindingId: Schema.NonEmptyString;
|
|
1045
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1046
|
+
}>]>>;
|
|
1047
|
+
/** @experimental */
|
|
1048
|
+
export type RulesLockMap = Schema.Schema.Type<typeof RulesLockMapSchema>;
|
|
1049
|
+
/**
|
|
1050
|
+
* Lock entry for a single installed hook.
|
|
1051
|
+
*
|
|
1052
|
+
* External source entries carry immutable accepted-resolution identity.
|
|
1053
|
+
*
|
|
1054
|
+
* @experimental This API is unstable and may change without notice.
|
|
1055
|
+
*/
|
|
1056
|
+
export declare const HookLockEntrySchema: Schema.Union<readonly [Schema.Struct<{
|
|
1057
|
+
readonly type: Schema.Literal<"github">;
|
|
1058
|
+
readonly sourceType: Schema.Literal<"github">;
|
|
1059
|
+
readonly sourceName: Schema.String;
|
|
1060
|
+
readonly endpoint: Schema.URLFromString;
|
|
1061
|
+
readonly extensionType: Schema.Literal<"hook">;
|
|
1062
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1063
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
1064
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
1065
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1066
|
+
readonly owner: Schema.NonEmptyString;
|
|
1067
|
+
readonly repo: Schema.NonEmptyString;
|
|
1068
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
1069
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
1070
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
1071
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
1072
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
1073
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1074
|
+
}>, Schema.Struct<{
|
|
1075
|
+
readonly type: Schema.Literal<"gitlab">;
|
|
1076
|
+
readonly sourceType: Schema.Literal<"gitlab">;
|
|
1077
|
+
readonly sourceName: Schema.String;
|
|
1078
|
+
readonly endpoint: Schema.URLFromString;
|
|
1079
|
+
readonly extensionType: Schema.Literal<"hook">;
|
|
1080
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1081
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
1082
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
1083
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1084
|
+
readonly owner: Schema.NonEmptyString;
|
|
1085
|
+
readonly repo: Schema.NonEmptyString;
|
|
1086
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
1087
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
1088
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
1089
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
1090
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
1091
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1092
|
+
}>, Schema.Struct<{
|
|
1093
|
+
readonly type: Schema.Literal<"bitbucket">;
|
|
1094
|
+
readonly sourceType: Schema.Literal<"bitbucket">;
|
|
1095
|
+
readonly sourceName: Schema.String;
|
|
1096
|
+
readonly endpoint: Schema.URLFromString;
|
|
1097
|
+
readonly extensionType: Schema.Literal<"hook">;
|
|
1098
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1099
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
1100
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
1101
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1102
|
+
readonly owner: Schema.NonEmptyString;
|
|
1103
|
+
readonly repo: Schema.NonEmptyString;
|
|
1104
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
1105
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
1106
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
1107
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
1108
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
1109
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1110
|
+
}>, Schema.Struct<{
|
|
1111
|
+
readonly type: Schema.Literal<"azurerepos">;
|
|
1112
|
+
readonly sourceType: Schema.Literal<"azurerepos">;
|
|
1113
|
+
readonly sourceName: Schema.String;
|
|
1114
|
+
readonly endpoint: Schema.URLFromString;
|
|
1115
|
+
readonly extensionType: Schema.Literal<"hook">;
|
|
1116
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1117
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
1118
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
1119
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1120
|
+
readonly organization: Schema.NonEmptyString;
|
|
1121
|
+
readonly project: Schema.NonEmptyString;
|
|
1122
|
+
readonly repo: Schema.NonEmptyString;
|
|
1123
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
1124
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
1125
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
1126
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
1127
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
1128
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1129
|
+
}>, Schema.Struct<{
|
|
1130
|
+
readonly type: Schema.Literal<"git">;
|
|
1131
|
+
readonly sourceType: Schema.Literal<"git">;
|
|
1132
|
+
readonly sourceName: Schema.Literal<"git">;
|
|
1133
|
+
readonly extensionType: Schema.Literal<"hook">;
|
|
1134
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1135
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
1136
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
1137
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1138
|
+
readonly url: Schema.String;
|
|
1139
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
1140
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
1141
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
1142
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
1143
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
1144
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1145
|
+
}>, Schema.Struct<{
|
|
1146
|
+
readonly type: Schema.Literal<"local">;
|
|
1147
|
+
readonly sourceType: Schema.Literal<"local">;
|
|
1148
|
+
readonly sourceName: Schema.Literal<"local">;
|
|
1149
|
+
readonly extensionType: Schema.Literal<"hook">;
|
|
1150
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1151
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
1152
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
1153
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1154
|
+
readonly path: Schema.String;
|
|
1155
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
1156
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1157
|
+
}>, Schema.Struct<{
|
|
1158
|
+
readonly type: Schema.Literal<"registry">;
|
|
1159
|
+
readonly sourceType: Schema.Literal<"registry">;
|
|
1160
|
+
readonly endpoint: Schema.URLFromString;
|
|
1161
|
+
readonly extensionType: Schema.Literal<"hook">;
|
|
1162
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1163
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
1164
|
+
readonly owner: Schema.brand<Schema.String, "Handle">;
|
|
1165
|
+
readonly name: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1166
|
+
readonly resolvedVersion: Schema.brand<Schema.String, "Version">;
|
|
1167
|
+
readonly integrity: Schema.String;
|
|
1168
|
+
readonly sourceName: Schema.String;
|
|
1169
|
+
readonly publisherBindingId: Schema.NonEmptyString;
|
|
1170
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1171
|
+
}>]>;
|
|
1172
|
+
/** @experimental */
|
|
1173
|
+
export type HookLockEntry = Schema.Schema.Type<typeof HookLockEntrySchema>;
|
|
1174
|
+
/**
|
|
1175
|
+
* Map of hook names to their lock entries.
|
|
1176
|
+
*
|
|
1177
|
+
* @experimental This API is unstable and may change without notice.
|
|
1178
|
+
*/
|
|
1179
|
+
export declare const HooksLockMapSchema: Schema.$Record<Schema.String, Schema.Union<readonly [Schema.Struct<{
|
|
1180
|
+
readonly type: Schema.Literal<"github">;
|
|
1181
|
+
readonly sourceType: Schema.Literal<"github">;
|
|
1182
|
+
readonly sourceName: Schema.String;
|
|
1183
|
+
readonly endpoint: Schema.URLFromString;
|
|
1184
|
+
readonly extensionType: Schema.Literal<"hook">;
|
|
1185
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1186
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
1187
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
1188
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1189
|
+
readonly owner: Schema.NonEmptyString;
|
|
1190
|
+
readonly repo: Schema.NonEmptyString;
|
|
1191
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
1192
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
1193
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
1194
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
1195
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
1196
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1197
|
+
}>, Schema.Struct<{
|
|
1198
|
+
readonly type: Schema.Literal<"gitlab">;
|
|
1199
|
+
readonly sourceType: Schema.Literal<"gitlab">;
|
|
1200
|
+
readonly sourceName: Schema.String;
|
|
1201
|
+
readonly endpoint: Schema.URLFromString;
|
|
1202
|
+
readonly extensionType: Schema.Literal<"hook">;
|
|
1203
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1204
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
1205
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
1206
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1207
|
+
readonly owner: Schema.NonEmptyString;
|
|
1208
|
+
readonly repo: Schema.NonEmptyString;
|
|
1209
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
1210
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
1211
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
1212
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
1213
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
1214
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1215
|
+
}>, Schema.Struct<{
|
|
1216
|
+
readonly type: Schema.Literal<"bitbucket">;
|
|
1217
|
+
readonly sourceType: Schema.Literal<"bitbucket">;
|
|
1218
|
+
readonly sourceName: Schema.String;
|
|
1219
|
+
readonly endpoint: Schema.URLFromString;
|
|
1220
|
+
readonly extensionType: Schema.Literal<"hook">;
|
|
1221
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1222
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
1223
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
1224
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1225
|
+
readonly owner: Schema.NonEmptyString;
|
|
1226
|
+
readonly repo: Schema.NonEmptyString;
|
|
1227
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
1228
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
1229
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
1230
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
1231
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
1232
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1233
|
+
}>, Schema.Struct<{
|
|
1234
|
+
readonly type: Schema.Literal<"azurerepos">;
|
|
1235
|
+
readonly sourceType: Schema.Literal<"azurerepos">;
|
|
1236
|
+
readonly sourceName: Schema.String;
|
|
1237
|
+
readonly endpoint: Schema.URLFromString;
|
|
1238
|
+
readonly extensionType: Schema.Literal<"hook">;
|
|
1239
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1240
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
1241
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
1242
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1243
|
+
readonly organization: Schema.NonEmptyString;
|
|
1244
|
+
readonly project: Schema.NonEmptyString;
|
|
1245
|
+
readonly repo: Schema.NonEmptyString;
|
|
1246
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
1247
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
1248
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
1249
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
1250
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
1251
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1252
|
+
}>, Schema.Struct<{
|
|
1253
|
+
readonly type: Schema.Literal<"git">;
|
|
1254
|
+
readonly sourceType: Schema.Literal<"git">;
|
|
1255
|
+
readonly sourceName: Schema.Literal<"git">;
|
|
1256
|
+
readonly extensionType: Schema.Literal<"hook">;
|
|
1257
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1258
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
1259
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
1260
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1261
|
+
readonly url: Schema.String;
|
|
1262
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
1263
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
1264
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
1265
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
1266
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
1267
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1268
|
+
}>, Schema.Struct<{
|
|
1269
|
+
readonly type: Schema.Literal<"local">;
|
|
1270
|
+
readonly sourceType: Schema.Literal<"local">;
|
|
1271
|
+
readonly sourceName: Schema.Literal<"local">;
|
|
1272
|
+
readonly extensionType: Schema.Literal<"hook">;
|
|
1273
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1274
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
1275
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
1276
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1277
|
+
readonly path: Schema.String;
|
|
1278
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
1279
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1280
|
+
}>, Schema.Struct<{
|
|
1281
|
+
readonly type: Schema.Literal<"registry">;
|
|
1282
|
+
readonly sourceType: Schema.Literal<"registry">;
|
|
1283
|
+
readonly endpoint: Schema.URLFromString;
|
|
1284
|
+
readonly extensionType: Schema.Literal<"hook">;
|
|
1285
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1286
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
1287
|
+
readonly owner: Schema.brand<Schema.String, "Handle">;
|
|
1288
|
+
readonly name: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1289
|
+
readonly resolvedVersion: Schema.brand<Schema.String, "Version">;
|
|
1290
|
+
readonly integrity: Schema.String;
|
|
1291
|
+
readonly sourceName: Schema.String;
|
|
1292
|
+
readonly publisherBindingId: Schema.NonEmptyString;
|
|
1293
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1294
|
+
}>]>>;
|
|
1295
|
+
/** @experimental */
|
|
1296
|
+
export type HooksLockMap = Schema.Schema.Type<typeof HooksLockMapSchema>;
|
|
1297
|
+
/**
|
|
1298
|
+
* Lock entry for a single installed knowledge bundle.
|
|
1299
|
+
*
|
|
1300
|
+
* External source entries carry immutable accepted-resolution identity.
|
|
1301
|
+
*
|
|
1302
|
+
* @experimental This API is unstable and may change without notice.
|
|
1303
|
+
*/
|
|
1304
|
+
export declare const KnowledgeLockEntrySchema: Schema.Union<readonly [Schema.Struct<{
|
|
1305
|
+
readonly type: Schema.Literal<"github">;
|
|
1306
|
+
readonly sourceType: Schema.Literal<"github">;
|
|
1307
|
+
readonly sourceName: Schema.String;
|
|
1308
|
+
readonly endpoint: Schema.URLFromString;
|
|
1309
|
+
readonly extensionType: Schema.Literal<"knowledge">;
|
|
1310
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1311
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
1312
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
1313
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1314
|
+
readonly owner: Schema.NonEmptyString;
|
|
1315
|
+
readonly repo: Schema.NonEmptyString;
|
|
1316
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
1317
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
1318
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
1319
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
1320
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
1321
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1322
|
+
}>, Schema.Struct<{
|
|
1323
|
+
readonly type: Schema.Literal<"gitlab">;
|
|
1324
|
+
readonly sourceType: Schema.Literal<"gitlab">;
|
|
1325
|
+
readonly sourceName: Schema.String;
|
|
1326
|
+
readonly endpoint: Schema.URLFromString;
|
|
1327
|
+
readonly extensionType: Schema.Literal<"knowledge">;
|
|
1328
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1329
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
1330
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
1331
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1332
|
+
readonly owner: Schema.NonEmptyString;
|
|
1333
|
+
readonly repo: Schema.NonEmptyString;
|
|
1334
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
1335
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
1336
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
1337
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
1338
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
1339
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1340
|
+
}>, Schema.Struct<{
|
|
1341
|
+
readonly type: Schema.Literal<"bitbucket">;
|
|
1342
|
+
readonly sourceType: Schema.Literal<"bitbucket">;
|
|
1343
|
+
readonly sourceName: Schema.String;
|
|
1344
|
+
readonly endpoint: Schema.URLFromString;
|
|
1345
|
+
readonly extensionType: Schema.Literal<"knowledge">;
|
|
1346
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1347
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
1348
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
1349
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1350
|
+
readonly owner: Schema.NonEmptyString;
|
|
1351
|
+
readonly repo: Schema.NonEmptyString;
|
|
1352
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
1353
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
1354
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
1355
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
1356
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
1357
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1358
|
+
}>, Schema.Struct<{
|
|
1359
|
+
readonly type: Schema.Literal<"azurerepos">;
|
|
1360
|
+
readonly sourceType: Schema.Literal<"azurerepos">;
|
|
1361
|
+
readonly sourceName: Schema.String;
|
|
1362
|
+
readonly endpoint: Schema.URLFromString;
|
|
1363
|
+
readonly extensionType: Schema.Literal<"knowledge">;
|
|
1364
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1365
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
1366
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
1367
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1368
|
+
readonly organization: Schema.NonEmptyString;
|
|
1369
|
+
readonly project: Schema.NonEmptyString;
|
|
1370
|
+
readonly repo: Schema.NonEmptyString;
|
|
1371
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
1372
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
1373
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
1374
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
1375
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
1376
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1377
|
+
}>, Schema.Struct<{
|
|
1378
|
+
readonly type: Schema.Literal<"git">;
|
|
1379
|
+
readonly sourceType: Schema.Literal<"git">;
|
|
1380
|
+
readonly sourceName: Schema.Literal<"git">;
|
|
1381
|
+
readonly extensionType: Schema.Literal<"knowledge">;
|
|
1382
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1383
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
1384
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
1385
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1386
|
+
readonly url: Schema.String;
|
|
1387
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
1388
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
1389
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
1390
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
1391
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
1392
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1393
|
+
}>, Schema.Struct<{
|
|
1394
|
+
readonly type: Schema.Literal<"local">;
|
|
1395
|
+
readonly sourceType: Schema.Literal<"local">;
|
|
1396
|
+
readonly sourceName: Schema.Literal<"local">;
|
|
1397
|
+
readonly extensionType: Schema.Literal<"knowledge">;
|
|
1398
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1399
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
1400
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
1401
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1402
|
+
readonly path: Schema.String;
|
|
1403
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
1404
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1405
|
+
}>, Schema.Struct<{
|
|
1406
|
+
readonly type: Schema.Literal<"registry">;
|
|
1407
|
+
readonly sourceType: Schema.Literal<"registry">;
|
|
1408
|
+
readonly endpoint: Schema.URLFromString;
|
|
1409
|
+
readonly extensionType: Schema.Literal<"knowledge">;
|
|
1410
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1411
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
1412
|
+
readonly owner: Schema.brand<Schema.String, "Handle">;
|
|
1413
|
+
readonly name: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1414
|
+
readonly resolvedVersion: Schema.brand<Schema.String, "Version">;
|
|
1415
|
+
readonly integrity: Schema.String;
|
|
1416
|
+
readonly sourceName: Schema.String;
|
|
1417
|
+
readonly publisherBindingId: Schema.NonEmptyString;
|
|
1418
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1419
|
+
}>]>;
|
|
1420
|
+
export type KnowledgeLockEntry = Schema.Schema.Type<typeof KnowledgeLockEntrySchema>;
|
|
1421
|
+
export declare const KnowledgeLockMapSchema: Schema.$Record<Schema.String, Schema.Union<readonly [Schema.Struct<{
|
|
1422
|
+
readonly type: Schema.Literal<"github">;
|
|
1423
|
+
readonly sourceType: Schema.Literal<"github">;
|
|
1424
|
+
readonly sourceName: Schema.String;
|
|
1425
|
+
readonly endpoint: Schema.URLFromString;
|
|
1426
|
+
readonly extensionType: Schema.Literal<"knowledge">;
|
|
1427
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1428
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
1429
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
1430
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1431
|
+
readonly owner: Schema.NonEmptyString;
|
|
1432
|
+
readonly repo: Schema.NonEmptyString;
|
|
1433
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
1434
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
1435
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
1436
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
1437
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
1438
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1439
|
+
}>, Schema.Struct<{
|
|
1440
|
+
readonly type: Schema.Literal<"gitlab">;
|
|
1441
|
+
readonly sourceType: Schema.Literal<"gitlab">;
|
|
1442
|
+
readonly sourceName: Schema.String;
|
|
1443
|
+
readonly endpoint: Schema.URLFromString;
|
|
1444
|
+
readonly extensionType: Schema.Literal<"knowledge">;
|
|
1445
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1446
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
1447
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
1448
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1449
|
+
readonly owner: Schema.NonEmptyString;
|
|
1450
|
+
readonly repo: Schema.NonEmptyString;
|
|
1451
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
1452
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
1453
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
1454
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
1455
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
1456
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1457
|
+
}>, Schema.Struct<{
|
|
1458
|
+
readonly type: Schema.Literal<"bitbucket">;
|
|
1459
|
+
readonly sourceType: Schema.Literal<"bitbucket">;
|
|
1460
|
+
readonly sourceName: Schema.String;
|
|
1461
|
+
readonly endpoint: Schema.URLFromString;
|
|
1462
|
+
readonly extensionType: Schema.Literal<"knowledge">;
|
|
1463
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1464
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
1465
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
1466
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1467
|
+
readonly owner: Schema.NonEmptyString;
|
|
1468
|
+
readonly repo: Schema.NonEmptyString;
|
|
1469
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
1470
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
1471
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
1472
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
1473
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
1474
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1475
|
+
}>, Schema.Struct<{
|
|
1476
|
+
readonly type: Schema.Literal<"azurerepos">;
|
|
1477
|
+
readonly sourceType: Schema.Literal<"azurerepos">;
|
|
1478
|
+
readonly sourceName: Schema.String;
|
|
1479
|
+
readonly endpoint: Schema.URLFromString;
|
|
1480
|
+
readonly extensionType: Schema.Literal<"knowledge">;
|
|
1481
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1482
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
1483
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
1484
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1485
|
+
readonly organization: Schema.NonEmptyString;
|
|
1486
|
+
readonly project: Schema.NonEmptyString;
|
|
1487
|
+
readonly repo: Schema.NonEmptyString;
|
|
1488
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
1489
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
1490
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
1491
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
1492
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
1493
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1494
|
+
}>, Schema.Struct<{
|
|
1495
|
+
readonly type: Schema.Literal<"git">;
|
|
1496
|
+
readonly sourceType: Schema.Literal<"git">;
|
|
1497
|
+
readonly sourceName: Schema.Literal<"git">;
|
|
1498
|
+
readonly extensionType: Schema.Literal<"knowledge">;
|
|
1499
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1500
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
1501
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
1502
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1503
|
+
readonly url: Schema.String;
|
|
1504
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
1505
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
1506
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
1507
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
1508
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
1509
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1510
|
+
}>, Schema.Struct<{
|
|
1511
|
+
readonly type: Schema.Literal<"local">;
|
|
1512
|
+
readonly sourceType: Schema.Literal<"local">;
|
|
1513
|
+
readonly sourceName: Schema.Literal<"local">;
|
|
1514
|
+
readonly extensionType: Schema.Literal<"knowledge">;
|
|
1515
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1516
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
1517
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
1518
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1519
|
+
readonly path: Schema.String;
|
|
1520
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
1521
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1522
|
+
}>, Schema.Struct<{
|
|
1523
|
+
readonly type: Schema.Literal<"registry">;
|
|
1524
|
+
readonly sourceType: Schema.Literal<"registry">;
|
|
1525
|
+
readonly endpoint: Schema.URLFromString;
|
|
1526
|
+
readonly extensionType: Schema.Literal<"knowledge">;
|
|
1527
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1528
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
1529
|
+
readonly owner: Schema.brand<Schema.String, "Handle">;
|
|
1530
|
+
readonly name: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1531
|
+
readonly resolvedVersion: Schema.brand<Schema.String, "Version">;
|
|
1532
|
+
readonly integrity: Schema.String;
|
|
1533
|
+
readonly sourceName: Schema.String;
|
|
1534
|
+
readonly publisherBindingId: Schema.NonEmptyString;
|
|
1535
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1536
|
+
}>]>>;
|
|
1537
|
+
export type KnowledgeLockMap = Schema.Schema.Type<typeof KnowledgeLockMapSchema>;
|
|
1538
|
+
/**
|
|
1539
|
+
* Registry pack lock entry - pack from a registry.
|
|
1540
|
+
*
|
|
1541
|
+
* @experimental This API is unstable and may change without notice.
|
|
1542
|
+
*/
|
|
1543
|
+
export declare const RegistryPackLockEntrySchema: Schema.Struct<{
|
|
1544
|
+
readonly type: Schema.Literal<"registry">;
|
|
1545
|
+
readonly sourceType: Schema.Literal<"registry">;
|
|
1546
|
+
readonly endpoint: Schema.URLFromString;
|
|
1547
|
+
readonly extensionType: Schema.Literal<"pack">;
|
|
1548
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1549
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
1550
|
+
readonly owner: Schema.brand<Schema.String, "Handle">;
|
|
1551
|
+
readonly name: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1552
|
+
readonly resolvedVersion: Schema.brand<Schema.String, "Version">;
|
|
1553
|
+
readonly integrity: Schema.String;
|
|
1554
|
+
readonly manifestContentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
1555
|
+
readonly sourceName: Schema.String;
|
|
1556
|
+
readonly publisherBindingId: Schema.NonEmptyString;
|
|
1557
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1558
|
+
}>;
|
|
1559
|
+
/**
|
|
1560
|
+
* Inferred type for RegistryPackLockEntry schema.
|
|
1561
|
+
*
|
|
1562
|
+
* @experimental This API is unstable and may change without notice.
|
|
1563
|
+
*/
|
|
1564
|
+
export type RegistryPackLockEntry = Schema.Schema.Type<typeof RegistryPackLockEntrySchema>;
|
|
1565
|
+
/**
|
|
1566
|
+
* Constructor args for a registry pack lock entry.
|
|
1567
|
+
*
|
|
1568
|
+
* @experimental This API is unstable and may change without notice.
|
|
1569
|
+
*/
|
|
1570
|
+
export type RegistryPackLockEntryArgs = Omit<RegistryPackLockEntry, "type">;
|
|
1571
|
+
/**
|
|
1572
|
+
* Build a registry pack lock entry from typed args.
|
|
1573
|
+
*
|
|
1574
|
+
* @experimental This API is unstable and may change without notice.
|
|
1575
|
+
*/
|
|
1576
|
+
export declare const makeRegistryPackLockEntry: (args: RegistryPackLockEntryArgs) => RegistryPackLockEntry;
|
|
1577
|
+
/**
|
|
1578
|
+
* Lock entry for a single installed pack.
|
|
1579
|
+
*
|
|
1580
|
+
* @experimental This API is unstable and may change without notice.
|
|
1581
|
+
*/
|
|
1582
|
+
export declare const PackLockEntrySchema: Schema.Struct<{
|
|
1583
|
+
readonly type: Schema.Literal<"registry">;
|
|
1584
|
+
readonly sourceType: Schema.Literal<"registry">;
|
|
1585
|
+
readonly endpoint: Schema.URLFromString;
|
|
1586
|
+
readonly extensionType: Schema.Literal<"pack">;
|
|
1587
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1588
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
1589
|
+
readonly owner: Schema.brand<Schema.String, "Handle">;
|
|
1590
|
+
readonly name: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1591
|
+
readonly resolvedVersion: Schema.brand<Schema.String, "Version">;
|
|
1592
|
+
readonly integrity: Schema.String;
|
|
1593
|
+
readonly manifestContentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
1594
|
+
readonly sourceName: Schema.String;
|
|
1595
|
+
readonly publisherBindingId: Schema.NonEmptyString;
|
|
1596
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1597
|
+
}>;
|
|
1598
|
+
/**
|
|
1599
|
+
* Inferred type for PackLockEntry schema.
|
|
1600
|
+
*
|
|
1601
|
+
* @experimental This API is unstable and may change without notice.
|
|
1602
|
+
*/
|
|
1603
|
+
export type PackLockEntry = Schema.Schema.Type<typeof PackLockEntrySchema>;
|
|
1604
|
+
/**
|
|
1605
|
+
* Map of pack names to their lock entries.
|
|
1606
|
+
*
|
|
1607
|
+
* @experimental This API is unstable and may change without notice.
|
|
1608
|
+
*/
|
|
1609
|
+
export declare const PacksLockMapSchema: Schema.$Record<Schema.String, Schema.Struct<{
|
|
1610
|
+
readonly type: Schema.Literal<"registry">;
|
|
1611
|
+
readonly sourceType: Schema.Literal<"registry">;
|
|
1612
|
+
readonly endpoint: Schema.URLFromString;
|
|
1613
|
+
readonly extensionType: Schema.Literal<"pack">;
|
|
1614
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1615
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
1616
|
+
readonly owner: Schema.brand<Schema.String, "Handle">;
|
|
1617
|
+
readonly name: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1618
|
+
readonly resolvedVersion: Schema.brand<Schema.String, "Version">;
|
|
1619
|
+
readonly integrity: Schema.String;
|
|
1620
|
+
readonly manifestContentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
1621
|
+
readonly sourceName: Schema.String;
|
|
1622
|
+
readonly publisherBindingId: Schema.NonEmptyString;
|
|
1623
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1624
|
+
}>>;
|
|
1625
|
+
/**
|
|
1626
|
+
* Inferred type for PacksLockMap schema.
|
|
1627
|
+
*
|
|
1628
|
+
* @experimental This API is unstable and may change without notice.
|
|
1629
|
+
*/
|
|
1630
|
+
export type PacksLockMap = Schema.Schema.Type<typeof PacksLockMapSchema>;
|
|
1631
|
+
/**
|
|
1632
|
+
* Every catalog extension type's lock-entry schema, keyed by type.
|
|
1633
|
+
*
|
|
1634
|
+
* Total by construction: a new extension type fails compile here until its lock
|
|
1635
|
+
* entry exists. The parity conformance suite decodes a synthetic entry through
|
|
1636
|
+
* each schema to check obligations that must hold for every type.
|
|
1637
|
+
*
|
|
1638
|
+
* Packs are excluded — a pack lock entry records resolved members rather than a
|
|
1639
|
+
* single installed source, so it is not shape-comparable with the others.
|
|
1640
|
+
*
|
|
1641
|
+
* @experimental This API is unstable and may change without notice.
|
|
1642
|
+
*/
|
|
1643
|
+
export declare const LOCK_ENTRY_SCHEMA_BY_TYPE: {
|
|
1644
|
+
readonly skill: Schema.Union<readonly [Schema.Struct<{
|
|
1645
|
+
readonly type: Schema.Literal<"github">;
|
|
1646
|
+
readonly sourceType: Schema.Literal<"github">;
|
|
1647
|
+
readonly sourceName: Schema.String;
|
|
1648
|
+
readonly endpoint: Schema.URLFromString;
|
|
1649
|
+
readonly extensionType: Schema.Literal<"skill">;
|
|
1650
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1651
|
+
readonly packageFormat: Schema.Literals<readonly ["agentxm", "agent-skill"]>;
|
|
1652
|
+
readonly packageOwner: Schema.optional<Schema.brand<Schema.String, "Handle">>;
|
|
1653
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1654
|
+
readonly owner: Schema.NonEmptyString;
|
|
1655
|
+
readonly repo: Schema.NonEmptyString;
|
|
1656
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
1657
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
1658
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
1659
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
1660
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
1661
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1662
|
+
}>, Schema.Struct<{
|
|
1663
|
+
readonly type: Schema.Literal<"gitlab">;
|
|
1664
|
+
readonly sourceType: Schema.Literal<"gitlab">;
|
|
1665
|
+
readonly sourceName: Schema.String;
|
|
1666
|
+
readonly endpoint: Schema.URLFromString;
|
|
1667
|
+
readonly extensionType: Schema.Literal<"skill">;
|
|
1668
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1669
|
+
readonly packageFormat: Schema.Literals<readonly ["agentxm", "agent-skill"]>;
|
|
1670
|
+
readonly packageOwner: Schema.optional<Schema.brand<Schema.String, "Handle">>;
|
|
1671
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1672
|
+
readonly owner: Schema.NonEmptyString;
|
|
1673
|
+
readonly repo: Schema.NonEmptyString;
|
|
1674
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
1675
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
1676
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
1677
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
1678
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
1679
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1680
|
+
}>, Schema.Struct<{
|
|
1681
|
+
readonly type: Schema.Literal<"bitbucket">;
|
|
1682
|
+
readonly sourceType: Schema.Literal<"bitbucket">;
|
|
1683
|
+
readonly sourceName: Schema.String;
|
|
1684
|
+
readonly endpoint: Schema.URLFromString;
|
|
1685
|
+
readonly extensionType: Schema.Literal<"skill">;
|
|
1686
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1687
|
+
readonly packageFormat: Schema.Literals<readonly ["agentxm", "agent-skill"]>;
|
|
1688
|
+
readonly packageOwner: Schema.optional<Schema.brand<Schema.String, "Handle">>;
|
|
1689
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1690
|
+
readonly owner: Schema.NonEmptyString;
|
|
1691
|
+
readonly repo: Schema.NonEmptyString;
|
|
1692
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
1693
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
1694
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
1695
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
1696
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
1697
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1698
|
+
}>, Schema.Struct<{
|
|
1699
|
+
readonly type: Schema.Literal<"azurerepos">;
|
|
1700
|
+
readonly sourceType: Schema.Literal<"azurerepos">;
|
|
1701
|
+
readonly sourceName: Schema.String;
|
|
1702
|
+
readonly endpoint: Schema.URLFromString;
|
|
1703
|
+
readonly extensionType: Schema.Literal<"skill">;
|
|
1704
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1705
|
+
readonly packageFormat: Schema.Literals<readonly ["agentxm", "agent-skill"]>;
|
|
1706
|
+
readonly packageOwner: Schema.optional<Schema.brand<Schema.String, "Handle">>;
|
|
1707
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1708
|
+
readonly organization: Schema.NonEmptyString;
|
|
1709
|
+
readonly project: Schema.NonEmptyString;
|
|
1710
|
+
readonly repo: Schema.NonEmptyString;
|
|
1711
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
1712
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
1713
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
1714
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
1715
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
1716
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1717
|
+
}>, Schema.Struct<{
|
|
1718
|
+
readonly type: Schema.Literal<"git">;
|
|
1719
|
+
readonly sourceType: Schema.Literal<"git">;
|
|
1720
|
+
readonly sourceName: Schema.Literal<"git">;
|
|
1721
|
+
readonly extensionType: Schema.Literal<"skill">;
|
|
1722
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1723
|
+
readonly packageFormat: Schema.Literals<readonly ["agentxm", "agent-skill"]>;
|
|
1724
|
+
readonly packageOwner: Schema.optional<Schema.brand<Schema.String, "Handle">>;
|
|
1725
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1726
|
+
readonly url: Schema.String;
|
|
1727
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
1728
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
1729
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
1730
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
1731
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
1732
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1733
|
+
}>, Schema.Struct<{
|
|
1734
|
+
readonly type: Schema.Literal<"local">;
|
|
1735
|
+
readonly sourceType: Schema.Literal<"local">;
|
|
1736
|
+
readonly sourceName: Schema.Literal<"local">;
|
|
1737
|
+
readonly extensionType: Schema.Literal<"skill">;
|
|
1738
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1739
|
+
readonly packageFormat: Schema.Literals<readonly ["agentxm", "agent-skill"]>;
|
|
1740
|
+
readonly packageOwner: Schema.optional<Schema.brand<Schema.String, "Handle">>;
|
|
1741
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1742
|
+
readonly path: Schema.String;
|
|
1743
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
1744
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1745
|
+
}>, Schema.Struct<{
|
|
1746
|
+
readonly type: Schema.Literal<"registry">;
|
|
1747
|
+
readonly sourceType: Schema.Literal<"registry">;
|
|
1748
|
+
readonly endpoint: Schema.URLFromString;
|
|
1749
|
+
readonly extensionType: Schema.Literal<"skill">;
|
|
1750
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1751
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
1752
|
+
readonly owner: Schema.brand<Schema.String, "Handle">;
|
|
1753
|
+
readonly name: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1754
|
+
readonly resolvedVersion: Schema.brand<Schema.String, "Version">;
|
|
1755
|
+
readonly integrity: Schema.String;
|
|
1756
|
+
readonly sourceName: Schema.String;
|
|
1757
|
+
readonly publisherBindingId: Schema.NonEmptyString;
|
|
1758
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1759
|
+
}>]>;
|
|
1760
|
+
readonly "mcp-server": Schema.Union<readonly [Schema.Struct<{
|
|
1761
|
+
readonly type: Schema.Literal<"github">;
|
|
1762
|
+
readonly sourceType: Schema.Literal<"github">;
|
|
1763
|
+
readonly sourceName: Schema.String;
|
|
1764
|
+
readonly endpoint: Schema.URLFromString;
|
|
1765
|
+
readonly extensionType: Schema.Literal<"mcp-server">;
|
|
1766
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1767
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
1768
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
1769
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1770
|
+
readonly owner: Schema.NonEmptyString;
|
|
1771
|
+
readonly repo: Schema.NonEmptyString;
|
|
1772
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
1773
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
1774
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
1775
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
1776
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
1777
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1778
|
+
}>, Schema.Struct<{
|
|
1779
|
+
readonly type: Schema.Literal<"gitlab">;
|
|
1780
|
+
readonly sourceType: Schema.Literal<"gitlab">;
|
|
1781
|
+
readonly sourceName: Schema.String;
|
|
1782
|
+
readonly endpoint: Schema.URLFromString;
|
|
1783
|
+
readonly extensionType: Schema.Literal<"mcp-server">;
|
|
1784
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1785
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
1786
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
1787
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1788
|
+
readonly owner: Schema.NonEmptyString;
|
|
1789
|
+
readonly repo: Schema.NonEmptyString;
|
|
1790
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
1791
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
1792
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
1793
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
1794
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
1795
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1796
|
+
}>, Schema.Struct<{
|
|
1797
|
+
readonly type: Schema.Literal<"bitbucket">;
|
|
1798
|
+
readonly sourceType: Schema.Literal<"bitbucket">;
|
|
1799
|
+
readonly sourceName: Schema.String;
|
|
1800
|
+
readonly endpoint: Schema.URLFromString;
|
|
1801
|
+
readonly extensionType: Schema.Literal<"mcp-server">;
|
|
1802
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1803
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
1804
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
1805
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1806
|
+
readonly owner: Schema.NonEmptyString;
|
|
1807
|
+
readonly repo: Schema.NonEmptyString;
|
|
1808
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
1809
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
1810
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
1811
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
1812
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
1813
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1814
|
+
}>, Schema.Struct<{
|
|
1815
|
+
readonly type: Schema.Literal<"azurerepos">;
|
|
1816
|
+
readonly sourceType: Schema.Literal<"azurerepos">;
|
|
1817
|
+
readonly sourceName: Schema.String;
|
|
1818
|
+
readonly endpoint: Schema.URLFromString;
|
|
1819
|
+
readonly extensionType: Schema.Literal<"mcp-server">;
|
|
1820
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1821
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
1822
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
1823
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1824
|
+
readonly organization: Schema.NonEmptyString;
|
|
1825
|
+
readonly project: Schema.NonEmptyString;
|
|
1826
|
+
readonly repo: Schema.NonEmptyString;
|
|
1827
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
1828
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
1829
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
1830
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
1831
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
1832
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1833
|
+
}>, Schema.Struct<{
|
|
1834
|
+
readonly type: Schema.Literal<"git">;
|
|
1835
|
+
readonly sourceType: Schema.Literal<"git">;
|
|
1836
|
+
readonly sourceName: Schema.Literal<"git">;
|
|
1837
|
+
readonly extensionType: Schema.Literal<"mcp-server">;
|
|
1838
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1839
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
1840
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
1841
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1842
|
+
readonly url: Schema.String;
|
|
1843
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
1844
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
1845
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
1846
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
1847
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
1848
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1849
|
+
}>, Schema.Struct<{
|
|
1850
|
+
readonly type: Schema.Literal<"local">;
|
|
1851
|
+
readonly sourceType: Schema.Literal<"local">;
|
|
1852
|
+
readonly sourceName: Schema.Literal<"local">;
|
|
1853
|
+
readonly extensionType: Schema.Literal<"mcp-server">;
|
|
1854
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1855
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
1856
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
1857
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1858
|
+
readonly path: Schema.String;
|
|
1859
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
1860
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1861
|
+
}>, Schema.Struct<{
|
|
1862
|
+
readonly type: Schema.Literal<"registry">;
|
|
1863
|
+
readonly sourceType: Schema.Literal<"registry">;
|
|
1864
|
+
readonly endpoint: Schema.URLFromString;
|
|
1865
|
+
readonly extensionType: Schema.Literal<"mcp-server">;
|
|
1866
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1867
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
1868
|
+
readonly owner: Schema.brand<Schema.String, "Handle">;
|
|
1869
|
+
readonly name: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1870
|
+
readonly resolvedVersion: Schema.brand<Schema.String, "Version">;
|
|
1871
|
+
readonly integrity: Schema.String;
|
|
1872
|
+
readonly sourceName: Schema.String;
|
|
1873
|
+
readonly publisherBindingId: Schema.NonEmptyString;
|
|
1874
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1875
|
+
}>]>;
|
|
1876
|
+
readonly subagent: Schema.Union<readonly [Schema.Struct<{
|
|
1877
|
+
readonly type: Schema.Literal<"github">;
|
|
1878
|
+
readonly sourceType: Schema.Literal<"github">;
|
|
1879
|
+
readonly sourceName: Schema.String;
|
|
1880
|
+
readonly endpoint: Schema.URLFromString;
|
|
1881
|
+
readonly extensionType: Schema.Literal<"subagent">;
|
|
1882
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1883
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
1884
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
1885
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1886
|
+
readonly owner: Schema.NonEmptyString;
|
|
1887
|
+
readonly repo: Schema.NonEmptyString;
|
|
1888
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
1889
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
1890
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
1891
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
1892
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
1893
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1894
|
+
}>, Schema.Struct<{
|
|
1895
|
+
readonly type: Schema.Literal<"gitlab">;
|
|
1896
|
+
readonly sourceType: Schema.Literal<"gitlab">;
|
|
1897
|
+
readonly sourceName: Schema.String;
|
|
1898
|
+
readonly endpoint: Schema.URLFromString;
|
|
1899
|
+
readonly extensionType: Schema.Literal<"subagent">;
|
|
1900
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1901
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
1902
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
1903
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1904
|
+
readonly owner: Schema.NonEmptyString;
|
|
1905
|
+
readonly repo: Schema.NonEmptyString;
|
|
1906
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
1907
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
1908
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
1909
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
1910
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
1911
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1912
|
+
}>, Schema.Struct<{
|
|
1913
|
+
readonly type: Schema.Literal<"bitbucket">;
|
|
1914
|
+
readonly sourceType: Schema.Literal<"bitbucket">;
|
|
1915
|
+
readonly sourceName: Schema.String;
|
|
1916
|
+
readonly endpoint: Schema.URLFromString;
|
|
1917
|
+
readonly extensionType: Schema.Literal<"subagent">;
|
|
1918
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1919
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
1920
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
1921
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1922
|
+
readonly owner: Schema.NonEmptyString;
|
|
1923
|
+
readonly repo: Schema.NonEmptyString;
|
|
1924
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
1925
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
1926
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
1927
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
1928
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
1929
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1930
|
+
}>, Schema.Struct<{
|
|
1931
|
+
readonly type: Schema.Literal<"azurerepos">;
|
|
1932
|
+
readonly sourceType: Schema.Literal<"azurerepos">;
|
|
1933
|
+
readonly sourceName: Schema.String;
|
|
1934
|
+
readonly endpoint: Schema.URLFromString;
|
|
1935
|
+
readonly extensionType: Schema.Literal<"subagent">;
|
|
1936
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1937
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
1938
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
1939
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1940
|
+
readonly organization: Schema.NonEmptyString;
|
|
1941
|
+
readonly project: Schema.NonEmptyString;
|
|
1942
|
+
readonly repo: Schema.NonEmptyString;
|
|
1943
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
1944
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
1945
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
1946
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
1947
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
1948
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1949
|
+
}>, Schema.Struct<{
|
|
1950
|
+
readonly type: Schema.Literal<"git">;
|
|
1951
|
+
readonly sourceType: Schema.Literal<"git">;
|
|
1952
|
+
readonly sourceName: Schema.Literal<"git">;
|
|
1953
|
+
readonly extensionType: Schema.Literal<"subagent">;
|
|
1954
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1955
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
1956
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
1957
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1958
|
+
readonly url: Schema.String;
|
|
1959
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
1960
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
1961
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
1962
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
1963
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
1964
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1965
|
+
}>, Schema.Struct<{
|
|
1966
|
+
readonly type: Schema.Literal<"local">;
|
|
1967
|
+
readonly sourceType: Schema.Literal<"local">;
|
|
1968
|
+
readonly sourceName: Schema.Literal<"local">;
|
|
1969
|
+
readonly extensionType: Schema.Literal<"subagent">;
|
|
1970
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1971
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
1972
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
1973
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1974
|
+
readonly path: Schema.String;
|
|
1975
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
1976
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1977
|
+
}>, Schema.Struct<{
|
|
1978
|
+
readonly type: Schema.Literal<"registry">;
|
|
1979
|
+
readonly sourceType: Schema.Literal<"registry">;
|
|
1980
|
+
readonly endpoint: Schema.URLFromString;
|
|
1981
|
+
readonly extensionType: Schema.Literal<"subagent">;
|
|
1982
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1983
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
1984
|
+
readonly owner: Schema.brand<Schema.String, "Handle">;
|
|
1985
|
+
readonly name: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1986
|
+
readonly resolvedVersion: Schema.brand<Schema.String, "Version">;
|
|
1987
|
+
readonly integrity: Schema.String;
|
|
1988
|
+
readonly sourceName: Schema.String;
|
|
1989
|
+
readonly publisherBindingId: Schema.NonEmptyString;
|
|
1990
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
1991
|
+
}>]>;
|
|
1992
|
+
readonly rule: Schema.Union<readonly [Schema.Struct<{
|
|
1993
|
+
readonly type: Schema.Literal<"github">;
|
|
1994
|
+
readonly sourceType: Schema.Literal<"github">;
|
|
1995
|
+
readonly sourceName: Schema.String;
|
|
1996
|
+
readonly endpoint: Schema.URLFromString;
|
|
1997
|
+
readonly extensionType: Schema.Literal<"rule">;
|
|
1998
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1999
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2000
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
2001
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2002
|
+
readonly owner: Schema.NonEmptyString;
|
|
2003
|
+
readonly repo: Schema.NonEmptyString;
|
|
2004
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
2005
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
2006
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
2007
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
2008
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2009
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2010
|
+
}>, Schema.Struct<{
|
|
2011
|
+
readonly type: Schema.Literal<"gitlab">;
|
|
2012
|
+
readonly sourceType: Schema.Literal<"gitlab">;
|
|
2013
|
+
readonly sourceName: Schema.String;
|
|
2014
|
+
readonly endpoint: Schema.URLFromString;
|
|
2015
|
+
readonly extensionType: Schema.Literal<"rule">;
|
|
2016
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2017
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2018
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
2019
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2020
|
+
readonly owner: Schema.NonEmptyString;
|
|
2021
|
+
readonly repo: Schema.NonEmptyString;
|
|
2022
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
2023
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
2024
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
2025
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
2026
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2027
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2028
|
+
}>, Schema.Struct<{
|
|
2029
|
+
readonly type: Schema.Literal<"bitbucket">;
|
|
2030
|
+
readonly sourceType: Schema.Literal<"bitbucket">;
|
|
2031
|
+
readonly sourceName: Schema.String;
|
|
2032
|
+
readonly endpoint: Schema.URLFromString;
|
|
2033
|
+
readonly extensionType: Schema.Literal<"rule">;
|
|
2034
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2035
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2036
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
2037
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2038
|
+
readonly owner: Schema.NonEmptyString;
|
|
2039
|
+
readonly repo: Schema.NonEmptyString;
|
|
2040
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
2041
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
2042
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
2043
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
2044
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2045
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2046
|
+
}>, Schema.Struct<{
|
|
2047
|
+
readonly type: Schema.Literal<"azurerepos">;
|
|
2048
|
+
readonly sourceType: Schema.Literal<"azurerepos">;
|
|
2049
|
+
readonly sourceName: Schema.String;
|
|
2050
|
+
readonly endpoint: Schema.URLFromString;
|
|
2051
|
+
readonly extensionType: Schema.Literal<"rule">;
|
|
2052
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2053
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2054
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
2055
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2056
|
+
readonly organization: Schema.NonEmptyString;
|
|
2057
|
+
readonly project: Schema.NonEmptyString;
|
|
2058
|
+
readonly repo: Schema.NonEmptyString;
|
|
2059
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
2060
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
2061
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
2062
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
2063
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2064
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2065
|
+
}>, Schema.Struct<{
|
|
2066
|
+
readonly type: Schema.Literal<"git">;
|
|
2067
|
+
readonly sourceType: Schema.Literal<"git">;
|
|
2068
|
+
readonly sourceName: Schema.Literal<"git">;
|
|
2069
|
+
readonly extensionType: Schema.Literal<"rule">;
|
|
2070
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2071
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2072
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
2073
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2074
|
+
readonly url: Schema.String;
|
|
2075
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
2076
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
2077
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
2078
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
2079
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2080
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2081
|
+
}>, Schema.Struct<{
|
|
2082
|
+
readonly type: Schema.Literal<"local">;
|
|
2083
|
+
readonly sourceType: Schema.Literal<"local">;
|
|
2084
|
+
readonly sourceName: Schema.Literal<"local">;
|
|
2085
|
+
readonly extensionType: Schema.Literal<"rule">;
|
|
2086
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2087
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2088
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
2089
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2090
|
+
readonly path: Schema.String;
|
|
2091
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2092
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2093
|
+
}>, Schema.Struct<{
|
|
2094
|
+
readonly type: Schema.Literal<"registry">;
|
|
2095
|
+
readonly sourceType: Schema.Literal<"registry">;
|
|
2096
|
+
readonly endpoint: Schema.URLFromString;
|
|
2097
|
+
readonly extensionType: Schema.Literal<"rule">;
|
|
2098
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2099
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2100
|
+
readonly owner: Schema.brand<Schema.String, "Handle">;
|
|
2101
|
+
readonly name: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2102
|
+
readonly resolvedVersion: Schema.brand<Schema.String, "Version">;
|
|
2103
|
+
readonly integrity: Schema.String;
|
|
2104
|
+
readonly sourceName: Schema.String;
|
|
2105
|
+
readonly publisherBindingId: Schema.NonEmptyString;
|
|
2106
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2107
|
+
}>]>;
|
|
2108
|
+
readonly hook: Schema.Union<readonly [Schema.Struct<{
|
|
2109
|
+
readonly type: Schema.Literal<"github">;
|
|
2110
|
+
readonly sourceType: Schema.Literal<"github">;
|
|
2111
|
+
readonly sourceName: Schema.String;
|
|
2112
|
+
readonly endpoint: Schema.URLFromString;
|
|
2113
|
+
readonly extensionType: Schema.Literal<"hook">;
|
|
2114
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2115
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2116
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
2117
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2118
|
+
readonly owner: Schema.NonEmptyString;
|
|
2119
|
+
readonly repo: Schema.NonEmptyString;
|
|
2120
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
2121
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
2122
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
2123
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
2124
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2125
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2126
|
+
}>, Schema.Struct<{
|
|
2127
|
+
readonly type: Schema.Literal<"gitlab">;
|
|
2128
|
+
readonly sourceType: Schema.Literal<"gitlab">;
|
|
2129
|
+
readonly sourceName: Schema.String;
|
|
2130
|
+
readonly endpoint: Schema.URLFromString;
|
|
2131
|
+
readonly extensionType: Schema.Literal<"hook">;
|
|
2132
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2133
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2134
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
2135
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2136
|
+
readonly owner: Schema.NonEmptyString;
|
|
2137
|
+
readonly repo: Schema.NonEmptyString;
|
|
2138
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
2139
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
2140
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
2141
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
2142
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2143
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2144
|
+
}>, Schema.Struct<{
|
|
2145
|
+
readonly type: Schema.Literal<"bitbucket">;
|
|
2146
|
+
readonly sourceType: Schema.Literal<"bitbucket">;
|
|
2147
|
+
readonly sourceName: Schema.String;
|
|
2148
|
+
readonly endpoint: Schema.URLFromString;
|
|
2149
|
+
readonly extensionType: Schema.Literal<"hook">;
|
|
2150
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2151
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2152
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
2153
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2154
|
+
readonly owner: Schema.NonEmptyString;
|
|
2155
|
+
readonly repo: Schema.NonEmptyString;
|
|
2156
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
2157
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
2158
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
2159
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
2160
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2161
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2162
|
+
}>, Schema.Struct<{
|
|
2163
|
+
readonly type: Schema.Literal<"azurerepos">;
|
|
2164
|
+
readonly sourceType: Schema.Literal<"azurerepos">;
|
|
2165
|
+
readonly sourceName: Schema.String;
|
|
2166
|
+
readonly endpoint: Schema.URLFromString;
|
|
2167
|
+
readonly extensionType: Schema.Literal<"hook">;
|
|
2168
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2169
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2170
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
2171
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2172
|
+
readonly organization: Schema.NonEmptyString;
|
|
2173
|
+
readonly project: Schema.NonEmptyString;
|
|
2174
|
+
readonly repo: Schema.NonEmptyString;
|
|
2175
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
2176
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
2177
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
2178
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
2179
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2180
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2181
|
+
}>, Schema.Struct<{
|
|
2182
|
+
readonly type: Schema.Literal<"git">;
|
|
2183
|
+
readonly sourceType: Schema.Literal<"git">;
|
|
2184
|
+
readonly sourceName: Schema.Literal<"git">;
|
|
2185
|
+
readonly extensionType: Schema.Literal<"hook">;
|
|
2186
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2187
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2188
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
2189
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2190
|
+
readonly url: Schema.String;
|
|
2191
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
2192
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
2193
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
2194
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
2195
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2196
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2197
|
+
}>, Schema.Struct<{
|
|
2198
|
+
readonly type: Schema.Literal<"local">;
|
|
2199
|
+
readonly sourceType: Schema.Literal<"local">;
|
|
2200
|
+
readonly sourceName: Schema.Literal<"local">;
|
|
2201
|
+
readonly extensionType: Schema.Literal<"hook">;
|
|
2202
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2203
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2204
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
2205
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2206
|
+
readonly path: Schema.String;
|
|
2207
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2208
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2209
|
+
}>, Schema.Struct<{
|
|
2210
|
+
readonly type: Schema.Literal<"registry">;
|
|
2211
|
+
readonly sourceType: Schema.Literal<"registry">;
|
|
2212
|
+
readonly endpoint: Schema.URLFromString;
|
|
2213
|
+
readonly extensionType: Schema.Literal<"hook">;
|
|
2214
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2215
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2216
|
+
readonly owner: Schema.brand<Schema.String, "Handle">;
|
|
2217
|
+
readonly name: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2218
|
+
readonly resolvedVersion: Schema.brand<Schema.String, "Version">;
|
|
2219
|
+
readonly integrity: Schema.String;
|
|
2220
|
+
readonly sourceName: Schema.String;
|
|
2221
|
+
readonly publisherBindingId: Schema.NonEmptyString;
|
|
2222
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2223
|
+
}>]>;
|
|
2224
|
+
readonly knowledge: Schema.Union<readonly [Schema.Struct<{
|
|
2225
|
+
readonly type: Schema.Literal<"github">;
|
|
2226
|
+
readonly sourceType: Schema.Literal<"github">;
|
|
2227
|
+
readonly sourceName: Schema.String;
|
|
2228
|
+
readonly endpoint: Schema.URLFromString;
|
|
2229
|
+
readonly extensionType: Schema.Literal<"knowledge">;
|
|
2230
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2231
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2232
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
2233
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2234
|
+
readonly owner: Schema.NonEmptyString;
|
|
2235
|
+
readonly repo: Schema.NonEmptyString;
|
|
2236
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
2237
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
2238
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
2239
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
2240
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2241
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2242
|
+
}>, Schema.Struct<{
|
|
2243
|
+
readonly type: Schema.Literal<"gitlab">;
|
|
2244
|
+
readonly sourceType: Schema.Literal<"gitlab">;
|
|
2245
|
+
readonly sourceName: Schema.String;
|
|
2246
|
+
readonly endpoint: Schema.URLFromString;
|
|
2247
|
+
readonly extensionType: Schema.Literal<"knowledge">;
|
|
2248
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2249
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2250
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
2251
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2252
|
+
readonly owner: Schema.NonEmptyString;
|
|
2253
|
+
readonly repo: Schema.NonEmptyString;
|
|
2254
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
2255
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
2256
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
2257
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
2258
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2259
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2260
|
+
}>, Schema.Struct<{
|
|
2261
|
+
readonly type: Schema.Literal<"bitbucket">;
|
|
2262
|
+
readonly sourceType: Schema.Literal<"bitbucket">;
|
|
2263
|
+
readonly sourceName: Schema.String;
|
|
2264
|
+
readonly endpoint: Schema.URLFromString;
|
|
2265
|
+
readonly extensionType: Schema.Literal<"knowledge">;
|
|
2266
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2267
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2268
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
2269
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2270
|
+
readonly owner: Schema.NonEmptyString;
|
|
2271
|
+
readonly repo: Schema.NonEmptyString;
|
|
2272
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
2273
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
2274
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
2275
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
2276
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2277
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2278
|
+
}>, Schema.Struct<{
|
|
2279
|
+
readonly type: Schema.Literal<"azurerepos">;
|
|
2280
|
+
readonly sourceType: Schema.Literal<"azurerepos">;
|
|
2281
|
+
readonly sourceName: Schema.String;
|
|
2282
|
+
readonly endpoint: Schema.URLFromString;
|
|
2283
|
+
readonly extensionType: Schema.Literal<"knowledge">;
|
|
2284
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2285
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2286
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
2287
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2288
|
+
readonly organization: Schema.NonEmptyString;
|
|
2289
|
+
readonly project: Schema.NonEmptyString;
|
|
2290
|
+
readonly repo: Schema.NonEmptyString;
|
|
2291
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
2292
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
2293
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
2294
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
2295
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2296
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2297
|
+
}>, Schema.Struct<{
|
|
2298
|
+
readonly type: Schema.Literal<"git">;
|
|
2299
|
+
readonly sourceType: Schema.Literal<"git">;
|
|
2300
|
+
readonly sourceName: Schema.Literal<"git">;
|
|
2301
|
+
readonly extensionType: Schema.Literal<"knowledge">;
|
|
2302
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2303
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2304
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
2305
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2306
|
+
readonly url: Schema.String;
|
|
2307
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
2308
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
2309
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
2310
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
2311
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2312
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2313
|
+
}>, Schema.Struct<{
|
|
2314
|
+
readonly type: Schema.Literal<"local">;
|
|
2315
|
+
readonly sourceType: Schema.Literal<"local">;
|
|
2316
|
+
readonly sourceName: Schema.Literal<"local">;
|
|
2317
|
+
readonly extensionType: Schema.Literal<"knowledge">;
|
|
2318
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2319
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2320
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
2321
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2322
|
+
readonly path: Schema.String;
|
|
2323
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2324
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2325
|
+
}>, Schema.Struct<{
|
|
2326
|
+
readonly type: Schema.Literal<"registry">;
|
|
2327
|
+
readonly sourceType: Schema.Literal<"registry">;
|
|
2328
|
+
readonly endpoint: Schema.URLFromString;
|
|
2329
|
+
readonly extensionType: Schema.Literal<"knowledge">;
|
|
2330
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2331
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2332
|
+
readonly owner: Schema.brand<Schema.String, "Handle">;
|
|
2333
|
+
readonly name: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2334
|
+
readonly resolvedVersion: Schema.brand<Schema.String, "Version">;
|
|
2335
|
+
readonly integrity: Schema.String;
|
|
2336
|
+
readonly sourceName: Schema.String;
|
|
2337
|
+
readonly publisherBindingId: Schema.NonEmptyString;
|
|
2338
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2339
|
+
}>]>;
|
|
2340
|
+
};
|
|
2341
|
+
export declare const LockfileSchema: Schema.Struct<{
|
|
2342
|
+
readonly lockfileVersion: Schema.Literal<6>;
|
|
2343
|
+
readonly skills: Schema.$Record<Schema.String, Schema.Union<readonly [Schema.Struct<{
|
|
2344
|
+
readonly type: Schema.Literal<"github">;
|
|
2345
|
+
readonly sourceType: Schema.Literal<"github">;
|
|
2346
|
+
readonly sourceName: Schema.String;
|
|
2347
|
+
readonly endpoint: Schema.URLFromString;
|
|
2348
|
+
readonly extensionType: Schema.Literal<"skill">;
|
|
2349
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2350
|
+
readonly packageFormat: Schema.Literals<readonly ["agentxm", "agent-skill"]>;
|
|
2351
|
+
readonly packageOwner: Schema.optional<Schema.brand<Schema.String, "Handle">>;
|
|
2352
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2353
|
+
readonly owner: Schema.NonEmptyString;
|
|
2354
|
+
readonly repo: Schema.NonEmptyString;
|
|
2355
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
2356
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
2357
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
2358
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
2359
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2360
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2361
|
+
}>, Schema.Struct<{
|
|
2362
|
+
readonly type: Schema.Literal<"gitlab">;
|
|
2363
|
+
readonly sourceType: Schema.Literal<"gitlab">;
|
|
2364
|
+
readonly sourceName: Schema.String;
|
|
2365
|
+
readonly endpoint: Schema.URLFromString;
|
|
2366
|
+
readonly extensionType: Schema.Literal<"skill">;
|
|
2367
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2368
|
+
readonly packageFormat: Schema.Literals<readonly ["agentxm", "agent-skill"]>;
|
|
2369
|
+
readonly packageOwner: Schema.optional<Schema.brand<Schema.String, "Handle">>;
|
|
2370
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2371
|
+
readonly owner: Schema.NonEmptyString;
|
|
2372
|
+
readonly repo: Schema.NonEmptyString;
|
|
2373
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
2374
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
2375
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
2376
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
2377
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2378
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2379
|
+
}>, Schema.Struct<{
|
|
2380
|
+
readonly type: Schema.Literal<"bitbucket">;
|
|
2381
|
+
readonly sourceType: Schema.Literal<"bitbucket">;
|
|
2382
|
+
readonly sourceName: Schema.String;
|
|
2383
|
+
readonly endpoint: Schema.URLFromString;
|
|
2384
|
+
readonly extensionType: Schema.Literal<"skill">;
|
|
2385
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2386
|
+
readonly packageFormat: Schema.Literals<readonly ["agentxm", "agent-skill"]>;
|
|
2387
|
+
readonly packageOwner: Schema.optional<Schema.brand<Schema.String, "Handle">>;
|
|
2388
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2389
|
+
readonly owner: Schema.NonEmptyString;
|
|
2390
|
+
readonly repo: Schema.NonEmptyString;
|
|
2391
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
2392
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
2393
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
2394
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
2395
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2396
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2397
|
+
}>, Schema.Struct<{
|
|
2398
|
+
readonly type: Schema.Literal<"azurerepos">;
|
|
2399
|
+
readonly sourceType: Schema.Literal<"azurerepos">;
|
|
2400
|
+
readonly sourceName: Schema.String;
|
|
2401
|
+
readonly endpoint: Schema.URLFromString;
|
|
2402
|
+
readonly extensionType: Schema.Literal<"skill">;
|
|
2403
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2404
|
+
readonly packageFormat: Schema.Literals<readonly ["agentxm", "agent-skill"]>;
|
|
2405
|
+
readonly packageOwner: Schema.optional<Schema.brand<Schema.String, "Handle">>;
|
|
2406
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2407
|
+
readonly organization: Schema.NonEmptyString;
|
|
2408
|
+
readonly project: Schema.NonEmptyString;
|
|
2409
|
+
readonly repo: Schema.NonEmptyString;
|
|
2410
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
2411
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
2412
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
2413
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
2414
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2415
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2416
|
+
}>, Schema.Struct<{
|
|
2417
|
+
readonly type: Schema.Literal<"git">;
|
|
2418
|
+
readonly sourceType: Schema.Literal<"git">;
|
|
2419
|
+
readonly sourceName: Schema.Literal<"git">;
|
|
2420
|
+
readonly extensionType: Schema.Literal<"skill">;
|
|
2421
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2422
|
+
readonly packageFormat: Schema.Literals<readonly ["agentxm", "agent-skill"]>;
|
|
2423
|
+
readonly packageOwner: Schema.optional<Schema.brand<Schema.String, "Handle">>;
|
|
2424
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2425
|
+
readonly url: Schema.String;
|
|
2426
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
2427
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
2428
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
2429
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
2430
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2431
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2432
|
+
}>, Schema.Struct<{
|
|
2433
|
+
readonly type: Schema.Literal<"local">;
|
|
2434
|
+
readonly sourceType: Schema.Literal<"local">;
|
|
2435
|
+
readonly sourceName: Schema.Literal<"local">;
|
|
2436
|
+
readonly extensionType: Schema.Literal<"skill">;
|
|
2437
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2438
|
+
readonly packageFormat: Schema.Literals<readonly ["agentxm", "agent-skill"]>;
|
|
2439
|
+
readonly packageOwner: Schema.optional<Schema.brand<Schema.String, "Handle">>;
|
|
2440
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2441
|
+
readonly path: Schema.String;
|
|
2442
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2443
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2444
|
+
}>, Schema.Struct<{
|
|
2445
|
+
readonly type: Schema.Literal<"registry">;
|
|
2446
|
+
readonly sourceType: Schema.Literal<"registry">;
|
|
2447
|
+
readonly endpoint: Schema.URLFromString;
|
|
2448
|
+
readonly extensionType: Schema.Literal<"skill">;
|
|
2449
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2450
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2451
|
+
readonly owner: Schema.brand<Schema.String, "Handle">;
|
|
2452
|
+
readonly name: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2453
|
+
readonly resolvedVersion: Schema.brand<Schema.String, "Version">;
|
|
2454
|
+
readonly integrity: Schema.String;
|
|
2455
|
+
readonly sourceName: Schema.String;
|
|
2456
|
+
readonly publisherBindingId: Schema.NonEmptyString;
|
|
2457
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2458
|
+
}>]>>;
|
|
2459
|
+
readonly subagents: Schema.optional<Schema.$Record<Schema.String, Schema.Union<readonly [Schema.Struct<{
|
|
2460
|
+
readonly type: Schema.Literal<"github">;
|
|
2461
|
+
readonly sourceType: Schema.Literal<"github">;
|
|
2462
|
+
readonly sourceName: Schema.String;
|
|
2463
|
+
readonly endpoint: Schema.URLFromString;
|
|
2464
|
+
readonly extensionType: Schema.Literal<"subagent">;
|
|
2465
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2466
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2467
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
2468
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2469
|
+
readonly owner: Schema.NonEmptyString;
|
|
2470
|
+
readonly repo: Schema.NonEmptyString;
|
|
2471
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
2472
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
2473
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
2474
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
2475
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2476
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2477
|
+
}>, Schema.Struct<{
|
|
2478
|
+
readonly type: Schema.Literal<"gitlab">;
|
|
2479
|
+
readonly sourceType: Schema.Literal<"gitlab">;
|
|
2480
|
+
readonly sourceName: Schema.String;
|
|
2481
|
+
readonly endpoint: Schema.URLFromString;
|
|
2482
|
+
readonly extensionType: Schema.Literal<"subagent">;
|
|
2483
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2484
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2485
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
2486
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2487
|
+
readonly owner: Schema.NonEmptyString;
|
|
2488
|
+
readonly repo: Schema.NonEmptyString;
|
|
2489
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
2490
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
2491
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
2492
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
2493
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2494
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2495
|
+
}>, Schema.Struct<{
|
|
2496
|
+
readonly type: Schema.Literal<"bitbucket">;
|
|
2497
|
+
readonly sourceType: Schema.Literal<"bitbucket">;
|
|
2498
|
+
readonly sourceName: Schema.String;
|
|
2499
|
+
readonly endpoint: Schema.URLFromString;
|
|
2500
|
+
readonly extensionType: Schema.Literal<"subagent">;
|
|
2501
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2502
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2503
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
2504
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2505
|
+
readonly owner: Schema.NonEmptyString;
|
|
2506
|
+
readonly repo: Schema.NonEmptyString;
|
|
2507
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
2508
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
2509
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
2510
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
2511
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2512
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2513
|
+
}>, Schema.Struct<{
|
|
2514
|
+
readonly type: Schema.Literal<"azurerepos">;
|
|
2515
|
+
readonly sourceType: Schema.Literal<"azurerepos">;
|
|
2516
|
+
readonly sourceName: Schema.String;
|
|
2517
|
+
readonly endpoint: Schema.URLFromString;
|
|
2518
|
+
readonly extensionType: Schema.Literal<"subagent">;
|
|
2519
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2520
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2521
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
2522
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2523
|
+
readonly organization: Schema.NonEmptyString;
|
|
2524
|
+
readonly project: Schema.NonEmptyString;
|
|
2525
|
+
readonly repo: Schema.NonEmptyString;
|
|
2526
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
2527
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
2528
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
2529
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
2530
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2531
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2532
|
+
}>, Schema.Struct<{
|
|
2533
|
+
readonly type: Schema.Literal<"git">;
|
|
2534
|
+
readonly sourceType: Schema.Literal<"git">;
|
|
2535
|
+
readonly sourceName: Schema.Literal<"git">;
|
|
2536
|
+
readonly extensionType: Schema.Literal<"subagent">;
|
|
2537
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2538
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2539
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
2540
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2541
|
+
readonly url: Schema.String;
|
|
2542
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
2543
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
2544
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
2545
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
2546
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2547
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2548
|
+
}>, Schema.Struct<{
|
|
2549
|
+
readonly type: Schema.Literal<"local">;
|
|
2550
|
+
readonly sourceType: Schema.Literal<"local">;
|
|
2551
|
+
readonly sourceName: Schema.Literal<"local">;
|
|
2552
|
+
readonly extensionType: Schema.Literal<"subagent">;
|
|
2553
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2554
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2555
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
2556
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2557
|
+
readonly path: Schema.String;
|
|
2558
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2559
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2560
|
+
}>, Schema.Struct<{
|
|
2561
|
+
readonly type: Schema.Literal<"registry">;
|
|
2562
|
+
readonly sourceType: Schema.Literal<"registry">;
|
|
2563
|
+
readonly endpoint: Schema.URLFromString;
|
|
2564
|
+
readonly extensionType: Schema.Literal<"subagent">;
|
|
2565
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2566
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2567
|
+
readonly owner: Schema.brand<Schema.String, "Handle">;
|
|
2568
|
+
readonly name: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2569
|
+
readonly resolvedVersion: Schema.brand<Schema.String, "Version">;
|
|
2570
|
+
readonly integrity: Schema.String;
|
|
2571
|
+
readonly sourceName: Schema.String;
|
|
2572
|
+
readonly publisherBindingId: Schema.NonEmptyString;
|
|
2573
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2574
|
+
}>]>>>;
|
|
2575
|
+
readonly mcpServers: Schema.optional<Schema.$Record<Schema.String, Schema.Union<readonly [Schema.Struct<{
|
|
2576
|
+
readonly type: Schema.Literal<"github">;
|
|
2577
|
+
readonly sourceType: Schema.Literal<"github">;
|
|
2578
|
+
readonly sourceName: Schema.String;
|
|
2579
|
+
readonly endpoint: Schema.URLFromString;
|
|
2580
|
+
readonly extensionType: Schema.Literal<"mcp-server">;
|
|
2581
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2582
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2583
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
2584
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2585
|
+
readonly owner: Schema.NonEmptyString;
|
|
2586
|
+
readonly repo: Schema.NonEmptyString;
|
|
2587
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
2588
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
2589
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
2590
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
2591
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2592
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2593
|
+
}>, Schema.Struct<{
|
|
2594
|
+
readonly type: Schema.Literal<"gitlab">;
|
|
2595
|
+
readonly sourceType: Schema.Literal<"gitlab">;
|
|
2596
|
+
readonly sourceName: Schema.String;
|
|
2597
|
+
readonly endpoint: Schema.URLFromString;
|
|
2598
|
+
readonly extensionType: Schema.Literal<"mcp-server">;
|
|
2599
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2600
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2601
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
2602
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2603
|
+
readonly owner: Schema.NonEmptyString;
|
|
2604
|
+
readonly repo: Schema.NonEmptyString;
|
|
2605
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
2606
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
2607
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
2608
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
2609
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2610
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2611
|
+
}>, Schema.Struct<{
|
|
2612
|
+
readonly type: Schema.Literal<"bitbucket">;
|
|
2613
|
+
readonly sourceType: Schema.Literal<"bitbucket">;
|
|
2614
|
+
readonly sourceName: Schema.String;
|
|
2615
|
+
readonly endpoint: Schema.URLFromString;
|
|
2616
|
+
readonly extensionType: Schema.Literal<"mcp-server">;
|
|
2617
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2618
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2619
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
2620
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2621
|
+
readonly owner: Schema.NonEmptyString;
|
|
2622
|
+
readonly repo: Schema.NonEmptyString;
|
|
2623
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
2624
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
2625
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
2626
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
2627
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2628
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2629
|
+
}>, Schema.Struct<{
|
|
2630
|
+
readonly type: Schema.Literal<"azurerepos">;
|
|
2631
|
+
readonly sourceType: Schema.Literal<"azurerepos">;
|
|
2632
|
+
readonly sourceName: Schema.String;
|
|
2633
|
+
readonly endpoint: Schema.URLFromString;
|
|
2634
|
+
readonly extensionType: Schema.Literal<"mcp-server">;
|
|
2635
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2636
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2637
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
2638
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2639
|
+
readonly organization: Schema.NonEmptyString;
|
|
2640
|
+
readonly project: Schema.NonEmptyString;
|
|
2641
|
+
readonly repo: Schema.NonEmptyString;
|
|
2642
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
2643
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
2644
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
2645
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
2646
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2647
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2648
|
+
}>, Schema.Struct<{
|
|
2649
|
+
readonly type: Schema.Literal<"git">;
|
|
2650
|
+
readonly sourceType: Schema.Literal<"git">;
|
|
2651
|
+
readonly sourceName: Schema.Literal<"git">;
|
|
2652
|
+
readonly extensionType: Schema.Literal<"mcp-server">;
|
|
2653
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2654
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2655
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
2656
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2657
|
+
readonly url: Schema.String;
|
|
2658
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
2659
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
2660
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
2661
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
2662
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2663
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2664
|
+
}>, Schema.Struct<{
|
|
2665
|
+
readonly type: Schema.Literal<"local">;
|
|
2666
|
+
readonly sourceType: Schema.Literal<"local">;
|
|
2667
|
+
readonly sourceName: Schema.Literal<"local">;
|
|
2668
|
+
readonly extensionType: Schema.Literal<"mcp-server">;
|
|
2669
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2670
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2671
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
2672
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2673
|
+
readonly path: Schema.String;
|
|
2674
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2675
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2676
|
+
}>, Schema.Struct<{
|
|
2677
|
+
readonly type: Schema.Literal<"registry">;
|
|
2678
|
+
readonly sourceType: Schema.Literal<"registry">;
|
|
2679
|
+
readonly endpoint: Schema.URLFromString;
|
|
2680
|
+
readonly extensionType: Schema.Literal<"mcp-server">;
|
|
2681
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2682
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2683
|
+
readonly owner: Schema.brand<Schema.String, "Handle">;
|
|
2684
|
+
readonly name: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2685
|
+
readonly resolvedVersion: Schema.brand<Schema.String, "Version">;
|
|
2686
|
+
readonly integrity: Schema.String;
|
|
2687
|
+
readonly sourceName: Schema.String;
|
|
2688
|
+
readonly publisherBindingId: Schema.NonEmptyString;
|
|
2689
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2690
|
+
}>]>>>;
|
|
2691
|
+
readonly rules: Schema.optional<Schema.$Record<Schema.String, Schema.Union<readonly [Schema.Struct<{
|
|
2692
|
+
readonly type: Schema.Literal<"github">;
|
|
2693
|
+
readonly sourceType: Schema.Literal<"github">;
|
|
2694
|
+
readonly sourceName: Schema.String;
|
|
2695
|
+
readonly endpoint: Schema.URLFromString;
|
|
2696
|
+
readonly extensionType: Schema.Literal<"rule">;
|
|
2697
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2698
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2699
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
2700
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2701
|
+
readonly owner: Schema.NonEmptyString;
|
|
2702
|
+
readonly repo: Schema.NonEmptyString;
|
|
2703
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
2704
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
2705
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
2706
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
2707
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2708
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2709
|
+
}>, Schema.Struct<{
|
|
2710
|
+
readonly type: Schema.Literal<"gitlab">;
|
|
2711
|
+
readonly sourceType: Schema.Literal<"gitlab">;
|
|
2712
|
+
readonly sourceName: Schema.String;
|
|
2713
|
+
readonly endpoint: Schema.URLFromString;
|
|
2714
|
+
readonly extensionType: Schema.Literal<"rule">;
|
|
2715
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2716
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2717
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
2718
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2719
|
+
readonly owner: Schema.NonEmptyString;
|
|
2720
|
+
readonly repo: Schema.NonEmptyString;
|
|
2721
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
2722
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
2723
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
2724
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
2725
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2726
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2727
|
+
}>, Schema.Struct<{
|
|
2728
|
+
readonly type: Schema.Literal<"bitbucket">;
|
|
2729
|
+
readonly sourceType: Schema.Literal<"bitbucket">;
|
|
2730
|
+
readonly sourceName: Schema.String;
|
|
2731
|
+
readonly endpoint: Schema.URLFromString;
|
|
2732
|
+
readonly extensionType: Schema.Literal<"rule">;
|
|
2733
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2734
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2735
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
2736
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2737
|
+
readonly owner: Schema.NonEmptyString;
|
|
2738
|
+
readonly repo: Schema.NonEmptyString;
|
|
2739
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
2740
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
2741
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
2742
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
2743
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2744
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2745
|
+
}>, Schema.Struct<{
|
|
2746
|
+
readonly type: Schema.Literal<"azurerepos">;
|
|
2747
|
+
readonly sourceType: Schema.Literal<"azurerepos">;
|
|
2748
|
+
readonly sourceName: Schema.String;
|
|
2749
|
+
readonly endpoint: Schema.URLFromString;
|
|
2750
|
+
readonly extensionType: Schema.Literal<"rule">;
|
|
2751
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2752
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2753
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
2754
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2755
|
+
readonly organization: Schema.NonEmptyString;
|
|
2756
|
+
readonly project: Schema.NonEmptyString;
|
|
2757
|
+
readonly repo: Schema.NonEmptyString;
|
|
2758
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
2759
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
2760
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
2761
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
2762
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2763
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2764
|
+
}>, Schema.Struct<{
|
|
2765
|
+
readonly type: Schema.Literal<"git">;
|
|
2766
|
+
readonly sourceType: Schema.Literal<"git">;
|
|
2767
|
+
readonly sourceName: Schema.Literal<"git">;
|
|
2768
|
+
readonly extensionType: Schema.Literal<"rule">;
|
|
2769
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2770
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2771
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
2772
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2773
|
+
readonly url: Schema.String;
|
|
2774
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
2775
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
2776
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
2777
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
2778
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2779
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2780
|
+
}>, Schema.Struct<{
|
|
2781
|
+
readonly type: Schema.Literal<"local">;
|
|
2782
|
+
readonly sourceType: Schema.Literal<"local">;
|
|
2783
|
+
readonly sourceName: Schema.Literal<"local">;
|
|
2784
|
+
readonly extensionType: Schema.Literal<"rule">;
|
|
2785
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2786
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2787
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
2788
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2789
|
+
readonly path: Schema.String;
|
|
2790
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2791
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2792
|
+
}>, Schema.Struct<{
|
|
2793
|
+
readonly type: Schema.Literal<"registry">;
|
|
2794
|
+
readonly sourceType: Schema.Literal<"registry">;
|
|
2795
|
+
readonly endpoint: Schema.URLFromString;
|
|
2796
|
+
readonly extensionType: Schema.Literal<"rule">;
|
|
2797
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2798
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2799
|
+
readonly owner: Schema.brand<Schema.String, "Handle">;
|
|
2800
|
+
readonly name: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2801
|
+
readonly resolvedVersion: Schema.brand<Schema.String, "Version">;
|
|
2802
|
+
readonly integrity: Schema.String;
|
|
2803
|
+
readonly sourceName: Schema.String;
|
|
2804
|
+
readonly publisherBindingId: Schema.NonEmptyString;
|
|
2805
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2806
|
+
}>]>>>;
|
|
2807
|
+
readonly hooks: Schema.optional<Schema.$Record<Schema.String, Schema.Union<readonly [Schema.Struct<{
|
|
2808
|
+
readonly type: Schema.Literal<"github">;
|
|
2809
|
+
readonly sourceType: Schema.Literal<"github">;
|
|
2810
|
+
readonly sourceName: Schema.String;
|
|
2811
|
+
readonly endpoint: Schema.URLFromString;
|
|
2812
|
+
readonly extensionType: Schema.Literal<"hook">;
|
|
2813
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2814
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2815
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
2816
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2817
|
+
readonly owner: Schema.NonEmptyString;
|
|
2818
|
+
readonly repo: Schema.NonEmptyString;
|
|
2819
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
2820
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
2821
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
2822
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
2823
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2824
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2825
|
+
}>, Schema.Struct<{
|
|
2826
|
+
readonly type: Schema.Literal<"gitlab">;
|
|
2827
|
+
readonly sourceType: Schema.Literal<"gitlab">;
|
|
2828
|
+
readonly sourceName: Schema.String;
|
|
2829
|
+
readonly endpoint: Schema.URLFromString;
|
|
2830
|
+
readonly extensionType: Schema.Literal<"hook">;
|
|
2831
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2832
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2833
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
2834
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2835
|
+
readonly owner: Schema.NonEmptyString;
|
|
2836
|
+
readonly repo: Schema.NonEmptyString;
|
|
2837
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
2838
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
2839
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
2840
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
2841
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2842
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2843
|
+
}>, Schema.Struct<{
|
|
2844
|
+
readonly type: Schema.Literal<"bitbucket">;
|
|
2845
|
+
readonly sourceType: Schema.Literal<"bitbucket">;
|
|
2846
|
+
readonly sourceName: Schema.String;
|
|
2847
|
+
readonly endpoint: Schema.URLFromString;
|
|
2848
|
+
readonly extensionType: Schema.Literal<"hook">;
|
|
2849
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2850
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2851
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
2852
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2853
|
+
readonly owner: Schema.NonEmptyString;
|
|
2854
|
+
readonly repo: Schema.NonEmptyString;
|
|
2855
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
2856
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
2857
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
2858
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
2859
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2860
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2861
|
+
}>, Schema.Struct<{
|
|
2862
|
+
readonly type: Schema.Literal<"azurerepos">;
|
|
2863
|
+
readonly sourceType: Schema.Literal<"azurerepos">;
|
|
2864
|
+
readonly sourceName: Schema.String;
|
|
2865
|
+
readonly endpoint: Schema.URLFromString;
|
|
2866
|
+
readonly extensionType: Schema.Literal<"hook">;
|
|
2867
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2868
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2869
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
2870
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2871
|
+
readonly organization: Schema.NonEmptyString;
|
|
2872
|
+
readonly project: Schema.NonEmptyString;
|
|
2873
|
+
readonly repo: Schema.NonEmptyString;
|
|
2874
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
2875
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
2876
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
2877
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
2878
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2879
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2880
|
+
}>, Schema.Struct<{
|
|
2881
|
+
readonly type: Schema.Literal<"git">;
|
|
2882
|
+
readonly sourceType: Schema.Literal<"git">;
|
|
2883
|
+
readonly sourceName: Schema.Literal<"git">;
|
|
2884
|
+
readonly extensionType: Schema.Literal<"hook">;
|
|
2885
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2886
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2887
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
2888
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2889
|
+
readonly url: Schema.String;
|
|
2890
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
2891
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
2892
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
2893
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
2894
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2895
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2896
|
+
}>, Schema.Struct<{
|
|
2897
|
+
readonly type: Schema.Literal<"local">;
|
|
2898
|
+
readonly sourceType: Schema.Literal<"local">;
|
|
2899
|
+
readonly sourceName: Schema.Literal<"local">;
|
|
2900
|
+
readonly extensionType: Schema.Literal<"hook">;
|
|
2901
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2902
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2903
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
2904
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2905
|
+
readonly path: Schema.String;
|
|
2906
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2907
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2908
|
+
}>, Schema.Struct<{
|
|
2909
|
+
readonly type: Schema.Literal<"registry">;
|
|
2910
|
+
readonly sourceType: Schema.Literal<"registry">;
|
|
2911
|
+
readonly endpoint: Schema.URLFromString;
|
|
2912
|
+
readonly extensionType: Schema.Literal<"hook">;
|
|
2913
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2914
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2915
|
+
readonly owner: Schema.brand<Schema.String, "Handle">;
|
|
2916
|
+
readonly name: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2917
|
+
readonly resolvedVersion: Schema.brand<Schema.String, "Version">;
|
|
2918
|
+
readonly integrity: Schema.String;
|
|
2919
|
+
readonly sourceName: Schema.String;
|
|
2920
|
+
readonly publisherBindingId: Schema.NonEmptyString;
|
|
2921
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2922
|
+
}>]>>>;
|
|
2923
|
+
readonly knowledge: Schema.optional<Schema.$Record<Schema.String, Schema.Union<readonly [Schema.Struct<{
|
|
2924
|
+
readonly type: Schema.Literal<"github">;
|
|
2925
|
+
readonly sourceType: Schema.Literal<"github">;
|
|
2926
|
+
readonly sourceName: Schema.String;
|
|
2927
|
+
readonly endpoint: Schema.URLFromString;
|
|
2928
|
+
readonly extensionType: Schema.Literal<"knowledge">;
|
|
2929
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2930
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2931
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
2932
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2933
|
+
readonly owner: Schema.NonEmptyString;
|
|
2934
|
+
readonly repo: Schema.NonEmptyString;
|
|
2935
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
2936
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
2937
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
2938
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
2939
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2940
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2941
|
+
}>, Schema.Struct<{
|
|
2942
|
+
readonly type: Schema.Literal<"gitlab">;
|
|
2943
|
+
readonly sourceType: Schema.Literal<"gitlab">;
|
|
2944
|
+
readonly sourceName: Schema.String;
|
|
2945
|
+
readonly endpoint: Schema.URLFromString;
|
|
2946
|
+
readonly extensionType: Schema.Literal<"knowledge">;
|
|
2947
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2948
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2949
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
2950
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2951
|
+
readonly owner: Schema.NonEmptyString;
|
|
2952
|
+
readonly repo: Schema.NonEmptyString;
|
|
2953
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
2954
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
2955
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
2956
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
2957
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2958
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2959
|
+
}>, Schema.Struct<{
|
|
2960
|
+
readonly type: Schema.Literal<"bitbucket">;
|
|
2961
|
+
readonly sourceType: Schema.Literal<"bitbucket">;
|
|
2962
|
+
readonly sourceName: Schema.String;
|
|
2963
|
+
readonly endpoint: Schema.URLFromString;
|
|
2964
|
+
readonly extensionType: Schema.Literal<"knowledge">;
|
|
2965
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2966
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2967
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
2968
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2969
|
+
readonly owner: Schema.NonEmptyString;
|
|
2970
|
+
readonly repo: Schema.NonEmptyString;
|
|
2971
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
2972
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
2973
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
2974
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
2975
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2976
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2977
|
+
}>, Schema.Struct<{
|
|
2978
|
+
readonly type: Schema.Literal<"azurerepos">;
|
|
2979
|
+
readonly sourceType: Schema.Literal<"azurerepos">;
|
|
2980
|
+
readonly sourceName: Schema.String;
|
|
2981
|
+
readonly endpoint: Schema.URLFromString;
|
|
2982
|
+
readonly extensionType: Schema.Literal<"knowledge">;
|
|
2983
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2984
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
2985
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
2986
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
2987
|
+
readonly organization: Schema.NonEmptyString;
|
|
2988
|
+
readonly project: Schema.NonEmptyString;
|
|
2989
|
+
readonly repo: Schema.NonEmptyString;
|
|
2990
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
2991
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
2992
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
2993
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
2994
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
2995
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
2996
|
+
}>, Schema.Struct<{
|
|
2997
|
+
readonly type: Schema.Literal<"git">;
|
|
2998
|
+
readonly sourceType: Schema.Literal<"git">;
|
|
2999
|
+
readonly sourceName: Schema.Literal<"git">;
|
|
3000
|
+
readonly extensionType: Schema.Literal<"knowledge">;
|
|
3001
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
3002
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
3003
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
3004
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
3005
|
+
readonly url: Schema.String;
|
|
3006
|
+
readonly ref: Schema.optional<Schema.NonEmptyString>;
|
|
3007
|
+
readonly path: Schema.optional<Schema.NonEmptyString>;
|
|
3008
|
+
readonly resolvedCommit: Schema.NonEmptyString;
|
|
3009
|
+
readonly resolvedTree: Schema.NonEmptyString;
|
|
3010
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
3011
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
3012
|
+
}>, Schema.Struct<{
|
|
3013
|
+
readonly type: Schema.Literal<"local">;
|
|
3014
|
+
readonly sourceType: Schema.Literal<"local">;
|
|
3015
|
+
readonly sourceName: Schema.Literal<"local">;
|
|
3016
|
+
readonly extensionType: Schema.Literal<"knowledge">;
|
|
3017
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
3018
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
3019
|
+
readonly packageOwner: Schema.brand<Schema.String, "Handle">;
|
|
3020
|
+
readonly packageName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
3021
|
+
readonly path: Schema.String;
|
|
3022
|
+
readonly contentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
3023
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
3024
|
+
}>, Schema.Struct<{
|
|
3025
|
+
readonly type: Schema.Literal<"registry">;
|
|
3026
|
+
readonly sourceType: Schema.Literal<"registry">;
|
|
3027
|
+
readonly endpoint: Schema.URLFromString;
|
|
3028
|
+
readonly extensionType: Schema.Literal<"knowledge">;
|
|
3029
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
3030
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
3031
|
+
readonly owner: Schema.brand<Schema.String, "Handle">;
|
|
3032
|
+
readonly name: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
3033
|
+
readonly resolvedVersion: Schema.brand<Schema.String, "Version">;
|
|
3034
|
+
readonly integrity: Schema.String;
|
|
3035
|
+
readonly sourceName: Schema.String;
|
|
3036
|
+
readonly publisherBindingId: Schema.NonEmptyString;
|
|
3037
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
3038
|
+
}>]>>>;
|
|
3039
|
+
readonly packs: Schema.optional<Schema.$Record<Schema.String, Schema.Struct<{
|
|
3040
|
+
readonly type: Schema.Literal<"registry">;
|
|
3041
|
+
readonly sourceType: Schema.Literal<"registry">;
|
|
3042
|
+
readonly endpoint: Schema.URLFromString;
|
|
3043
|
+
readonly extensionType: Schema.Literal<"pack">;
|
|
3044
|
+
readonly workspaceName: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
3045
|
+
readonly packageFormat: Schema.Literal<"agentxm">;
|
|
3046
|
+
readonly owner: Schema.brand<Schema.String, "Handle">;
|
|
3047
|
+
readonly name: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
3048
|
+
readonly resolvedVersion: Schema.brand<Schema.String, "Version">;
|
|
3049
|
+
readonly integrity: Schema.String;
|
|
3050
|
+
readonly manifestContentIdentity: Schema.brand<Schema.String, "SourceHash">;
|
|
3051
|
+
readonly sourceName: Schema.String;
|
|
3052
|
+
readonly publisherBindingId: Schema.NonEmptyString;
|
|
3053
|
+
readonly treeIntegrity: Schema.brand<Schema.String, "TreeIntegrity">;
|
|
3054
|
+
}>>>;
|
|
3055
|
+
}>;
|
|
3056
|
+
/**
|
|
3057
|
+
* Inferred type for Lockfile schema.
|
|
3058
|
+
*
|
|
3059
|
+
* @experimental This API is unstable and may change without notice.
|
|
3060
|
+
*/
|
|
3061
|
+
export type Lockfile = Schema.Schema.Type<typeof LockfileSchema>;
|
|
3062
|
+
//# sourceMappingURL=schema.d.ts.map
|