@zero-transfer/mft 0.1.5 → 0.3.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/README.md +1 -1
- package/dist/index.cjs +763 -6969
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +19 -44
- package/dist/index.d.ts +19 -44
- package/dist/index.mjs +774 -6980
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { EventEmitter } from 'node:events';
|
|
2
2
|
import { SecureVersion, PeerCertificate } from 'node:tls';
|
|
3
3
|
import { Readable } from 'node:stream';
|
|
4
|
-
import { BaseAgent, Algorithms } from 'ssh2';
|
|
5
4
|
import { Buffer } from 'node:buffer';
|
|
6
5
|
|
|
7
6
|
/**
|
|
@@ -306,10 +305,25 @@ interface RemoteStat extends RemoteEntry {
|
|
|
306
305
|
type TlsSecretSource = SecretSource | SecretSource[];
|
|
307
306
|
/** Known-hosts material source accepted by SSH connection profiles. */
|
|
308
307
|
type SshKnownHostsSource = SecretSource | SecretSource[];
|
|
308
|
+
/** Minimal SSH agent contract used by profile validation and SSH adapters. */
|
|
309
|
+
interface SshAgentLike {
|
|
310
|
+
/** Returns public identities exposed by the agent implementation. */
|
|
311
|
+
getIdentities: (...args: any[]) => unknown;
|
|
312
|
+
/** Signs payloads using a selected identity. */
|
|
313
|
+
sign: (...args: any[]) => unknown;
|
|
314
|
+
}
|
|
315
|
+
/** Ordered algorithm list mutation operations used by SSH adapters. */
|
|
316
|
+
interface SshAlgorithmMutations {
|
|
317
|
+
append?: string | readonly string[];
|
|
318
|
+
prepend?: string | readonly string[];
|
|
319
|
+
remove?: string | readonly string[];
|
|
320
|
+
}
|
|
321
|
+
/** Single SSH algorithm override value accepted by connection profiles. */
|
|
322
|
+
type SshAlgorithmOverride = readonly string[] | SshAlgorithmMutations;
|
|
309
323
|
/** SSH agent source accepted by SFTP providers. */
|
|
310
|
-
type SshAgentSource = string |
|
|
324
|
+
type SshAgentSource = string | SshAgentLike;
|
|
311
325
|
/** SSH transport algorithm overrides accepted by SFTP providers. */
|
|
312
|
-
type SshAlgorithms =
|
|
326
|
+
type SshAlgorithms = Record<string, SshAlgorithmOverride | undefined>;
|
|
313
327
|
/** Context passed to SSH socket factories before opening an SSH session. */
|
|
314
328
|
interface SshSocketFactoryContext {
|
|
315
329
|
/** Target SSH host from the resolved connection profile. */
|
|
@@ -327,7 +341,7 @@ interface SshSocketFactoryContext {
|
|
|
327
341
|
* Use this hook for HTTP CONNECT, SOCKS, bastion, or custom tunnel integrations.
|
|
328
342
|
*
|
|
329
343
|
* @param context - Resolved SSH target information for the socket being opened.
|
|
330
|
-
* @returns Preconnected readable stream, or a promise for one, passed to
|
|
344
|
+
* @returns Preconnected readable stream, or a promise for one, passed to the SSH adapter socket option.
|
|
331
345
|
*/
|
|
332
346
|
type SshSocketFactory = (context: SshSocketFactoryContext) => Readable | Promise<Readable>;
|
|
333
347
|
/** Prompt metadata supplied by an SSH keyboard-interactive server challenge. */
|
|
@@ -1637,45 +1651,6 @@ interface RunConnectionDiagnosticsOptions {
|
|
|
1637
1651
|
*/
|
|
1638
1652
|
declare function runConnectionDiagnostics(options: RunConnectionDiagnosticsOptions): Promise<ConnectionDiagnosticsResult>;
|
|
1639
1653
|
|
|
1640
|
-
/**
|
|
1641
|
-
* Built-in provider capability matrix.
|
|
1642
|
-
*
|
|
1643
|
-
* Aggregates the {@link CapabilitySet} advertised by every shipped provider
|
|
1644
|
-
* factory so applications, docs, and diagnostics can compare features across
|
|
1645
|
-
* providers without instantiating each one. The S3 entry is captured twice —
|
|
1646
|
-
* once with multipart upload disabled (default) and once with multipart
|
|
1647
|
-
* upload enabled — because that flag flips `resumeUpload`.
|
|
1648
|
-
*
|
|
1649
|
-
* @module providers/capabilityMatrix
|
|
1650
|
-
*/
|
|
1651
|
-
|
|
1652
|
-
/** Identifier for an entry in {@link getBuiltinCapabilityMatrix}. */
|
|
1653
|
-
type BuiltinProviderMatrixId = ProviderId | "s3:multipart";
|
|
1654
|
-
/** Single entry in the built-in capability matrix. */
|
|
1655
|
-
interface BuiltinCapabilityMatrixEntry {
|
|
1656
|
-
/** Stable matrix identifier (provider id, or `s3:multipart` for the multipart variant). */
|
|
1657
|
-
id: BuiltinProviderMatrixId;
|
|
1658
|
-
/** Human-readable label, suitable for documentation tables. */
|
|
1659
|
-
label: string;
|
|
1660
|
-
/** Capability snapshot advertised by the provider factory. */
|
|
1661
|
-
capabilities: CapabilitySet;
|
|
1662
|
-
}
|
|
1663
|
-
/**
|
|
1664
|
-
* Returns the capability matrix for every shipped provider factory.
|
|
1665
|
-
*
|
|
1666
|
-
* Each call constructs a fresh factory snapshot, so the result reflects the
|
|
1667
|
-
* current build (including any future new metadata or notes). Web providers
|
|
1668
|
-
* are constructed with a no-op fetch since capability advertisement does not
|
|
1669
|
-
* require a live transport.
|
|
1670
|
-
*/
|
|
1671
|
-
declare function getBuiltinCapabilityMatrix(): BuiltinCapabilityMatrixEntry[];
|
|
1672
|
-
/**
|
|
1673
|
-
* Renders the matrix returned by {@link getBuiltinCapabilityMatrix} as a
|
|
1674
|
-
* GitHub-flavored Markdown table covering the most commonly-compared
|
|
1675
|
-
* capability flags.
|
|
1676
|
-
*/
|
|
1677
|
-
declare function formatCapabilityMatrixMarkdown(matrix?: ReadonlyArray<BuiltinCapabilityMatrixEntry>): string;
|
|
1678
|
-
|
|
1679
1654
|
/** Options used to create a local file-system provider factory. */
|
|
1680
1655
|
interface LocalProviderOptions {
|
|
1681
1656
|
/** Root directory exposed as `/`. When omitted, `profile.host` is treated as the root path. */
|
|
@@ -3945,4 +3920,4 @@ declare function parseCronExpression(expression: string): CronExpression;
|
|
|
3945
3920
|
*/
|
|
3946
3921
|
declare function nextCronFireAt(expression: CronExpression, from: Date, timezone?: "utc" | "local"): Date | undefined;
|
|
3947
3922
|
|
|
3948
|
-
export { AbortError, type AgeRetentionPolicy, ApprovalRegistry, ApprovalRejectedError, type ApprovalRequest, type ApprovalStatus, type AtomicDeployActivateOperation, type AtomicDeployActivateStep, type AtomicDeployPlan, type AtomicDeployPruneStep, type AtomicDeployStrategy, type AuthenticationCapability, AuthenticationError, AuthorizationError, type BandwidthSleep, type BandwidthThrottle, type BandwidthThrottleOptions, type Base64EnvSecretSource, type BuiltInProviderId,
|
|
3923
|
+
export { AbortError, type AgeRetentionPolicy, ApprovalRegistry, ApprovalRejectedError, type ApprovalRequest, type ApprovalStatus, type AtomicDeployActivateOperation, type AtomicDeployActivateStep, type AtomicDeployPlan, type AtomicDeployPruneStep, type AtomicDeployStrategy, type AuthenticationCapability, AuthenticationError, AuthorizationError, type BandwidthSleep, type BandwidthThrottle, type BandwidthThrottleOptions, type Base64EnvSecretSource, type BuiltInProviderId, CLASSIC_PROVIDER_IDS, type CapabilitySet, type ChecksumCapability, type ClassicProviderId, type ClientDiagnostics, type CompareRemoteManifestsOptions, ConfigurationError, type ConnectionDiagnosticTimings, type ConnectionDiagnosticsResult, ConnectionError, type ConnectionProfile, type ConventionEndpoint, type CopyBetweenOptions, type CountRetentionPolicy, type CreateApprovalGateOptions, type CreateAtomicDeployPlanOptions, type CreateInboxRouteOptions, type CreateOutboxRouteOptions, type CreateRemoteBrowserOptions, type CreateRemoteManifestOptions, type CreateSyncPlanOptions, type CreateWebhookAuditLogOptions, type CronExpression, type CronField, type CronScheduleTrigger, DEFAULT_FAILED_SUBDIR, DEFAULT_PROCESSED_SUBDIR, type DiffRemoteTreesOptions, type DispatchWebhookOptions, type DispatchWebhookResult, type DownloadFileOptions, type EnvSecretSource, type EvaluateRetentionOptions, type FileSecretSource, type FileZillaSite, type FriendlyTransferOptions, type FtpReplyErrorInput, type ImportFileZillaSitesResult, type ImportOpenSshConfigOptions, type ImportOpenSshConfigResult, type ImportWinScpSessionsResult, InMemoryAuditLog, type IntervalScheduleTrigger, type JsonlWriter, type KnownHostsEntry, type KnownHostsMarker, type ListOptions, type LocalProviderOptions, type LogLevel, type LogRecord, type LogRecordInput, type LoggerMethod, type MemoryProviderEntry, type MemoryProviderOptions, type MetadataCapability, type MftAuditEntry, type MftAuditEntryType, type MftAuditLog, type MftInboxConvention, type MftOutboxConvention, type MftRoute, type MftRouteEndpoint, type MftRouteFilter, type MftRouteOperation, type MftSchedule, type MftScheduleTrigger, MftScheduler, type MftSchedulerOptions, type MkdirOptions, type OAuthAccessToken, type OAuthRefreshCallback, type OAuthTokenSecretSourceOptions, type OpenSshConfigEntry, ParseError, PathAlreadyExistsError, PathNotFoundError, PermissionDeniedError, type ProgressEventInput, ProtocolError, type AuthenticationCapability as ProviderAuthenticationCapability, type CapabilitySet as ProviderCapabilities, type ChecksumCapability as ProviderChecksumCapability, type ProviderFactory, type ProviderId, type MetadataCapability as ProviderMetadataCapability, ProviderRegistry, type ProviderSelection, type ProviderTransferEndpointRole, type ProviderTransferExecutorOptions, type ProviderTransferOperations, type ProviderTransferReadRequest, type ProviderTransferReadResult, type ProviderTransferRequest, type ProviderTransferSessionResolver, type ProviderTransferSessionResolverInput, type ProviderTransferWriteRequest, type ProviderTransferWriteResult, REDACTED, REMOTE_MANIFEST_FORMAT_VERSION, type RemoteBreadcrumb, type RemoteBrowser, type RemoteBrowserFilter, type RemoteBrowserSnapshot, type RemoteEntry, type RemoteEntrySortKey, type RemoteEntrySortOrder, type RemoteEntryType, type RemoteFileAdapter, type RemoteFileEndpoint, type RemoteFileSystem, type RemoteManifest, type RemoteManifestEntry, type RemotePermissions, type RemoteProtocol, type RemoteStat, type RemoteTreeDiff, type RemoteTreeDiffEntry, type RemoteTreeDiffReason, type RemoteTreeDiffStatus, type RemoteTreeDiffSummary, type RemoteTreeEntry, type RemoteTreeFilter, type RemoveOptions, type RenameOptions, type ResolveSecretOptions, type ResolvedConnectionProfile, type ResolvedOpenSshHost, type ResolvedSshProfile, type ResolvedTlsProfile, type RetentionEvaluation, type RetentionPolicy, type RmdirOptions, RouteRegistry, type RunConnectionDiagnosticsOptions, type RunRouteOptions, ScheduleRegistry, type ScheduleRouteRunner, type ScheduleTimerHooks, type SecretProvider, type SecretSource, type SecretValue, type SpecializedErrorDetails, type SshAgentSource, type SshAlgorithms, type SshKeyboardInteractiveChallenge, type SshKeyboardInteractiveHandler, type SshKeyboardInteractivePrompt, type SshKnownHostsSource, type SshProfile, type SshSocketFactory, type SshSocketFactoryContext, type StatOptions, type SyncConflictPolicy, type SyncDeletePolicy, type SyncDirection, type SyncEndpointInput, TimeoutError, type TlsProfile, type TlsSecretSource, type TransferAttempt, type TransferAttemptError, type TransferBandwidthLimit, type TransferByteRange, TransferClient, type TransferClientOptions, type TransferDataChunk, type TransferDataSource, type TransferEndpoint, TransferEngine, type TransferEngineExecuteOptions, type TransferEngineOptions, TransferError, type TransferExecutionContext, type TransferExecutionResult, type TransferExecutor, type TransferJob, type TransferOperation, type TransferPlan, type TransferPlanAction, type TransferPlanInput, type TransferPlanStep, type TransferPlanSummary, type TransferProgressEvent, type TransferProvider, TransferQueue, type TransferQueueExecutorResolver, type TransferQueueItem, type TransferQueueItemStatus, type TransferQueueOptions, type TransferQueueRunOptions, type TransferQueueSummary, type TransferReceipt, type TransferResult, type TransferResultInput, type TransferRetryDecisionInput, type TransferRetryPolicy, type TransferSession, type TransferTimeoutPolicy, type TransferVerificationResult, UnsupportedFeatureError, type UploadFileOptions, type ValueSecretSource, VerificationError, type WalkRemoteTreeOptions, type WebhookRetryPolicy, type WebhookSignature, type WebhookTarget, type WinScpSession, ZeroTransfer, type ZeroTransferCapabilities, ZeroTransferError, type ZeroTransferErrorDetails, type ZeroTransferLogger, type ZeroTransferOptions, assertSafeFtpArgument, basenameRemotePath, buildRemoteBreadcrumbs, compareRemoteManifests, composeAuditLogs, copyBetween, createApprovalGate, createAtomicDeployPlan, createBandwidthThrottle, createInboxRoute, createJsonlAuditLog, createLocalProviderFactory, createMemoryProviderFactory, createOAuthTokenSecretSource, createOutboxRoute, createProgressEvent, createProviderTransferExecutor, createRemoteBrowser, createRemoteManifest, createSyncPlan, createTransferClient, createTransferJobsFromPlan, createTransferPlan, createTransferResult, createWebhookAuditLog, diffRemoteTrees, dispatchWebhook, downloadFile, emitLog, errorFromFtpReply, evaluateRetention, filterRemoteEntries, freezeReceipt, importFileZillaSites, importOpenSshConfig, importWinScpSessions, inboxFailedPath, inboxProcessedPath, isClassicProviderId, isSensitiveKey, joinRemotePath, matchKnownHosts, matchKnownHostsEntry, nextCronFireAt, nextScheduleFireAt, noopLogger, normalizeRemotePath, parentRemotePath, parseCronExpression, parseKnownHosts, parseOpenSshConfig, parseRemoteManifest, redactCommand, redactConnectionProfile, redactObject, redactSecretSource, redactValue, resolveConnectionProfileSecrets, resolveOpenSshHost, resolveProviderId, resolveSecret, runConnectionDiagnostics, runRoute, serializeRemoteManifest, signWebhookPayload, sortRemoteEntries, summarizeClientDiagnostics, summarizeError, summarizeTransferPlan, throttleByteIterable, uploadFile, validateConnectionProfile, validateSchedule, walkRemoteTree };
|
package/dist/index.d.ts
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
import { EventEmitter } from 'node:events';
|
|
2
2
|
import { SecureVersion, PeerCertificate } from 'node:tls';
|
|
3
3
|
import { Readable } from 'node:stream';
|
|
4
|
-
import { BaseAgent, Algorithms } from 'ssh2';
|
|
5
4
|
import { Buffer } from 'node:buffer';
|
|
6
5
|
|
|
7
6
|
/**
|
|
@@ -306,10 +305,25 @@ interface RemoteStat extends RemoteEntry {
|
|
|
306
305
|
type TlsSecretSource = SecretSource | SecretSource[];
|
|
307
306
|
/** Known-hosts material source accepted by SSH connection profiles. */
|
|
308
307
|
type SshKnownHostsSource = SecretSource | SecretSource[];
|
|
308
|
+
/** Minimal SSH agent contract used by profile validation and SSH adapters. */
|
|
309
|
+
interface SshAgentLike {
|
|
310
|
+
/** Returns public identities exposed by the agent implementation. */
|
|
311
|
+
getIdentities: (...args: any[]) => unknown;
|
|
312
|
+
/** Signs payloads using a selected identity. */
|
|
313
|
+
sign: (...args: any[]) => unknown;
|
|
314
|
+
}
|
|
315
|
+
/** Ordered algorithm list mutation operations used by SSH adapters. */
|
|
316
|
+
interface SshAlgorithmMutations {
|
|
317
|
+
append?: string | readonly string[];
|
|
318
|
+
prepend?: string | readonly string[];
|
|
319
|
+
remove?: string | readonly string[];
|
|
320
|
+
}
|
|
321
|
+
/** Single SSH algorithm override value accepted by connection profiles. */
|
|
322
|
+
type SshAlgorithmOverride = readonly string[] | SshAlgorithmMutations;
|
|
309
323
|
/** SSH agent source accepted by SFTP providers. */
|
|
310
|
-
type SshAgentSource = string |
|
|
324
|
+
type SshAgentSource = string | SshAgentLike;
|
|
311
325
|
/** SSH transport algorithm overrides accepted by SFTP providers. */
|
|
312
|
-
type SshAlgorithms =
|
|
326
|
+
type SshAlgorithms = Record<string, SshAlgorithmOverride | undefined>;
|
|
313
327
|
/** Context passed to SSH socket factories before opening an SSH session. */
|
|
314
328
|
interface SshSocketFactoryContext {
|
|
315
329
|
/** Target SSH host from the resolved connection profile. */
|
|
@@ -327,7 +341,7 @@ interface SshSocketFactoryContext {
|
|
|
327
341
|
* Use this hook for HTTP CONNECT, SOCKS, bastion, or custom tunnel integrations.
|
|
328
342
|
*
|
|
329
343
|
* @param context - Resolved SSH target information for the socket being opened.
|
|
330
|
-
* @returns Preconnected readable stream, or a promise for one, passed to
|
|
344
|
+
* @returns Preconnected readable stream, or a promise for one, passed to the SSH adapter socket option.
|
|
331
345
|
*/
|
|
332
346
|
type SshSocketFactory = (context: SshSocketFactoryContext) => Readable | Promise<Readable>;
|
|
333
347
|
/** Prompt metadata supplied by an SSH keyboard-interactive server challenge. */
|
|
@@ -1637,45 +1651,6 @@ interface RunConnectionDiagnosticsOptions {
|
|
|
1637
1651
|
*/
|
|
1638
1652
|
declare function runConnectionDiagnostics(options: RunConnectionDiagnosticsOptions): Promise<ConnectionDiagnosticsResult>;
|
|
1639
1653
|
|
|
1640
|
-
/**
|
|
1641
|
-
* Built-in provider capability matrix.
|
|
1642
|
-
*
|
|
1643
|
-
* Aggregates the {@link CapabilitySet} advertised by every shipped provider
|
|
1644
|
-
* factory so applications, docs, and diagnostics can compare features across
|
|
1645
|
-
* providers without instantiating each one. The S3 entry is captured twice —
|
|
1646
|
-
* once with multipart upload disabled (default) and once with multipart
|
|
1647
|
-
* upload enabled — because that flag flips `resumeUpload`.
|
|
1648
|
-
*
|
|
1649
|
-
* @module providers/capabilityMatrix
|
|
1650
|
-
*/
|
|
1651
|
-
|
|
1652
|
-
/** Identifier for an entry in {@link getBuiltinCapabilityMatrix}. */
|
|
1653
|
-
type BuiltinProviderMatrixId = ProviderId | "s3:multipart";
|
|
1654
|
-
/** Single entry in the built-in capability matrix. */
|
|
1655
|
-
interface BuiltinCapabilityMatrixEntry {
|
|
1656
|
-
/** Stable matrix identifier (provider id, or `s3:multipart` for the multipart variant). */
|
|
1657
|
-
id: BuiltinProviderMatrixId;
|
|
1658
|
-
/** Human-readable label, suitable for documentation tables. */
|
|
1659
|
-
label: string;
|
|
1660
|
-
/** Capability snapshot advertised by the provider factory. */
|
|
1661
|
-
capabilities: CapabilitySet;
|
|
1662
|
-
}
|
|
1663
|
-
/**
|
|
1664
|
-
* Returns the capability matrix for every shipped provider factory.
|
|
1665
|
-
*
|
|
1666
|
-
* Each call constructs a fresh factory snapshot, so the result reflects the
|
|
1667
|
-
* current build (including any future new metadata or notes). Web providers
|
|
1668
|
-
* are constructed with a no-op fetch since capability advertisement does not
|
|
1669
|
-
* require a live transport.
|
|
1670
|
-
*/
|
|
1671
|
-
declare function getBuiltinCapabilityMatrix(): BuiltinCapabilityMatrixEntry[];
|
|
1672
|
-
/**
|
|
1673
|
-
* Renders the matrix returned by {@link getBuiltinCapabilityMatrix} as a
|
|
1674
|
-
* GitHub-flavored Markdown table covering the most commonly-compared
|
|
1675
|
-
* capability flags.
|
|
1676
|
-
*/
|
|
1677
|
-
declare function formatCapabilityMatrixMarkdown(matrix?: ReadonlyArray<BuiltinCapabilityMatrixEntry>): string;
|
|
1678
|
-
|
|
1679
1654
|
/** Options used to create a local file-system provider factory. */
|
|
1680
1655
|
interface LocalProviderOptions {
|
|
1681
1656
|
/** Root directory exposed as `/`. When omitted, `profile.host` is treated as the root path. */
|
|
@@ -3945,4 +3920,4 @@ declare function parseCronExpression(expression: string): CronExpression;
|
|
|
3945
3920
|
*/
|
|
3946
3921
|
declare function nextCronFireAt(expression: CronExpression, from: Date, timezone?: "utc" | "local"): Date | undefined;
|
|
3947
3922
|
|
|
3948
|
-
export { AbortError, type AgeRetentionPolicy, ApprovalRegistry, ApprovalRejectedError, type ApprovalRequest, type ApprovalStatus, type AtomicDeployActivateOperation, type AtomicDeployActivateStep, type AtomicDeployPlan, type AtomicDeployPruneStep, type AtomicDeployStrategy, type AuthenticationCapability, AuthenticationError, AuthorizationError, type BandwidthSleep, type BandwidthThrottle, type BandwidthThrottleOptions, type Base64EnvSecretSource, type BuiltInProviderId,
|
|
3923
|
+
export { AbortError, type AgeRetentionPolicy, ApprovalRegistry, ApprovalRejectedError, type ApprovalRequest, type ApprovalStatus, type AtomicDeployActivateOperation, type AtomicDeployActivateStep, type AtomicDeployPlan, type AtomicDeployPruneStep, type AtomicDeployStrategy, type AuthenticationCapability, AuthenticationError, AuthorizationError, type BandwidthSleep, type BandwidthThrottle, type BandwidthThrottleOptions, type Base64EnvSecretSource, type BuiltInProviderId, CLASSIC_PROVIDER_IDS, type CapabilitySet, type ChecksumCapability, type ClassicProviderId, type ClientDiagnostics, type CompareRemoteManifestsOptions, ConfigurationError, type ConnectionDiagnosticTimings, type ConnectionDiagnosticsResult, ConnectionError, type ConnectionProfile, type ConventionEndpoint, type CopyBetweenOptions, type CountRetentionPolicy, type CreateApprovalGateOptions, type CreateAtomicDeployPlanOptions, type CreateInboxRouteOptions, type CreateOutboxRouteOptions, type CreateRemoteBrowserOptions, type CreateRemoteManifestOptions, type CreateSyncPlanOptions, type CreateWebhookAuditLogOptions, type CronExpression, type CronField, type CronScheduleTrigger, DEFAULT_FAILED_SUBDIR, DEFAULT_PROCESSED_SUBDIR, type DiffRemoteTreesOptions, type DispatchWebhookOptions, type DispatchWebhookResult, type DownloadFileOptions, type EnvSecretSource, type EvaluateRetentionOptions, type FileSecretSource, type FileZillaSite, type FriendlyTransferOptions, type FtpReplyErrorInput, type ImportFileZillaSitesResult, type ImportOpenSshConfigOptions, type ImportOpenSshConfigResult, type ImportWinScpSessionsResult, InMemoryAuditLog, type IntervalScheduleTrigger, type JsonlWriter, type KnownHostsEntry, type KnownHostsMarker, type ListOptions, type LocalProviderOptions, type LogLevel, type LogRecord, type LogRecordInput, type LoggerMethod, type MemoryProviderEntry, type MemoryProviderOptions, type MetadataCapability, type MftAuditEntry, type MftAuditEntryType, type MftAuditLog, type MftInboxConvention, type MftOutboxConvention, type MftRoute, type MftRouteEndpoint, type MftRouteFilter, type MftRouteOperation, type MftSchedule, type MftScheduleTrigger, MftScheduler, type MftSchedulerOptions, type MkdirOptions, type OAuthAccessToken, type OAuthRefreshCallback, type OAuthTokenSecretSourceOptions, type OpenSshConfigEntry, ParseError, PathAlreadyExistsError, PathNotFoundError, PermissionDeniedError, type ProgressEventInput, ProtocolError, type AuthenticationCapability as ProviderAuthenticationCapability, type CapabilitySet as ProviderCapabilities, type ChecksumCapability as ProviderChecksumCapability, type ProviderFactory, type ProviderId, type MetadataCapability as ProviderMetadataCapability, ProviderRegistry, type ProviderSelection, type ProviderTransferEndpointRole, type ProviderTransferExecutorOptions, type ProviderTransferOperations, type ProviderTransferReadRequest, type ProviderTransferReadResult, type ProviderTransferRequest, type ProviderTransferSessionResolver, type ProviderTransferSessionResolverInput, type ProviderTransferWriteRequest, type ProviderTransferWriteResult, REDACTED, REMOTE_MANIFEST_FORMAT_VERSION, type RemoteBreadcrumb, type RemoteBrowser, type RemoteBrowserFilter, type RemoteBrowserSnapshot, type RemoteEntry, type RemoteEntrySortKey, type RemoteEntrySortOrder, type RemoteEntryType, type RemoteFileAdapter, type RemoteFileEndpoint, type RemoteFileSystem, type RemoteManifest, type RemoteManifestEntry, type RemotePermissions, type RemoteProtocol, type RemoteStat, type RemoteTreeDiff, type RemoteTreeDiffEntry, type RemoteTreeDiffReason, type RemoteTreeDiffStatus, type RemoteTreeDiffSummary, type RemoteTreeEntry, type RemoteTreeFilter, type RemoveOptions, type RenameOptions, type ResolveSecretOptions, type ResolvedConnectionProfile, type ResolvedOpenSshHost, type ResolvedSshProfile, type ResolvedTlsProfile, type RetentionEvaluation, type RetentionPolicy, type RmdirOptions, RouteRegistry, type RunConnectionDiagnosticsOptions, type RunRouteOptions, ScheduleRegistry, type ScheduleRouteRunner, type ScheduleTimerHooks, type SecretProvider, type SecretSource, type SecretValue, type SpecializedErrorDetails, type SshAgentSource, type SshAlgorithms, type SshKeyboardInteractiveChallenge, type SshKeyboardInteractiveHandler, type SshKeyboardInteractivePrompt, type SshKnownHostsSource, type SshProfile, type SshSocketFactory, type SshSocketFactoryContext, type StatOptions, type SyncConflictPolicy, type SyncDeletePolicy, type SyncDirection, type SyncEndpointInput, TimeoutError, type TlsProfile, type TlsSecretSource, type TransferAttempt, type TransferAttemptError, type TransferBandwidthLimit, type TransferByteRange, TransferClient, type TransferClientOptions, type TransferDataChunk, type TransferDataSource, type TransferEndpoint, TransferEngine, type TransferEngineExecuteOptions, type TransferEngineOptions, TransferError, type TransferExecutionContext, type TransferExecutionResult, type TransferExecutor, type TransferJob, type TransferOperation, type TransferPlan, type TransferPlanAction, type TransferPlanInput, type TransferPlanStep, type TransferPlanSummary, type TransferProgressEvent, type TransferProvider, TransferQueue, type TransferQueueExecutorResolver, type TransferQueueItem, type TransferQueueItemStatus, type TransferQueueOptions, type TransferQueueRunOptions, type TransferQueueSummary, type TransferReceipt, type TransferResult, type TransferResultInput, type TransferRetryDecisionInput, type TransferRetryPolicy, type TransferSession, type TransferTimeoutPolicy, type TransferVerificationResult, UnsupportedFeatureError, type UploadFileOptions, type ValueSecretSource, VerificationError, type WalkRemoteTreeOptions, type WebhookRetryPolicy, type WebhookSignature, type WebhookTarget, type WinScpSession, ZeroTransfer, type ZeroTransferCapabilities, ZeroTransferError, type ZeroTransferErrorDetails, type ZeroTransferLogger, type ZeroTransferOptions, assertSafeFtpArgument, basenameRemotePath, buildRemoteBreadcrumbs, compareRemoteManifests, composeAuditLogs, copyBetween, createApprovalGate, createAtomicDeployPlan, createBandwidthThrottle, createInboxRoute, createJsonlAuditLog, createLocalProviderFactory, createMemoryProviderFactory, createOAuthTokenSecretSource, createOutboxRoute, createProgressEvent, createProviderTransferExecutor, createRemoteBrowser, createRemoteManifest, createSyncPlan, createTransferClient, createTransferJobsFromPlan, createTransferPlan, createTransferResult, createWebhookAuditLog, diffRemoteTrees, dispatchWebhook, downloadFile, emitLog, errorFromFtpReply, evaluateRetention, filterRemoteEntries, freezeReceipt, importFileZillaSites, importOpenSshConfig, importWinScpSessions, inboxFailedPath, inboxProcessedPath, isClassicProviderId, isSensitiveKey, joinRemotePath, matchKnownHosts, matchKnownHostsEntry, nextCronFireAt, nextScheduleFireAt, noopLogger, normalizeRemotePath, parentRemotePath, parseCronExpression, parseKnownHosts, parseOpenSshConfig, parseRemoteManifest, redactCommand, redactConnectionProfile, redactObject, redactSecretSource, redactValue, resolveConnectionProfileSecrets, resolveOpenSshHost, resolveProviderId, resolveSecret, runConnectionDiagnostics, runRoute, serializeRemoteManifest, signWebhookPayload, sortRemoteEntries, summarizeClientDiagnostics, summarizeError, summarizeTransferPlan, throttleByteIterable, uploadFile, validateConnectionProfile, validateSchedule, walkRemoteTree };
|