/** * The type of inventory adjustment reason. * * Custom reasons use `CUSTOM` and include a `custom_reason_id`. Standard * seller-selectable reasons use `RECEIVED`, `DAMAGED`, `THEFT`, `LOST`, * `RETURNED`, `SPOILAGE_WASTE`, `SAMPLES_PROMOTIONAL`, `INTERNAL_USE`, * `VENDOR_RETURN`, or `PRODUCTION_WASTE`. * * The writable standard reasons with direction `INCREASE` are `RECEIVED` * and `RETURNED`. The writable standard reasons with direction `DECREASE` * are `DAMAGED`, `THEFT`, `LOST`, `SPOILAGE_WASTE`, * `SAMPLES_PROMOTIONAL`, `INTERNAL_USE`, `VENDOR_RETURN`, and * `PRODUCTION_WASTE`. * * The `SALE`, `RECOUNT`, `TRANSFER`, `IN_TRANSIT`, and `CANCELED_SALE` * values identify system-generated inventory events. These values can be * returned by Square, but cannot be used when writing inventory adjustments. */ export declare const InventoryAdjustmentReasonIdType: { readonly Received: "RECEIVED"; readonly Damaged: "DAMAGED"; readonly Theft: "THEFT"; readonly Lost: "LOST"; readonly Returned: "RETURNED"; readonly SpoilageWaste: "SPOILAGE_WASTE"; readonly SamplesPromotional: "SAMPLES_PROMOTIONAL"; readonly InternalUse: "INTERNAL_USE"; readonly VendorReturn: "VENDOR_RETURN"; readonly ProductionWaste: "PRODUCTION_WASTE"; readonly Sale: "SALE"; readonly Recount: "RECOUNT"; readonly Transfer: "TRANSFER"; readonly InTransit: "IN_TRANSIT"; readonly CanceledSale: "CANCELED_SALE"; readonly Custom: "CUSTOM"; }; export type InventoryAdjustmentReasonIdType = (typeof InventoryAdjustmentReasonIdType)[keyof typeof InventoryAdjustmentReasonIdType];