feat: services kit and copy
This commit is contained in:
10
src/client/models/CreateServiceKitSchema.ts
Normal file
10
src/client/models/CreateServiceKitSchema.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
/* generated using openapi-typescript-codegen -- do not edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
export type CreateServiceKitSchema = {
|
||||
name: string;
|
||||
serviceType: number;
|
||||
servicesIds: Array<number>;
|
||||
};
|
||||
|
||||
9
src/client/models/CreateServicesKitRequest.ts
Normal file
9
src/client/models/CreateServicesKitRequest.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
/* generated using openapi-typescript-codegen -- do not edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
import type { CreateServiceKitSchema } from './CreateServiceKitSchema';
|
||||
export type CreateServicesKitRequest = {
|
||||
data: CreateServiceKitSchema;
|
||||
};
|
||||
|
||||
9
src/client/models/CreateServicesKitResponse.ts
Normal file
9
src/client/models/CreateServicesKitResponse.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
/* generated using openapi-typescript-codegen -- do not edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
export type CreateServicesKitResponse = {
|
||||
ok: boolean;
|
||||
message: string;
|
||||
};
|
||||
|
||||
9
src/client/models/DealAddKitRequest.ts
Normal file
9
src/client/models/DealAddKitRequest.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
/* generated using openapi-typescript-codegen -- do not edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
export type DealAddKitRequest = {
|
||||
dealId: number;
|
||||
kitId: number;
|
||||
};
|
||||
|
||||
9
src/client/models/DealAddKitResponse.ts
Normal file
9
src/client/models/DealAddKitResponse.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
/* generated using openapi-typescript-codegen -- do not edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
export type DealAddKitResponse = {
|
||||
ok: boolean;
|
||||
message: string;
|
||||
};
|
||||
|
||||
10
src/client/models/DealProductAddKitRequest.ts
Normal file
10
src/client/models/DealProductAddKitRequest.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
/* generated using openapi-typescript-codegen -- do not edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
export type DealProductAddKitRequest = {
|
||||
dealId: number;
|
||||
productId: number;
|
||||
kitId: number;
|
||||
};
|
||||
|
||||
9
src/client/models/DealProductAddKitResponse.ts
Normal file
9
src/client/models/DealProductAddKitResponse.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
/* generated using openapi-typescript-codegen -- do not edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
export type DealProductAddKitResponse = {
|
||||
ok: boolean;
|
||||
message: string;
|
||||
};
|
||||
|
||||
10
src/client/models/DealServicesCopyRequest.ts
Normal file
10
src/client/models/DealServicesCopyRequest.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
/* generated using openapi-typescript-codegen -- do not edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
export type DealServicesCopyRequest = {
|
||||
dealId: number;
|
||||
sourceProductId: number;
|
||||
destinationProductIds: Array<number>;
|
||||
};
|
||||
|
||||
9
src/client/models/DealServicesCopyResponse.ts
Normal file
9
src/client/models/DealServicesCopyResponse.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
/* generated using openapi-typescript-codegen -- do not edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
export type DealServicesCopyResponse = {
|
||||
ok: boolean;
|
||||
message: string;
|
||||
};
|
||||
|
||||
9
src/client/models/GetAllServicesKitsResponse.ts
Normal file
9
src/client/models/GetAllServicesKitsResponse.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
/* generated using openapi-typescript-codegen -- do not edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
import type { GetServiceKitSchema } from './GetServiceKitSchema';
|
||||
export type GetAllServicesKitsResponse = {
|
||||
servicesKits: Array<GetServiceKitSchema>;
|
||||
};
|
||||
|
||||
12
src/client/models/GetServiceKitSchema.ts
Normal file
12
src/client/models/GetServiceKitSchema.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
/* generated using openapi-typescript-codegen -- do not edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
import type { ServiceSchema } from './ServiceSchema';
|
||||
export type GetServiceKitSchema = {
|
||||
name: string;
|
||||
serviceType: number;
|
||||
id: number;
|
||||
services: Array<ServiceSchema>;
|
||||
};
|
||||
|
||||
11
src/client/models/UpdateServiceKitSchema.ts
Normal file
11
src/client/models/UpdateServiceKitSchema.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
/* generated using openapi-typescript-codegen -- do not edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
export type UpdateServiceKitSchema = {
|
||||
name: string;
|
||||
serviceType: number;
|
||||
id: number;
|
||||
servicesIds: Array<number>;
|
||||
};
|
||||
|
||||
9
src/client/models/UpdateServicesKitRequest.ts
Normal file
9
src/client/models/UpdateServicesKitRequest.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
/* generated using openapi-typescript-codegen -- do not edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
import type { UpdateServiceKitSchema } from './UpdateServiceKitSchema';
|
||||
export type UpdateServicesKitRequest = {
|
||||
data: UpdateServiceKitSchema;
|
||||
};
|
||||
|
||||
9
src/client/models/UpdateServicesKitResponse.ts
Normal file
9
src/client/models/UpdateServicesKitResponse.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
/* generated using openapi-typescript-codegen -- do not edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
export type UpdateServicesKitResponse = {
|
||||
ok: boolean;
|
||||
message: string;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user