@capgo/cli 8.7.2 → 8.8.0

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.
@@ -6,6 +6,7 @@ interface SuperOptions extends Options {
6
6
  }
7
7
  export type RunDeviceCancelHandler = () => Promise<never>;
8
8
  type InitAutoTestChangeKind = 'html-banner' | 'vue-banner' | 'css-background';
9
+ type DirtyGitStatusAction = 'check-again' | 'continue-dirty';
9
10
  interface GitRepoStatus {
10
11
  inRepo: boolean;
11
12
  clean: boolean;
@@ -33,6 +34,11 @@ export declare function applyInitAutoTestChange(filePath: string, content: strin
33
34
  } | undefined;
34
35
  export declare function revertInitAutoTestChangeContent(kind: InitAutoTestChangeKind, content: string): string | undefined;
35
36
  export declare function isOnlyAllowedInitAutoTestChange(status: GitRepoStatus, allowedChange?: InitAutoTestChange): boolean;
37
+ export declare function getDirtyGitStatusActionOptions(): {
38
+ value: DirtyGitStatusAction;
39
+ label: string;
40
+ hint: string;
41
+ }[];
36
42
  type PackageManagerInfo = ReturnType<typeof getPMAndCommand>;
37
43
  export type PlatformChoice = 'ios' | 'android';
38
44
  export type RunDeviceStepOutcome = {
@@ -51,7 +57,7 @@ export declare function runPackageRunnerSync(runner: string, args: string[], opt
51
57
  export declare function parseCapacitorRunTargetList(output: string): CapacitorRunTarget[];
52
58
  export declare function getPhysicalIosRunTargets(targets: CapacitorRunTarget[]): CapacitorRunTarget[];
53
59
  export declare function getSimulatorIosRunTargets(targets: CapacitorRunTarget[]): CapacitorRunTarget[];
54
- export declare function resolveRunDeviceCommand(cancelHandler: RunDeviceCancelHandler, pm: PackageManagerInfo, platformName: PlatformChoice): Promise<RunDeviceStepOutcome>;
60
+ export declare function resolveRunDeviceCommand(cancelHandler: RunDeviceCancelHandler, pm: PackageManagerInfo, platformName: PlatformChoice, projectDir?: string): Promise<RunDeviceStepOutcome>;
55
61
  export declare function normalizeRunDevicePlatform(platformName: string): PlatformChoice;
56
62
  export declare function initApp(apikeyCommand: string, appId: string, options: SuperOptions): Promise<void>;
57
63
  export {};
@@ -14,6 +14,7 @@ export declare function addOrganizationInternal(options: OrganizationAddOptions,
14
14
  management_email: string;
15
15
  max_apikey_expiration_days: number | null;
16
16
  name: string;
17
+ onboarding: import("../types/supabase.types").Json;
17
18
  password_policy_config: import("../types/supabase.types").Json | null;
18
19
  require_apikey_expiration: boolean;
19
20
  required_encryption_key: string | null;