@agentxm/client-core 0.19.2 → 0.19.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/unstable/agent-capabilities/derive.d.ts +9 -9
- package/dist/src/unstable/app-error/builders.js +2 -2
- package/dist/src/unstable/app-error/builders.js.map +1 -1
- package/dist/src/unstable/commands/operations/publish.d.ts +2 -2
- package/dist/src/unstable/commands/operations/publish.js +3 -3
- package/dist/src/unstable/commands/operations/publish.js.map +1 -1
- package/dist/src/unstable/commands/operations/shared-command-helpers.d.ts +16 -15
- package/dist/src/unstable/commands/operations/shared-command-helpers.d.ts.map +1 -1
- package/dist/src/unstable/extensions/common.d.ts.map +1 -1
- package/dist/src/unstable/extensions/common.js +4 -2
- package/dist/src/unstable/extensions/common.js.map +1 -1
- package/dist/src/unstable/install-meta/install-meta.d.ts +4 -4
- package/dist/src/unstable/install-meta/install-meta.d.ts.map +1 -1
- package/dist/src/unstable/lint/cli.d.ts +1 -1
- package/dist/src/unstable/lint/cli.js +1 -1
- package/dist/src/unstable/lockfile/lockfile.d.ts +733 -760
- package/dist/src/unstable/lockfile/lockfile.d.ts.map +1 -1
- package/dist/src/unstable/mcps/operations/publish.d.ts +2 -2
- package/dist/src/unstable/mcps/operations/publish.js +3 -3
- package/dist/src/unstable/mcps/operations/publish.js.map +1 -1
- package/dist/src/unstable/packaging/reader-io.d.ts +2 -2
- package/dist/src/unstable/packs/operations/publish.d.ts +2 -2
- package/dist/src/unstable/packs/operations/publish.js +3 -3
- package/dist/src/unstable/packs/operations/publish.js.map +1 -1
- package/dist/src/unstable/plan/index.d.ts +1 -2
- package/dist/src/unstable/plan/index.d.ts.map +1 -1
- package/dist/src/unstable/plan/index.js +1 -2
- package/dist/src/unstable/plan/index.js.map +1 -1
- package/dist/src/unstable/registry/__generated__/registry-client.js.map +1 -1
- package/dist/src/unstable/registry/admin-client.d.ts +42 -42
- package/dist/src/unstable/registry/admin-client.d.ts.map +1 -1
- package/dist/src/unstable/registry/local-client.d.ts.map +1 -1
- package/dist/src/unstable/registry/local-client.js +0 -4
- package/dist/src/unstable/registry/local-client.js.map +1 -1
- package/dist/src/unstable/settings/schema.d.ts.map +1 -1
- package/dist/src/unstable/settings/schema.js +27 -9
- package/dist/src/unstable/settings/schema.js.map +1 -1
- package/dist/src/unstable/skills/operations/publish.d.ts +2 -2
- package/dist/src/unstable/skills/operations/publish.js +3 -3
- package/dist/src/unstable/skills/operations/publish.js.map +1 -1
- package/dist/src/unstable/source-resolution/providers/azurerepos/scp.d.ts +9 -8
- package/dist/src/unstable/source-resolution/providers/azurerepos/scp.d.ts.map +1 -1
- package/dist/src/unstable/source-resolution/providers/azurerepos/url.d.ts +9 -9
- package/dist/src/unstable/source-resolution/providers/azurerepos/url.d.ts.map +1 -1
- package/dist/src/unstable/source-resolution/providers/bitbucket/scp.d.ts +8 -7
- package/dist/src/unstable/source-resolution/providers/bitbucket/scp.d.ts.map +1 -1
- package/dist/src/unstable/source-resolution/providers/bitbucket/url.d.ts +8 -8
- package/dist/src/unstable/source-resolution/providers/bitbucket/url.d.ts.map +1 -1
- package/dist/src/unstable/source-resolution/providers/github/scp.d.ts +8 -7
- package/dist/src/unstable/source-resolution/providers/github/scp.d.ts.map +1 -1
- package/dist/src/unstable/source-resolution/providers/github/url.d.ts +8 -8
- package/dist/src/unstable/source-resolution/providers/github/url.d.ts.map +1 -1
- package/dist/src/unstable/source-resolution/providers/gitlab/scp.d.ts +8 -7
- package/dist/src/unstable/source-resolution/providers/gitlab/scp.d.ts.map +1 -1
- package/dist/src/unstable/source-resolution/providers/gitlab/url.d.ts +8 -8
- package/dist/src/unstable/source-resolution/providers/gitlab/url.d.ts.map +1 -1
- package/dist/src/unstable/subagents/operations/publish.d.ts +2 -2
- package/dist/src/unstable/subagents/operations/publish.js +3 -3
- package/dist/src/unstable/subagents/operations/publish.js.map +1 -1
- package/dist/src/unstable/telemetry/__generated__/telemetry-client.js.map +1 -1
- package/dist/src/unstable/update-check/update-check.d.ts +4 -4
- package/dist/src/unstable/update-check/update-check.d.ts.map +1 -1
- package/dist/src/unstable/workspace/initialization.d.ts +386 -394
- package/dist/src/unstable/workspace/initialization.d.ts.map +1 -1
- package/dist/src/unstable/workspace/service.d.ts +557 -586
- package/dist/src/unstable/workspace/service.d.ts.map +1 -1
- package/package.json +6 -6
- package/site-content/__generated__/schemas/pack.schema.json +18 -14
- package/site-content/__generated__/schemas/settings.schema.json +99 -36
|
@@ -20,6 +20,7 @@
|
|
|
20
20
|
import * as FileSystem from "effect/FileSystem";
|
|
21
21
|
import * as Path from "effect/Path";
|
|
22
22
|
import * as Option from "effect/Option";
|
|
23
|
+
import * as Schema from "effect/Schema";
|
|
23
24
|
import type { Handle } from "../extensions/handle.js";
|
|
24
25
|
import { type AppError } from "../app-error/index.js";
|
|
25
26
|
import { type CommandEntry, type FilesEntry, type HookEntry, type InstructionsConfigValue, type LibraryEntry, type McpServerEntry, type SkillEntry, type SubagentEntry, type PackEntry, type RuleEntry, type SourceHostConfig } from "../settings/index.js";
|
|
@@ -37,32 +38,32 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
37
38
|
baseDir: string;
|
|
38
39
|
getLockfileState: () => Effect.Effect<LockfileState, AppError>;
|
|
39
40
|
getConfiguredSources: () => Effect.Effect<ReadonlyArray<SourceHostConfig>, AppError>;
|
|
40
|
-
getConfiguredSourceByName: (name: string) => Effect.Effect<Option.Option<{
|
|
41
|
-
readonly name:
|
|
42
|
-
readonly type: "github"
|
|
43
|
-
readonly url:
|
|
44
|
-
} | {
|
|
45
|
-
readonly name:
|
|
46
|
-
readonly type: "gitlab"
|
|
47
|
-
readonly url:
|
|
48
|
-
} | {
|
|
49
|
-
readonly name:
|
|
50
|
-
readonly type: "bitbucket"
|
|
51
|
-
readonly url:
|
|
52
|
-
} | {
|
|
53
|
-
readonly name:
|
|
54
|
-
readonly type: "azurerepos"
|
|
55
|
-
readonly url:
|
|
56
|
-
} | {
|
|
57
|
-
readonly name:
|
|
58
|
-
readonly type: "registry"
|
|
59
|
-
readonly location:
|
|
60
|
-
}
|
|
61
|
-
getRegistrySourceHosts: () => Effect.Effect<{
|
|
62
|
-
readonly name:
|
|
63
|
-
readonly type: "registry"
|
|
64
|
-
readonly location:
|
|
65
|
-
}[], AppError, never>;
|
|
41
|
+
getConfiguredSourceByName: (name: string) => Effect.Effect<Option.Option<Schema.Struct.ReadonlySide<{
|
|
42
|
+
readonly name: Schema.String;
|
|
43
|
+
readonly type: Schema.Literal<"github">;
|
|
44
|
+
readonly url: Schema.URLFromString;
|
|
45
|
+
}, "Type"> | Schema.Struct.ReadonlySide<{
|
|
46
|
+
readonly name: Schema.String;
|
|
47
|
+
readonly type: Schema.Literal<"gitlab">;
|
|
48
|
+
readonly url: Schema.URLFromString;
|
|
49
|
+
}, "Type"> | Schema.Struct.ReadonlySide<{
|
|
50
|
+
readonly name: Schema.String;
|
|
51
|
+
readonly type: Schema.Literal<"bitbucket">;
|
|
52
|
+
readonly url: Schema.URLFromString;
|
|
53
|
+
}, "Type"> | Schema.Struct.ReadonlySide<{
|
|
54
|
+
readonly name: Schema.String;
|
|
55
|
+
readonly type: Schema.Literal<"azurerepos">;
|
|
56
|
+
readonly url: Schema.URLFromString;
|
|
57
|
+
}, "Type"> | Schema.Struct.ReadonlySide<{
|
|
58
|
+
readonly name: Schema.String;
|
|
59
|
+
readonly type: Schema.Literal<"registry">;
|
|
60
|
+
readonly location: Schema.URLFromString;
|
|
61
|
+
}, "Type">>, AppError, never>;
|
|
62
|
+
getRegistrySourceHosts: () => Effect.Effect<Schema.Struct.ReadonlySide<{
|
|
63
|
+
readonly name: Schema.String;
|
|
64
|
+
readonly type: Schema.Literal<"registry">;
|
|
65
|
+
readonly location: Schema.URLFromString;
|
|
66
|
+
}, "Type">[], AppError, never>;
|
|
66
67
|
records: {
|
|
67
68
|
getConfiguredSkills: () => Effect.Effect<import("effect/Record").ReadonlyRecord<string, import("./read-model-record-types.ts").ConfiguredSkill>, AppError, never>;
|
|
68
69
|
getUnmanagedSkills: () => Effect.Effect<import("effect/Record").ReadonlyRecord<string, import("./read-model-record-types.ts").UnmanagedSkill>, AppError, never>;
|
|
@@ -84,11 +85,11 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
84
85
|
addConfiguredSource: (source: SourceHostConfig) => Effect.Effect<void, AppError, never>;
|
|
85
86
|
getIgnoredSkillPatterns: () => Effect.Effect<readonly string[], AppError, never>;
|
|
86
87
|
getConfiguredSkillEntries: () => Effect.Effect<{
|
|
87
|
-
readonly [x: string]: {
|
|
88
|
-
readonly source:
|
|
89
|
-
readonly enabled:
|
|
90
|
-
readonly authored:
|
|
91
|
-
}
|
|
88
|
+
readonly [x: string]: Schema.Struct.ReadonlySide<{
|
|
89
|
+
readonly source: Schema.String;
|
|
90
|
+
readonly enabled: Schema.Boolean;
|
|
91
|
+
readonly authored: Schema.Boolean;
|
|
92
|
+
}, "Type">;
|
|
92
93
|
}, AppError, never>;
|
|
93
94
|
getConfiguredAgents: () => Effect.Effect<readonly ("adal" | "aider-desk" | "amp" | "antigravity" | "augment" | "claude-code" | "cline" | "codearts-agent" | "codebuddy" | "codemaker" | "codestudio" | "codex" | "command-code" | "continue" | "cortex" | "crush" | "cursor" | "deepagents" | "devin" | "dexto" | "droid" | "firebender" | "forgecode" | "gemini-cli" | "github-copilot-cli" | "goose" | "grok-cli" | "hermes" | "ibm-bob" | "junie" | "kilo" | "kimi-cli" | "kiro-cli" | "kode" | "mcpjam" | "mistral-vibe" | "mux" | "neovate" | "openclaw" | "opencode" | "openhands" | "pi" | "pochi" | "qoder" | "qwen-code" | "replit" | "roo" | "rovodev" | "tabnine-cli" | "trae-cn" | "trae" | "warp" | "windsurf" | "zencoder")[], AppError, never>;
|
|
94
95
|
getInstructionsConfig: () => Effect.Effect<Option.Option<false | {
|
|
@@ -98,29 +99,27 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
98
99
|
setInstructionsConfig: (config: InstructionsConfigValue) => Effect.Effect<void, AppError, never>;
|
|
99
100
|
getConfiguredMcpServerEntries: () => Effect.Effect<{
|
|
100
101
|
readonly [x: string]: {
|
|
101
|
-
readonly source: string;
|
|
102
|
-
readonly enabled: boolean;
|
|
103
|
-
readonly authored: boolean;
|
|
104
102
|
readonly env: {
|
|
105
103
|
readonly [x: string]: string;
|
|
106
104
|
};
|
|
107
|
-
readonly
|
|
108
|
-
readonly
|
|
105
|
+
readonly source: string;
|
|
106
|
+
readonly enabled: boolean;
|
|
107
|
+
readonly authored: boolean;
|
|
109
108
|
readonly url?: string | undefined;
|
|
109
|
+
readonly command?: string | undefined;
|
|
110
110
|
readonly headers?: {
|
|
111
111
|
readonly [x: string]: string;
|
|
112
112
|
} | undefined;
|
|
113
|
+
readonly args?: readonly string[] | undefined;
|
|
113
114
|
};
|
|
114
115
|
}, AppError, never>;
|
|
115
116
|
getConfiguredFilesEntries: () => Effect.Effect<{
|
|
116
|
-
readonly [x: string]: {
|
|
117
|
-
readonly source:
|
|
118
|
-
readonly enabled:
|
|
119
|
-
readonly authored:
|
|
120
|
-
readonly inputs:
|
|
121
|
-
|
|
122
|
-
};
|
|
123
|
-
};
|
|
117
|
+
readonly [x: string]: Schema.Struct.ReadonlySide<{
|
|
118
|
+
readonly source: Schema.String;
|
|
119
|
+
readonly enabled: Schema.Boolean;
|
|
120
|
+
readonly authored: Schema.Boolean;
|
|
121
|
+
readonly inputs: Schema.$Record<Schema.String, Schema.Union<readonly [Schema.String, Schema.Number, Schema.Boolean]>>;
|
|
122
|
+
}, "Type">;
|
|
124
123
|
}, AppError, never>;
|
|
125
124
|
getWorkspaceVars: () => Effect.Effect<{
|
|
126
125
|
readonly [x: string]: string | number | boolean;
|
|
@@ -132,8 +131,10 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
132
131
|
readonly repo: string;
|
|
133
132
|
readonly installedAt: Date;
|
|
134
133
|
readonly updatedAt: Date;
|
|
135
|
-
readonly ref?: string | undefined;
|
|
136
134
|
readonly path?: string | undefined;
|
|
135
|
+
readonly ref?: string | undefined;
|
|
136
|
+
readonly gitTreeHash?: string | undefined;
|
|
137
|
+
readonly retainedByPack?: boolean | undefined;
|
|
137
138
|
readonly resolvedInputs?: {
|
|
138
139
|
readonly [x: string]: string | number | boolean;
|
|
139
140
|
} | undefined;
|
|
@@ -143,16 +144,16 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
143
144
|
readonly region?: string | undefined;
|
|
144
145
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
145
146
|
}[] | undefined;
|
|
146
|
-
readonly gitTreeHash?: string | undefined;
|
|
147
|
-
readonly retainedByPack?: boolean | undefined;
|
|
148
147
|
} | {
|
|
149
148
|
readonly type: "gitlab";
|
|
150
149
|
readonly owner: string;
|
|
151
150
|
readonly repo: string;
|
|
152
151
|
readonly installedAt: Date;
|
|
153
152
|
readonly updatedAt: Date;
|
|
154
|
-
readonly ref?: string | undefined;
|
|
155
153
|
readonly path?: string | undefined;
|
|
154
|
+
readonly ref?: string | undefined;
|
|
155
|
+
readonly gitTreeHash?: string | undefined;
|
|
156
|
+
readonly retainedByPack?: boolean | undefined;
|
|
156
157
|
readonly resolvedInputs?: {
|
|
157
158
|
readonly [x: string]: string | number | boolean;
|
|
158
159
|
} | undefined;
|
|
@@ -162,16 +163,16 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
162
163
|
readonly region?: string | undefined;
|
|
163
164
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
164
165
|
}[] | undefined;
|
|
165
|
-
readonly gitTreeHash?: string | undefined;
|
|
166
|
-
readonly retainedByPack?: boolean | undefined;
|
|
167
166
|
} | {
|
|
168
167
|
readonly type: "bitbucket";
|
|
169
168
|
readonly owner: string;
|
|
170
169
|
readonly repo: string;
|
|
171
170
|
readonly installedAt: Date;
|
|
172
171
|
readonly updatedAt: Date;
|
|
173
|
-
readonly ref?: string | undefined;
|
|
174
172
|
readonly path?: string | undefined;
|
|
173
|
+
readonly ref?: string | undefined;
|
|
174
|
+
readonly gitTreeHash?: string | undefined;
|
|
175
|
+
readonly retainedByPack?: boolean | undefined;
|
|
175
176
|
readonly resolvedInputs?: {
|
|
176
177
|
readonly [x: string]: string | number | boolean;
|
|
177
178
|
} | undefined;
|
|
@@ -181,17 +182,17 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
181
182
|
readonly region?: string | undefined;
|
|
182
183
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
183
184
|
}[] | undefined;
|
|
184
|
-
readonly gitTreeHash?: string | undefined;
|
|
185
|
-
readonly retainedByPack?: boolean | undefined;
|
|
186
185
|
} | {
|
|
187
|
-
readonly type: "azurerepos";
|
|
188
|
-
readonly organization: string;
|
|
189
186
|
readonly project: string;
|
|
187
|
+
readonly type: "azurerepos";
|
|
190
188
|
readonly repo: string;
|
|
189
|
+
readonly organization: string;
|
|
191
190
|
readonly installedAt: Date;
|
|
192
191
|
readonly updatedAt: Date;
|
|
193
|
-
readonly ref?: string | undefined;
|
|
194
192
|
readonly path?: string | undefined;
|
|
193
|
+
readonly ref?: string | undefined;
|
|
194
|
+
readonly gitTreeHash?: string | undefined;
|
|
195
|
+
readonly retainedByPack?: boolean | undefined;
|
|
195
196
|
readonly resolvedInputs?: {
|
|
196
197
|
readonly [x: string]: string | number | boolean;
|
|
197
198
|
} | undefined;
|
|
@@ -201,15 +202,15 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
201
202
|
readonly region?: string | undefined;
|
|
202
203
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
203
204
|
}[] | undefined;
|
|
204
|
-
readonly gitTreeHash?: string | undefined;
|
|
205
|
-
readonly retainedByPack?: boolean | undefined;
|
|
206
205
|
} | {
|
|
207
|
-
readonly type: "git";
|
|
208
206
|
readonly url: string;
|
|
207
|
+
readonly type: "git";
|
|
209
208
|
readonly installedAt: Date;
|
|
210
209
|
readonly updatedAt: Date;
|
|
211
|
-
readonly ref?: string | undefined;
|
|
212
210
|
readonly path?: string | undefined;
|
|
211
|
+
readonly ref?: string | undefined;
|
|
212
|
+
readonly gitTreeHash?: string | undefined;
|
|
213
|
+
readonly retainedByPack?: boolean | undefined;
|
|
213
214
|
readonly resolvedInputs?: {
|
|
214
215
|
readonly [x: string]: string | number | boolean;
|
|
215
216
|
} | undefined;
|
|
@@ -219,13 +220,13 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
219
220
|
readonly region?: string | undefined;
|
|
220
221
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
221
222
|
}[] | undefined;
|
|
222
|
-
readonly gitTreeHash?: string | undefined;
|
|
223
|
-
readonly retainedByPack?: boolean | undefined;
|
|
224
223
|
} | {
|
|
225
|
-
readonly type: "local";
|
|
226
224
|
readonly path: string;
|
|
225
|
+
readonly type: "local";
|
|
227
226
|
readonly installedAt: Date;
|
|
228
227
|
readonly updatedAt: Date;
|
|
228
|
+
readonly gitTreeHash?: string | undefined;
|
|
229
|
+
readonly retainedByPack?: boolean | undefined;
|
|
229
230
|
readonly resolvedInputs?: {
|
|
230
231
|
readonly [x: string]: string | number | boolean;
|
|
231
232
|
} | undefined;
|
|
@@ -235,17 +236,17 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
235
236
|
readonly region?: string | undefined;
|
|
236
237
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
237
238
|
}[] | undefined;
|
|
238
|
-
readonly gitTreeHash?: string | undefined;
|
|
239
|
-
readonly retainedByPack?: boolean | undefined;
|
|
240
239
|
} | {
|
|
240
|
+
readonly name: string & import("effect/Brand").Brand<"ExtensionName">;
|
|
241
241
|
readonly type: "registry";
|
|
242
242
|
readonly owner: string & import("effect/Brand").Brand<"Handle">;
|
|
243
|
-
readonly
|
|
243
|
+
readonly installedAt: Date;
|
|
244
|
+
readonly updatedAt: Date;
|
|
244
245
|
readonly resolvedVersion: string & import("effect/Brand").Brand<"Version">;
|
|
245
246
|
readonly integrity: string;
|
|
246
247
|
readonly sourceName: string;
|
|
247
|
-
readonly
|
|
248
|
-
readonly
|
|
248
|
+
readonly gitTreeHash?: string | undefined;
|
|
249
|
+
readonly retainedByPack?: boolean | undefined;
|
|
249
250
|
readonly resolvedInputs?: {
|
|
250
251
|
readonly [x: string]: string | number | boolean;
|
|
251
252
|
} | undefined;
|
|
@@ -255,8 +256,6 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
255
256
|
readonly region?: string | undefined;
|
|
256
257
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
257
258
|
}[] | undefined;
|
|
258
|
-
readonly gitTreeHash?: string | undefined;
|
|
259
|
-
readonly retainedByPack?: boolean | undefined;
|
|
260
259
|
};
|
|
261
260
|
}, AppError, never>;
|
|
262
261
|
getLockedFilesEntry: (name: string) => Effect.Effect<Option.Option<{
|
|
@@ -265,8 +264,10 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
265
264
|
readonly repo: string;
|
|
266
265
|
readonly installedAt: Date;
|
|
267
266
|
readonly updatedAt: Date;
|
|
268
|
-
readonly ref?: string | undefined;
|
|
269
267
|
readonly path?: string | undefined;
|
|
268
|
+
readonly ref?: string | undefined;
|
|
269
|
+
readonly gitTreeHash?: string | undefined;
|
|
270
|
+
readonly retainedByPack?: boolean | undefined;
|
|
270
271
|
readonly resolvedInputs?: {
|
|
271
272
|
readonly [x: string]: string | number | boolean;
|
|
272
273
|
} | undefined;
|
|
@@ -276,16 +277,16 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
276
277
|
readonly region?: string | undefined;
|
|
277
278
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
278
279
|
}[] | undefined;
|
|
279
|
-
readonly gitTreeHash?: string | undefined;
|
|
280
|
-
readonly retainedByPack?: boolean | undefined;
|
|
281
280
|
} | {
|
|
282
281
|
readonly type: "gitlab";
|
|
283
282
|
readonly owner: string;
|
|
284
283
|
readonly repo: string;
|
|
285
284
|
readonly installedAt: Date;
|
|
286
285
|
readonly updatedAt: Date;
|
|
287
|
-
readonly ref?: string | undefined;
|
|
288
286
|
readonly path?: string | undefined;
|
|
287
|
+
readonly ref?: string | undefined;
|
|
288
|
+
readonly gitTreeHash?: string | undefined;
|
|
289
|
+
readonly retainedByPack?: boolean | undefined;
|
|
289
290
|
readonly resolvedInputs?: {
|
|
290
291
|
readonly [x: string]: string | number | boolean;
|
|
291
292
|
} | undefined;
|
|
@@ -295,16 +296,16 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
295
296
|
readonly region?: string | undefined;
|
|
296
297
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
297
298
|
}[] | undefined;
|
|
298
|
-
readonly gitTreeHash?: string | undefined;
|
|
299
|
-
readonly retainedByPack?: boolean | undefined;
|
|
300
299
|
} | {
|
|
301
300
|
readonly type: "bitbucket";
|
|
302
301
|
readonly owner: string;
|
|
303
302
|
readonly repo: string;
|
|
304
303
|
readonly installedAt: Date;
|
|
305
304
|
readonly updatedAt: Date;
|
|
306
|
-
readonly ref?: string | undefined;
|
|
307
305
|
readonly path?: string | undefined;
|
|
306
|
+
readonly ref?: string | undefined;
|
|
307
|
+
readonly gitTreeHash?: string | undefined;
|
|
308
|
+
readonly retainedByPack?: boolean | undefined;
|
|
308
309
|
readonly resolvedInputs?: {
|
|
309
310
|
readonly [x: string]: string | number | boolean;
|
|
310
311
|
} | undefined;
|
|
@@ -314,17 +315,17 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
314
315
|
readonly region?: string | undefined;
|
|
315
316
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
316
317
|
}[] | undefined;
|
|
317
|
-
readonly gitTreeHash?: string | undefined;
|
|
318
|
-
readonly retainedByPack?: boolean | undefined;
|
|
319
318
|
} | {
|
|
320
|
-
readonly type: "azurerepos";
|
|
321
|
-
readonly organization: string;
|
|
322
319
|
readonly project: string;
|
|
320
|
+
readonly type: "azurerepos";
|
|
323
321
|
readonly repo: string;
|
|
322
|
+
readonly organization: string;
|
|
324
323
|
readonly installedAt: Date;
|
|
325
324
|
readonly updatedAt: Date;
|
|
326
|
-
readonly ref?: string | undefined;
|
|
327
325
|
readonly path?: string | undefined;
|
|
326
|
+
readonly ref?: string | undefined;
|
|
327
|
+
readonly gitTreeHash?: string | undefined;
|
|
328
|
+
readonly retainedByPack?: boolean | undefined;
|
|
328
329
|
readonly resolvedInputs?: {
|
|
329
330
|
readonly [x: string]: string | number | boolean;
|
|
330
331
|
} | undefined;
|
|
@@ -334,15 +335,15 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
334
335
|
readonly region?: string | undefined;
|
|
335
336
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
336
337
|
}[] | undefined;
|
|
337
|
-
readonly gitTreeHash?: string | undefined;
|
|
338
|
-
readonly retainedByPack?: boolean | undefined;
|
|
339
338
|
} | {
|
|
340
|
-
readonly type: "git";
|
|
341
339
|
readonly url: string;
|
|
340
|
+
readonly type: "git";
|
|
342
341
|
readonly installedAt: Date;
|
|
343
342
|
readonly updatedAt: Date;
|
|
344
|
-
readonly ref?: string | undefined;
|
|
345
343
|
readonly path?: string | undefined;
|
|
344
|
+
readonly ref?: string | undefined;
|
|
345
|
+
readonly gitTreeHash?: string | undefined;
|
|
346
|
+
readonly retainedByPack?: boolean | undefined;
|
|
346
347
|
readonly resolvedInputs?: {
|
|
347
348
|
readonly [x: string]: string | number | boolean;
|
|
348
349
|
} | undefined;
|
|
@@ -352,13 +353,13 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
352
353
|
readonly region?: string | undefined;
|
|
353
354
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
354
355
|
}[] | undefined;
|
|
355
|
-
readonly gitTreeHash?: string | undefined;
|
|
356
|
-
readonly retainedByPack?: boolean | undefined;
|
|
357
356
|
} | {
|
|
358
|
-
readonly type: "local";
|
|
359
357
|
readonly path: string;
|
|
358
|
+
readonly type: "local";
|
|
360
359
|
readonly installedAt: Date;
|
|
361
360
|
readonly updatedAt: Date;
|
|
361
|
+
readonly gitTreeHash?: string | undefined;
|
|
362
|
+
readonly retainedByPack?: boolean | undefined;
|
|
362
363
|
readonly resolvedInputs?: {
|
|
363
364
|
readonly [x: string]: string | number | boolean;
|
|
364
365
|
} | undefined;
|
|
@@ -368,17 +369,17 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
368
369
|
readonly region?: string | undefined;
|
|
369
370
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
370
371
|
}[] | undefined;
|
|
371
|
-
readonly gitTreeHash?: string | undefined;
|
|
372
|
-
readonly retainedByPack?: boolean | undefined;
|
|
373
372
|
} | {
|
|
373
|
+
readonly name: string & import("effect/Brand").Brand<"ExtensionName">;
|
|
374
374
|
readonly type: "registry";
|
|
375
375
|
readonly owner: string & import("effect/Brand").Brand<"Handle">;
|
|
376
|
-
readonly
|
|
376
|
+
readonly installedAt: Date;
|
|
377
|
+
readonly updatedAt: Date;
|
|
377
378
|
readonly resolvedVersion: string & import("effect/Brand").Brand<"Version">;
|
|
378
379
|
readonly integrity: string;
|
|
379
380
|
readonly sourceName: string;
|
|
380
|
-
readonly
|
|
381
|
-
readonly
|
|
381
|
+
readonly gitTreeHash?: string | undefined;
|
|
382
|
+
readonly retainedByPack?: boolean | undefined;
|
|
382
383
|
readonly resolvedInputs?: {
|
|
383
384
|
readonly [x: string]: string | number | boolean;
|
|
384
385
|
} | undefined;
|
|
@@ -388,8 +389,6 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
388
389
|
readonly region?: string | undefined;
|
|
389
390
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
390
391
|
}[] | undefined;
|
|
391
|
-
readonly gitTreeHash?: string | undefined;
|
|
392
|
-
readonly retainedByPack?: boolean | undefined;
|
|
393
392
|
}>, AppError, never>;
|
|
394
393
|
setFiles: ({ name, lockEntry, versionRange }: SetFilesArgs) => Effect.Effect<void, AppError, never>;
|
|
395
394
|
setFilesLock: ({ name, lockEntry }: SetFilesArgs) => Effect.Effect<void, AppError, never>;
|
|
@@ -399,11 +398,11 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
399
398
|
updateFilesEntry: (name: string, updater: (entry: FilesEntry) => FilesEntry) => Effect.Effect<void, AppError, never>;
|
|
400
399
|
setFilesEntry: (name: string, entry: FilesEntry) => Effect.Effect<void, AppError, never>;
|
|
401
400
|
getConfiguredRuleEntries: () => Effect.Effect<{
|
|
402
|
-
readonly [x: string]: {
|
|
403
|
-
readonly source:
|
|
404
|
-
readonly enabled:
|
|
405
|
-
readonly authored:
|
|
406
|
-
}
|
|
401
|
+
readonly [x: string]: Schema.Struct.ReadonlySide<{
|
|
402
|
+
readonly source: Schema.String;
|
|
403
|
+
readonly enabled: Schema.Boolean;
|
|
404
|
+
readonly authored: Schema.Boolean;
|
|
405
|
+
}, "Type">;
|
|
407
406
|
}, AppError, never>;
|
|
408
407
|
getLockedRules: () => Effect.Effect<{
|
|
409
408
|
readonly [x: string]: {
|
|
@@ -412,110 +411,110 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
412
411
|
readonly repo: string;
|
|
413
412
|
readonly installedAt: Date;
|
|
414
413
|
readonly updatedAt: Date;
|
|
415
|
-
readonly ref?: string | undefined;
|
|
416
414
|
readonly path?: string | undefined;
|
|
415
|
+
readonly ref?: string | undefined;
|
|
416
|
+
readonly gitTreeHash?: string | undefined;
|
|
417
|
+
readonly retainedByPack?: boolean | undefined;
|
|
417
418
|
readonly materializedTargets?: readonly {
|
|
418
419
|
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
419
420
|
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
420
421
|
readonly region?: string | undefined;
|
|
421
422
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
422
423
|
}[] | undefined;
|
|
423
|
-
readonly gitTreeHash?: string | undefined;
|
|
424
|
-
readonly retainedByPack?: boolean | undefined;
|
|
425
424
|
} | {
|
|
426
425
|
readonly type: "gitlab";
|
|
427
426
|
readonly owner: string;
|
|
428
427
|
readonly repo: string;
|
|
429
428
|
readonly installedAt: Date;
|
|
430
429
|
readonly updatedAt: Date;
|
|
431
|
-
readonly ref?: string | undefined;
|
|
432
430
|
readonly path?: string | undefined;
|
|
431
|
+
readonly ref?: string | undefined;
|
|
432
|
+
readonly gitTreeHash?: string | undefined;
|
|
433
|
+
readonly retainedByPack?: boolean | undefined;
|
|
433
434
|
readonly materializedTargets?: readonly {
|
|
434
435
|
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
435
436
|
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
436
437
|
readonly region?: string | undefined;
|
|
437
438
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
438
439
|
}[] | undefined;
|
|
439
|
-
readonly gitTreeHash?: string | undefined;
|
|
440
|
-
readonly retainedByPack?: boolean | undefined;
|
|
441
440
|
} | {
|
|
442
441
|
readonly type: "bitbucket";
|
|
443
442
|
readonly owner: string;
|
|
444
443
|
readonly repo: string;
|
|
445
444
|
readonly installedAt: Date;
|
|
446
445
|
readonly updatedAt: Date;
|
|
447
|
-
readonly ref?: string | undefined;
|
|
448
446
|
readonly path?: string | undefined;
|
|
447
|
+
readonly ref?: string | undefined;
|
|
448
|
+
readonly gitTreeHash?: string | undefined;
|
|
449
|
+
readonly retainedByPack?: boolean | undefined;
|
|
449
450
|
readonly materializedTargets?: readonly {
|
|
450
451
|
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
451
452
|
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
452
453
|
readonly region?: string | undefined;
|
|
453
454
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
454
455
|
}[] | undefined;
|
|
455
|
-
readonly gitTreeHash?: string | undefined;
|
|
456
|
-
readonly retainedByPack?: boolean | undefined;
|
|
457
456
|
} | {
|
|
458
|
-
readonly type: "azurerepos";
|
|
459
|
-
readonly organization: string;
|
|
460
457
|
readonly project: string;
|
|
458
|
+
readonly type: "azurerepos";
|
|
461
459
|
readonly repo: string;
|
|
460
|
+
readonly organization: string;
|
|
462
461
|
readonly installedAt: Date;
|
|
463
462
|
readonly updatedAt: Date;
|
|
464
|
-
readonly ref?: string | undefined;
|
|
465
463
|
readonly path?: string | undefined;
|
|
464
|
+
readonly ref?: string | undefined;
|
|
465
|
+
readonly gitTreeHash?: string | undefined;
|
|
466
|
+
readonly retainedByPack?: boolean | undefined;
|
|
466
467
|
readonly materializedTargets?: readonly {
|
|
467
468
|
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
468
469
|
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
469
470
|
readonly region?: string | undefined;
|
|
470
471
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
471
472
|
}[] | undefined;
|
|
472
|
-
readonly gitTreeHash?: string | undefined;
|
|
473
|
-
readonly retainedByPack?: boolean | undefined;
|
|
474
473
|
} | {
|
|
475
|
-
readonly type: "git";
|
|
476
474
|
readonly url: string;
|
|
475
|
+
readonly type: "git";
|
|
477
476
|
readonly installedAt: Date;
|
|
478
477
|
readonly updatedAt: Date;
|
|
479
|
-
readonly ref?: string | undefined;
|
|
480
478
|
readonly path?: string | undefined;
|
|
479
|
+
readonly ref?: string | undefined;
|
|
480
|
+
readonly gitTreeHash?: string | undefined;
|
|
481
|
+
readonly retainedByPack?: boolean | undefined;
|
|
481
482
|
readonly materializedTargets?: readonly {
|
|
482
483
|
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
483
484
|
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
484
485
|
readonly region?: string | undefined;
|
|
485
486
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
486
487
|
}[] | undefined;
|
|
487
|
-
readonly gitTreeHash?: string | undefined;
|
|
488
|
-
readonly retainedByPack?: boolean | undefined;
|
|
489
488
|
} | {
|
|
490
|
-
readonly type: "local";
|
|
491
489
|
readonly path: string;
|
|
490
|
+
readonly type: "local";
|
|
492
491
|
readonly installedAt: Date;
|
|
493
492
|
readonly updatedAt: Date;
|
|
493
|
+
readonly gitTreeHash?: string | undefined;
|
|
494
|
+
readonly retainedByPack?: boolean | undefined;
|
|
494
495
|
readonly materializedTargets?: readonly {
|
|
495
496
|
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
496
497
|
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
497
498
|
readonly region?: string | undefined;
|
|
498
499
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
499
500
|
}[] | undefined;
|
|
500
|
-
readonly gitTreeHash?: string | undefined;
|
|
501
|
-
readonly retainedByPack?: boolean | undefined;
|
|
502
501
|
} | {
|
|
502
|
+
readonly name: string & import("effect/Brand").Brand<"ExtensionName">;
|
|
503
503
|
readonly type: "registry";
|
|
504
504
|
readonly owner: string & import("effect/Brand").Brand<"Handle">;
|
|
505
|
-
readonly
|
|
505
|
+
readonly installedAt: Date;
|
|
506
|
+
readonly updatedAt: Date;
|
|
506
507
|
readonly resolvedVersion: string & import("effect/Brand").Brand<"Version">;
|
|
507
508
|
readonly integrity: string;
|
|
508
509
|
readonly sourceName: string;
|
|
509
|
-
readonly
|
|
510
|
-
readonly
|
|
510
|
+
readonly gitTreeHash?: string | undefined;
|
|
511
|
+
readonly retainedByPack?: boolean | undefined;
|
|
511
512
|
readonly materializedTargets?: readonly {
|
|
512
513
|
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
513
514
|
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
514
515
|
readonly region?: string | undefined;
|
|
515
516
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
516
517
|
}[] | undefined;
|
|
517
|
-
readonly gitTreeHash?: string | undefined;
|
|
518
|
-
readonly retainedByPack?: boolean | undefined;
|
|
519
518
|
};
|
|
520
519
|
}, AppError, never>;
|
|
521
520
|
getLockedRuleEntry: (name: string) => Effect.Effect<Option.Option<{
|
|
@@ -524,110 +523,110 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
524
523
|
readonly repo: string;
|
|
525
524
|
readonly installedAt: Date;
|
|
526
525
|
readonly updatedAt: Date;
|
|
527
|
-
readonly ref?: string | undefined;
|
|
528
526
|
readonly path?: string | undefined;
|
|
527
|
+
readonly ref?: string | undefined;
|
|
528
|
+
readonly gitTreeHash?: string | undefined;
|
|
529
|
+
readonly retainedByPack?: boolean | undefined;
|
|
529
530
|
readonly materializedTargets?: readonly {
|
|
530
531
|
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
531
532
|
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
532
533
|
readonly region?: string | undefined;
|
|
533
534
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
534
535
|
}[] | undefined;
|
|
535
|
-
readonly gitTreeHash?: string | undefined;
|
|
536
|
-
readonly retainedByPack?: boolean | undefined;
|
|
537
536
|
} | {
|
|
538
537
|
readonly type: "gitlab";
|
|
539
538
|
readonly owner: string;
|
|
540
539
|
readonly repo: string;
|
|
541
540
|
readonly installedAt: Date;
|
|
542
541
|
readonly updatedAt: Date;
|
|
543
|
-
readonly ref?: string | undefined;
|
|
544
542
|
readonly path?: string | undefined;
|
|
543
|
+
readonly ref?: string | undefined;
|
|
544
|
+
readonly gitTreeHash?: string | undefined;
|
|
545
|
+
readonly retainedByPack?: boolean | undefined;
|
|
545
546
|
readonly materializedTargets?: readonly {
|
|
546
547
|
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
547
548
|
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
548
549
|
readonly region?: string | undefined;
|
|
549
550
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
550
551
|
}[] | undefined;
|
|
551
|
-
readonly gitTreeHash?: string | undefined;
|
|
552
|
-
readonly retainedByPack?: boolean | undefined;
|
|
553
552
|
} | {
|
|
554
553
|
readonly type: "bitbucket";
|
|
555
554
|
readonly owner: string;
|
|
556
555
|
readonly repo: string;
|
|
557
556
|
readonly installedAt: Date;
|
|
558
557
|
readonly updatedAt: Date;
|
|
559
|
-
readonly ref?: string | undefined;
|
|
560
558
|
readonly path?: string | undefined;
|
|
559
|
+
readonly ref?: string | undefined;
|
|
560
|
+
readonly gitTreeHash?: string | undefined;
|
|
561
|
+
readonly retainedByPack?: boolean | undefined;
|
|
561
562
|
readonly materializedTargets?: readonly {
|
|
562
563
|
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
563
564
|
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
564
565
|
readonly region?: string | undefined;
|
|
565
566
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
566
567
|
}[] | undefined;
|
|
567
|
-
readonly gitTreeHash?: string | undefined;
|
|
568
|
-
readonly retainedByPack?: boolean | undefined;
|
|
569
568
|
} | {
|
|
570
|
-
readonly type: "azurerepos";
|
|
571
|
-
readonly organization: string;
|
|
572
569
|
readonly project: string;
|
|
570
|
+
readonly type: "azurerepos";
|
|
573
571
|
readonly repo: string;
|
|
572
|
+
readonly organization: string;
|
|
574
573
|
readonly installedAt: Date;
|
|
575
574
|
readonly updatedAt: Date;
|
|
576
|
-
readonly ref?: string | undefined;
|
|
577
575
|
readonly path?: string | undefined;
|
|
576
|
+
readonly ref?: string | undefined;
|
|
577
|
+
readonly gitTreeHash?: string | undefined;
|
|
578
|
+
readonly retainedByPack?: boolean | undefined;
|
|
578
579
|
readonly materializedTargets?: readonly {
|
|
579
580
|
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
580
581
|
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
581
582
|
readonly region?: string | undefined;
|
|
582
583
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
583
584
|
}[] | undefined;
|
|
584
|
-
readonly gitTreeHash?: string | undefined;
|
|
585
|
-
readonly retainedByPack?: boolean | undefined;
|
|
586
585
|
} | {
|
|
587
|
-
readonly type: "git";
|
|
588
586
|
readonly url: string;
|
|
587
|
+
readonly type: "git";
|
|
589
588
|
readonly installedAt: Date;
|
|
590
589
|
readonly updatedAt: Date;
|
|
591
|
-
readonly ref?: string | undefined;
|
|
592
590
|
readonly path?: string | undefined;
|
|
591
|
+
readonly ref?: string | undefined;
|
|
592
|
+
readonly gitTreeHash?: string | undefined;
|
|
593
|
+
readonly retainedByPack?: boolean | undefined;
|
|
593
594
|
readonly materializedTargets?: readonly {
|
|
594
595
|
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
595
596
|
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
596
597
|
readonly region?: string | undefined;
|
|
597
598
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
598
599
|
}[] | undefined;
|
|
599
|
-
readonly gitTreeHash?: string | undefined;
|
|
600
|
-
readonly retainedByPack?: boolean | undefined;
|
|
601
600
|
} | {
|
|
602
|
-
readonly type: "local";
|
|
603
601
|
readonly path: string;
|
|
602
|
+
readonly type: "local";
|
|
604
603
|
readonly installedAt: Date;
|
|
605
604
|
readonly updatedAt: Date;
|
|
605
|
+
readonly gitTreeHash?: string | undefined;
|
|
606
|
+
readonly retainedByPack?: boolean | undefined;
|
|
606
607
|
readonly materializedTargets?: readonly {
|
|
607
608
|
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
608
609
|
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
609
610
|
readonly region?: string | undefined;
|
|
610
611
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
611
612
|
}[] | undefined;
|
|
612
|
-
readonly gitTreeHash?: string | undefined;
|
|
613
|
-
readonly retainedByPack?: boolean | undefined;
|
|
614
613
|
} | {
|
|
614
|
+
readonly name: string & import("effect/Brand").Brand<"ExtensionName">;
|
|
615
615
|
readonly type: "registry";
|
|
616
616
|
readonly owner: string & import("effect/Brand").Brand<"Handle">;
|
|
617
|
-
readonly
|
|
617
|
+
readonly installedAt: Date;
|
|
618
|
+
readonly updatedAt: Date;
|
|
618
619
|
readonly resolvedVersion: string & import("effect/Brand").Brand<"Version">;
|
|
619
620
|
readonly integrity: string;
|
|
620
621
|
readonly sourceName: string;
|
|
621
|
-
readonly
|
|
622
|
-
readonly
|
|
622
|
+
readonly gitTreeHash?: string | undefined;
|
|
623
|
+
readonly retainedByPack?: boolean | undefined;
|
|
623
624
|
readonly materializedTargets?: readonly {
|
|
624
625
|
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
625
626
|
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
626
627
|
readonly region?: string | undefined;
|
|
627
628
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
628
629
|
}[] | undefined;
|
|
629
|
-
readonly gitTreeHash?: string | undefined;
|
|
630
|
-
readonly retainedByPack?: boolean | undefined;
|
|
631
630
|
}>, AppError, never>;
|
|
632
631
|
setRule: ({ name, lockEntry, versionRange }: SetRuleArgs) => Effect.Effect<void, AppError, never>;
|
|
633
632
|
setRuleLock: ({ name, lockEntry }: SetRuleArgs) => Effect.Effect<void, AppError, never>;
|
|
@@ -637,11 +636,11 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
637
636
|
updateRuleEntry: (name: string, updater: (entry: RuleEntry) => RuleEntry) => Effect.Effect<void, AppError, never>;
|
|
638
637
|
setRuleEntry: (name: string, entry: RuleEntry) => Effect.Effect<void, AppError, never>;
|
|
639
638
|
getConfiguredHookEntries: () => Effect.Effect<{
|
|
640
|
-
readonly [x: string]: {
|
|
641
|
-
readonly source:
|
|
642
|
-
readonly enabled:
|
|
643
|
-
readonly authored:
|
|
644
|
-
}
|
|
639
|
+
readonly [x: string]: Schema.Struct.ReadonlySide<{
|
|
640
|
+
readonly source: Schema.String;
|
|
641
|
+
readonly enabled: Schema.Boolean;
|
|
642
|
+
readonly authored: Schema.Boolean;
|
|
643
|
+
}, "Type">;
|
|
645
644
|
}, AppError, never>;
|
|
646
645
|
getLockedHooks: () => Effect.Effect<{
|
|
647
646
|
readonly [x: string]: {
|
|
@@ -650,110 +649,110 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
650
649
|
readonly repo: string;
|
|
651
650
|
readonly installedAt: Date;
|
|
652
651
|
readonly updatedAt: Date;
|
|
653
|
-
readonly ref?: string | undefined;
|
|
654
652
|
readonly path?: string | undefined;
|
|
653
|
+
readonly ref?: string | undefined;
|
|
654
|
+
readonly gitTreeHash?: string | undefined;
|
|
655
|
+
readonly retainedByPack?: boolean | undefined;
|
|
655
656
|
readonly materializedTargets?: readonly {
|
|
656
657
|
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
657
658
|
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
658
659
|
readonly region?: string | undefined;
|
|
659
660
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
660
661
|
}[] | undefined;
|
|
661
|
-
readonly gitTreeHash?: string | undefined;
|
|
662
|
-
readonly retainedByPack?: boolean | undefined;
|
|
663
662
|
} | {
|
|
664
663
|
readonly type: "gitlab";
|
|
665
664
|
readonly owner: string;
|
|
666
665
|
readonly repo: string;
|
|
667
666
|
readonly installedAt: Date;
|
|
668
667
|
readonly updatedAt: Date;
|
|
669
|
-
readonly ref?: string | undefined;
|
|
670
668
|
readonly path?: string | undefined;
|
|
669
|
+
readonly ref?: string | undefined;
|
|
670
|
+
readonly gitTreeHash?: string | undefined;
|
|
671
|
+
readonly retainedByPack?: boolean | undefined;
|
|
671
672
|
readonly materializedTargets?: readonly {
|
|
672
673
|
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
673
674
|
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
674
675
|
readonly region?: string | undefined;
|
|
675
676
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
676
677
|
}[] | undefined;
|
|
677
|
-
readonly gitTreeHash?: string | undefined;
|
|
678
|
-
readonly retainedByPack?: boolean | undefined;
|
|
679
678
|
} | {
|
|
680
679
|
readonly type: "bitbucket";
|
|
681
680
|
readonly owner: string;
|
|
682
681
|
readonly repo: string;
|
|
683
682
|
readonly installedAt: Date;
|
|
684
683
|
readonly updatedAt: Date;
|
|
685
|
-
readonly ref?: string | undefined;
|
|
686
684
|
readonly path?: string | undefined;
|
|
685
|
+
readonly ref?: string | undefined;
|
|
686
|
+
readonly gitTreeHash?: string | undefined;
|
|
687
|
+
readonly retainedByPack?: boolean | undefined;
|
|
687
688
|
readonly materializedTargets?: readonly {
|
|
688
689
|
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
689
690
|
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
690
691
|
readonly region?: string | undefined;
|
|
691
692
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
692
693
|
}[] | undefined;
|
|
693
|
-
readonly gitTreeHash?: string | undefined;
|
|
694
|
-
readonly retainedByPack?: boolean | undefined;
|
|
695
694
|
} | {
|
|
696
|
-
readonly type: "azurerepos";
|
|
697
|
-
readonly organization: string;
|
|
698
695
|
readonly project: string;
|
|
696
|
+
readonly type: "azurerepos";
|
|
699
697
|
readonly repo: string;
|
|
698
|
+
readonly organization: string;
|
|
700
699
|
readonly installedAt: Date;
|
|
701
700
|
readonly updatedAt: Date;
|
|
702
|
-
readonly ref?: string | undefined;
|
|
703
701
|
readonly path?: string | undefined;
|
|
702
|
+
readonly ref?: string | undefined;
|
|
703
|
+
readonly gitTreeHash?: string | undefined;
|
|
704
|
+
readonly retainedByPack?: boolean | undefined;
|
|
704
705
|
readonly materializedTargets?: readonly {
|
|
705
706
|
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
706
707
|
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
707
708
|
readonly region?: string | undefined;
|
|
708
709
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
709
710
|
}[] | undefined;
|
|
710
|
-
readonly gitTreeHash?: string | undefined;
|
|
711
|
-
readonly retainedByPack?: boolean | undefined;
|
|
712
711
|
} | {
|
|
713
|
-
readonly type: "git";
|
|
714
712
|
readonly url: string;
|
|
713
|
+
readonly type: "git";
|
|
715
714
|
readonly installedAt: Date;
|
|
716
715
|
readonly updatedAt: Date;
|
|
717
|
-
readonly ref?: string | undefined;
|
|
718
716
|
readonly path?: string | undefined;
|
|
717
|
+
readonly ref?: string | undefined;
|
|
718
|
+
readonly gitTreeHash?: string | undefined;
|
|
719
|
+
readonly retainedByPack?: boolean | undefined;
|
|
719
720
|
readonly materializedTargets?: readonly {
|
|
720
721
|
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
721
722
|
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
722
723
|
readonly region?: string | undefined;
|
|
723
724
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
724
725
|
}[] | undefined;
|
|
725
|
-
readonly gitTreeHash?: string | undefined;
|
|
726
|
-
readonly retainedByPack?: boolean | undefined;
|
|
727
726
|
} | {
|
|
728
|
-
readonly type: "local";
|
|
729
727
|
readonly path: string;
|
|
728
|
+
readonly type: "local";
|
|
730
729
|
readonly installedAt: Date;
|
|
731
730
|
readonly updatedAt: Date;
|
|
731
|
+
readonly gitTreeHash?: string | undefined;
|
|
732
|
+
readonly retainedByPack?: boolean | undefined;
|
|
732
733
|
readonly materializedTargets?: readonly {
|
|
733
734
|
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
734
735
|
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
735
736
|
readonly region?: string | undefined;
|
|
736
737
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
737
738
|
}[] | undefined;
|
|
738
|
-
readonly gitTreeHash?: string | undefined;
|
|
739
|
-
readonly retainedByPack?: boolean | undefined;
|
|
740
739
|
} | {
|
|
740
|
+
readonly name: string & import("effect/Brand").Brand<"ExtensionName">;
|
|
741
741
|
readonly type: "registry";
|
|
742
742
|
readonly owner: string & import("effect/Brand").Brand<"Handle">;
|
|
743
|
-
readonly
|
|
743
|
+
readonly installedAt: Date;
|
|
744
|
+
readonly updatedAt: Date;
|
|
744
745
|
readonly resolvedVersion: string & import("effect/Brand").Brand<"Version">;
|
|
745
746
|
readonly integrity: string;
|
|
746
747
|
readonly sourceName: string;
|
|
747
|
-
readonly
|
|
748
|
-
readonly
|
|
748
|
+
readonly gitTreeHash?: string | undefined;
|
|
749
|
+
readonly retainedByPack?: boolean | undefined;
|
|
749
750
|
readonly materializedTargets?: readonly {
|
|
750
751
|
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
751
752
|
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
752
753
|
readonly region?: string | undefined;
|
|
753
754
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
754
755
|
}[] | undefined;
|
|
755
|
-
readonly gitTreeHash?: string | undefined;
|
|
756
|
-
readonly retainedByPack?: boolean | undefined;
|
|
757
756
|
};
|
|
758
757
|
}, AppError, never>;
|
|
759
758
|
getLockedHookEntry: (name: string) => Effect.Effect<Option.Option<{
|
|
@@ -762,110 +761,110 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
762
761
|
readonly repo: string;
|
|
763
762
|
readonly installedAt: Date;
|
|
764
763
|
readonly updatedAt: Date;
|
|
765
|
-
readonly ref?: string | undefined;
|
|
766
764
|
readonly path?: string | undefined;
|
|
765
|
+
readonly ref?: string | undefined;
|
|
766
|
+
readonly gitTreeHash?: string | undefined;
|
|
767
|
+
readonly retainedByPack?: boolean | undefined;
|
|
767
768
|
readonly materializedTargets?: readonly {
|
|
768
769
|
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
769
770
|
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
770
771
|
readonly region?: string | undefined;
|
|
771
772
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
772
773
|
}[] | undefined;
|
|
773
|
-
readonly gitTreeHash?: string | undefined;
|
|
774
|
-
readonly retainedByPack?: boolean | undefined;
|
|
775
774
|
} | {
|
|
776
775
|
readonly type: "gitlab";
|
|
777
776
|
readonly owner: string;
|
|
778
777
|
readonly repo: string;
|
|
779
778
|
readonly installedAt: Date;
|
|
780
779
|
readonly updatedAt: Date;
|
|
781
|
-
readonly ref?: string | undefined;
|
|
782
780
|
readonly path?: string | undefined;
|
|
781
|
+
readonly ref?: string | undefined;
|
|
782
|
+
readonly gitTreeHash?: string | undefined;
|
|
783
|
+
readonly retainedByPack?: boolean | undefined;
|
|
783
784
|
readonly materializedTargets?: readonly {
|
|
784
785
|
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
785
786
|
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
786
787
|
readonly region?: string | undefined;
|
|
787
788
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
788
789
|
}[] | undefined;
|
|
789
|
-
readonly gitTreeHash?: string | undefined;
|
|
790
|
-
readonly retainedByPack?: boolean | undefined;
|
|
791
790
|
} | {
|
|
792
791
|
readonly type: "bitbucket";
|
|
793
792
|
readonly owner: string;
|
|
794
793
|
readonly repo: string;
|
|
795
794
|
readonly installedAt: Date;
|
|
796
795
|
readonly updatedAt: Date;
|
|
797
|
-
readonly ref?: string | undefined;
|
|
798
796
|
readonly path?: string | undefined;
|
|
797
|
+
readonly ref?: string | undefined;
|
|
798
|
+
readonly gitTreeHash?: string | undefined;
|
|
799
|
+
readonly retainedByPack?: boolean | undefined;
|
|
799
800
|
readonly materializedTargets?: readonly {
|
|
800
801
|
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
801
802
|
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
802
803
|
readonly region?: string | undefined;
|
|
803
804
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
804
805
|
}[] | undefined;
|
|
805
|
-
readonly gitTreeHash?: string | undefined;
|
|
806
|
-
readonly retainedByPack?: boolean | undefined;
|
|
807
806
|
} | {
|
|
808
|
-
readonly type: "azurerepos";
|
|
809
|
-
readonly organization: string;
|
|
810
807
|
readonly project: string;
|
|
808
|
+
readonly type: "azurerepos";
|
|
811
809
|
readonly repo: string;
|
|
810
|
+
readonly organization: string;
|
|
812
811
|
readonly installedAt: Date;
|
|
813
812
|
readonly updatedAt: Date;
|
|
814
|
-
readonly ref?: string | undefined;
|
|
815
813
|
readonly path?: string | undefined;
|
|
814
|
+
readonly ref?: string | undefined;
|
|
815
|
+
readonly gitTreeHash?: string | undefined;
|
|
816
|
+
readonly retainedByPack?: boolean | undefined;
|
|
816
817
|
readonly materializedTargets?: readonly {
|
|
817
818
|
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
818
819
|
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
819
820
|
readonly region?: string | undefined;
|
|
820
821
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
821
822
|
}[] | undefined;
|
|
822
|
-
readonly gitTreeHash?: string | undefined;
|
|
823
|
-
readonly retainedByPack?: boolean | undefined;
|
|
824
823
|
} | {
|
|
825
|
-
readonly type: "git";
|
|
826
824
|
readonly url: string;
|
|
825
|
+
readonly type: "git";
|
|
827
826
|
readonly installedAt: Date;
|
|
828
827
|
readonly updatedAt: Date;
|
|
829
|
-
readonly ref?: string | undefined;
|
|
830
828
|
readonly path?: string | undefined;
|
|
829
|
+
readonly ref?: string | undefined;
|
|
830
|
+
readonly gitTreeHash?: string | undefined;
|
|
831
|
+
readonly retainedByPack?: boolean | undefined;
|
|
831
832
|
readonly materializedTargets?: readonly {
|
|
832
833
|
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
833
834
|
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
834
835
|
readonly region?: string | undefined;
|
|
835
836
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
836
837
|
}[] | undefined;
|
|
837
|
-
readonly gitTreeHash?: string | undefined;
|
|
838
|
-
readonly retainedByPack?: boolean | undefined;
|
|
839
838
|
} | {
|
|
840
|
-
readonly type: "local";
|
|
841
839
|
readonly path: string;
|
|
840
|
+
readonly type: "local";
|
|
842
841
|
readonly installedAt: Date;
|
|
843
842
|
readonly updatedAt: Date;
|
|
843
|
+
readonly gitTreeHash?: string | undefined;
|
|
844
|
+
readonly retainedByPack?: boolean | undefined;
|
|
844
845
|
readonly materializedTargets?: readonly {
|
|
845
846
|
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
846
847
|
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
847
848
|
readonly region?: string | undefined;
|
|
848
849
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
849
850
|
}[] | undefined;
|
|
850
|
-
readonly gitTreeHash?: string | undefined;
|
|
851
|
-
readonly retainedByPack?: boolean | undefined;
|
|
852
851
|
} | {
|
|
852
|
+
readonly name: string & import("effect/Brand").Brand<"ExtensionName">;
|
|
853
853
|
readonly type: "registry";
|
|
854
854
|
readonly owner: string & import("effect/Brand").Brand<"Handle">;
|
|
855
|
-
readonly
|
|
855
|
+
readonly installedAt: Date;
|
|
856
|
+
readonly updatedAt: Date;
|
|
856
857
|
readonly resolvedVersion: string & import("effect/Brand").Brand<"Version">;
|
|
857
858
|
readonly integrity: string;
|
|
858
859
|
readonly sourceName: string;
|
|
859
|
-
readonly
|
|
860
|
-
readonly
|
|
860
|
+
readonly gitTreeHash?: string | undefined;
|
|
861
|
+
readonly retainedByPack?: boolean | undefined;
|
|
861
862
|
readonly materializedTargets?: readonly {
|
|
862
863
|
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
863
864
|
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
864
865
|
readonly region?: string | undefined;
|
|
865
866
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
866
867
|
}[] | undefined;
|
|
867
|
-
readonly gitTreeHash?: string | undefined;
|
|
868
|
-
readonly retainedByPack?: boolean | undefined;
|
|
869
868
|
}>, AppError, never>;
|
|
870
869
|
setHook: ({ name, lockEntry, versionRange }: SetHookArgs) => Effect.Effect<void, AppError, never>;
|
|
871
870
|
setHookLock: ({ name, lockEntry }: SetHookArgs) => Effect.Effect<void, AppError, never>;
|
|
@@ -879,16 +878,16 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
879
878
|
readonly type: "github";
|
|
880
879
|
readonly owner: string;
|
|
881
880
|
readonly repo: string;
|
|
881
|
+
readonly agents: readonly string[];
|
|
882
882
|
readonly installedAt: Date;
|
|
883
883
|
readonly updatedAt: Date;
|
|
884
|
-
readonly agents: readonly string[];
|
|
885
|
-
readonly ref?: string | undefined;
|
|
886
884
|
readonly path?: string | undefined;
|
|
885
|
+
readonly ref?: string | undefined;
|
|
887
886
|
readonly sourceHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
888
887
|
readonly renderedFiles?: {
|
|
889
|
-
readonly [x: string]: readonly {
|
|
890
|
-
readonly path:
|
|
891
|
-
}[];
|
|
888
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
889
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
890
|
+
}, "Type">[];
|
|
892
891
|
} | undefined;
|
|
893
892
|
readonly gitTreeHash?: string | undefined;
|
|
894
893
|
readonly retainedByPack?: boolean | undefined;
|
|
@@ -896,16 +895,16 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
896
895
|
readonly type: "gitlab";
|
|
897
896
|
readonly owner: string;
|
|
898
897
|
readonly repo: string;
|
|
898
|
+
readonly agents: readonly string[];
|
|
899
899
|
readonly installedAt: Date;
|
|
900
900
|
readonly updatedAt: Date;
|
|
901
|
-
readonly agents: readonly string[];
|
|
902
|
-
readonly ref?: string | undefined;
|
|
903
901
|
readonly path?: string | undefined;
|
|
902
|
+
readonly ref?: string | undefined;
|
|
904
903
|
readonly sourceHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
905
904
|
readonly renderedFiles?: {
|
|
906
|
-
readonly [x: string]: readonly {
|
|
907
|
-
readonly path:
|
|
908
|
-
}[];
|
|
905
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
906
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
907
|
+
}, "Type">[];
|
|
909
908
|
} | undefined;
|
|
910
909
|
readonly gitTreeHash?: string | undefined;
|
|
911
910
|
readonly retainedByPack?: boolean | undefined;
|
|
@@ -913,82 +912,82 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
913
912
|
readonly type: "bitbucket";
|
|
914
913
|
readonly owner: string;
|
|
915
914
|
readonly repo: string;
|
|
915
|
+
readonly agents: readonly string[];
|
|
916
916
|
readonly installedAt: Date;
|
|
917
917
|
readonly updatedAt: Date;
|
|
918
|
-
readonly agents: readonly string[];
|
|
919
|
-
readonly ref?: string | undefined;
|
|
920
918
|
readonly path?: string | undefined;
|
|
919
|
+
readonly ref?: string | undefined;
|
|
921
920
|
readonly sourceHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
922
921
|
readonly renderedFiles?: {
|
|
923
|
-
readonly [x: string]: readonly {
|
|
924
|
-
readonly path:
|
|
925
|
-
}[];
|
|
922
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
923
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
924
|
+
}, "Type">[];
|
|
926
925
|
} | undefined;
|
|
927
926
|
readonly gitTreeHash?: string | undefined;
|
|
928
927
|
readonly retainedByPack?: boolean | undefined;
|
|
929
928
|
} | {
|
|
930
|
-
readonly type: "azurerepos";
|
|
931
|
-
readonly organization: string;
|
|
932
929
|
readonly project: string;
|
|
930
|
+
readonly type: "azurerepos";
|
|
933
931
|
readonly repo: string;
|
|
932
|
+
readonly organization: string;
|
|
933
|
+
readonly agents: readonly string[];
|
|
934
934
|
readonly installedAt: Date;
|
|
935
935
|
readonly updatedAt: Date;
|
|
936
|
-
readonly agents: readonly string[];
|
|
937
|
-
readonly ref?: string | undefined;
|
|
938
936
|
readonly path?: string | undefined;
|
|
937
|
+
readonly ref?: string | undefined;
|
|
939
938
|
readonly sourceHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
940
939
|
readonly renderedFiles?: {
|
|
941
|
-
readonly [x: string]: readonly {
|
|
942
|
-
readonly path:
|
|
943
|
-
}[];
|
|
940
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
941
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
942
|
+
}, "Type">[];
|
|
944
943
|
} | undefined;
|
|
945
944
|
readonly gitTreeHash?: string | undefined;
|
|
946
945
|
readonly retainedByPack?: boolean | undefined;
|
|
947
946
|
} | {
|
|
948
|
-
readonly type: "git";
|
|
949
947
|
readonly url: string;
|
|
948
|
+
readonly type: "git";
|
|
949
|
+
readonly agents: readonly string[];
|
|
950
950
|
readonly installedAt: Date;
|
|
951
951
|
readonly updatedAt: Date;
|
|
952
|
-
readonly agents: readonly string[];
|
|
953
|
-
readonly ref?: string | undefined;
|
|
954
952
|
readonly path?: string | undefined;
|
|
953
|
+
readonly ref?: string | undefined;
|
|
955
954
|
readonly sourceHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
956
955
|
readonly renderedFiles?: {
|
|
957
|
-
readonly [x: string]: readonly {
|
|
958
|
-
readonly path:
|
|
959
|
-
}[];
|
|
956
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
957
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
958
|
+
}, "Type">[];
|
|
960
959
|
} | undefined;
|
|
961
960
|
readonly gitTreeHash?: string | undefined;
|
|
962
961
|
readonly retainedByPack?: boolean | undefined;
|
|
963
962
|
} | {
|
|
964
|
-
readonly type: "local";
|
|
965
963
|
readonly path: string;
|
|
964
|
+
readonly type: "local";
|
|
965
|
+
readonly agents: readonly string[];
|
|
966
966
|
readonly installedAt: Date;
|
|
967
967
|
readonly updatedAt: Date;
|
|
968
|
-
readonly agents: readonly string[];
|
|
969
968
|
readonly sourceHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
970
969
|
readonly renderedFiles?: {
|
|
971
|
-
readonly [x: string]: readonly {
|
|
972
|
-
readonly path:
|
|
973
|
-
}[];
|
|
970
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
971
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
972
|
+
}, "Type">[];
|
|
974
973
|
} | undefined;
|
|
975
974
|
readonly gitTreeHash?: string | undefined;
|
|
976
975
|
readonly retainedByPack?: boolean | undefined;
|
|
977
976
|
} | {
|
|
977
|
+
readonly name: string & import("effect/Brand").Brand<"ExtensionName">;
|
|
978
978
|
readonly type: "registry";
|
|
979
979
|
readonly owner: string & import("effect/Brand").Brand<"Handle">;
|
|
980
|
-
readonly
|
|
980
|
+
readonly agents: readonly string[];
|
|
981
|
+
readonly installedAt: Date;
|
|
982
|
+
readonly updatedAt: Date;
|
|
981
983
|
readonly resolvedVersion: string & import("effect/Brand").Brand<"Version">;
|
|
982
984
|
readonly integrity: string;
|
|
983
985
|
readonly sourceName: string;
|
|
984
|
-
readonly installedAt: Date;
|
|
985
|
-
readonly updatedAt: Date;
|
|
986
|
-
readonly agents: readonly string[];
|
|
987
986
|
readonly sourceHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
988
987
|
readonly renderedFiles?: {
|
|
989
|
-
readonly [x: string]: readonly {
|
|
990
|
-
readonly path:
|
|
991
|
-
}[];
|
|
988
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
989
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
990
|
+
}, "Type">[];
|
|
992
991
|
} | undefined;
|
|
993
992
|
readonly gitTreeHash?: string | undefined;
|
|
994
993
|
readonly retainedByPack?: boolean | undefined;
|
|
@@ -998,16 +997,16 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
998
997
|
readonly type: "github";
|
|
999
998
|
readonly owner: string;
|
|
1000
999
|
readonly repo: string;
|
|
1000
|
+
readonly agents: readonly string[];
|
|
1001
1001
|
readonly installedAt: Date;
|
|
1002
1002
|
readonly updatedAt: Date;
|
|
1003
|
-
readonly agents: readonly string[];
|
|
1004
|
-
readonly ref?: string | undefined;
|
|
1005
1003
|
readonly path?: string | undefined;
|
|
1004
|
+
readonly ref?: string | undefined;
|
|
1006
1005
|
readonly sourceHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
1007
1006
|
readonly renderedFiles?: {
|
|
1008
|
-
readonly [x: string]: readonly {
|
|
1009
|
-
readonly path:
|
|
1010
|
-
}[];
|
|
1007
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1008
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1009
|
+
}, "Type">[];
|
|
1011
1010
|
} | undefined;
|
|
1012
1011
|
readonly gitTreeHash?: string | undefined;
|
|
1013
1012
|
readonly retainedByPack?: boolean | undefined;
|
|
@@ -1015,16 +1014,16 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
1015
1014
|
readonly type: "gitlab";
|
|
1016
1015
|
readonly owner: string;
|
|
1017
1016
|
readonly repo: string;
|
|
1017
|
+
readonly agents: readonly string[];
|
|
1018
1018
|
readonly installedAt: Date;
|
|
1019
1019
|
readonly updatedAt: Date;
|
|
1020
|
-
readonly agents: readonly string[];
|
|
1021
|
-
readonly ref?: string | undefined;
|
|
1022
1020
|
readonly path?: string | undefined;
|
|
1021
|
+
readonly ref?: string | undefined;
|
|
1023
1022
|
readonly sourceHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
1024
1023
|
readonly renderedFiles?: {
|
|
1025
|
-
readonly [x: string]: readonly {
|
|
1026
|
-
readonly path:
|
|
1027
|
-
}[];
|
|
1024
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1025
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1026
|
+
}, "Type">[];
|
|
1028
1027
|
} | undefined;
|
|
1029
1028
|
readonly gitTreeHash?: string | undefined;
|
|
1030
1029
|
readonly retainedByPack?: boolean | undefined;
|
|
@@ -1032,82 +1031,82 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
1032
1031
|
readonly type: "bitbucket";
|
|
1033
1032
|
readonly owner: string;
|
|
1034
1033
|
readonly repo: string;
|
|
1034
|
+
readonly agents: readonly string[];
|
|
1035
1035
|
readonly installedAt: Date;
|
|
1036
1036
|
readonly updatedAt: Date;
|
|
1037
|
-
readonly agents: readonly string[];
|
|
1038
|
-
readonly ref?: string | undefined;
|
|
1039
1037
|
readonly path?: string | undefined;
|
|
1038
|
+
readonly ref?: string | undefined;
|
|
1040
1039
|
readonly sourceHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
1041
1040
|
readonly renderedFiles?: {
|
|
1042
|
-
readonly [x: string]: readonly {
|
|
1043
|
-
readonly path:
|
|
1044
|
-
}[];
|
|
1041
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1042
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1043
|
+
}, "Type">[];
|
|
1045
1044
|
} | undefined;
|
|
1046
1045
|
readonly gitTreeHash?: string | undefined;
|
|
1047
1046
|
readonly retainedByPack?: boolean | undefined;
|
|
1048
1047
|
} | {
|
|
1049
|
-
readonly type: "azurerepos";
|
|
1050
|
-
readonly organization: string;
|
|
1051
1048
|
readonly project: string;
|
|
1049
|
+
readonly type: "azurerepos";
|
|
1052
1050
|
readonly repo: string;
|
|
1051
|
+
readonly organization: string;
|
|
1052
|
+
readonly agents: readonly string[];
|
|
1053
1053
|
readonly installedAt: Date;
|
|
1054
1054
|
readonly updatedAt: Date;
|
|
1055
|
-
readonly agents: readonly string[];
|
|
1056
|
-
readonly ref?: string | undefined;
|
|
1057
1055
|
readonly path?: string | undefined;
|
|
1056
|
+
readonly ref?: string | undefined;
|
|
1058
1057
|
readonly sourceHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
1059
1058
|
readonly renderedFiles?: {
|
|
1060
|
-
readonly [x: string]: readonly {
|
|
1061
|
-
readonly path:
|
|
1062
|
-
}[];
|
|
1059
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1060
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1061
|
+
}, "Type">[];
|
|
1063
1062
|
} | undefined;
|
|
1064
1063
|
readonly gitTreeHash?: string | undefined;
|
|
1065
1064
|
readonly retainedByPack?: boolean | undefined;
|
|
1066
1065
|
} | {
|
|
1067
|
-
readonly type: "git";
|
|
1068
1066
|
readonly url: string;
|
|
1067
|
+
readonly type: "git";
|
|
1068
|
+
readonly agents: readonly string[];
|
|
1069
1069
|
readonly installedAt: Date;
|
|
1070
1070
|
readonly updatedAt: Date;
|
|
1071
|
-
readonly agents: readonly string[];
|
|
1072
|
-
readonly ref?: string | undefined;
|
|
1073
1071
|
readonly path?: string | undefined;
|
|
1072
|
+
readonly ref?: string | undefined;
|
|
1074
1073
|
readonly sourceHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
1075
1074
|
readonly renderedFiles?: {
|
|
1076
|
-
readonly [x: string]: readonly {
|
|
1077
|
-
readonly path:
|
|
1078
|
-
}[];
|
|
1075
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1076
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1077
|
+
}, "Type">[];
|
|
1079
1078
|
} | undefined;
|
|
1080
1079
|
readonly gitTreeHash?: string | undefined;
|
|
1081
1080
|
readonly retainedByPack?: boolean | undefined;
|
|
1082
1081
|
} | {
|
|
1083
|
-
readonly type: "local";
|
|
1084
1082
|
readonly path: string;
|
|
1083
|
+
readonly type: "local";
|
|
1084
|
+
readonly agents: readonly string[];
|
|
1085
1085
|
readonly installedAt: Date;
|
|
1086
1086
|
readonly updatedAt: Date;
|
|
1087
|
-
readonly agents: readonly string[];
|
|
1088
1087
|
readonly sourceHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
1089
1088
|
readonly renderedFiles?: {
|
|
1090
|
-
readonly [x: string]: readonly {
|
|
1091
|
-
readonly path:
|
|
1092
|
-
}[];
|
|
1089
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1090
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1091
|
+
}, "Type">[];
|
|
1093
1092
|
} | undefined;
|
|
1094
1093
|
readonly gitTreeHash?: string | undefined;
|
|
1095
1094
|
readonly retainedByPack?: boolean | undefined;
|
|
1096
1095
|
} | {
|
|
1096
|
+
readonly name: string & import("effect/Brand").Brand<"ExtensionName">;
|
|
1097
1097
|
readonly type: "registry";
|
|
1098
1098
|
readonly owner: string & import("effect/Brand").Brand<"Handle">;
|
|
1099
|
-
readonly
|
|
1099
|
+
readonly agents: readonly string[];
|
|
1100
|
+
readonly installedAt: Date;
|
|
1101
|
+
readonly updatedAt: Date;
|
|
1100
1102
|
readonly resolvedVersion: string & import("effect/Brand").Brand<"Version">;
|
|
1101
1103
|
readonly integrity: string;
|
|
1102
1104
|
readonly sourceName: string;
|
|
1103
|
-
readonly installedAt: Date;
|
|
1104
|
-
readonly updatedAt: Date;
|
|
1105
|
-
readonly agents: readonly string[];
|
|
1106
1105
|
readonly sourceHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
1107
1106
|
readonly renderedFiles?: {
|
|
1108
|
-
readonly [x: string]: readonly {
|
|
1109
|
-
readonly path:
|
|
1110
|
-
}[];
|
|
1107
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1108
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1109
|
+
}, "Type">[];
|
|
1111
1110
|
} | undefined;
|
|
1112
1111
|
readonly gitTreeHash?: string | undefined;
|
|
1113
1112
|
readonly retainedByPack?: boolean | undefined;
|
|
@@ -1126,21 +1125,21 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
1126
1125
|
getIgnoredMcpServerPatterns: () => Effect.Effect<readonly string[], AppError, never>;
|
|
1127
1126
|
getIgnoredPackPatterns: () => Effect.Effect<readonly string[], AppError, never>;
|
|
1128
1127
|
getConfiguredPackEntries: () => Effect.Effect<{
|
|
1129
|
-
readonly [x: string]: {
|
|
1130
|
-
readonly source:
|
|
1131
|
-
readonly authored:
|
|
1132
|
-
}
|
|
1128
|
+
readonly [x: string]: Schema.Struct.ReadonlySide<{
|
|
1129
|
+
readonly source: Schema.String;
|
|
1130
|
+
readonly authored: Schema.Boolean;
|
|
1131
|
+
}, "Type">;
|
|
1133
1132
|
}, AppError, never>;
|
|
1134
1133
|
getLockedPacks: () => Effect.Effect<{
|
|
1135
1134
|
readonly [x: string]: {
|
|
1135
|
+
readonly name: string & import("effect/Brand").Brand<"ExtensionName">;
|
|
1136
1136
|
readonly type: "registry";
|
|
1137
1137
|
readonly owner: string & import("effect/Brand").Brand<"Handle">;
|
|
1138
|
-
readonly
|
|
1138
|
+
readonly installedAt: Date;
|
|
1139
|
+
readonly updatedAt: Date;
|
|
1139
1140
|
readonly resolvedVersion: string & import("effect/Brand").Brand<"Version">;
|
|
1140
1141
|
readonly integrity: string;
|
|
1141
1142
|
readonly sourceName: string;
|
|
1142
|
-
readonly installedAt: Date;
|
|
1143
|
-
readonly updatedAt: Date;
|
|
1144
1143
|
readonly resolvedSkills: {
|
|
1145
1144
|
readonly [x: string]: string & import("effect/Brand").Brand<"Version">;
|
|
1146
1145
|
};
|
|
@@ -1155,98 +1154,24 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
1155
1154
|
};
|
|
1156
1155
|
readonly resolvedFiles?: {
|
|
1157
1156
|
readonly [x: string]: string & import("effect/Brand").Brand<"Version">;
|
|
1158
|
-
} | undefined;
|
|
1159
|
-
readonly resolvedRules?: {
|
|
1160
|
-
readonly [x: string]: string & import("effect/Brand").Brand<"Version">;
|
|
1161
|
-
} | undefined;
|
|
1162
|
-
readonly resolvedHooks?: {
|
|
1163
|
-
readonly [x: string]: string & import("effect/Brand").Brand<"Version">;
|
|
1164
|
-
} | undefined;
|
|
1165
|
-
};
|
|
1166
|
-
}, AppError, never>;
|
|
1167
|
-
getLockedPack: (name: string) => Effect.Effect<Option.Option<{
|
|
1168
|
-
readonly type: "registry";
|
|
1169
|
-
readonly owner: string & import("effect/Brand").Brand<"Handle">;
|
|
1170
|
-
readonly name: string & import("effect/Brand").Brand<"ExtensionName">;
|
|
1171
|
-
readonly resolvedVersion: string & import("effect/Brand").Brand<"Version">;
|
|
1172
|
-
readonly integrity: string;
|
|
1173
|
-
readonly sourceName: string;
|
|
1174
|
-
readonly installedAt: Date;
|
|
1175
|
-
readonly updatedAt: Date;
|
|
1176
|
-
readonly resolvedSkills: {
|
|
1177
|
-
readonly [x: string]: string & import("effect/Brand").Brand<"Version">;
|
|
1178
|
-
};
|
|
1179
|
-
readonly resolvedCommands: {
|
|
1180
|
-
readonly [x: string]: string & import("effect/Brand").Brand<"Version">;
|
|
1181
|
-
};
|
|
1182
|
-
readonly resolvedMcpServers: {
|
|
1183
|
-
readonly [x: string]: string & import("effect/Brand").Brand<"Version">;
|
|
1184
|
-
};
|
|
1185
|
-
readonly resolvedSubagents: {
|
|
1186
|
-
readonly [x: string]: string & import("effect/Brand").Brand<"Version">;
|
|
1187
|
-
};
|
|
1188
|
-
readonly resolvedFiles?: {
|
|
1189
|
-
readonly [x: string]: string & import("effect/Brand").Brand<"Version">;
|
|
1190
|
-
} | undefined;
|
|
1191
|
-
readonly resolvedRules?: {
|
|
1192
|
-
readonly [x: string]: string & import("effect/Brand").Brand<"Version">;
|
|
1193
|
-
} | undefined;
|
|
1194
|
-
readonly resolvedHooks?: {
|
|
1195
|
-
readonly [x: string]: string & import("effect/Brand").Brand<"Version">;
|
|
1196
|
-
} | undefined;
|
|
1197
|
-
}>, AppError, never>;
|
|
1198
|
-
setPack: (args: SetPackArgs) => Effect.Effect<void, AppError, never>;
|
|
1199
|
-
setPackEntry: (name: string, entry: PackEntry) => Effect.Effect<void, AppError, never>;
|
|
1200
|
-
removePack: (name: string) => Effect.Effect<void, AppError, never>;
|
|
1201
|
-
getConfiguredLibraryEntries: () => Effect.Effect<{
|
|
1202
|
-
readonly [x: string]: {
|
|
1203
|
-
readonly source: string;
|
|
1204
|
-
readonly enabled: boolean;
|
|
1205
|
-
readonly authored: boolean;
|
|
1206
|
-
};
|
|
1207
|
-
}, AppError, never>;
|
|
1208
|
-
getLockedLibraries: () => Effect.Effect<{
|
|
1209
|
-
readonly [x: string]: {
|
|
1210
|
-
readonly type: "registry";
|
|
1211
|
-
readonly owner: string & import("effect/Brand").Brand<"Handle">;
|
|
1212
|
-
readonly name: string & import("effect/Brand").Brand<"ExtensionName">;
|
|
1213
|
-
readonly sourceName: string;
|
|
1214
|
-
readonly installedAt: Date;
|
|
1215
|
-
readonly updatedAt: Date;
|
|
1216
|
-
readonly resolvedAt: Date;
|
|
1217
|
-
readonly membershipDigest: string;
|
|
1218
|
-
readonly resolvedSkills: {
|
|
1219
|
-
readonly [x: string]: string & import("effect/Brand").Brand<"Version">;
|
|
1220
|
-
};
|
|
1221
|
-
readonly resolvedCommands: {
|
|
1222
|
-
readonly [x: string]: string & import("effect/Brand").Brand<"Version">;
|
|
1223
|
-
};
|
|
1224
|
-
readonly resolvedMcpServers: {
|
|
1225
|
-
readonly [x: string]: string & import("effect/Brand").Brand<"Version">;
|
|
1226
|
-
};
|
|
1227
|
-
readonly resolvedSubagents: {
|
|
1228
|
-
readonly [x: string]: string & import("effect/Brand").Brand<"Version">;
|
|
1229
|
-
};
|
|
1230
|
-
readonly resolvedFiles: {
|
|
1231
|
-
readonly [x: string]: string & import("effect/Brand").Brand<"Version">;
|
|
1232
|
-
};
|
|
1233
|
-
readonly resolvedRules: {
|
|
1157
|
+
} | undefined;
|
|
1158
|
+
readonly resolvedRules?: {
|
|
1234
1159
|
readonly [x: string]: string & import("effect/Brand").Brand<"Version">;
|
|
1235
|
-
};
|
|
1236
|
-
readonly resolvedHooks
|
|
1160
|
+
} | undefined;
|
|
1161
|
+
readonly resolvedHooks?: {
|
|
1237
1162
|
readonly [x: string]: string & import("effect/Brand").Brand<"Version">;
|
|
1238
|
-
};
|
|
1163
|
+
} | undefined;
|
|
1239
1164
|
};
|
|
1240
1165
|
}, AppError, never>;
|
|
1241
|
-
|
|
1166
|
+
getLockedPack: (name: string) => Effect.Effect<Option.Option<{
|
|
1167
|
+
readonly name: string & import("effect/Brand").Brand<"ExtensionName">;
|
|
1242
1168
|
readonly type: "registry";
|
|
1243
1169
|
readonly owner: string & import("effect/Brand").Brand<"Handle">;
|
|
1244
|
-
readonly name: string & import("effect/Brand").Brand<"ExtensionName">;
|
|
1245
|
-
readonly sourceName: string;
|
|
1246
1170
|
readonly installedAt: Date;
|
|
1247
1171
|
readonly updatedAt: Date;
|
|
1248
|
-
readonly
|
|
1249
|
-
readonly
|
|
1172
|
+
readonly resolvedVersion: string & import("effect/Brand").Brand<"Version">;
|
|
1173
|
+
readonly integrity: string;
|
|
1174
|
+
readonly sourceName: string;
|
|
1250
1175
|
readonly resolvedSkills: {
|
|
1251
1176
|
readonly [x: string]: string & import("effect/Brand").Brand<"Version">;
|
|
1252
1177
|
};
|
|
@@ -1259,16 +1184,62 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
1259
1184
|
readonly resolvedSubagents: {
|
|
1260
1185
|
readonly [x: string]: string & import("effect/Brand").Brand<"Version">;
|
|
1261
1186
|
};
|
|
1262
|
-
readonly resolvedFiles
|
|
1187
|
+
readonly resolvedFiles?: {
|
|
1263
1188
|
readonly [x: string]: string & import("effect/Brand").Brand<"Version">;
|
|
1264
|
-
};
|
|
1265
|
-
readonly resolvedRules
|
|
1189
|
+
} | undefined;
|
|
1190
|
+
readonly resolvedRules?: {
|
|
1266
1191
|
readonly [x: string]: string & import("effect/Brand").Brand<"Version">;
|
|
1267
|
-
};
|
|
1268
|
-
readonly resolvedHooks
|
|
1192
|
+
} | undefined;
|
|
1193
|
+
readonly resolvedHooks?: {
|
|
1269
1194
|
readonly [x: string]: string & import("effect/Brand").Brand<"Version">;
|
|
1270
|
-
};
|
|
1195
|
+
} | undefined;
|
|
1271
1196
|
}>, AppError, never>;
|
|
1197
|
+
setPack: (args: SetPackArgs) => Effect.Effect<void, AppError, never>;
|
|
1198
|
+
setPackEntry: (name: string, entry: PackEntry) => Effect.Effect<void, AppError, never>;
|
|
1199
|
+
removePack: (name: string) => Effect.Effect<void, AppError, never>;
|
|
1200
|
+
getConfiguredLibraryEntries: () => Effect.Effect<{
|
|
1201
|
+
readonly [x: string]: Schema.Struct.ReadonlySide<{
|
|
1202
|
+
readonly source: Schema.String;
|
|
1203
|
+
readonly enabled: Schema.Boolean;
|
|
1204
|
+
readonly authored: Schema.Boolean;
|
|
1205
|
+
}, "Type">;
|
|
1206
|
+
}, AppError, never>;
|
|
1207
|
+
getLockedLibraries: () => Effect.Effect<{
|
|
1208
|
+
readonly [x: string]: Schema.Struct.ReadonlySide<{
|
|
1209
|
+
readonly type: Schema.Literal<"registry">;
|
|
1210
|
+
readonly owner: Schema.brand<Schema.String, "Handle">;
|
|
1211
|
+
readonly name: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1212
|
+
readonly sourceName: Schema.String;
|
|
1213
|
+
readonly installedAt: Schema.decodeTo<Schema.DateValid, Schema.NonEmptyString, never, never>;
|
|
1214
|
+
readonly updatedAt: Schema.decodeTo<Schema.DateValid, Schema.NonEmptyString, never, never>;
|
|
1215
|
+
readonly resolvedAt: Schema.decodeTo<Schema.DateValid, Schema.NonEmptyString, never, never>;
|
|
1216
|
+
readonly membershipDigest: Schema.String;
|
|
1217
|
+
readonly resolvedSkills: Schema.$Record<Schema.String, Schema.brand<Schema.String, "Version">>;
|
|
1218
|
+
readonly resolvedCommands: Schema.$Record<Schema.String, Schema.brand<Schema.String, "Version">>;
|
|
1219
|
+
readonly resolvedMcpServers: Schema.$Record<Schema.String, Schema.brand<Schema.String, "Version">>;
|
|
1220
|
+
readonly resolvedSubagents: Schema.$Record<Schema.String, Schema.brand<Schema.String, "Version">>;
|
|
1221
|
+
readonly resolvedFiles: Schema.$Record<Schema.String, Schema.brand<Schema.String, "Version">>;
|
|
1222
|
+
readonly resolvedRules: Schema.$Record<Schema.String, Schema.brand<Schema.String, "Version">>;
|
|
1223
|
+
readonly resolvedHooks: Schema.$Record<Schema.String, Schema.brand<Schema.String, "Version">>;
|
|
1224
|
+
}, "Type">;
|
|
1225
|
+
}, AppError, never>;
|
|
1226
|
+
getLockedLibrary: (name: string) => Effect.Effect<Option.Option<Schema.Struct.ReadonlySide<{
|
|
1227
|
+
readonly type: Schema.Literal<"registry">;
|
|
1228
|
+
readonly owner: Schema.brand<Schema.String, "Handle">;
|
|
1229
|
+
readonly name: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1230
|
+
readonly sourceName: Schema.String;
|
|
1231
|
+
readonly installedAt: Schema.decodeTo<Schema.DateValid, Schema.NonEmptyString, never, never>;
|
|
1232
|
+
readonly updatedAt: Schema.decodeTo<Schema.DateValid, Schema.NonEmptyString, never, never>;
|
|
1233
|
+
readonly resolvedAt: Schema.decodeTo<Schema.DateValid, Schema.NonEmptyString, never, never>;
|
|
1234
|
+
readonly membershipDigest: Schema.String;
|
|
1235
|
+
readonly resolvedSkills: Schema.$Record<Schema.String, Schema.brand<Schema.String, "Version">>;
|
|
1236
|
+
readonly resolvedCommands: Schema.$Record<Schema.String, Schema.brand<Schema.String, "Version">>;
|
|
1237
|
+
readonly resolvedMcpServers: Schema.$Record<Schema.String, Schema.brand<Schema.String, "Version">>;
|
|
1238
|
+
readonly resolvedSubagents: Schema.$Record<Schema.String, Schema.brand<Schema.String, "Version">>;
|
|
1239
|
+
readonly resolvedFiles: Schema.$Record<Schema.String, Schema.brand<Schema.String, "Version">>;
|
|
1240
|
+
readonly resolvedRules: Schema.$Record<Schema.String, Schema.brand<Schema.String, "Version">>;
|
|
1241
|
+
readonly resolvedHooks: Schema.$Record<Schema.String, Schema.brand<Schema.String, "Version">>;
|
|
1242
|
+
}, "Type">>, AppError, never>;
|
|
1272
1243
|
setLibrary: (args: SetLibraryArgs) => Effect.Effect<void, AppError, never>;
|
|
1273
1244
|
setLibraryEntry: (name: string, entry: LibraryEntry) => Effect.Effect<void, AppError, never>;
|
|
1274
1245
|
removeLibrary: (name: string) => Effect.Effect<void, AppError, never>;
|
|
@@ -1278,16 +1249,16 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
1278
1249
|
readonly type: "github";
|
|
1279
1250
|
readonly owner: string;
|
|
1280
1251
|
readonly repo: string;
|
|
1252
|
+
readonly agents: readonly string[];
|
|
1281
1253
|
readonly installedAt: Date;
|
|
1282
1254
|
readonly updatedAt: Date;
|
|
1283
|
-
readonly agents: readonly string[];
|
|
1284
|
-
readonly ref?: string | undefined;
|
|
1285
1255
|
readonly path?: string | undefined;
|
|
1256
|
+
readonly ref?: string | undefined;
|
|
1286
1257
|
readonly sourceHash?: string | undefined;
|
|
1287
1258
|
readonly renderedFiles?: {
|
|
1288
|
-
readonly [x: string]: readonly {
|
|
1289
|
-
readonly path:
|
|
1290
|
-
}[];
|
|
1259
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1260
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1261
|
+
}, "Type">[];
|
|
1291
1262
|
} | undefined;
|
|
1292
1263
|
readonly gitTreeHash?: string | undefined;
|
|
1293
1264
|
readonly retainedByPack?: boolean | undefined;
|
|
@@ -1295,16 +1266,16 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
1295
1266
|
readonly type: "gitlab";
|
|
1296
1267
|
readonly owner: string;
|
|
1297
1268
|
readonly repo: string;
|
|
1269
|
+
readonly agents: readonly string[];
|
|
1298
1270
|
readonly installedAt: Date;
|
|
1299
1271
|
readonly updatedAt: Date;
|
|
1300
|
-
readonly agents: readonly string[];
|
|
1301
|
-
readonly ref?: string | undefined;
|
|
1302
1272
|
readonly path?: string | undefined;
|
|
1273
|
+
readonly ref?: string | undefined;
|
|
1303
1274
|
readonly sourceHash?: string | undefined;
|
|
1304
1275
|
readonly renderedFiles?: {
|
|
1305
|
-
readonly [x: string]: readonly {
|
|
1306
|
-
readonly path:
|
|
1307
|
-
}[];
|
|
1276
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1277
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1278
|
+
}, "Type">[];
|
|
1308
1279
|
} | undefined;
|
|
1309
1280
|
readonly gitTreeHash?: string | undefined;
|
|
1310
1281
|
readonly retainedByPack?: boolean | undefined;
|
|
@@ -1312,82 +1283,82 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
1312
1283
|
readonly type: "bitbucket";
|
|
1313
1284
|
readonly owner: string;
|
|
1314
1285
|
readonly repo: string;
|
|
1286
|
+
readonly agents: readonly string[];
|
|
1315
1287
|
readonly installedAt: Date;
|
|
1316
1288
|
readonly updatedAt: Date;
|
|
1317
|
-
readonly agents: readonly string[];
|
|
1318
|
-
readonly ref?: string | undefined;
|
|
1319
1289
|
readonly path?: string | undefined;
|
|
1290
|
+
readonly ref?: string | undefined;
|
|
1320
1291
|
readonly sourceHash?: string | undefined;
|
|
1321
1292
|
readonly renderedFiles?: {
|
|
1322
|
-
readonly [x: string]: readonly {
|
|
1323
|
-
readonly path:
|
|
1324
|
-
}[];
|
|
1293
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1294
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1295
|
+
}, "Type">[];
|
|
1325
1296
|
} | undefined;
|
|
1326
1297
|
readonly gitTreeHash?: string | undefined;
|
|
1327
1298
|
readonly retainedByPack?: boolean | undefined;
|
|
1328
1299
|
} | {
|
|
1329
|
-
readonly type: "azurerepos";
|
|
1330
|
-
readonly organization: string;
|
|
1331
1300
|
readonly project: string;
|
|
1301
|
+
readonly type: "azurerepos";
|
|
1332
1302
|
readonly repo: string;
|
|
1303
|
+
readonly organization: string;
|
|
1304
|
+
readonly agents: readonly string[];
|
|
1333
1305
|
readonly installedAt: Date;
|
|
1334
1306
|
readonly updatedAt: Date;
|
|
1335
|
-
readonly agents: readonly string[];
|
|
1336
|
-
readonly ref?: string | undefined;
|
|
1337
1307
|
readonly path?: string | undefined;
|
|
1308
|
+
readonly ref?: string | undefined;
|
|
1338
1309
|
readonly sourceHash?: string | undefined;
|
|
1339
1310
|
readonly renderedFiles?: {
|
|
1340
|
-
readonly [x: string]: readonly {
|
|
1341
|
-
readonly path:
|
|
1342
|
-
}[];
|
|
1311
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1312
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1313
|
+
}, "Type">[];
|
|
1343
1314
|
} | undefined;
|
|
1344
1315
|
readonly gitTreeHash?: string | undefined;
|
|
1345
1316
|
readonly retainedByPack?: boolean | undefined;
|
|
1346
1317
|
} | {
|
|
1347
|
-
readonly type: "git";
|
|
1348
1318
|
readonly url: string;
|
|
1319
|
+
readonly type: "git";
|
|
1320
|
+
readonly agents: readonly string[];
|
|
1349
1321
|
readonly installedAt: Date;
|
|
1350
1322
|
readonly updatedAt: Date;
|
|
1351
|
-
readonly agents: readonly string[];
|
|
1352
|
-
readonly ref?: string | undefined;
|
|
1353
1323
|
readonly path?: string | undefined;
|
|
1324
|
+
readonly ref?: string | undefined;
|
|
1354
1325
|
readonly sourceHash?: string | undefined;
|
|
1355
1326
|
readonly renderedFiles?: {
|
|
1356
|
-
readonly [x: string]: readonly {
|
|
1357
|
-
readonly path:
|
|
1358
|
-
}[];
|
|
1327
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1328
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1329
|
+
}, "Type">[];
|
|
1359
1330
|
} | undefined;
|
|
1360
1331
|
readonly gitTreeHash?: string | undefined;
|
|
1361
1332
|
readonly retainedByPack?: boolean | undefined;
|
|
1362
1333
|
} | {
|
|
1363
|
-
readonly type: "local";
|
|
1364
1334
|
readonly path: string;
|
|
1335
|
+
readonly type: "local";
|
|
1336
|
+
readonly agents: readonly string[];
|
|
1365
1337
|
readonly installedAt: Date;
|
|
1366
1338
|
readonly updatedAt: Date;
|
|
1367
|
-
readonly agents: readonly string[];
|
|
1368
1339
|
readonly sourceHash?: string | undefined;
|
|
1369
1340
|
readonly renderedFiles?: {
|
|
1370
|
-
readonly [x: string]: readonly {
|
|
1371
|
-
readonly path:
|
|
1372
|
-
}[];
|
|
1341
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1342
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1343
|
+
}, "Type">[];
|
|
1373
1344
|
} | undefined;
|
|
1374
1345
|
readonly gitTreeHash?: string | undefined;
|
|
1375
1346
|
readonly retainedByPack?: boolean | undefined;
|
|
1376
1347
|
} | {
|
|
1348
|
+
readonly name: string & import("effect/Brand").Brand<"ExtensionName">;
|
|
1377
1349
|
readonly type: "registry";
|
|
1378
1350
|
readonly owner: string & import("effect/Brand").Brand<"Handle">;
|
|
1379
|
-
readonly
|
|
1351
|
+
readonly agents: readonly string[];
|
|
1352
|
+
readonly installedAt: Date;
|
|
1353
|
+
readonly updatedAt: Date;
|
|
1380
1354
|
readonly resolvedVersion: string & import("effect/Brand").Brand<"Version">;
|
|
1381
1355
|
readonly integrity: string;
|
|
1382
1356
|
readonly sourceName: string;
|
|
1383
|
-
readonly installedAt: Date;
|
|
1384
|
-
readonly updatedAt: Date;
|
|
1385
|
-
readonly agents: readonly string[];
|
|
1386
1357
|
readonly sourceHash?: string | undefined;
|
|
1387
1358
|
readonly renderedFiles?: {
|
|
1388
|
-
readonly [x: string]: readonly {
|
|
1389
|
-
readonly path:
|
|
1390
|
-
}[];
|
|
1359
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1360
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1361
|
+
}, "Type">[];
|
|
1391
1362
|
} | undefined;
|
|
1392
1363
|
readonly gitTreeHash?: string | undefined;
|
|
1393
1364
|
readonly retainedByPack?: boolean | undefined;
|
|
@@ -1397,16 +1368,16 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
1397
1368
|
readonly type: "github";
|
|
1398
1369
|
readonly owner: string;
|
|
1399
1370
|
readonly repo: string;
|
|
1371
|
+
readonly agents: readonly string[];
|
|
1400
1372
|
readonly installedAt: Date;
|
|
1401
1373
|
readonly updatedAt: Date;
|
|
1402
|
-
readonly agents: readonly string[];
|
|
1403
|
-
readonly ref?: string | undefined;
|
|
1404
1374
|
readonly path?: string | undefined;
|
|
1375
|
+
readonly ref?: string | undefined;
|
|
1405
1376
|
readonly sourceHash?: string | undefined;
|
|
1406
1377
|
readonly renderedFiles?: {
|
|
1407
|
-
readonly [x: string]: readonly {
|
|
1408
|
-
readonly path:
|
|
1409
|
-
}[];
|
|
1378
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1379
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1380
|
+
}, "Type">[];
|
|
1410
1381
|
} | undefined;
|
|
1411
1382
|
readonly gitTreeHash?: string | undefined;
|
|
1412
1383
|
readonly retainedByPack?: boolean | undefined;
|
|
@@ -1414,16 +1385,16 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
1414
1385
|
readonly type: "gitlab";
|
|
1415
1386
|
readonly owner: string;
|
|
1416
1387
|
readonly repo: string;
|
|
1388
|
+
readonly agents: readonly string[];
|
|
1417
1389
|
readonly installedAt: Date;
|
|
1418
1390
|
readonly updatedAt: Date;
|
|
1419
|
-
readonly agents: readonly string[];
|
|
1420
|
-
readonly ref?: string | undefined;
|
|
1421
1391
|
readonly path?: string | undefined;
|
|
1392
|
+
readonly ref?: string | undefined;
|
|
1422
1393
|
readonly sourceHash?: string | undefined;
|
|
1423
1394
|
readonly renderedFiles?: {
|
|
1424
|
-
readonly [x: string]: readonly {
|
|
1425
|
-
readonly path:
|
|
1426
|
-
}[];
|
|
1395
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1396
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1397
|
+
}, "Type">[];
|
|
1427
1398
|
} | undefined;
|
|
1428
1399
|
readonly gitTreeHash?: string | undefined;
|
|
1429
1400
|
readonly retainedByPack?: boolean | undefined;
|
|
@@ -1431,82 +1402,82 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
1431
1402
|
readonly type: "bitbucket";
|
|
1432
1403
|
readonly owner: string;
|
|
1433
1404
|
readonly repo: string;
|
|
1405
|
+
readonly agents: readonly string[];
|
|
1434
1406
|
readonly installedAt: Date;
|
|
1435
1407
|
readonly updatedAt: Date;
|
|
1436
|
-
readonly agents: readonly string[];
|
|
1437
|
-
readonly ref?: string | undefined;
|
|
1438
1408
|
readonly path?: string | undefined;
|
|
1409
|
+
readonly ref?: string | undefined;
|
|
1439
1410
|
readonly sourceHash?: string | undefined;
|
|
1440
1411
|
readonly renderedFiles?: {
|
|
1441
|
-
readonly [x: string]: readonly {
|
|
1442
|
-
readonly path:
|
|
1443
|
-
}[];
|
|
1412
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1413
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1414
|
+
}, "Type">[];
|
|
1444
1415
|
} | undefined;
|
|
1445
1416
|
readonly gitTreeHash?: string | undefined;
|
|
1446
1417
|
readonly retainedByPack?: boolean | undefined;
|
|
1447
1418
|
} | {
|
|
1448
|
-
readonly type: "azurerepos";
|
|
1449
|
-
readonly organization: string;
|
|
1450
1419
|
readonly project: string;
|
|
1420
|
+
readonly type: "azurerepos";
|
|
1451
1421
|
readonly repo: string;
|
|
1422
|
+
readonly organization: string;
|
|
1423
|
+
readonly agents: readonly string[];
|
|
1452
1424
|
readonly installedAt: Date;
|
|
1453
1425
|
readonly updatedAt: Date;
|
|
1454
|
-
readonly agents: readonly string[];
|
|
1455
|
-
readonly ref?: string | undefined;
|
|
1456
1426
|
readonly path?: string | undefined;
|
|
1427
|
+
readonly ref?: string | undefined;
|
|
1457
1428
|
readonly sourceHash?: string | undefined;
|
|
1458
1429
|
readonly renderedFiles?: {
|
|
1459
|
-
readonly [x: string]: readonly {
|
|
1460
|
-
readonly path:
|
|
1461
|
-
}[];
|
|
1430
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1431
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1432
|
+
}, "Type">[];
|
|
1462
1433
|
} | undefined;
|
|
1463
1434
|
readonly gitTreeHash?: string | undefined;
|
|
1464
1435
|
readonly retainedByPack?: boolean | undefined;
|
|
1465
1436
|
} | {
|
|
1466
|
-
readonly type: "git";
|
|
1467
1437
|
readonly url: string;
|
|
1438
|
+
readonly type: "git";
|
|
1439
|
+
readonly agents: readonly string[];
|
|
1468
1440
|
readonly installedAt: Date;
|
|
1469
1441
|
readonly updatedAt: Date;
|
|
1470
|
-
readonly agents: readonly string[];
|
|
1471
|
-
readonly ref?: string | undefined;
|
|
1472
1442
|
readonly path?: string | undefined;
|
|
1443
|
+
readonly ref?: string | undefined;
|
|
1473
1444
|
readonly sourceHash?: string | undefined;
|
|
1474
1445
|
readonly renderedFiles?: {
|
|
1475
|
-
readonly [x: string]: readonly {
|
|
1476
|
-
readonly path:
|
|
1477
|
-
}[];
|
|
1446
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1447
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1448
|
+
}, "Type">[];
|
|
1478
1449
|
} | undefined;
|
|
1479
1450
|
readonly gitTreeHash?: string | undefined;
|
|
1480
1451
|
readonly retainedByPack?: boolean | undefined;
|
|
1481
1452
|
} | {
|
|
1482
|
-
readonly type: "local";
|
|
1483
1453
|
readonly path: string;
|
|
1454
|
+
readonly type: "local";
|
|
1455
|
+
readonly agents: readonly string[];
|
|
1484
1456
|
readonly installedAt: Date;
|
|
1485
1457
|
readonly updatedAt: Date;
|
|
1486
|
-
readonly agents: readonly string[];
|
|
1487
1458
|
readonly sourceHash?: string | undefined;
|
|
1488
1459
|
readonly renderedFiles?: {
|
|
1489
|
-
readonly [x: string]: readonly {
|
|
1490
|
-
readonly path:
|
|
1491
|
-
}[];
|
|
1460
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1461
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1462
|
+
}, "Type">[];
|
|
1492
1463
|
} | undefined;
|
|
1493
1464
|
readonly gitTreeHash?: string | undefined;
|
|
1494
1465
|
readonly retainedByPack?: boolean | undefined;
|
|
1495
1466
|
} | {
|
|
1467
|
+
readonly name: string & import("effect/Brand").Brand<"ExtensionName">;
|
|
1496
1468
|
readonly type: "registry";
|
|
1497
1469
|
readonly owner: string & import("effect/Brand").Brand<"Handle">;
|
|
1498
|
-
readonly
|
|
1470
|
+
readonly agents: readonly string[];
|
|
1471
|
+
readonly installedAt: Date;
|
|
1472
|
+
readonly updatedAt: Date;
|
|
1499
1473
|
readonly resolvedVersion: string & import("effect/Brand").Brand<"Version">;
|
|
1500
1474
|
readonly integrity: string;
|
|
1501
1475
|
readonly sourceName: string;
|
|
1502
|
-
readonly installedAt: Date;
|
|
1503
|
-
readonly updatedAt: Date;
|
|
1504
|
-
readonly agents: readonly string[];
|
|
1505
1476
|
readonly sourceHash?: string | undefined;
|
|
1506
1477
|
readonly renderedFiles?: {
|
|
1507
|
-
readonly [x: string]: readonly {
|
|
1508
|
-
readonly path:
|
|
1509
|
-
}[];
|
|
1478
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1479
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1480
|
+
}, "Type">[];
|
|
1510
1481
|
} | undefined;
|
|
1511
1482
|
readonly gitTreeHash?: string | undefined;
|
|
1512
1483
|
readonly retainedByPack?: boolean | undefined;
|
|
@@ -1521,16 +1492,16 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
1521
1492
|
readonly type: "github";
|
|
1522
1493
|
readonly owner: string;
|
|
1523
1494
|
readonly repo: string;
|
|
1495
|
+
readonly agents: readonly string[];
|
|
1524
1496
|
readonly installedAt: Date;
|
|
1525
1497
|
readonly updatedAt: Date;
|
|
1526
|
-
readonly agents: readonly string[];
|
|
1527
|
-
readonly ref?: string | undefined;
|
|
1528
1498
|
readonly path?: string | undefined;
|
|
1499
|
+
readonly ref?: string | undefined;
|
|
1529
1500
|
readonly sourceHash?: string | undefined;
|
|
1530
1501
|
readonly renderedFiles?: {
|
|
1531
|
-
readonly [x: string]: readonly {
|
|
1532
|
-
readonly path:
|
|
1533
|
-
}[];
|
|
1502
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1503
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1504
|
+
}, "Type">[];
|
|
1534
1505
|
} | undefined;
|
|
1535
1506
|
readonly gitTreeHash?: string | undefined;
|
|
1536
1507
|
readonly retainedByPack?: boolean | undefined;
|
|
@@ -1538,16 +1509,16 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
1538
1509
|
readonly type: "gitlab";
|
|
1539
1510
|
readonly owner: string;
|
|
1540
1511
|
readonly repo: string;
|
|
1512
|
+
readonly agents: readonly string[];
|
|
1541
1513
|
readonly installedAt: Date;
|
|
1542
1514
|
readonly updatedAt: Date;
|
|
1543
|
-
readonly agents: readonly string[];
|
|
1544
|
-
readonly ref?: string | undefined;
|
|
1545
1515
|
readonly path?: string | undefined;
|
|
1516
|
+
readonly ref?: string | undefined;
|
|
1546
1517
|
readonly sourceHash?: string | undefined;
|
|
1547
1518
|
readonly renderedFiles?: {
|
|
1548
|
-
readonly [x: string]: readonly {
|
|
1549
|
-
readonly path:
|
|
1550
|
-
}[];
|
|
1519
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1520
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1521
|
+
}, "Type">[];
|
|
1551
1522
|
} | undefined;
|
|
1552
1523
|
readonly gitTreeHash?: string | undefined;
|
|
1553
1524
|
readonly retainedByPack?: boolean | undefined;
|
|
@@ -1555,82 +1526,82 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
1555
1526
|
readonly type: "bitbucket";
|
|
1556
1527
|
readonly owner: string;
|
|
1557
1528
|
readonly repo: string;
|
|
1529
|
+
readonly agents: readonly string[];
|
|
1558
1530
|
readonly installedAt: Date;
|
|
1559
1531
|
readonly updatedAt: Date;
|
|
1560
|
-
readonly agents: readonly string[];
|
|
1561
|
-
readonly ref?: string | undefined;
|
|
1562
1532
|
readonly path?: string | undefined;
|
|
1533
|
+
readonly ref?: string | undefined;
|
|
1563
1534
|
readonly sourceHash?: string | undefined;
|
|
1564
1535
|
readonly renderedFiles?: {
|
|
1565
|
-
readonly [x: string]: readonly {
|
|
1566
|
-
readonly path:
|
|
1567
|
-
}[];
|
|
1536
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1537
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1538
|
+
}, "Type">[];
|
|
1568
1539
|
} | undefined;
|
|
1569
1540
|
readonly gitTreeHash?: string | undefined;
|
|
1570
1541
|
readonly retainedByPack?: boolean | undefined;
|
|
1571
1542
|
} | {
|
|
1572
|
-
readonly type: "azurerepos";
|
|
1573
|
-
readonly organization: string;
|
|
1574
1543
|
readonly project: string;
|
|
1544
|
+
readonly type: "azurerepos";
|
|
1575
1545
|
readonly repo: string;
|
|
1546
|
+
readonly organization: string;
|
|
1547
|
+
readonly agents: readonly string[];
|
|
1576
1548
|
readonly installedAt: Date;
|
|
1577
1549
|
readonly updatedAt: Date;
|
|
1578
|
-
readonly agents: readonly string[];
|
|
1579
|
-
readonly ref?: string | undefined;
|
|
1580
1550
|
readonly path?: string | undefined;
|
|
1551
|
+
readonly ref?: string | undefined;
|
|
1581
1552
|
readonly sourceHash?: string | undefined;
|
|
1582
1553
|
readonly renderedFiles?: {
|
|
1583
|
-
readonly [x: string]: readonly {
|
|
1584
|
-
readonly path:
|
|
1585
|
-
}[];
|
|
1554
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1555
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1556
|
+
}, "Type">[];
|
|
1586
1557
|
} | undefined;
|
|
1587
1558
|
readonly gitTreeHash?: string | undefined;
|
|
1588
1559
|
readonly retainedByPack?: boolean | undefined;
|
|
1589
1560
|
} | {
|
|
1590
|
-
readonly type: "git";
|
|
1591
1561
|
readonly url: string;
|
|
1562
|
+
readonly type: "git";
|
|
1563
|
+
readonly agents: readonly string[];
|
|
1592
1564
|
readonly installedAt: Date;
|
|
1593
1565
|
readonly updatedAt: Date;
|
|
1594
|
-
readonly agents: readonly string[];
|
|
1595
|
-
readonly ref?: string | undefined;
|
|
1596
1566
|
readonly path?: string | undefined;
|
|
1567
|
+
readonly ref?: string | undefined;
|
|
1597
1568
|
readonly sourceHash?: string | undefined;
|
|
1598
1569
|
readonly renderedFiles?: {
|
|
1599
|
-
readonly [x: string]: readonly {
|
|
1600
|
-
readonly path:
|
|
1601
|
-
}[];
|
|
1570
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1571
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1572
|
+
}, "Type">[];
|
|
1602
1573
|
} | undefined;
|
|
1603
1574
|
readonly gitTreeHash?: string | undefined;
|
|
1604
1575
|
readonly retainedByPack?: boolean | undefined;
|
|
1605
1576
|
} | {
|
|
1606
|
-
readonly type: "local";
|
|
1607
1577
|
readonly path: string;
|
|
1578
|
+
readonly type: "local";
|
|
1579
|
+
readonly agents: readonly string[];
|
|
1608
1580
|
readonly installedAt: Date;
|
|
1609
1581
|
readonly updatedAt: Date;
|
|
1610
|
-
readonly agents: readonly string[];
|
|
1611
1582
|
readonly sourceHash?: string | undefined;
|
|
1612
1583
|
readonly renderedFiles?: {
|
|
1613
|
-
readonly [x: string]: readonly {
|
|
1614
|
-
readonly path:
|
|
1615
|
-
}[];
|
|
1584
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1585
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1586
|
+
}, "Type">[];
|
|
1616
1587
|
} | undefined;
|
|
1617
1588
|
readonly gitTreeHash?: string | undefined;
|
|
1618
1589
|
readonly retainedByPack?: boolean | undefined;
|
|
1619
1590
|
} | {
|
|
1591
|
+
readonly name: string & import("effect/Brand").Brand<"ExtensionName">;
|
|
1620
1592
|
readonly type: "registry";
|
|
1621
1593
|
readonly owner: string & import("effect/Brand").Brand<"Handle">;
|
|
1622
|
-
readonly
|
|
1594
|
+
readonly agents: readonly string[];
|
|
1595
|
+
readonly installedAt: Date;
|
|
1596
|
+
readonly updatedAt: Date;
|
|
1623
1597
|
readonly resolvedVersion: string & import("effect/Brand").Brand<"Version">;
|
|
1624
1598
|
readonly integrity: string;
|
|
1625
1599
|
readonly sourceName: string;
|
|
1626
|
-
readonly installedAt: Date;
|
|
1627
|
-
readonly updatedAt: Date;
|
|
1628
|
-
readonly agents: readonly string[];
|
|
1629
1600
|
readonly sourceHash?: string | undefined;
|
|
1630
1601
|
readonly renderedFiles?: {
|
|
1631
|
-
readonly [x: string]: readonly {
|
|
1632
|
-
readonly path:
|
|
1633
|
-
}[];
|
|
1602
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1603
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1604
|
+
}, "Type">[];
|
|
1634
1605
|
} | undefined;
|
|
1635
1606
|
readonly gitTreeHash?: string | undefined;
|
|
1636
1607
|
readonly retainedByPack?: boolean | undefined;
|
|
@@ -1640,16 +1611,16 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
1640
1611
|
readonly type: "github";
|
|
1641
1612
|
readonly owner: string;
|
|
1642
1613
|
readonly repo: string;
|
|
1614
|
+
readonly agents: readonly string[];
|
|
1643
1615
|
readonly installedAt: Date;
|
|
1644
1616
|
readonly updatedAt: Date;
|
|
1645
|
-
readonly agents: readonly string[];
|
|
1646
|
-
readonly ref?: string | undefined;
|
|
1647
1617
|
readonly path?: string | undefined;
|
|
1618
|
+
readonly ref?: string | undefined;
|
|
1648
1619
|
readonly sourceHash?: string | undefined;
|
|
1649
1620
|
readonly renderedFiles?: {
|
|
1650
|
-
readonly [x: string]: readonly {
|
|
1651
|
-
readonly path:
|
|
1652
|
-
}[];
|
|
1621
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1622
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1623
|
+
}, "Type">[];
|
|
1653
1624
|
} | undefined;
|
|
1654
1625
|
readonly gitTreeHash?: string | undefined;
|
|
1655
1626
|
readonly retainedByPack?: boolean | undefined;
|
|
@@ -1657,16 +1628,16 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
1657
1628
|
readonly type: "gitlab";
|
|
1658
1629
|
readonly owner: string;
|
|
1659
1630
|
readonly repo: string;
|
|
1631
|
+
readonly agents: readonly string[];
|
|
1660
1632
|
readonly installedAt: Date;
|
|
1661
1633
|
readonly updatedAt: Date;
|
|
1662
|
-
readonly agents: readonly string[];
|
|
1663
|
-
readonly ref?: string | undefined;
|
|
1664
1634
|
readonly path?: string | undefined;
|
|
1635
|
+
readonly ref?: string | undefined;
|
|
1665
1636
|
readonly sourceHash?: string | undefined;
|
|
1666
1637
|
readonly renderedFiles?: {
|
|
1667
|
-
readonly [x: string]: readonly {
|
|
1668
|
-
readonly path:
|
|
1669
|
-
}[];
|
|
1638
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1639
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1640
|
+
}, "Type">[];
|
|
1670
1641
|
} | undefined;
|
|
1671
1642
|
readonly gitTreeHash?: string | undefined;
|
|
1672
1643
|
readonly retainedByPack?: boolean | undefined;
|
|
@@ -1674,92 +1645,92 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
1674
1645
|
readonly type: "bitbucket";
|
|
1675
1646
|
readonly owner: string;
|
|
1676
1647
|
readonly repo: string;
|
|
1648
|
+
readonly agents: readonly string[];
|
|
1677
1649
|
readonly installedAt: Date;
|
|
1678
1650
|
readonly updatedAt: Date;
|
|
1679
|
-
readonly agents: readonly string[];
|
|
1680
|
-
readonly ref?: string | undefined;
|
|
1681
1651
|
readonly path?: string | undefined;
|
|
1652
|
+
readonly ref?: string | undefined;
|
|
1682
1653
|
readonly sourceHash?: string | undefined;
|
|
1683
1654
|
readonly renderedFiles?: {
|
|
1684
|
-
readonly [x: string]: readonly {
|
|
1685
|
-
readonly path:
|
|
1686
|
-
}[];
|
|
1655
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1656
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1657
|
+
}, "Type">[];
|
|
1687
1658
|
} | undefined;
|
|
1688
1659
|
readonly gitTreeHash?: string | undefined;
|
|
1689
1660
|
readonly retainedByPack?: boolean | undefined;
|
|
1690
1661
|
} | {
|
|
1691
|
-
readonly type: "azurerepos";
|
|
1692
|
-
readonly organization: string;
|
|
1693
1662
|
readonly project: string;
|
|
1663
|
+
readonly type: "azurerepos";
|
|
1694
1664
|
readonly repo: string;
|
|
1665
|
+
readonly organization: string;
|
|
1666
|
+
readonly agents: readonly string[];
|
|
1695
1667
|
readonly installedAt: Date;
|
|
1696
1668
|
readonly updatedAt: Date;
|
|
1697
|
-
readonly agents: readonly string[];
|
|
1698
|
-
readonly ref?: string | undefined;
|
|
1699
1669
|
readonly path?: string | undefined;
|
|
1670
|
+
readonly ref?: string | undefined;
|
|
1700
1671
|
readonly sourceHash?: string | undefined;
|
|
1701
1672
|
readonly renderedFiles?: {
|
|
1702
|
-
readonly [x: string]: readonly {
|
|
1703
|
-
readonly path:
|
|
1704
|
-
}[];
|
|
1673
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1674
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1675
|
+
}, "Type">[];
|
|
1705
1676
|
} | undefined;
|
|
1706
1677
|
readonly gitTreeHash?: string | undefined;
|
|
1707
1678
|
readonly retainedByPack?: boolean | undefined;
|
|
1708
1679
|
} | {
|
|
1709
|
-
readonly type: "git";
|
|
1710
1680
|
readonly url: string;
|
|
1681
|
+
readonly type: "git";
|
|
1682
|
+
readonly agents: readonly string[];
|
|
1711
1683
|
readonly installedAt: Date;
|
|
1712
1684
|
readonly updatedAt: Date;
|
|
1713
|
-
readonly agents: readonly string[];
|
|
1714
|
-
readonly ref?: string | undefined;
|
|
1715
1685
|
readonly path?: string | undefined;
|
|
1686
|
+
readonly ref?: string | undefined;
|
|
1716
1687
|
readonly sourceHash?: string | undefined;
|
|
1717
1688
|
readonly renderedFiles?: {
|
|
1718
|
-
readonly [x: string]: readonly {
|
|
1719
|
-
readonly path:
|
|
1720
|
-
}[];
|
|
1689
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1690
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1691
|
+
}, "Type">[];
|
|
1721
1692
|
} | undefined;
|
|
1722
1693
|
readonly gitTreeHash?: string | undefined;
|
|
1723
1694
|
readonly retainedByPack?: boolean | undefined;
|
|
1724
1695
|
} | {
|
|
1725
|
-
readonly type: "local";
|
|
1726
1696
|
readonly path: string;
|
|
1697
|
+
readonly type: "local";
|
|
1698
|
+
readonly agents: readonly string[];
|
|
1727
1699
|
readonly installedAt: Date;
|
|
1728
1700
|
readonly updatedAt: Date;
|
|
1729
|
-
readonly agents: readonly string[];
|
|
1730
1701
|
readonly sourceHash?: string | undefined;
|
|
1731
1702
|
readonly renderedFiles?: {
|
|
1732
|
-
readonly [x: string]: readonly {
|
|
1733
|
-
readonly path:
|
|
1734
|
-
}[];
|
|
1703
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1704
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1705
|
+
}, "Type">[];
|
|
1735
1706
|
} | undefined;
|
|
1736
1707
|
readonly gitTreeHash?: string | undefined;
|
|
1737
1708
|
readonly retainedByPack?: boolean | undefined;
|
|
1738
1709
|
} | {
|
|
1710
|
+
readonly name: string & import("effect/Brand").Brand<"ExtensionName">;
|
|
1739
1711
|
readonly type: "registry";
|
|
1740
1712
|
readonly owner: string & import("effect/Brand").Brand<"Handle">;
|
|
1741
|
-
readonly
|
|
1713
|
+
readonly agents: readonly string[];
|
|
1714
|
+
readonly installedAt: Date;
|
|
1715
|
+
readonly updatedAt: Date;
|
|
1742
1716
|
readonly resolvedVersion: string & import("effect/Brand").Brand<"Version">;
|
|
1743
1717
|
readonly integrity: string;
|
|
1744
1718
|
readonly sourceName: string;
|
|
1745
|
-
readonly installedAt: Date;
|
|
1746
|
-
readonly updatedAt: Date;
|
|
1747
|
-
readonly agents: readonly string[];
|
|
1748
1719
|
readonly sourceHash?: string | undefined;
|
|
1749
1720
|
readonly renderedFiles?: {
|
|
1750
|
-
readonly [x: string]: readonly {
|
|
1751
|
-
readonly path:
|
|
1752
|
-
}[];
|
|
1721
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1722
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1723
|
+
}, "Type">[];
|
|
1753
1724
|
} | undefined;
|
|
1754
1725
|
readonly gitTreeHash?: string | undefined;
|
|
1755
1726
|
readonly retainedByPack?: boolean | undefined;
|
|
1756
1727
|
}>, AppError, never>;
|
|
1757
1728
|
getConfiguredSubagentEntries: () => Effect.Effect<{
|
|
1758
|
-
readonly [x: string]: {
|
|
1759
|
-
readonly source:
|
|
1760
|
-
readonly enabled:
|
|
1761
|
-
readonly authored:
|
|
1762
|
-
}
|
|
1729
|
+
readonly [x: string]: Schema.Struct.ReadonlySide<{
|
|
1730
|
+
readonly source: Schema.String;
|
|
1731
|
+
readonly enabled: Schema.Boolean;
|
|
1732
|
+
readonly authored: Schema.Boolean;
|
|
1733
|
+
}, "Type">;
|
|
1763
1734
|
}, AppError, never>;
|
|
1764
1735
|
setSubagent: ({ name, lockEntry }: SetSubagentArgs) => Effect.Effect<void, AppError, never>;
|
|
1765
1736
|
setSubagentLock: ({ name, lockEntry }: SetSubagentArgs) => Effect.Effect<void, AppError, never>;
|
|
@@ -1775,8 +1746,8 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
1775
1746
|
readonly repo: string;
|
|
1776
1747
|
readonly installedAt: Date;
|
|
1777
1748
|
readonly updatedAt: Date;
|
|
1778
|
-
readonly ref?: string | undefined;
|
|
1779
1749
|
readonly path?: string | undefined;
|
|
1750
|
+
readonly ref?: string | undefined;
|
|
1780
1751
|
readonly gitTreeHash?: string | undefined;
|
|
1781
1752
|
readonly retainedByPack?: boolean | undefined;
|
|
1782
1753
|
readonly syncedAgents?: readonly string[] | undefined;
|
|
@@ -1786,8 +1757,8 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
1786
1757
|
readonly repo: string;
|
|
1787
1758
|
readonly installedAt: Date;
|
|
1788
1759
|
readonly updatedAt: Date;
|
|
1789
|
-
readonly ref?: string | undefined;
|
|
1790
1760
|
readonly path?: string | undefined;
|
|
1761
|
+
readonly ref?: string | undefined;
|
|
1791
1762
|
readonly gitTreeHash?: string | undefined;
|
|
1792
1763
|
readonly retainedByPack?: boolean | undefined;
|
|
1793
1764
|
readonly syncedAgents?: readonly string[] | undefined;
|
|
@@ -1797,65 +1768,65 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
1797
1768
|
readonly repo: string;
|
|
1798
1769
|
readonly installedAt: Date;
|
|
1799
1770
|
readonly updatedAt: Date;
|
|
1800
|
-
readonly ref?: string | undefined;
|
|
1801
1771
|
readonly path?: string | undefined;
|
|
1772
|
+
readonly ref?: string | undefined;
|
|
1802
1773
|
readonly gitTreeHash?: string | undefined;
|
|
1803
1774
|
readonly retainedByPack?: boolean | undefined;
|
|
1804
1775
|
readonly syncedAgents?: readonly string[] | undefined;
|
|
1805
1776
|
} | {
|
|
1806
|
-
readonly type: "azurerepos";
|
|
1807
|
-
readonly organization: string;
|
|
1808
1777
|
readonly project: string;
|
|
1778
|
+
readonly type: "azurerepos";
|
|
1809
1779
|
readonly repo: string;
|
|
1780
|
+
readonly organization: string;
|
|
1810
1781
|
readonly installedAt: Date;
|
|
1811
1782
|
readonly updatedAt: Date;
|
|
1812
|
-
readonly ref?: string | undefined;
|
|
1813
1783
|
readonly path?: string | undefined;
|
|
1784
|
+
readonly ref?: string | undefined;
|
|
1814
1785
|
readonly gitTreeHash?: string | undefined;
|
|
1815
1786
|
readonly retainedByPack?: boolean | undefined;
|
|
1816
1787
|
readonly syncedAgents?: readonly string[] | undefined;
|
|
1817
1788
|
} | {
|
|
1818
|
-
readonly type: "git";
|
|
1819
1789
|
readonly url: string;
|
|
1790
|
+
readonly type: "git";
|
|
1820
1791
|
readonly installedAt: Date;
|
|
1821
1792
|
readonly updatedAt: Date;
|
|
1822
|
-
readonly ref?: string | undefined;
|
|
1823
1793
|
readonly path?: string | undefined;
|
|
1794
|
+
readonly ref?: string | undefined;
|
|
1824
1795
|
readonly gitTreeHash?: string | undefined;
|
|
1825
1796
|
readonly retainedByPack?: boolean | undefined;
|
|
1826
1797
|
readonly syncedAgents?: readonly string[] | undefined;
|
|
1827
1798
|
} | {
|
|
1828
|
-
readonly type: "local";
|
|
1829
1799
|
readonly path: string;
|
|
1800
|
+
readonly type: "local";
|
|
1830
1801
|
readonly installedAt: Date;
|
|
1831
1802
|
readonly updatedAt: Date;
|
|
1832
1803
|
readonly gitTreeHash?: string | undefined;
|
|
1833
1804
|
readonly retainedByPack?: boolean | undefined;
|
|
1834
1805
|
readonly syncedAgents?: readonly string[] | undefined;
|
|
1835
1806
|
} | {
|
|
1807
|
+
readonly name: string & import("effect/Brand").Brand<"ExtensionName">;
|
|
1836
1808
|
readonly type: "registry";
|
|
1837
1809
|
readonly owner: string & import("effect/Brand").Brand<"Handle">;
|
|
1838
|
-
readonly
|
|
1810
|
+
readonly installedAt: Date;
|
|
1811
|
+
readonly updatedAt: Date;
|
|
1839
1812
|
readonly resolvedVersion: string & import("effect/Brand").Brand<"Version">;
|
|
1840
1813
|
readonly integrity: string;
|
|
1841
1814
|
readonly sourceName: string;
|
|
1842
|
-
readonly installedAt: Date;
|
|
1843
|
-
readonly updatedAt: Date;
|
|
1844
1815
|
readonly gitTreeHash?: string | undefined;
|
|
1845
1816
|
readonly retainedByPack?: boolean | undefined;
|
|
1846
1817
|
readonly syncedAgents?: readonly string[] | undefined;
|
|
1847
1818
|
} | {
|
|
1819
|
+
readonly type: "inline";
|
|
1848
1820
|
readonly installedAt: Date;
|
|
1849
1821
|
readonly updatedAt: Date;
|
|
1850
|
-
readonly type: "inline";
|
|
1851
|
-
readonly gitTreeHash?: string | undefined;
|
|
1852
|
-
readonly retainedByPack?: boolean | undefined;
|
|
1853
|
-
readonly command?: string | undefined;
|
|
1854
|
-
readonly args?: readonly string[] | undefined;
|
|
1855
1822
|
readonly url?: string | undefined;
|
|
1823
|
+
readonly command?: string | undefined;
|
|
1856
1824
|
readonly headers?: {
|
|
1857
1825
|
readonly [x: string]: string;
|
|
1858
1826
|
} | undefined;
|
|
1827
|
+
readonly args?: readonly string[] | undefined;
|
|
1828
|
+
readonly gitTreeHash?: string | undefined;
|
|
1829
|
+
readonly retainedByPack?: boolean | undefined;
|
|
1859
1830
|
readonly syncedAgents?: readonly string[] | undefined;
|
|
1860
1831
|
};
|
|
1861
1832
|
}, AppError, never>;
|
|
@@ -1865,8 +1836,8 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
1865
1836
|
readonly repo: string;
|
|
1866
1837
|
readonly installedAt: Date;
|
|
1867
1838
|
readonly updatedAt: Date;
|
|
1868
|
-
readonly ref?: string | undefined;
|
|
1869
1839
|
readonly path?: string | undefined;
|
|
1840
|
+
readonly ref?: string | undefined;
|
|
1870
1841
|
readonly gitTreeHash?: string | undefined;
|
|
1871
1842
|
readonly retainedByPack?: boolean | undefined;
|
|
1872
1843
|
readonly syncedAgents?: readonly string[] | undefined;
|
|
@@ -1876,8 +1847,8 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
1876
1847
|
readonly repo: string;
|
|
1877
1848
|
readonly installedAt: Date;
|
|
1878
1849
|
readonly updatedAt: Date;
|
|
1879
|
-
readonly ref?: string | undefined;
|
|
1880
1850
|
readonly path?: string | undefined;
|
|
1851
|
+
readonly ref?: string | undefined;
|
|
1881
1852
|
readonly gitTreeHash?: string | undefined;
|
|
1882
1853
|
readonly retainedByPack?: boolean | undefined;
|
|
1883
1854
|
readonly syncedAgents?: readonly string[] | undefined;
|
|
@@ -1887,65 +1858,65 @@ export declare const loadWorkspace: (options: WorkspaceLayerOptions) => Effect.E
|
|
|
1887
1858
|
readonly repo: string;
|
|
1888
1859
|
readonly installedAt: Date;
|
|
1889
1860
|
readonly updatedAt: Date;
|
|
1890
|
-
readonly ref?: string | undefined;
|
|
1891
1861
|
readonly path?: string | undefined;
|
|
1862
|
+
readonly ref?: string | undefined;
|
|
1892
1863
|
readonly gitTreeHash?: string | undefined;
|
|
1893
1864
|
readonly retainedByPack?: boolean | undefined;
|
|
1894
1865
|
readonly syncedAgents?: readonly string[] | undefined;
|
|
1895
1866
|
} | {
|
|
1896
|
-
readonly type: "azurerepos";
|
|
1897
|
-
readonly organization: string;
|
|
1898
1867
|
readonly project: string;
|
|
1868
|
+
readonly type: "azurerepos";
|
|
1899
1869
|
readonly repo: string;
|
|
1870
|
+
readonly organization: string;
|
|
1900
1871
|
readonly installedAt: Date;
|
|
1901
1872
|
readonly updatedAt: Date;
|
|
1902
|
-
readonly ref?: string | undefined;
|
|
1903
1873
|
readonly path?: string | undefined;
|
|
1874
|
+
readonly ref?: string | undefined;
|
|
1904
1875
|
readonly gitTreeHash?: string | undefined;
|
|
1905
1876
|
readonly retainedByPack?: boolean | undefined;
|
|
1906
1877
|
readonly syncedAgents?: readonly string[] | undefined;
|
|
1907
1878
|
} | {
|
|
1908
|
-
readonly type: "git";
|
|
1909
1879
|
readonly url: string;
|
|
1880
|
+
readonly type: "git";
|
|
1910
1881
|
readonly installedAt: Date;
|
|
1911
1882
|
readonly updatedAt: Date;
|
|
1912
|
-
readonly ref?: string | undefined;
|
|
1913
1883
|
readonly path?: string | undefined;
|
|
1884
|
+
readonly ref?: string | undefined;
|
|
1914
1885
|
readonly gitTreeHash?: string | undefined;
|
|
1915
1886
|
readonly retainedByPack?: boolean | undefined;
|
|
1916
1887
|
readonly syncedAgents?: readonly string[] | undefined;
|
|
1917
1888
|
} | {
|
|
1918
|
-
readonly type: "local";
|
|
1919
1889
|
readonly path: string;
|
|
1890
|
+
readonly type: "local";
|
|
1920
1891
|
readonly installedAt: Date;
|
|
1921
1892
|
readonly updatedAt: Date;
|
|
1922
1893
|
readonly gitTreeHash?: string | undefined;
|
|
1923
1894
|
readonly retainedByPack?: boolean | undefined;
|
|
1924
1895
|
readonly syncedAgents?: readonly string[] | undefined;
|
|
1925
1896
|
} | {
|
|
1897
|
+
readonly name: string & import("effect/Brand").Brand<"ExtensionName">;
|
|
1926
1898
|
readonly type: "registry";
|
|
1927
1899
|
readonly owner: string & import("effect/Brand").Brand<"Handle">;
|
|
1928
|
-
readonly
|
|
1900
|
+
readonly installedAt: Date;
|
|
1901
|
+
readonly updatedAt: Date;
|
|
1929
1902
|
readonly resolvedVersion: string & import("effect/Brand").Brand<"Version">;
|
|
1930
1903
|
readonly integrity: string;
|
|
1931
1904
|
readonly sourceName: string;
|
|
1932
|
-
readonly installedAt: Date;
|
|
1933
|
-
readonly updatedAt: Date;
|
|
1934
1905
|
readonly gitTreeHash?: string | undefined;
|
|
1935
1906
|
readonly retainedByPack?: boolean | undefined;
|
|
1936
1907
|
readonly syncedAgents?: readonly string[] | undefined;
|
|
1937
1908
|
} | {
|
|
1909
|
+
readonly type: "inline";
|
|
1938
1910
|
readonly installedAt: Date;
|
|
1939
1911
|
readonly updatedAt: Date;
|
|
1940
|
-
readonly type: "inline";
|
|
1941
|
-
readonly gitTreeHash?: string | undefined;
|
|
1942
|
-
readonly retainedByPack?: boolean | undefined;
|
|
1943
|
-
readonly command?: string | undefined;
|
|
1944
|
-
readonly args?: readonly string[] | undefined;
|
|
1945
1912
|
readonly url?: string | undefined;
|
|
1913
|
+
readonly command?: string | undefined;
|
|
1946
1914
|
readonly headers?: {
|
|
1947
1915
|
readonly [x: string]: string;
|
|
1948
1916
|
} | undefined;
|
|
1917
|
+
readonly args?: readonly string[] | undefined;
|
|
1918
|
+
readonly gitTreeHash?: string | undefined;
|
|
1919
|
+
readonly retainedByPack?: boolean | undefined;
|
|
1949
1920
|
readonly syncedAgents?: readonly string[] | undefined;
|
|
1950
1921
|
}>, AppError, never>;
|
|
1951
1922
|
setMcpServer: ({ name, lockEntry, env, enabled }: SetMcpServerArgs) => Effect.Effect<void, AppError, never>;
|