@posx/core 5.5.230 → 5.5.232

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
@@ -4231,6 +4231,10 @@ declare module '@posx/core/types/product.type' {
4231
4231
  * minimum order quantity before you can order
4232
4232
  */
4233
4233
  min_order: number;
4234
+ /**
4235
+ * Indicates whether the category is delisted
4236
+ */
4237
+ is_delisted: boolean;
4234
4238
  }
4235
4239
  export interface ICategory extends ICoreCategory {
4236
4240
  image_url: string;
@@ -4265,6 +4269,7 @@ declare module '@posx/core/types/product.type' {
4265
4269
  uid: string;
4266
4270
  max_order: number;
4267
4271
  min_order: number;
4272
+ is_delisted: boolean;
4268
4273
  constructor();
4269
4274
  }
4270
4275
  export class Category extends ProductBase implements ICategory {
@@ -4277,6 +4282,7 @@ declare module '@posx/core/types/product.type' {
4277
4282
  visibility: Visibility[];
4278
4283
  printing_sequence: number;
4279
4284
  type: CategoryType;
4285
+ is_delisted: boolean;
4280
4286
  subcategories: any[];
4281
4287
  uid: string;
4282
4288
  max_order: number;