feat: work shifts by QR codes
This commit is contained in:
11
src/client/models/ActiveWorkShiftSchema.ts
Normal file
11
src/client/models/ActiveWorkShiftSchema.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
/* generated using openapi-typescript-codegen -- do not edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
import type { UserSchema } from './UserSchema';
|
||||
export type ActiveWorkShiftSchema = {
|
||||
id: number;
|
||||
startedAt: string;
|
||||
user: UserSchema;
|
||||
};
|
||||
|
||||
9
src/client/models/ActiveWorkShiftsResponse.ts
Normal file
9
src/client/models/ActiveWorkShiftsResponse.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
/* generated using openapi-typescript-codegen -- do not edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
import type { ActiveWorkShiftSchema } from './ActiveWorkShiftSchema';
|
||||
export type ActiveWorkShiftsResponse = {
|
||||
shifts: Array<ActiveWorkShiftSchema>;
|
||||
};
|
||||
|
||||
9
src/client/models/DeleteShiftResponse.ts
Normal file
9
src/client/models/DeleteShiftResponse.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
/* generated using openapi-typescript-codegen -- do not edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
export type DeleteShiftResponse = {
|
||||
ok: boolean;
|
||||
message: string;
|
||||
};
|
||||
|
||||
9
src/client/models/FinishShiftByIdResponse.ts
Normal file
9
src/client/models/FinishShiftByIdResponse.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
/* generated using openapi-typescript-codegen -- do not edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
export type FinishShiftByIdResponse = {
|
||||
ok: boolean;
|
||||
message: string;
|
||||
};
|
||||
|
||||
9
src/client/models/FinishShiftResponse.ts
Normal file
9
src/client/models/FinishShiftResponse.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
/* generated using openapi-typescript-codegen -- do not edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
export type FinishShiftResponse = {
|
||||
ok: boolean;
|
||||
message: string;
|
||||
};
|
||||
|
||||
9
src/client/models/StartShiftResponse.ts
Normal file
9
src/client/models/StartShiftResponse.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
/* generated using openapi-typescript-codegen -- do not edit */
|
||||
/* istanbul ignore file */
|
||||
/* tslint:disable */
|
||||
/* eslint-disable */
|
||||
export type StartShiftResponse = {
|
||||
ok: boolean;
|
||||
message: string;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user