othr
This commit is contained in:
@@ -5,7 +5,7 @@
|
||||
export type ClientDetailsSchema = {
|
||||
address?: (string | null);
|
||||
phoneNumber?: (string | null);
|
||||
inn?: (number | null);
|
||||
inn?: (string | null);
|
||||
email?: (string | null);
|
||||
};
|
||||
|
||||
|
||||
@@ -6,5 +6,6 @@ export type DealGeneralInfoSchema = {
|
||||
name: string;
|
||||
isDeleted: boolean;
|
||||
isCompleted: boolean;
|
||||
comment: string;
|
||||
};
|
||||
|
||||
|
||||
@@ -18,5 +18,6 @@ export type DealSchema = {
|
||||
isDeleted: boolean;
|
||||
isCompleted: boolean;
|
||||
client: ClientSchema;
|
||||
comment: string;
|
||||
};
|
||||
|
||||
|
||||
@@ -9,5 +9,6 @@ export type DealSummary = {
|
||||
changedAt: string;
|
||||
status: number;
|
||||
totalPrice: number;
|
||||
rank: number;
|
||||
};
|
||||
|
||||
|
||||
12
src/client/models/DealSummaryReorderRequest.ts
Normal file
12
src/client/models/DealSummaryReorderRequest.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
/* generated using openapi-typescript-codegen -- do no edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
export type DealSummaryReorderRequest = {
|
||||
dealId: number;
|
||||
newStatus: number;
|
||||
rank: number;
|
||||
nextStatusDeadline: string;
|
||||
comment: string;
|
||||
};
|
||||
|
||||
9
src/client/models/DealSummaryReorderResponse.ts
Normal file
9
src/client/models/DealSummaryReorderResponse.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
/* generated using openapi-typescript-codegen -- do no edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
export type DealSummaryReorderResponse = {
|
||||
ok: boolean;
|
||||
message: string;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user