summaryrefslogtreecommitdiff
path: root/src-migrate/types
diff options
context:
space:
mode:
authorit-fixcomart <it@fixcomart.co.id>2024-10-17 17:06:58 +0700
committerit-fixcomart <it@fixcomart.co.id>2024-10-17 17:06:58 +0700
commitead46a6d760850530946926b390a8954ca64e1c2 (patch)
tree6d873de6a17310ab82e7dcc5ac76a70993a38b7e /src-migrate/types
parent0908fc0075f91844ffed4002165c638d02eb91be (diff)
<iman> update pengajuan tempo
Diffstat (limited to 'src-migrate/types')
-rw-r--r--src-migrate/types/tempo.ts20
1 files changed, 19 insertions, 1 deletions
diff --git a/src-migrate/types/tempo.ts b/src-migrate/types/tempo.ts
index f8a3c5b8..a4bd3d0a 100644
--- a/src-migrate/types/tempo.ts
+++ b/src-migrate/types/tempo.ts
@@ -1,4 +1,4 @@
-import { TempoSchema } from '~/validations/tempo';
+import { TempoSchema, TempoSchemaKontakPerson } from '~/validations/tempo';
import { OdooApiRes } from './odoo';
import { z } from 'zod';
@@ -18,9 +18,27 @@ export type tempoProps = {
bersedia: string;
};
+export type tempoPropsKontakPerson = {
+ direkturName: string;
+ direkturMobile: string;
+ direkturEmail: string;
+ industry_id: string;
+ street: string;
+ state: string;
+ city: string;
+ zip: string;
+ bankName: string;
+ accountName: string;
+ accountNumber: string;
+ estimasi: string;
+ tempoDuration: string;
+ bersedia: string;
+};
+
export type TempoApiProps = OdooApiRes<TempoProps>;
export type TempoProps = z.infer<typeof TempoSchema>;
+export type TempoPropsKontakPerson = z.infer<typeof TempoSchemaKontakPerson>;
export type TempoResApiProps = {
Tempo: boolean;