v0.1
This commit is contained in:
8
src/client/models/DealDeleteRequest.ts
Normal file
8
src/client/models/DealDeleteRequest.ts
Normal file
@@ -0,0 +1,8 @@
|
||||
/* generated using openapi-typescript-codegen -- do no edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
export type DealDeleteRequest = {
|
||||
dealId: number;
|
||||
};
|
||||
|
||||
@@ -2,7 +2,7 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
export type DealSummaryReorderResponse = {
|
||||
export type DealDeleteResponse = {
|
||||
ok: boolean;
|
||||
message: string;
|
||||
};
|
||||
@@ -8,6 +8,7 @@ export type DealStatusHistorySchema = {
|
||||
changedAt: string;
|
||||
fromStatus: number;
|
||||
toStatus: number;
|
||||
nextStatusDeadline: string;
|
||||
nextStatusDeadline: (string | null);
|
||||
comment?: (string | null);
|
||||
};
|
||||
|
||||
|
||||
@@ -7,6 +7,7 @@ export type DealSummary = {
|
||||
name: string;
|
||||
clientName: string;
|
||||
changedAt: string;
|
||||
deadline: string;
|
||||
status: number;
|
||||
totalPrice: number;
|
||||
rank: number;
|
||||
|
||||
@@ -4,9 +4,9 @@
|
||||
/* eslint-disable */
|
||||
export type DealSummaryReorderRequest = {
|
||||
dealId: number;
|
||||
newStatus: number;
|
||||
rank: number;
|
||||
nextStatusDeadline: string;
|
||||
status: number;
|
||||
index: number;
|
||||
deadline: string;
|
||||
comment: string;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user