2025-11-26 16:36:06 +09:00
|
|
|
/**
|
|
|
|
|
* Support Domain
|
|
|
|
|
*
|
|
|
|
|
* Exports all support-related contracts, schemas, and provider mappers.
|
|
|
|
|
*
|
|
|
|
|
* Types are derived from Zod schemas (Schema-First Approach)
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
// Business types and constants
|
2025-11-18 14:06:27 +09:00
|
|
|
export {
|
|
|
|
|
SUPPORT_CASE_STATUS,
|
|
|
|
|
SUPPORT_CASE_PRIORITY,
|
|
|
|
|
SUPPORT_CASE_CATEGORY,
|
2025-11-26 16:36:06 +09:00
|
|
|
PORTAL_CASE_ORIGIN,
|
2025-12-10 15:22:10 +09:00
|
|
|
} from "./contract.js";
|
2025-11-18 14:06:27 +09:00
|
|
|
|
2025-11-26 16:36:06 +09:00
|
|
|
// Schemas (includes derived types)
|
2025-12-10 15:22:10 +09:00
|
|
|
export * from "./schema.js";
|
2025-11-26 16:36:06 +09:00
|
|
|
|
|
|
|
|
// Provider adapters
|
2025-12-10 15:22:10 +09:00
|
|
|
export * as Providers from "./providers/index.js";
|
2025-11-26 16:36:06 +09:00
|
|
|
|
|
|
|
|
// Re-export provider types for convenience
|
2025-12-10 15:22:10 +09:00
|
|
|
export * from "./providers/salesforce/raw.types.js";
|
|
|
|
|
export * from "./providers/salesforce/mapper.js";
|