@tossplace/pos-plugin-sdk 0.0.11 → 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/index.cjs.js +1 -1
- package/dist/index.esm.js +1 -1
- package/dist/sdk.d.ts +1 -0
- package/package.json +1 -1
- package/types/index.d.ts +1 -0
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
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'>[];
|