@posx/core 5.5.170 → 5.5.171

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
@@ -4260,6 +4260,8 @@ declare module '@posx/core/types/product.type' {
4260
4260
  combo_item: ICoreItem;
4261
4261
  /** Price of the item in combo */
4262
4262
  price: number;
4263
+ /** Meta data */
4264
+ meta: Record<string, unknown>;
4263
4265
  }
4264
4266
  /**
4265
4267
  * Interface for combo component groups (e.g., "Main Course", "Side", "Drink")
@@ -4277,12 +4279,15 @@ declare module '@posx/core/types/product.type' {
4277
4279
  max_order: number;
4278
4280
  /** Available items in this group */
4279
4281
  combo_items: IComboGroupItem[];
4282
+ /** Meta data */
4283
+ meta: Record<string, unknown>;
4280
4284
  }
4281
4285
  export class ComboGroupItem implements IComboGroupItem {
4282
4286
  item_uid: string;
4283
4287
  combo_item: CoreItem;
4284
4288
  price: number;
4285
4289
  sequence: number;
4290
+ meta: Record<string, unknown>;
4286
4291
  constructor();
4287
4292
  }
4288
4293
  export class ComboGroup implements IComboGroup {
@@ -4293,6 +4298,7 @@ declare module '@posx/core/types/product.type' {
4293
4298
  max_order: number;
4294
4299
  combo_items: IComboGroupItem[];
4295
4300
  sequence: number;
4301
+ meta: Record<string, unknown>;
4296
4302
  constructor();
4297
4303
  }
4298
4304