Compare commits
122 Commits
877d373ee8
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 27f27f4c38 | |||
| 6e19d98f81 | |||
| 7a052f7422 | |||
| b08f921c1c | |||
| d0da5155a1 | |||
| bdbdd10231 | |||
| 9dde9041b1 | |||
| 01260d0768 | |||
| 15a085721e | |||
| 655ae077ca | |||
| 50590fa41c | |||
| c866231730 | |||
| c3d135eba9 | |||
| 82e2ef6db2 | |||
| 4787151b69 | |||
| eea03bd70a | |||
| f7d514df4b | |||
| b09479302b | |||
| 74665e123b | |||
| 4fee2da42c | |||
| cc39d13b1c | |||
| 2a7a50886c | |||
| 3b082d7836 | |||
| 37136b83bc | |||
| d03ba66ebb | |||
| e4f8e90ae6 | |||
| d347c09199 | |||
| f28df5a074 | |||
| 9ce112fd63 | |||
| 69c5f1419f | |||
| 5487aab274 | |||
| 0a479fae1c | |||
| ff004777ff | |||
| 4b2db371d9 | |||
| bf6f373e21 | |||
| 1199685fcd | |||
| 3b4fed80e8 | |||
| 281b655881 | |||
| 0ce8c42527 | |||
| 5b5e2e4b5e | |||
| ddbe1d953b | |||
| 2f4f3c3125 | |||
| a7ed490ec3 | |||
| 23f0cdc081 | |||
| f6c55012bd | |||
| ad09103e14 | |||
| d134abd01a | |||
| d828e0c999 | |||
| 3bbdacdd68 | |||
| 11eebdd3ad | |||
| cb21ba7b18 | |||
| 3e66d6300b | |||
| ca80920af6 | |||
| e32ec1ff23 | |||
| 86115f0263 | |||
| 1247a80eb6 | |||
| 7dcb646b82 | |||
| 98266a8a8f | |||
| d7c3f41b7b | |||
| f8ae7c62a2 | |||
| ea80e92c18 | |||
| 351dc3e113 | |||
| f8feea07c4 | |||
| 6cc61dbf08 | |||
| 56135ae10c | |||
| be666c5158 | |||
| 5d19d254da | |||
| 9ef057f889 | |||
| e151e4bc5e | |||
| 17e6c5f23a | |||
| d37dce7980 | |||
| 20a6c3cfcc | |||
| 8083bdf3d0 | |||
| dc9455966e | |||
| cc3e72bf94 | |||
| 648fffeb46 | |||
| 580552bd47 | |||
| 58d397ed0b | |||
| 0a4e20e888 | |||
| 52619f119f | |||
| 5005565851 | |||
| 4500422f82 | |||
| f62d2662d6 | |||
| 71332e4ebd | |||
| c5bf21efda | |||
| 0948a1da4a | |||
| 9dab596e87 | |||
| 58ab96bdb1 | |||
| a4279edda9 | |||
| 0dce7e4af2 | |||
| 8f583122a8 | |||
| 1b9880a65a | |||
| c45d2ac20a | |||
| fec6b13972 | |||
| 30de0d8e8a | |||
| 71cab887d2 | |||
| d3c4ed3fc6 | |||
| db21801cc1 | |||
| b3919c785b | |||
| 9167fd0586 | |||
| 31a959236c | |||
| 43bba73f06 | |||
| 20d8b7298f | |||
| 38597b8f16 | |||
| d5598a10b8 | |||
| 2ee0ef3a52 | |||
| de4885274b | |||
| 894e135be7 | |||
| e92fcb5eb8 | |||
| 2cb62a4e0b | |||
| 1795cacc5b | |||
| 900427275f | |||
| f41083d2a8 | |||
| 886eef4c0d | |||
| 431bc35d8b | |||
| 564895c26f | |||
| e3146832a5 | |||
| 2007ecd2f2 | |||
| de55f9fa1c | |||
| 20616d9e81 | |||
| dc882ccd9c | |||
| 0758d14a9a |
1
.dockerignore
Normal file
1
.dockerignore
Normal file
@@ -0,0 +1 @@
|
|||||||
|
node_modules
|
||||||
1
.gitignore
vendored
1
.gitignore
vendored
@@ -11,6 +11,7 @@ node_modules
|
|||||||
dist
|
dist
|
||||||
dist-ssr
|
dist-ssr
|
||||||
*.local
|
*.local
|
||||||
|
*.cjs
|
||||||
|
|
||||||
# Editor directories and files
|
# Editor directories and files
|
||||||
.vscode/*
|
.vscode/*
|
||||||
|
|||||||
26
Dockerfile
Normal file
26
Dockerfile
Normal file
@@ -0,0 +1,26 @@
|
|||||||
|
FROM oven/bun:latest AS base
|
||||||
|
WORKDIR /usr/src/app
|
||||||
|
|
||||||
|
FROM base AS install
|
||||||
|
RUN mkdir -p /temp/dev
|
||||||
|
COPY package.json bun.lock /temp/dev/
|
||||||
|
RUN cd /temp/dev && bun install --frozen-lockfile
|
||||||
|
|
||||||
|
# install with --production (exclude devDependencies)
|
||||||
|
RUN mkdir -p /temp/prod
|
||||||
|
COPY package.json bun.lock /temp/prod/
|
||||||
|
RUN cd /temp/prod && bun install --frozen-lockfile --production
|
||||||
|
|
||||||
|
# copy node_modules from temp directory
|
||||||
|
# then copy all (non-ignored) project files into the image
|
||||||
|
FROM base AS prerelease
|
||||||
|
COPY --from=install /temp/dev/node_modules node_modules
|
||||||
|
COPY . .
|
||||||
|
|
||||||
|
RUN bun run build
|
||||||
|
|
||||||
|
FROM nginx:alpine
|
||||||
|
COPY --from=prerelease /usr/src/app/dist /usr/share/nginx/html
|
||||||
|
COPY nginx.conf /etc/nginx/conf.d/default.conf
|
||||||
|
EXPOSE 80
|
||||||
|
CMD ["nginx", "-g", "daemon off;"]
|
||||||
2
build-docker.sh
Executable file
2
build-docker.sh
Executable file
@@ -0,0 +1,2 @@
|
|||||||
|
docker build -t git.denco.store/fakz9/fulfillment-frontend:latest .
|
||||||
|
docker push git.denco.store/fakz9/fulfillment-frontend:latest
|
||||||
12
nginx.conf
Normal file
12
nginx.conf
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
server {
|
||||||
|
listen 80;
|
||||||
|
|
||||||
|
location / {
|
||||||
|
root /usr/share/nginx/html;
|
||||||
|
index index.html index.htm;
|
||||||
|
try_files $uri $uri/ /index.html;
|
||||||
|
sendfile on;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
19
package.json
19
package.json
@@ -8,7 +8,8 @@
|
|||||||
"build": "tsc && vite build",
|
"build": "tsc && vite build",
|
||||||
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
|
||||||
"preview": "vite preview",
|
"preview": "vite preview",
|
||||||
"generate-client": "openapi --input http://127.0.0.1:8000/openapi.json --output ./src/client --client axios --useOptions --useUnionTypes"
|
"generate-client": "openapi --input http://127.0.0.1:8000/openapi.json --output ./src/client --client axios --useOptions --useUnionTypes",
|
||||||
|
"generate-modules": "sudo npx tsc ./src/modules/modulesFileGen/modulesFileGen.ts && mv -f ./src/modules/modulesFileGen/modulesFileGen.js ./src/modules/modulesFileGen/modulesFileGen.cjs && sudo node ./src/modules/modulesFileGen/modulesFileGen.cjs"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@fortawesome/fontawesome-svg-core": "^6.6.0",
|
"@fortawesome/fontawesome-svg-core": "^6.6.0",
|
||||||
@@ -21,11 +22,11 @@
|
|||||||
"@mantine/dates": "^7.13.5",
|
"@mantine/dates": "^7.13.5",
|
||||||
"@mantine/dropzone": "^7.11.2",
|
"@mantine/dropzone": "^7.11.2",
|
||||||
"@mantine/form": "^7.11.2",
|
"@mantine/form": "^7.11.2",
|
||||||
"@mantine/hooks": "^7.11.2",
|
"@mantine/hooks": "^7.17.4",
|
||||||
"@mantine/modals": "^7.11.2",
|
"@mantine/modals": "^7.11.2",
|
||||||
"@mantine/notifications": "^7.11.2",
|
"@mantine/notifications": "^7.11.2",
|
||||||
"@reduxjs/toolkit": "^2.2.6",
|
"@reduxjs/toolkit": "^2.2.6",
|
||||||
"@tabler/icons-react": "^3.11.0",
|
"@tabler/icons-react": "3.11.0",
|
||||||
"@tanstack/react-query": "^5.51.9",
|
"@tanstack/react-query": "^5.51.9",
|
||||||
"@tanstack/react-router": "^1.45.6",
|
"@tanstack/react-router": "^1.45.6",
|
||||||
"@tanstack/router-devtools": "^1.45.6",
|
"@tanstack/router-devtools": "^1.45.6",
|
||||||
@@ -39,9 +40,11 @@
|
|||||||
"file-saver": "^2.0.5",
|
"file-saver": "^2.0.5",
|
||||||
"framer-motion": "^11.3.8",
|
"framer-motion": "^11.3.8",
|
||||||
"globals": "^15.8.0",
|
"globals": "^15.8.0",
|
||||||
|
"handlebars": "^4.7.8",
|
||||||
"jwt-decode": "^4.0.0",
|
"jwt-decode": "^4.0.0",
|
||||||
"lodash": "^4.17.21",
|
"lodash": "^4.17.21",
|
||||||
"mantine-contextmenu": "^7.12.2",
|
"mantine-contextmenu": "^7.12.2",
|
||||||
|
"mantine-datatable": "^7.15.1",
|
||||||
"mantine-form-zod-resolver": "^1.1.0",
|
"mantine-form-zod-resolver": "^1.1.0",
|
||||||
"mantine-react-table": "^2.0.0-beta.5",
|
"mantine-react-table": "^2.0.0-beta.5",
|
||||||
"phone": "^3.1.49",
|
"phone": "^3.1.49",
|
||||||
@@ -51,32 +54,34 @@
|
|||||||
"react-imask": "^7.6.1",
|
"react-imask": "^7.6.1",
|
||||||
"react-redux": "^9.1.2",
|
"react-redux": "^9.1.2",
|
||||||
"react-to-print": "^2.15.1",
|
"react-to-print": "^2.15.1",
|
||||||
|
"react-virtuoso": "^4.12.6",
|
||||||
"reactflow": "^11.11.4",
|
"reactflow": "^11.11.4",
|
||||||
"recharts": "^2.13.3",
|
"recharts": "^2.13.3",
|
||||||
"zod": "^3.23.8"
|
"zod": "^3.23.8"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@eslint/js": "^9.7.0",
|
"@eslint/js": "^9.14.0",
|
||||||
"@types/dot-object": "^2.1.6",
|
"@types/dot-object": "^2.1.6",
|
||||||
"@types/eslint__js": "^8.42.3",
|
"@types/eslint__js": "^8.42.3",
|
||||||
"@types/file-saver": "^2.0.7",
|
"@types/file-saver": "^2.0.7",
|
||||||
"@types/lodash": "^4.17.7",
|
"@types/lodash": "^4.17.7",
|
||||||
|
"@types/node": "^22.13.9",
|
||||||
"@types/react": "^18.3.3",
|
"@types/react": "^18.3.3",
|
||||||
"@types/react-dom": "^18.3.0",
|
"@types/react-dom": "^18.3.0",
|
||||||
"@typescript-eslint/eslint-plugin": "^7.16.1",
|
"@typescript-eslint/eslint-plugin": "^7.16.1",
|
||||||
"@typescript-eslint/parser": "^7.16.1",
|
"@typescript-eslint/parser": "^7.16.1",
|
||||||
"@vitejs/plugin-react-swc": "^3.7.0",
|
"@vitejs/plugin-react-swc": "^3.7.0",
|
||||||
"eslint": "^9.7.0",
|
"eslint": "^9.14.0",
|
||||||
"eslint-plugin-react-hooks": "^4.6.2",
|
"eslint-plugin-react-hooks": "^4.6.2",
|
||||||
"eslint-plugin-react-refresh": "^0.4.8",
|
"eslint-plugin-react-refresh": "^0.4.8",
|
||||||
"openapi-typescript-codegen": "^0.29.0",
|
"openapi-typescript-codegen": "^0.29.0",
|
||||||
"postcss": "^8.4.39",
|
"postcss": "^8.4.39",
|
||||||
"postcss-preset-mantine": "^1.16.0",
|
"postcss-preset-mantine": "^1.16.0",
|
||||||
"postcss-simple-vars": "^7.0.1",
|
"postcss-simple-vars": "^7.0.1",
|
||||||
"sass": "^1.77.8",
|
"sass": "^1.81.1",
|
||||||
"typescript": "^5.5.3",
|
"typescript": "^5.5.3",
|
||||||
"typescript-eslint": "^7.16.1",
|
"typescript-eslint": "^7.16.1",
|
||||||
"vite": "^5.3.4",
|
"vite": "^6.0.1",
|
||||||
"yarn-upgrade-all": "^0.7.2"
|
"yarn-upgrade-all": "^0.7.2"
|
||||||
},
|
},
|
||||||
"packageManager": "yarn@4.1.0"
|
"packageManager": "yarn@4.1.0"
|
||||||
|
|||||||
@@ -7,8 +7,10 @@ export { CancelablePromise, CancelError } from './core/CancelablePromise';
|
|||||||
export { OpenAPI } from './core/OpenAPI';
|
export { OpenAPI } from './core/OpenAPI';
|
||||||
export type { OpenAPIConfig } from './core/OpenAPI';
|
export type { OpenAPIConfig } from './core/OpenAPI';
|
||||||
|
|
||||||
export type { ActiveWorkShiftSchema } from './models/ActiveWorkShiftSchema';
|
export type { AddUserRequest } from './models/AddUserRequest';
|
||||||
export type { ActiveWorkShiftsResponse } from './models/ActiveWorkShiftsResponse';
|
export type { AddUserResponse } from './models/AddUserResponse';
|
||||||
|
export type { AttributeSchema } from './models/AttributeSchema';
|
||||||
|
export type { AttributeTypeSchema } from './models/AttributeTypeSchema';
|
||||||
export type { AuthLoginRequest } from './models/AuthLoginRequest';
|
export type { AuthLoginRequest } from './models/AuthLoginRequest';
|
||||||
export type { AuthLoginResponse } from './models/AuthLoginResponse';
|
export type { AuthLoginResponse } from './models/AuthLoginResponse';
|
||||||
export type { BarcodeAttributeSchema } from './models/BarcodeAttributeSchema';
|
export type { BarcodeAttributeSchema } from './models/BarcodeAttributeSchema';
|
||||||
@@ -23,151 +25,266 @@ export type { BarcodeTemplateSchema } from './models/BarcodeTemplateSchema';
|
|||||||
export type { BarcodeTemplateSizeSchema } from './models/BarcodeTemplateSizeSchema';
|
export type { BarcodeTemplateSizeSchema } from './models/BarcodeTemplateSizeSchema';
|
||||||
export type { BarcodeTemplateUpdateRequest } from './models/BarcodeTemplateUpdateRequest';
|
export type { BarcodeTemplateUpdateRequest } from './models/BarcodeTemplateUpdateRequest';
|
||||||
export type { BarcodeTemplateUpdateResponse } from './models/BarcodeTemplateUpdateResponse';
|
export type { BarcodeTemplateUpdateResponse } from './models/BarcodeTemplateUpdateResponse';
|
||||||
|
export type { BaseAttributeSchema } from './models/BaseAttributeSchema';
|
||||||
|
export type { BaseBoardSchema } from './models/BaseBoardSchema';
|
||||||
|
export type { BaseCardTagSchema } from './models/BaseCardTagSchema';
|
||||||
export type { BaseEnumListSchema } from './models/BaseEnumListSchema';
|
export type { BaseEnumListSchema } from './models/BaseEnumListSchema';
|
||||||
export type { BaseEnumSchema } from './models/BaseEnumSchema';
|
export type { BaseEnumSchema } from './models/BaseEnumSchema';
|
||||||
export type { BaseMarketplaceSchema } from './models/BaseMarketplaceSchema';
|
export type { BaseMarketplaceSchema } from './models/BaseMarketplaceSchema';
|
||||||
|
export type { BaseMessageSchema } from './models/BaseMessageSchema';
|
||||||
|
export type { BasePlaceSchema } from './models/BasePlaceSchema';
|
||||||
|
export type { BasePlaceTypeSchema } from './models/BasePlaceTypeSchema';
|
||||||
|
export type { BasePlaceTypeWithCountSchema } from './models/BasePlaceTypeWithCountSchema';
|
||||||
|
export type { BaseProjectSchema } from './models/BaseProjectSchema';
|
||||||
export type { BaseShippingWarehouseSchema } from './models/BaseShippingWarehouseSchema';
|
export type { BaseShippingWarehouseSchema } from './models/BaseShippingWarehouseSchema';
|
||||||
|
export type { BaseStatusSchema } from './models/BaseStatusSchema';
|
||||||
|
export type { BaseTransactionTagSchema } from './models/BaseTransactionTagSchema';
|
||||||
export type { BillPaymentStatus } from './models/BillPaymentStatus';
|
export type { BillPaymentStatus } from './models/BillPaymentStatus';
|
||||||
export type { BillStatusUpdateRequest } from './models/BillStatusUpdateRequest';
|
export type { BillStatusUpdateRequest } from './models/BillStatusUpdateRequest';
|
||||||
|
export type { BoardSchema } from './models/BoardSchema';
|
||||||
|
export type { Body_parse_deals_excel } from './models/Body_parse_deals_excel';
|
||||||
|
export type { Body_send_messages_with_files } from './models/Body_send_messages_with_files';
|
||||||
|
export type { Body_upload_passport_image } from './models/Body_upload_passport_image';
|
||||||
export type { Body_upload_product_barcode_image } from './models/Body_upload_product_barcode_image';
|
export type { Body_upload_product_barcode_image } from './models/Body_upload_product_barcode_image';
|
||||||
export type { Body_upload_product_image } from './models/Body_upload_product_image';
|
export type { Body_upload_product_image } from './models/Body_upload_product_image';
|
||||||
export type { CancelDealBillRequest } from './models/CancelDealBillRequest';
|
export type { BoxSchema } from './models/BoxSchema';
|
||||||
export type { CancelDealBillResponse } from './models/CancelDealBillResponse';
|
export type { CancelCardBillRequest } from './models/CancelCardBillRequest';
|
||||||
|
export type { CancelCardBillResponse } from './models/CancelCardBillResponse';
|
||||||
|
export type { CardAddKitRequest } from './models/CardAddKitRequest';
|
||||||
|
export type { CardAddKitResponse } from './models/CardAddKitResponse';
|
||||||
|
export type { CardAddProductRequest } from './models/CardAddProductRequest';
|
||||||
|
export type { CardAddProductResponse } from './models/CardAddProductResponse';
|
||||||
|
export type { CardAddServiceRequest } from './models/CardAddServiceRequest';
|
||||||
|
export type { CardAddServiceResponse } from './models/CardAddServiceResponse';
|
||||||
|
export type { CardAddServicesRequest } from './models/CardAddServicesRequest';
|
||||||
|
export type { CardAddServicesResponse } from './models/CardAddServicesResponse';
|
||||||
|
export type { CardAddToGroupRequest } from './models/CardAddToGroupRequest';
|
||||||
|
export type { CardAddToGroupResponse } from './models/CardAddToGroupResponse';
|
||||||
|
export type { CardAttributeSchema } from './models/CardAttributeSchema';
|
||||||
|
export type { CardBillRequestSchema } from './models/CardBillRequestSchema';
|
||||||
|
export type { CardChangeStatusRequest } from './models/CardChangeStatusRequest';
|
||||||
|
export type { CardChangeStatusResponse } from './models/CardChangeStatusResponse';
|
||||||
|
export type { CardCompleteRequest } from './models/CardCompleteRequest';
|
||||||
|
export type { CardCompleteResponse } from './models/CardCompleteResponse';
|
||||||
|
export type { CardCreateGroupResponse } from './models/CardCreateGroupResponse';
|
||||||
|
export type { CardCreateGuestUrlRequest } from './models/CardCreateGuestUrlRequest';
|
||||||
|
export type { CardCreateGuestUrlResponse } from './models/CardCreateGuestUrlResponse';
|
||||||
|
export type { CardDeleteProductRequest } from './models/CardDeleteProductRequest';
|
||||||
|
export type { CardDeleteProductResponse } from './models/CardDeleteProductResponse';
|
||||||
|
export type { CardDeleteProductsRequest } from './models/CardDeleteProductsRequest';
|
||||||
|
export type { CardDeleteProductsResponse } from './models/CardDeleteProductsResponse';
|
||||||
|
export type { CardDeleteRequest } from './models/CardDeleteRequest';
|
||||||
|
export type { CardDeleteResponse } from './models/CardDeleteResponse';
|
||||||
|
export type { CardDeleteServiceRequest } from './models/CardDeleteServiceRequest';
|
||||||
|
export type { CardDeleteServiceResponse } from './models/CardDeleteServiceResponse';
|
||||||
|
export type { CardDeleteServicesRequest } from './models/CardDeleteServicesRequest';
|
||||||
|
export type { CardDeleteServicesResponse } from './models/CardDeleteServicesResponse';
|
||||||
|
export type { CardEmployeesSchema } from './models/CardEmployeesSchema';
|
||||||
|
export type { CardGeneralInfoSchema } from './models/CardGeneralInfoSchema';
|
||||||
|
export type { CardGetAllResponse } from './models/CardGetAllResponse';
|
||||||
|
export type { CardGroupChangeStatusRequest } from './models/CardGroupChangeStatusRequest';
|
||||||
|
export type { CardGroupChangeStatusResponse } from './models/CardGroupChangeStatusResponse';
|
||||||
|
export type { CardGroupSchema } from './models/CardGroupSchema';
|
||||||
|
export type { CardGroupUpdateRequest } from './models/CardGroupUpdateRequest';
|
||||||
|
export type { CardGroupUpdateResponse } from './models/CardGroupUpdateResponse';
|
||||||
|
export type { CardPrefillRequest } from './models/CardPrefillRequest';
|
||||||
|
export type { CardPrefillResponse } from './models/CardPrefillResponse';
|
||||||
|
export type { CardProductAddKitRequest } from './models/CardProductAddKitRequest';
|
||||||
|
export type { CardProductAddKitResponse } from './models/CardProductAddKitResponse';
|
||||||
|
export type { CardProductSchema } from './models/CardProductSchema';
|
||||||
|
export type { CardProductServiceSchema } from './models/CardProductServiceSchema';
|
||||||
|
export type { CardQuickCreateRequest } from './models/CardQuickCreateRequest';
|
||||||
|
export type { CardQuickCreateResponse } from './models/CardQuickCreateResponse';
|
||||||
|
export type { CardRecalculatePriceRequest } from './models/CardRecalculatePriceRequest';
|
||||||
|
export type { CardRecalculatePriceResponse } from './models/CardRecalculatePriceResponse';
|
||||||
|
export type { CardRemoveFromGroupRequest } from './models/CardRemoveFromGroupRequest';
|
||||||
|
export type { CardRemoveFromGroupResponse } from './models/CardRemoveFromGroupResponse';
|
||||||
|
export type { CardSchema } from './models/CardSchema';
|
||||||
|
export type { CardServiceSchema } from './models/CardServiceSchema';
|
||||||
|
export type { CardServicesCopyRequest } from './models/CardServicesCopyRequest';
|
||||||
|
export type { CardServicesCopyResponse } from './models/CardServicesCopyResponse';
|
||||||
|
export type { CardStatusHistorySchema } from './models/CardStatusHistorySchema';
|
||||||
|
export type { CardSummary } from './models/CardSummary';
|
||||||
|
export type { CardSummaryReorderRequest } from './models/CardSummaryReorderRequest';
|
||||||
|
export type { CardSummaryResponse } from './models/CardSummaryResponse';
|
||||||
|
export type { CardTagColorSchema } from './models/CardTagColorSchema';
|
||||||
|
export type { CardTagSchema } from './models/CardTagSchema';
|
||||||
|
export type { CardUpdateGeneralInfoRequest } from './models/CardUpdateGeneralInfoRequest';
|
||||||
|
export type { CardUpdateGeneralInfoResponse } from './models/CardUpdateGeneralInfoResponse';
|
||||||
|
export type { CardUpdateProductQuantityRequest } from './models/CardUpdateProductQuantityRequest';
|
||||||
|
export type { CardUpdateProductQuantityResponse } from './models/CardUpdateProductQuantityResponse';
|
||||||
|
export type { CardUpdateProductRequest } from './models/CardUpdateProductRequest';
|
||||||
|
export type { CardUpdateProductResponse } from './models/CardUpdateProductResponse';
|
||||||
|
export type { CardUpdateServiceQuantityRequest } from './models/CardUpdateServiceQuantityRequest';
|
||||||
|
export type { CardUpdateServiceQuantityResponse } from './models/CardUpdateServiceQuantityResponse';
|
||||||
|
export type { CardUpdateServiceRequest } from './models/CardUpdateServiceRequest';
|
||||||
|
export type { CardUpdateServiceResponse } from './models/CardUpdateServiceResponse';
|
||||||
|
export type { ChatSchema } from './models/ChatSchema';
|
||||||
|
export type { ChatsListItemSchema } from './models/ChatsListItemSchema';
|
||||||
|
export type { CityBreakdownFromExcelSchema } from './models/CityBreakdownFromExcelSchema';
|
||||||
export type { ClientCreateRequest } from './models/ClientCreateRequest';
|
export type { ClientCreateRequest } from './models/ClientCreateRequest';
|
||||||
export type { ClientCreateResponse } from './models/ClientCreateResponse';
|
export type { ClientCreateResponse } from './models/ClientCreateResponse';
|
||||||
export type { ClientDeleteRequest } from './models/ClientDeleteRequest';
|
export type { ClientDeleteRequest } from './models/ClientDeleteRequest';
|
||||||
export type { ClientDeleteResponse } from './models/ClientDeleteResponse';
|
export type { ClientDeleteResponse } from './models/ClientDeleteResponse';
|
||||||
|
export type { ClientDetailedSchema } from './models/ClientDetailedSchema';
|
||||||
export type { ClientDetailsSchema } from './models/ClientDetailsSchema';
|
export type { ClientDetailsSchema } from './models/ClientDetailsSchema';
|
||||||
export type { ClientGetAllResponse } from './models/ClientGetAllResponse';
|
export type { ClientGetAllResponse } from './models/ClientGetAllResponse';
|
||||||
|
export type { ClientGetResponse } from './models/ClientGetResponse';
|
||||||
export type { ClientSchema } from './models/ClientSchema';
|
export type { ClientSchema } from './models/ClientSchema';
|
||||||
export type { ClientUpdateDetailsRequest } from './models/ClientUpdateDetailsRequest';
|
export type { ClientUpdateDetailsRequest } from './models/ClientUpdateDetailsRequest';
|
||||||
export type { ClientUpdateRequest } from './models/ClientUpdateRequest';
|
export type { ClientUpdateRequest } from './models/ClientUpdateRequest';
|
||||||
export type { ClientUpdateResponse } from './models/ClientUpdateResponse';
|
export type { ClientUpdateResponse } from './models/ClientUpdateResponse';
|
||||||
|
export type { CreateAttributeRequest } from './models/CreateAttributeRequest';
|
||||||
|
export type { CreateAttributeResponse } from './models/CreateAttributeResponse';
|
||||||
export type { CreateBarcodeTemplateAttributeRequest } from './models/CreateBarcodeTemplateAttributeRequest';
|
export type { CreateBarcodeTemplateAttributeRequest } from './models/CreateBarcodeTemplateAttributeRequest';
|
||||||
export type { CreateBarcodeTemplateAttributeResponse } from './models/CreateBarcodeTemplateAttributeResponse';
|
export type { CreateBarcodeTemplateAttributeResponse } from './models/CreateBarcodeTemplateAttributeResponse';
|
||||||
export type { CreateDealBillRequest } from './models/CreateDealBillRequest';
|
export type { CreateBoardRequest } from './models/CreateBoardRequest';
|
||||||
export type { CreateDealBillResponse } from './models/CreateDealBillResponse';
|
export type { CreateBoardResponse } from './models/CreateBoardResponse';
|
||||||
|
export type { CreateBoxInCardSchema } from './models/CreateBoxInCardSchema';
|
||||||
|
export type { CreateBoxInPalletSchema } from './models/CreateBoxInPalletSchema';
|
||||||
|
export type { CreateBoxRequest } from './models/CreateBoxRequest';
|
||||||
|
export type { CreateBoxResponse } from './models/CreateBoxResponse';
|
||||||
|
export type { CreateCardBillRequest } from './models/CreateCardBillRequest';
|
||||||
|
export type { CreateCardBillResponse } from './models/CreateCardBillResponse';
|
||||||
|
export type { CreateCardGroupRequest } from './models/CreateCardGroupRequest';
|
||||||
|
export type { CreateCardsFromExcelRequest } from './models/CreateCardsFromExcelRequest';
|
||||||
|
export type { CreateCardsFromExcelResponse } from './models/CreateCardsFromExcelResponse';
|
||||||
|
export type { CreateChatRequest } from './models/CreateChatRequest';
|
||||||
|
export type { CreateChatResponse } from './models/CreateChatResponse';
|
||||||
|
export type { CreateDepartmentRequest } from './models/CreateDepartmentRequest';
|
||||||
|
export type { CreateDepartmentResponse } from './models/CreateDepartmentResponse';
|
||||||
|
export type { CreateDepartmentSectionRequest } from './models/CreateDepartmentSectionRequest';
|
||||||
|
export type { CreateDepartmentSectionResponse } from './models/CreateDepartmentSectionResponse';
|
||||||
|
export type { CreateGuestUrlResponse } from './models/CreateGuestUrlResponse';
|
||||||
export type { CreateMarketplaceRequest } from './models/CreateMarketplaceRequest';
|
export type { CreateMarketplaceRequest } from './models/CreateMarketplaceRequest';
|
||||||
export type { CreateMarketplaceResponse } from './models/CreateMarketplaceResponse';
|
export type { CreateMarketplaceResponse } from './models/CreateMarketplaceResponse';
|
||||||
|
export type { CreatePalletResponse } from './models/CreatePalletResponse';
|
||||||
export type { CreatePaymentRecordRequest } from './models/CreatePaymentRecordRequest';
|
export type { CreatePaymentRecordRequest } from './models/CreatePaymentRecordRequest';
|
||||||
export type { CreatePaymentRecordResponse } from './models/CreatePaymentRecordResponse';
|
export type { CreatePaymentRecordResponse } from './models/CreatePaymentRecordResponse';
|
||||||
export type { CreatePayRateRequest } from './models/CreatePayRateRequest';
|
export type { CreatePayRateRequest } from './models/CreatePayRateRequest';
|
||||||
export type { CreatePayRateResponse } from './models/CreatePayRateResponse';
|
export type { CreatePayRateResponse } from './models/CreatePayRateResponse';
|
||||||
|
export type { CreatePlaceRequest } from './models/CreatePlaceRequest';
|
||||||
|
export type { CreatePlaceResponse } from './models/CreatePlaceResponse';
|
||||||
|
export type { CreatePlaceTypeRequest } from './models/CreatePlaceTypeRequest';
|
||||||
|
export type { CreatePlaceTypeResponse } from './models/CreatePlaceTypeResponse';
|
||||||
export type { CreatePositionRequest } from './models/CreatePositionRequest';
|
export type { CreatePositionRequest } from './models/CreatePositionRequest';
|
||||||
export type { CreatePositionResponse } from './models/CreatePositionResponse';
|
export type { CreatePositionResponse } from './models/CreatePositionResponse';
|
||||||
export type { CreatePriceCategoryRequest } from './models/CreatePriceCategoryRequest';
|
export type { CreateProjectRequest } from './models/CreateProjectRequest';
|
||||||
export type { CreatePriceCategoryResponse } from './models/CreatePriceCategoryResponse';
|
export type { CreateProjectResponse } from './models/CreateProjectResponse';
|
||||||
|
export type { CreateResidualBoxRequest } from './models/CreateResidualBoxRequest';
|
||||||
|
export type { CreateResidualBoxResponse } from './models/CreateResidualBoxResponse';
|
||||||
|
export type { CreateResidualPalletRequest } from './models/CreateResidualPalletRequest';
|
||||||
|
export type { CreateResidualPalletResponse } from './models/CreateResidualPalletResponse';
|
||||||
|
export type { CreateResidualProductRequest } from './models/CreateResidualProductRequest';
|
||||||
|
export type { CreateResidualProductResponse } from './models/CreateResidualProductResponse';
|
||||||
|
export type { CreateResidualProductSchema } from './models/CreateResidualProductSchema';
|
||||||
export type { CreateServiceKitSchema } from './models/CreateServiceKitSchema';
|
export type { CreateServiceKitSchema } from './models/CreateServiceKitSchema';
|
||||||
export type { CreateServicesKitRequest } from './models/CreateServicesKitRequest';
|
export type { CreateServicesKitRequest } from './models/CreateServicesKitRequest';
|
||||||
export type { CreateServicesKitResponse } from './models/CreateServicesKitResponse';
|
export type { CreateServicesKitResponse } from './models/CreateServicesKitResponse';
|
||||||
|
export type { CreateShippingProductSchema } from './models/CreateShippingProductSchema';
|
||||||
export type { CreateShippingWarehouseRequest } from './models/CreateShippingWarehouseRequest';
|
export type { CreateShippingWarehouseRequest } from './models/CreateShippingWarehouseRequest';
|
||||||
export type { CreateShippingWarehouseResponse } from './models/CreateShippingWarehouseResponse';
|
export type { CreateShippingWarehouseResponse } from './models/CreateShippingWarehouseResponse';
|
||||||
|
export type { CreateStatusRequest } from './models/CreateStatusRequest';
|
||||||
|
export type { CreateStatusResponse } from './models/CreateStatusResponse';
|
||||||
|
export type { CreateTagRequest } from './models/CreateTagRequest';
|
||||||
|
export type { CreateTagResponse } from './models/CreateTagResponse';
|
||||||
export type { CreateTaskResponse } from './models/CreateTaskResponse';
|
export type { CreateTaskResponse } from './models/CreateTaskResponse';
|
||||||
|
export type { CreateTransactionTagRequest } from './models/CreateTransactionTagRequest';
|
||||||
export type { CreateUserRequest } from './models/CreateUserRequest';
|
export type { CreateUserRequest } from './models/CreateUserRequest';
|
||||||
export type { CreateUserResponse } from './models/CreateUserResponse';
|
export type { CreateUserResponse } from './models/CreateUserResponse';
|
||||||
export type { DealAddKitRequest } from './models/DealAddKitRequest';
|
export type { DeleteAttributeResponse } from './models/DeleteAttributeResponse';
|
||||||
export type { DealAddKitResponse } from './models/DealAddKitResponse';
|
export type { DeleteBoardResponse } from './models/DeleteBoardResponse';
|
||||||
export type { DealAddProductRequest } from './models/DealAddProductRequest';
|
export type { DeleteBoxResponse } from './models/DeleteBoxResponse';
|
||||||
export type { DealAddProductResponse } from './models/DealAddProductResponse';
|
export type { DeleteDepartmentResponse } from './models/DeleteDepartmentResponse';
|
||||||
export type { DealAddServiceRequest } from './models/DealAddServiceRequest';
|
export type { DeleteDepartmentSectionResponse } from './models/DeleteDepartmentSectionResponse';
|
||||||
export type { DealAddServiceResponse } from './models/DealAddServiceResponse';
|
|
||||||
export type { DealAddServicesRequest } from './models/DealAddServicesRequest';
|
|
||||||
export type { DealAddServicesResponse } from './models/DealAddServicesResponse';
|
|
||||||
export type { DealAddToGroupRequest } from './models/DealAddToGroupRequest';
|
|
||||||
export type { DealAddToGroupResponse } from './models/DealAddToGroupResponse';
|
|
||||||
export type { DealBillRequestSchema } from './models/DealBillRequestSchema';
|
|
||||||
export type { DealChangeStatusRequest } from './models/DealChangeStatusRequest';
|
|
||||||
export type { DealChangeStatusResponse } from './models/DealChangeStatusResponse';
|
|
||||||
export type { DealCompleteRequest } from './models/DealCompleteRequest';
|
|
||||||
export type { DealCompleteResponse } from './models/DealCompleteResponse';
|
|
||||||
export type { DealCreateGroupRequest } from './models/DealCreateGroupRequest';
|
|
||||||
export type { DealCreateGroupResponse } from './models/DealCreateGroupResponse';
|
|
||||||
export type { DealCreateGuestUrlRequest } from './models/DealCreateGuestUrlRequest';
|
|
||||||
export type { DealCreateGuestUrlResponse } from './models/DealCreateGuestUrlResponse';
|
|
||||||
export type { DealCreateRequest } from './models/DealCreateRequest';
|
|
||||||
export type { DealDeleteProductRequest } from './models/DealDeleteProductRequest';
|
|
||||||
export type { DealDeleteProductResponse } from './models/DealDeleteProductResponse';
|
|
||||||
export type { DealDeleteProductsRequest } from './models/DealDeleteProductsRequest';
|
|
||||||
export type { DealDeleteProductsResponse } from './models/DealDeleteProductsResponse';
|
|
||||||
export type { DealDeleteRequest } from './models/DealDeleteRequest';
|
|
||||||
export type { DealDeleteResponse } from './models/DealDeleteResponse';
|
|
||||||
export type { DealDeleteServiceRequest } from './models/DealDeleteServiceRequest';
|
|
||||||
export type { DealDeleteServiceResponse } from './models/DealDeleteServiceResponse';
|
|
||||||
export type { DealDeleteServicesRequest } from './models/DealDeleteServicesRequest';
|
|
||||||
export type { DealDeleteServicesResponse } from './models/DealDeleteServicesResponse';
|
|
||||||
export type { DealGeneralInfoSchema } from './models/DealGeneralInfoSchema';
|
|
||||||
export type { DealGetAllResponse } from './models/DealGetAllResponse';
|
|
||||||
export type { DealGroupChangeStatusRequest } from './models/DealGroupChangeStatusRequest';
|
|
||||||
export type { DealGroupChangeStatusResponse } from './models/DealGroupChangeStatusResponse';
|
|
||||||
export type { DealGroupSchema } from './models/DealGroupSchema';
|
|
||||||
export type { DealGroupUpdateRequest } from './models/DealGroupUpdateRequest';
|
|
||||||
export type { DealGroupUpdateResponse } from './models/DealGroupUpdateResponse';
|
|
||||||
export type { DealPrefillRequest } from './models/DealPrefillRequest';
|
|
||||||
export type { DealPrefillResponse } from './models/DealPrefillResponse';
|
|
||||||
export type { DealProductAddKitRequest } from './models/DealProductAddKitRequest';
|
|
||||||
export type { DealProductAddKitResponse } from './models/DealProductAddKitResponse';
|
|
||||||
export type { DealProductSchema } from './models/DealProductSchema';
|
|
||||||
export type { DealProductServiceSchema } from './models/DealProductServiceSchema';
|
|
||||||
export type { DealQuickCreateRequest } from './models/DealQuickCreateRequest';
|
|
||||||
export type { DealQuickCreateResponse } from './models/DealQuickCreateResponse';
|
|
||||||
export type { DealRecalculatePriceRequest } from './models/DealRecalculatePriceRequest';
|
|
||||||
export type { DealRecalculatePriceResponse } from './models/DealRecalculatePriceResponse';
|
|
||||||
export type { DealRemoveFromGroupRequest } from './models/DealRemoveFromGroupRequest';
|
|
||||||
export type { DealRemoveFromGroupResponse } from './models/DealRemoveFromGroupResponse';
|
|
||||||
export type { DealSchema } from './models/DealSchema';
|
|
||||||
export type { DealServiceSchema } from './models/DealServiceSchema';
|
|
||||||
export type { DealServicesCopyRequest } from './models/DealServicesCopyRequest';
|
|
||||||
export type { DealServicesCopyResponse } from './models/DealServicesCopyResponse';
|
|
||||||
export type { DealStatusHistorySchema } from './models/DealStatusHistorySchema';
|
|
||||||
export type { DealSummary } from './models/DealSummary';
|
|
||||||
export type { DealSummaryReorderRequest } from './models/DealSummaryReorderRequest';
|
|
||||||
export type { DealSummaryResponse } from './models/DealSummaryResponse';
|
|
||||||
export type { DealUpdateGeneralInfoRequest } from './models/DealUpdateGeneralInfoRequest';
|
|
||||||
export type { DealUpdateGeneralInfoResponse } from './models/DealUpdateGeneralInfoResponse';
|
|
||||||
export type { DealUpdateProductQuantityRequest } from './models/DealUpdateProductQuantityRequest';
|
|
||||||
export type { DealUpdateProductQuantityResponse } from './models/DealUpdateProductQuantityResponse';
|
|
||||||
export type { DealUpdateProductRequest } from './models/DealUpdateProductRequest';
|
|
||||||
export type { DealUpdateProductResponse } from './models/DealUpdateProductResponse';
|
|
||||||
export type { DealUpdateServiceQuantityRequest } from './models/DealUpdateServiceQuantityRequest';
|
|
||||||
export type { DealUpdateServiceQuantityResponse } from './models/DealUpdateServiceQuantityResponse';
|
|
||||||
export type { DealUpdateServiceRequest } from './models/DealUpdateServiceRequest';
|
|
||||||
export type { DealUpdateServiceResponse } from './models/DealUpdateServiceResponse';
|
|
||||||
export type { DeleteMarketplaceRequest } from './models/DeleteMarketplaceRequest';
|
export type { DeleteMarketplaceRequest } from './models/DeleteMarketplaceRequest';
|
||||||
export type { DeleteMarketplaceResponse } from './models/DeleteMarketplaceResponse';
|
export type { DeleteMarketplaceResponse } from './models/DeleteMarketplaceResponse';
|
||||||
|
export type { DeleteMessageResponse } from './models/DeleteMessageResponse';
|
||||||
|
export type { DeletePalletResponse } from './models/DeletePalletResponse';
|
||||||
export type { DeletePaymentRecordRequest } from './models/DeletePaymentRecordRequest';
|
export type { DeletePaymentRecordRequest } from './models/DeletePaymentRecordRequest';
|
||||||
export type { DeletePaymentRecordResponse } from './models/DeletePaymentRecordResponse';
|
export type { DeletePaymentRecordResponse } from './models/DeletePaymentRecordResponse';
|
||||||
export type { DeletePayRateRequest } from './models/DeletePayRateRequest';
|
export type { DeletePayRateRequest } from './models/DeletePayRateRequest';
|
||||||
export type { DeletePayRateResponse } from './models/DeletePayRateResponse';
|
export type { DeletePayRateResponse } from './models/DeletePayRateResponse';
|
||||||
|
export type { DeletePlaceResponse } from './models/DeletePlaceResponse';
|
||||||
|
export type { DeletePlaceTypeResponse } from './models/DeletePlaceTypeResponse';
|
||||||
export type { DeletePositionRequest } from './models/DeletePositionRequest';
|
export type { DeletePositionRequest } from './models/DeletePositionRequest';
|
||||||
export type { DeletePositionResponse } from './models/DeletePositionResponse';
|
export type { DeletePositionResponse } from './models/DeletePositionResponse';
|
||||||
export type { DeletePriceCategoryRequest } from './models/DeletePriceCategoryRequest';
|
export type { DeleteProjectResponse } from './models/DeleteProjectResponse';
|
||||||
export type { DeletePriceCategoryResponse } from './models/DeletePriceCategoryResponse';
|
export type { DeleteResidualBoxResponse } from './models/DeleteResidualBoxResponse';
|
||||||
|
export type { DeleteResidualPalletResponse } from './models/DeleteResidualPalletResponse';
|
||||||
|
export type { DeleteResidualProductResponse } from './models/DeleteResidualProductResponse';
|
||||||
export type { DeleteShiftResponse } from './models/DeleteShiftResponse';
|
export type { DeleteShiftResponse } from './models/DeleteShiftResponse';
|
||||||
|
export type { DeleteShippingProductResponse } from './models/DeleteShippingProductResponse';
|
||||||
export type { DeleteShippingWarehouseRequest } from './models/DeleteShippingWarehouseRequest';
|
export type { DeleteShippingWarehouseRequest } from './models/DeleteShippingWarehouseRequest';
|
||||||
export type { DeleteShippingWarehouseResponse } from './models/DeleteShippingWarehouseResponse';
|
export type { DeleteShippingWarehouseResponse } from './models/DeleteShippingWarehouseResponse';
|
||||||
|
export type { DeleteStatusResponse } from './models/DeleteStatusResponse';
|
||||||
|
export type { DeleteTagResponse } from './models/DeleteTagResponse';
|
||||||
|
export type { DeleteTransactionResponse } from './models/DeleteTransactionResponse';
|
||||||
|
export type { DeleteTransactionTagResponse } from './models/DeleteTransactionTagResponse';
|
||||||
|
export type { DeleteUserRequest } from './models/DeleteUserRequest';
|
||||||
|
export type { DeleteUserResponse } from './models/DeleteUserResponse';
|
||||||
|
export type { DepartmentBaseSchema } from './models/DepartmentBaseSchema';
|
||||||
|
export type { DepartmentSchema } from './models/DepartmentSchema';
|
||||||
|
export type { DepartmentSectionBaseSchema } from './models/DepartmentSectionBaseSchema';
|
||||||
|
export type { DepartmentSectionBriefSchema } from './models/DepartmentSectionBriefSchema';
|
||||||
|
export type { DepartmentSectionSchema } from './models/DepartmentSectionSchema';
|
||||||
|
export type { EditMessageRequest } from './models/EditMessageRequest';
|
||||||
|
export type { EditMessageResponse } from './models/EditMessageResponse';
|
||||||
|
export type { EditMessageSchema } from './models/EditMessageSchema';
|
||||||
|
export type { EditPlaceRequest } from './models/EditPlaceRequest';
|
||||||
|
export type { EditPlaceResponse } from './models/EditPlaceResponse';
|
||||||
|
export type { EditPlaceSchema } from './models/EditPlaceSchema';
|
||||||
|
export type { EditPlaceTypeRequest } from './models/EditPlaceTypeRequest';
|
||||||
|
export type { EditPlaceTypeResponse } from './models/EditPlaceTypeResponse';
|
||||||
|
export type { FinishPauseByShiftIdResponse } from './models/FinishPauseByShiftIdResponse';
|
||||||
|
export type { FinishPauseByUserIdResponse } from './models/FinishPauseByUserIdResponse';
|
||||||
export type { FinishShiftByIdResponse } from './models/FinishShiftByIdResponse';
|
export type { FinishShiftByIdResponse } from './models/FinishShiftByIdResponse';
|
||||||
export type { FinishShiftResponse } from './models/FinishShiftResponse';
|
export type { FinishShiftResponse } from './models/FinishShiftResponse';
|
||||||
|
export type { FlatPlaceTypeSchema } from './models/FlatPlaceTypeSchema';
|
||||||
|
export type { FullProjectSchema } from './models/FullProjectSchema';
|
||||||
|
export type { GenerateInviteCodeRequest } from './models/GenerateInviteCodeRequest';
|
||||||
|
export type { GenerateInviteCodeResponse } from './models/GenerateInviteCodeResponse';
|
||||||
export type { GetAllBarcodeTemplateAttributesResponse } from './models/GetAllBarcodeTemplateAttributesResponse';
|
export type { GetAllBarcodeTemplateAttributesResponse } from './models/GetAllBarcodeTemplateAttributesResponse';
|
||||||
export type { GetAllBarcodeTemplateSizesResponse } from './models/GetAllBarcodeTemplateSizesResponse';
|
export type { GetAllBarcodeTemplateSizesResponse } from './models/GetAllBarcodeTemplateSizesResponse';
|
||||||
export type { GetAllBarcodeTemplatesResponse } from './models/GetAllBarcodeTemplatesResponse';
|
export type { GetAllBarcodeTemplatesResponse } from './models/GetAllBarcodeTemplatesResponse';
|
||||||
export type { GetAllBaseMarketplacesResponse } from './models/GetAllBaseMarketplacesResponse';
|
export type { GetAllBaseMarketplacesResponse } from './models/GetAllBaseMarketplacesResponse';
|
||||||
|
export type { GetAllModulesResponse } from './models/GetAllModulesResponse';
|
||||||
export type { GetAllPayRatesResponse } from './models/GetAllPayRatesResponse';
|
export type { GetAllPayRatesResponse } from './models/GetAllPayRatesResponse';
|
||||||
export type { GetAllPayrollSchemeResponse } from './models/GetAllPayrollSchemeResponse';
|
export type { GetAllPayrollSchemeResponse } from './models/GetAllPayrollSchemeResponse';
|
||||||
export type { GetAllPositionsResponse } from './models/GetAllPositionsResponse';
|
export type { GetAllPositionsResponse } from './models/GetAllPositionsResponse';
|
||||||
export type { GetAllPriceCategoriesResponse } from './models/GetAllPriceCategoriesResponse';
|
|
||||||
export type { GetAllRolesResponse } from './models/GetAllRolesResponse';
|
export type { GetAllRolesResponse } from './models/GetAllRolesResponse';
|
||||||
export type { GetAllServicesKitsResponse } from './models/GetAllServicesKitsResponse';
|
export type { GetAllServicesKitsResponse } from './models/GetAllServicesKitsResponse';
|
||||||
export type { GetAllShippingWarehousesResponse } from './models/GetAllShippingWarehousesResponse';
|
export type { GetAllShippingWarehousesResponse } from './models/GetAllShippingWarehousesResponse';
|
||||||
|
export type { GetAllTransactionsRequest } from './models/GetAllTransactionsRequest';
|
||||||
|
export type { GetAllTransactionsResponse } from './models/GetAllTransactionsResponse';
|
||||||
|
export type { GetAllTransactionTagsResponse } from './models/GetAllTransactionTagsResponse';
|
||||||
export type { GetAllUsersResponse } from './models/GetAllUsersResponse';
|
export type { GetAllUsersResponse } from './models/GetAllUsersResponse';
|
||||||
|
export type { GetAttributesResponse } from './models/GetAttributesResponse';
|
||||||
|
export type { GetAttributeTypesResponse } from './models/GetAttributeTypesResponse';
|
||||||
|
export type { GetAvailableEmployeesToAssignResponse } from './models/GetAvailableEmployeesToAssignResponse';
|
||||||
|
export type { GetAvailableUsersForDepartmentSectionResponse } from './models/GetAvailableUsersForDepartmentSectionResponse';
|
||||||
export type { GetBarcodeTemplateByIdRequest } from './models/GetBarcodeTemplateByIdRequest';
|
export type { GetBarcodeTemplateByIdRequest } from './models/GetBarcodeTemplateByIdRequest';
|
||||||
export type { GetBarcodeTemplateByIdResponse } from './models/GetBarcodeTemplateByIdResponse';
|
export type { GetBarcodeTemplateByIdResponse } from './models/GetBarcodeTemplateByIdResponse';
|
||||||
|
export type { GetBoardsResponse } from './models/GetBoardsResponse';
|
||||||
|
export type { GetCardBillById } from './models/GetCardBillById';
|
||||||
|
export type { GetCardProductsBarcodesPdfRequest } from './models/GetCardProductsBarcodesPdfRequest';
|
||||||
|
export type { GetCardProductsBarcodesPdfResponse } from './models/GetCardProductsBarcodesPdfResponse';
|
||||||
|
export type { GetCardSummariesRequest } from './models/GetCardSummariesRequest';
|
||||||
|
export type { GetChatRequest } from './models/GetChatRequest';
|
||||||
|
export type { GetChatResponse } from './models/GetChatResponse';
|
||||||
|
export type { GetChatsListResponse } from './models/GetChatsListResponse';
|
||||||
export type { GetClientMarketplacesRequest } from './models/GetClientMarketplacesRequest';
|
export type { GetClientMarketplacesRequest } from './models/GetClientMarketplacesRequest';
|
||||||
export type { GetClientMarketplacesResponse } from './models/GetClientMarketplacesResponse';
|
export type { GetClientMarketplacesResponse } from './models/GetClientMarketplacesResponse';
|
||||||
export type { GetDealBillById } from './models/GetDealBillById';
|
export type { GetDepartmentSectionsResponse } from './models/GetDepartmentSectionsResponse';
|
||||||
export type { GetDealProductsBarcodesPdfRequest } from './models/GetDealProductsBarcodesPdfRequest';
|
export type { GetDepartmentsResponse } from './models/GetDepartmentsResponse';
|
||||||
export type { GetDealProductsBarcodesPdfResponse } from './models/GetDealProductsBarcodesPdfResponse';
|
export type { GetFlatPlaceTypesResponse } from './models/GetFlatPlaceTypesResponse';
|
||||||
export type { GetManagersResponse } from './models/GetManagersResponse';
|
export type { GetManagersResponse } from './models/GetManagersResponse';
|
||||||
|
export type { GetMessagesRequest } from './models/GetMessagesRequest';
|
||||||
|
export type { GetMessagesResponse } from './models/GetMessagesResponse';
|
||||||
export type { GetPaymentRecordsResponse } from './models/GetPaymentRecordsResponse';
|
export type { GetPaymentRecordsResponse } from './models/GetPaymentRecordsResponse';
|
||||||
|
export type { GetPlacesResponse } from './models/GetPlacesResponse';
|
||||||
|
export type { GetPlaceTypesResponse } from './models/GetPlaceTypesResponse';
|
||||||
|
export type { GetPlannedWorkShiftsResponse } from './models/GetPlannedWorkShiftsResponse';
|
||||||
export type { GetProductBarcodePdfRequest } from './models/GetProductBarcodePdfRequest';
|
export type { GetProductBarcodePdfRequest } from './models/GetProductBarcodePdfRequest';
|
||||||
export type { GetProductBarcodePdfResponse } from './models/GetProductBarcodePdfResponse';
|
export type { GetProductBarcodePdfResponse } from './models/GetProductBarcodePdfResponse';
|
||||||
export type { GetProductBarcodeRequest } from './models/GetProductBarcodeRequest';
|
export type { GetProductBarcodeRequest } from './models/GetProductBarcodeRequest';
|
||||||
@@ -176,35 +293,67 @@ export type { GetProfitChartDataRequest } from './models/GetProfitChartDataReque
|
|||||||
export type { GetProfitChartDataResponse } from './models/GetProfitChartDataResponse';
|
export type { GetProfitChartDataResponse } from './models/GetProfitChartDataResponse';
|
||||||
export type { GetProfitTableDataRequest } from './models/GetProfitTableDataRequest';
|
export type { GetProfitTableDataRequest } from './models/GetProfitTableDataRequest';
|
||||||
export type { GetProfitTableDataResponse } from './models/GetProfitTableDataResponse';
|
export type { GetProfitTableDataResponse } from './models/GetProfitTableDataResponse';
|
||||||
|
export type { GetProjectsResponse } from './models/GetProjectsResponse';
|
||||||
|
export type { GetResidualBoxResponse } from './models/GetResidualBoxResponse';
|
||||||
|
export type { GetResidualPalletResponse } from './models/GetResidualPalletResponse';
|
||||||
export type { GetServiceKitSchema } from './models/GetServiceKitSchema';
|
export type { GetServiceKitSchema } from './models/GetServiceKitSchema';
|
||||||
|
export type { GetTagColorsResponse } from './models/GetTagColorsResponse';
|
||||||
export type { GetTimeTrackingRecordsRequest } from './models/GetTimeTrackingRecordsRequest';
|
export type { GetTimeTrackingRecordsRequest } from './models/GetTimeTrackingRecordsRequest';
|
||||||
export type { GetTimeTrackingRecordsResponse } from './models/GetTimeTrackingRecordsResponse';
|
export type { GetTimeTrackingRecordsResponse } from './models/GetTimeTrackingRecordsResponse';
|
||||||
|
export type { GetTransactionTagsResponse } from './models/GetTransactionTagsResponse';
|
||||||
|
export type { GetWorkShiftsPlanningDataRequest } from './models/GetWorkShiftsPlanningDataRequest';
|
||||||
|
export type { GetWorkShiftsResponse } from './models/GetWorkShiftsResponse';
|
||||||
|
export type { GetYandexMarketCampaignsRequest } from './models/GetYandexMarketCampaignsRequest';
|
||||||
|
export type { GetYandexMarketCampaignsResponse } from './models/GetYandexMarketCampaignsResponse';
|
||||||
export type { GroupBillRequestSchema } from './models/GroupBillRequestSchema';
|
export type { GroupBillRequestSchema } from './models/GroupBillRequestSchema';
|
||||||
export type { HTTPValidationError } from './models/HTTPValidationError';
|
export type { HTTPValidationError } from './models/HTTPValidationError';
|
||||||
|
export type { LoadMessagesResponse } from './models/LoadMessagesResponse';
|
||||||
|
export type { LoadReceiptRequest } from './models/LoadReceiptRequest';
|
||||||
|
export type { LoadReceiptResponse } from './models/LoadReceiptResponse';
|
||||||
|
export type { ManageEmployeeRequest } from './models/ManageEmployeeRequest';
|
||||||
|
export type { ManageEmployeeResponse } from './models/ManageEmployeeResponse';
|
||||||
export type { MarketplaceCreateSchema } from './models/MarketplaceCreateSchema';
|
export type { MarketplaceCreateSchema } from './models/MarketplaceCreateSchema';
|
||||||
export type { MarketplaceSchema } from './models/MarketplaceSchema';
|
export type { MarketplaceSchema } from './models/MarketplaceSchema';
|
||||||
|
export type { MessageFileSchema } from './models/MessageFileSchema';
|
||||||
|
export type { MessageSchema } from './models/MessageSchema';
|
||||||
|
export type { ModuleSchema } from './models/ModuleSchema';
|
||||||
export type { NotificationChannel } from './models/NotificationChannel';
|
export type { NotificationChannel } from './models/NotificationChannel';
|
||||||
|
export type { OptionalShippingWarehouseSchema } from './models/OptionalShippingWarehouseSchema';
|
||||||
export type { PaginationInfoSchema } from './models/PaginationInfoSchema';
|
export type { PaginationInfoSchema } from './models/PaginationInfoSchema';
|
||||||
|
export type { PalletSchema } from './models/PalletSchema';
|
||||||
|
export type { ParseCardsExcelResponse } from './models/ParseCardsExcelResponse';
|
||||||
|
export type { ParsedCityBreakdownSchema } from './models/ParsedCityBreakdownSchema';
|
||||||
|
export type { ParsedProductRowSchema } from './models/ParsedProductRowSchema';
|
||||||
|
export type { PassportImageSchema } from './models/PassportImageSchema';
|
||||||
export type { PaymentRecordCreateSchema } from './models/PaymentRecordCreateSchema';
|
export type { PaymentRecordCreateSchema } from './models/PaymentRecordCreateSchema';
|
||||||
export type { PaymentRecordGetSchema } from './models/PaymentRecordGetSchema';
|
export type { PaymentRecordGetSchema } from './models/PaymentRecordGetSchema';
|
||||||
export type { PayRateSchema } from './models/PayRateSchema';
|
export type { PayRateSchema } from './models/PayRateSchema';
|
||||||
export type { PayRateSchemaBase } from './models/PayRateSchemaBase';
|
export type { PayRateSchemaBase } from './models/PayRateSchemaBase';
|
||||||
export type { PayrollSchemeSchema } from './models/PayrollSchemeSchema';
|
export type { PayrollSchemeSchema } from './models/PayrollSchemeSchema';
|
||||||
export type { PermissionSchema } from './models/PermissionSchema';
|
export type { PermissionSchema } from './models/PermissionSchema';
|
||||||
|
export type { PlaceSchema } from './models/PlaceSchema';
|
||||||
|
export type { PlaceTypeSchema } from './models/PlaceTypeSchema';
|
||||||
|
export type { PlannedWorkShiftSchema } from './models/PlannedWorkShiftSchema';
|
||||||
|
export type { PlanningTableRow } from './models/PlanningTableRow';
|
||||||
export type { PositionSchema } from './models/PositionSchema';
|
export type { PositionSchema } from './models/PositionSchema';
|
||||||
export type { ProductAddBarcodeRequest } from './models/ProductAddBarcodeRequest';
|
export type { ProductAddBarcodeRequest } from './models/ProductAddBarcodeRequest';
|
||||||
export type { ProductAddBarcodeResponse } from './models/ProductAddBarcodeResponse';
|
export type { ProductAddBarcodeResponse } from './models/ProductAddBarcodeResponse';
|
||||||
|
export type { ProductAndQuantitySchema } from './models/ProductAndQuantitySchema';
|
||||||
export type { ProductCreateRequest } from './models/ProductCreateRequest';
|
export type { ProductCreateRequest } from './models/ProductCreateRequest';
|
||||||
export type { ProductCreateResponse } from './models/ProductCreateResponse';
|
export type { ProductCreateResponse } from './models/ProductCreateResponse';
|
||||||
export type { ProductDeleteBarcodeImageResponse } from './models/ProductDeleteBarcodeImageResponse';
|
export type { ProductDeleteBarcodeImageResponse } from './models/ProductDeleteBarcodeImageResponse';
|
||||||
export type { ProductDeleteRequest } from './models/ProductDeleteRequest';
|
export type { ProductDeleteRequest } from './models/ProductDeleteRequest';
|
||||||
export type { ProductDeleteResponse } from './models/ProductDeleteResponse';
|
export type { ProductDeleteResponse } from './models/ProductDeleteResponse';
|
||||||
export type { ProductExistsBarcodeResponse } from './models/ProductExistsBarcodeResponse';
|
export type { ProductExistsBarcodeResponse } from './models/ProductExistsBarcodeResponse';
|
||||||
|
export type { ProductFromExcelSchema } from './models/ProductFromExcelSchema';
|
||||||
export type { ProductGenerateBarcodeRequest } from './models/ProductGenerateBarcodeRequest';
|
export type { ProductGenerateBarcodeRequest } from './models/ProductGenerateBarcodeRequest';
|
||||||
export type { ProductGenerateBarcodeResponse } from './models/ProductGenerateBarcodeResponse';
|
export type { ProductGenerateBarcodeResponse } from './models/ProductGenerateBarcodeResponse';
|
||||||
export type { ProductGetBarcodeImageResponse } from './models/ProductGetBarcodeImageResponse';
|
export type { ProductGetBarcodeImageResponse } from './models/ProductGetBarcodeImageResponse';
|
||||||
export type { ProductGetResponse } from './models/ProductGetResponse';
|
export type { ProductGetResponse } from './models/ProductGetResponse';
|
||||||
export type { ProductImageSchema } from './models/ProductImageSchema';
|
export type { ProductImageSchema } from './models/ProductImageSchema';
|
||||||
|
export type { ProductsAndServicesGeneralInfoRequest } from './models/ProductsAndServicesGeneralInfoRequest';
|
||||||
|
export type { ProductsAndServicesGeneralInfoResponse } from './models/ProductsAndServicesGeneralInfoResponse';
|
||||||
|
export type { ProductsAndServicesGeneralInfoSchema } from './models/ProductsAndServicesGeneralInfoSchema';
|
||||||
export type { ProductSchema } from './models/ProductSchema';
|
export type { ProductSchema } from './models/ProductSchema';
|
||||||
export type { ProductUpdateRequest } from './models/ProductUpdateRequest';
|
export type { ProductUpdateRequest } from './models/ProductUpdateRequest';
|
||||||
export type { ProductUpdateResponse } from './models/ProductUpdateResponse';
|
export type { ProductUpdateResponse } from './models/ProductUpdateResponse';
|
||||||
@@ -213,8 +362,20 @@ export type { ProductUploadImageResponse } from './models/ProductUploadImageResp
|
|||||||
export type { ProfitChartDataItem } from './models/ProfitChartDataItem';
|
export type { ProfitChartDataItem } from './models/ProfitChartDataItem';
|
||||||
export type { ProfitTableDataItem } from './models/ProfitTableDataItem';
|
export type { ProfitTableDataItem } from './models/ProfitTableDataItem';
|
||||||
export type { ProfitTableGroupBy } from './models/ProfitTableGroupBy';
|
export type { ProfitTableGroupBy } from './models/ProfitTableGroupBy';
|
||||||
|
export type { ProjectGeneralInfoSchema } from './models/ProjectGeneralInfoSchema';
|
||||||
|
export type { ProjectSchema } from './models/ProjectSchema';
|
||||||
|
export type { ReceiptBoxSchema } from './models/ReceiptBoxSchema';
|
||||||
|
export type { ReceiptPalletSchema } from './models/ReceiptPalletSchema';
|
||||||
|
export type { ReorderResponse } from './models/ReorderResponse';
|
||||||
|
export type { RepeatSendingMessageSchema } from './models/RepeatSendingMessageSchema';
|
||||||
|
export type { RepeatSendingTextMessageRequest } from './models/RepeatSendingTextMessageRequest';
|
||||||
|
export type { RepeatSendingTextMessageResponse } from './models/RepeatSendingTextMessageResponse';
|
||||||
|
export type { ResidualBoxSchema } from './models/ResidualBoxSchema';
|
||||||
|
export type { ResidualPalletSchema } from './models/ResidualPalletSchema';
|
||||||
|
export type { ResidualProductSchema } from './models/ResidualProductSchema';
|
||||||
export type { RoleSchema } from './models/RoleSchema';
|
export type { RoleSchema } from './models/RoleSchema';
|
||||||
export type { ServiceCategoryPriceSchema } from './models/ServiceCategoryPriceSchema';
|
export type { SendTextMessageRequest } from './models/SendTextMessageRequest';
|
||||||
|
export type { SendTextMessageResponse } from './models/SendTextMessageResponse';
|
||||||
export type { ServiceCategoryReorderRequest } from './models/ServiceCategoryReorderRequest';
|
export type { ServiceCategoryReorderRequest } from './models/ServiceCategoryReorderRequest';
|
||||||
export type { ServiceCategoryReorderResponse } from './models/ServiceCategoryReorderResponse';
|
export type { ServiceCategoryReorderResponse } from './models/ServiceCategoryReorderResponse';
|
||||||
export type { ServiceCategorySchema } from './models/ServiceCategorySchema';
|
export type { ServiceCategorySchema } from './models/ServiceCategorySchema';
|
||||||
@@ -228,7 +389,6 @@ export type { ServiceDeleteRequest } from './models/ServiceDeleteRequest';
|
|||||||
export type { ServiceDeleteResponse } from './models/ServiceDeleteResponse';
|
export type { ServiceDeleteResponse } from './models/ServiceDeleteResponse';
|
||||||
export type { ServiceGetAllCategoriesResponse } from './models/ServiceGetAllCategoriesResponse';
|
export type { ServiceGetAllCategoriesResponse } from './models/ServiceGetAllCategoriesResponse';
|
||||||
export type { ServiceGetAllResponse } from './models/ServiceGetAllResponse';
|
export type { ServiceGetAllResponse } from './models/ServiceGetAllResponse';
|
||||||
export type { ServicePriceCategorySchema } from './models/ServicePriceCategorySchema';
|
|
||||||
export type { ServicePriceRangeSchema } from './models/ServicePriceRangeSchema';
|
export type { ServicePriceRangeSchema } from './models/ServicePriceRangeSchema';
|
||||||
export type { ServiceReorderRequest } from './models/ServiceReorderRequest';
|
export type { ServiceReorderRequest } from './models/ServiceReorderRequest';
|
||||||
export type { ServiceReorderResponse } from './models/ServiceReorderResponse';
|
export type { ServiceReorderResponse } from './models/ServiceReorderResponse';
|
||||||
@@ -237,46 +397,114 @@ export type { ServiceUpdateCategoryRequest } from './models/ServiceUpdateCategor
|
|||||||
export type { ServiceUpdateCategoryResponse } from './models/ServiceUpdateCategoryResponse';
|
export type { ServiceUpdateCategoryResponse } from './models/ServiceUpdateCategoryResponse';
|
||||||
export type { ServiceUpdateRequest } from './models/ServiceUpdateRequest';
|
export type { ServiceUpdateRequest } from './models/ServiceUpdateRequest';
|
||||||
export type { ServiceUpdateResponse } from './models/ServiceUpdateResponse';
|
export type { ServiceUpdateResponse } from './models/ServiceUpdateResponse';
|
||||||
|
export type { ShippingProductSchema } from './models/ShippingProductSchema';
|
||||||
export type { ShippingWarehouseSchema } from './models/ShippingWarehouseSchema';
|
export type { ShippingWarehouseSchema } from './models/ShippingWarehouseSchema';
|
||||||
|
export type { StartPauseByShiftIdResponse } from './models/StartPauseByShiftIdResponse';
|
||||||
|
export type { StartPauseByUserIdResponse } from './models/StartPauseByUserIdResponse';
|
||||||
export type { StartShiftResponse } from './models/StartShiftResponse';
|
export type { StartShiftResponse } from './models/StartShiftResponse';
|
||||||
|
export type { StatusSchema } from './models/StatusSchema';
|
||||||
|
export type { SwitchTagRequest } from './models/SwitchTagRequest';
|
||||||
|
export type { SwitchTagResponse } from './models/SwitchTagResponse';
|
||||||
export type { SynchronizeMarketplaceRequest } from './models/SynchronizeMarketplaceRequest';
|
export type { SynchronizeMarketplaceRequest } from './models/SynchronizeMarketplaceRequest';
|
||||||
export type { TaskInfoResponse } from './models/TaskInfoResponse';
|
export type { TaskInfoResponse } from './models/TaskInfoResponse';
|
||||||
|
export type { TgGroupSchema } from './models/TgGroupSchema';
|
||||||
|
export type { TgUserSchema } from './models/TgUserSchema';
|
||||||
export type { TimeTrackingData } from './models/TimeTrackingData';
|
export type { TimeTrackingData } from './models/TimeTrackingData';
|
||||||
export type { TimeTrackingRecord } from './models/TimeTrackingRecord';
|
export type { TimeTrackingRecord } from './models/TimeTrackingRecord';
|
||||||
|
export type { TransactionSchemaBase } from './models/TransactionSchemaBase';
|
||||||
|
export type { TransactionTagSchema } from './models/TransactionTagSchema';
|
||||||
|
export type { UpdateAttributeRequest } from './models/UpdateAttributeRequest';
|
||||||
|
export type { UpdateAttributeResponse } from './models/UpdateAttributeResponse';
|
||||||
|
export type { UpdateAttributesRequest } from './models/UpdateAttributesRequest';
|
||||||
|
export type { UpdateAttributesResponse } from './models/UpdateAttributesResponse';
|
||||||
|
export type { UpdateBoardOrderRequest } from './models/UpdateBoardOrderRequest';
|
||||||
|
export type { UpdateBoardOrderResponse } from './models/UpdateBoardOrderResponse';
|
||||||
|
export type { UpdateBoardRequest } from './models/UpdateBoardRequest';
|
||||||
|
export type { UpdateBoardResponse } from './models/UpdateBoardResponse';
|
||||||
|
export type { UpdateCardClientRequest } from './models/UpdateCardClientRequest';
|
||||||
|
export type { UpdateCardClientResponse } from './models/UpdateCardClientResponse';
|
||||||
|
export type { UpdateCardManagerRequest } from './models/UpdateCardManagerRequest';
|
||||||
|
export type { UpdateCardManagerResponse } from './models/UpdateCardManagerResponse';
|
||||||
|
export type { UpdateDepartmentRequest } from './models/UpdateDepartmentRequest';
|
||||||
|
export type { UpdateDepartmentResponse } from './models/UpdateDepartmentResponse';
|
||||||
|
export type { UpdateDepartmentSectionRequest } from './models/UpdateDepartmentSectionRequest';
|
||||||
|
export type { UpdateDepartmentSectionResponse } from './models/UpdateDepartmentSectionResponse';
|
||||||
export type { UpdateMarketplaceRequest } from './models/UpdateMarketplaceRequest';
|
export type { UpdateMarketplaceRequest } from './models/UpdateMarketplaceRequest';
|
||||||
export type { UpdateMarketplaceResponse } from './models/UpdateMarketplaceResponse';
|
export type { UpdateMarketplaceResponse } from './models/UpdateMarketplaceResponse';
|
||||||
|
export type { UpdateModulesRequest } from './models/UpdateModulesRequest';
|
||||||
|
export type { UpdateModulesResponse } from './models/UpdateModulesResponse';
|
||||||
export type { UpdatePayRateRequest } from './models/UpdatePayRateRequest';
|
export type { UpdatePayRateRequest } from './models/UpdatePayRateRequest';
|
||||||
export type { UpdatePayRateResponse } from './models/UpdatePayRateResponse';
|
export type { UpdatePayRateResponse } from './models/UpdatePayRateResponse';
|
||||||
export type { UpdatePriceCategoryRequest } from './models/UpdatePriceCategoryRequest';
|
export type { UpdatePlanningWorkShiftRequest } from './models/UpdatePlanningWorkShiftRequest';
|
||||||
export type { UpdatePriceCategoryResponse } from './models/UpdatePriceCategoryResponse';
|
export type { UpdatePlanningWorkShiftResponse } from './models/UpdatePlanningWorkShiftResponse';
|
||||||
|
export type { UpdateProjectRequest } from './models/UpdateProjectRequest';
|
||||||
|
export type { UpdateProjectResponse } from './models/UpdateProjectResponse';
|
||||||
|
export type { UpdateResidualProductRequest } from './models/UpdateResidualProductRequest';
|
||||||
|
export type { UpdateResidualProductResponse } from './models/UpdateResidualProductResponse';
|
||||||
|
export type { UpdateResidualProductSchema } from './models/UpdateResidualProductSchema';
|
||||||
export type { UpdateServiceKitSchema } from './models/UpdateServiceKitSchema';
|
export type { UpdateServiceKitSchema } from './models/UpdateServiceKitSchema';
|
||||||
export type { UpdateServicesKitRequest } from './models/UpdateServicesKitRequest';
|
export type { UpdateServicesKitRequest } from './models/UpdateServicesKitRequest';
|
||||||
export type { UpdateServicesKitResponse } from './models/UpdateServicesKitResponse';
|
export type { UpdateServicesKitResponse } from './models/UpdateServicesKitResponse';
|
||||||
|
export type { UpdateShippingProductRequest } from './models/UpdateShippingProductRequest';
|
||||||
|
export type { UpdateShippingProductResponse } from './models/UpdateShippingProductResponse';
|
||||||
|
export type { UpdateShippingProductSchema } from './models/UpdateShippingProductSchema';
|
||||||
export type { UpdateShippingWarehouseRequest } from './models/UpdateShippingWarehouseRequest';
|
export type { UpdateShippingWarehouseRequest } from './models/UpdateShippingWarehouseRequest';
|
||||||
export type { UpdateShippingWarehouseResponse } from './models/UpdateShippingWarehouseResponse';
|
export type { UpdateShippingWarehouseResponse } from './models/UpdateShippingWarehouseResponse';
|
||||||
|
export type { UpdateStatusOrderRequest } from './models/UpdateStatusOrderRequest';
|
||||||
|
export type { UpdateStatusOrderResponse } from './models/UpdateStatusOrderResponse';
|
||||||
|
export type { UpdateStatusRequest } from './models/UpdateStatusRequest';
|
||||||
|
export type { UpdateStatusResponse } from './models/UpdateStatusResponse';
|
||||||
|
export type { UpdateTagRequest } from './models/UpdateTagRequest';
|
||||||
|
export type { UpdateTagResponse } from './models/UpdateTagResponse';
|
||||||
export type { UpdateTimeTrackingRecordRequest } from './models/UpdateTimeTrackingRecordRequest';
|
export type { UpdateTimeTrackingRecordRequest } from './models/UpdateTimeTrackingRecordRequest';
|
||||||
export type { UpdateTimeTrackingRecordResponse } from './models/UpdateTimeTrackingRecordResponse';
|
export type { UpdateTimeTrackingRecordResponse } from './models/UpdateTimeTrackingRecordResponse';
|
||||||
|
export type { UpdateTransactionRequest } from './models/UpdateTransactionRequest';
|
||||||
|
export type { UpdateTransactionResponse } from './models/UpdateTransactionResponse';
|
||||||
|
export type { UpdateTransactionSchema } from './models/UpdateTransactionSchema';
|
||||||
|
export type { UpdateTransactionTagRequest } from './models/UpdateTransactionTagRequest';
|
||||||
|
export type { UpdateTransactionTagResponse } from './models/UpdateTransactionTagResponse';
|
||||||
|
export type { UpdateUserDepartmentSectionsRequest } from './models/UpdateUserDepartmentSectionsRequest';
|
||||||
|
export type { UpdateUserDepartmentSectionsResponse } from './models/UpdateUserDepartmentSectionsResponse';
|
||||||
export type { UpdateUserRequest } from './models/UpdateUserRequest';
|
export type { UpdateUserRequest } from './models/UpdateUserRequest';
|
||||||
export type { UpdateUserResponse } from './models/UpdateUserResponse';
|
export type { UpdateUserResponse } from './models/UpdateUserResponse';
|
||||||
|
export type { UploadPassportImageResponse } from './models/UploadPassportImageResponse';
|
||||||
export type { UserCreate } from './models/UserCreate';
|
export type { UserCreate } from './models/UserCreate';
|
||||||
|
export type { UserDepartmentSectionSchema } from './models/UserDepartmentSectionSchema';
|
||||||
|
export type { UserDepartmentSectionsSchema } from './models/UserDepartmentSectionsSchema';
|
||||||
export type { UserSchema } from './models/UserSchema';
|
export type { UserSchema } from './models/UserSchema';
|
||||||
export type { UserUpdate } from './models/UserUpdate';
|
export type { UserUpdate } from './models/UserUpdate';
|
||||||
export type { ValidationError } from './models/ValidationError';
|
export type { ValidationError } from './models/ValidationError';
|
||||||
|
export type { WorkShiftRowSchema } from './models/WorkShiftRowSchema';
|
||||||
|
export type { WorkShiftSchema } from './models/WorkShiftSchema';
|
||||||
|
export type { YandexMarketCampaignSchema } from './models/YandexMarketCampaignSchema';
|
||||||
|
|
||||||
|
export { AttributeService } from './services/AttributeService';
|
||||||
export { AuthService } from './services/AuthService';
|
export { AuthService } from './services/AuthService';
|
||||||
export { BarcodeService } from './services/BarcodeService';
|
export { BarcodeService } from './services/BarcodeService';
|
||||||
export { BillingService } from './services/BillingService';
|
export { BillingService } from './services/BillingService';
|
||||||
|
export { BoardService } from './services/BoardService';
|
||||||
|
export { CardService } from './services/CardService';
|
||||||
|
export { CardGroupService } from './services/CardGroupService';
|
||||||
|
export { CardTagService } from './services/CardTagService';
|
||||||
|
export { ChatService } from './services/ChatService';
|
||||||
export { ClientService } from './services/ClientService';
|
export { ClientService } from './services/ClientService';
|
||||||
export { DealService } from './services/DealService';
|
export { DepartmentService } from './services/DepartmentService';
|
||||||
export { MarketplaceService } from './services/MarketplaceService';
|
export { MarketplaceService } from './services/MarketplaceService';
|
||||||
export { PayrollService } from './services/PayrollService';
|
export { PayrollService } from './services/PayrollService';
|
||||||
export { PositionService } from './services/PositionService';
|
export { PositionService } from './services/PositionService';
|
||||||
export { ProductService } from './services/ProductService';
|
export { ProductService } from './services/ProductService';
|
||||||
|
export { ProjectService } from './services/ProjectService';
|
||||||
|
export { ResiduesService } from './services/ResiduesService';
|
||||||
export { RoleService } from './services/RoleService';
|
export { RoleService } from './services/RoleService';
|
||||||
export { ServiceService } from './services/ServiceService';
|
export { ServiceService } from './services/ServiceService';
|
||||||
|
export { ShippingService } from './services/ShippingService';
|
||||||
export { ShippingWarehouseService } from './services/ShippingWarehouseService';
|
export { ShippingWarehouseService } from './services/ShippingWarehouseService';
|
||||||
export { StatisticsService } from './services/StatisticsService';
|
export { StatisticsService } from './services/StatisticsService';
|
||||||
|
export { StatusService } from './services/StatusService';
|
||||||
export { TaskService } from './services/TaskService';
|
export { TaskService } from './services/TaskService';
|
||||||
export { TimeTrackingService } from './services/TimeTrackingService';
|
export { TimeTrackingService } from './services/TimeTrackingService';
|
||||||
|
export { TransactionService } from './services/TransactionService';
|
||||||
export { UserService } from './services/UserService';
|
export { UserService } from './services/UserService';
|
||||||
|
export { WmsService } from './services/WmsService';
|
||||||
export { WorkShiftsService } from './services/WorkShiftsService';
|
export { WorkShiftsService } from './services/WorkShiftsService';
|
||||||
|
export { WorkShiftsPlanningService } from './services/WorkShiftsPlanningService';
|
||||||
|
|||||||
@@ -1,9 +0,0 @@
|
|||||||
/* 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>;
|
|
||||||
};
|
|
||||||
|
|
||||||
10
src/client/models/AddUserRequest.ts
Normal file
10
src/client/models/AddUserRequest.ts
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
export type AddUserRequest = {
|
||||||
|
userId: number;
|
||||||
|
sectionId: number;
|
||||||
|
isChief: boolean;
|
||||||
|
};
|
||||||
|
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
/* istanbul ignore file */
|
/* istanbul ignore file */
|
||||||
/* tslint:disable */
|
/* tslint:disable */
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
export type DealDeleteResponse = {
|
export type AddUserResponse = {
|
||||||
ok: boolean;
|
ok: boolean;
|
||||||
message: string;
|
message: string;
|
||||||
};
|
};
|
||||||
20
src/client/models/AttributeSchema.ts
Normal file
20
src/client/models/AttributeSchema.ts
Normal file
@@ -0,0 +1,20 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
import type { AttributeTypeSchema } from './AttributeTypeSchema';
|
||||||
|
export type AttributeSchema = {
|
||||||
|
label: string;
|
||||||
|
name: string;
|
||||||
|
isApplicableToGroup: boolean;
|
||||||
|
isShownOnDashboard: boolean;
|
||||||
|
isHighlightIfExpired: boolean;
|
||||||
|
isNullable: boolean;
|
||||||
|
defaultValue: (boolean | number | string | null);
|
||||||
|
typeId: number;
|
||||||
|
description: string;
|
||||||
|
id: number;
|
||||||
|
type: AttributeTypeSchema;
|
||||||
|
isDeleted: boolean;
|
||||||
|
};
|
||||||
|
|
||||||
11
src/client/models/AttributeTypeSchema.ts
Normal file
11
src/client/models/AttributeTypeSchema.ts
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
export type AttributeTypeSchema = {
|
||||||
|
id: number;
|
||||||
|
type: string;
|
||||||
|
name: string;
|
||||||
|
isDeleted: boolean;
|
||||||
|
};
|
||||||
|
|
||||||
@@ -8,5 +8,6 @@ export type AuthLoginRequest = {
|
|||||||
hash: string;
|
hash: string;
|
||||||
id: number;
|
id: number;
|
||||||
photo_url?: (string | null);
|
photo_url?: (string | null);
|
||||||
|
invite_code?: (string | null);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
16
src/client/models/BaseAttributeSchema.ts
Normal file
16
src/client/models/BaseAttributeSchema.ts
Normal file
@@ -0,0 +1,16 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
export type BaseAttributeSchema = {
|
||||||
|
label: string;
|
||||||
|
name: string;
|
||||||
|
isApplicableToGroup: boolean;
|
||||||
|
isShownOnDashboard: boolean;
|
||||||
|
isHighlightIfExpired: boolean;
|
||||||
|
isNullable: boolean;
|
||||||
|
defaultValue: (boolean | number | string | null);
|
||||||
|
typeId: number;
|
||||||
|
description: string;
|
||||||
|
};
|
||||||
|
|
||||||
9
src/client/models/BaseBoardSchema.ts
Normal file
9
src/client/models/BaseBoardSchema.ts
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
export type BaseBoardSchema = {
|
||||||
|
name: string;
|
||||||
|
projectId: number;
|
||||||
|
};
|
||||||
|
|
||||||
10
src/client/models/BaseCardTagSchema.ts
Normal file
10
src/client/models/BaseCardTagSchema.ts
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
export type BaseCardTagSchema = {
|
||||||
|
name: string;
|
||||||
|
projectId: number;
|
||||||
|
tagColorId: number;
|
||||||
|
};
|
||||||
|
|
||||||
9
src/client/models/BaseMessageSchema.ts
Normal file
9
src/client/models/BaseMessageSchema.ts
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
export type BaseMessageSchema = {
|
||||||
|
text: string;
|
||||||
|
chatId: number;
|
||||||
|
};
|
||||||
|
|
||||||
9
src/client/models/BasePlaceSchema.ts
Normal file
9
src/client/models/BasePlaceSchema.ts
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
export type BasePlaceSchema = {
|
||||||
|
parentId: (number | null);
|
||||||
|
placeTypeId: number;
|
||||||
|
};
|
||||||
|
|
||||||
9
src/client/models/BasePlaceTypeSchema.ts
Normal file
9
src/client/models/BasePlaceTypeSchema.ts
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
export type BasePlaceTypeSchema = {
|
||||||
|
name: string;
|
||||||
|
parentId: (number | null);
|
||||||
|
};
|
||||||
|
|
||||||
10
src/client/models/BasePlaceTypeWithCountSchema.ts
Normal file
10
src/client/models/BasePlaceTypeWithCountSchema.ts
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
export type BasePlaceTypeWithCountSchema = {
|
||||||
|
name: string;
|
||||||
|
parentId: (number | null);
|
||||||
|
childCount: number;
|
||||||
|
};
|
||||||
|
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
/* istanbul ignore file */
|
/* istanbul ignore file */
|
||||||
/* tslint:disable */
|
/* tslint:disable */
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
export type DealCreateRequest = {
|
export type BaseProjectSchema = {
|
||||||
name: string;
|
name: string;
|
||||||
};
|
};
|
||||||
|
|
||||||
9
src/client/models/BaseStatusSchema.ts
Normal file
9
src/client/models/BaseStatusSchema.ts
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
export type BaseStatusSchema = {
|
||||||
|
name: string;
|
||||||
|
boardId: number;
|
||||||
|
};
|
||||||
|
|
||||||
9
src/client/models/BaseTransactionTagSchema.ts
Normal file
9
src/client/models/BaseTransactionTagSchema.ts
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
export type BaseTransactionTagSchema = {
|
||||||
|
name: string;
|
||||||
|
isIncome: boolean;
|
||||||
|
};
|
||||||
|
|
||||||
15
src/client/models/BoardSchema.ts
Normal file
15
src/client/models/BoardSchema.ts
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
import type { ProjectSchema } from './ProjectSchema';
|
||||||
|
import type { StatusSchema } from './StatusSchema';
|
||||||
|
export type BoardSchema = {
|
||||||
|
name: string;
|
||||||
|
projectId: number;
|
||||||
|
id: number;
|
||||||
|
ordinalNumber: number;
|
||||||
|
statuses: Array<StatusSchema>;
|
||||||
|
project: ProjectSchema;
|
||||||
|
};
|
||||||
|
|
||||||
8
src/client/models/Body_parse_deals_excel.ts
Normal file
8
src/client/models/Body_parse_deals_excel.ts
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
export type Body_parse_deals_excel = {
|
||||||
|
upload_file: Blob;
|
||||||
|
};
|
||||||
|
|
||||||
8
src/client/models/Body_send_messages_with_files.ts
Normal file
8
src/client/models/Body_send_messages_with_files.ts
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
export type Body_send_messages_with_files = {
|
||||||
|
files: Array<Blob>;
|
||||||
|
};
|
||||||
|
|
||||||
8
src/client/models/Body_upload_passport_image.ts
Normal file
8
src/client/models/Body_upload_passport_image.ts
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
export type Body_upload_passport_image = {
|
||||||
|
upload_file: Blob;
|
||||||
|
};
|
||||||
|
|
||||||
12
src/client/models/BoxSchema.ts
Normal file
12
src/client/models/BoxSchema.ts
Normal file
@@ -0,0 +1,12 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
import type { ShippingProductSchema } from './ShippingProductSchema';
|
||||||
|
export type BoxSchema = {
|
||||||
|
id: number;
|
||||||
|
palletId: (number | null);
|
||||||
|
cardId: (number | null);
|
||||||
|
shippingProducts: Array<ShippingProductSchema>;
|
||||||
|
};
|
||||||
|
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
/* istanbul ignore file */
|
/* istanbul ignore file */
|
||||||
/* tslint:disable */
|
/* tslint:disable */
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
export type CreateDealBillRequest = {
|
export type CancelCardBillRequest = {
|
||||||
dealId: number;
|
cardId: number;
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
/* istanbul ignore file */
|
/* istanbul ignore file */
|
||||||
/* tslint:disable */
|
/* tslint:disable */
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
export type CancelDealBillResponse = {
|
export type CancelCardBillResponse = {
|
||||||
ok: boolean;
|
ok: boolean;
|
||||||
message: string;
|
message: string;
|
||||||
};
|
};
|
||||||
@@ -2,8 +2,8 @@
|
|||||||
/* istanbul ignore file */
|
/* istanbul ignore file */
|
||||||
/* tslint:disable */
|
/* tslint:disable */
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
export type DealAddKitRequest = {
|
export type CardAddKitRequest = {
|
||||||
dealId: number;
|
cardId: number;
|
||||||
kitId: number;
|
kitId: number;
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
/* istanbul ignore file */
|
/* istanbul ignore file */
|
||||||
/* tslint:disable */
|
/* tslint:disable */
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
export type DealAddKitResponse = {
|
export type CardAddKitResponse = {
|
||||||
ok: boolean;
|
ok: boolean;
|
||||||
message: string;
|
message: string;
|
||||||
};
|
};
|
||||||
10
src/client/models/CardAddProductRequest.ts
Normal file
10
src/client/models/CardAddProductRequest.ts
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
import type { CardProductSchema } from './CardProductSchema';
|
||||||
|
export type CardAddProductRequest = {
|
||||||
|
cardId: number;
|
||||||
|
product: CardProductSchema;
|
||||||
|
};
|
||||||
|
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
/* istanbul ignore file */
|
/* istanbul ignore file */
|
||||||
/* tslint:disable */
|
/* tslint:disable */
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
export type CreateDealBillResponse = {
|
export type CardAddProductResponse = {
|
||||||
ok: boolean;
|
ok: boolean;
|
||||||
message: string;
|
message: string;
|
||||||
};
|
};
|
||||||
@@ -2,8 +2,8 @@
|
|||||||
/* istanbul ignore file */
|
/* istanbul ignore file */
|
||||||
/* tslint:disable */
|
/* tslint:disable */
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
export type DealAddServiceRequest = {
|
export type CardAddServiceRequest = {
|
||||||
dealId: number;
|
cardId: number;
|
||||||
serviceId: number;
|
serviceId: number;
|
||||||
quantity: number;
|
quantity: number;
|
||||||
price: number;
|
price: number;
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
/* istanbul ignore file */
|
/* istanbul ignore file */
|
||||||
/* tslint:disable */
|
/* tslint:disable */
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
export type DealAddProductResponse = {
|
export type CardAddServiceResponse = {
|
||||||
ok: boolean;
|
ok: boolean;
|
||||||
message: string;
|
message: string;
|
||||||
};
|
};
|
||||||
10
src/client/models/CardAddServicesRequest.ts
Normal file
10
src/client/models/CardAddServicesRequest.ts
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
import type { CardServiceSchema } from './CardServiceSchema';
|
||||||
|
export type CardAddServicesRequest = {
|
||||||
|
cardId: number;
|
||||||
|
services: Array<CardServiceSchema>;
|
||||||
|
};
|
||||||
|
|
||||||
9
src/client/models/CardAddServicesResponse.ts
Normal file
9
src/client/models/CardAddServicesResponse.ts
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
export type CardAddServicesResponse = {
|
||||||
|
ok: boolean;
|
||||||
|
message: string;
|
||||||
|
};
|
||||||
|
|
||||||
@@ -2,8 +2,8 @@
|
|||||||
/* istanbul ignore file */
|
/* istanbul ignore file */
|
||||||
/* tslint:disable */
|
/* tslint:disable */
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
export type DealAddToGroupRequest = {
|
export type CardAddToGroupRequest = {
|
||||||
dealId: number;
|
cardId: number;
|
||||||
groupId: number;
|
groupId: number;
|
||||||
};
|
};
|
||||||
|
|
||||||
9
src/client/models/CardAddToGroupResponse.ts
Normal file
9
src/client/models/CardAddToGroupResponse.ts
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
export type CardAddToGroupResponse = {
|
||||||
|
ok: boolean;
|
||||||
|
message: string;
|
||||||
|
};
|
||||||
|
|
||||||
11
src/client/models/CardAttributeSchema.ts
Normal file
11
src/client/models/CardAttributeSchema.ts
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
import type { AttributeSchema } from './AttributeSchema';
|
||||||
|
export type CardAttributeSchema = {
|
||||||
|
value: (boolean | number | string | null);
|
||||||
|
cardId: number;
|
||||||
|
attribute: AttributeSchema;
|
||||||
|
};
|
||||||
|
|
||||||
@@ -2,8 +2,8 @@
|
|||||||
/* istanbul ignore file */
|
/* istanbul ignore file */
|
||||||
/* tslint:disable */
|
/* tslint:disable */
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
export type DealBillRequestSchema = {
|
export type CardBillRequestSchema = {
|
||||||
dealId: number;
|
cardId: number;
|
||||||
createdAt: string;
|
createdAt: string;
|
||||||
paid: boolean;
|
paid: boolean;
|
||||||
pdfUrl: (string | null);
|
pdfUrl: (string | null);
|
||||||
@@ -2,8 +2,8 @@
|
|||||||
/* istanbul ignore file */
|
/* istanbul ignore file */
|
||||||
/* tslint:disable */
|
/* tslint:disable */
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
export type DealChangeStatusRequest = {
|
export type CardChangeStatusRequest = {
|
||||||
dealId: number;
|
cardId: number;
|
||||||
newStatus: number;
|
newStatus: number;
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
/* istanbul ignore file */
|
/* istanbul ignore file */
|
||||||
/* tslint:disable */
|
/* tslint:disable */
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
export type DealChangeStatusResponse = {
|
export type CardChangeStatusResponse = {
|
||||||
ok: boolean;
|
ok: boolean;
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
/* istanbul ignore file */
|
/* istanbul ignore file */
|
||||||
/* tslint:disable */
|
/* tslint:disable */
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
export type DealCompleteRequest = {
|
export type CardCompleteRequest = {
|
||||||
dealId: number;
|
cardId: number;
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
/* istanbul ignore file */
|
/* istanbul ignore file */
|
||||||
/* tslint:disable */
|
/* tslint:disable */
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
export type DealCompleteResponse = {
|
export type CardCompleteResponse = {
|
||||||
ok: boolean;
|
ok: boolean;
|
||||||
message: string;
|
message: string;
|
||||||
};
|
};
|
||||||
9
src/client/models/CardCreateGroupResponse.ts
Normal file
9
src/client/models/CardCreateGroupResponse.ts
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
export type CardCreateGroupResponse = {
|
||||||
|
ok: boolean;
|
||||||
|
message: string;
|
||||||
|
};
|
||||||
|
|
||||||
8
src/client/models/CardCreateGuestUrlRequest.ts
Normal file
8
src/client/models/CardCreateGuestUrlRequest.ts
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
export type CardCreateGuestUrlRequest = {
|
||||||
|
cardId: number;
|
||||||
|
};
|
||||||
|
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
/* istanbul ignore file */
|
/* istanbul ignore file */
|
||||||
/* tslint:disable */
|
/* tslint:disable */
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
export type DealCreateGuestUrlResponse = {
|
export type CardCreateGuestUrlResponse = {
|
||||||
ok: boolean;
|
ok: boolean;
|
||||||
message: string;
|
message: string;
|
||||||
url: string;
|
url: string;
|
||||||
@@ -2,8 +2,8 @@
|
|||||||
/* istanbul ignore file */
|
/* istanbul ignore file */
|
||||||
/* tslint:disable */
|
/* tslint:disable */
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
export type DealDeleteProductRequest = {
|
export type CardDeleteProductRequest = {
|
||||||
dealId: number;
|
cardId: number;
|
||||||
productId: number;
|
productId: number;
|
||||||
};
|
};
|
||||||
|
|
||||||
9
src/client/models/CardDeleteProductResponse.ts
Normal file
9
src/client/models/CardDeleteProductResponse.ts
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
export type CardDeleteProductResponse = {
|
||||||
|
ok: boolean;
|
||||||
|
message: string;
|
||||||
|
};
|
||||||
|
|
||||||
@@ -2,8 +2,8 @@
|
|||||||
/* istanbul ignore file */
|
/* istanbul ignore file */
|
||||||
/* tslint:disable */
|
/* tslint:disable */
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
export type DealDeleteProductsRequest = {
|
export type CardDeleteProductsRequest = {
|
||||||
dealId: number;
|
cardId: number;
|
||||||
productIds: Array<number>;
|
productIds: Array<number>;
|
||||||
};
|
};
|
||||||
|
|
||||||
9
src/client/models/CardDeleteProductsResponse.ts
Normal file
9
src/client/models/CardDeleteProductsResponse.ts
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
export type CardDeleteProductsResponse = {
|
||||||
|
ok: boolean;
|
||||||
|
message: string;
|
||||||
|
};
|
||||||
|
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
/* istanbul ignore file */
|
/* istanbul ignore file */
|
||||||
/* tslint:disable */
|
/* tslint:disable */
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
export type DealDeleteRequest = {
|
export type CardDeleteRequest = {
|
||||||
dealId: number;
|
cardId: number;
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
/* istanbul ignore file */
|
/* istanbul ignore file */
|
||||||
/* tslint:disable */
|
/* tslint:disable */
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
export type DealPrefillResponse = {
|
export type CardDeleteResponse = {
|
||||||
ok: boolean;
|
ok: boolean;
|
||||||
message: string;
|
message: string;
|
||||||
};
|
};
|
||||||
@@ -2,8 +2,8 @@
|
|||||||
/* istanbul ignore file */
|
/* istanbul ignore file */
|
||||||
/* tslint:disable */
|
/* tslint:disable */
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
export type DealDeleteServiceRequest = {
|
export type CardDeleteServiceRequest = {
|
||||||
dealId: number;
|
cardId: number;
|
||||||
serviceId: number;
|
serviceId: number;
|
||||||
};
|
};
|
||||||
|
|
||||||
9
src/client/models/CardDeleteServiceResponse.ts
Normal file
9
src/client/models/CardDeleteServiceResponse.ts
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
export type CardDeleteServiceResponse = {
|
||||||
|
ok: boolean;
|
||||||
|
message: string;
|
||||||
|
};
|
||||||
|
|
||||||
@@ -2,8 +2,8 @@
|
|||||||
/* istanbul ignore file */
|
/* istanbul ignore file */
|
||||||
/* tslint:disable */
|
/* tslint:disable */
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
export type DealDeleteServicesRequest = {
|
export type CardDeleteServicesRequest = {
|
||||||
dealId: number;
|
cardId: number;
|
||||||
serviceIds: Array<number>;
|
serviceIds: Array<number>;
|
||||||
};
|
};
|
||||||
|
|
||||||
9
src/client/models/CardDeleteServicesResponse.ts
Normal file
9
src/client/models/CardDeleteServicesResponse.ts
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
export type CardDeleteServicesResponse = {
|
||||||
|
ok: boolean;
|
||||||
|
message: string;
|
||||||
|
};
|
||||||
|
|
||||||
@@ -3,9 +3,8 @@
|
|||||||
/* tslint:disable */
|
/* tslint:disable */
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
import type { UserSchema } from './UserSchema';
|
import type { UserSchema } from './UserSchema';
|
||||||
export type ActiveWorkShiftSchema = {
|
export type CardEmployeesSchema = {
|
||||||
id: number;
|
|
||||||
startedAt: string;
|
|
||||||
user: UserSchema;
|
user: UserSchema;
|
||||||
|
createdAt: string;
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -3,14 +3,16 @@
|
|||||||
/* tslint:disable */
|
/* tslint:disable */
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
import type { UserSchema } from './UserSchema';
|
import type { UserSchema } from './UserSchema';
|
||||||
export type DealGeneralInfoSchema = {
|
export type CardGeneralInfoSchema = {
|
||||||
|
attributes?: Record<string, (boolean | string | number | null)>;
|
||||||
name: string;
|
name: string;
|
||||||
isDeleted: boolean;
|
isDeleted: boolean;
|
||||||
isCompleted: boolean;
|
isCompleted: boolean;
|
||||||
comment: string;
|
comment: string;
|
||||||
shippingWarehouse?: (string | null);
|
|
||||||
deliveryDate?: (string | null);
|
|
||||||
receivingSlotDate?: (string | null);
|
|
||||||
manager?: (UserSchema | null);
|
manager?: (UserSchema | null);
|
||||||
|
boardId: number;
|
||||||
|
statusId: number;
|
||||||
|
clientId: (number | null);
|
||||||
|
tags: Array<string>;
|
||||||
};
|
};
|
||||||
|
|
||||||
9
src/client/models/CardGetAllResponse.ts
Normal file
9
src/client/models/CardGetAllResponse.ts
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
import type { CardSchema } from './CardSchema';
|
||||||
|
export type CardGetAllResponse = {
|
||||||
|
cards: Array<CardSchema>;
|
||||||
|
};
|
||||||
|
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
/* istanbul ignore file */
|
/* istanbul ignore file */
|
||||||
/* tslint:disable */
|
/* tslint:disable */
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
export type DealGroupChangeStatusRequest = {
|
export type CardGroupChangeStatusRequest = {
|
||||||
groupId: number;
|
groupId: number;
|
||||||
newStatus: number;
|
newStatus: number;
|
||||||
};
|
};
|
||||||
9
src/client/models/CardGroupChangeStatusResponse.ts
Normal file
9
src/client/models/CardGroupChangeStatusResponse.ts
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
export type CardGroupChangeStatusResponse = {
|
||||||
|
ok: boolean;
|
||||||
|
message: string;
|
||||||
|
};
|
||||||
|
|
||||||
@@ -3,10 +3,10 @@
|
|||||||
/* tslint:disable */
|
/* tslint:disable */
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
import type { GroupBillRequestSchema } from './GroupBillRequestSchema';
|
import type { GroupBillRequestSchema } from './GroupBillRequestSchema';
|
||||||
export type DealGroupSchema = {
|
export type CardGroupSchema = {
|
||||||
id: number;
|
id: number;
|
||||||
name?: (string | null);
|
name?: (string | null);
|
||||||
lexorank: string;
|
lexorank: string;
|
||||||
billRequest?: (GroupBillRequestSchema | null);
|
billRequests?: Array<GroupBillRequestSchema>;
|
||||||
};
|
};
|
||||||
|
|
||||||
9
src/client/models/CardGroupUpdateRequest.ts
Normal file
9
src/client/models/CardGroupUpdateRequest.ts
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
import type { CardGroupSchema } from './CardGroupSchema';
|
||||||
|
export type CardGroupUpdateRequest = {
|
||||||
|
data: CardGroupSchema;
|
||||||
|
};
|
||||||
|
|
||||||
9
src/client/models/CardGroupUpdateResponse.ts
Normal file
9
src/client/models/CardGroupUpdateResponse.ts
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
export type CardGroupUpdateResponse = {
|
||||||
|
ok: boolean;
|
||||||
|
message: string;
|
||||||
|
};
|
||||||
|
|
||||||
9
src/client/models/CardPrefillRequest.ts
Normal file
9
src/client/models/CardPrefillRequest.ts
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
export type CardPrefillRequest = {
|
||||||
|
oldCardId: number;
|
||||||
|
newCardId: number;
|
||||||
|
};
|
||||||
|
|
||||||
9
src/client/models/CardPrefillResponse.ts
Normal file
9
src/client/models/CardPrefillResponse.ts
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
export type CardPrefillResponse = {
|
||||||
|
ok: boolean;
|
||||||
|
message: string;
|
||||||
|
};
|
||||||
|
|
||||||
@@ -2,8 +2,8 @@
|
|||||||
/* istanbul ignore file */
|
/* istanbul ignore file */
|
||||||
/* tslint:disable */
|
/* tslint:disable */
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
export type DealProductAddKitRequest = {
|
export type CardProductAddKitRequest = {
|
||||||
dealId: number;
|
cardId: number;
|
||||||
productId: number;
|
productId: number;
|
||||||
kitId: number;
|
kitId: number;
|
||||||
};
|
};
|
||||||
9
src/client/models/CardProductAddKitResponse.ts
Normal file
9
src/client/models/CardProductAddKitResponse.ts
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
export type CardProductAddKitResponse = {
|
||||||
|
ok: boolean;
|
||||||
|
message: string;
|
||||||
|
};
|
||||||
|
|
||||||
@@ -2,11 +2,11 @@
|
|||||||
/* istanbul ignore file */
|
/* istanbul ignore file */
|
||||||
/* tslint:disable */
|
/* tslint:disable */
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
import type { DealProductServiceSchema } from './DealProductServiceSchema';
|
import type { CardProductServiceSchema } from './CardProductServiceSchema';
|
||||||
import type { ProductSchema } from './ProductSchema';
|
import type { ProductSchema } from './ProductSchema';
|
||||||
export type DealProductSchema = {
|
export type CardProductSchema = {
|
||||||
product: ProductSchema;
|
product: ProductSchema;
|
||||||
services: Array<DealProductServiceSchema>;
|
services: Array<CardProductServiceSchema>;
|
||||||
quantity: number;
|
quantity: number;
|
||||||
comment?: string;
|
comment?: string;
|
||||||
};
|
};
|
||||||
@@ -4,7 +4,7 @@
|
|||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
import type { ServiceSchema } from './ServiceSchema';
|
import type { ServiceSchema } from './ServiceSchema';
|
||||||
import type { UserSchema } from './UserSchema';
|
import type { UserSchema } from './UserSchema';
|
||||||
export type DealProductServiceSchema = {
|
export type CardProductServiceSchema = {
|
||||||
service: ServiceSchema;
|
service: ServiceSchema;
|
||||||
price: number;
|
price: number;
|
||||||
employees: Array<UserSchema>;
|
employees: Array<UserSchema>;
|
||||||
@@ -3,14 +3,13 @@
|
|||||||
/* tslint:disable */
|
/* tslint:disable */
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
import type { BaseMarketplaceSchema } from './BaseMarketplaceSchema';
|
import type { BaseMarketplaceSchema } from './BaseMarketplaceSchema';
|
||||||
import type { ServicePriceCategorySchema } from './ServicePriceCategorySchema';
|
export type CardQuickCreateRequest = {
|
||||||
export type DealQuickCreateRequest = {
|
|
||||||
name: string;
|
name: string;
|
||||||
clientName: string;
|
clientName: (string | null);
|
||||||
comment: string;
|
comment: string;
|
||||||
acceptanceDate: string;
|
acceptanceDate: string;
|
||||||
shippingWarehouse: string;
|
shippingWarehouse: (string | null);
|
||||||
baseMarketplace: BaseMarketplaceSchema;
|
baseMarketplace: (BaseMarketplaceSchema | null);
|
||||||
category?: (ServicePriceCategorySchema | null);
|
statusId: number;
|
||||||
};
|
};
|
||||||
|
|
||||||
8
src/client/models/CardQuickCreateResponse.ts
Normal file
8
src/client/models/CardQuickCreateResponse.ts
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
export type CardQuickCreateResponse = {
|
||||||
|
cardId: number;
|
||||||
|
};
|
||||||
|
|
||||||
8
src/client/models/CardRecalculatePriceRequest.ts
Normal file
8
src/client/models/CardRecalculatePriceRequest.ts
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
export type CardRecalculatePriceRequest = {
|
||||||
|
cardId: number;
|
||||||
|
};
|
||||||
|
|
||||||
9
src/client/models/CardRecalculatePriceResponse.ts
Normal file
9
src/client/models/CardRecalculatePriceResponse.ts
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
export type CardRecalculatePriceResponse = {
|
||||||
|
ok: boolean;
|
||||||
|
message: string;
|
||||||
|
};
|
||||||
|
|
||||||
8
src/client/models/CardRemoveFromGroupRequest.ts
Normal file
8
src/client/models/CardRemoveFromGroupRequest.ts
Normal file
@@ -0,0 +1,8 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
export type CardRemoveFromGroupRequest = {
|
||||||
|
cardId: number;
|
||||||
|
};
|
||||||
|
|
||||||
@@ -2,7 +2,7 @@
|
|||||||
/* istanbul ignore file */
|
/* istanbul ignore file */
|
||||||
/* tslint:disable */
|
/* tslint:disable */
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
export type CreatePriceCategoryResponse = {
|
export type CardRemoveFromGroupResponse = {
|
||||||
ok: boolean;
|
ok: boolean;
|
||||||
message: string;
|
message: string;
|
||||||
};
|
};
|
||||||
48
src/client/models/CardSchema.ts
Normal file
48
src/client/models/CardSchema.ts
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
import type { BoardSchema } from './BoardSchema';
|
||||||
|
import type { BoxSchema } from './BoxSchema';
|
||||||
|
import type { CardAttributeSchema } from './CardAttributeSchema';
|
||||||
|
import type { CardBillRequestSchema } from './CardBillRequestSchema';
|
||||||
|
import type { CardEmployeesSchema } from './CardEmployeesSchema';
|
||||||
|
import type { CardGroupSchema } from './CardGroupSchema';
|
||||||
|
import type { CardProductSchema } from './CardProductSchema';
|
||||||
|
import type { CardServiceSchema } from './CardServiceSchema';
|
||||||
|
import type { CardStatusHistorySchema } from './CardStatusHistorySchema';
|
||||||
|
import type { CardTagSchema } from './CardTagSchema';
|
||||||
|
import type { ChatSchema } from './ChatSchema';
|
||||||
|
import type { ClientSchema } from './ClientSchema';
|
||||||
|
import type { PalletSchema } from './PalletSchema';
|
||||||
|
import type { ShippingWarehouseSchema } from './ShippingWarehouseSchema';
|
||||||
|
import type { StatusSchema } from './StatusSchema';
|
||||||
|
import type { UserSchema } from './UserSchema';
|
||||||
|
export type CardSchema = {
|
||||||
|
id: number;
|
||||||
|
name: string;
|
||||||
|
comment: string;
|
||||||
|
createdAt: string;
|
||||||
|
status: StatusSchema;
|
||||||
|
board: BoardSchema;
|
||||||
|
statusHistory: Array<CardStatusHistorySchema>;
|
||||||
|
isDeleted: boolean;
|
||||||
|
isCompleted: boolean;
|
||||||
|
isServicesProfitAccounted: boolean;
|
||||||
|
isLocked: boolean;
|
||||||
|
services: Array<CardServiceSchema>;
|
||||||
|
products: Array<CardProductSchema>;
|
||||||
|
clientId: (number | null);
|
||||||
|
client: (ClientSchema | null);
|
||||||
|
shippingWarehouse?: (ShippingWarehouseSchema | string | null);
|
||||||
|
billRequests?: Array<CardBillRequestSchema>;
|
||||||
|
group?: (CardGroupSchema | null);
|
||||||
|
manager?: (UserSchema | null);
|
||||||
|
pallets?: Array<PalletSchema>;
|
||||||
|
boxes?: Array<BoxSchema>;
|
||||||
|
employees?: Array<CardEmployeesSchema>;
|
||||||
|
tags?: Array<CardTagSchema>;
|
||||||
|
attributes: Array<CardAttributeSchema>;
|
||||||
|
chat: (ChatSchema | null);
|
||||||
|
};
|
||||||
|
|
||||||
@@ -4,7 +4,7 @@
|
|||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
import type { ServiceSchema } from './ServiceSchema';
|
import type { ServiceSchema } from './ServiceSchema';
|
||||||
import type { UserSchema } from './UserSchema';
|
import type { UserSchema } from './UserSchema';
|
||||||
export type DealServiceSchema = {
|
export type CardServiceSchema = {
|
||||||
service: ServiceSchema;
|
service: ServiceSchema;
|
||||||
quantity: number;
|
quantity: number;
|
||||||
price: number;
|
price: number;
|
||||||
@@ -2,8 +2,8 @@
|
|||||||
/* istanbul ignore file */
|
/* istanbul ignore file */
|
||||||
/* tslint:disable */
|
/* tslint:disable */
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
export type DealServicesCopyRequest = {
|
export type CardServicesCopyRequest = {
|
||||||
dealId: number;
|
cardId: number;
|
||||||
sourceProductId: number;
|
sourceProductId: number;
|
||||||
destinationProductIds: Array<number>;
|
destinationProductIds: Array<number>;
|
||||||
};
|
};
|
||||||
9
src/client/models/CardServicesCopyResponse.ts
Normal file
9
src/client/models/CardServicesCopyResponse.ts
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
export type CardServicesCopyResponse = {
|
||||||
|
ok: boolean;
|
||||||
|
message: string;
|
||||||
|
};
|
||||||
|
|
||||||
@@ -2,12 +2,13 @@
|
|||||||
/* istanbul ignore file */
|
/* istanbul ignore file */
|
||||||
/* tslint:disable */
|
/* tslint:disable */
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
|
import type { StatusSchema } from './StatusSchema';
|
||||||
import type { UserSchema } from './UserSchema';
|
import type { UserSchema } from './UserSchema';
|
||||||
export type DealStatusHistorySchema = {
|
export type CardStatusHistorySchema = {
|
||||||
user: UserSchema;
|
user: UserSchema;
|
||||||
changedAt: string;
|
changedAt: string;
|
||||||
fromStatus: number;
|
fromStatus: StatusSchema;
|
||||||
toStatus: number;
|
toStatus: StatusSchema;
|
||||||
nextStatusDeadline: (string | null);
|
nextStatusDeadline: (string | null);
|
||||||
comment?: (string | null);
|
comment?: (string | null);
|
||||||
};
|
};
|
||||||
30
src/client/models/CardSummary.ts
Normal file
30
src/client/models/CardSummary.ts
Normal file
@@ -0,0 +1,30 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
import type { BaseMarketplaceSchema } from './BaseMarketplaceSchema';
|
||||||
|
import type { BoardSchema } from './BoardSchema';
|
||||||
|
import type { CardAttributeSchema } from './CardAttributeSchema';
|
||||||
|
import type { CardBillRequestSchema } from './CardBillRequestSchema';
|
||||||
|
import type { CardGroupSchema } from './CardGroupSchema';
|
||||||
|
import type { CardTagSchema } from './CardTagSchema';
|
||||||
|
import type { StatusSchema } from './StatusSchema';
|
||||||
|
export type CardSummary = {
|
||||||
|
id: number;
|
||||||
|
name: string;
|
||||||
|
clientName: (string | null);
|
||||||
|
createdAt: string;
|
||||||
|
status: StatusSchema;
|
||||||
|
board: BoardSchema;
|
||||||
|
totalPrice: number;
|
||||||
|
rank: number;
|
||||||
|
baseMarketplace?: (BaseMarketplaceSchema | null);
|
||||||
|
totalProducts: number;
|
||||||
|
tags: Array<CardTagSchema>;
|
||||||
|
attributes: Array<CardAttributeSchema>;
|
||||||
|
shipmentWarehouseId: (number | null);
|
||||||
|
shipmentWarehouseName: (string | null);
|
||||||
|
billRequests: Array<CardBillRequestSchema>;
|
||||||
|
group?: (CardGroupSchema | null);
|
||||||
|
};
|
||||||
|
|
||||||
@@ -2,9 +2,9 @@
|
|||||||
/* istanbul ignore file */
|
/* istanbul ignore file */
|
||||||
/* tslint:disable */
|
/* tslint:disable */
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
export type DealSummaryReorderRequest = {
|
export type CardSummaryReorderRequest = {
|
||||||
dealId: number;
|
cardId: number;
|
||||||
status: number;
|
statusId: number;
|
||||||
index: number;
|
index: number;
|
||||||
deadline?: (string | null);
|
deadline?: (string | null);
|
||||||
comment?: (string | null);
|
comment?: (string | null);
|
||||||
11
src/client/models/CardSummaryResponse.ts
Normal file
11
src/client/models/CardSummaryResponse.ts
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
import type { CardSummary } from './CardSummary';
|
||||||
|
import type { PaginationInfoSchema } from './PaginationInfoSchema';
|
||||||
|
export type CardSummaryResponse = {
|
||||||
|
summaries: Array<CardSummary>;
|
||||||
|
paginationInfo: PaginationInfoSchema;
|
||||||
|
};
|
||||||
|
|
||||||
11
src/client/models/CardTagColorSchema.ts
Normal file
11
src/client/models/CardTagColorSchema.ts
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
export type CardTagColorSchema = {
|
||||||
|
id: number;
|
||||||
|
color: string;
|
||||||
|
backgroundColor: string;
|
||||||
|
label: string;
|
||||||
|
};
|
||||||
|
|
||||||
13
src/client/models/CardTagSchema.ts
Normal file
13
src/client/models/CardTagSchema.ts
Normal file
@@ -0,0 +1,13 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
import type { CardTagColorSchema } from './CardTagColorSchema';
|
||||||
|
export type CardTagSchema = {
|
||||||
|
name: string;
|
||||||
|
projectId: number;
|
||||||
|
tagColorId: number;
|
||||||
|
id: number;
|
||||||
|
tagColor: CardTagColorSchema;
|
||||||
|
};
|
||||||
|
|
||||||
10
src/client/models/CardUpdateGeneralInfoRequest.ts
Normal file
10
src/client/models/CardUpdateGeneralInfoRequest.ts
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
import type { CardGeneralInfoSchema } from './CardGeneralInfoSchema';
|
||||||
|
export type CardUpdateGeneralInfoRequest = {
|
||||||
|
cardId: number;
|
||||||
|
data: CardGeneralInfoSchema;
|
||||||
|
};
|
||||||
|
|
||||||
9
src/client/models/CardUpdateGeneralInfoResponse.ts
Normal file
9
src/client/models/CardUpdateGeneralInfoResponse.ts
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
export type CardUpdateGeneralInfoResponse = {
|
||||||
|
ok: boolean;
|
||||||
|
message: string;
|
||||||
|
};
|
||||||
|
|
||||||
@@ -2,8 +2,8 @@
|
|||||||
/* istanbul ignore file */
|
/* istanbul ignore file */
|
||||||
/* tslint:disable */
|
/* tslint:disable */
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
export type DealUpdateProductQuantityRequest = {
|
export type CardUpdateProductQuantityRequest = {
|
||||||
dealId: number;
|
cardId: number;
|
||||||
productId: number;
|
productId: number;
|
||||||
quantity: number;
|
quantity: number;
|
||||||
};
|
};
|
||||||
9
src/client/models/CardUpdateProductQuantityResponse.ts
Normal file
9
src/client/models/CardUpdateProductQuantityResponse.ts
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
export type CardUpdateProductQuantityResponse = {
|
||||||
|
ok: boolean;
|
||||||
|
message: string;
|
||||||
|
};
|
||||||
|
|
||||||
10
src/client/models/CardUpdateProductRequest.ts
Normal file
10
src/client/models/CardUpdateProductRequest.ts
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
import type { CardProductSchema } from './CardProductSchema';
|
||||||
|
export type CardUpdateProductRequest = {
|
||||||
|
cardId: number;
|
||||||
|
product: CardProductSchema;
|
||||||
|
};
|
||||||
|
|
||||||
9
src/client/models/CardUpdateProductResponse.ts
Normal file
9
src/client/models/CardUpdateProductResponse.ts
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
export type CardUpdateProductResponse = {
|
||||||
|
ok: boolean;
|
||||||
|
message: string;
|
||||||
|
};
|
||||||
|
|
||||||
@@ -2,8 +2,8 @@
|
|||||||
/* istanbul ignore file */
|
/* istanbul ignore file */
|
||||||
/* tslint:disable */
|
/* tslint:disable */
|
||||||
/* eslint-disable */
|
/* eslint-disable */
|
||||||
export type DealUpdateServiceQuantityRequest = {
|
export type CardUpdateServiceQuantityRequest = {
|
||||||
dealId: number;
|
cardId: number;
|
||||||
serviceId: number;
|
serviceId: number;
|
||||||
quantity: number;
|
quantity: number;
|
||||||
};
|
};
|
||||||
9
src/client/models/CardUpdateServiceQuantityResponse.ts
Normal file
9
src/client/models/CardUpdateServiceQuantityResponse.ts
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
export type CardUpdateServiceQuantityResponse = {
|
||||||
|
ok: boolean;
|
||||||
|
message: string;
|
||||||
|
};
|
||||||
|
|
||||||
10
src/client/models/CardUpdateServiceRequest.ts
Normal file
10
src/client/models/CardUpdateServiceRequest.ts
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
/* generated using openapi-typescript-codegen -- do not edit */
|
||||||
|
/* istanbul ignore file */
|
||||||
|
/* tslint:disable */
|
||||||
|
/* eslint-disable */
|
||||||
|
import type { CardServiceSchema } from './CardServiceSchema';
|
||||||
|
export type CardUpdateServiceRequest = {
|
||||||
|
cardId: number;
|
||||||
|
service: CardServiceSchema;
|
||||||
|
};
|
||||||
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user