Skip to content

Commit

Permalink
feat(customer-order): Position assortment expand
Browse files Browse the repository at this point in the history
  • Loading branch information
MonsterDeveloper committed Jul 17, 2024
1 parent 339021a commit ecf0f9d
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion src/endpoints/customer-order/types.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import {
type AccountModel,
type AssortmentEntity,
type AssortmentModel,
type Attribute,
type BooleanFilter,
type DateTime,
Expand Down Expand Up @@ -75,9 +76,16 @@ export interface CustomerOrderPosition
vatEnabled: boolean;
}

/** Модель позиции заказа покупателя */
/**
* Модель позиции заказа покупателя
*
* {@linkcode CustomerOrderPosition}
* */
export interface CustomerOrderPositionModel extends Model {
object: CustomerOrderPosition;
expandable: {
assortment: AssortmentModel;
};
}

export interface CustomerOrder extends Idable, Meta<Entity.CustomerOrder> {
Expand Down

0 comments on commit ecf0f9d

Please sign in to comment.