17 lines
508 B
TypeScript
17 lines
508 B
TypeScript
export declare const USER_ROLE: {
|
|
readonly USER: "USER";
|
|
readonly ADMIN: "ADMIN";
|
|
};
|
|
export type UserRoleValue = (typeof USER_ROLE)[keyof typeof USER_ROLE];
|
|
export interface SalesforceAccountFieldMap {
|
|
internetEligibility: string;
|
|
customerNumber: string;
|
|
}
|
|
export interface SalesforceAccountRecord {
|
|
Id: string;
|
|
Name?: string | null;
|
|
WH_Account__c?: string | null;
|
|
[key: string]: unknown;
|
|
}
|
|
export type { User, UserAuth, UserRole, Address, AddressFormData, } from './schema';
|