Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,9 @@ export interface AdminStockLocationAddress {
metadata: Record<string, unknown> | null
}

/**
* Stock location details.
*/
export interface AdminStockLocation {
/**
* The ID of the stock location.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
/**
* Address details for creating or updating a stock location address.
*/
interface AdminUpsertStockLocationAddress {
/**
* The first line of the address.
Expand Down Expand Up @@ -41,6 +44,9 @@ interface AdminUpsertStockLocationAddress {
metadata?: Record<string, unknown>
}

/**
* Data for creating a stock location.
*/
export interface AdminCreateStockLocation {
/**
* The name of the stock location.
Expand All @@ -63,6 +69,9 @@ export interface AdminCreateStockLocation {
metadata?: Record<string, unknown>
}

/**
* Data for updating a stock location.
*/
export interface AdminUpdateStockLocation {
/**
* The name of the stock location.
Expand Down
Loading