UNPKG

@enable-tech/shared-types

Version:

This package represents the single source of truth of the Types being used in the codebase (front-end and back-end) of enable.tech, It is an organization-scoped package. So, all the development teams belonging to it can participate to enhance it.

18 lines 568 B
import { E_WalletApp } from 'src/modules/loyaltyProgram/common/backend/enums'; import { T_DeviceData } from 'src/modules/loyaltyProgram/common/client/types'; export type T_RegisterCustomerBodyParams = { brandId: string; country_code: string; phone: string; first_name: string; last_name: string; title: string; birthDate?: string; email?: string; enrollmentCode?: string; deviceData?: T_DeviceData; loyaltyRegistrationBranchId?: string; source?: string; walletApp: E_WalletApp; }; //# sourceMappingURL=index.d.ts.map