alink-cli 0.9.0 → 0.9.1
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/bin.mjs +8 -2
- package/dist/bin.mjs.map +1 -1
- package/package.json +1 -1
package/dist/bin.mjs
CHANGED
|
@@ -53106,7 +53106,11 @@ function makeAgentLinkFrameAssembler() {
|
|
|
53106
53106
|
}
|
|
53107
53107
|
//#endregion
|
|
53108
53108
|
//#region src/tunnel/bridge.ts
|
|
53109
|
-
const TUNNEL_SCOPES = [
|
|
53109
|
+
const TUNNEL_SCOPES = [
|
|
53110
|
+
AuthOrchestrationReadScope,
|
|
53111
|
+
AuthOrchestrationOperateScope,
|
|
53112
|
+
AuthTerminalOperateScope
|
|
53113
|
+
];
|
|
53110
53114
|
function machineIdFromToken(token) {
|
|
53111
53115
|
const parts = token.split(".");
|
|
53112
53116
|
if (parts.length !== 3 || parts[0] !== "al1" || !parts[1]) return null;
|
|
@@ -87362,6 +87366,8 @@ function makeAcpAgentDriver(input) {
|
|
|
87362
87366
|
defaultConfig: input.defaultConfig,
|
|
87363
87367
|
create: ({ instanceId, displayName, accentColor, environment, enabled, config }) => gen(function* () {
|
|
87364
87368
|
const crypto = yield* Crypto;
|
|
87369
|
+
const fileSystem = yield* FileSystem;
|
|
87370
|
+
const path = yield* Path;
|
|
87365
87371
|
const spawner = yield* ChildProcessSpawner;
|
|
87366
87372
|
const httpClient = yield* HttpClient;
|
|
87367
87373
|
const serverSettings = yield* ServerSettingsService;
|
|
@@ -87391,7 +87397,7 @@ function makeAcpAgentDriver(input) {
|
|
|
87391
87397
|
instanceId
|
|
87392
87398
|
});
|
|
87393
87399
|
const textGeneration = yield* makeAcpAgentTextGeneration(descriptor, effectiveConfig, processEnv);
|
|
87394
|
-
const checkProvider = checkAcpAgentProviderStatus(descriptor, effectiveConfig, processEnv).pipe(map$4(stampIdentity), provideService(Crypto, crypto), provideService(ChildProcessSpawner, spawner));
|
|
87400
|
+
const checkProvider = checkAcpAgentProviderStatus(descriptor, effectiveConfig, processEnv).pipe(map$4(stampIdentity), provideService(Crypto, crypto), provideService(FileSystem, fileSystem), provideService(Path, path), provideService(ChildProcessSpawner, spawner));
|
|
87395
87401
|
const snapshotSettings = makeProviderSnapshotSettingsSource(effectiveConfig, serverSettings);
|
|
87396
87402
|
const snapshot = yield* makeManagedServerProvider({
|
|
87397
87403
|
maintenanceCapabilities,
|