yaver-feedback-react-native 0.8.2 → 0.8.3

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/src/index.ts CHANGED
@@ -40,6 +40,8 @@ export { YaverLoginScreen } from './LoginScreen';
40
40
  export type { YaverLoginScreenProps } from './LoginScreen';
41
41
  export { YaverMachinePickerScreen } from './MachinePickerScreen';
42
42
  export type { YaverMachinePickerProps } from './MachinePickerScreen';
43
+ export { YaverGuestOnboardingScreen } from './GuestOnboardingScreen';
44
+ export type { YaverGuestOnboardingScreenProps } from './GuestOnboardingScreen';
43
45
  export { PairDeviceModal } from './PairDeviceModal';
44
46
  export type { PairDeviceModalProps } from './PairDeviceModal';
45
47
  export { AuthOverlay } from './AuthOverlay';
@@ -72,6 +74,10 @@ export {
72
74
  signupWithEmail,
73
75
  loginWithEmail,
74
76
  listReachableDevices,
77
+ fetchGuestHosts,
78
+ findInviteByCode,
79
+ acceptGuestByCode,
80
+ acceptGuestInvitation,
75
81
  DEFAULT_CONVEX_SITE_URL,
76
82
  DEFAULT_WEB_BASE_URL,
77
83
  DEFAULT_OAUTH_REDIRECT,
@@ -81,6 +87,11 @@ export type {
81
87
  User,
82
88
  RemoteDevice,
83
89
  DeviceList,
90
+ GuestInvitation,
91
+ ActiveGuestHost,
92
+ GuestHostsResponse,
93
+ InvitationHostDevice,
94
+ InvitationPreview,
84
95
  } from './auth';
85
96
  export {
86
97
  captureScreenshot,
package/src/types.ts CHANGED
@@ -206,6 +206,13 @@ export interface FeedbackConfig {
206
206
  * Default: false (preserve historical behavior).
207
207
  */
208
208
  strictNativeAuth?: boolean;
209
+ /**
210
+ * Optional host invite code to prefill into the in-SDK guest onboarding
211
+ * flow. Useful when your app receives the code from a deep link, QR flow,
212
+ * or an out-of-band host handoff and you want the user to redeem it
213
+ * without typing.
214
+ */
215
+ guestInviteCode?: string;
209
216
  }
210
217
 
211
218
  export interface FeedbackBundle {