TODO: update vault.service.ts. Use MNEMONIC workflow to create real private_key_shard and content_inner_encrypted
32 lines
775 B
TypeScript
32 lines
775 B
TypeScript
/**
|
|
* Services Index
|
|
*
|
|
* Central export for all API services.
|
|
* Import services from here for cleaner imports.
|
|
*
|
|
* Usage:
|
|
* import { authService, aiService, assetsService, adminService } from '../services';
|
|
*/
|
|
|
|
export { authService } from './auth.service';
|
|
export { aiService, type AIMessage, type AIRequest, type AIResponse } from './ai.service';
|
|
export {
|
|
assetsService,
|
|
type Asset,
|
|
type AssetCreate,
|
|
type AssetClaim,
|
|
type AssetClaimResponse,
|
|
type AssetAssign
|
|
} from './assets.service';
|
|
export {
|
|
adminService,
|
|
type DeclareGualeRequest,
|
|
type DeclareGualeResponse
|
|
} from './admin.service';
|
|
export {
|
|
createVaultPayload,
|
|
createAssetPayload,
|
|
type CreateVaultPayloadResult,
|
|
type CreateAssetPayloadResult,
|
|
} from './vault.service';
|