@retinalabsllc/zairusjs 15.0.90 → 15.1.1
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/index.d.mts +26 -34
- package/dist/index.d.ts +26 -34
- package/dist/index.js +236 -474
- package/dist/index.mjs +257 -494
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -161,17 +161,17 @@ declare const UniversalOrganizationPage: React.FC<UniversalOrganizationPageProps
|
|
|
161
161
|
interface UniversalProfileSettingsProps {
|
|
162
162
|
initialFirstName: string;
|
|
163
163
|
initialLastName: string;
|
|
164
|
-
|
|
164
|
+
phoneNumber: string;
|
|
165
165
|
accountStatus?: string;
|
|
166
166
|
memberSince?: string | Date | null;
|
|
167
167
|
isReadOnly?: boolean;
|
|
168
168
|
bannerProps?: BannerProps;
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
action: '
|
|
173
|
-
|
|
174
|
-
|
|
169
|
+
hasPasscode?: boolean;
|
|
170
|
+
isPasscodeLoading?: boolean;
|
|
171
|
+
onSavePasscode?: (payload: {
|
|
172
|
+
action: 'create_passcode' | 'change_passcode';
|
|
173
|
+
oldPasscode?: string;
|
|
174
|
+
newPasscode: string;
|
|
175
175
|
}) => Promise<{
|
|
176
176
|
success: boolean;
|
|
177
177
|
error?: string;
|
|
@@ -259,10 +259,9 @@ interface UniversalHomeViewProps {
|
|
|
259
259
|
balanceLabel?: string;
|
|
260
260
|
balanceAmount: string;
|
|
261
261
|
balanceCurrency?: string;
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
secondaryAction?: HomeActionBtn;
|
|
262
|
+
calculatorAction?: HomeActionBtn;
|
|
263
|
+
buyCryptoAction?: HomeActionBtn;
|
|
264
|
+
referralAction?: HomeActionBtn;
|
|
266
265
|
notifications?: NotificationItem[];
|
|
267
266
|
notificationPage?: number;
|
|
268
267
|
notificationTotalPages?: number;
|
|
@@ -313,26 +312,20 @@ interface CardData {
|
|
|
313
312
|
type: string;
|
|
314
313
|
scheme: string;
|
|
315
314
|
status: string;
|
|
316
|
-
|
|
315
|
+
balance: string;
|
|
317
316
|
currency: string;
|
|
318
317
|
cardHolderName: string;
|
|
319
318
|
cardBgSrc: string;
|
|
320
319
|
networkLogoSrc: string;
|
|
321
|
-
|
|
322
|
-
contentDark?: boolean;
|
|
323
|
-
bannerProps?: BannerProps;
|
|
324
|
-
prepaid?: boolean;
|
|
325
|
-
balance?: string;
|
|
320
|
+
contentDark: boolean;
|
|
326
321
|
}
|
|
327
322
|
interface UniversalCardPageProps {
|
|
328
323
|
cards: CardData[];
|
|
329
324
|
actionPath?: string;
|
|
330
|
-
onReveal?: (cardId: string) => void
|
|
331
|
-
onFreeze?: (cardId: string) =>
|
|
332
|
-
|
|
333
|
-
onDelete?: (cardId: string) => void | Promise<void>;
|
|
325
|
+
onReveal?: (cardId: string) => void;
|
|
326
|
+
onFreeze?: (cardId: string) => Promise<void>;
|
|
327
|
+
onDelete?: (cardId: string) => void;
|
|
334
328
|
onFundCard?: (cardId: string) => void;
|
|
335
|
-
onCreateCard?: () => void;
|
|
336
329
|
}
|
|
337
330
|
declare const UniversalCardPage: React.FC<UniversalCardPageProps>;
|
|
338
331
|
|
|
@@ -423,21 +416,19 @@ interface AppBento2Props {
|
|
|
423
416
|
declare const AppBento2: React.FC<AppBento2Props>;
|
|
424
417
|
|
|
425
418
|
interface UniversalSecurityPageProps {
|
|
426
|
-
|
|
419
|
+
hasPasscode: boolean;
|
|
427
420
|
hasPasskey: boolean;
|
|
428
|
-
|
|
429
|
-
is2FALoading?: boolean;
|
|
421
|
+
isPasscodeLoading?: boolean;
|
|
430
422
|
isPasskeyLoading?: boolean;
|
|
431
423
|
onBack: () => void;
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
success: boolean;
|
|
438
|
-
}>;
|
|
439
|
-
onVerifyAndDisable2FA?: (otp: string) => Promise<{
|
|
424
|
+
onSavePasscode?: (payload: {
|
|
425
|
+
action: 'create_passcode' | 'change_passcode';
|
|
426
|
+
oldPasscode?: string;
|
|
427
|
+
newPasscode: string;
|
|
428
|
+
}) => Promise<{
|
|
440
429
|
success: boolean;
|
|
430
|
+
error?: string;
|
|
431
|
+
message?: string;
|
|
441
432
|
}>;
|
|
442
433
|
onRequestPasskeySetup?: () => Promise<any>;
|
|
443
434
|
onVerifyAndEnablePasskey?: (credential: any) => Promise<{
|
|
@@ -866,6 +857,7 @@ interface UniversalReferralItem {
|
|
|
866
857
|
interface UniversalReferralPageProps {
|
|
867
858
|
referralCode: string | null;
|
|
868
859
|
totalCount: number;
|
|
860
|
+
referralCoins?: number;
|
|
869
861
|
referrals: UniversalReferralItem[];
|
|
870
862
|
isLoading: boolean;
|
|
871
863
|
currentPage: number;
|
|
@@ -913,4 +905,4 @@ interface PinDialerBottomSheetProps {
|
|
|
913
905
|
}
|
|
914
906
|
declare const PinDialerBottomSheet: React.FC<PinDialerBottomSheetProps>;
|
|
915
907
|
|
|
916
|
-
export { AppBento2, type AppBento2Props, type BannerProps, type BentoFeature, type BoardMember, type CompanyDetails, type ConsultantProfile, ConsultantShowcase, type ConsultantShowcaseProps, ContentGridBlock, type ContentGridBlockProps, type DocumentSectionData, type EmailContact, Faq, type FaqItem, type FaqProps, FeatureScroll, type FeatureScrollProps, Footer, type FooterColumn, type FooterLink, type FooterProps, GifFeatureCard, type GifFeatureCardProps, Header, type HeaderLink, type HeaderProps, type AppLogo$1 as HeroAppLogo, HeroSection, type HeroSectionProps, type HomeActionBtn, type LeaderboardItem, ManagedBoardBlock, type ManagedBoardBlockProps, ManagedContactBlock, type ManagedContactBlockProps, ManagedDocument, type ManagedDocumentProps, ManagedNewsletterSplitBlock, type ManagedNewsletterSplitBlockProps, ManagedNotFoundBlock, type ManagedNotFoundBlockProps, ManagedPricingBlock, type ManagedPricingBlockProps, ManagedProjectsBlock, type ManagedProjectsBlockProps, ManagedToaster, MedicalFeatureStatsBlock, MobileNav, type MobileNavItem, type MobileNavProps, type NavItem, type NotificationItem, NumberInput, type NumberInputProps, PageSpinner, type PageSpinnerProps, PinDialerBottomSheet, type PinDialerBottomSheetProps, PipleAuth, type PipleAuthProps, type PlatformFeatureItem, PlatformFeatures, type PlatformFeaturesProps, PortfolioHero, type PortfolioHeroProps, type AppLogo as PricingAppLogo, type PricingFeature, type PricingFeature2, type PricingPlan, type PricingTab, type ProjectItem, type ReferralProfile, type RewardItem, type RewardProfile, type ScrollFeature, type SocialContact, type SocialLink, type StatItem, TextInput, type TextInputProps, ThreeDActionButton, type ThreeDActionButtonProps, ThreeDButton, type ThreeDButtonProps, type TierOption, UniversalCardActionPage, type UniversalCardActionPageProps, UniversalCardPage, type UniversalCardPageProps, UniversalErrorView, type UniversalErrorViewProps, UniversalHomeView, type UniversalHomeViewProps, UniversalOrganizationPage, type UniversalOrganizationPageProps, UniversalProfilePage, type UniversalProfilePageProps, UniversalProfileSettings, type UniversalProfileSettingsProps, type UniversalReferralItem, UniversalReferralPage, type UniversalReferralPageProps, UniversalRewardPage, type UniversalRewardPageProps, UniversalSecurityPage, type UniversalSecurityPageProps, UniversalSidebar, type UniversalSidebarProps, type UniversalTransaction, UniversalTransactionPage, type UniversalTransactionPageProps, UniversalVerificationPage, type UniversalVerificationPageProps, type UniversalWallet, UniversalWalletPage, type UniversalWalletPageProps, type VerificationStatus, WaitlistDialog, type WaitlistDialogProps };
|
|
908
|
+
export { AppBento2, type AppBento2Props, type BannerProps, type BentoFeature, type BoardMember, type CardData, type CompanyDetails, type ConsultantProfile, ConsultantShowcase, type ConsultantShowcaseProps, ContentGridBlock, type ContentGridBlockProps, type DocumentSectionData, type EmailContact, Faq, type FaqItem, type FaqProps, FeatureScroll, type FeatureScrollProps, Footer, type FooterColumn, type FooterLink, type FooterProps, GifFeatureCard, type GifFeatureCardProps, Header, type HeaderLink, type HeaderProps, type AppLogo$1 as HeroAppLogo, HeroSection, type HeroSectionProps, type HomeActionBtn, type LeaderboardItem, ManagedBoardBlock, type ManagedBoardBlockProps, ManagedContactBlock, type ManagedContactBlockProps, ManagedDocument, type ManagedDocumentProps, ManagedNewsletterSplitBlock, type ManagedNewsletterSplitBlockProps, ManagedNotFoundBlock, type ManagedNotFoundBlockProps, ManagedPricingBlock, type ManagedPricingBlockProps, ManagedProjectsBlock, type ManagedProjectsBlockProps, ManagedToaster, MedicalFeatureStatsBlock, MobileNav, type MobileNavItem, type MobileNavProps, type NavItem, type NotificationItem, NumberInput, type NumberInputProps, PageSpinner, type PageSpinnerProps, PinDialerBottomSheet, type PinDialerBottomSheetProps, PipleAuth, type PipleAuthProps, type PlatformFeatureItem, PlatformFeatures, type PlatformFeaturesProps, PortfolioHero, type PortfolioHeroProps, type AppLogo as PricingAppLogo, type PricingFeature, type PricingFeature2, type PricingPlan, type PricingTab, type ProjectItem, type ReferralProfile, type RewardItem, type RewardProfile, type ScrollFeature, type SocialContact, type SocialLink, type StatItem, TextInput, type TextInputProps, ThreeDActionButton, type ThreeDActionButtonProps, ThreeDButton, type ThreeDButtonProps, type TierOption, UniversalCardActionPage, type UniversalCardActionPageProps, UniversalCardPage, type UniversalCardPageProps, UniversalErrorView, type UniversalErrorViewProps, UniversalHomeView, type UniversalHomeViewProps, UniversalOrganizationPage, type UniversalOrganizationPageProps, UniversalProfilePage, type UniversalProfilePageProps, UniversalProfileSettings, type UniversalProfileSettingsProps, type UniversalReferralItem, UniversalReferralPage, type UniversalReferralPageProps, UniversalRewardPage, type UniversalRewardPageProps, UniversalSecurityPage, type UniversalSecurityPageProps, UniversalSidebar, type UniversalSidebarProps, type UniversalTransaction, UniversalTransactionPage, type UniversalTransactionPageProps, UniversalVerificationPage, type UniversalVerificationPageProps, type UniversalWallet, UniversalWalletPage, type UniversalWalletPageProps, type VerificationStatus, WaitlistDialog, type WaitlistDialogProps };
|
package/dist/index.d.ts
CHANGED
|
@@ -161,17 +161,17 @@ declare const UniversalOrganizationPage: React.FC<UniversalOrganizationPageProps
|
|
|
161
161
|
interface UniversalProfileSettingsProps {
|
|
162
162
|
initialFirstName: string;
|
|
163
163
|
initialLastName: string;
|
|
164
|
-
|
|
164
|
+
phoneNumber: string;
|
|
165
165
|
accountStatus?: string;
|
|
166
166
|
memberSince?: string | Date | null;
|
|
167
167
|
isReadOnly?: boolean;
|
|
168
168
|
bannerProps?: BannerProps;
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
action: '
|
|
173
|
-
|
|
174
|
-
|
|
169
|
+
hasPasscode?: boolean;
|
|
170
|
+
isPasscodeLoading?: boolean;
|
|
171
|
+
onSavePasscode?: (payload: {
|
|
172
|
+
action: 'create_passcode' | 'change_passcode';
|
|
173
|
+
oldPasscode?: string;
|
|
174
|
+
newPasscode: string;
|
|
175
175
|
}) => Promise<{
|
|
176
176
|
success: boolean;
|
|
177
177
|
error?: string;
|
|
@@ -259,10 +259,9 @@ interface UniversalHomeViewProps {
|
|
|
259
259
|
balanceLabel?: string;
|
|
260
260
|
balanceAmount: string;
|
|
261
261
|
balanceCurrency?: string;
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
secondaryAction?: HomeActionBtn;
|
|
262
|
+
calculatorAction?: HomeActionBtn;
|
|
263
|
+
buyCryptoAction?: HomeActionBtn;
|
|
264
|
+
referralAction?: HomeActionBtn;
|
|
266
265
|
notifications?: NotificationItem[];
|
|
267
266
|
notificationPage?: number;
|
|
268
267
|
notificationTotalPages?: number;
|
|
@@ -313,26 +312,20 @@ interface CardData {
|
|
|
313
312
|
type: string;
|
|
314
313
|
scheme: string;
|
|
315
314
|
status: string;
|
|
316
|
-
|
|
315
|
+
balance: string;
|
|
317
316
|
currency: string;
|
|
318
317
|
cardHolderName: string;
|
|
319
318
|
cardBgSrc: string;
|
|
320
319
|
networkLogoSrc: string;
|
|
321
|
-
|
|
322
|
-
contentDark?: boolean;
|
|
323
|
-
bannerProps?: BannerProps;
|
|
324
|
-
prepaid?: boolean;
|
|
325
|
-
balance?: string;
|
|
320
|
+
contentDark: boolean;
|
|
326
321
|
}
|
|
327
322
|
interface UniversalCardPageProps {
|
|
328
323
|
cards: CardData[];
|
|
329
324
|
actionPath?: string;
|
|
330
|
-
onReveal?: (cardId: string) => void
|
|
331
|
-
onFreeze?: (cardId: string) =>
|
|
332
|
-
|
|
333
|
-
onDelete?: (cardId: string) => void | Promise<void>;
|
|
325
|
+
onReveal?: (cardId: string) => void;
|
|
326
|
+
onFreeze?: (cardId: string) => Promise<void>;
|
|
327
|
+
onDelete?: (cardId: string) => void;
|
|
334
328
|
onFundCard?: (cardId: string) => void;
|
|
335
|
-
onCreateCard?: () => void;
|
|
336
329
|
}
|
|
337
330
|
declare const UniversalCardPage: React.FC<UniversalCardPageProps>;
|
|
338
331
|
|
|
@@ -423,21 +416,19 @@ interface AppBento2Props {
|
|
|
423
416
|
declare const AppBento2: React.FC<AppBento2Props>;
|
|
424
417
|
|
|
425
418
|
interface UniversalSecurityPageProps {
|
|
426
|
-
|
|
419
|
+
hasPasscode: boolean;
|
|
427
420
|
hasPasskey: boolean;
|
|
428
|
-
|
|
429
|
-
is2FALoading?: boolean;
|
|
421
|
+
isPasscodeLoading?: boolean;
|
|
430
422
|
isPasskeyLoading?: boolean;
|
|
431
423
|
onBack: () => void;
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
success: boolean;
|
|
438
|
-
}>;
|
|
439
|
-
onVerifyAndDisable2FA?: (otp: string) => Promise<{
|
|
424
|
+
onSavePasscode?: (payload: {
|
|
425
|
+
action: 'create_passcode' | 'change_passcode';
|
|
426
|
+
oldPasscode?: string;
|
|
427
|
+
newPasscode: string;
|
|
428
|
+
}) => Promise<{
|
|
440
429
|
success: boolean;
|
|
430
|
+
error?: string;
|
|
431
|
+
message?: string;
|
|
441
432
|
}>;
|
|
442
433
|
onRequestPasskeySetup?: () => Promise<any>;
|
|
443
434
|
onVerifyAndEnablePasskey?: (credential: any) => Promise<{
|
|
@@ -866,6 +857,7 @@ interface UniversalReferralItem {
|
|
|
866
857
|
interface UniversalReferralPageProps {
|
|
867
858
|
referralCode: string | null;
|
|
868
859
|
totalCount: number;
|
|
860
|
+
referralCoins?: number;
|
|
869
861
|
referrals: UniversalReferralItem[];
|
|
870
862
|
isLoading: boolean;
|
|
871
863
|
currentPage: number;
|
|
@@ -913,4 +905,4 @@ interface PinDialerBottomSheetProps {
|
|
|
913
905
|
}
|
|
914
906
|
declare const PinDialerBottomSheet: React.FC<PinDialerBottomSheetProps>;
|
|
915
907
|
|
|
916
|
-
export { AppBento2, type AppBento2Props, type BannerProps, type BentoFeature, type BoardMember, type CompanyDetails, type ConsultantProfile, ConsultantShowcase, type ConsultantShowcaseProps, ContentGridBlock, type ContentGridBlockProps, type DocumentSectionData, type EmailContact, Faq, type FaqItem, type FaqProps, FeatureScroll, type FeatureScrollProps, Footer, type FooterColumn, type FooterLink, type FooterProps, GifFeatureCard, type GifFeatureCardProps, Header, type HeaderLink, type HeaderProps, type AppLogo$1 as HeroAppLogo, HeroSection, type HeroSectionProps, type HomeActionBtn, type LeaderboardItem, ManagedBoardBlock, type ManagedBoardBlockProps, ManagedContactBlock, type ManagedContactBlockProps, ManagedDocument, type ManagedDocumentProps, ManagedNewsletterSplitBlock, type ManagedNewsletterSplitBlockProps, ManagedNotFoundBlock, type ManagedNotFoundBlockProps, ManagedPricingBlock, type ManagedPricingBlockProps, ManagedProjectsBlock, type ManagedProjectsBlockProps, ManagedToaster, MedicalFeatureStatsBlock, MobileNav, type MobileNavItem, type MobileNavProps, type NavItem, type NotificationItem, NumberInput, type NumberInputProps, PageSpinner, type PageSpinnerProps, PinDialerBottomSheet, type PinDialerBottomSheetProps, PipleAuth, type PipleAuthProps, type PlatformFeatureItem, PlatformFeatures, type PlatformFeaturesProps, PortfolioHero, type PortfolioHeroProps, type AppLogo as PricingAppLogo, type PricingFeature, type PricingFeature2, type PricingPlan, type PricingTab, type ProjectItem, type ReferralProfile, type RewardItem, type RewardProfile, type ScrollFeature, type SocialContact, type SocialLink, type StatItem, TextInput, type TextInputProps, ThreeDActionButton, type ThreeDActionButtonProps, ThreeDButton, type ThreeDButtonProps, type TierOption, UniversalCardActionPage, type UniversalCardActionPageProps, UniversalCardPage, type UniversalCardPageProps, UniversalErrorView, type UniversalErrorViewProps, UniversalHomeView, type UniversalHomeViewProps, UniversalOrganizationPage, type UniversalOrganizationPageProps, UniversalProfilePage, type UniversalProfilePageProps, UniversalProfileSettings, type UniversalProfileSettingsProps, type UniversalReferralItem, UniversalReferralPage, type UniversalReferralPageProps, UniversalRewardPage, type UniversalRewardPageProps, UniversalSecurityPage, type UniversalSecurityPageProps, UniversalSidebar, type UniversalSidebarProps, type UniversalTransaction, UniversalTransactionPage, type UniversalTransactionPageProps, UniversalVerificationPage, type UniversalVerificationPageProps, type UniversalWallet, UniversalWalletPage, type UniversalWalletPageProps, type VerificationStatus, WaitlistDialog, type WaitlistDialogProps };
|
|
908
|
+
export { AppBento2, type AppBento2Props, type BannerProps, type BentoFeature, type BoardMember, type CardData, type CompanyDetails, type ConsultantProfile, ConsultantShowcase, type ConsultantShowcaseProps, ContentGridBlock, type ContentGridBlockProps, type DocumentSectionData, type EmailContact, Faq, type FaqItem, type FaqProps, FeatureScroll, type FeatureScrollProps, Footer, type FooterColumn, type FooterLink, type FooterProps, GifFeatureCard, type GifFeatureCardProps, Header, type HeaderLink, type HeaderProps, type AppLogo$1 as HeroAppLogo, HeroSection, type HeroSectionProps, type HomeActionBtn, type LeaderboardItem, ManagedBoardBlock, type ManagedBoardBlockProps, ManagedContactBlock, type ManagedContactBlockProps, ManagedDocument, type ManagedDocumentProps, ManagedNewsletterSplitBlock, type ManagedNewsletterSplitBlockProps, ManagedNotFoundBlock, type ManagedNotFoundBlockProps, ManagedPricingBlock, type ManagedPricingBlockProps, ManagedProjectsBlock, type ManagedProjectsBlockProps, ManagedToaster, MedicalFeatureStatsBlock, MobileNav, type MobileNavItem, type MobileNavProps, type NavItem, type NotificationItem, NumberInput, type NumberInputProps, PageSpinner, type PageSpinnerProps, PinDialerBottomSheet, type PinDialerBottomSheetProps, PipleAuth, type PipleAuthProps, type PlatformFeatureItem, PlatformFeatures, type PlatformFeaturesProps, PortfolioHero, type PortfolioHeroProps, type AppLogo as PricingAppLogo, type PricingFeature, type PricingFeature2, type PricingPlan, type PricingTab, type ProjectItem, type ReferralProfile, type RewardItem, type RewardProfile, type ScrollFeature, type SocialContact, type SocialLink, type StatItem, TextInput, type TextInputProps, ThreeDActionButton, type ThreeDActionButtonProps, ThreeDButton, type ThreeDButtonProps, type TierOption, UniversalCardActionPage, type UniversalCardActionPageProps, UniversalCardPage, type UniversalCardPageProps, UniversalErrorView, type UniversalErrorViewProps, UniversalHomeView, type UniversalHomeViewProps, UniversalOrganizationPage, type UniversalOrganizationPageProps, UniversalProfilePage, type UniversalProfilePageProps, UniversalProfileSettings, type UniversalProfileSettingsProps, type UniversalReferralItem, UniversalReferralPage, type UniversalReferralPageProps, UniversalRewardPage, type UniversalRewardPageProps, UniversalSecurityPage, type UniversalSecurityPageProps, UniversalSidebar, type UniversalSidebarProps, type UniversalTransaction, UniversalTransactionPage, type UniversalTransactionPageProps, UniversalVerificationPage, type UniversalVerificationPageProps, type UniversalWallet, UniversalWalletPage, type UniversalWalletPageProps, type VerificationStatus, WaitlistDialog, type WaitlistDialogProps };
|