diff --git a/docs/docs/docs/api-reference/react-native-brownfield/objective-c.mdx b/docs/docs/docs/api-reference/react-native-brownfield/objective-c.mdx index 074223e..ce184d5 100644 --- a/docs/docs/docs/api-reference/react-native-brownfield/objective-c.mdx +++ b/docs/docs/docs/api-reference/react-native-brownfield/objective-c.mdx @@ -30,10 +30,11 @@ A singleton that keeps an instance of `ReactNativeBrownfield` object. | Property | Type | Default | Description | | ------------------ | ---------- | --------------- | --------------------------------------------------------- | -| `entryFile` | `NSString` | `index` | Path to JavaScript root. | +| `entryFile` | `NSString` | `index` | Path to JavaScript entry file in development. | | `fallbackResource` | `NSString` | `nil` | Path to bundle fallback resource. | -| `bundlePath` | `NSString` | `main.jsbundle` | Path to bundle fallback resource. | +| `bundlePath` | `NSString` | `main.jsbundle` | Path to JavaScript bundle file. | | `bundle` | `NSBundle` | `Bundle.main` | Bundle instance to lookup the JavaScript bundle resource. | +| `bundleURLOverride` | `NSURL * _Nullable (^)(void)` | `nil` | Dynamic bundle URL provider called on every bundle load. When set, overrides default behavior. | --- diff --git a/docs/docs/docs/api-reference/react-native-brownfield/swift.mdx b/docs/docs/docs/api-reference/react-native-brownfield/swift.mdx index a787050..f7cabf7 100644 --- a/docs/docs/docs/api-reference/react-native-brownfield/swift.mdx +++ b/docs/docs/docs/api-reference/react-native-brownfield/swift.mdx @@ -30,9 +30,9 @@ ReactNativeBrownfield.shared | Property | Type | Default | Description | | ------------------- | ------------------ | --------------- | --------------------------------------------------------------------------------------------- | -| `entryFile` | `String` | `index` | Path to JavaScript root. | +| `entryFile` | `String` | `index` | Path to JavaScript entry file in development. | | `fallbackResource` | `String?` | `nil` | Path to bundle fallback resource. | -| `bundlePath` | `String` | `main.jsbundle` | Path to bundle fallback resource. | +| `bundlePath` | `String` | `main.jsbundle` | Path to JavaScript bundle file. | | `bundle` | `Bundle` | `Bundle.main` | Bundle instance to lookup the JavaScript bundle resource. | | `bundleURLOverride` | `(() -> URL?)?` | `nil` | Dynamic bundle URL provider called on every bundle load. When set, overrides default behavior. |