@capgo/cli
Version:
A CLI to upload to capgo servers
128 lines (127 loc) • 5.23 kB
TypeScript
export declare const mcpAddAppInputSchema: import("arktype/internal/variants/object.ts").ObjectType<{
appId: string;
name?: string | undefined;
icon?: string | undefined;
}, {}>;
export declare const mcpUpdateAppInputSchema: import("arktype/internal/variants/object.ts").ObjectType<{
appId: string;
name?: string | undefined;
icon?: string | undefined;
retention?: number | undefined;
}, {}>;
export declare const mcpDeleteAppInputSchema: import("arktype/internal/variants/object.ts").ObjectType<{
appId: string;
}, {}>;
export declare const mcpUploadBundleInputSchema: import("arktype/internal/variants/object.ts").ObjectType<{
appId: string;
path: string;
bundle?: string | undefined;
channel?: string | undefined;
rollout?: number | undefined;
rolloutPercentageBps?: number | undefined;
rolloutCacheTtlSeconds?: number | undefined;
comment?: string | undefined;
minUpdateVersion?: string | undefined;
autoMinUpdateVersion?: boolean | undefined;
autoSetBundle?: boolean | undefined;
encrypt?: boolean | undefined;
capacitorConfig?: string | undefined;
}, {}>;
export declare const mcpListBundlesInputSchema: import("arktype/internal/variants/object.ts").ObjectType<{
appId: string;
}, {}>;
export declare const mcpDeleteBundleInputSchema: import("arktype/internal/variants/object.ts").ObjectType<{
appId: string;
bundleId: string;
}, {}>;
export declare const mcpCleanupBundlesInputSchema: import("arktype/internal/variants/object.ts").ObjectType<{
appId: string;
keep?: number | undefined;
bundle?: string | undefined;
force?: boolean | undefined;
ignoreChannel?: boolean | undefined;
}, {}>;
export declare const mcpCheckCompatibilityInputSchema: import("arktype/internal/variants/object.ts").ObjectType<{
appId: string;
channel: string;
packageJson?: string | undefined;
}, {}>;
export declare const mcpListChannelsInputSchema: import("arktype/internal/variants/object.ts").ObjectType<{
appId: string;
}, {}>;
export declare const mcpAddChannelInputSchema: import("arktype/internal/variants/object.ts").ObjectType<{
appId: string;
channelId: string;
default?: boolean | undefined;
selfAssign?: boolean | undefined;
}, {}>;
export declare const mcpUpdateChannelInputSchema: import("arktype/internal/variants/object.ts").ObjectType<{
channelId: string;
appId: string;
bundle?: string | undefined;
state?: string | undefined;
downgrade?: boolean | undefined;
ios?: boolean | undefined;
android?: boolean | undefined;
selfAssign?: boolean | undefined;
disableAutoUpdate?: string | undefined;
dev?: boolean | undefined;
emulator?: boolean | undefined;
device?: boolean | undefined;
prod?: boolean | undefined;
rolloutBundle?: string | undefined;
rolloutPercentage?: number | undefined;
rolloutPercentageBps?: number | undefined;
rolloutEnable?: boolean | undefined;
rolloutDisable?: boolean | undefined;
rolloutPause?: boolean | undefined;
rolloutResume?: boolean | undefined;
rolloutRollback?: boolean | undefined;
rolloutPromote?: boolean | undefined;
rolloutCacheTtlSeconds?: number | undefined;
autoPauseEnabled?: boolean | undefined;
autoPauseDisabled?: boolean | undefined;
autoPauseWindowMinutes?: number | undefined;
autoPauseFailureRateBps?: number | null | undefined;
autoPauseConfidence?: number | undefined;
autoPauseMinAttempts?: number | null | undefined;
autoPauseMinFailures?: number | null | undefined;
autoPauseAction?: "pause" | "rollback" | "notify" | undefined;
autoPauseCooldownMinutes?: number | undefined;
}, {}>;
export declare const mcpDeleteChannelInputSchema: import("arktype/internal/variants/object.ts").ObjectType<{
appId: string;
channelId: string;
deleteBundle?: boolean | undefined;
}, {}>;
export declare const mcpGetCurrentBundleInputSchema: import("arktype/internal/variants/object.ts").ObjectType<{
appId: string;
channelId: string;
}, {}>;
export declare const mcpAddOrganizationInputSchema: import("arktype/internal/variants/object.ts").ObjectType<{
name: string;
email: string;
}, {}>;
export declare const mcpDoctorInputSchema: import("arktype/internal/variants/object.ts").ObjectType<{
packageJson?: string | undefined;
}, {}>;
export declare const mcpGetStatsInputSchema: import("arktype/internal/variants/object.ts").ObjectType<{
appId: string;
deviceIds?: string[] | undefined;
limit?: number | undefined;
rangeStart?: string | undefined;
rangeEnd?: string | undefined;
}, {}>;
export declare const mcpRequestBuildInputSchema: import("arktype/internal/variants/object.ts").ObjectType<{
appId: string;
platform: "android" | "ios";
path?: string | undefined;
nodeModules?: string | undefined;
}, {}>;
export declare const mcpGenerateEncryptionKeysInputSchema: import("arktype/internal/variants/object.ts").ObjectType<{
force?: boolean | undefined;
capacitorConfig?: string | undefined;
}, {}>;
export declare const mcpProbeInputSchema: import("arktype/internal/variants/object.ts").ObjectType<{
platform: "android" | "ios";
}, {}>;