initial commit

This commit is contained in:
2026-06-09 14:07:37 +03:30
parent 30ac533800
commit 996a4fcda7
121 changed files with 20557 additions and 3 deletions

View File

@@ -0,0 +1,19 @@
import { ProviderEnvConfig } from '../../config/configuration';
export interface LegacyProviderApiResponse {
success?: boolean;
message?: string;
code?: string;
data?: Record<string, unknown>;
// CentInsur API format
IsSucceed?: boolean;
Result?: {
Result?: boolean;
ErrorMessage?: string | null;
ExternalServiceResponseDuration?: number;
[key: string]: unknown;
};
TrackingCode?: string;
}
export type ProviderConfigSlice = ProviderEnvConfig;