@posx/core 5.5.10 → 5.5.12

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/build/index.d.ts CHANGED
@@ -3621,6 +3621,10 @@ declare module '@posx/core/types/product.type' {
3621
3621
  * The type of product.
3622
3622
  */
3623
3623
  type: ProductType;
3624
+ /**
3625
+ * The visibility of the item.
3626
+ */
3627
+ visibility: Array<Visibility>;
3624
3628
  /**
3625
3629
  * The barcode of the item.
3626
3630
  */
@@ -3652,6 +3656,7 @@ declare module '@posx/core/types/product.type' {
3652
3656
  image_file_path: string;
3653
3657
  image_thumbnail_url: string;
3654
3658
  image_thumbnail_file_path: string;
3659
+ visibility: Visibility[];
3655
3660
  sku: string;
3656
3661
  type: ProductType;
3657
3662
  barcode: string;
@@ -3744,6 +3749,10 @@ declare module '@posx/core/types/product.type' {
3744
3749
  * Indicates whether the item is credit reward exempt
3745
3750
  */
3746
3751
  is_credit_reward_exempt: boolean;
3752
+ /**
3753
+ * Indicates whether the item is internal and displayed in the POS only
3754
+ */
3755
+ is_internal: boolean;
3747
3756
  /**
3748
3757
  * Modifier IDs of the item
3749
3758
  */
@@ -3778,6 +3787,7 @@ declare module '@posx/core/types/product.type' {
3778
3787
  image_file_path: string;
3779
3788
  image_thumbnail_url: string;
3780
3789
  image_thumbnail_file_path: string;
3790
+ visibility: Visibility[];
3781
3791
  codename: string;
3782
3792
  sku: string;
3783
3793
  recipe: string;
@@ -3804,6 +3814,7 @@ declare module '@posx/core/types/product.type' {
3804
3814
  is_service_charge_exempt: boolean;
3805
3815
  is_point_reward_exempt: boolean;
3806
3816
  is_credit_reward_exempt: boolean;
3817
+ is_internal: boolean;
3807
3818
  uid: string;
3808
3819
  kitchen_printers_uids: any[];
3809
3820
  order_printers_uids: any[];