2025-12-04 21:05:57 +03:30
|
|
|
|
|
|
|
|
/* !!! This is code generated by Prisma. Do not edit directly. !!! */
|
|
|
|
|
/* eslint-disable */
|
|
|
|
|
// biome-ignore-all lint: generated file
|
|
|
|
|
// @ts-nocheck
|
|
|
|
|
/*
|
|
|
|
|
* This file exports all enum related types from the schema.
|
|
|
|
|
*
|
|
|
|
|
* 🟢 You can import this file directly.
|
|
|
|
|
*/
|
|
|
|
|
|
2025-12-26 22:09:46 +03:30
|
|
|
export const PaymentMethodType = {
|
2025-12-24 21:24:59 +03:30
|
|
|
CASH: 'CASH',
|
|
|
|
|
CARD: 'CARD',
|
|
|
|
|
BANK: 'BANK',
|
|
|
|
|
CHECK: 'CHECK',
|
|
|
|
|
OTHER: 'OTHER'
|
2025-12-09 13:59:07 +03:30
|
|
|
} as const
|
|
|
|
|
|
2025-12-26 22:09:46 +03:30
|
|
|
export type PaymentMethodType = (typeof PaymentMethodType)[keyof typeof PaymentMethodType]
|
2025-12-09 13:59:07 +03:30
|
|
|
|
|
|
|
|
|
2025-12-26 22:09:46 +03:30
|
|
|
export const PurchaseReceiptStatus = {
|
|
|
|
|
UNPAID: 'UNPAID',
|
|
|
|
|
PARTIALLY_PAID: 'PARTIALLY_PAID',
|
|
|
|
|
PAID: 'PAID'
|
|
|
|
|
} as const
|
|
|
|
|
|
|
|
|
|
export type PurchaseReceiptStatus = (typeof PurchaseReceiptStatus)[keyof typeof PurchaseReceiptStatus]
|