UNPKG

@bit-ui-libs/common

Version:
50 lines (44 loc) 935 B
import { ChainTypeEnum } from '../asset'; export interface Inventory { id: string; userId: string; orgId: string; name: string; isArchived: boolean; createdAt: string; archivedBy: string; archivedAt: string; archivedOrgId: string; } export interface AddInventoryItemRequest { inventoryId: string; serviceId: string; qrCodeId?: string; vdtType: ChainTypeEnum; typeId: string; bitSysId: string; } export interface InventoryItem { isArchived: boolean; createdAt: string; archivedBy: string; archivedAt: string; archivedOrgId: string; name: string; inventoryId: string; serviceId: string; qrCodeId: string; vdtType: ChainTypeEnum; typeId: string; bitSysId: string; isSelect?: boolean; } export interface InventoryItemRequest { inventoryId: string; name?: string; } export interface DeleteInventoryItemRequest { inventoryId: string; qrCodeId: string; orgId?: string; }