@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
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
import * as FileSystem from "effect/FileSystem";
|
|
11
11
|
import * as Path from "effect/Path";
|
|
12
12
|
import * as Effect from "effect/Effect";
|
|
13
|
+
import * as Schema from "effect/Schema";
|
|
13
14
|
import { type AppError } from "../app-error/index.js";
|
|
14
15
|
import { type Lockfile } from "./schema.js";
|
|
15
16
|
/**
|
|
@@ -61,22 +62,21 @@ export declare const applyLockfileUpdates: (lockfile: Lockfile, updates: Readonl
|
|
|
61
62
|
* @experimental This API is unstable and may change without notice.
|
|
62
63
|
*/
|
|
63
64
|
export declare const commitLockfileUpdates: (axmDir: string, lockfile: Lockfile, updates: ReadonlyArray<LockfileUpdate>) => Effect.Effect<{
|
|
64
|
-
readonly lockfileVersion: number;
|
|
65
65
|
readonly skills: {
|
|
66
66
|
readonly [x: string]: {
|
|
67
67
|
readonly type: "github";
|
|
68
68
|
readonly owner: string;
|
|
69
69
|
readonly repo: string;
|
|
70
|
+
readonly agents: readonly string[];
|
|
70
71
|
readonly installedAt: Date;
|
|
71
72
|
readonly updatedAt: Date;
|
|
72
|
-
readonly agents: readonly string[];
|
|
73
|
-
readonly ref?: string | undefined;
|
|
74
73
|
readonly path?: string | undefined;
|
|
74
|
+
readonly ref?: string | undefined;
|
|
75
75
|
readonly sourceHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
76
76
|
readonly renderedFiles?: {
|
|
77
|
-
readonly [x: string]: readonly {
|
|
78
|
-
readonly path:
|
|
79
|
-
}[];
|
|
77
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
78
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
79
|
+
}, "Type">[];
|
|
80
80
|
} | undefined;
|
|
81
81
|
readonly gitTreeHash?: string | undefined;
|
|
82
82
|
readonly retainedByPack?: boolean | undefined;
|
|
@@ -84,16 +84,16 @@ export declare const commitLockfileUpdates: (axmDir: string, lockfile: Lockfile,
|
|
|
84
84
|
readonly type: "gitlab";
|
|
85
85
|
readonly owner: string;
|
|
86
86
|
readonly repo: string;
|
|
87
|
+
readonly agents: readonly string[];
|
|
87
88
|
readonly installedAt: Date;
|
|
88
89
|
readonly updatedAt: Date;
|
|
89
|
-
readonly agents: readonly string[];
|
|
90
|
-
readonly ref?: string | undefined;
|
|
91
90
|
readonly path?: string | undefined;
|
|
91
|
+
readonly ref?: string | undefined;
|
|
92
92
|
readonly sourceHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
93
93
|
readonly renderedFiles?: {
|
|
94
|
-
readonly [x: string]: readonly {
|
|
95
|
-
readonly path:
|
|
96
|
-
}[];
|
|
94
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
95
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
96
|
+
}, "Type">[];
|
|
97
97
|
} | undefined;
|
|
98
98
|
readonly gitTreeHash?: string | undefined;
|
|
99
99
|
readonly retainedByPack?: boolean | undefined;
|
|
@@ -101,788 +101,789 @@ export declare const commitLockfileUpdates: (axmDir: string, lockfile: Lockfile,
|
|
|
101
101
|
readonly type: "bitbucket";
|
|
102
102
|
readonly owner: string;
|
|
103
103
|
readonly repo: string;
|
|
104
|
+
readonly agents: readonly string[];
|
|
104
105
|
readonly installedAt: Date;
|
|
105
106
|
readonly updatedAt: Date;
|
|
106
|
-
readonly agents: readonly string[];
|
|
107
|
-
readonly ref?: string | undefined;
|
|
108
107
|
readonly path?: string | undefined;
|
|
108
|
+
readonly ref?: string | undefined;
|
|
109
109
|
readonly sourceHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
110
110
|
readonly renderedFiles?: {
|
|
111
|
-
readonly [x: string]: readonly {
|
|
112
|
-
readonly path:
|
|
113
|
-
}[];
|
|
111
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
112
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
113
|
+
}, "Type">[];
|
|
114
114
|
} | undefined;
|
|
115
115
|
readonly gitTreeHash?: string | undefined;
|
|
116
116
|
readonly retainedByPack?: boolean | undefined;
|
|
117
117
|
} | {
|
|
118
|
-
readonly type: "azurerepos";
|
|
119
|
-
readonly organization: string;
|
|
120
118
|
readonly project: string;
|
|
119
|
+
readonly type: "azurerepos";
|
|
121
120
|
readonly repo: string;
|
|
121
|
+
readonly organization: string;
|
|
122
|
+
readonly agents: readonly string[];
|
|
122
123
|
readonly installedAt: Date;
|
|
123
124
|
readonly updatedAt: Date;
|
|
124
|
-
readonly agents: readonly string[];
|
|
125
|
-
readonly ref?: string | undefined;
|
|
126
125
|
readonly path?: string | undefined;
|
|
126
|
+
readonly ref?: string | undefined;
|
|
127
127
|
readonly sourceHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
128
128
|
readonly renderedFiles?: {
|
|
129
|
-
readonly [x: string]: readonly {
|
|
130
|
-
readonly path:
|
|
131
|
-
}[];
|
|
129
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
130
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
131
|
+
}, "Type">[];
|
|
132
132
|
} | undefined;
|
|
133
133
|
readonly gitTreeHash?: string | undefined;
|
|
134
134
|
readonly retainedByPack?: boolean | undefined;
|
|
135
135
|
} | {
|
|
136
|
-
readonly type: "git";
|
|
137
136
|
readonly url: string;
|
|
137
|
+
readonly type: "git";
|
|
138
|
+
readonly agents: readonly string[];
|
|
138
139
|
readonly installedAt: Date;
|
|
139
140
|
readonly updatedAt: Date;
|
|
140
|
-
readonly agents: readonly string[];
|
|
141
|
-
readonly ref?: string | undefined;
|
|
142
141
|
readonly path?: string | undefined;
|
|
142
|
+
readonly ref?: string | undefined;
|
|
143
143
|
readonly sourceHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
144
144
|
readonly renderedFiles?: {
|
|
145
|
-
readonly [x: string]: readonly {
|
|
146
|
-
readonly path:
|
|
147
|
-
}[];
|
|
145
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
146
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
147
|
+
}, "Type">[];
|
|
148
148
|
} | undefined;
|
|
149
149
|
readonly gitTreeHash?: string | undefined;
|
|
150
150
|
readonly retainedByPack?: boolean | undefined;
|
|
151
151
|
} | {
|
|
152
|
-
readonly type: "local";
|
|
153
152
|
readonly path: string;
|
|
153
|
+
readonly type: "local";
|
|
154
|
+
readonly agents: readonly string[];
|
|
154
155
|
readonly installedAt: Date;
|
|
155
156
|
readonly updatedAt: Date;
|
|
156
|
-
readonly agents: readonly string[];
|
|
157
157
|
readonly sourceHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
158
158
|
readonly renderedFiles?: {
|
|
159
|
-
readonly [x: string]: readonly {
|
|
160
|
-
readonly path:
|
|
161
|
-
}[];
|
|
159
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
160
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
161
|
+
}, "Type">[];
|
|
162
162
|
} | undefined;
|
|
163
163
|
readonly gitTreeHash?: string | undefined;
|
|
164
164
|
readonly retainedByPack?: boolean | undefined;
|
|
165
165
|
} | {
|
|
166
|
+
readonly name: string & import("effect/Brand").Brand<"ExtensionName">;
|
|
166
167
|
readonly type: "registry";
|
|
167
168
|
readonly owner: string & import("effect/Brand").Brand<"Handle">;
|
|
168
|
-
readonly
|
|
169
|
+
readonly agents: readonly string[];
|
|
170
|
+
readonly installedAt: Date;
|
|
171
|
+
readonly updatedAt: Date;
|
|
169
172
|
readonly resolvedVersion: string & import("effect/Brand").Brand<"Version">;
|
|
170
173
|
readonly integrity: string;
|
|
171
174
|
readonly sourceName: string;
|
|
172
|
-
readonly installedAt: Date;
|
|
173
|
-
readonly updatedAt: Date;
|
|
174
|
-
readonly agents: readonly string[];
|
|
175
175
|
readonly sourceHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
176
176
|
readonly renderedFiles?: {
|
|
177
|
-
readonly [x: string]: readonly {
|
|
178
|
-
readonly path:
|
|
179
|
-
}[];
|
|
177
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
178
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
179
|
+
}, "Type">[];
|
|
180
180
|
} | undefined;
|
|
181
181
|
readonly gitTreeHash?: string | undefined;
|
|
182
182
|
readonly retainedByPack?: boolean | undefined;
|
|
183
183
|
};
|
|
184
184
|
};
|
|
185
|
-
readonly
|
|
185
|
+
readonly lockfileVersion: number;
|
|
186
|
+
readonly files?: {
|
|
186
187
|
readonly [x: string]: {
|
|
187
188
|
readonly type: "github";
|
|
188
189
|
readonly owner: string;
|
|
189
190
|
readonly repo: string;
|
|
190
191
|
readonly installedAt: Date;
|
|
191
192
|
readonly updatedAt: Date;
|
|
192
|
-
readonly agents: readonly string[];
|
|
193
|
-
readonly ref?: string | undefined;
|
|
194
193
|
readonly path?: string | undefined;
|
|
195
|
-
readonly
|
|
196
|
-
readonly renderedFiles?: {
|
|
197
|
-
readonly [x: string]: readonly {
|
|
198
|
-
readonly path: string & import("effect/Brand").Brand<"RelativePath"> & import("effect/Brand").Brand<"RenderedFilePath">;
|
|
199
|
-
}[];
|
|
200
|
-
} | undefined;
|
|
194
|
+
readonly ref?: string | undefined;
|
|
201
195
|
readonly gitTreeHash?: string | undefined;
|
|
202
196
|
readonly retainedByPack?: boolean | undefined;
|
|
197
|
+
readonly resolvedInputs?: {
|
|
198
|
+
readonly [x: string]: string | number | boolean;
|
|
199
|
+
} | undefined;
|
|
200
|
+
readonly materializedTargets?: readonly {
|
|
201
|
+
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
202
|
+
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
203
|
+
readonly region?: string | undefined;
|
|
204
|
+
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
205
|
+
}[] | undefined;
|
|
203
206
|
} | {
|
|
204
207
|
readonly type: "gitlab";
|
|
205
208
|
readonly owner: string;
|
|
206
209
|
readonly repo: string;
|
|
207
210
|
readonly installedAt: Date;
|
|
208
211
|
readonly updatedAt: Date;
|
|
209
|
-
readonly agents: readonly string[];
|
|
210
|
-
readonly ref?: string | undefined;
|
|
211
212
|
readonly path?: string | undefined;
|
|
212
|
-
readonly
|
|
213
|
-
readonly renderedFiles?: {
|
|
214
|
-
readonly [x: string]: readonly {
|
|
215
|
-
readonly path: string & import("effect/Brand").Brand<"RelativePath"> & import("effect/Brand").Brand<"RenderedFilePath">;
|
|
216
|
-
}[];
|
|
217
|
-
} | undefined;
|
|
213
|
+
readonly ref?: string | undefined;
|
|
218
214
|
readonly gitTreeHash?: string | undefined;
|
|
219
215
|
readonly retainedByPack?: boolean | undefined;
|
|
216
|
+
readonly resolvedInputs?: {
|
|
217
|
+
readonly [x: string]: string | number | boolean;
|
|
218
|
+
} | undefined;
|
|
219
|
+
readonly materializedTargets?: readonly {
|
|
220
|
+
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
221
|
+
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
222
|
+
readonly region?: string | undefined;
|
|
223
|
+
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
224
|
+
}[] | undefined;
|
|
220
225
|
} | {
|
|
221
226
|
readonly type: "bitbucket";
|
|
222
227
|
readonly owner: string;
|
|
223
228
|
readonly repo: string;
|
|
224
229
|
readonly installedAt: Date;
|
|
225
230
|
readonly updatedAt: Date;
|
|
226
|
-
readonly agents: readonly string[];
|
|
227
|
-
readonly ref?: string | undefined;
|
|
228
231
|
readonly path?: string | undefined;
|
|
229
|
-
readonly
|
|
230
|
-
readonly renderedFiles?: {
|
|
231
|
-
readonly [x: string]: readonly {
|
|
232
|
-
readonly path: string & import("effect/Brand").Brand<"RelativePath"> & import("effect/Brand").Brand<"RenderedFilePath">;
|
|
233
|
-
}[];
|
|
234
|
-
} | undefined;
|
|
232
|
+
readonly ref?: string | undefined;
|
|
235
233
|
readonly gitTreeHash?: string | undefined;
|
|
236
234
|
readonly retainedByPack?: boolean | undefined;
|
|
235
|
+
readonly resolvedInputs?: {
|
|
236
|
+
readonly [x: string]: string | number | boolean;
|
|
237
|
+
} | undefined;
|
|
238
|
+
readonly materializedTargets?: readonly {
|
|
239
|
+
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
240
|
+
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
241
|
+
readonly region?: string | undefined;
|
|
242
|
+
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
243
|
+
}[] | undefined;
|
|
237
244
|
} | {
|
|
238
|
-
readonly type: "azurerepos";
|
|
239
|
-
readonly organization: string;
|
|
240
245
|
readonly project: string;
|
|
246
|
+
readonly type: "azurerepos";
|
|
241
247
|
readonly repo: string;
|
|
248
|
+
readonly organization: string;
|
|
242
249
|
readonly installedAt: Date;
|
|
243
250
|
readonly updatedAt: Date;
|
|
244
|
-
readonly agents: readonly string[];
|
|
245
|
-
readonly ref?: string | undefined;
|
|
246
251
|
readonly path?: string | undefined;
|
|
247
|
-
readonly
|
|
248
|
-
readonly renderedFiles?: {
|
|
249
|
-
readonly [x: string]: readonly {
|
|
250
|
-
readonly path: string & import("effect/Brand").Brand<"RelativePath"> & import("effect/Brand").Brand<"RenderedFilePath">;
|
|
251
|
-
}[];
|
|
252
|
-
} | undefined;
|
|
252
|
+
readonly ref?: string | undefined;
|
|
253
253
|
readonly gitTreeHash?: string | undefined;
|
|
254
254
|
readonly retainedByPack?: boolean | undefined;
|
|
255
|
+
readonly resolvedInputs?: {
|
|
256
|
+
readonly [x: string]: string | number | boolean;
|
|
257
|
+
} | undefined;
|
|
258
|
+
readonly materializedTargets?: readonly {
|
|
259
|
+
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
260
|
+
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
261
|
+
readonly region?: string | undefined;
|
|
262
|
+
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
263
|
+
}[] | undefined;
|
|
255
264
|
} | {
|
|
256
|
-
readonly type: "git";
|
|
257
265
|
readonly url: string;
|
|
266
|
+
readonly type: "git";
|
|
258
267
|
readonly installedAt: Date;
|
|
259
268
|
readonly updatedAt: Date;
|
|
260
|
-
readonly agents: readonly string[];
|
|
261
|
-
readonly ref?: string | undefined;
|
|
262
269
|
readonly path?: string | undefined;
|
|
263
|
-
readonly
|
|
264
|
-
readonly renderedFiles?: {
|
|
265
|
-
readonly [x: string]: readonly {
|
|
266
|
-
readonly path: string & import("effect/Brand").Brand<"RelativePath"> & import("effect/Brand").Brand<"RenderedFilePath">;
|
|
267
|
-
}[];
|
|
268
|
-
} | undefined;
|
|
270
|
+
readonly ref?: string | undefined;
|
|
269
271
|
readonly gitTreeHash?: string | undefined;
|
|
270
272
|
readonly retainedByPack?: boolean | undefined;
|
|
273
|
+
readonly resolvedInputs?: {
|
|
274
|
+
readonly [x: string]: string | number | boolean;
|
|
275
|
+
} | undefined;
|
|
276
|
+
readonly materializedTargets?: readonly {
|
|
277
|
+
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
278
|
+
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
279
|
+
readonly region?: string | undefined;
|
|
280
|
+
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
281
|
+
}[] | undefined;
|
|
271
282
|
} | {
|
|
272
|
-
readonly type: "local";
|
|
273
283
|
readonly path: string;
|
|
284
|
+
readonly type: "local";
|
|
274
285
|
readonly installedAt: Date;
|
|
275
286
|
readonly updatedAt: Date;
|
|
276
|
-
readonly agents: readonly string[];
|
|
277
|
-
readonly sourceHash?: string | undefined;
|
|
278
|
-
readonly renderedFiles?: {
|
|
279
|
-
readonly [x: string]: readonly {
|
|
280
|
-
readonly path: string & import("effect/Brand").Brand<"RelativePath"> & import("effect/Brand").Brand<"RenderedFilePath">;
|
|
281
|
-
}[];
|
|
282
|
-
} | undefined;
|
|
283
287
|
readonly gitTreeHash?: string | undefined;
|
|
284
288
|
readonly retainedByPack?: boolean | undefined;
|
|
289
|
+
readonly resolvedInputs?: {
|
|
290
|
+
readonly [x: string]: string | number | boolean;
|
|
291
|
+
} | undefined;
|
|
292
|
+
readonly materializedTargets?: readonly {
|
|
293
|
+
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
294
|
+
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
295
|
+
readonly region?: string | undefined;
|
|
296
|
+
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
297
|
+
}[] | undefined;
|
|
285
298
|
} | {
|
|
299
|
+
readonly name: string & import("effect/Brand").Brand<"ExtensionName">;
|
|
286
300
|
readonly type: "registry";
|
|
287
301
|
readonly owner: string & import("effect/Brand").Brand<"Handle">;
|
|
288
|
-
readonly
|
|
302
|
+
readonly installedAt: Date;
|
|
303
|
+
readonly updatedAt: Date;
|
|
289
304
|
readonly resolvedVersion: string & import("effect/Brand").Brand<"Version">;
|
|
290
305
|
readonly integrity: string;
|
|
291
306
|
readonly sourceName: string;
|
|
292
|
-
readonly installedAt: Date;
|
|
293
|
-
readonly updatedAt: Date;
|
|
294
|
-
readonly agents: readonly string[];
|
|
295
|
-
readonly sourceHash?: string | undefined;
|
|
296
|
-
readonly renderedFiles?: {
|
|
297
|
-
readonly [x: string]: readonly {
|
|
298
|
-
readonly path: string & import("effect/Brand").Brand<"RelativePath"> & import("effect/Brand").Brand<"RenderedFilePath">;
|
|
299
|
-
}[];
|
|
300
|
-
} | undefined;
|
|
301
307
|
readonly gitTreeHash?: string | undefined;
|
|
302
308
|
readonly retainedByPack?: boolean | undefined;
|
|
309
|
+
readonly resolvedInputs?: {
|
|
310
|
+
readonly [x: string]: string | number | boolean;
|
|
311
|
+
} | undefined;
|
|
312
|
+
readonly materializedTargets?: readonly {
|
|
313
|
+
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
314
|
+
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
315
|
+
readonly region?: string | undefined;
|
|
316
|
+
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
317
|
+
}[] | undefined;
|
|
303
318
|
};
|
|
304
319
|
} | undefined;
|
|
305
|
-
readonly
|
|
320
|
+
readonly mcpServers?: {
|
|
306
321
|
readonly [x: string]: {
|
|
307
322
|
readonly type: "github";
|
|
308
323
|
readonly owner: string;
|
|
309
324
|
readonly repo: string;
|
|
310
325
|
readonly installedAt: Date;
|
|
311
326
|
readonly updatedAt: Date;
|
|
312
|
-
readonly agents: readonly string[];
|
|
313
|
-
readonly ref?: string | undefined;
|
|
314
327
|
readonly path?: string | undefined;
|
|
315
|
-
readonly
|
|
316
|
-
readonly renderedFiles?: {
|
|
317
|
-
readonly [x: string]: readonly {
|
|
318
|
-
readonly path: string & import("effect/Brand").Brand<"RelativePath"> & import("effect/Brand").Brand<"RenderedFilePath">;
|
|
319
|
-
}[];
|
|
320
|
-
} | undefined;
|
|
328
|
+
readonly ref?: string | undefined;
|
|
321
329
|
readonly gitTreeHash?: string | undefined;
|
|
322
330
|
readonly retainedByPack?: boolean | undefined;
|
|
331
|
+
readonly syncedAgents?: readonly string[] | undefined;
|
|
323
332
|
} | {
|
|
324
333
|
readonly type: "gitlab";
|
|
325
334
|
readonly owner: string;
|
|
326
335
|
readonly repo: string;
|
|
327
336
|
readonly installedAt: Date;
|
|
328
337
|
readonly updatedAt: Date;
|
|
329
|
-
readonly agents: readonly string[];
|
|
330
|
-
readonly ref?: string | undefined;
|
|
331
338
|
readonly path?: string | undefined;
|
|
332
|
-
readonly
|
|
333
|
-
readonly renderedFiles?: {
|
|
334
|
-
readonly [x: string]: readonly {
|
|
335
|
-
readonly path: string & import("effect/Brand").Brand<"RelativePath"> & import("effect/Brand").Brand<"RenderedFilePath">;
|
|
336
|
-
}[];
|
|
337
|
-
} | undefined;
|
|
339
|
+
readonly ref?: string | undefined;
|
|
338
340
|
readonly gitTreeHash?: string | undefined;
|
|
339
341
|
readonly retainedByPack?: boolean | undefined;
|
|
342
|
+
readonly syncedAgents?: readonly string[] | undefined;
|
|
340
343
|
} | {
|
|
341
344
|
readonly type: "bitbucket";
|
|
342
345
|
readonly owner: string;
|
|
343
346
|
readonly repo: string;
|
|
344
347
|
readonly installedAt: Date;
|
|
345
348
|
readonly updatedAt: Date;
|
|
346
|
-
readonly agents: readonly string[];
|
|
347
|
-
readonly ref?: string | undefined;
|
|
348
349
|
readonly path?: string | undefined;
|
|
349
|
-
readonly
|
|
350
|
-
readonly renderedFiles?: {
|
|
351
|
-
readonly [x: string]: readonly {
|
|
352
|
-
readonly path: string & import("effect/Brand").Brand<"RelativePath"> & import("effect/Brand").Brand<"RenderedFilePath">;
|
|
353
|
-
}[];
|
|
354
|
-
} | undefined;
|
|
350
|
+
readonly ref?: string | undefined;
|
|
355
351
|
readonly gitTreeHash?: string | undefined;
|
|
356
352
|
readonly retainedByPack?: boolean | undefined;
|
|
353
|
+
readonly syncedAgents?: readonly string[] | undefined;
|
|
357
354
|
} | {
|
|
358
|
-
readonly type: "azurerepos";
|
|
359
|
-
readonly organization: string;
|
|
360
355
|
readonly project: string;
|
|
356
|
+
readonly type: "azurerepos";
|
|
361
357
|
readonly repo: string;
|
|
358
|
+
readonly organization: string;
|
|
362
359
|
readonly installedAt: Date;
|
|
363
360
|
readonly updatedAt: Date;
|
|
364
|
-
readonly agents: readonly string[];
|
|
365
|
-
readonly ref?: string | undefined;
|
|
366
361
|
readonly path?: string | undefined;
|
|
367
|
-
readonly
|
|
368
|
-
readonly renderedFiles?: {
|
|
369
|
-
readonly [x: string]: readonly {
|
|
370
|
-
readonly path: string & import("effect/Brand").Brand<"RelativePath"> & import("effect/Brand").Brand<"RenderedFilePath">;
|
|
371
|
-
}[];
|
|
372
|
-
} | undefined;
|
|
362
|
+
readonly ref?: string | undefined;
|
|
373
363
|
readonly gitTreeHash?: string | undefined;
|
|
374
364
|
readonly retainedByPack?: boolean | undefined;
|
|
365
|
+
readonly syncedAgents?: readonly string[] | undefined;
|
|
375
366
|
} | {
|
|
376
|
-
readonly type: "git";
|
|
377
367
|
readonly url: string;
|
|
368
|
+
readonly type: "git";
|
|
378
369
|
readonly installedAt: Date;
|
|
379
370
|
readonly updatedAt: Date;
|
|
380
|
-
readonly agents: readonly string[];
|
|
381
|
-
readonly ref?: string | undefined;
|
|
382
371
|
readonly path?: string | undefined;
|
|
383
|
-
readonly
|
|
384
|
-
readonly renderedFiles?: {
|
|
385
|
-
readonly [x: string]: readonly {
|
|
386
|
-
readonly path: string & import("effect/Brand").Brand<"RelativePath"> & import("effect/Brand").Brand<"RenderedFilePath">;
|
|
387
|
-
}[];
|
|
388
|
-
} | undefined;
|
|
372
|
+
readonly ref?: string | undefined;
|
|
389
373
|
readonly gitTreeHash?: string | undefined;
|
|
390
374
|
readonly retainedByPack?: boolean | undefined;
|
|
375
|
+
readonly syncedAgents?: readonly string[] | undefined;
|
|
391
376
|
} | {
|
|
392
|
-
readonly type: "local";
|
|
393
377
|
readonly path: string;
|
|
378
|
+
readonly type: "local";
|
|
394
379
|
readonly installedAt: Date;
|
|
395
380
|
readonly updatedAt: Date;
|
|
396
|
-
readonly agents: readonly string[];
|
|
397
|
-
readonly sourceHash?: string | undefined;
|
|
398
|
-
readonly renderedFiles?: {
|
|
399
|
-
readonly [x: string]: readonly {
|
|
400
|
-
readonly path: string & import("effect/Brand").Brand<"RelativePath"> & import("effect/Brand").Brand<"RenderedFilePath">;
|
|
401
|
-
}[];
|
|
402
|
-
} | undefined;
|
|
403
381
|
readonly gitTreeHash?: string | undefined;
|
|
404
382
|
readonly retainedByPack?: boolean | undefined;
|
|
383
|
+
readonly syncedAgents?: readonly string[] | undefined;
|
|
405
384
|
} | {
|
|
385
|
+
readonly name: string & import("effect/Brand").Brand<"ExtensionName">;
|
|
406
386
|
readonly type: "registry";
|
|
407
387
|
readonly owner: string & import("effect/Brand").Brand<"Handle">;
|
|
408
|
-
readonly
|
|
388
|
+
readonly installedAt: Date;
|
|
389
|
+
readonly updatedAt: Date;
|
|
409
390
|
readonly resolvedVersion: string & import("effect/Brand").Brand<"Version">;
|
|
410
391
|
readonly integrity: string;
|
|
411
392
|
readonly sourceName: string;
|
|
393
|
+
readonly gitTreeHash?: string | undefined;
|
|
394
|
+
readonly retainedByPack?: boolean | undefined;
|
|
395
|
+
readonly syncedAgents?: readonly string[] | undefined;
|
|
396
|
+
} | {
|
|
397
|
+
readonly type: "inline";
|
|
412
398
|
readonly installedAt: Date;
|
|
413
399
|
readonly updatedAt: Date;
|
|
414
|
-
readonly
|
|
415
|
-
readonly
|
|
416
|
-
readonly
|
|
417
|
-
readonly [x: string]:
|
|
418
|
-
readonly path: string & import("effect/Brand").Brand<"RelativePath"> & import("effect/Brand").Brand<"RenderedFilePath">;
|
|
419
|
-
}[];
|
|
400
|
+
readonly url?: string | undefined;
|
|
401
|
+
readonly command?: string | undefined;
|
|
402
|
+
readonly headers?: {
|
|
403
|
+
readonly [x: string]: string;
|
|
420
404
|
} | undefined;
|
|
405
|
+
readonly args?: readonly string[] | undefined;
|
|
421
406
|
readonly gitTreeHash?: string | undefined;
|
|
422
407
|
readonly retainedByPack?: boolean | undefined;
|
|
408
|
+
readonly syncedAgents?: readonly string[] | undefined;
|
|
423
409
|
};
|
|
424
410
|
} | undefined;
|
|
425
|
-
readonly
|
|
411
|
+
readonly hooks?: {
|
|
426
412
|
readonly [x: string]: {
|
|
427
413
|
readonly type: "github";
|
|
428
414
|
readonly owner: string;
|
|
429
415
|
readonly repo: string;
|
|
430
416
|
readonly installedAt: Date;
|
|
431
417
|
readonly updatedAt: Date;
|
|
432
|
-
readonly ref?: string | undefined;
|
|
433
418
|
readonly path?: string | undefined;
|
|
419
|
+
readonly ref?: string | undefined;
|
|
434
420
|
readonly gitTreeHash?: string | undefined;
|
|
435
421
|
readonly retainedByPack?: boolean | undefined;
|
|
436
|
-
readonly
|
|
422
|
+
readonly materializedTargets?: readonly {
|
|
423
|
+
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
424
|
+
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
425
|
+
readonly region?: string | undefined;
|
|
426
|
+
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
427
|
+
}[] | undefined;
|
|
437
428
|
} | {
|
|
438
429
|
readonly type: "gitlab";
|
|
439
430
|
readonly owner: string;
|
|
440
431
|
readonly repo: string;
|
|
441
432
|
readonly installedAt: Date;
|
|
442
433
|
readonly updatedAt: Date;
|
|
443
|
-
readonly ref?: string | undefined;
|
|
444
434
|
readonly path?: string | undefined;
|
|
435
|
+
readonly ref?: string | undefined;
|
|
445
436
|
readonly gitTreeHash?: string | undefined;
|
|
446
437
|
readonly retainedByPack?: boolean | undefined;
|
|
447
|
-
readonly
|
|
438
|
+
readonly materializedTargets?: readonly {
|
|
439
|
+
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
440
|
+
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
441
|
+
readonly region?: string | undefined;
|
|
442
|
+
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
443
|
+
}[] | undefined;
|
|
448
444
|
} | {
|
|
449
445
|
readonly type: "bitbucket";
|
|
450
446
|
readonly owner: string;
|
|
451
447
|
readonly repo: string;
|
|
452
448
|
readonly installedAt: Date;
|
|
453
449
|
readonly updatedAt: Date;
|
|
454
|
-
readonly ref?: string | undefined;
|
|
455
450
|
readonly path?: string | undefined;
|
|
451
|
+
readonly ref?: string | undefined;
|
|
456
452
|
readonly gitTreeHash?: string | undefined;
|
|
457
453
|
readonly retainedByPack?: boolean | undefined;
|
|
458
|
-
readonly
|
|
454
|
+
readonly materializedTargets?: readonly {
|
|
455
|
+
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
456
|
+
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
457
|
+
readonly region?: string | undefined;
|
|
458
|
+
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
459
|
+
}[] | undefined;
|
|
459
460
|
} | {
|
|
461
|
+
readonly project: string;
|
|
460
462
|
readonly type: "azurerepos";
|
|
463
|
+
readonly repo: string;
|
|
461
464
|
readonly organization: string;
|
|
462
|
-
readonly project: string;
|
|
463
|
-
readonly repo: string;
|
|
464
465
|
readonly installedAt: Date;
|
|
465
466
|
readonly updatedAt: Date;
|
|
466
|
-
readonly ref?: string | undefined;
|
|
467
467
|
readonly path?: string | undefined;
|
|
468
|
+
readonly ref?: string | undefined;
|
|
468
469
|
readonly gitTreeHash?: string | undefined;
|
|
469
470
|
readonly retainedByPack?: boolean | undefined;
|
|
470
|
-
readonly
|
|
471
|
+
readonly materializedTargets?: readonly {
|
|
472
|
+
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
473
|
+
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
474
|
+
readonly region?: string | undefined;
|
|
475
|
+
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
476
|
+
}[] | undefined;
|
|
471
477
|
} | {
|
|
472
|
-
readonly type: "git";
|
|
473
478
|
readonly url: string;
|
|
479
|
+
readonly type: "git";
|
|
474
480
|
readonly installedAt: Date;
|
|
475
481
|
readonly updatedAt: Date;
|
|
476
|
-
readonly ref?: string | undefined;
|
|
477
482
|
readonly path?: string | undefined;
|
|
483
|
+
readonly ref?: string | undefined;
|
|
478
484
|
readonly gitTreeHash?: string | undefined;
|
|
479
485
|
readonly retainedByPack?: boolean | undefined;
|
|
480
|
-
readonly
|
|
486
|
+
readonly materializedTargets?: readonly {
|
|
487
|
+
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
488
|
+
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
489
|
+
readonly region?: string | undefined;
|
|
490
|
+
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
491
|
+
}[] | undefined;
|
|
481
492
|
} | {
|
|
482
|
-
readonly type: "local";
|
|
483
493
|
readonly path: string;
|
|
494
|
+
readonly type: "local";
|
|
484
495
|
readonly installedAt: Date;
|
|
485
496
|
readonly updatedAt: Date;
|
|
486
497
|
readonly gitTreeHash?: string | undefined;
|
|
487
498
|
readonly retainedByPack?: boolean | undefined;
|
|
488
|
-
readonly
|
|
499
|
+
readonly materializedTargets?: readonly {
|
|
500
|
+
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
501
|
+
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
502
|
+
readonly region?: string | undefined;
|
|
503
|
+
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
504
|
+
}[] | undefined;
|
|
489
505
|
} | {
|
|
506
|
+
readonly name: string & import("effect/Brand").Brand<"ExtensionName">;
|
|
490
507
|
readonly type: "registry";
|
|
491
508
|
readonly owner: string & import("effect/Brand").Brand<"Handle">;
|
|
492
|
-
readonly
|
|
509
|
+
readonly installedAt: Date;
|
|
510
|
+
readonly updatedAt: Date;
|
|
493
511
|
readonly resolvedVersion: string & import("effect/Brand").Brand<"Version">;
|
|
494
512
|
readonly integrity: string;
|
|
495
513
|
readonly sourceName: string;
|
|
496
|
-
readonly installedAt: Date;
|
|
497
|
-
readonly updatedAt: Date;
|
|
498
514
|
readonly gitTreeHash?: string | undefined;
|
|
499
515
|
readonly retainedByPack?: boolean | undefined;
|
|
500
|
-
readonly
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
readonly retainedByPack?: boolean | undefined;
|
|
507
|
-
readonly command?: string | undefined;
|
|
508
|
-
readonly args?: readonly string[] | undefined;
|
|
509
|
-
readonly url?: string | undefined;
|
|
510
|
-
readonly headers?: {
|
|
511
|
-
readonly [x: string]: string;
|
|
512
|
-
} | undefined;
|
|
513
|
-
readonly syncedAgents?: readonly string[] | undefined;
|
|
516
|
+
readonly materializedTargets?: readonly {
|
|
517
|
+
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
518
|
+
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
519
|
+
readonly region?: string | undefined;
|
|
520
|
+
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
521
|
+
}[] | undefined;
|
|
514
522
|
};
|
|
515
523
|
} | undefined;
|
|
516
|
-
readonly
|
|
524
|
+
readonly subagents?: {
|
|
517
525
|
readonly [x: string]: {
|
|
518
526
|
readonly type: "github";
|
|
519
527
|
readonly owner: string;
|
|
520
528
|
readonly repo: string;
|
|
529
|
+
readonly agents: readonly string[];
|
|
521
530
|
readonly installedAt: Date;
|
|
522
531
|
readonly updatedAt: Date;
|
|
523
|
-
readonly ref?: string | undefined;
|
|
524
532
|
readonly path?: string | undefined;
|
|
525
|
-
readonly
|
|
526
|
-
|
|
533
|
+
readonly ref?: string | undefined;
|
|
534
|
+
readonly sourceHash?: string | undefined;
|
|
535
|
+
readonly renderedFiles?: {
|
|
536
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
537
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
538
|
+
}, "Type">[];
|
|
527
539
|
} | undefined;
|
|
528
|
-
readonly materializedTargets?: readonly {
|
|
529
|
-
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
530
|
-
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
531
|
-
readonly region?: string | undefined;
|
|
532
|
-
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
533
|
-
}[] | undefined;
|
|
534
540
|
readonly gitTreeHash?: string | undefined;
|
|
535
541
|
readonly retainedByPack?: boolean | undefined;
|
|
536
542
|
} | {
|
|
537
543
|
readonly type: "gitlab";
|
|
538
544
|
readonly owner: string;
|
|
539
545
|
readonly repo: string;
|
|
546
|
+
readonly agents: readonly string[];
|
|
540
547
|
readonly installedAt: Date;
|
|
541
548
|
readonly updatedAt: Date;
|
|
542
|
-
readonly ref?: string | undefined;
|
|
543
549
|
readonly path?: string | undefined;
|
|
544
|
-
readonly
|
|
545
|
-
|
|
550
|
+
readonly ref?: string | undefined;
|
|
551
|
+
readonly sourceHash?: string | undefined;
|
|
552
|
+
readonly renderedFiles?: {
|
|
553
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
554
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
555
|
+
}, "Type">[];
|
|
546
556
|
} | undefined;
|
|
547
|
-
readonly materializedTargets?: readonly {
|
|
548
|
-
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
549
|
-
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
550
|
-
readonly region?: string | undefined;
|
|
551
|
-
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
552
|
-
}[] | undefined;
|
|
553
557
|
readonly gitTreeHash?: string | undefined;
|
|
554
558
|
readonly retainedByPack?: boolean | undefined;
|
|
555
559
|
} | {
|
|
556
560
|
readonly type: "bitbucket";
|
|
557
561
|
readonly owner: string;
|
|
558
562
|
readonly repo: string;
|
|
563
|
+
readonly agents: readonly string[];
|
|
559
564
|
readonly installedAt: Date;
|
|
560
565
|
readonly updatedAt: Date;
|
|
561
|
-
readonly ref?: string | undefined;
|
|
562
566
|
readonly path?: string | undefined;
|
|
563
|
-
readonly
|
|
564
|
-
|
|
567
|
+
readonly ref?: string | undefined;
|
|
568
|
+
readonly sourceHash?: string | undefined;
|
|
569
|
+
readonly renderedFiles?: {
|
|
570
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
571
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
572
|
+
}, "Type">[];
|
|
565
573
|
} | undefined;
|
|
566
|
-
readonly materializedTargets?: readonly {
|
|
567
|
-
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
568
|
-
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
569
|
-
readonly region?: string | undefined;
|
|
570
|
-
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
571
|
-
}[] | undefined;
|
|
572
574
|
readonly gitTreeHash?: string | undefined;
|
|
573
575
|
readonly retainedByPack?: boolean | undefined;
|
|
574
576
|
} | {
|
|
575
|
-
readonly type: "azurerepos";
|
|
576
|
-
readonly organization: string;
|
|
577
577
|
readonly project: string;
|
|
578
|
+
readonly type: "azurerepos";
|
|
578
579
|
readonly repo: string;
|
|
580
|
+
readonly organization: string;
|
|
581
|
+
readonly agents: readonly string[];
|
|
579
582
|
readonly installedAt: Date;
|
|
580
583
|
readonly updatedAt: Date;
|
|
581
|
-
readonly ref?: string | undefined;
|
|
582
584
|
readonly path?: string | undefined;
|
|
583
|
-
readonly
|
|
584
|
-
|
|
585
|
+
readonly ref?: string | undefined;
|
|
586
|
+
readonly sourceHash?: string | undefined;
|
|
587
|
+
readonly renderedFiles?: {
|
|
588
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
589
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
590
|
+
}, "Type">[];
|
|
585
591
|
} | undefined;
|
|
586
|
-
readonly materializedTargets?: readonly {
|
|
587
|
-
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
588
|
-
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
589
|
-
readonly region?: string | undefined;
|
|
590
|
-
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
591
|
-
}[] | undefined;
|
|
592
592
|
readonly gitTreeHash?: string | undefined;
|
|
593
593
|
readonly retainedByPack?: boolean | undefined;
|
|
594
594
|
} | {
|
|
595
|
-
readonly type: "git";
|
|
596
595
|
readonly url: string;
|
|
596
|
+
readonly type: "git";
|
|
597
|
+
readonly agents: readonly string[];
|
|
597
598
|
readonly installedAt: Date;
|
|
598
599
|
readonly updatedAt: Date;
|
|
599
|
-
readonly ref?: string | undefined;
|
|
600
600
|
readonly path?: string | undefined;
|
|
601
|
-
readonly
|
|
602
|
-
|
|
601
|
+
readonly ref?: string | undefined;
|
|
602
|
+
readonly sourceHash?: string | undefined;
|
|
603
|
+
readonly renderedFiles?: {
|
|
604
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
605
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
606
|
+
}, "Type">[];
|
|
603
607
|
} | undefined;
|
|
604
|
-
readonly materializedTargets?: readonly {
|
|
605
|
-
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
606
|
-
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
607
|
-
readonly region?: string | undefined;
|
|
608
|
-
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
609
|
-
}[] | undefined;
|
|
610
608
|
readonly gitTreeHash?: string | undefined;
|
|
611
609
|
readonly retainedByPack?: boolean | undefined;
|
|
612
610
|
} | {
|
|
613
|
-
readonly type: "local";
|
|
614
611
|
readonly path: string;
|
|
612
|
+
readonly type: "local";
|
|
613
|
+
readonly agents: readonly string[];
|
|
615
614
|
readonly installedAt: Date;
|
|
616
615
|
readonly updatedAt: Date;
|
|
617
|
-
readonly
|
|
618
|
-
|
|
616
|
+
readonly sourceHash?: string | undefined;
|
|
617
|
+
readonly renderedFiles?: {
|
|
618
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
619
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
620
|
+
}, "Type">[];
|
|
619
621
|
} | undefined;
|
|
620
|
-
readonly materializedTargets?: readonly {
|
|
621
|
-
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
622
|
-
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
623
|
-
readonly region?: string | undefined;
|
|
624
|
-
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
625
|
-
}[] | undefined;
|
|
626
622
|
readonly gitTreeHash?: string | undefined;
|
|
627
623
|
readonly retainedByPack?: boolean | undefined;
|
|
628
624
|
} | {
|
|
625
|
+
readonly name: string & import("effect/Brand").Brand<"ExtensionName">;
|
|
629
626
|
readonly type: "registry";
|
|
630
627
|
readonly owner: string & import("effect/Brand").Brand<"Handle">;
|
|
631
|
-
readonly
|
|
628
|
+
readonly agents: readonly string[];
|
|
629
|
+
readonly installedAt: Date;
|
|
630
|
+
readonly updatedAt: Date;
|
|
632
631
|
readonly resolvedVersion: string & import("effect/Brand").Brand<"Version">;
|
|
633
632
|
readonly integrity: string;
|
|
634
633
|
readonly sourceName: string;
|
|
635
|
-
readonly
|
|
636
|
-
readonly
|
|
637
|
-
|
|
638
|
-
|
|
634
|
+
readonly sourceHash?: string | undefined;
|
|
635
|
+
readonly renderedFiles?: {
|
|
636
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
637
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
638
|
+
}, "Type">[];
|
|
639
639
|
} | undefined;
|
|
640
|
-
readonly materializedTargets?: readonly {
|
|
641
|
-
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
642
|
-
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
643
|
-
readonly region?: string | undefined;
|
|
644
|
-
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
645
|
-
}[] | undefined;
|
|
646
640
|
readonly gitTreeHash?: string | undefined;
|
|
647
641
|
readonly retainedByPack?: boolean | undefined;
|
|
648
642
|
};
|
|
649
643
|
} | undefined;
|
|
650
|
-
readonly
|
|
644
|
+
readonly commands?: {
|
|
651
645
|
readonly [x: string]: {
|
|
652
646
|
readonly type: "github";
|
|
653
647
|
readonly owner: string;
|
|
654
648
|
readonly repo: string;
|
|
649
|
+
readonly agents: readonly string[];
|
|
655
650
|
readonly installedAt: Date;
|
|
656
651
|
readonly updatedAt: Date;
|
|
657
|
-
readonly ref?: string | undefined;
|
|
658
652
|
readonly path?: string | undefined;
|
|
659
|
-
readonly
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
readonly
|
|
663
|
-
|
|
664
|
-
|
|
653
|
+
readonly ref?: string | undefined;
|
|
654
|
+
readonly sourceHash?: string | undefined;
|
|
655
|
+
readonly renderedFiles?: {
|
|
656
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
657
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
658
|
+
}, "Type">[];
|
|
659
|
+
} | undefined;
|
|
665
660
|
readonly gitTreeHash?: string | undefined;
|
|
666
661
|
readonly retainedByPack?: boolean | undefined;
|
|
667
662
|
} | {
|
|
668
663
|
readonly type: "gitlab";
|
|
669
664
|
readonly owner: string;
|
|
670
665
|
readonly repo: string;
|
|
666
|
+
readonly agents: readonly string[];
|
|
671
667
|
readonly installedAt: Date;
|
|
672
668
|
readonly updatedAt: Date;
|
|
673
|
-
readonly ref?: string | undefined;
|
|
674
669
|
readonly path?: string | undefined;
|
|
675
|
-
readonly
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
readonly
|
|
679
|
-
|
|
680
|
-
|
|
670
|
+
readonly ref?: string | undefined;
|
|
671
|
+
readonly sourceHash?: string | undefined;
|
|
672
|
+
readonly renderedFiles?: {
|
|
673
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
674
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
675
|
+
}, "Type">[];
|
|
676
|
+
} | undefined;
|
|
681
677
|
readonly gitTreeHash?: string | undefined;
|
|
682
678
|
readonly retainedByPack?: boolean | undefined;
|
|
683
679
|
} | {
|
|
684
680
|
readonly type: "bitbucket";
|
|
685
681
|
readonly owner: string;
|
|
686
682
|
readonly repo: string;
|
|
683
|
+
readonly agents: readonly string[];
|
|
687
684
|
readonly installedAt: Date;
|
|
688
685
|
readonly updatedAt: Date;
|
|
689
|
-
readonly ref?: string | undefined;
|
|
690
686
|
readonly path?: string | undefined;
|
|
691
|
-
readonly
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
readonly
|
|
695
|
-
|
|
696
|
-
|
|
687
|
+
readonly ref?: string | undefined;
|
|
688
|
+
readonly sourceHash?: string | undefined;
|
|
689
|
+
readonly renderedFiles?: {
|
|
690
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
691
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
692
|
+
}, "Type">[];
|
|
693
|
+
} | undefined;
|
|
697
694
|
readonly gitTreeHash?: string | undefined;
|
|
698
695
|
readonly retainedByPack?: boolean | undefined;
|
|
699
696
|
} | {
|
|
700
|
-
readonly type: "azurerepos";
|
|
701
|
-
readonly organization: string;
|
|
702
697
|
readonly project: string;
|
|
698
|
+
readonly type: "azurerepos";
|
|
703
699
|
readonly repo: string;
|
|
700
|
+
readonly organization: string;
|
|
701
|
+
readonly agents: readonly string[];
|
|
704
702
|
readonly installedAt: Date;
|
|
705
703
|
readonly updatedAt: Date;
|
|
706
|
-
readonly ref?: string | undefined;
|
|
707
704
|
readonly path?: string | undefined;
|
|
708
|
-
readonly
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
readonly
|
|
712
|
-
|
|
713
|
-
|
|
705
|
+
readonly ref?: string | undefined;
|
|
706
|
+
readonly sourceHash?: string | undefined;
|
|
707
|
+
readonly renderedFiles?: {
|
|
708
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
709
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
710
|
+
}, "Type">[];
|
|
711
|
+
} | undefined;
|
|
714
712
|
readonly gitTreeHash?: string | undefined;
|
|
715
713
|
readonly retainedByPack?: boolean | undefined;
|
|
716
714
|
} | {
|
|
717
|
-
readonly type: "git";
|
|
718
715
|
readonly url: string;
|
|
716
|
+
readonly type: "git";
|
|
717
|
+
readonly agents: readonly string[];
|
|
719
718
|
readonly installedAt: Date;
|
|
720
719
|
readonly updatedAt: Date;
|
|
721
|
-
readonly ref?: string | undefined;
|
|
722
720
|
readonly path?: string | undefined;
|
|
723
|
-
readonly
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
readonly
|
|
727
|
-
|
|
728
|
-
|
|
721
|
+
readonly ref?: string | undefined;
|
|
722
|
+
readonly sourceHash?: string | undefined;
|
|
723
|
+
readonly renderedFiles?: {
|
|
724
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
725
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
726
|
+
}, "Type">[];
|
|
727
|
+
} | undefined;
|
|
729
728
|
readonly gitTreeHash?: string | undefined;
|
|
730
729
|
readonly retainedByPack?: boolean | undefined;
|
|
731
730
|
} | {
|
|
732
|
-
readonly type: "local";
|
|
733
731
|
readonly path: string;
|
|
732
|
+
readonly type: "local";
|
|
733
|
+
readonly agents: readonly string[];
|
|
734
734
|
readonly installedAt: Date;
|
|
735
735
|
readonly updatedAt: Date;
|
|
736
|
-
readonly
|
|
737
|
-
|
|
738
|
-
readonly
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
}
|
|
736
|
+
readonly sourceHash?: string | undefined;
|
|
737
|
+
readonly renderedFiles?: {
|
|
738
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
739
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
740
|
+
}, "Type">[];
|
|
741
|
+
} | undefined;
|
|
742
742
|
readonly gitTreeHash?: string | undefined;
|
|
743
743
|
readonly retainedByPack?: boolean | undefined;
|
|
744
744
|
} | {
|
|
745
|
+
readonly name: string & import("effect/Brand").Brand<"ExtensionName">;
|
|
745
746
|
readonly type: "registry";
|
|
746
747
|
readonly owner: string & import("effect/Brand").Brand<"Handle">;
|
|
747
|
-
readonly
|
|
748
|
+
readonly agents: readonly string[];
|
|
749
|
+
readonly installedAt: Date;
|
|
750
|
+
readonly updatedAt: Date;
|
|
748
751
|
readonly resolvedVersion: string & import("effect/Brand").Brand<"Version">;
|
|
749
752
|
readonly integrity: string;
|
|
750
753
|
readonly sourceName: string;
|
|
751
|
-
readonly
|
|
752
|
-
readonly
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
758
|
-
}[] | undefined;
|
|
754
|
+
readonly sourceHash?: string | undefined;
|
|
755
|
+
readonly renderedFiles?: {
|
|
756
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
757
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
758
|
+
}, "Type">[];
|
|
759
|
+
} | undefined;
|
|
759
760
|
readonly gitTreeHash?: string | undefined;
|
|
760
761
|
readonly retainedByPack?: boolean | undefined;
|
|
761
762
|
};
|
|
762
763
|
} | undefined;
|
|
763
|
-
readonly
|
|
764
|
+
readonly rules?: {
|
|
764
765
|
readonly [x: string]: {
|
|
765
766
|
readonly type: "github";
|
|
766
767
|
readonly owner: string;
|
|
767
768
|
readonly repo: string;
|
|
768
769
|
readonly installedAt: Date;
|
|
769
770
|
readonly updatedAt: Date;
|
|
770
|
-
readonly ref?: string | undefined;
|
|
771
771
|
readonly path?: string | undefined;
|
|
772
|
+
readonly ref?: string | undefined;
|
|
773
|
+
readonly gitTreeHash?: string | undefined;
|
|
774
|
+
readonly retainedByPack?: boolean | undefined;
|
|
772
775
|
readonly materializedTargets?: readonly {
|
|
773
776
|
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
774
777
|
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
775
778
|
readonly region?: string | undefined;
|
|
776
779
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
777
780
|
}[] | undefined;
|
|
778
|
-
readonly gitTreeHash?: string | undefined;
|
|
779
|
-
readonly retainedByPack?: boolean | undefined;
|
|
780
781
|
} | {
|
|
781
782
|
readonly type: "gitlab";
|
|
782
783
|
readonly owner: string;
|
|
783
784
|
readonly repo: string;
|
|
784
785
|
readonly installedAt: Date;
|
|
785
786
|
readonly updatedAt: Date;
|
|
786
|
-
readonly ref?: string | undefined;
|
|
787
787
|
readonly path?: string | undefined;
|
|
788
|
+
readonly ref?: string | undefined;
|
|
789
|
+
readonly gitTreeHash?: string | undefined;
|
|
790
|
+
readonly retainedByPack?: boolean | undefined;
|
|
788
791
|
readonly materializedTargets?: readonly {
|
|
789
792
|
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
790
793
|
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
791
794
|
readonly region?: string | undefined;
|
|
792
795
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
793
796
|
}[] | undefined;
|
|
794
|
-
readonly gitTreeHash?: string | undefined;
|
|
795
|
-
readonly retainedByPack?: boolean | undefined;
|
|
796
797
|
} | {
|
|
797
798
|
readonly type: "bitbucket";
|
|
798
799
|
readonly owner: string;
|
|
799
800
|
readonly repo: string;
|
|
800
801
|
readonly installedAt: Date;
|
|
801
802
|
readonly updatedAt: Date;
|
|
802
|
-
readonly ref?: string | undefined;
|
|
803
803
|
readonly path?: string | undefined;
|
|
804
|
+
readonly ref?: string | undefined;
|
|
805
|
+
readonly gitTreeHash?: string | undefined;
|
|
806
|
+
readonly retainedByPack?: boolean | undefined;
|
|
804
807
|
readonly materializedTargets?: readonly {
|
|
805
808
|
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
806
809
|
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
807
810
|
readonly region?: string | undefined;
|
|
808
811
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
809
812
|
}[] | undefined;
|
|
810
|
-
readonly gitTreeHash?: string | undefined;
|
|
811
|
-
readonly retainedByPack?: boolean | undefined;
|
|
812
813
|
} | {
|
|
813
|
-
readonly type: "azurerepos";
|
|
814
|
-
readonly organization: string;
|
|
815
814
|
readonly project: string;
|
|
815
|
+
readonly type: "azurerepos";
|
|
816
816
|
readonly repo: string;
|
|
817
|
+
readonly organization: string;
|
|
817
818
|
readonly installedAt: Date;
|
|
818
819
|
readonly updatedAt: Date;
|
|
819
|
-
readonly ref?: string | undefined;
|
|
820
820
|
readonly path?: string | undefined;
|
|
821
|
+
readonly ref?: string | undefined;
|
|
822
|
+
readonly gitTreeHash?: string | undefined;
|
|
823
|
+
readonly retainedByPack?: boolean | undefined;
|
|
821
824
|
readonly materializedTargets?: readonly {
|
|
822
825
|
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
823
826
|
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
824
827
|
readonly region?: string | undefined;
|
|
825
828
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
826
829
|
}[] | undefined;
|
|
827
|
-
readonly gitTreeHash?: string | undefined;
|
|
828
|
-
readonly retainedByPack?: boolean | undefined;
|
|
829
830
|
} | {
|
|
830
|
-
readonly type: "git";
|
|
831
831
|
readonly url: string;
|
|
832
|
+
readonly type: "git";
|
|
832
833
|
readonly installedAt: Date;
|
|
833
834
|
readonly updatedAt: Date;
|
|
834
|
-
readonly ref?: string | undefined;
|
|
835
835
|
readonly path?: string | undefined;
|
|
836
|
+
readonly ref?: string | undefined;
|
|
837
|
+
readonly gitTreeHash?: string | undefined;
|
|
838
|
+
readonly retainedByPack?: boolean | undefined;
|
|
836
839
|
readonly materializedTargets?: readonly {
|
|
837
840
|
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
838
841
|
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
839
842
|
readonly region?: string | undefined;
|
|
840
843
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
841
844
|
}[] | undefined;
|
|
842
|
-
readonly gitTreeHash?: string | undefined;
|
|
843
|
-
readonly retainedByPack?: boolean | undefined;
|
|
844
845
|
} | {
|
|
845
|
-
readonly type: "local";
|
|
846
846
|
readonly path: string;
|
|
847
|
+
readonly type: "local";
|
|
847
848
|
readonly installedAt: Date;
|
|
848
849
|
readonly updatedAt: Date;
|
|
850
|
+
readonly gitTreeHash?: string | undefined;
|
|
851
|
+
readonly retainedByPack?: boolean | undefined;
|
|
849
852
|
readonly materializedTargets?: readonly {
|
|
850
853
|
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
851
854
|
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
852
855
|
readonly region?: string | undefined;
|
|
853
856
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
854
857
|
}[] | undefined;
|
|
855
|
-
readonly gitTreeHash?: string | undefined;
|
|
856
|
-
readonly retainedByPack?: boolean | undefined;
|
|
857
858
|
} | {
|
|
859
|
+
readonly name: string & import("effect/Brand").Brand<"ExtensionName">;
|
|
858
860
|
readonly type: "registry";
|
|
859
861
|
readonly owner: string & import("effect/Brand").Brand<"Handle">;
|
|
860
|
-
readonly
|
|
862
|
+
readonly installedAt: Date;
|
|
863
|
+
readonly updatedAt: Date;
|
|
861
864
|
readonly resolvedVersion: string & import("effect/Brand").Brand<"Version">;
|
|
862
865
|
readonly integrity: string;
|
|
863
866
|
readonly sourceName: string;
|
|
864
|
-
readonly
|
|
865
|
-
readonly
|
|
867
|
+
readonly gitTreeHash?: string | undefined;
|
|
868
|
+
readonly retainedByPack?: boolean | undefined;
|
|
866
869
|
readonly materializedTargets?: readonly {
|
|
867
870
|
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
868
871
|
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
869
872
|
readonly region?: string | undefined;
|
|
870
873
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
871
874
|
}[] | undefined;
|
|
872
|
-
readonly gitTreeHash?: string | undefined;
|
|
873
|
-
readonly retainedByPack?: boolean | undefined;
|
|
874
875
|
};
|
|
875
876
|
} | undefined;
|
|
876
877
|
readonly packs?: {
|
|
877
878
|
readonly [x: string]: {
|
|
879
|
+
readonly name: string & import("effect/Brand").Brand<"ExtensionName">;
|
|
878
880
|
readonly type: "registry";
|
|
879
881
|
readonly owner: string & import("effect/Brand").Brand<"Handle">;
|
|
880
|
-
readonly
|
|
882
|
+
readonly installedAt: Date;
|
|
883
|
+
readonly updatedAt: Date;
|
|
881
884
|
readonly resolvedVersion: string & import("effect/Brand").Brand<"Version">;
|
|
882
885
|
readonly integrity: string;
|
|
883
886
|
readonly sourceName: string;
|
|
884
|
-
readonly installedAt: Date;
|
|
885
|
-
readonly updatedAt: Date;
|
|
886
887
|
readonly resolvedSkills: {
|
|
887
888
|
readonly [x: string]: string & import("effect/Brand").Brand<"Version">;
|
|
888
889
|
};
|
|
@@ -907,37 +908,23 @@ export declare const commitLockfileUpdates: (axmDir: string, lockfile: Lockfile,
|
|
|
907
908
|
};
|
|
908
909
|
} | undefined;
|
|
909
910
|
readonly libraries?: {
|
|
910
|
-
readonly [x: string]: {
|
|
911
|
-
readonly type: "registry"
|
|
912
|
-
readonly owner:
|
|
913
|
-
readonly name:
|
|
914
|
-
readonly sourceName:
|
|
915
|
-
readonly installedAt:
|
|
916
|
-
readonly updatedAt:
|
|
917
|
-
readonly resolvedAt:
|
|
918
|
-
readonly membershipDigest:
|
|
919
|
-
readonly resolvedSkills:
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
readonly
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
readonly
|
|
926
|
-
|
|
927
|
-
};
|
|
928
|
-
readonly resolvedSubagents: {
|
|
929
|
-
readonly [x: string]: string & import("effect/Brand").Brand<"Version">;
|
|
930
|
-
};
|
|
931
|
-
readonly resolvedFiles: {
|
|
932
|
-
readonly [x: string]: string & import("effect/Brand").Brand<"Version">;
|
|
933
|
-
};
|
|
934
|
-
readonly resolvedRules: {
|
|
935
|
-
readonly [x: string]: string & import("effect/Brand").Brand<"Version">;
|
|
936
|
-
};
|
|
937
|
-
readonly resolvedHooks: {
|
|
938
|
-
readonly [x: string]: string & import("effect/Brand").Brand<"Version">;
|
|
939
|
-
};
|
|
940
|
-
};
|
|
911
|
+
readonly [x: string]: Schema.Struct.ReadonlySide<{
|
|
912
|
+
readonly type: Schema.Literal<"registry">;
|
|
913
|
+
readonly owner: Schema.brand<Schema.String, "Handle">;
|
|
914
|
+
readonly name: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
915
|
+
readonly sourceName: Schema.String;
|
|
916
|
+
readonly installedAt: Schema.decodeTo<Schema.DateValid, Schema.NonEmptyString, never, never>;
|
|
917
|
+
readonly updatedAt: Schema.decodeTo<Schema.DateValid, Schema.NonEmptyString, never, never>;
|
|
918
|
+
readonly resolvedAt: Schema.decodeTo<Schema.DateValid, Schema.NonEmptyString, never, never>;
|
|
919
|
+
readonly membershipDigest: Schema.String;
|
|
920
|
+
readonly resolvedSkills: Schema.$Record<Schema.String, Schema.brand<Schema.String, "Version">>;
|
|
921
|
+
readonly resolvedCommands: Schema.$Record<Schema.String, Schema.brand<Schema.String, "Version">>;
|
|
922
|
+
readonly resolvedMcpServers: Schema.$Record<Schema.String, Schema.brand<Schema.String, "Version">>;
|
|
923
|
+
readonly resolvedSubagents: Schema.$Record<Schema.String, Schema.brand<Schema.String, "Version">>;
|
|
924
|
+
readonly resolvedFiles: Schema.$Record<Schema.String, Schema.brand<Schema.String, "Version">>;
|
|
925
|
+
readonly resolvedRules: Schema.$Record<Schema.String, Schema.brand<Schema.String, "Version">>;
|
|
926
|
+
readonly resolvedHooks: Schema.$Record<Schema.String, Schema.brand<Schema.String, "Version">>;
|
|
927
|
+
}, "Type">;
|
|
941
928
|
} | undefined;
|
|
942
929
|
}, AppError, Path.Path | FileSystem.FileSystem>;
|
|
943
930
|
/**
|
|
@@ -952,22 +939,21 @@ export declare const commitLockfileUpdates: (axmDir: string, lockfile: Lockfile,
|
|
|
952
939
|
* @experimental This API is unstable and may change without notice.
|
|
953
940
|
*/
|
|
954
941
|
export declare const commitLockfileSnapshotUpdate: (axmDir: string, base: Lockfile, next: Lockfile) => Effect.Effect<{
|
|
955
|
-
readonly lockfileVersion: number;
|
|
956
942
|
readonly skills: {
|
|
957
943
|
readonly [x: string]: {
|
|
958
944
|
readonly type: "github";
|
|
959
945
|
readonly owner: string;
|
|
960
946
|
readonly repo: string;
|
|
947
|
+
readonly agents: readonly string[];
|
|
961
948
|
readonly installedAt: Date;
|
|
962
949
|
readonly updatedAt: Date;
|
|
963
|
-
readonly agents: readonly string[];
|
|
964
|
-
readonly ref?: string | undefined;
|
|
965
950
|
readonly path?: string | undefined;
|
|
951
|
+
readonly ref?: string | undefined;
|
|
966
952
|
readonly sourceHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
967
953
|
readonly renderedFiles?: {
|
|
968
|
-
readonly [x: string]: readonly {
|
|
969
|
-
readonly path:
|
|
970
|
-
}[];
|
|
954
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
955
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
956
|
+
}, "Type">[];
|
|
971
957
|
} | undefined;
|
|
972
958
|
readonly gitTreeHash?: string | undefined;
|
|
973
959
|
readonly retainedByPack?: boolean | undefined;
|
|
@@ -975,16 +961,16 @@ export declare const commitLockfileSnapshotUpdate: (axmDir: string, base: Lockfi
|
|
|
975
961
|
readonly type: "gitlab";
|
|
976
962
|
readonly owner: string;
|
|
977
963
|
readonly repo: string;
|
|
964
|
+
readonly agents: readonly string[];
|
|
978
965
|
readonly installedAt: Date;
|
|
979
966
|
readonly updatedAt: Date;
|
|
980
|
-
readonly agents: readonly string[];
|
|
981
|
-
readonly ref?: string | undefined;
|
|
982
967
|
readonly path?: string | undefined;
|
|
968
|
+
readonly ref?: string | undefined;
|
|
983
969
|
readonly sourceHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
984
970
|
readonly renderedFiles?: {
|
|
985
|
-
readonly [x: string]: readonly {
|
|
986
|
-
readonly path:
|
|
987
|
-
}[];
|
|
971
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
972
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
973
|
+
}, "Type">[];
|
|
988
974
|
} | undefined;
|
|
989
975
|
readonly gitTreeHash?: string | undefined;
|
|
990
976
|
readonly retainedByPack?: boolean | undefined;
|
|
@@ -992,788 +978,789 @@ export declare const commitLockfileSnapshotUpdate: (axmDir: string, base: Lockfi
|
|
|
992
978
|
readonly type: "bitbucket";
|
|
993
979
|
readonly owner: string;
|
|
994
980
|
readonly repo: string;
|
|
981
|
+
readonly agents: readonly string[];
|
|
995
982
|
readonly installedAt: Date;
|
|
996
983
|
readonly updatedAt: Date;
|
|
997
|
-
readonly agents: readonly string[];
|
|
998
|
-
readonly ref?: string | undefined;
|
|
999
984
|
readonly path?: string | undefined;
|
|
985
|
+
readonly ref?: string | undefined;
|
|
1000
986
|
readonly sourceHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
1001
987
|
readonly renderedFiles?: {
|
|
1002
|
-
readonly [x: string]: readonly {
|
|
1003
|
-
readonly path:
|
|
1004
|
-
}[];
|
|
988
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
989
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
990
|
+
}, "Type">[];
|
|
1005
991
|
} | undefined;
|
|
1006
992
|
readonly gitTreeHash?: string | undefined;
|
|
1007
993
|
readonly retainedByPack?: boolean | undefined;
|
|
1008
994
|
} | {
|
|
1009
|
-
readonly type: "azurerepos";
|
|
1010
|
-
readonly organization: string;
|
|
1011
995
|
readonly project: string;
|
|
996
|
+
readonly type: "azurerepos";
|
|
1012
997
|
readonly repo: string;
|
|
998
|
+
readonly organization: string;
|
|
999
|
+
readonly agents: readonly string[];
|
|
1013
1000
|
readonly installedAt: Date;
|
|
1014
1001
|
readonly updatedAt: Date;
|
|
1015
|
-
readonly agents: readonly string[];
|
|
1016
|
-
readonly ref?: string | undefined;
|
|
1017
1002
|
readonly path?: string | undefined;
|
|
1003
|
+
readonly ref?: string | undefined;
|
|
1018
1004
|
readonly sourceHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
1019
1005
|
readonly renderedFiles?: {
|
|
1020
|
-
readonly [x: string]: readonly {
|
|
1021
|
-
readonly path:
|
|
1022
|
-
}[];
|
|
1006
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1007
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1008
|
+
}, "Type">[];
|
|
1023
1009
|
} | undefined;
|
|
1024
1010
|
readonly gitTreeHash?: string | undefined;
|
|
1025
1011
|
readonly retainedByPack?: boolean | undefined;
|
|
1026
1012
|
} | {
|
|
1027
|
-
readonly type: "git";
|
|
1028
1013
|
readonly url: string;
|
|
1014
|
+
readonly type: "git";
|
|
1015
|
+
readonly agents: readonly string[];
|
|
1029
1016
|
readonly installedAt: Date;
|
|
1030
1017
|
readonly updatedAt: Date;
|
|
1031
|
-
readonly agents: readonly string[];
|
|
1032
|
-
readonly ref?: string | undefined;
|
|
1033
1018
|
readonly path?: string | undefined;
|
|
1019
|
+
readonly ref?: string | undefined;
|
|
1034
1020
|
readonly sourceHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
1035
1021
|
readonly renderedFiles?: {
|
|
1036
|
-
readonly [x: string]: readonly {
|
|
1037
|
-
readonly path:
|
|
1038
|
-
}[];
|
|
1022
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1023
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1024
|
+
}, "Type">[];
|
|
1039
1025
|
} | undefined;
|
|
1040
1026
|
readonly gitTreeHash?: string | undefined;
|
|
1041
1027
|
readonly retainedByPack?: boolean | undefined;
|
|
1042
1028
|
} | {
|
|
1043
|
-
readonly type: "local";
|
|
1044
1029
|
readonly path: string;
|
|
1030
|
+
readonly type: "local";
|
|
1031
|
+
readonly agents: readonly string[];
|
|
1045
1032
|
readonly installedAt: Date;
|
|
1046
1033
|
readonly updatedAt: Date;
|
|
1047
|
-
readonly agents: readonly string[];
|
|
1048
1034
|
readonly sourceHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
1049
1035
|
readonly renderedFiles?: {
|
|
1050
|
-
readonly [x: string]: readonly {
|
|
1051
|
-
readonly path:
|
|
1052
|
-
}[];
|
|
1036
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1037
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1038
|
+
}, "Type">[];
|
|
1053
1039
|
} | undefined;
|
|
1054
1040
|
readonly gitTreeHash?: string | undefined;
|
|
1055
1041
|
readonly retainedByPack?: boolean | undefined;
|
|
1056
1042
|
} | {
|
|
1043
|
+
readonly name: string & import("effect/Brand").Brand<"ExtensionName">;
|
|
1057
1044
|
readonly type: "registry";
|
|
1058
1045
|
readonly owner: string & import("effect/Brand").Brand<"Handle">;
|
|
1059
|
-
readonly
|
|
1046
|
+
readonly agents: readonly string[];
|
|
1047
|
+
readonly installedAt: Date;
|
|
1048
|
+
readonly updatedAt: Date;
|
|
1060
1049
|
readonly resolvedVersion: string & import("effect/Brand").Brand<"Version">;
|
|
1061
1050
|
readonly integrity: string;
|
|
1062
1051
|
readonly sourceName: string;
|
|
1063
|
-
readonly installedAt: Date;
|
|
1064
|
-
readonly updatedAt: Date;
|
|
1065
|
-
readonly agents: readonly string[];
|
|
1066
1052
|
readonly sourceHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
1067
1053
|
readonly renderedFiles?: {
|
|
1068
|
-
readonly [x: string]: readonly {
|
|
1069
|
-
readonly path:
|
|
1070
|
-
}[];
|
|
1054
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1055
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1056
|
+
}, "Type">[];
|
|
1071
1057
|
} | undefined;
|
|
1072
1058
|
readonly gitTreeHash?: string | undefined;
|
|
1073
1059
|
readonly retainedByPack?: boolean | undefined;
|
|
1074
1060
|
};
|
|
1075
1061
|
};
|
|
1076
|
-
readonly
|
|
1062
|
+
readonly lockfileVersion: number;
|
|
1063
|
+
readonly files?: {
|
|
1077
1064
|
readonly [x: string]: {
|
|
1078
1065
|
readonly type: "github";
|
|
1079
1066
|
readonly owner: string;
|
|
1080
1067
|
readonly repo: string;
|
|
1081
1068
|
readonly installedAt: Date;
|
|
1082
1069
|
readonly updatedAt: Date;
|
|
1083
|
-
readonly agents: readonly string[];
|
|
1084
|
-
readonly ref?: string | undefined;
|
|
1085
1070
|
readonly path?: string | undefined;
|
|
1086
|
-
readonly
|
|
1087
|
-
readonly renderedFiles?: {
|
|
1088
|
-
readonly [x: string]: readonly {
|
|
1089
|
-
readonly path: string & import("effect/Brand").Brand<"RelativePath"> & import("effect/Brand").Brand<"RenderedFilePath">;
|
|
1090
|
-
}[];
|
|
1091
|
-
} | undefined;
|
|
1071
|
+
readonly ref?: string | undefined;
|
|
1092
1072
|
readonly gitTreeHash?: string | undefined;
|
|
1093
1073
|
readonly retainedByPack?: boolean | undefined;
|
|
1074
|
+
readonly resolvedInputs?: {
|
|
1075
|
+
readonly [x: string]: string | number | boolean;
|
|
1076
|
+
} | undefined;
|
|
1077
|
+
readonly materializedTargets?: readonly {
|
|
1078
|
+
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
1079
|
+
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
1080
|
+
readonly region?: string | undefined;
|
|
1081
|
+
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
1082
|
+
}[] | undefined;
|
|
1094
1083
|
} | {
|
|
1095
1084
|
readonly type: "gitlab";
|
|
1096
1085
|
readonly owner: string;
|
|
1097
1086
|
readonly repo: string;
|
|
1098
1087
|
readonly installedAt: Date;
|
|
1099
1088
|
readonly updatedAt: Date;
|
|
1100
|
-
readonly agents: readonly string[];
|
|
1101
|
-
readonly ref?: string | undefined;
|
|
1102
1089
|
readonly path?: string | undefined;
|
|
1103
|
-
readonly
|
|
1104
|
-
readonly renderedFiles?: {
|
|
1105
|
-
readonly [x: string]: readonly {
|
|
1106
|
-
readonly path: string & import("effect/Brand").Brand<"RelativePath"> & import("effect/Brand").Brand<"RenderedFilePath">;
|
|
1107
|
-
}[];
|
|
1108
|
-
} | undefined;
|
|
1090
|
+
readonly ref?: string | undefined;
|
|
1109
1091
|
readonly gitTreeHash?: string | undefined;
|
|
1110
1092
|
readonly retainedByPack?: boolean | undefined;
|
|
1093
|
+
readonly resolvedInputs?: {
|
|
1094
|
+
readonly [x: string]: string | number | boolean;
|
|
1095
|
+
} | undefined;
|
|
1096
|
+
readonly materializedTargets?: readonly {
|
|
1097
|
+
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
1098
|
+
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
1099
|
+
readonly region?: string | undefined;
|
|
1100
|
+
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
1101
|
+
}[] | undefined;
|
|
1111
1102
|
} | {
|
|
1112
1103
|
readonly type: "bitbucket";
|
|
1113
1104
|
readonly owner: string;
|
|
1114
1105
|
readonly repo: string;
|
|
1115
1106
|
readonly installedAt: Date;
|
|
1116
1107
|
readonly updatedAt: Date;
|
|
1117
|
-
readonly agents: readonly string[];
|
|
1118
|
-
readonly ref?: string | undefined;
|
|
1119
1108
|
readonly path?: string | undefined;
|
|
1120
|
-
readonly
|
|
1121
|
-
readonly renderedFiles?: {
|
|
1122
|
-
readonly [x: string]: readonly {
|
|
1123
|
-
readonly path: string & import("effect/Brand").Brand<"RelativePath"> & import("effect/Brand").Brand<"RenderedFilePath">;
|
|
1124
|
-
}[];
|
|
1125
|
-
} | undefined;
|
|
1109
|
+
readonly ref?: string | undefined;
|
|
1126
1110
|
readonly gitTreeHash?: string | undefined;
|
|
1127
1111
|
readonly retainedByPack?: boolean | undefined;
|
|
1112
|
+
readonly resolvedInputs?: {
|
|
1113
|
+
readonly [x: string]: string | number | boolean;
|
|
1114
|
+
} | undefined;
|
|
1115
|
+
readonly materializedTargets?: readonly {
|
|
1116
|
+
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
1117
|
+
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
1118
|
+
readonly region?: string | undefined;
|
|
1119
|
+
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
1120
|
+
}[] | undefined;
|
|
1128
1121
|
} | {
|
|
1129
|
-
readonly type: "azurerepos";
|
|
1130
|
-
readonly organization: string;
|
|
1131
1122
|
readonly project: string;
|
|
1123
|
+
readonly type: "azurerepos";
|
|
1132
1124
|
readonly repo: string;
|
|
1125
|
+
readonly organization: string;
|
|
1133
1126
|
readonly installedAt: Date;
|
|
1134
1127
|
readonly updatedAt: Date;
|
|
1135
|
-
readonly agents: readonly string[];
|
|
1136
|
-
readonly ref?: string | undefined;
|
|
1137
1128
|
readonly path?: string | undefined;
|
|
1138
|
-
readonly
|
|
1139
|
-
readonly renderedFiles?: {
|
|
1140
|
-
readonly [x: string]: readonly {
|
|
1141
|
-
readonly path: string & import("effect/Brand").Brand<"RelativePath"> & import("effect/Brand").Brand<"RenderedFilePath">;
|
|
1142
|
-
}[];
|
|
1143
|
-
} | undefined;
|
|
1129
|
+
readonly ref?: string | undefined;
|
|
1144
1130
|
readonly gitTreeHash?: string | undefined;
|
|
1145
1131
|
readonly retainedByPack?: boolean | undefined;
|
|
1132
|
+
readonly resolvedInputs?: {
|
|
1133
|
+
readonly [x: string]: string | number | boolean;
|
|
1134
|
+
} | undefined;
|
|
1135
|
+
readonly materializedTargets?: readonly {
|
|
1136
|
+
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
1137
|
+
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
1138
|
+
readonly region?: string | undefined;
|
|
1139
|
+
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
1140
|
+
}[] | undefined;
|
|
1146
1141
|
} | {
|
|
1147
|
-
readonly type: "git";
|
|
1148
1142
|
readonly url: string;
|
|
1143
|
+
readonly type: "git";
|
|
1149
1144
|
readonly installedAt: Date;
|
|
1150
1145
|
readonly updatedAt: Date;
|
|
1151
|
-
readonly agents: readonly string[];
|
|
1152
|
-
readonly ref?: string | undefined;
|
|
1153
1146
|
readonly path?: string | undefined;
|
|
1154
|
-
readonly
|
|
1155
|
-
readonly renderedFiles?: {
|
|
1156
|
-
readonly [x: string]: readonly {
|
|
1157
|
-
readonly path: string & import("effect/Brand").Brand<"RelativePath"> & import("effect/Brand").Brand<"RenderedFilePath">;
|
|
1158
|
-
}[];
|
|
1159
|
-
} | undefined;
|
|
1147
|
+
readonly ref?: string | undefined;
|
|
1160
1148
|
readonly gitTreeHash?: string | undefined;
|
|
1161
1149
|
readonly retainedByPack?: boolean | undefined;
|
|
1150
|
+
readonly resolvedInputs?: {
|
|
1151
|
+
readonly [x: string]: string | number | boolean;
|
|
1152
|
+
} | undefined;
|
|
1153
|
+
readonly materializedTargets?: readonly {
|
|
1154
|
+
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
1155
|
+
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
1156
|
+
readonly region?: string | undefined;
|
|
1157
|
+
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
1158
|
+
}[] | undefined;
|
|
1162
1159
|
} | {
|
|
1163
|
-
readonly type: "local";
|
|
1164
1160
|
readonly path: string;
|
|
1161
|
+
readonly type: "local";
|
|
1165
1162
|
readonly installedAt: Date;
|
|
1166
1163
|
readonly updatedAt: Date;
|
|
1167
|
-
readonly agents: readonly string[];
|
|
1168
|
-
readonly sourceHash?: string | undefined;
|
|
1169
|
-
readonly renderedFiles?: {
|
|
1170
|
-
readonly [x: string]: readonly {
|
|
1171
|
-
readonly path: string & import("effect/Brand").Brand<"RelativePath"> & import("effect/Brand").Brand<"RenderedFilePath">;
|
|
1172
|
-
}[];
|
|
1173
|
-
} | undefined;
|
|
1174
1164
|
readonly gitTreeHash?: string | undefined;
|
|
1175
1165
|
readonly retainedByPack?: boolean | undefined;
|
|
1166
|
+
readonly resolvedInputs?: {
|
|
1167
|
+
readonly [x: string]: string | number | boolean;
|
|
1168
|
+
} | undefined;
|
|
1169
|
+
readonly materializedTargets?: readonly {
|
|
1170
|
+
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
1171
|
+
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
1172
|
+
readonly region?: string | undefined;
|
|
1173
|
+
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
1174
|
+
}[] | undefined;
|
|
1176
1175
|
} | {
|
|
1176
|
+
readonly name: string & import("effect/Brand").Brand<"ExtensionName">;
|
|
1177
1177
|
readonly type: "registry";
|
|
1178
1178
|
readonly owner: string & import("effect/Brand").Brand<"Handle">;
|
|
1179
|
-
readonly
|
|
1179
|
+
readonly installedAt: Date;
|
|
1180
|
+
readonly updatedAt: Date;
|
|
1180
1181
|
readonly resolvedVersion: string & import("effect/Brand").Brand<"Version">;
|
|
1181
1182
|
readonly integrity: string;
|
|
1182
1183
|
readonly sourceName: string;
|
|
1183
|
-
readonly installedAt: Date;
|
|
1184
|
-
readonly updatedAt: Date;
|
|
1185
|
-
readonly agents: readonly string[];
|
|
1186
|
-
readonly sourceHash?: string | undefined;
|
|
1187
|
-
readonly renderedFiles?: {
|
|
1188
|
-
readonly [x: string]: readonly {
|
|
1189
|
-
readonly path: string & import("effect/Brand").Brand<"RelativePath"> & import("effect/Brand").Brand<"RenderedFilePath">;
|
|
1190
|
-
}[];
|
|
1191
|
-
} | undefined;
|
|
1192
1184
|
readonly gitTreeHash?: string | undefined;
|
|
1193
1185
|
readonly retainedByPack?: boolean | undefined;
|
|
1186
|
+
readonly resolvedInputs?: {
|
|
1187
|
+
readonly [x: string]: string | number | boolean;
|
|
1188
|
+
} | undefined;
|
|
1189
|
+
readonly materializedTargets?: readonly {
|
|
1190
|
+
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
1191
|
+
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
1192
|
+
readonly region?: string | undefined;
|
|
1193
|
+
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
1194
|
+
}[] | undefined;
|
|
1194
1195
|
};
|
|
1195
1196
|
} | undefined;
|
|
1196
|
-
readonly
|
|
1197
|
+
readonly mcpServers?: {
|
|
1197
1198
|
readonly [x: string]: {
|
|
1198
1199
|
readonly type: "github";
|
|
1199
1200
|
readonly owner: string;
|
|
1200
1201
|
readonly repo: string;
|
|
1201
1202
|
readonly installedAt: Date;
|
|
1202
1203
|
readonly updatedAt: Date;
|
|
1203
|
-
readonly agents: readonly string[];
|
|
1204
|
-
readonly ref?: string | undefined;
|
|
1205
1204
|
readonly path?: string | undefined;
|
|
1206
|
-
readonly
|
|
1207
|
-
readonly renderedFiles?: {
|
|
1208
|
-
readonly [x: string]: readonly {
|
|
1209
|
-
readonly path: string & import("effect/Brand").Brand<"RelativePath"> & import("effect/Brand").Brand<"RenderedFilePath">;
|
|
1210
|
-
}[];
|
|
1211
|
-
} | undefined;
|
|
1205
|
+
readonly ref?: string | undefined;
|
|
1212
1206
|
readonly gitTreeHash?: string | undefined;
|
|
1213
1207
|
readonly retainedByPack?: boolean | undefined;
|
|
1208
|
+
readonly syncedAgents?: readonly string[] | undefined;
|
|
1214
1209
|
} | {
|
|
1215
1210
|
readonly type: "gitlab";
|
|
1216
1211
|
readonly owner: string;
|
|
1217
1212
|
readonly repo: string;
|
|
1218
1213
|
readonly installedAt: Date;
|
|
1219
1214
|
readonly updatedAt: Date;
|
|
1220
|
-
readonly agents: readonly string[];
|
|
1221
|
-
readonly ref?: string | undefined;
|
|
1222
1215
|
readonly path?: string | undefined;
|
|
1223
|
-
readonly
|
|
1224
|
-
readonly renderedFiles?: {
|
|
1225
|
-
readonly [x: string]: readonly {
|
|
1226
|
-
readonly path: string & import("effect/Brand").Brand<"RelativePath"> & import("effect/Brand").Brand<"RenderedFilePath">;
|
|
1227
|
-
}[];
|
|
1228
|
-
} | undefined;
|
|
1216
|
+
readonly ref?: string | undefined;
|
|
1229
1217
|
readonly gitTreeHash?: string | undefined;
|
|
1230
1218
|
readonly retainedByPack?: boolean | undefined;
|
|
1219
|
+
readonly syncedAgents?: readonly string[] | undefined;
|
|
1231
1220
|
} | {
|
|
1232
1221
|
readonly type: "bitbucket";
|
|
1233
1222
|
readonly owner: string;
|
|
1234
1223
|
readonly repo: string;
|
|
1235
1224
|
readonly installedAt: Date;
|
|
1236
1225
|
readonly updatedAt: Date;
|
|
1237
|
-
readonly agents: readonly string[];
|
|
1238
|
-
readonly ref?: string | undefined;
|
|
1239
1226
|
readonly path?: string | undefined;
|
|
1240
|
-
readonly
|
|
1241
|
-
readonly renderedFiles?: {
|
|
1242
|
-
readonly [x: string]: readonly {
|
|
1243
|
-
readonly path: string & import("effect/Brand").Brand<"RelativePath"> & import("effect/Brand").Brand<"RenderedFilePath">;
|
|
1244
|
-
}[];
|
|
1245
|
-
} | undefined;
|
|
1227
|
+
readonly ref?: string | undefined;
|
|
1246
1228
|
readonly gitTreeHash?: string | undefined;
|
|
1247
1229
|
readonly retainedByPack?: boolean | undefined;
|
|
1230
|
+
readonly syncedAgents?: readonly string[] | undefined;
|
|
1248
1231
|
} | {
|
|
1249
|
-
readonly type: "azurerepos";
|
|
1250
|
-
readonly organization: string;
|
|
1251
1232
|
readonly project: string;
|
|
1233
|
+
readonly type: "azurerepos";
|
|
1252
1234
|
readonly repo: string;
|
|
1235
|
+
readonly organization: string;
|
|
1253
1236
|
readonly installedAt: Date;
|
|
1254
1237
|
readonly updatedAt: Date;
|
|
1255
|
-
readonly agents: readonly string[];
|
|
1256
|
-
readonly ref?: string | undefined;
|
|
1257
1238
|
readonly path?: string | undefined;
|
|
1258
|
-
readonly
|
|
1259
|
-
readonly renderedFiles?: {
|
|
1260
|
-
readonly [x: string]: readonly {
|
|
1261
|
-
readonly path: string & import("effect/Brand").Brand<"RelativePath"> & import("effect/Brand").Brand<"RenderedFilePath">;
|
|
1262
|
-
}[];
|
|
1263
|
-
} | undefined;
|
|
1239
|
+
readonly ref?: string | undefined;
|
|
1264
1240
|
readonly gitTreeHash?: string | undefined;
|
|
1265
1241
|
readonly retainedByPack?: boolean | undefined;
|
|
1242
|
+
readonly syncedAgents?: readonly string[] | undefined;
|
|
1266
1243
|
} | {
|
|
1267
|
-
readonly type: "git";
|
|
1268
1244
|
readonly url: string;
|
|
1245
|
+
readonly type: "git";
|
|
1269
1246
|
readonly installedAt: Date;
|
|
1270
1247
|
readonly updatedAt: Date;
|
|
1271
|
-
readonly agents: readonly string[];
|
|
1272
|
-
readonly ref?: string | undefined;
|
|
1273
1248
|
readonly path?: string | undefined;
|
|
1274
|
-
readonly
|
|
1275
|
-
readonly renderedFiles?: {
|
|
1276
|
-
readonly [x: string]: readonly {
|
|
1277
|
-
readonly path: string & import("effect/Brand").Brand<"RelativePath"> & import("effect/Brand").Brand<"RenderedFilePath">;
|
|
1278
|
-
}[];
|
|
1279
|
-
} | undefined;
|
|
1249
|
+
readonly ref?: string | undefined;
|
|
1280
1250
|
readonly gitTreeHash?: string | undefined;
|
|
1281
1251
|
readonly retainedByPack?: boolean | undefined;
|
|
1252
|
+
readonly syncedAgents?: readonly string[] | undefined;
|
|
1282
1253
|
} | {
|
|
1283
|
-
readonly type: "local";
|
|
1284
1254
|
readonly path: string;
|
|
1255
|
+
readonly type: "local";
|
|
1285
1256
|
readonly installedAt: Date;
|
|
1286
1257
|
readonly updatedAt: Date;
|
|
1287
|
-
readonly agents: readonly string[];
|
|
1288
|
-
readonly sourceHash?: string | undefined;
|
|
1289
|
-
readonly renderedFiles?: {
|
|
1290
|
-
readonly [x: string]: readonly {
|
|
1291
|
-
readonly path: string & import("effect/Brand").Brand<"RelativePath"> & import("effect/Brand").Brand<"RenderedFilePath">;
|
|
1292
|
-
}[];
|
|
1293
|
-
} | undefined;
|
|
1294
1258
|
readonly gitTreeHash?: string | undefined;
|
|
1295
1259
|
readonly retainedByPack?: boolean | undefined;
|
|
1260
|
+
readonly syncedAgents?: readonly string[] | undefined;
|
|
1296
1261
|
} | {
|
|
1262
|
+
readonly name: string & import("effect/Brand").Brand<"ExtensionName">;
|
|
1297
1263
|
readonly type: "registry";
|
|
1298
1264
|
readonly owner: string & import("effect/Brand").Brand<"Handle">;
|
|
1299
|
-
readonly
|
|
1265
|
+
readonly installedAt: Date;
|
|
1266
|
+
readonly updatedAt: Date;
|
|
1300
1267
|
readonly resolvedVersion: string & import("effect/Brand").Brand<"Version">;
|
|
1301
1268
|
readonly integrity: string;
|
|
1302
1269
|
readonly sourceName: string;
|
|
1270
|
+
readonly gitTreeHash?: string | undefined;
|
|
1271
|
+
readonly retainedByPack?: boolean | undefined;
|
|
1272
|
+
readonly syncedAgents?: readonly string[] | undefined;
|
|
1273
|
+
} | {
|
|
1274
|
+
readonly type: "inline";
|
|
1303
1275
|
readonly installedAt: Date;
|
|
1304
1276
|
readonly updatedAt: Date;
|
|
1305
|
-
readonly
|
|
1306
|
-
readonly
|
|
1307
|
-
readonly
|
|
1308
|
-
readonly [x: string]:
|
|
1309
|
-
readonly path: string & import("effect/Brand").Brand<"RelativePath"> & import("effect/Brand").Brand<"RenderedFilePath">;
|
|
1310
|
-
}[];
|
|
1277
|
+
readonly url?: string | undefined;
|
|
1278
|
+
readonly command?: string | undefined;
|
|
1279
|
+
readonly headers?: {
|
|
1280
|
+
readonly [x: string]: string;
|
|
1311
1281
|
} | undefined;
|
|
1282
|
+
readonly args?: readonly string[] | undefined;
|
|
1312
1283
|
readonly gitTreeHash?: string | undefined;
|
|
1313
1284
|
readonly retainedByPack?: boolean | undefined;
|
|
1285
|
+
readonly syncedAgents?: readonly string[] | undefined;
|
|
1314
1286
|
};
|
|
1315
1287
|
} | undefined;
|
|
1316
|
-
readonly
|
|
1288
|
+
readonly hooks?: {
|
|
1317
1289
|
readonly [x: string]: {
|
|
1318
1290
|
readonly type: "github";
|
|
1319
1291
|
readonly owner: string;
|
|
1320
1292
|
readonly repo: string;
|
|
1321
1293
|
readonly installedAt: Date;
|
|
1322
1294
|
readonly updatedAt: Date;
|
|
1323
|
-
readonly ref?: string | undefined;
|
|
1324
1295
|
readonly path?: string | undefined;
|
|
1296
|
+
readonly ref?: string | undefined;
|
|
1325
1297
|
readonly gitTreeHash?: string | undefined;
|
|
1326
1298
|
readonly retainedByPack?: boolean | undefined;
|
|
1327
|
-
readonly
|
|
1299
|
+
readonly materializedTargets?: readonly {
|
|
1300
|
+
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
1301
|
+
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
1302
|
+
readonly region?: string | undefined;
|
|
1303
|
+
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
1304
|
+
}[] | undefined;
|
|
1328
1305
|
} | {
|
|
1329
1306
|
readonly type: "gitlab";
|
|
1330
1307
|
readonly owner: string;
|
|
1331
1308
|
readonly repo: string;
|
|
1332
1309
|
readonly installedAt: Date;
|
|
1333
1310
|
readonly updatedAt: Date;
|
|
1334
|
-
readonly ref?: string | undefined;
|
|
1335
1311
|
readonly path?: string | undefined;
|
|
1312
|
+
readonly ref?: string | undefined;
|
|
1336
1313
|
readonly gitTreeHash?: string | undefined;
|
|
1337
1314
|
readonly retainedByPack?: boolean | undefined;
|
|
1338
|
-
readonly
|
|
1315
|
+
readonly materializedTargets?: readonly {
|
|
1316
|
+
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
1317
|
+
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
1318
|
+
readonly region?: string | undefined;
|
|
1319
|
+
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
1320
|
+
}[] | undefined;
|
|
1339
1321
|
} | {
|
|
1340
1322
|
readonly type: "bitbucket";
|
|
1341
1323
|
readonly owner: string;
|
|
1342
1324
|
readonly repo: string;
|
|
1343
1325
|
readonly installedAt: Date;
|
|
1344
1326
|
readonly updatedAt: Date;
|
|
1345
|
-
readonly ref?: string | undefined;
|
|
1346
1327
|
readonly path?: string | undefined;
|
|
1328
|
+
readonly ref?: string | undefined;
|
|
1347
1329
|
readonly gitTreeHash?: string | undefined;
|
|
1348
1330
|
readonly retainedByPack?: boolean | undefined;
|
|
1349
|
-
readonly
|
|
1331
|
+
readonly materializedTargets?: readonly {
|
|
1332
|
+
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
1333
|
+
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
1334
|
+
readonly region?: string | undefined;
|
|
1335
|
+
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
1336
|
+
}[] | undefined;
|
|
1350
1337
|
} | {
|
|
1351
|
-
readonly type: "azurerepos";
|
|
1352
|
-
readonly organization: string;
|
|
1353
1338
|
readonly project: string;
|
|
1339
|
+
readonly type: "azurerepos";
|
|
1354
1340
|
readonly repo: string;
|
|
1341
|
+
readonly organization: string;
|
|
1355
1342
|
readonly installedAt: Date;
|
|
1356
1343
|
readonly updatedAt: Date;
|
|
1357
|
-
readonly ref?: string | undefined;
|
|
1358
1344
|
readonly path?: string | undefined;
|
|
1345
|
+
readonly ref?: string | undefined;
|
|
1359
1346
|
readonly gitTreeHash?: string | undefined;
|
|
1360
1347
|
readonly retainedByPack?: boolean | undefined;
|
|
1361
|
-
readonly
|
|
1348
|
+
readonly materializedTargets?: readonly {
|
|
1349
|
+
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
1350
|
+
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
1351
|
+
readonly region?: string | undefined;
|
|
1352
|
+
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
1353
|
+
}[] | undefined;
|
|
1362
1354
|
} | {
|
|
1363
|
-
readonly type: "git";
|
|
1364
1355
|
readonly url: string;
|
|
1356
|
+
readonly type: "git";
|
|
1365
1357
|
readonly installedAt: Date;
|
|
1366
1358
|
readonly updatedAt: Date;
|
|
1367
|
-
readonly ref?: string | undefined;
|
|
1368
1359
|
readonly path?: string | undefined;
|
|
1360
|
+
readonly ref?: string | undefined;
|
|
1369
1361
|
readonly gitTreeHash?: string | undefined;
|
|
1370
1362
|
readonly retainedByPack?: boolean | undefined;
|
|
1371
|
-
readonly
|
|
1363
|
+
readonly materializedTargets?: readonly {
|
|
1364
|
+
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
1365
|
+
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
1366
|
+
readonly region?: string | undefined;
|
|
1367
|
+
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
1368
|
+
}[] | undefined;
|
|
1372
1369
|
} | {
|
|
1373
|
-
readonly type: "local";
|
|
1374
1370
|
readonly path: string;
|
|
1371
|
+
readonly type: "local";
|
|
1375
1372
|
readonly installedAt: Date;
|
|
1376
1373
|
readonly updatedAt: Date;
|
|
1377
1374
|
readonly gitTreeHash?: string | undefined;
|
|
1378
1375
|
readonly retainedByPack?: boolean | undefined;
|
|
1379
|
-
readonly
|
|
1376
|
+
readonly materializedTargets?: readonly {
|
|
1377
|
+
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
1378
|
+
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
1379
|
+
readonly region?: string | undefined;
|
|
1380
|
+
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
1381
|
+
}[] | undefined;
|
|
1380
1382
|
} | {
|
|
1383
|
+
readonly name: string & import("effect/Brand").Brand<"ExtensionName">;
|
|
1381
1384
|
readonly type: "registry";
|
|
1382
1385
|
readonly owner: string & import("effect/Brand").Brand<"Handle">;
|
|
1383
|
-
readonly
|
|
1386
|
+
readonly installedAt: Date;
|
|
1387
|
+
readonly updatedAt: Date;
|
|
1384
1388
|
readonly resolvedVersion: string & import("effect/Brand").Brand<"Version">;
|
|
1385
1389
|
readonly integrity: string;
|
|
1386
1390
|
readonly sourceName: string;
|
|
1387
|
-
readonly installedAt: Date;
|
|
1388
|
-
readonly updatedAt: Date;
|
|
1389
|
-
readonly gitTreeHash?: string | undefined;
|
|
1390
|
-
readonly retainedByPack?: boolean | undefined;
|
|
1391
|
-
readonly syncedAgents?: readonly string[] | undefined;
|
|
1392
|
-
} | {
|
|
1393
|
-
readonly installedAt: Date;
|
|
1394
|
-
readonly updatedAt: Date;
|
|
1395
|
-
readonly type: "inline";
|
|
1396
1391
|
readonly gitTreeHash?: string | undefined;
|
|
1397
1392
|
readonly retainedByPack?: boolean | undefined;
|
|
1398
|
-
readonly
|
|
1399
|
-
|
|
1400
|
-
|
|
1401
|
-
|
|
1402
|
-
readonly
|
|
1403
|
-
} | undefined;
|
|
1404
|
-
readonly syncedAgents?: readonly string[] | undefined;
|
|
1393
|
+
readonly materializedTargets?: readonly {
|
|
1394
|
+
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
1395
|
+
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
1396
|
+
readonly region?: string | undefined;
|
|
1397
|
+
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
1398
|
+
}[] | undefined;
|
|
1405
1399
|
};
|
|
1406
1400
|
} | undefined;
|
|
1407
|
-
readonly
|
|
1401
|
+
readonly subagents?: {
|
|
1408
1402
|
readonly [x: string]: {
|
|
1409
1403
|
readonly type: "github";
|
|
1410
1404
|
readonly owner: string;
|
|
1411
1405
|
readonly repo: string;
|
|
1406
|
+
readonly agents: readonly string[];
|
|
1412
1407
|
readonly installedAt: Date;
|
|
1413
1408
|
readonly updatedAt: Date;
|
|
1414
|
-
readonly ref?: string | undefined;
|
|
1415
1409
|
readonly path?: string | undefined;
|
|
1416
|
-
readonly
|
|
1417
|
-
|
|
1410
|
+
readonly ref?: string | undefined;
|
|
1411
|
+
readonly sourceHash?: string | undefined;
|
|
1412
|
+
readonly renderedFiles?: {
|
|
1413
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1414
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1415
|
+
}, "Type">[];
|
|
1418
1416
|
} | undefined;
|
|
1419
|
-
readonly materializedTargets?: readonly {
|
|
1420
|
-
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
1421
|
-
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
1422
|
-
readonly region?: string | undefined;
|
|
1423
|
-
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
1424
|
-
}[] | undefined;
|
|
1425
1417
|
readonly gitTreeHash?: string | undefined;
|
|
1426
1418
|
readonly retainedByPack?: boolean | undefined;
|
|
1427
1419
|
} | {
|
|
1428
1420
|
readonly type: "gitlab";
|
|
1429
1421
|
readonly owner: string;
|
|
1430
1422
|
readonly repo: string;
|
|
1423
|
+
readonly agents: readonly string[];
|
|
1431
1424
|
readonly installedAt: Date;
|
|
1432
1425
|
readonly updatedAt: Date;
|
|
1433
|
-
readonly ref?: string | undefined;
|
|
1434
1426
|
readonly path?: string | undefined;
|
|
1435
|
-
readonly
|
|
1436
|
-
|
|
1427
|
+
readonly ref?: string | undefined;
|
|
1428
|
+
readonly sourceHash?: string | undefined;
|
|
1429
|
+
readonly renderedFiles?: {
|
|
1430
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1431
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1432
|
+
}, "Type">[];
|
|
1437
1433
|
} | undefined;
|
|
1438
|
-
readonly materializedTargets?: readonly {
|
|
1439
|
-
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
1440
|
-
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
1441
|
-
readonly region?: string | undefined;
|
|
1442
|
-
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
1443
|
-
}[] | undefined;
|
|
1444
1434
|
readonly gitTreeHash?: string | undefined;
|
|
1445
1435
|
readonly retainedByPack?: boolean | undefined;
|
|
1446
1436
|
} | {
|
|
1447
1437
|
readonly type: "bitbucket";
|
|
1448
1438
|
readonly owner: string;
|
|
1449
1439
|
readonly repo: string;
|
|
1440
|
+
readonly agents: readonly string[];
|
|
1450
1441
|
readonly installedAt: Date;
|
|
1451
1442
|
readonly updatedAt: Date;
|
|
1452
|
-
readonly ref?: string | undefined;
|
|
1453
1443
|
readonly path?: string | undefined;
|
|
1454
|
-
readonly
|
|
1455
|
-
|
|
1444
|
+
readonly ref?: string | undefined;
|
|
1445
|
+
readonly sourceHash?: string | undefined;
|
|
1446
|
+
readonly renderedFiles?: {
|
|
1447
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1448
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1449
|
+
}, "Type">[];
|
|
1456
1450
|
} | undefined;
|
|
1457
|
-
readonly materializedTargets?: readonly {
|
|
1458
|
-
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
1459
|
-
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
1460
|
-
readonly region?: string | undefined;
|
|
1461
|
-
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
1462
|
-
}[] | undefined;
|
|
1463
1451
|
readonly gitTreeHash?: string | undefined;
|
|
1464
1452
|
readonly retainedByPack?: boolean | undefined;
|
|
1465
1453
|
} | {
|
|
1466
|
-
readonly type: "azurerepos";
|
|
1467
|
-
readonly organization: string;
|
|
1468
1454
|
readonly project: string;
|
|
1455
|
+
readonly type: "azurerepos";
|
|
1469
1456
|
readonly repo: string;
|
|
1457
|
+
readonly organization: string;
|
|
1458
|
+
readonly agents: readonly string[];
|
|
1470
1459
|
readonly installedAt: Date;
|
|
1471
1460
|
readonly updatedAt: Date;
|
|
1472
|
-
readonly ref?: string | undefined;
|
|
1473
1461
|
readonly path?: string | undefined;
|
|
1474
|
-
readonly
|
|
1475
|
-
|
|
1462
|
+
readonly ref?: string | undefined;
|
|
1463
|
+
readonly sourceHash?: string | undefined;
|
|
1464
|
+
readonly renderedFiles?: {
|
|
1465
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1466
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1467
|
+
}, "Type">[];
|
|
1476
1468
|
} | undefined;
|
|
1477
|
-
readonly materializedTargets?: readonly {
|
|
1478
|
-
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
1479
|
-
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
1480
|
-
readonly region?: string | undefined;
|
|
1481
|
-
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
1482
|
-
}[] | undefined;
|
|
1483
1469
|
readonly gitTreeHash?: string | undefined;
|
|
1484
1470
|
readonly retainedByPack?: boolean | undefined;
|
|
1485
1471
|
} | {
|
|
1486
|
-
readonly type: "git";
|
|
1487
1472
|
readonly url: string;
|
|
1473
|
+
readonly type: "git";
|
|
1474
|
+
readonly agents: readonly string[];
|
|
1488
1475
|
readonly installedAt: Date;
|
|
1489
1476
|
readonly updatedAt: Date;
|
|
1490
|
-
readonly ref?: string | undefined;
|
|
1491
1477
|
readonly path?: string | undefined;
|
|
1492
|
-
readonly
|
|
1493
|
-
|
|
1478
|
+
readonly ref?: string | undefined;
|
|
1479
|
+
readonly sourceHash?: string | undefined;
|
|
1480
|
+
readonly renderedFiles?: {
|
|
1481
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1482
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1483
|
+
}, "Type">[];
|
|
1494
1484
|
} | undefined;
|
|
1495
|
-
readonly materializedTargets?: readonly {
|
|
1496
|
-
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
1497
|
-
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
1498
|
-
readonly region?: string | undefined;
|
|
1499
|
-
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
1500
|
-
}[] | undefined;
|
|
1501
1485
|
readonly gitTreeHash?: string | undefined;
|
|
1502
1486
|
readonly retainedByPack?: boolean | undefined;
|
|
1503
1487
|
} | {
|
|
1504
|
-
readonly type: "local";
|
|
1505
1488
|
readonly path: string;
|
|
1489
|
+
readonly type: "local";
|
|
1490
|
+
readonly agents: readonly string[];
|
|
1506
1491
|
readonly installedAt: Date;
|
|
1507
1492
|
readonly updatedAt: Date;
|
|
1508
|
-
readonly
|
|
1509
|
-
|
|
1493
|
+
readonly sourceHash?: string | undefined;
|
|
1494
|
+
readonly renderedFiles?: {
|
|
1495
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1496
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1497
|
+
}, "Type">[];
|
|
1510
1498
|
} | undefined;
|
|
1511
|
-
readonly materializedTargets?: readonly {
|
|
1512
|
-
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
1513
|
-
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
1514
|
-
readonly region?: string | undefined;
|
|
1515
|
-
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
1516
|
-
}[] | undefined;
|
|
1517
1499
|
readonly gitTreeHash?: string | undefined;
|
|
1518
1500
|
readonly retainedByPack?: boolean | undefined;
|
|
1519
1501
|
} | {
|
|
1502
|
+
readonly name: string & import("effect/Brand").Brand<"ExtensionName">;
|
|
1520
1503
|
readonly type: "registry";
|
|
1521
1504
|
readonly owner: string & import("effect/Brand").Brand<"Handle">;
|
|
1522
|
-
readonly
|
|
1505
|
+
readonly agents: readonly string[];
|
|
1506
|
+
readonly installedAt: Date;
|
|
1507
|
+
readonly updatedAt: Date;
|
|
1523
1508
|
readonly resolvedVersion: string & import("effect/Brand").Brand<"Version">;
|
|
1524
1509
|
readonly integrity: string;
|
|
1525
1510
|
readonly sourceName: string;
|
|
1526
|
-
readonly
|
|
1527
|
-
readonly
|
|
1528
|
-
|
|
1529
|
-
|
|
1511
|
+
readonly sourceHash?: string | undefined;
|
|
1512
|
+
readonly renderedFiles?: {
|
|
1513
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1514
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1515
|
+
}, "Type">[];
|
|
1530
1516
|
} | undefined;
|
|
1531
|
-
readonly materializedTargets?: readonly {
|
|
1532
|
-
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
1533
|
-
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
1534
|
-
readonly region?: string | undefined;
|
|
1535
|
-
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
1536
|
-
}[] | undefined;
|
|
1537
1517
|
readonly gitTreeHash?: string | undefined;
|
|
1538
1518
|
readonly retainedByPack?: boolean | undefined;
|
|
1539
1519
|
};
|
|
1540
1520
|
} | undefined;
|
|
1541
|
-
readonly
|
|
1521
|
+
readonly commands?: {
|
|
1542
1522
|
readonly [x: string]: {
|
|
1543
1523
|
readonly type: "github";
|
|
1544
1524
|
readonly owner: string;
|
|
1545
1525
|
readonly repo: string;
|
|
1526
|
+
readonly agents: readonly string[];
|
|
1546
1527
|
readonly installedAt: Date;
|
|
1547
1528
|
readonly updatedAt: Date;
|
|
1548
|
-
readonly ref?: string | undefined;
|
|
1549
1529
|
readonly path?: string | undefined;
|
|
1550
|
-
readonly
|
|
1551
|
-
|
|
1552
|
-
|
|
1553
|
-
readonly
|
|
1554
|
-
|
|
1555
|
-
|
|
1530
|
+
readonly ref?: string | undefined;
|
|
1531
|
+
readonly sourceHash?: string | undefined;
|
|
1532
|
+
readonly renderedFiles?: {
|
|
1533
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1534
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1535
|
+
}, "Type">[];
|
|
1536
|
+
} | undefined;
|
|
1556
1537
|
readonly gitTreeHash?: string | undefined;
|
|
1557
1538
|
readonly retainedByPack?: boolean | undefined;
|
|
1558
1539
|
} | {
|
|
1559
1540
|
readonly type: "gitlab";
|
|
1560
1541
|
readonly owner: string;
|
|
1561
1542
|
readonly repo: string;
|
|
1543
|
+
readonly agents: readonly string[];
|
|
1562
1544
|
readonly installedAt: Date;
|
|
1563
1545
|
readonly updatedAt: Date;
|
|
1564
|
-
readonly ref?: string | undefined;
|
|
1565
1546
|
readonly path?: string | undefined;
|
|
1566
|
-
readonly
|
|
1567
|
-
|
|
1568
|
-
|
|
1569
|
-
readonly
|
|
1570
|
-
|
|
1571
|
-
|
|
1547
|
+
readonly ref?: string | undefined;
|
|
1548
|
+
readonly sourceHash?: string | undefined;
|
|
1549
|
+
readonly renderedFiles?: {
|
|
1550
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1551
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1552
|
+
}, "Type">[];
|
|
1553
|
+
} | undefined;
|
|
1572
1554
|
readonly gitTreeHash?: string | undefined;
|
|
1573
1555
|
readonly retainedByPack?: boolean | undefined;
|
|
1574
1556
|
} | {
|
|
1575
1557
|
readonly type: "bitbucket";
|
|
1576
1558
|
readonly owner: string;
|
|
1577
1559
|
readonly repo: string;
|
|
1560
|
+
readonly agents: readonly string[];
|
|
1578
1561
|
readonly installedAt: Date;
|
|
1579
1562
|
readonly updatedAt: Date;
|
|
1580
|
-
readonly ref?: string | undefined;
|
|
1581
1563
|
readonly path?: string | undefined;
|
|
1582
|
-
readonly
|
|
1583
|
-
|
|
1584
|
-
|
|
1585
|
-
readonly
|
|
1586
|
-
|
|
1587
|
-
|
|
1564
|
+
readonly ref?: string | undefined;
|
|
1565
|
+
readonly sourceHash?: string | undefined;
|
|
1566
|
+
readonly renderedFiles?: {
|
|
1567
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1568
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1569
|
+
}, "Type">[];
|
|
1570
|
+
} | undefined;
|
|
1588
1571
|
readonly gitTreeHash?: string | undefined;
|
|
1589
1572
|
readonly retainedByPack?: boolean | undefined;
|
|
1590
1573
|
} | {
|
|
1591
|
-
readonly type: "azurerepos";
|
|
1592
|
-
readonly organization: string;
|
|
1593
1574
|
readonly project: string;
|
|
1575
|
+
readonly type: "azurerepos";
|
|
1594
1576
|
readonly repo: string;
|
|
1577
|
+
readonly organization: string;
|
|
1578
|
+
readonly agents: readonly string[];
|
|
1595
1579
|
readonly installedAt: Date;
|
|
1596
1580
|
readonly updatedAt: Date;
|
|
1597
|
-
readonly ref?: string | undefined;
|
|
1598
1581
|
readonly path?: string | undefined;
|
|
1599
|
-
readonly
|
|
1600
|
-
|
|
1601
|
-
|
|
1602
|
-
readonly
|
|
1603
|
-
|
|
1604
|
-
|
|
1582
|
+
readonly ref?: string | undefined;
|
|
1583
|
+
readonly sourceHash?: string | undefined;
|
|
1584
|
+
readonly renderedFiles?: {
|
|
1585
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1586
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1587
|
+
}, "Type">[];
|
|
1588
|
+
} | undefined;
|
|
1605
1589
|
readonly gitTreeHash?: string | undefined;
|
|
1606
1590
|
readonly retainedByPack?: boolean | undefined;
|
|
1607
1591
|
} | {
|
|
1608
|
-
readonly type: "git";
|
|
1609
1592
|
readonly url: string;
|
|
1593
|
+
readonly type: "git";
|
|
1594
|
+
readonly agents: readonly string[];
|
|
1610
1595
|
readonly installedAt: Date;
|
|
1611
1596
|
readonly updatedAt: Date;
|
|
1612
|
-
readonly ref?: string | undefined;
|
|
1613
1597
|
readonly path?: string | undefined;
|
|
1614
|
-
readonly
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
readonly
|
|
1618
|
-
|
|
1619
|
-
|
|
1598
|
+
readonly ref?: string | undefined;
|
|
1599
|
+
readonly sourceHash?: string | undefined;
|
|
1600
|
+
readonly renderedFiles?: {
|
|
1601
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1602
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1603
|
+
}, "Type">[];
|
|
1604
|
+
} | undefined;
|
|
1620
1605
|
readonly gitTreeHash?: string | undefined;
|
|
1621
1606
|
readonly retainedByPack?: boolean | undefined;
|
|
1622
1607
|
} | {
|
|
1623
|
-
readonly type: "local";
|
|
1624
1608
|
readonly path: string;
|
|
1609
|
+
readonly type: "local";
|
|
1610
|
+
readonly agents: readonly string[];
|
|
1625
1611
|
readonly installedAt: Date;
|
|
1626
1612
|
readonly updatedAt: Date;
|
|
1627
|
-
readonly
|
|
1628
|
-
|
|
1629
|
-
readonly
|
|
1630
|
-
|
|
1631
|
-
|
|
1632
|
-
}
|
|
1613
|
+
readonly sourceHash?: string | undefined;
|
|
1614
|
+
readonly renderedFiles?: {
|
|
1615
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1616
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1617
|
+
}, "Type">[];
|
|
1618
|
+
} | undefined;
|
|
1633
1619
|
readonly gitTreeHash?: string | undefined;
|
|
1634
1620
|
readonly retainedByPack?: boolean | undefined;
|
|
1635
1621
|
} | {
|
|
1622
|
+
readonly name: string & import("effect/Brand").Brand<"ExtensionName">;
|
|
1636
1623
|
readonly type: "registry";
|
|
1637
1624
|
readonly owner: string & import("effect/Brand").Brand<"Handle">;
|
|
1638
|
-
readonly
|
|
1625
|
+
readonly agents: readonly string[];
|
|
1626
|
+
readonly installedAt: Date;
|
|
1627
|
+
readonly updatedAt: Date;
|
|
1639
1628
|
readonly resolvedVersion: string & import("effect/Brand").Brand<"Version">;
|
|
1640
1629
|
readonly integrity: string;
|
|
1641
1630
|
readonly sourceName: string;
|
|
1642
|
-
readonly
|
|
1643
|
-
readonly
|
|
1644
|
-
|
|
1645
|
-
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
1649
|
-
}[] | undefined;
|
|
1631
|
+
readonly sourceHash?: string | undefined;
|
|
1632
|
+
readonly renderedFiles?: {
|
|
1633
|
+
readonly [x: string]: readonly Schema.Struct.ReadonlySide<{
|
|
1634
|
+
readonly path: Schema.brand<Schema.brand<Schema.String, "RelativePath">, "RenderedFilePath">;
|
|
1635
|
+
}, "Type">[];
|
|
1636
|
+
} | undefined;
|
|
1650
1637
|
readonly gitTreeHash?: string | undefined;
|
|
1651
1638
|
readonly retainedByPack?: boolean | undefined;
|
|
1652
1639
|
};
|
|
1653
1640
|
} | undefined;
|
|
1654
|
-
readonly
|
|
1641
|
+
readonly rules?: {
|
|
1655
1642
|
readonly [x: string]: {
|
|
1656
1643
|
readonly type: "github";
|
|
1657
1644
|
readonly owner: string;
|
|
1658
1645
|
readonly repo: string;
|
|
1659
1646
|
readonly installedAt: Date;
|
|
1660
1647
|
readonly updatedAt: Date;
|
|
1661
|
-
readonly ref?: string | undefined;
|
|
1662
1648
|
readonly path?: string | undefined;
|
|
1649
|
+
readonly ref?: string | undefined;
|
|
1650
|
+
readonly gitTreeHash?: string | undefined;
|
|
1651
|
+
readonly retainedByPack?: boolean | undefined;
|
|
1663
1652
|
readonly materializedTargets?: readonly {
|
|
1664
1653
|
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
1665
1654
|
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
1666
1655
|
readonly region?: string | undefined;
|
|
1667
1656
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
1668
1657
|
}[] | undefined;
|
|
1669
|
-
readonly gitTreeHash?: string | undefined;
|
|
1670
|
-
readonly retainedByPack?: boolean | undefined;
|
|
1671
1658
|
} | {
|
|
1672
1659
|
readonly type: "gitlab";
|
|
1673
1660
|
readonly owner: string;
|
|
1674
1661
|
readonly repo: string;
|
|
1675
1662
|
readonly installedAt: Date;
|
|
1676
1663
|
readonly updatedAt: Date;
|
|
1677
|
-
readonly ref?: string | undefined;
|
|
1678
1664
|
readonly path?: string | undefined;
|
|
1665
|
+
readonly ref?: string | undefined;
|
|
1666
|
+
readonly gitTreeHash?: string | undefined;
|
|
1667
|
+
readonly retainedByPack?: boolean | undefined;
|
|
1679
1668
|
readonly materializedTargets?: readonly {
|
|
1680
1669
|
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
1681
1670
|
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
1682
1671
|
readonly region?: string | undefined;
|
|
1683
1672
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
1684
1673
|
}[] | undefined;
|
|
1685
|
-
readonly gitTreeHash?: string | undefined;
|
|
1686
|
-
readonly retainedByPack?: boolean | undefined;
|
|
1687
1674
|
} | {
|
|
1688
1675
|
readonly type: "bitbucket";
|
|
1689
1676
|
readonly owner: string;
|
|
1690
1677
|
readonly repo: string;
|
|
1691
1678
|
readonly installedAt: Date;
|
|
1692
1679
|
readonly updatedAt: Date;
|
|
1693
|
-
readonly ref?: string | undefined;
|
|
1694
1680
|
readonly path?: string | undefined;
|
|
1681
|
+
readonly ref?: string | undefined;
|
|
1682
|
+
readonly gitTreeHash?: string | undefined;
|
|
1683
|
+
readonly retainedByPack?: boolean | undefined;
|
|
1695
1684
|
readonly materializedTargets?: readonly {
|
|
1696
1685
|
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
1697
1686
|
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
1698
1687
|
readonly region?: string | undefined;
|
|
1699
1688
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
1700
1689
|
}[] | undefined;
|
|
1701
|
-
readonly gitTreeHash?: string | undefined;
|
|
1702
|
-
readonly retainedByPack?: boolean | undefined;
|
|
1703
1690
|
} | {
|
|
1704
|
-
readonly type: "azurerepos";
|
|
1705
|
-
readonly organization: string;
|
|
1706
1691
|
readonly project: string;
|
|
1692
|
+
readonly type: "azurerepos";
|
|
1707
1693
|
readonly repo: string;
|
|
1694
|
+
readonly organization: string;
|
|
1708
1695
|
readonly installedAt: Date;
|
|
1709
1696
|
readonly updatedAt: Date;
|
|
1710
|
-
readonly ref?: string | undefined;
|
|
1711
1697
|
readonly path?: string | undefined;
|
|
1698
|
+
readonly ref?: string | undefined;
|
|
1699
|
+
readonly gitTreeHash?: string | undefined;
|
|
1700
|
+
readonly retainedByPack?: boolean | undefined;
|
|
1712
1701
|
readonly materializedTargets?: readonly {
|
|
1713
1702
|
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
1714
1703
|
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
1715
1704
|
readonly region?: string | undefined;
|
|
1716
1705
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
1717
1706
|
}[] | undefined;
|
|
1718
|
-
readonly gitTreeHash?: string | undefined;
|
|
1719
|
-
readonly retainedByPack?: boolean | undefined;
|
|
1720
1707
|
} | {
|
|
1721
|
-
readonly type: "git";
|
|
1722
1708
|
readonly url: string;
|
|
1709
|
+
readonly type: "git";
|
|
1723
1710
|
readonly installedAt: Date;
|
|
1724
1711
|
readonly updatedAt: Date;
|
|
1725
|
-
readonly ref?: string | undefined;
|
|
1726
1712
|
readonly path?: string | undefined;
|
|
1713
|
+
readonly ref?: string | undefined;
|
|
1714
|
+
readonly gitTreeHash?: string | undefined;
|
|
1715
|
+
readonly retainedByPack?: boolean | undefined;
|
|
1727
1716
|
readonly materializedTargets?: readonly {
|
|
1728
1717
|
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
1729
1718
|
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
1730
1719
|
readonly region?: string | undefined;
|
|
1731
1720
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
1732
1721
|
}[] | undefined;
|
|
1733
|
-
readonly gitTreeHash?: string | undefined;
|
|
1734
|
-
readonly retainedByPack?: boolean | undefined;
|
|
1735
1722
|
} | {
|
|
1736
|
-
readonly type: "local";
|
|
1737
1723
|
readonly path: string;
|
|
1724
|
+
readonly type: "local";
|
|
1738
1725
|
readonly installedAt: Date;
|
|
1739
1726
|
readonly updatedAt: Date;
|
|
1727
|
+
readonly gitTreeHash?: string | undefined;
|
|
1728
|
+
readonly retainedByPack?: boolean | undefined;
|
|
1740
1729
|
readonly materializedTargets?: readonly {
|
|
1741
1730
|
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
1742
1731
|
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
1743
1732
|
readonly region?: string | undefined;
|
|
1744
1733
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
1745
1734
|
}[] | undefined;
|
|
1746
|
-
readonly gitTreeHash?: string | undefined;
|
|
1747
|
-
readonly retainedByPack?: boolean | undefined;
|
|
1748
1735
|
} | {
|
|
1736
|
+
readonly name: string & import("effect/Brand").Brand<"ExtensionName">;
|
|
1749
1737
|
readonly type: "registry";
|
|
1750
1738
|
readonly owner: string & import("effect/Brand").Brand<"Handle">;
|
|
1751
|
-
readonly
|
|
1739
|
+
readonly installedAt: Date;
|
|
1740
|
+
readonly updatedAt: Date;
|
|
1752
1741
|
readonly resolvedVersion: string & import("effect/Brand").Brand<"Version">;
|
|
1753
1742
|
readonly integrity: string;
|
|
1754
1743
|
readonly sourceName: string;
|
|
1755
|
-
readonly
|
|
1756
|
-
readonly
|
|
1744
|
+
readonly gitTreeHash?: string | undefined;
|
|
1745
|
+
readonly retainedByPack?: boolean | undefined;
|
|
1757
1746
|
readonly materializedTargets?: readonly {
|
|
1758
1747
|
readonly target: string & import("effect/Brand").Brand<"RelativePath">;
|
|
1759
1748
|
readonly mode: "sync-once" | "sync-always" | "managed-region";
|
|
1760
1749
|
readonly region?: string | undefined;
|
|
1761
1750
|
readonly renderHash?: (string & import("effect/Brand").Brand<"SourceHash">) | undefined;
|
|
1762
1751
|
}[] | undefined;
|
|
1763
|
-
readonly gitTreeHash?: string | undefined;
|
|
1764
|
-
readonly retainedByPack?: boolean | undefined;
|
|
1765
1752
|
};
|
|
1766
1753
|
} | undefined;
|
|
1767
1754
|
readonly packs?: {
|
|
1768
1755
|
readonly [x: string]: {
|
|
1756
|
+
readonly name: string & import("effect/Brand").Brand<"ExtensionName">;
|
|
1769
1757
|
readonly type: "registry";
|
|
1770
1758
|
readonly owner: string & import("effect/Brand").Brand<"Handle">;
|
|
1771
|
-
readonly
|
|
1759
|
+
readonly installedAt: Date;
|
|
1760
|
+
readonly updatedAt: Date;
|
|
1772
1761
|
readonly resolvedVersion: string & import("effect/Brand").Brand<"Version">;
|
|
1773
1762
|
readonly integrity: string;
|
|
1774
1763
|
readonly sourceName: string;
|
|
1775
|
-
readonly installedAt: Date;
|
|
1776
|
-
readonly updatedAt: Date;
|
|
1777
1764
|
readonly resolvedSkills: {
|
|
1778
1765
|
readonly [x: string]: string & import("effect/Brand").Brand<"Version">;
|
|
1779
1766
|
};
|
|
@@ -1798,37 +1785,23 @@ export declare const commitLockfileSnapshotUpdate: (axmDir: string, base: Lockfi
|
|
|
1798
1785
|
};
|
|
1799
1786
|
} | undefined;
|
|
1800
1787
|
readonly libraries?: {
|
|
1801
|
-
readonly [x: string]: {
|
|
1802
|
-
readonly type: "registry"
|
|
1803
|
-
readonly owner:
|
|
1804
|
-
readonly name:
|
|
1805
|
-
readonly sourceName:
|
|
1806
|
-
readonly installedAt:
|
|
1807
|
-
readonly updatedAt:
|
|
1808
|
-
readonly resolvedAt:
|
|
1809
|
-
readonly membershipDigest:
|
|
1810
|
-
readonly resolvedSkills:
|
|
1811
|
-
|
|
1812
|
-
|
|
1813
|
-
readonly
|
|
1814
|
-
|
|
1815
|
-
|
|
1816
|
-
readonly
|
|
1817
|
-
|
|
1818
|
-
};
|
|
1819
|
-
readonly resolvedSubagents: {
|
|
1820
|
-
readonly [x: string]: string & import("effect/Brand").Brand<"Version">;
|
|
1821
|
-
};
|
|
1822
|
-
readonly resolvedFiles: {
|
|
1823
|
-
readonly [x: string]: string & import("effect/Brand").Brand<"Version">;
|
|
1824
|
-
};
|
|
1825
|
-
readonly resolvedRules: {
|
|
1826
|
-
readonly [x: string]: string & import("effect/Brand").Brand<"Version">;
|
|
1827
|
-
};
|
|
1828
|
-
readonly resolvedHooks: {
|
|
1829
|
-
readonly [x: string]: string & import("effect/Brand").Brand<"Version">;
|
|
1830
|
-
};
|
|
1831
|
-
};
|
|
1788
|
+
readonly [x: string]: Schema.Struct.ReadonlySide<{
|
|
1789
|
+
readonly type: Schema.Literal<"registry">;
|
|
1790
|
+
readonly owner: Schema.brand<Schema.String, "Handle">;
|
|
1791
|
+
readonly name: Schema.brand<Schema.NonEmptyString, "ExtensionName">;
|
|
1792
|
+
readonly sourceName: Schema.String;
|
|
1793
|
+
readonly installedAt: Schema.decodeTo<Schema.DateValid, Schema.NonEmptyString, never, never>;
|
|
1794
|
+
readonly updatedAt: Schema.decodeTo<Schema.DateValid, Schema.NonEmptyString, never, never>;
|
|
1795
|
+
readonly resolvedAt: Schema.decodeTo<Schema.DateValid, Schema.NonEmptyString, never, never>;
|
|
1796
|
+
readonly membershipDigest: Schema.String;
|
|
1797
|
+
readonly resolvedSkills: Schema.$Record<Schema.String, Schema.brand<Schema.String, "Version">>;
|
|
1798
|
+
readonly resolvedCommands: Schema.$Record<Schema.String, Schema.brand<Schema.String, "Version">>;
|
|
1799
|
+
readonly resolvedMcpServers: Schema.$Record<Schema.String, Schema.brand<Schema.String, "Version">>;
|
|
1800
|
+
readonly resolvedSubagents: Schema.$Record<Schema.String, Schema.brand<Schema.String, "Version">>;
|
|
1801
|
+
readonly resolvedFiles: Schema.$Record<Schema.String, Schema.brand<Schema.String, "Version">>;
|
|
1802
|
+
readonly resolvedRules: Schema.$Record<Schema.String, Schema.brand<Schema.String, "Version">>;
|
|
1803
|
+
readonly resolvedHooks: Schema.$Record<Schema.String, Schema.brand<Schema.String, "Version">>;
|
|
1804
|
+
}, "Type">;
|
|
1832
1805
|
} | undefined;
|
|
1833
1806
|
}, AppError, Path.Path | FileSystem.FileSystem>;
|
|
1834
1807
|
//# sourceMappingURL=lockfile.d.ts.map
|