crap
This commit is contained in:
@@ -2,8 +2,10 @@
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
import type { ClientDetailsSchema } from './ClientDetailsSchema';
|
||||
export type ClientSchema = {
|
||||
id: number;
|
||||
name: string;
|
||||
details?: (ClientDetailsSchema | null);
|
||||
};
|
||||
|
||||
|
||||
12
src/client/models/DealSummary.ts
Normal file
12
src/client/models/DealSummary.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
/* generated using openapi-typescript-codegen -- do no edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
export type DealSummary = {
|
||||
id: number;
|
||||
name: string;
|
||||
client_name: string;
|
||||
changed_at: string;
|
||||
status: number;
|
||||
};
|
||||
|
||||
9
src/client/models/DealSummaryResponse.ts
Normal file
9
src/client/models/DealSummaryResponse.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
/* generated using openapi-typescript-codegen -- do no edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
import type { DealSummary } from './DealSummary';
|
||||
export type DealSummaryResponse = {
|
||||
summaries: Array<DealSummary>;
|
||||
};
|
||||
|
||||
9
src/client/models/ServiceCategorySchema.ts
Normal file
9
src/client/models/ServiceCategorySchema.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
/* generated using openapi-typescript-codegen -- do no edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
export type ServiceCategorySchema = {
|
||||
id: number;
|
||||
name: string;
|
||||
};
|
||||
|
||||
9
src/client/models/ServiceCreateCategoryRequest.ts
Normal file
9
src/client/models/ServiceCreateCategoryRequest.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
/* generated using openapi-typescript-codegen -- do no edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
import type { ServiceCategorySchema } from './ServiceCategorySchema';
|
||||
export type ServiceCreateCategoryRequest = {
|
||||
category: ServiceCategorySchema;
|
||||
};
|
||||
|
||||
9
src/client/models/ServiceCreateCategoryResponse.ts
Normal file
9
src/client/models/ServiceCreateCategoryResponse.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
/* generated using openapi-typescript-codegen -- do no edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
export type ServiceCreateCategoryResponse = {
|
||||
ok: boolean;
|
||||
message: string;
|
||||
};
|
||||
|
||||
9
src/client/models/ServiceCreateRequest.ts
Normal file
9
src/client/models/ServiceCreateRequest.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
/* generated using openapi-typescript-codegen -- do no edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
import type { ServiceSchema } from './ServiceSchema';
|
||||
export type ServiceCreateRequest = {
|
||||
service: ServiceSchema;
|
||||
};
|
||||
|
||||
9
src/client/models/ServiceCreateResponse.ts
Normal file
9
src/client/models/ServiceCreateResponse.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
/* generated using openapi-typescript-codegen -- do no edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
export type ServiceCreateResponse = {
|
||||
ok: boolean;
|
||||
message: string;
|
||||
};
|
||||
|
||||
9
src/client/models/ServiceGetAllCategoriesResponse.ts
Normal file
9
src/client/models/ServiceGetAllCategoriesResponse.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
/* generated using openapi-typescript-codegen -- do no edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
import type { ServiceCategorySchema } from './ServiceCategorySchema';
|
||||
export type ServiceGetAllCategoriesResponse = {
|
||||
categories: Array<ServiceCategorySchema>;
|
||||
};
|
||||
|
||||
9
src/client/models/ServiceGetAllResponse.ts
Normal file
9
src/client/models/ServiceGetAllResponse.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
/* generated using openapi-typescript-codegen -- do no edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
import type { ServiceSchema } from './ServiceSchema';
|
||||
export type ServiceGetAllResponse = {
|
||||
services: Array<ServiceSchema>;
|
||||
};
|
||||
|
||||
12
src/client/models/ServiceSchema.ts
Normal file
12
src/client/models/ServiceSchema.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
/* generated using openapi-typescript-codegen -- do no edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
import type { ServiceCategorySchema } from './ServiceCategorySchema';
|
||||
export type ServiceSchema = {
|
||||
id: number;
|
||||
name: string;
|
||||
category: ServiceCategorySchema;
|
||||
price: number;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user