@absolutejs/absolute 0.20.0-beta.41 → 0.20.0-beta.42
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/angular/components/core/streamingSlotRegistrar.js +1 -1
- package/dist/angular/components/core/streamingSlotRegistry.js +2 -2
- package/dist/cli/index.js +253 -122
- package/dist/mobile/index.js +129 -1
- package/dist/mobile/index.js.map +4 -4
- package/dist/src/mobile/expoDevController.d.ts +4 -1
- package/package.json +1 -1
|
@@ -1,7 +1,8 @@
|
|
|
1
1
|
import { spawn } from 'node:child_process';
|
|
2
2
|
import type { NormalizedAbsoluteMobileConfig } from './config';
|
|
3
|
+
import { startAbsoluteIosCaEnrollmentServer } from './iosPhysicalDeviceTransport';
|
|
3
4
|
export type AbsoluteExpoDevPlatform = 'android' | 'ios';
|
|
4
|
-
export type AbsoluteExpoDevState = 'building-android' | 'building-ios' | 'closed' | 'failed' | 'preparing-native' | 'ready' | 'starting-metro';
|
|
5
|
+
export type AbsoluteExpoDevState = 'building-android' | 'building-ios' | 'closed' | 'enrolling-trust' | 'failed' | 'preparing-native' | 'ready' | 'starting-metro';
|
|
5
6
|
export type AbsoluteExpoDevCommand = {
|
|
6
7
|
args: string[];
|
|
7
8
|
env: Record<string, string>;
|
|
@@ -16,6 +17,7 @@ export type AbsoluteExpoDevPlan = {
|
|
|
16
17
|
export type PlanAbsoluteExpoDevOptions = {
|
|
17
18
|
androidDevice?: string;
|
|
18
19
|
androidOrigin?: string;
|
|
20
|
+
certificateAuthorityPath?: string;
|
|
19
21
|
iosDevice?: string;
|
|
20
22
|
iosOrigin?: string;
|
|
21
23
|
metroPort: number;
|
|
@@ -32,6 +34,7 @@ export type StartAbsoluteExpoDevOptions = PlanAbsoluteExpoDevOptions & {
|
|
|
32
34
|
onStateChange?: (state: AbsoluteExpoDevState) => void;
|
|
33
35
|
signal?: AbortSignal;
|
|
34
36
|
spawnProcess?: typeof spawn;
|
|
37
|
+
startCaEnrollmentServer?: typeof startAbsoluteIosCaEnrollmentServer;
|
|
35
38
|
};
|
|
36
39
|
export type AbsoluteExpoDevSession = {
|
|
37
40
|
close: () => Promise<void>;
|