@truworth/twc-auth 3.0.7 → 3.0.8

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.
Files changed (381) hide show
  1. package/build/assets/animation/redirect-home.json +1101 -0
  2. package/build/assets/cross_icon copy.svg +5 -0
  3. package/build/assets/cross_icon.svg +5 -0
  4. package/build/assets/email_icon.svg +6 -0
  5. package/build/assets/gender-diversity.svg +22 -0
  6. package/build/assets/loading-spinner.json +1 -0
  7. package/build/assets/logo.svg +55 -0
  8. package/build/assets/okay_icon.svg +3 -0
  9. package/build/src/api/auth.js +36 -0
  10. package/build/src/api/axiosClient/index.js +5 -0
  11. package/build/src/api/axiosClient/index.native.js +5 -0
  12. package/build/src/components/AdvancedTransitionWrapper/index.js +374 -0
  13. package/build/src/components/AdvancedTransitionWrapper/index.native.js +10 -0
  14. package/build/src/components/AdvancedTransitionWrapper/types.js +1 -0
  15. package/build/src/components/ConfirmationModal/index.js +11 -0
  16. package/build/src/components/ConfirmationModal/index.native.js +15 -0
  17. package/build/src/components/ConfirmationModal/types.js +1 -0
  18. package/build/src/components/IonIcon/index.js +11 -0
  19. package/build/src/components/IonIcon/index.native.js +9 -0
  20. package/build/src/components/IonIcon/types.js +1 -0
  21. package/build/src/components/LoadingAnimation/index.js +50 -0
  22. package/build/src/components/OTPStatusLabel/index.js +10 -0
  23. package/build/src/components/OTPStatusLabel/index.native.js +21 -0
  24. package/build/src/components/OTPStatusLabel/types.js +1 -0
  25. package/build/src/components/PasswordCriteria/hooks/usePasswordCriteria.js +71 -0
  26. package/build/src/components/PasswordCriteria/index.js +47 -0
  27. package/build/src/components/PasswordCriteria/index.native.js +22 -0
  28. package/build/src/components/PasswordCriteria/types.js +1 -0
  29. package/build/src/components/ScreenLayout/index.js +12 -0
  30. package/build/src/components/ScreenLayout/index.native.js +18 -0
  31. package/build/src/components/ScreenLayout/types.js +1 -0
  32. package/build/src/components/SupportDetails/index.js +9 -0
  33. package/build/src/components/SupportDetails/index.native.js +6 -0
  34. package/build/src/components/VerifyEmailOTP/index.js +20 -0
  35. package/build/src/components/VerifyEmailOTP/index.native.js +22 -0
  36. package/build/src/components/VerifyEmailOTP/types.js +1 -0
  37. package/build/src/components/VerifyMobileOTP/index.js +25 -0
  38. package/build/src/components/VerifyMobileOTP/index.native.js +38 -0
  39. package/build/src/components/VerifyMobileOTP/types.js +1 -0
  40. package/build/src/constants/base-url/index.js +5 -0
  41. package/build/src/constants/base-url/index.native.js +1 -0
  42. package/build/src/constants/cdn-url/index.js +2 -0
  43. package/build/src/constants/cdn-url/index.native.js +5 -0
  44. package/build/src/constants/defaultPolicy.js +9 -0
  45. package/build/src/constants/password-requirements.js +7 -0
  46. package/build/src/constants/social-login-options.js +16 -0
  47. package/build/src/contexts/AuthContext.js +192 -0
  48. package/build/src/contexts/type.js +1 -0
  49. package/build/src/enums/index.js +3 -0
  50. package/build/src/enums/loginMethod.enum.js +8 -0
  51. package/build/src/enums/registrationMethod.enum.js +7 -0
  52. package/build/src/enums/socialLogins.enum.js +6 -0
  53. package/build/src/helpers/network.js +93 -0
  54. package/build/src/helpers/show-message/index.js +19 -0
  55. package/build/src/helpers/show-message/index.native.js +14 -0
  56. package/build/src/helpers/show-message/types.js +1 -0
  57. package/build/src/helpers/types.js +1 -0
  58. package/build/src/helpers/validation.js +12 -0
  59. package/build/src/hooks/internal/useAuthPackageContext.js +9 -0
  60. package/build/src/hooks/internal/useTimer.js +40 -0
  61. package/build/src/hooks/useAuthContext.js +10 -0
  62. package/build/src/hooks/useNavigator.js +83 -0
  63. package/build/src/hooks/useRequest.js +34 -0
  64. package/build/src/index.js +23 -0
  65. package/build/src/navigator/index.js +10 -0
  66. package/build/src/navigator/index.native.js +27 -0
  67. package/build/src/screens/CountryCode/components/CountryCodeDropdown/index.js +37 -0
  68. package/build/src/screens/CountryCode/components/CountryCodeDropdown/index.native.js +6 -0
  69. package/build/src/screens/CountryCode/components/CountryCodeDropdown/types.js +1 -0
  70. package/build/src/screens/CountryCode/hooks/internal/useCountryCode.js +38 -0
  71. package/build/src/screens/CountryCode/index.js +10 -0
  72. package/build/src/screens/CountryCode/index.native.js +37 -0
  73. package/build/src/screens/CountryCode/type.js +1 -0
  74. package/build/src/screens/CreatePassword/hooks/internal/useCreatePassword.js +46 -0
  75. package/build/src/screens/CreatePassword/index.js +19 -0
  76. package/build/src/screens/CreatePassword/index.native.js +32 -0
  77. package/build/src/screens/CreatePassword/type.js +1 -0
  78. package/build/src/screens/EnterEmail/hooks/internal/useEnterEmail.js +77 -0
  79. package/build/src/screens/EnterEmail/index.js +58 -0
  80. package/build/src/screens/EnterEmail/index.native.js +31 -0
  81. package/build/src/screens/EnterEmail/types.js +1 -0
  82. package/build/src/screens/EnterMobile/components/ExistingAccountsSheet/hooks/internal/useExistingAccountsSheet.js +36 -0
  83. package/build/src/screens/EnterMobile/components/ExistingAccountsSheet/index.js +33 -0
  84. package/build/src/screens/EnterMobile/components/ExistingAccountsSheet/index.native.js +73 -0
  85. package/build/src/screens/EnterMobile/components/ExistingAccountsSheet/types.js +1 -0
  86. package/build/src/screens/EnterMobile/hooks/internal/useEnterMobile.js +70 -0
  87. package/build/src/screens/EnterMobile/index.js +82 -0
  88. package/build/src/screens/EnterMobile/index.native.js +56 -0
  89. package/build/src/screens/EnterMobile/types.js +1 -0
  90. package/build/src/screens/EnterPassword/hooks/internal/useEnterPassword.js +79 -0
  91. package/build/src/screens/EnterPassword/index.js +68 -0
  92. package/build/src/screens/EnterPassword/index.native.js +41 -0
  93. package/build/src/screens/EnterPassword/types.js +1 -0
  94. package/build/src/screens/Login/components/LoginWebComponent/index.js +63 -0
  95. package/build/src/screens/Login/components/LoginWebComponent/index.native.js +6 -0
  96. package/build/src/screens/Login/index.js +10 -0
  97. package/build/src/screens/Login/index.native.js +6 -0
  98. package/build/src/screens/LoginWithEmailOTP/hooks/internal/useLoginWithEmailOTP.js +85 -0
  99. package/build/src/screens/LoginWithEmailOTP/index.js +8 -0
  100. package/build/src/screens/LoginWithEmailOTP/index.native.js +10 -0
  101. package/build/src/screens/LoginWithMobileOTP/hooks/internal/useLoginWithMobileOTP.js +72 -0
  102. package/build/src/screens/LoginWithMobileOTP/index.js +8 -0
  103. package/build/src/screens/LoginWithMobileOTP/index.native.js +10 -0
  104. package/build/src/screens/PartnerSSO/PartnerLogin/components/PartnerLoginWebComponent/index.js +71 -0
  105. package/build/src/screens/PartnerSSO/PartnerLogin/components/PartnerLoginWebComponent/index.native.js +6 -0
  106. package/build/src/screens/PartnerSSO/PartnerLogin/hooks/internal/usePartnerLogin.js +52 -0
  107. package/build/src/screens/PartnerSSO/PartnerLogin/index.js +2 -0
  108. package/build/src/screens/PartnerSSO/PartnerLogin/types.js +1 -0
  109. package/build/src/screens/PartnerSSO/PartnerRegistration/components/PartnerRegistrationWebComponent/index.js +207 -0
  110. package/build/src/screens/PartnerSSO/PartnerRegistration/components/PartnerRegistrationWebComponent/index.native.js +6 -0
  111. package/build/src/screens/PartnerSSO/PartnerRegistration/hooks/internal/usePartnerRegistration.js +90 -0
  112. package/build/src/screens/PartnerSSO/PartnerRegistration/index.js +2 -0
  113. package/build/src/screens/PartnerSSO/PartnerRegistration/types.js +1 -0
  114. package/build/src/screens/PartnerSSO/index.js +2 -0
  115. package/build/src/screens/Profile/components/EditMobileNumber/index.js +31 -0
  116. package/build/src/screens/Profile/components/EditMobileNumber/index.native.js +8 -0
  117. package/build/src/screens/Profile/components/EditPassword/index.js +29 -0
  118. package/build/src/screens/Profile/components/EditPassword/index.native.js +8 -0
  119. package/build/src/screens/Profile/components/EditProfile/index.js +89 -0
  120. package/build/src/screens/Profile/components/EditProfile/index.native.js +8 -0
  121. package/build/src/screens/Profile/components/OtpVerificationModal/index.js +61 -0
  122. package/build/src/screens/Profile/components/OtpVerificationModal/index.native.js +7 -0
  123. package/build/src/screens/Profile/components/ProfileWebComponent/index.js +80 -0
  124. package/build/src/screens/Profile/components/ProfileWebComponent/index.native.js +9 -0
  125. package/build/src/screens/Profile/hooks/internal/useProfile.js +185 -0
  126. package/build/src/screens/Profile/index.js +6 -0
  127. package/build/src/screens/Profile/index.native.js +6 -0
  128. package/build/src/screens/Profile/types.js +1 -0
  129. package/build/src/screens/ResetPassword/hooks/internal/useResetPassword.js +57 -0
  130. package/build/src/screens/ResetPassword/index.js +46 -0
  131. package/build/src/screens/ResetPassword/index.native.js +26 -0
  132. package/build/src/screens/ResetPassword/types.js +1 -0
  133. package/build/src/screens/SSOLogin/AuthWebView/index.js +9 -0
  134. package/build/src/screens/SSOLogin/AuthWebView/index.native.js +42 -0
  135. package/build/src/screens/SSOLogin/AuthWebView/types.js +1 -0
  136. package/build/src/screens/SSOLogin/AuthenticationMethods/hooks/internal/useSSOAuthenticationMethods.js +39 -0
  137. package/build/src/screens/SSOLogin/AuthenticationMethods/index.js +50 -0
  138. package/build/src/screens/SSOLogin/AuthenticationMethods/index.native.js +59 -0
  139. package/build/src/screens/SSOLogin/AuthenticationMethods/types.js +1 -0
  140. package/build/src/screens/SSOLogin/SSOCallback/components/SSOCallbackComponent/index.js +62 -0
  141. package/build/src/screens/SSOLogin/SSOCallback/components/SSOCallbackComponent/index.native.js +6 -0
  142. package/build/src/screens/SSOLogin/SSOCallback/hooks/internal/useSSOCallback.js +58 -0
  143. package/build/src/screens/SSOLogin/SSOCallback/index.js +9 -0
  144. package/build/src/screens/SSOLogin/SSOCallback/index.native.js +35 -0
  145. package/build/src/screens/SSOLogin/SSOCallback/types.js +1 -0
  146. package/build/src/screens/SSOLogin/SearchOrganization/hooks/internal/useSSOSearchOrganization.js +71 -0
  147. package/build/src/screens/SSOLogin/SearchOrganization/index.js +46 -0
  148. package/build/src/screens/SSOLogin/SearchOrganization/index.native.js +37 -0
  149. package/build/src/screens/SSOLogin/SearchOrganization/types.js +1 -0
  150. package/build/src/screens/SignUp/components/SignUpForm/index.js +215 -0
  151. package/build/src/screens/SignUp/components/SignUpForm/index.native.js +6 -0
  152. package/build/src/screens/SignUp/components/SignUpForm/type.js +1 -0
  153. package/build/src/screens/SignUp/components/SignUpWebComponent/index.js +62 -0
  154. package/build/src/screens/SignUp/components/SignUpWebComponent/index.native.js +6 -0
  155. package/build/src/screens/SignUp/components/SignUpWebComponent/types.js +1 -0
  156. package/build/src/screens/SignUp/hooks/internal/useSignUp.js +134 -0
  157. package/build/src/screens/SignUp/index.js +6 -0
  158. package/build/src/screens/SignUp/index.native.js +188 -0
  159. package/build/src/screens/SignUp/types.js +1 -0
  160. package/build/src/screens/UserConsent/hooks/internal/useConsent.js +64 -0
  161. package/build/src/screens/UserConsent/index.js +84 -0
  162. package/build/src/screens/UserConsent/index.native.js +47 -0
  163. package/build/src/screens/UserConsent/types.js +1 -0
  164. package/build/src/screens/VerifyEmail/hooks/internal/useVerifyEmail.js +69 -0
  165. package/build/src/screens/VerifyEmail/index.js +8 -0
  166. package/build/src/screens/VerifyEmail/index.native.js +14 -0
  167. package/build/src/screens/VerifyEmail/types.js +1 -0
  168. package/build/src/screens/VerifyLinkPrimaryAccountEmailOTP/hooks/internal/useVerifyLinkPrimaryAccountEmailOTP.js +73 -0
  169. package/build/src/screens/VerifyLinkPrimaryAccountEmailOTP/index.js +8 -0
  170. package/build/src/screens/VerifyLinkPrimaryAccountEmailOTP/index.native.js +14 -0
  171. package/build/src/screens/VerifyLinkPrimaryAccountEmailOTP/types.js +1 -0
  172. package/build/src/screens/VerifyLinkPrimaryAccountMobileOTP/hooks/internal/useVerifyLinkPrimaryAccountMobileOTP.js +83 -0
  173. package/build/src/screens/VerifyLinkPrimaryAccountMobileOTP/index.js +8 -0
  174. package/build/src/screens/VerifyLinkPrimaryAccountMobileOTP/index.native.js +10 -0
  175. package/build/src/screens/VerifyLinkPrimaryAccountMobileOTP/types.js +1 -0
  176. package/build/src/screens/VerifyMobile/hooks/internal/useVerifyMobile.js +74 -0
  177. package/build/src/screens/VerifyMobile/index.js +8 -0
  178. package/build/src/screens/VerifyMobile/index.native.js +9 -0
  179. package/build/src/screens/VerifyMobile/types.js +1 -0
  180. package/build/src/screens/VerifyResetPasswordOTP/hooks/internal/useVerifyResetPasswordOTP.js +74 -0
  181. package/build/src/screens/VerifyResetPasswordOTP/index.js +8 -0
  182. package/build/src/screens/VerifyResetPasswordOTP/index.native.js +14 -0
  183. package/build/src/screens/Welcome/SocialAuth/commonSocialAuth.js +127 -0
  184. package/build/src/screens/Welcome/SocialAuth/hooks/useSocialAuth.native.js +187 -0
  185. package/build/src/screens/Welcome/SocialAuth/hooks/useSocialAuth.web.js +13 -0
  186. package/build/src/screens/Welcome/SocialAuth/hooks/web/useFacebookAuth.web.js +115 -0
  187. package/build/src/screens/Welcome/SocialAuth/hooks/web/useGoogleAuth.web.js +72 -0
  188. package/build/src/screens/Welcome/components/SocialLoginModal/index.js +9 -0
  189. package/build/src/screens/Welcome/components/SocialLoginModal/index.native.js +21 -0
  190. package/build/src/screens/Welcome/components/SocialLoginModal/types.js +1 -0
  191. package/build/src/screens/Welcome/hooks/internal/useWelcome.js +26 -0
  192. package/build/src/screens/Welcome/index.js +28 -0
  193. package/build/src/screens/Welcome/index.native.js +78 -0
  194. package/build/src/types/types.js +2 -0
  195. package/build/types/api/auth.d.ts +11 -0
  196. package/build/types/api/axiosClient/index.d.ts +1 -0
  197. package/build/types/api/axiosClient/index.native.d.ts +1 -0
  198. package/build/types/components/AdvancedTransitionWrapper/index.d.ts +3 -0
  199. package/build/types/components/AdvancedTransitionWrapper/index.native.d.ts +5 -0
  200. package/build/types/components/AdvancedTransitionWrapper/types.d.ts +25 -0
  201. package/build/types/components/ConfirmationModal/index.d.ts +3 -0
  202. package/build/types/components/ConfirmationModal/index.native.d.ts +3 -0
  203. package/build/types/components/ConfirmationModal/types.d.ts +16 -0
  204. package/build/types/components/IonIcon/index.d.ts +3 -0
  205. package/build/types/components/IonIcon/index.native.d.ts +4 -0
  206. package/build/types/components/IonIcon/types.d.ts +6 -0
  207. package/build/types/components/LoadingAnimation/index.d.ts +6 -0
  208. package/build/types/components/OTPStatusLabel/index.d.ts +2 -0
  209. package/build/types/components/OTPStatusLabel/index.native.d.ts +3 -0
  210. package/build/types/components/OTPStatusLabel/types.d.ts +6 -0
  211. package/build/types/components/PasswordCriteria/hooks/usePasswordCriteria.d.ts +8 -0
  212. package/build/types/components/PasswordCriteria/index.d.ts +3 -0
  213. package/build/types/components/PasswordCriteria/index.native.d.ts +3 -0
  214. package/build/types/components/PasswordCriteria/types.d.ts +15 -0
  215. package/build/types/components/ScreenLayout/index.d.ts +3 -0
  216. package/build/types/components/ScreenLayout/index.native.d.ts +3 -0
  217. package/build/types/components/ScreenLayout/types.d.ts +13 -0
  218. package/build/types/components/SupportDetails/index.d.ts +2 -0
  219. package/build/types/components/SupportDetails/index.native.d.ts +2 -0
  220. package/build/types/components/VerifyEmailOTP/index.d.ts +3 -0
  221. package/build/types/components/VerifyEmailOTP/index.native.d.ts +3 -0
  222. package/build/types/components/VerifyEmailOTP/types.d.ts +9 -0
  223. package/build/types/components/VerifyMobileOTP/index.d.ts +3 -0
  224. package/build/types/components/VerifyMobileOTP/index.native.d.ts +3 -0
  225. package/build/types/components/VerifyMobileOTP/types.d.ts +9 -0
  226. package/build/types/constants/base-url/index.d.ts +1 -0
  227. package/build/types/constants/base-url/index.native.d.ts +1 -0
  228. package/build/types/constants/cdn-url/index.d.ts +2 -0
  229. package/build/types/constants/cdn-url/index.native.d.ts +3 -0
  230. package/build/types/constants/defaultPolicy.d.ts +9 -0
  231. package/build/types/constants/password-requirements.d.ts +4 -0
  232. package/build/types/constants/social-login-options.d.ts +3 -0
  233. package/build/types/contexts/AuthContext.d.ts +40 -0
  234. package/build/types/contexts/type.d.ts +94 -0
  235. package/build/types/enums/index.d.ts +3 -0
  236. package/build/types/enums/loginMethod.enum.d.ts +7 -0
  237. package/build/types/enums/registrationMethod.enum.d.ts +6 -0
  238. package/build/types/enums/socialLogins.enum.d.ts +5 -0
  239. package/build/types/helpers/network.d.ts +5 -0
  240. package/build/types/helpers/show-message/index.d.ts +3 -0
  241. package/build/types/helpers/show-message/index.native.d.ts +3 -0
  242. package/build/types/helpers/show-message/types.d.ts +6 -0
  243. package/build/types/helpers/types.d.ts +19 -0
  244. package/build/types/helpers/validation.d.ts +2 -0
  245. package/build/types/hooks/internal/useAuthPackageContext.d.ts +1 -0
  246. package/build/types/hooks/internal/useTimer.d.ts +3 -0
  247. package/build/types/hooks/useAuthContext.d.ts +2 -0
  248. package/build/types/hooks/useNavigator.d.ts +66 -0
  249. package/build/types/hooks/useRequest.d.ts +5 -0
  250. package/build/types/index.d.ts +15 -0
  251. package/build/types/navigator/index.d.ts +2 -0
  252. package/build/types/navigator/index.native.d.ts +82 -0
  253. package/build/types/screens/CountryCode/components/CountryCodeDropdown/index.d.ts +3 -0
  254. package/build/types/screens/CountryCode/components/CountryCodeDropdown/index.native.d.ts +2 -0
  255. package/build/types/screens/CountryCode/components/CountryCodeDropdown/types.d.ts +17 -0
  256. package/build/types/screens/CountryCode/hooks/internal/useCountryCode.d.ts +12 -0
  257. package/build/types/screens/CountryCode/index.d.ts +2 -0
  258. package/build/types/screens/CountryCode/index.native.d.ts +2 -0
  259. package/build/types/screens/CountryCode/type.d.ts +11 -0
  260. package/build/types/screens/CreatePassword/hooks/internal/useCreatePassword.d.ts +37 -0
  261. package/build/types/screens/CreatePassword/index.d.ts +3 -0
  262. package/build/types/screens/CreatePassword/index.native.d.ts +4 -0
  263. package/build/types/screens/CreatePassword/type.d.ts +43 -0
  264. package/build/types/screens/EnterEmail/hooks/internal/useEnterEmail.d.ts +19 -0
  265. package/build/types/screens/EnterEmail/index.d.ts +3 -0
  266. package/build/types/screens/EnterEmail/index.native.d.ts +4 -0
  267. package/build/types/screens/EnterEmail/types.d.ts +13 -0
  268. package/build/types/screens/EnterMobile/components/ExistingAccountsSheet/hooks/internal/useExistingAccountsSheet.d.ts +13 -0
  269. package/build/types/screens/EnterMobile/components/ExistingAccountsSheet/index.d.ts +3 -0
  270. package/build/types/screens/EnterMobile/components/ExistingAccountsSheet/index.native.d.ts +3 -0
  271. package/build/types/screens/EnterMobile/components/ExistingAccountsSheet/types.d.ts +28 -0
  272. package/build/types/screens/EnterMobile/hooks/internal/useEnterMobile.d.ts +15 -0
  273. package/build/types/screens/EnterMobile/index.d.ts +4 -0
  274. package/build/types/screens/EnterMobile/index.native.d.ts +4 -0
  275. package/build/types/screens/EnterMobile/types.d.ts +44 -0
  276. package/build/types/screens/EnterPassword/hooks/internal/useEnterPassword.d.ts +25 -0
  277. package/build/types/screens/EnterPassword/index.d.ts +3 -0
  278. package/build/types/screens/EnterPassword/index.native.d.ts +4 -0
  279. package/build/types/screens/EnterPassword/types.d.ts +24 -0
  280. package/build/types/screens/Login/components/LoginWebComponent/index.d.ts +2 -0
  281. package/build/types/screens/Login/components/LoginWebComponent/index.native.d.ts +2 -0
  282. package/build/types/screens/Login/index.d.ts +2 -0
  283. package/build/types/screens/Login/index.native.d.ts +2 -0
  284. package/build/types/screens/LoginWithEmailOTP/hooks/internal/useLoginWithEmailOTP.d.ts +17 -0
  285. package/build/types/screens/LoginWithEmailOTP/index.d.ts +7 -0
  286. package/build/types/screens/LoginWithEmailOTP/index.native.d.ts +4 -0
  287. package/build/types/screens/LoginWithMobileOTP/hooks/internal/useLoginWithMobileOTP.d.ts +11 -0
  288. package/build/types/screens/LoginWithMobileOTP/index.d.ts +5 -0
  289. package/build/types/screens/LoginWithMobileOTP/index.native.d.ts +4 -0
  290. package/build/types/screens/PartnerSSO/PartnerLogin/components/PartnerLoginWebComponent/index.d.ts +25 -0
  291. package/build/types/screens/PartnerSSO/PartnerLogin/components/PartnerLoginWebComponent/index.native.d.ts +2 -0
  292. package/build/types/screens/PartnerSSO/PartnerLogin/hooks/internal/usePartnerLogin.d.ts +8 -0
  293. package/build/types/screens/PartnerSSO/PartnerLogin/index.d.ts +2 -0
  294. package/build/types/screens/PartnerSSO/PartnerLogin/types.d.ts +35 -0
  295. package/build/types/screens/PartnerSSO/PartnerRegistration/components/PartnerRegistrationWebComponent/index.d.ts +24 -0
  296. package/build/types/screens/PartnerSSO/PartnerRegistration/components/PartnerRegistrationWebComponent/index.native.d.ts +2 -0
  297. package/build/types/screens/PartnerSSO/PartnerRegistration/hooks/internal/usePartnerRegistration.d.ts +8 -0
  298. package/build/types/screens/PartnerSSO/PartnerRegistration/index.d.ts +2 -0
  299. package/build/types/screens/PartnerSSO/PartnerRegistration/types.d.ts +63 -0
  300. package/build/types/screens/PartnerSSO/index.d.ts +2 -0
  301. package/build/types/screens/Profile/components/EditMobileNumber/index.d.ts +6 -0
  302. package/build/types/screens/Profile/components/EditMobileNumber/index.native.d.ts +3 -0
  303. package/build/types/screens/Profile/components/EditPassword/index.d.ts +6 -0
  304. package/build/types/screens/Profile/components/EditPassword/index.native.d.ts +3 -0
  305. package/build/types/screens/Profile/components/EditProfile/index.d.ts +6 -0
  306. package/build/types/screens/Profile/components/EditProfile/index.native.d.ts +3 -0
  307. package/build/types/screens/Profile/components/OtpVerificationModal/index.d.ts +4 -0
  308. package/build/types/screens/Profile/components/OtpVerificationModal/index.native.d.ts +3 -0
  309. package/build/types/screens/Profile/components/ProfileWebComponent/index.d.ts +4 -0
  310. package/build/types/screens/Profile/components/ProfileWebComponent/index.native.d.ts +3 -0
  311. package/build/types/screens/Profile/hooks/internal/useProfile.d.ts +26 -0
  312. package/build/types/screens/Profile/index.d.ts +7 -0
  313. package/build/types/screens/Profile/index.native.d.ts +7 -0
  314. package/build/types/screens/Profile/types.d.ts +53 -0
  315. package/build/types/screens/ResetPassword/hooks/internal/useResetPassword.d.ts +29 -0
  316. package/build/types/screens/ResetPassword/index.d.ts +3 -0
  317. package/build/types/screens/ResetPassword/index.native.d.ts +4 -0
  318. package/build/types/screens/ResetPassword/types.d.ts +11 -0
  319. package/build/types/screens/SSOLogin/AuthWebView/index.d.ts +2 -0
  320. package/build/types/screens/SSOLogin/AuthWebView/index.native.d.ts +4 -0
  321. package/build/types/screens/SSOLogin/AuthWebView/types.d.ts +8 -0
  322. package/build/types/screens/SSOLogin/AuthenticationMethods/hooks/internal/useSSOAuthenticationMethods.d.ts +9 -0
  323. package/build/types/screens/SSOLogin/AuthenticationMethods/index.d.ts +3 -0
  324. package/build/types/screens/SSOLogin/AuthenticationMethods/index.native.d.ts +4 -0
  325. package/build/types/screens/SSOLogin/AuthenticationMethods/types.d.ts +14 -0
  326. package/build/types/screens/SSOLogin/SSOCallback/components/SSOCallbackComponent/index.d.ts +6 -0
  327. package/build/types/screens/SSOLogin/SSOCallback/components/SSOCallbackComponent/index.native.d.ts +2 -0
  328. package/build/types/screens/SSOLogin/SSOCallback/hooks/internal/useSSOCallback.d.ts +15 -0
  329. package/build/types/screens/SSOLogin/SSOCallback/index.d.ts +2 -0
  330. package/build/types/screens/SSOLogin/SSOCallback/index.native.d.ts +4 -0
  331. package/build/types/screens/SSOLogin/SSOCallback/types.d.ts +14 -0
  332. package/build/types/screens/SSOLogin/SearchOrganization/hooks/internal/useSSOSearchOrganization.d.ts +18 -0
  333. package/build/types/screens/SSOLogin/SearchOrganization/index.d.ts +3 -0
  334. package/build/types/screens/SSOLogin/SearchOrganization/index.native.d.ts +4 -0
  335. package/build/types/screens/SSOLogin/SearchOrganization/types.d.ts +13 -0
  336. package/build/types/screens/SignUp/components/SignUpForm/index.d.ts +3 -0
  337. package/build/types/screens/SignUp/components/SignUpForm/index.native.d.ts +2 -0
  338. package/build/types/screens/SignUp/components/SignUpForm/type.d.ts +6 -0
  339. package/build/types/screens/SignUp/components/SignUpWebComponent/index.d.ts +2 -0
  340. package/build/types/screens/SignUp/components/SignUpWebComponent/index.native.d.ts +2 -0
  341. package/build/types/screens/SignUp/components/SignUpWebComponent/types.d.ts +9 -0
  342. package/build/types/screens/SignUp/hooks/internal/useSignUp.d.ts +48 -0
  343. package/build/types/screens/SignUp/index.d.ts +2 -0
  344. package/build/types/screens/SignUp/index.native.d.ts +4 -0
  345. package/build/types/screens/SignUp/types.d.ts +40 -0
  346. package/build/types/screens/UserConsent/hooks/internal/useConsent.d.ts +10 -0
  347. package/build/types/screens/UserConsent/index.d.ts +3 -0
  348. package/build/types/screens/UserConsent/index.native.d.ts +4 -0
  349. package/build/types/screens/UserConsent/types.d.ts +33 -0
  350. package/build/types/screens/VerifyEmail/hooks/internal/useVerifyEmail.d.ts +19 -0
  351. package/build/types/screens/VerifyEmail/index.d.ts +3 -0
  352. package/build/types/screens/VerifyEmail/index.native.d.ts +4 -0
  353. package/build/types/screens/VerifyEmail/types.d.ts +8 -0
  354. package/build/types/screens/VerifyLinkPrimaryAccountEmailOTP/hooks/internal/useVerifyLinkPrimaryAccountEmailOTP.d.ts +15 -0
  355. package/build/types/screens/VerifyLinkPrimaryAccountEmailOTP/index.d.ts +3 -0
  356. package/build/types/screens/VerifyLinkPrimaryAccountEmailOTP/index.native.d.ts +4 -0
  357. package/build/types/screens/VerifyLinkPrimaryAccountEmailOTP/types.d.ts +14 -0
  358. package/build/types/screens/VerifyLinkPrimaryAccountMobileOTP/hooks/internal/useVerifyLinkPrimaryAccountMobileOTP.d.ts +17 -0
  359. package/build/types/screens/VerifyLinkPrimaryAccountMobileOTP/index.d.ts +3 -0
  360. package/build/types/screens/VerifyLinkPrimaryAccountMobileOTP/index.native.d.ts +4 -0
  361. package/build/types/screens/VerifyLinkPrimaryAccountMobileOTP/types.d.ts +5 -0
  362. package/build/types/screens/VerifyMobile/hooks/internal/useVerifyMobile.d.ts +14 -0
  363. package/build/types/screens/VerifyMobile/index.d.ts +3 -0
  364. package/build/types/screens/VerifyMobile/index.native.d.ts +4 -0
  365. package/build/types/screens/VerifyMobile/types.d.ts +5 -0
  366. package/build/types/screens/VerifyResetPasswordOTP/hooks/internal/useVerifyResetPasswordOTP.d.ts +19 -0
  367. package/build/types/screens/VerifyResetPasswordOTP/index.d.ts +7 -0
  368. package/build/types/screens/VerifyResetPasswordOTP/index.native.d.ts +4 -0
  369. package/build/types/screens/Welcome/SocialAuth/commonSocialAuth.d.ts +50 -0
  370. package/build/types/screens/Welcome/SocialAuth/hooks/useSocialAuth.native.d.ts +7 -0
  371. package/build/types/screens/Welcome/SocialAuth/hooks/useSocialAuth.web.d.ts +7 -0
  372. package/build/types/screens/Welcome/SocialAuth/hooks/web/useFacebookAuth.web.d.ts +5 -0
  373. package/build/types/screens/Welcome/SocialAuth/hooks/web/useGoogleAuth.web.d.ts +4 -0
  374. package/build/types/screens/Welcome/components/SocialLoginModal/index.d.ts +3 -0
  375. package/build/types/screens/Welcome/components/SocialLoginModal/index.native.d.ts +3 -0
  376. package/build/types/screens/Welcome/components/SocialLoginModal/types.d.ts +8 -0
  377. package/build/types/screens/Welcome/hooks/internal/useWelcome.d.ts +22 -0
  378. package/build/types/screens/Welcome/index.d.ts +4 -0
  379. package/build/types/screens/Welcome/index.native.d.ts +4 -0
  380. package/build/types/types/types.d.ts +115 -0
  381. package/package.json +1 -1
@@ -0,0 +1,1101 @@
1
+ {
2
+ "nm": "Comp 1",
3
+ "ddd": 0,
4
+ "h": 256,
5
+ "w": 256,
6
+ "meta": {
7
+ "g": "@lottiefiles/toolkit-js 0.33.2"
8
+ },
9
+ "layers": [
10
+ {
11
+ "ty": 4,
12
+ "nm": "Shape Layer 3",
13
+ "sr": 1,
14
+ "st": 0,
15
+ "op": 300.00001221925,
16
+ "ip": 300.00001221925,
17
+ "hd": false,
18
+ "ddd": 0,
19
+ "bm": 0,
20
+ "hasMask": false,
21
+ "ao": 0,
22
+ "ks": {
23
+ "a": {
24
+ "a": 0,
25
+ "k": [
26
+ -70,
27
+ -0.5,
28
+ 0
29
+ ]
30
+ },
31
+ "s": {
32
+ "a": 0,
33
+ "k": [
34
+ 75,
35
+ 75,
36
+ 100
37
+ ]
38
+ },
39
+ "sk": {
40
+ "a": 0,
41
+ "k": 0
42
+ },
43
+ "p": {
44
+ "a": 1,
45
+ "k": [
46
+ {
47
+ "o": {
48
+ "x": 0.333,
49
+ "y": 0
50
+ },
51
+ "i": {
52
+ "x": 0.667,
53
+ "y": 1
54
+ },
55
+ "s": [
56
+ 208.6,
57
+ 127.969,
58
+ 0
59
+ ],
60
+ "t": 20,
61
+ "ti": [
62
+ 0,
63
+ -0.00520833348855,
64
+ 0
65
+ ],
66
+ "to": [
67
+ 0,
68
+ -6.66145849227905,
69
+ 0
70
+ ]
71
+ },
72
+ {
73
+ "o": {
74
+ "x": 0.333,
75
+ "y": 0
76
+ },
77
+ "i": {
78
+ "x": 0.667,
79
+ "y": 1
80
+ },
81
+ "s": [
82
+ 208.6,
83
+ 88,
84
+ 0
85
+ ],
86
+ "t": 30,
87
+ "ti": [
88
+ 0,
89
+ -6.66666650772095,
90
+ 0
91
+ ],
92
+ "to": [
93
+ 0,
94
+ 0.00520833348855,
95
+ 0
96
+ ]
97
+ },
98
+ {
99
+ "s": [
100
+ 208.6,
101
+ 128,
102
+ 0
103
+ ],
104
+ "t": 40.0000016292334
105
+ }
106
+ ]
107
+ },
108
+ "r": {
109
+ "a": 0,
110
+ "k": 0
111
+ },
112
+ "sa": {
113
+ "a": 0,
114
+ "k": 0
115
+ },
116
+ "o": {
117
+ "a": 0,
118
+ "k": 100
119
+ }
120
+ },
121
+ "ef": [],
122
+ "shapes": [
123
+ {
124
+ "ty": "gr",
125
+ "bm": 0,
126
+ "hd": false,
127
+ "mn": "ADBE Vector Group",
128
+ "nm": "Ellipse 1",
129
+ "ix": 1,
130
+ "cix": 2,
131
+ "np": 3,
132
+ "it": [
133
+ {
134
+ "ty": "el",
135
+ "bm": 0,
136
+ "hd": false,
137
+ "mn": "ADBE Vector Shape - Ellipse",
138
+ "nm": "Ellipse Path 1",
139
+ "d": 1,
140
+ "p": {
141
+ "a": 0,
142
+ "k": [
143
+ 0,
144
+ 0
145
+ ]
146
+ },
147
+ "s": {
148
+ "a": 0,
149
+ "k": [
150
+ 33.75,
151
+ 34.5
152
+ ]
153
+ }
154
+ },
155
+ {
156
+ "ty": "fl",
157
+ "bm": 0,
158
+ "hd": false,
159
+ "mn": "ADBE Vector Graphic - Fill",
160
+ "nm": "Fill 1",
161
+ "c": {
162
+ "a": 0,
163
+ "k": [
164
+ 0.1255,
165
+ 0.5922,
166
+ 0.5922
167
+ ]
168
+ },
169
+ "r": 1,
170
+ "o": {
171
+ "a": 0,
172
+ "k": 100
173
+ }
174
+ },
175
+ {
176
+ "ty": "tr",
177
+ "a": {
178
+ "a": 0,
179
+ "k": [
180
+ 0,
181
+ 0
182
+ ],
183
+ "ix": 1
184
+ },
185
+ "s": {
186
+ "a": 0,
187
+ "k": [
188
+ 100,
189
+ 100
190
+ ],
191
+ "ix": 3
192
+ },
193
+ "sk": {
194
+ "a": 0,
195
+ "k": 0,
196
+ "ix": 4
197
+ },
198
+ "p": {
199
+ "a": 0,
200
+ "k": [
201
+ -70.125,
202
+ -0.5
203
+ ],
204
+ "ix": 2
205
+ },
206
+ "r": {
207
+ "a": 0,
208
+ "k": 0,
209
+ "ix": 6
210
+ },
211
+ "sa": {
212
+ "a": 0,
213
+ "k": 0,
214
+ "ix": 5
215
+ },
216
+ "o": {
217
+ "a": 0,
218
+ "k": 100,
219
+ "ix": 7
220
+ }
221
+ }
222
+ ]
223
+ }
224
+ ],
225
+ "ind": 1
226
+ },
227
+ {
228
+ "ty": 4,
229
+ "nm": "Shape Layer 2",
230
+ "sr": 1,
231
+ "st": 0,
232
+ "op": 300.00001221925,
233
+ "ip": 0,
234
+ "hd": false,
235
+ "ddd": 0,
236
+ "bm": 0,
237
+ "hasMask": false,
238
+ "ao": 0,
239
+ "ks": {
240
+ "a": {
241
+ "a": 0,
242
+ "k": [
243
+ -70,
244
+ -0.5,
245
+ 0
246
+ ]
247
+ },
248
+ "s": {
249
+ "a": 0,
250
+ "k": [
251
+ 75,
252
+ 75,
253
+ 100
254
+ ]
255
+ },
256
+ "sk": {
257
+ "a": 0,
258
+ "k": 0
259
+ },
260
+ "p": {
261
+ "a": 1,
262
+ "k": [
263
+ {
264
+ "o": {
265
+ "x": 0.333,
266
+ "y": 0
267
+ },
268
+ "i": {
269
+ "x": 0.667,
270
+ "y": 1
271
+ },
272
+ "s": [
273
+ 168.6,
274
+ 128,
275
+ 0
276
+ ],
277
+ "t": 15,
278
+ "ti": [
279
+ 0,
280
+ 0,
281
+ 0
282
+ ],
283
+ "to": [
284
+ 0,
285
+ -6.66666650772095,
286
+ 0
287
+ ]
288
+ },
289
+ {
290
+ "o": {
291
+ "x": 0.333,
292
+ "y": 0
293
+ },
294
+ "i": {
295
+ "x": 0.667,
296
+ "y": 1
297
+ },
298
+ "s": [
299
+ 168.6,
300
+ 88,
301
+ 0
302
+ ],
303
+ "t": 25,
304
+ "ti": [
305
+ 0,
306
+ -6.66666650772095,
307
+ 0
308
+ ],
309
+ "to": [
310
+ 0,
311
+ 0,
312
+ 0
313
+ ]
314
+ },
315
+ {
316
+ "s": [
317
+ 168.6,
318
+ 128,
319
+ 0
320
+ ],
321
+ "t": 35.0000014255792
322
+ }
323
+ ]
324
+ },
325
+ "r": {
326
+ "a": 0,
327
+ "k": 0
328
+ },
329
+ "sa": {
330
+ "a": 0,
331
+ "k": 0
332
+ },
333
+ "o": {
334
+ "a": 0,
335
+ "k": 100
336
+ }
337
+ },
338
+ "ef": [],
339
+ "shapes": [
340
+ {
341
+ "ty": "gr",
342
+ "bm": 0,
343
+ "hd": false,
344
+ "mn": "ADBE Vector Group",
345
+ "nm": "Ellipse 1",
346
+ "ix": 1,
347
+ "cix": 2,
348
+ "np": 3,
349
+ "it": [
350
+ {
351
+ "ty": "el",
352
+ "bm": 0,
353
+ "hd": false,
354
+ "mn": "ADBE Vector Shape - Ellipse",
355
+ "nm": "Ellipse Path 1",
356
+ "d": 1,
357
+ "p": {
358
+ "a": 0,
359
+ "k": [
360
+ 0,
361
+ 0
362
+ ]
363
+ },
364
+ "s": {
365
+ "a": 0,
366
+ "k": [
367
+ 33.75,
368
+ 34.5
369
+ ]
370
+ }
371
+ },
372
+ {
373
+ "ty": "fl",
374
+ "bm": 0,
375
+ "hd": false,
376
+ "mn": "ADBE Vector Graphic - Fill",
377
+ "nm": "Fill 1",
378
+ "c": {
379
+ "a": 0,
380
+ "k": [
381
+ 0.1255,
382
+ 0.5922,
383
+ 0.5922
384
+ ]
385
+ },
386
+ "r": 1,
387
+ "o": {
388
+ "a": 0,
389
+ "k": 100
390
+ }
391
+ },
392
+ {
393
+ "ty": "tr",
394
+ "a": {
395
+ "a": 0,
396
+ "k": [
397
+ 0,
398
+ 0
399
+ ],
400
+ "ix": 1
401
+ },
402
+ "s": {
403
+ "a": 0,
404
+ "k": [
405
+ 100,
406
+ 100
407
+ ],
408
+ "ix": 3
409
+ },
410
+ "sk": {
411
+ "a": 0,
412
+ "k": 0,
413
+ "ix": 4
414
+ },
415
+ "p": {
416
+ "a": 0,
417
+ "k": [
418
+ -70.125,
419
+ -0.5
420
+ ],
421
+ "ix": 2
422
+ },
423
+ "r": {
424
+ "a": 0,
425
+ "k": 0,
426
+ "ix": 6
427
+ },
428
+ "sa": {
429
+ "a": 0,
430
+ "k": 0,
431
+ "ix": 5
432
+ },
433
+ "o": {
434
+ "a": 0,
435
+ "k": 100,
436
+ "ix": 7
437
+ }
438
+ }
439
+ ]
440
+ }
441
+ ],
442
+ "ind": 2
443
+ },
444
+ {
445
+ "ty": 4,
446
+ "nm": "Shape Layer 1",
447
+ "sr": 1,
448
+ "st": 0,
449
+ "op": 300.00001221925,
450
+ "ip": 0,
451
+ "hd": false,
452
+ "ddd": 0,
453
+ "bm": 0,
454
+ "hasMask": false,
455
+ "ao": 0,
456
+ "ks": {
457
+ "a": {
458
+ "a": 0,
459
+ "k": [
460
+ -70,
461
+ -0.5,
462
+ 0
463
+ ]
464
+ },
465
+ "s": {
466
+ "a": 0,
467
+ "k": [
468
+ 75,
469
+ 75,
470
+ 100
471
+ ]
472
+ },
473
+ "sk": {
474
+ "a": 0,
475
+ "k": 0
476
+ },
477
+ "p": {
478
+ "a": 1,
479
+ "k": [
480
+ {
481
+ "o": {
482
+ "x": 0.333,
483
+ "y": 0
484
+ },
485
+ "i": {
486
+ "x": 0.667,
487
+ "y": 1
488
+ },
489
+ "s": [
490
+ 128.594,
491
+ 127.969,
492
+ 0
493
+ ],
494
+ "t": 10,
495
+ "ti": [
496
+ 0,
497
+ -0.00520833348855,
498
+ 0
499
+ ],
500
+ "to": [
501
+ 0,
502
+ -6.66145849227905,
503
+ 0
504
+ ]
505
+ },
506
+ {
507
+ "o": {
508
+ "x": 0.333,
509
+ "y": 0
510
+ },
511
+ "i": {
512
+ "x": 0.667,
513
+ "y": 1
514
+ },
515
+ "s": [
516
+ 128.594,
517
+ 88,
518
+ 0
519
+ ],
520
+ "t": 20,
521
+ "ti": [
522
+ 0,
523
+ -6.66666650772095,
524
+ 0
525
+ ],
526
+ "to": [
527
+ 0,
528
+ 0.00520833348855,
529
+ 0
530
+ ]
531
+ },
532
+ {
533
+ "s": [
534
+ 128.594,
535
+ 128,
536
+ 0
537
+ ],
538
+ "t": 30.0000012219251
539
+ }
540
+ ]
541
+ },
542
+ "r": {
543
+ "a": 0,
544
+ "k": 0
545
+ },
546
+ "sa": {
547
+ "a": 0,
548
+ "k": 0
549
+ },
550
+ "o": {
551
+ "a": 0,
552
+ "k": 100
553
+ }
554
+ },
555
+ "ef": [],
556
+ "shapes": [
557
+ {
558
+ "ty": "gr",
559
+ "bm": 0,
560
+ "hd": false,
561
+ "mn": "ADBE Vector Group",
562
+ "nm": "Ellipse 1",
563
+ "ix": 1,
564
+ "cix": 2,
565
+ "np": 3,
566
+ "it": [
567
+ {
568
+ "ty": "el",
569
+ "bm": 0,
570
+ "hd": false,
571
+ "mn": "ADBE Vector Shape - Ellipse",
572
+ "nm": "Ellipse Path 1",
573
+ "d": 1,
574
+ "p": {
575
+ "a": 0,
576
+ "k": [
577
+ 0,
578
+ 0
579
+ ]
580
+ },
581
+ "s": {
582
+ "a": 0,
583
+ "k": [
584
+ 33.75,
585
+ 34.5
586
+ ]
587
+ }
588
+ },
589
+ {
590
+ "ty": "fl",
591
+ "bm": 0,
592
+ "hd": false,
593
+ "mn": "ADBE Vector Graphic - Fill",
594
+ "nm": "Fill 1",
595
+ "c": {
596
+ "a": 0,
597
+ "k": [
598
+ 0.1255,
599
+ 0.5922,
600
+ 0.5922
601
+ ]
602
+ },
603
+ "r": 1,
604
+ "o": {
605
+ "a": 0,
606
+ "k": 100
607
+ }
608
+ },
609
+ {
610
+ "ty": "tr",
611
+ "a": {
612
+ "a": 0,
613
+ "k": [
614
+ 0,
615
+ 0
616
+ ],
617
+ "ix": 1
618
+ },
619
+ "s": {
620
+ "a": 0,
621
+ "k": [
622
+ 100,
623
+ 100
624
+ ],
625
+ "ix": 3
626
+ },
627
+ "sk": {
628
+ "a": 0,
629
+ "k": 0,
630
+ "ix": 4
631
+ },
632
+ "p": {
633
+ "a": 0,
634
+ "k": [
635
+ -70.125,
636
+ -0.5
637
+ ],
638
+ "ix": 2
639
+ },
640
+ "r": {
641
+ "a": 0,
642
+ "k": 0,
643
+ "ix": 6
644
+ },
645
+ "sa": {
646
+ "a": 0,
647
+ "k": 0,
648
+ "ix": 5
649
+ },
650
+ "o": {
651
+ "a": 0,
652
+ "k": 100,
653
+ "ix": 7
654
+ }
655
+ }
656
+ ]
657
+ }
658
+ ],
659
+ "ind": 3
660
+ },
661
+ {
662
+ "ty": 4,
663
+ "nm": "Shape Layer 4",
664
+ "sr": 1,
665
+ "st": 0,
666
+ "op": 300.00001221925,
667
+ "ip": 0,
668
+ "hd": false,
669
+ "ddd": 0,
670
+ "bm": 0,
671
+ "hasMask": false,
672
+ "ao": 0,
673
+ "ks": {
674
+ "a": {
675
+ "a": 0,
676
+ "k": [
677
+ -70,
678
+ -0.5,
679
+ 0
680
+ ]
681
+ },
682
+ "s": {
683
+ "a": 0,
684
+ "k": [
685
+ 75,
686
+ 75,
687
+ 100
688
+ ]
689
+ },
690
+ "sk": {
691
+ "a": 0,
692
+ "k": 0
693
+ },
694
+ "p": {
695
+ "a": 1,
696
+ "k": [
697
+ {
698
+ "o": {
699
+ "x": 0.333,
700
+ "y": 0
701
+ },
702
+ "i": {
703
+ "x": 0.667,
704
+ "y": 1
705
+ },
706
+ "s": [
707
+ 88.59999999999998,
708
+ 127.969,
709
+ 0
710
+ ],
711
+ "t": 5,
712
+ "ti": [
713
+ 0,
714
+ -0.00520833348855,
715
+ 0
716
+ ],
717
+ "to": [
718
+ 0,
719
+ -6.66145849227905,
720
+ 0
721
+ ]
722
+ },
723
+ {
724
+ "o": {
725
+ "x": 0.333,
726
+ "y": 0
727
+ },
728
+ "i": {
729
+ "x": 0.667,
730
+ "y": 1
731
+ },
732
+ "s": [
733
+ 88.59999999999998,
734
+ 88,
735
+ 0
736
+ ],
737
+ "t": 15,
738
+ "ti": [
739
+ 0,
740
+ -6.66666650772095,
741
+ 0
742
+ ],
743
+ "to": [
744
+ 0,
745
+ 0.00520833348855,
746
+ 0
747
+ ]
748
+ },
749
+ {
750
+ "s": [
751
+ 88.6,
752
+ 128,
753
+ 0
754
+ ],
755
+ "t": 25.0000010182709
756
+ }
757
+ ]
758
+ },
759
+ "r": {
760
+ "a": 0,
761
+ "k": 0
762
+ },
763
+ "sa": {
764
+ "a": 0,
765
+ "k": 0
766
+ },
767
+ "o": {
768
+ "a": 0,
769
+ "k": 100
770
+ }
771
+ },
772
+ "ef": [],
773
+ "shapes": [
774
+ {
775
+ "ty": "gr",
776
+ "bm": 0,
777
+ "hd": false,
778
+ "mn": "ADBE Vector Group",
779
+ "nm": "Ellipse 1",
780
+ "ix": 1,
781
+ "cix": 2,
782
+ "np": 3,
783
+ "it": [
784
+ {
785
+ "ty": "el",
786
+ "bm": 0,
787
+ "hd": false,
788
+ "mn": "ADBE Vector Shape - Ellipse",
789
+ "nm": "Ellipse Path 1",
790
+ "d": 1,
791
+ "p": {
792
+ "a": 0,
793
+ "k": [
794
+ 0,
795
+ 0
796
+ ]
797
+ },
798
+ "s": {
799
+ "a": 0,
800
+ "k": [
801
+ 33.75,
802
+ 34.5
803
+ ]
804
+ }
805
+ },
806
+ {
807
+ "ty": "fl",
808
+ "bm": 0,
809
+ "hd": false,
810
+ "mn": "ADBE Vector Graphic - Fill",
811
+ "nm": "Fill 1",
812
+ "c": {
813
+ "a": 0,
814
+ "k": [
815
+ 0.1255,
816
+ 0.5922,
817
+ 0.5922
818
+ ]
819
+ },
820
+ "r": 1,
821
+ "o": {
822
+ "a": 0,
823
+ "k": 100
824
+ }
825
+ },
826
+ {
827
+ "ty": "tr",
828
+ "a": {
829
+ "a": 0,
830
+ "k": [
831
+ 0,
832
+ 0
833
+ ],
834
+ "ix": 1
835
+ },
836
+ "s": {
837
+ "a": 0,
838
+ "k": [
839
+ 100,
840
+ 100
841
+ ],
842
+ "ix": 3
843
+ },
844
+ "sk": {
845
+ "a": 0,
846
+ "k": 0,
847
+ "ix": 4
848
+ },
849
+ "p": {
850
+ "a": 0,
851
+ "k": [
852
+ -70.125,
853
+ -0.5
854
+ ],
855
+ "ix": 2
856
+ },
857
+ "r": {
858
+ "a": 0,
859
+ "k": 0,
860
+ "ix": 6
861
+ },
862
+ "sa": {
863
+ "a": 0,
864
+ "k": 0,
865
+ "ix": 5
866
+ },
867
+ "o": {
868
+ "a": 0,
869
+ "k": 100,
870
+ "ix": 7
871
+ }
872
+ }
873
+ ]
874
+ }
875
+ ],
876
+ "ind": 4
877
+ },
878
+ {
879
+ "ty": 4,
880
+ "nm": "Shape Layer 5",
881
+ "sr": 1,
882
+ "st": 0,
883
+ "op": 300.00001221925,
884
+ "ip": 300.00001221925,
885
+ "hd": false,
886
+ "ddd": 0,
887
+ "bm": 0,
888
+ "hasMask": false,
889
+ "ao": 0,
890
+ "ks": {
891
+ "a": {
892
+ "a": 0,
893
+ "k": [
894
+ -70,
895
+ -0.5,
896
+ 0
897
+ ]
898
+ },
899
+ "s": {
900
+ "a": 0,
901
+ "k": [
902
+ 75,
903
+ 75,
904
+ 100
905
+ ]
906
+ },
907
+ "sk": {
908
+ "a": 0,
909
+ "k": 0
910
+ },
911
+ "p": {
912
+ "a": 1,
913
+ "k": [
914
+ {
915
+ "o": {
916
+ "x": 0.333,
917
+ "y": 0
918
+ },
919
+ "i": {
920
+ "x": 0.667,
921
+ "y": 1
922
+ },
923
+ "s": [
924
+ 48.6,
925
+ 127.969,
926
+ 0
927
+ ],
928
+ "t": 0,
929
+ "ti": [
930
+ 0,
931
+ -0.00520833348855,
932
+ 0
933
+ ],
934
+ "to": [
935
+ 0,
936
+ -6.66145849227905,
937
+ 0
938
+ ]
939
+ },
940
+ {
941
+ "o": {
942
+ "x": 0.333,
943
+ "y": 0
944
+ },
945
+ "i": {
946
+ "x": 0.667,
947
+ "y": 1
948
+ },
949
+ "s": [
950
+ 48.6,
951
+ 88,
952
+ 0
953
+ ],
954
+ "t": 10,
955
+ "ti": [
956
+ 0,
957
+ -6.66666650772095,
958
+ 0
959
+ ],
960
+ "to": [
961
+ 0,
962
+ 0.00520833348855,
963
+ 0
964
+ ]
965
+ },
966
+ {
967
+ "s": [
968
+ 48.6,
969
+ 128,
970
+ 0
971
+ ],
972
+ "t": 20.0000008146167
973
+ }
974
+ ]
975
+ },
976
+ "r": {
977
+ "a": 0,
978
+ "k": 0
979
+ },
980
+ "sa": {
981
+ "a": 0,
982
+ "k": 0
983
+ },
984
+ "o": {
985
+ "a": 0,
986
+ "k": 100
987
+ }
988
+ },
989
+ "ef": [],
990
+ "shapes": [
991
+ {
992
+ "ty": "gr",
993
+ "bm": 0,
994
+ "hd": false,
995
+ "mn": "ADBE Vector Group",
996
+ "nm": "Ellipse 1",
997
+ "ix": 1,
998
+ "cix": 2,
999
+ "np": 3,
1000
+ "it": [
1001
+ {
1002
+ "ty": "el",
1003
+ "bm": 0,
1004
+ "hd": false,
1005
+ "mn": "ADBE Vector Shape - Ellipse",
1006
+ "nm": "Ellipse Path 1",
1007
+ "d": 1,
1008
+ "p": {
1009
+ "a": 0,
1010
+ "k": [
1011
+ 0,
1012
+ 0
1013
+ ]
1014
+ },
1015
+ "s": {
1016
+ "a": 0,
1017
+ "k": [
1018
+ 33.75,
1019
+ 34.5
1020
+ ]
1021
+ }
1022
+ },
1023
+ {
1024
+ "ty": "fl",
1025
+ "bm": 0,
1026
+ "hd": false,
1027
+ "mn": "ADBE Vector Graphic - Fill",
1028
+ "nm": "Fill 1",
1029
+ "c": {
1030
+ "a": 0,
1031
+ "k": [
1032
+ 0.1255,
1033
+ 0.5922,
1034
+ 0.5922
1035
+ ]
1036
+ },
1037
+ "r": 1,
1038
+ "o": {
1039
+ "a": 0,
1040
+ "k": 100
1041
+ }
1042
+ },
1043
+ {
1044
+ "ty": "tr",
1045
+ "a": {
1046
+ "a": 0,
1047
+ "k": [
1048
+ 0,
1049
+ 0
1050
+ ],
1051
+ "ix": 1
1052
+ },
1053
+ "s": {
1054
+ "a": 0,
1055
+ "k": [
1056
+ 100,
1057
+ 100
1058
+ ],
1059
+ "ix": 3
1060
+ },
1061
+ "sk": {
1062
+ "a": 0,
1063
+ "k": 0,
1064
+ "ix": 4
1065
+ },
1066
+ "p": {
1067
+ "a": 0,
1068
+ "k": [
1069
+ -70.125,
1070
+ -0.5
1071
+ ],
1072
+ "ix": 2
1073
+ },
1074
+ "r": {
1075
+ "a": 0,
1076
+ "k": 0,
1077
+ "ix": 6
1078
+ },
1079
+ "sa": {
1080
+ "a": 0,
1081
+ "k": 0,
1082
+ "ix": 5
1083
+ },
1084
+ "o": {
1085
+ "a": 0,
1086
+ "k": 100,
1087
+ "ix": 7
1088
+ }
1089
+ }
1090
+ ]
1091
+ }
1092
+ ],
1093
+ "ind": 5
1094
+ }
1095
+ ],
1096
+ "v": "4.6.8",
1097
+ "fr": 30,
1098
+ "op": 39,
1099
+ "ip": 0,
1100
+ "assets": []
1101
+ }