@absolutejs/absolute 0.20.0-beta.49 → 0.20.0-beta.50

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.
@@ -7,7 +7,7 @@ export type AbsoluteIosReleaseMetadata = {
7
7
  artifact: 'App.ipa';
8
8
  buildNumber?: number;
9
9
  bytes: number;
10
- engine: 'capacitor';
10
+ engine: 'capacitor' | 'expo';
11
11
  format: typeof ABSOLUTE_IOS_RELEASE_FORMAT;
12
12
  marketingVersion: string;
13
13
  platform: 'ios';
@@ -31,16 +31,26 @@ export type BuildAbsoluteIosReleaseOptions = {
31
31
  capture?: (command: string[], options?: CommandOptions) => CommandResult;
32
32
  config: NormalizedAbsoluteMobileConfig;
33
33
  developmentTeam?: string;
34
+ env?: Record<string, string | undefined>;
34
35
  host?: AbsoluteMobileHost;
35
36
  outputDirectory?: string;
36
37
  prepareBuildNumber?: (buildIdentity: string) => Promise<number>;
37
38
  projectRoot: string;
38
39
  run?: (command: string[], options?: CommandOptions) => Promise<number>;
39
40
  buildNumber?: number;
41
+ scheme?: string;
42
+ workspacePath?: string;
40
43
  };
41
44
  export declare const fingerprintAbsoluteIosNativeProject: (nativeDirectory: string, options?: {
42
45
  includePublicBundle?: boolean;
43
46
  }) => Promise<string>;
47
+ export declare const resolveAbsoluteIosXcodeProject: (nativeDirectory: string, options?: {
48
+ scheme?: string;
49
+ workspacePath?: string;
50
+ }) => Promise<{
51
+ scheme: string;
52
+ workspacePath: string;
53
+ }>;
44
54
  export declare const buildAbsoluteIosRelease: (options: BuildAbsoluteIosReleaseOptions) => Promise<{
45
55
  artifactPath: string;
46
56
  metadata: {
@@ -55,7 +65,7 @@ export declare const buildAbsoluteIosRelease: (options: BuildAbsoluteIosReleaseO
55
65
  appId: string;
56
66
  platform: "ios";
57
67
  buildNumber?: number | undefined;
58
- engine: "capacitor";
68
+ engine: "capacitor" | "expo";
59
69
  marketingVersion: string;
60
70
  signed: boolean;
61
71
  };
package/package.json CHANGED
@@ -508,7 +508,7 @@
508
508
  ]
509
509
  }
510
510
  },
511
- "version": "0.20.0-beta.49",
511
+ "version": "0.20.0-beta.50",
512
512
  "workspaces": [
513
513
  "tests/fixtures/*",
514
514
  "tests/fixtures/_packages/*"