first commit

This commit is contained in:
2026-03-10 16:18:05 +00:00
commit 11f9c069b5
31635 changed files with 3187747 additions and 0 deletions

View File

@@ -0,0 +1,23 @@
import { ExpoPlist } from './IosConfig.types';
import { ConfigPlugin } from '../Plugin.types';
import { ExpoConfigUpdates } from '../utils/Updates';
export declare enum Config {
ENABLED = "EXUpdatesEnabled",
CHECK_ON_LAUNCH = "EXUpdatesCheckOnLaunch",
LAUNCH_WAIT_MS = "EXUpdatesLaunchWaitMs",
RUNTIME_VERSION = "EXUpdatesRuntimeVersion",
UPDATE_URL = "EXUpdatesURL",
UPDATES_CONFIGURATION_REQUEST_HEADERS_KEY = "EXUpdatesRequestHeaders",
UPDATES_HAS_EMBEDDED_UPDATE = "EXUpdatesHasEmbeddedUpdate",
CODE_SIGNING_CERTIFICATE = "EXUpdatesCodeSigningCertificate",
CODE_SIGNING_METADATA = "EXUpdatesCodeSigningMetadata",
DISABLE_ANTI_BRICKING_MEASURES = "EXUpdatesDisableAntiBrickingMeasures",
ENABLE_BSDIFF_PATCH_SUPPORT = "EXUpdatesEnableBsdiffPatchSupport"
}
export declare const withUpdates: ConfigPlugin;
/**
* A config-plugin to update `ios/Podfile.properties.json` from the `updates.useNativeDebug` in expo config
*/
export declare const withUpdatesNativeDebugPodfileProps: ConfigPlugin<void>;
export declare function setUpdatesConfigAsync(projectRoot: string, config: ExpoConfigUpdates, expoPlist: ExpoPlist, expoUpdatesPackageVersion?: string | null): Promise<ExpoPlist>;
export declare function setVersionsConfigAsync(projectRoot: string, config: ExpoConfigUpdates, expoPlist: ExpoPlist): Promise<ExpoPlist>;