@tossplace/pos-plugin-sdk 0.0.10 → 0.0.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/dist/sdk.d.ts CHANGED
@@ -1321,6 +1321,7 @@ export declare type PluginOrderDiningOption = 'HERE' | 'TOGO' | 'DELIVERY' | 'PI
1321
1321
  */
1322
1322
  export declare type PluginOrderDto = {
1323
1323
  memo?: string;
1324
+ numGuests?: number;
1324
1325
  discounts: PluginDiscount[];
1325
1326
  tableId?: number;
1326
1327
  lineItems: Omit<PluginOrderItem, 'id' | 'orderId'>[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tossplace/pos-plugin-sdk",
3
- "version": "0.0.10",
3
+ "version": "0.0.12",
4
4
  "description": "포스 플러그인 sdk",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.esm.js",
package/types/index.d.ts CHANGED
@@ -1308,6 +1308,7 @@ export declare type PluginOrderDiningOption = 'HERE' | 'TOGO' | 'DELIVERY' | 'PI
1308
1308
  */
1309
1309
  export declare type PluginOrderDto = {
1310
1310
  memo?: string;
1311
+ numGuests?: number;
1311
1312
  discounts: PluginDiscount[];
1312
1313
  tableId?: number;
1313
1314
  lineItems: Omit<PluginOrderItem, 'id' | 'orderId'>[];