@opentabs-dev/opentabs-plugin-panda-express 0.0.74 → 0.0.75

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.
@@ -0,0 +1,19 @@
1
+ import { z } from 'zod';
2
+ export declare const removeProductFromBasket: import("@opentabs-dev/plugin-sdk").ToolDefinition<z.ZodObject<{
3
+ basket_id: z.ZodString;
4
+ basket_product_id: z.ZodNumber;
5
+ }, z.core.$strip>, z.ZodObject<{
6
+ basket: z.ZodObject<{
7
+ id: z.ZodString;
8
+ vendor_id: z.ZodNumber;
9
+ subtotal: z.ZodNumber;
10
+ sales_tax: z.ZodNumber;
11
+ total: z.ZodNumber;
12
+ product_count: z.ZodNumber;
13
+ delivery_mode: z.ZodString;
14
+ earliest_ready_time: z.ZodString;
15
+ lead_time_minutes: z.ZodNumber;
16
+ coupon_discount: z.ZodNumber;
17
+ }, z.core.$strip>;
18
+ }, z.core.$strip>>;
19
+ //# sourceMappingURL=remove-product-from-basket.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"remove-product-from-basket.d.ts","sourceRoot":"","sources":["../../src/tools/remove-product-from-basket.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,eAAO,MAAM,uBAAuB;;;;;;;;;;;;;;;;kBAqBlC,CAAC"}
@@ -0,0 +1,26 @@
1
+ import { defineTool } from '@opentabs-dev/plugin-sdk';
2
+ import { z } from 'zod';
3
+ import { api } from '../panda-api.js';
4
+ import { basketSchema, mapBasket } from './schemas.js';
5
+ export const removeProductFromBasket = defineTool({
6
+ name: 'remove_product_from_basket',
7
+ displayName: 'Remove Product from Basket',
8
+ description: 'Remove a product from the basket. Use the basket product instance ID (not the menu product ID) from get_basket.',
9
+ summary: 'Remove an item from your order',
10
+ icon: 'minus-circle',
11
+ group: 'Orders',
12
+ input: z.object({
13
+ basket_id: z.string().describe('Basket ID (UUID)'),
14
+ basket_product_id: z.number().int().describe('Basket product instance ID (from get_basket products list)'),
15
+ }),
16
+ output: z.object({
17
+ basket: basketSchema.describe('Updated basket after removing the product'),
18
+ }),
19
+ handle: async (params) => {
20
+ const data = await api(`/baskets/${params.basket_id}/products/${params.basket_product_id}`, {
21
+ method: 'DELETE',
22
+ });
23
+ return { basket: mapBasket(data) };
24
+ },
25
+ });
26
+ //# sourceMappingURL=remove-product-from-basket.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"remove-product-from-basket.js","sourceRoot":"","sources":["../../src/tools/remove-product-from-basket.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;AACtD,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,GAAG,EAAE,MAAM,iBAAiB,CAAC;AACtC,OAAO,EAAkB,YAAY,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAEvE,MAAM,CAAC,MAAM,uBAAuB,GAAG,UAAU,CAAC;IAChD,IAAI,EAAE,4BAA4B;IAClC,WAAW,EAAE,4BAA4B;IACzC,WAAW,EACT,iHAAiH;IACnH,OAAO,EAAE,gCAAgC;IACzC,IAAI,EAAE,cAAc;IACpB,KAAK,EAAE,QAAQ;IACf,KAAK,EAAE,CAAC,CAAC,MAAM,CAAC;QACd,SAAS,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,kBAAkB,CAAC;QAClD,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC,4DAA4D,CAAC;KAC3G,CAAC;IACF,MAAM,EAAE,CAAC,CAAC,MAAM,CAAC;QACf,MAAM,EAAE,YAAY,CAAC,QAAQ,CAAC,2CAA2C,CAAC;KAC3E,CAAC;IACF,MAAM,EAAE,KAAK,EAAC,MAAM,EAAC,EAAE;QACrB,MAAM,IAAI,GAAG,MAAM,GAAG,CAAY,YAAY,MAAM,CAAC,SAAS,aAAa,MAAM,CAAC,iBAAiB,EAAE,EAAE;YACrG,MAAM,EAAE,QAAQ;SACjB,CAAC,CAAC;QACH,OAAO,EAAE,MAAM,EAAE,SAAS,CAAC,IAAI,CAAC,EAAE,CAAC;IACrC,CAAC;CACF,CAAC,CAAC"}
@@ -0,0 +1,18 @@
1
+ import { z } from 'zod';
2
+ export declare const reorder: import("@opentabs-dev/plugin-sdk").ToolDefinition<z.ZodObject<{
3
+ order_id: z.ZodString;
4
+ }, z.core.$strip>, z.ZodObject<{
5
+ basket: z.ZodObject<{
6
+ id: z.ZodString;
7
+ vendor_id: z.ZodNumber;
8
+ subtotal: z.ZodNumber;
9
+ sales_tax: z.ZodNumber;
10
+ total: z.ZodNumber;
11
+ product_count: z.ZodNumber;
12
+ delivery_mode: z.ZodString;
13
+ earliest_ready_time: z.ZodString;
14
+ lead_time_minutes: z.ZodNumber;
15
+ coupon_discount: z.ZodNumber;
16
+ }, z.core.$strip>;
17
+ }, z.core.$strip>>;
18
+ //# sourceMappingURL=reorder.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"reorder.d.ts","sourceRoot":"","sources":["../../src/tools/reorder.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAIxB,eAAO,MAAM,OAAO;;;;;;;;;;;;;;;kBAyBlB,CAAC"}
@@ -0,0 +1,30 @@
1
+ import { defineTool } from '@opentabs-dev/plugin-sdk';
2
+ import { z } from 'zod';
3
+ import { api, getRequiredAuthToken } from '../panda-api.js';
4
+ import { basketSchema, mapBasket } from './schemas.js';
5
+ export const reorder = defineTool({
6
+ name: 'reorder',
7
+ displayName: 'Reorder Previous Order',
8
+ description: 'Create a new basket from a previous order. This copies all products from the original order into a new basket at the same restaurant. The order ID can be obtained from get_recent_orders.',
9
+ summary: 'Reorder a previous order',
10
+ icon: 'repeat',
11
+ group: 'Orders',
12
+ input: z.object({
13
+ order_id: z.string().describe('Order ID from a previous order (from get_recent_orders)'),
14
+ }),
15
+ output: z.object({
16
+ basket: basketSchema.describe('New basket created from the previous order'),
17
+ }),
18
+ handle: async (params) => {
19
+ const authtoken = getRequiredAuthToken();
20
+ const data = await api('/baskets/createfromorder', {
21
+ method: 'POST',
22
+ body: {
23
+ orderref: params.order_id,
24
+ authtoken,
25
+ },
26
+ });
27
+ return { basket: mapBasket(data) };
28
+ },
29
+ });
30
+ //# sourceMappingURL=reorder.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"reorder.js","sourceRoot":"","sources":["../../src/tools/reorder.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,0BAA0B,CAAC;AACtD,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,GAAG,EAAE,oBAAoB,EAAE,MAAM,iBAAiB,CAAC;AAC5D,OAAO,EAAkB,YAAY,EAAE,SAAS,EAAE,MAAM,cAAc,CAAC;AAEvE,MAAM,CAAC,MAAM,OAAO,GAAG,UAAU,CAAC;IAChC,IAAI,EAAE,SAAS;IACf,WAAW,EAAE,wBAAwB;IACrC,WAAW,EACT,4LAA4L;IAC9L,OAAO,EAAE,0BAA0B;IACnC,IAAI,EAAE,QAAQ;IACd,KAAK,EAAE,QAAQ;IACf,KAAK,EAAE,CAAC,CAAC,MAAM,CAAC;QACd,QAAQ,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,QAAQ,CAAC,yDAAyD,CAAC;KACzF,CAAC;IACF,MAAM,EAAE,CAAC,CAAC,MAAM,CAAC;QACf,MAAM,EAAE,YAAY,CAAC,QAAQ,CAAC,4CAA4C,CAAC;KAC5E,CAAC;IACF,MAAM,EAAE,KAAK,EAAC,MAAM,EAAC,EAAE;QACrB,MAAM,SAAS,GAAG,oBAAoB,EAAE,CAAC;QACzC,MAAM,IAAI,GAAG,MAAM,GAAG,CAAY,0BAA0B,EAAE;YAC5D,MAAM,EAAE,MAAM;YACd,IAAI,EAAE;gBACJ,QAAQ,EAAE,MAAM,CAAC,QAAQ;gBACzB,SAAS;aACV;SACF,CAAC,CAAC;QACH,OAAO,EAAE,MAAM,EAAE,SAAS,CAAC,IAAI,CAAC,EAAE,CAAC;IACrC,CAAC;CACF,CAAC,CAAC"}
package/dist/tools.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "sdkVersion": "0.0.74",
2
+ "sdkVersion": "0.0.71",
3
3
  "iconSvg": "<svg viewBox=\"21 21 67 67\" xmlns=\"http://www.w3.org/2000/svg\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M89.088 54.687c0 19.156-15.53 34.685-34.686 34.685-19.157 0-34.687-15.53-34.687-34.685 0-19.158 15.53-34.688 34.687-34.688 19.156 0 34.686 15.53 34.686 34.688\" fill=\"#D02C2F\"/><path d=\"M73.211 47.127c1.535 3.829 2.225 8.269 2.256 12.382 0 0-.018.78 1.474.803.656-.014 1.23-.352 1.45-.5 1.157-.811 2.22-2.486 2.233-5.271v-.006l-.001-.038c0-.122-.003-.241-.005-.361-.094-3.846-1.57-6.94-2.397-8.381-.184-.321-.337-.561-.435-.707-.052-.079-.105-.154-.16-.233a32.49 32.49 0 0 0-6.953-7.039c-.363.859-.91 1.742-1.678 2.634 1.75 2 3.173 4.119 4.216 6.717M69.15 48.083c-.177-9.506-7.937-17.158-17.485-17.158h-.036a17.553 17.553 0 0 0-6.681 1.288c-.016.007-.034.011-.05.019a17.599 17.599 0 0 0-6.163 4.244l-.01.012a17.478 17.478 0 0 0-2.64 3.657c-.023.042-.048.084-.071.13a.322.322 0 0 0-.022.046c-.341.69-2.028 4.313-2.012 9.06 0 0-.12 3.133 1.911 6.705a13.775 13.775 0 0 0 1.903 2.665l.046.052c.072.078.147.154.221.23 1.445 1.55 3.302 2.508 5.22 4.326.22.213.445.435.657.625.456.375.683.558 1.224.85a.03.03 0 0 0 .014.01l.002.001v.003l.091.047a8.19 8.19 0 0 0 .88.394c.942.36 2.02.576 3.17.607.114.003.228.003.34.003 2.953 0 5.403-1.42 7.85-2.776a68.268 68.268 0 0 1 2.516-1.311 46.174 46.174 0 0 0 1.633-.82l1.065-.633c7.068-4.289 6.426-12.276 6.426-12.276\" fill=\"#FFF\"/><path d=\"M36.086 40.145c.719-1.33 1.608-2.56 2.64-3.657.003-.004.006-.009.01-.012a17.601 17.601 0 0 1 6.162-4.244c.016-.008.034-.012.05-.02l.003-.003c-.74-1.644-2.247-3.424-4.595-3.778-4.801-.72-11.252 5.05-4.371 11.894l.007-.004a.355.355 0 0 1 .022-.047c.023-.045.048-.087.072-.13M82.325 58.707v-.01l.002-.002a24.51 24.51 0 0 0-.037-1.096 23.971 23.971 0 0 0-.16-1.778l-.003-.014c-.026-.204-.056-.41-.09-.612-.052-.337-.11-.669-.174-.99-.202-.97-.465-1.901-.774-2.794-.77-2.224-1.836-4.209-3.004-5.94-.122-.177-.246-.353-.368-.525l.076.112c.099.147.247.382.428.697.827 1.441 2.303 4.534 2.397 8.38.002.12.005.24.005.362l.001.038v.006c-.014 2.785-1.076 4.46-2.234 5.27-.219.149-.793.487-1.449.5-1.492-.023-1.474-.802-1.474-.802-.031-4.113-.721-8.553-2.256-12.382-1.043-2.598-2.466-4.717-4.216-6.717.768-.892 1.315-1.775 1.678-2.634 2.267-5.368-2.735-9.535-6.86-9.056-1.826.213-3.818 1.804-5.103 3.683 6.055 2.667 10.309 8.67 10.44 15.68 0 0 .64 7.987-6.427 12.276a8.265 8.265 0 0 0-.202.127l-.08.05-.246.147-.03.018-.256.15-.01.004c-.08.048-.162.093-.241.138a.378.378 0 0 1-.035.018l-.013.008a.088.088 0 0 0-.025.013l-.013.007-.025.013-.014.007a.376.376 0 0 1-.026.013l-.014.008a.269.269 0 0 1-.028.014c-.005.003-.008.006-.012.007l-.084.044a.038.038 0 0 1-.013.005.33.33 0 0 1-.032.017l-.014.008a.502.502 0 0 0-.046.024l-.032.016-.014.006-.037.02a.035.035 0 0 0-.009.004c-.03.017-.063.033-.097.05l-.01.005a.933.933 0 0 0-.038.019l-.015.006a.61.61 0 0 1-.05.026c-.012.006-.025.012-.038.02l-.012.006-.046.022-.004.003-.107.052-.006.004c-.015.006-.03.015-.046.022l-.011.005a.908.908 0 0 1-.041.02l-.014.007-.041.02-.012.006-.048.025-.005.001-.11.054-.006.003-.047.023c-.005.001-.01.005-.013.007a.443.443 0 0 1-.041.02.158.158 0 0 0-.014.008l-.041.018a.608.608 0 0 1-.067.033c-.018.009-.037.017-.054.027h-.001l-.052.025a.145.145 0 0 1-.019.008c-.01.007-.021.011-.032.017-.004 0-.005.003-.009.005-.758.377-1.713.866-2.516 1.311-2.448 1.355-4.897 2.776-7.85 2.776h-.244l-.095-.003a9.637 9.637 0 0 1-3.171-.607 8.306 8.306 0 0 1-.421-.172 6.84 6.84 0 0 1-.459-.222l-.09-.047v-.003l-.003-.001a.03.03 0 0 1-.015-.01c-.54-.292-.768-.475-1.223-.85-.212-.19-.438-.412-.656-.625-1.919-1.819-3.777-2.776-5.22-4.326-.075-.076-.15-.152-.222-.23l-.046-.052a25.127 25.127 0 0 1-.256-.29 9.655 9.655 0 0 1-.244-.286l-.003-.006a8.163 8.163 0 0 1-.244-.31l-.072-.093-.022-.028c-.018-.022-.033-.046-.051-.07l-.021-.03a2.446 2.446 0 0 1-.06-.082l-.011-.014-.07-.097-.017-.025a6.77 6.77 0 0 1-.053-.075l-.02-.03a5.103 5.103 0 0 1-.056-.08l-.013-.02-.067-.1c-.005-.005-.006-.01-.01-.015-.02-.029-.039-.058-.057-.088a.463.463 0 0 1-.018-.026c-.018-.027-.035-.055-.054-.082a.127.127 0 0 1-.012-.022c-.045-.068-.089-.14-.133-.21l-.012-.021-.053-.089-.013-.019-.127-.218-.01-.016-.053-.095-.01-.02a15.437 15.437 0 0 1-.588-1.119c-.708 1.123-1.1 2.068-1.597 3.594-1.045 3.184-1.55 6.972-.892 10.317.791 4.064 2.375 7.808 5.406 10.542 1.972 1.777 4.268 2.864 6.942 3.236 2.405.343 4.617-1.077 4.617-3.658 0-1.854-1.537-3.635-1.687-5.457-.224-2.642 1.39-5.01 4.118-4.742 1.338.13 2.9 1.075 3.124 3.031.179 1.585-.07 2.495-.927 4.062-.97 1.773-2.067 3.187-2.02 4.812l-.005-.001s0 .052.008.14c0 .02.004.04.005.061.006.05.012.11.022.175.006.042.007.084.016.126.008.048.024.095.034.144.01.049.02.099.035.152.012.043.02.086.034.126.279.975 1.057 2.46 3.265 2.91.606.123 1.638.178 2.447.119 3.024-.218 9.433-1.623 14.147-10.53 0 0 9.871.75 9.871-15.539l-.002.012\" fill=\"#0C1A22\"/><path d=\"M51.929 61.078c-.889.778-2.374.538-2.688 1.627a.362.362 0 0 1-.031.088.564.564 0 0 1-1.018.025.588.588 0 0 1-.057-.164c-.25-1.168-1.568-.952-2.385-1.908 0 0 .008.006 0 0a.58.58 0 0 1-.135-.368.57.57 0 0 1 .571-.569h.044c.622.028.691.237 2.653.323 1.965.088 2.125-.096 2.74-.066a.563.563 0 0 1 .306 1.012M59.482 51.52c-.658-3.758-3.316-5.192-5.302-4.402-1.391.552-2.642 2.612-1.118 5.304.904 1.599 1.33 2.427 1.555 3.324.093.379.225.702.417.965l.027.035c.084.11.18.21.29.292.212.174.523.352.911.362h.036c1.097-.011 3.819-2.277 3.184-5.88M44.646 46.677c-1.851-.882-4.481.322-5.351 3.872-.85 3.47 1.72 5.832 2.732 5.827.859 0 1.253-.658 1.253-.658.169-.227.298-.502.4-.82.27-.844.73-1.608 1.698-3.08 1.626-2.476.562-4.524-.732-5.14\" fill=\"#0C1A22\"/><path d=\"M42.294 52.244a.961.961 0 0 0 1.02-.895.975.975 0 0 0-.892-1.037.976.976 0 0 0-1.023.909.962.962 0 0 0 .895 1.023M55.875 53.037a.961.961 0 0 0 1.02-.896.973.973 0 0 0-.892-1.036.975.975 0 0 0-1.024.909.965.965 0 0 0 .896 1.023\" fill=\"#FFF\"/></g></svg>",
4
4
  "iconInactiveSvg": "<svg viewBox=\"21 21 67 67\" xmlns=\"http://www.w3.org/2000/svg\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M89.088 54.687c0 19.156-15.53 34.685-34.686 34.685-19.157 0-34.687-15.53-34.687-34.685 0-19.158 15.53-34.688 34.687-34.688 19.156 0 34.686 15.53 34.686 34.688\" fill=\"#999999\"/><path d=\"M73.211 47.127c1.535 3.829 2.225 8.269 2.256 12.382 0 0-.018.78 1.474.803.656-.014 1.23-.352 1.45-.5 1.157-.811 2.22-2.486 2.233-5.271v-.006l-.001-.038c0-.122-.003-.241-.005-.361-.094-3.846-1.57-6.94-2.397-8.381-.184-.321-.337-.561-.435-.707-.052-.079-.105-.154-.16-.233a32.49 32.49 0 0 0-6.953-7.039c-.363.859-.91 1.742-1.678 2.634 1.75 2 3.173 4.119 4.216 6.717M69.15 48.083c-.177-9.506-7.937-17.158-17.485-17.158h-.036a17.553 17.553 0 0 0-6.681 1.288c-.016.007-.034.011-.05.019a17.599 17.599 0 0 0-6.163 4.244l-.01.012a17.478 17.478 0 0 0-2.64 3.657c-.023.042-.048.084-.071.13a.322.322 0 0 0-.022.046c-.341.69-2.028 4.313-2.012 9.06 0 0-.12 3.133 1.911 6.705a13.775 13.775 0 0 0 1.903 2.665l.046.052c.072.078.147.154.221.23 1.445 1.55 3.302 2.508 5.22 4.326.22.213.445.435.657.625.456.375.683.558 1.224.85a.03.03 0 0 0 .014.01l.002.001v.003l.091.047a8.19 8.19 0 0 0 .88.394c.942.36 2.02.576 3.17.607.114.003.228.003.34.003 2.953 0 5.403-1.42 7.85-2.776a68.268 68.268 0 0 1 2.516-1.311 46.174 46.174 0 0 0 1.633-.82l1.065-.633c7.068-4.289 6.426-12.276 6.426-12.276\" fill=\"#ffffff\"/><path d=\"M36.086 40.145c.719-1.33 1.608-2.56 2.64-3.657.003-.004.006-.009.01-.012a17.601 17.601 0 0 1 6.162-4.244c.016-.008.034-.012.05-.02l.003-.003c-.74-1.644-2.247-3.424-4.595-3.778-4.801-.72-11.252 5.05-4.371 11.894l.007-.004a.355.355 0 0 1 .022-.047c.023-.045.048-.087.072-.13M82.325 58.707v-.01l.002-.002a24.51 24.51 0 0 0-.037-1.096 23.971 23.971 0 0 0-.16-1.778l-.003-.014c-.026-.204-.056-.41-.09-.612-.052-.337-.11-.669-.174-.99-.202-.97-.465-1.901-.774-2.794-.77-2.224-1.836-4.209-3.004-5.94-.122-.177-.246-.353-.368-.525l.076.112c.099.147.247.382.428.697.827 1.441 2.303 4.534 2.397 8.38.002.12.005.24.005.362l.001.038v.006c-.014 2.785-1.076 4.46-2.234 5.27-.219.149-.793.487-1.449.5-1.492-.023-1.474-.802-1.474-.802-.031-4.113-.721-8.553-2.256-12.382-1.043-2.598-2.466-4.717-4.216-6.717.768-.892 1.315-1.775 1.678-2.634 2.267-5.368-2.735-9.535-6.86-9.056-1.826.213-3.818 1.804-5.103 3.683 6.055 2.667 10.309 8.67 10.44 15.68 0 0 .64 7.987-6.427 12.276a8.265 8.265 0 0 0-.202.127l-.08.05-.246.147-.03.018-.256.15-.01.004c-.08.048-.162.093-.241.138a.378.378 0 0 1-.035.018l-.013.008a.088.088 0 0 0-.025.013l-.013.007-.025.013-.014.007a.376.376 0 0 1-.026.013l-.014.008a.269.269 0 0 1-.028.014c-.005.003-.008.006-.012.007l-.084.044a.038.038 0 0 1-.013.005.33.33 0 0 1-.032.017l-.014.008a.502.502 0 0 0-.046.024l-.032.016-.014.006-.037.02a.035.035 0 0 0-.009.004c-.03.017-.063.033-.097.05l-.01.005a.933.933 0 0 0-.038.019l-.015.006a.61.61 0 0 1-.05.026c-.012.006-.025.012-.038.02l-.012.006-.046.022-.004.003-.107.052-.006.004c-.015.006-.03.015-.046.022l-.011.005a.908.908 0 0 1-.041.02l-.014.007-.041.02-.012.006-.048.025-.005.001-.11.054-.006.003-.047.023c-.005.001-.01.005-.013.007a.443.443 0 0 1-.041.02.158.158 0 0 0-.014.008l-.041.018a.608.608 0 0 1-.067.033c-.018.009-.037.017-.054.027h-.001l-.052.025a.145.145 0 0 1-.019.008c-.01.007-.021.011-.032.017-.004 0-.005.003-.009.005-.758.377-1.713.866-2.516 1.311-2.448 1.355-4.897 2.776-7.85 2.776h-.244l-.095-.003a9.637 9.637 0 0 1-3.171-.607 8.306 8.306 0 0 1-.421-.172 6.84 6.84 0 0 1-.459-.222l-.09-.047v-.003l-.003-.001a.03.03 0 0 1-.015-.01c-.54-.292-.768-.475-1.223-.85-.212-.19-.438-.412-.656-.625-1.919-1.819-3.777-2.776-5.22-4.326-.075-.076-.15-.152-.222-.23l-.046-.052a25.127 25.127 0 0 1-.256-.29 9.655 9.655 0 0 1-.244-.286l-.003-.006a8.163 8.163 0 0 1-.244-.31l-.072-.093-.022-.028c-.018-.022-.033-.046-.051-.07l-.021-.03a2.446 2.446 0 0 1-.06-.082l-.011-.014-.07-.097-.017-.025a6.77 6.77 0 0 1-.053-.075l-.02-.03a5.103 5.103 0 0 1-.056-.08l-.013-.02-.067-.1c-.005-.005-.006-.01-.01-.015-.02-.029-.039-.058-.057-.088a.463.463 0 0 1-.018-.026c-.018-.027-.035-.055-.054-.082a.127.127 0 0 1-.012-.022c-.045-.068-.089-.14-.133-.21l-.012-.021-.053-.089-.013-.019-.127-.218-.01-.016-.053-.095-.01-.02a15.437 15.437 0 0 1-.588-1.119c-.708 1.123-1.1 2.068-1.597 3.594-1.045 3.184-1.55 6.972-.892 10.317.791 4.064 2.375 7.808 5.406 10.542 1.972 1.777 4.268 2.864 6.942 3.236 2.405.343 4.617-1.077 4.617-3.658 0-1.854-1.537-3.635-1.687-5.457-.224-2.642 1.39-5.01 4.118-4.742 1.338.13 2.9 1.075 3.124 3.031.179 1.585-.07 2.495-.927 4.062-.97 1.773-2.067 3.187-2.02 4.812l-.005-.001s0 .052.008.14c0 .02.004.04.005.061.006.05.012.11.022.175.006.042.007.084.016.126.008.048.024.095.034.144.01.049.02.099.035.152.012.043.02.086.034.126.279.975 1.057 2.46 3.265 2.91.606.123 1.638.178 2.447.119 3.024-.218 9.433-1.623 14.147-10.53 0 0 9.871.75 9.871-15.539l-.002.012\" fill=\"#999999\"/><path d=\"M51.929 61.078c-.889.778-2.374.538-2.688 1.627a.362.362 0 0 1-.031.088.564.564 0 0 1-1.018.025.588.588 0 0 1-.057-.164c-.25-1.168-1.568-.952-2.385-1.908 0 0 .008.006 0 0a.58.58 0 0 1-.135-.368.57.57 0 0 1 .571-.569h.044c.622.028.691.237 2.653.323 1.965.088 2.125-.096 2.74-.066a.563.563 0 0 1 .306 1.012M59.482 51.52c-.658-3.758-3.316-5.192-5.302-4.402-1.391.552-2.642 2.612-1.118 5.304.904 1.599 1.33 2.427 1.555 3.324.093.379.225.702.417.965l.027.035c.084.11.18.21.29.292.212.174.523.352.911.362h.036c1.097-.011 3.819-2.277 3.184-5.88M44.646 46.677c-1.851-.882-4.481.322-5.351 3.872-.85 3.47 1.72 5.832 2.732 5.827.859 0 1.253-.658 1.253-.658.169-.227.298-.502.4-.82.27-.844.73-1.608 1.698-3.08 1.626-2.476.562-4.524-.732-5.14\" fill=\"#999999\"/><path d=\"M42.294 52.244a.961.961 0 0 0 1.02-.895.975.975 0 0 0-.892-1.037.976.976 0 0 0-1.023.909.962.962 0 0 0 .895 1.023M55.875 53.037a.961.961 0 0 0 1.02-.896.973.973 0 0 0-.892-1.036.975.975 0 0 0-1.024.909.965.965 0 0 0 .896 1.023\" fill=\"#ffffff\"/></g></svg>",
5
5
  "iconDarkSvg": "<svg viewBox=\"21 21 67 67\" xmlns=\"http://www.w3.org/2000/svg\"><g fill=\"none\" fill-rule=\"evenodd\"><path d=\"M89.088 54.687c0 19.156-15.53 34.685-34.686 34.685-19.157 0-34.687-15.53-34.687-34.685 0-19.158 15.53-34.688 34.687-34.688 19.156 0 34.686 15.53 34.686 34.688\" fill=\"#D02C2F\"/><path d=\"M73.211 47.127c1.535 3.829 2.225 8.269 2.256 12.382 0 0-.018.78 1.474.803.656-.014 1.23-.352 1.45-.5 1.157-.811 2.22-2.486 2.233-5.271v-.006l-.001-.038c0-.122-.003-.241-.005-.361-.094-3.846-1.57-6.94-2.397-8.381-.184-.321-.337-.561-.435-.707-.052-.079-.105-.154-.16-.233a32.49 32.49 0 0 0-6.953-7.039c-.363.859-.91 1.742-1.678 2.634 1.75 2 3.173 4.119 4.216 6.717M69.15 48.083c-.177-9.506-7.937-17.158-17.485-17.158h-.036a17.553 17.553 0 0 0-6.681 1.288c-.016.007-.034.011-.05.019a17.599 17.599 0 0 0-6.163 4.244l-.01.012a17.478 17.478 0 0 0-2.64 3.657c-.023.042-.048.084-.071.13a.322.322 0 0 0-.022.046c-.341.69-2.028 4.313-2.012 9.06 0 0-.12 3.133 1.911 6.705a13.775 13.775 0 0 0 1.903 2.665l.046.052c.072.078.147.154.221.23 1.445 1.55 3.302 2.508 5.22 4.326.22.213.445.435.657.625.456.375.683.558 1.224.85a.03.03 0 0 0 .014.01l.002.001v.003l.091.047a8.19 8.19 0 0 0 .88.394c.942.36 2.02.576 3.17.607.114.003.228.003.34.003 2.953 0 5.403-1.42 7.85-2.776a68.268 68.268 0 0 1 2.516-1.311 46.174 46.174 0 0 0 1.633-.82l1.065-.633c7.068-4.289 6.426-12.276 6.426-12.276\" fill=\"#FFF\"/><path d=\"M36.086 40.145c.719-1.33 1.608-2.56 2.64-3.657.003-.004.006-.009.01-.012a17.601 17.601 0 0 1 6.162-4.244c.016-.008.034-.012.05-.02l.003-.003c-.74-1.644-2.247-3.424-4.595-3.778-4.801-.72-11.252 5.05-4.371 11.894l.007-.004a.355.355 0 0 1 .022-.047c.023-.045.048-.087.072-.13M82.325 58.707v-.01l.002-.002a24.51 24.51 0 0 0-.037-1.096 23.971 23.971 0 0 0-.16-1.778l-.003-.014c-.026-.204-.056-.41-.09-.612-.052-.337-.11-.669-.174-.99-.202-.97-.465-1.901-.774-2.794-.77-2.224-1.836-4.209-3.004-5.94-.122-.177-.246-.353-.368-.525l.076.112c.099.147.247.382.428.697.827 1.441 2.303 4.534 2.397 8.38.002.12.005.24.005.362l.001.038v.006c-.014 2.785-1.076 4.46-2.234 5.27-.219.149-.793.487-1.449.5-1.492-.023-1.474-.802-1.474-.802-.031-4.113-.721-8.553-2.256-12.382-1.043-2.598-2.466-4.717-4.216-6.717.768-.892 1.315-1.775 1.678-2.634 2.267-5.368-2.735-9.535-6.86-9.056-1.826.213-3.818 1.804-5.103 3.683 6.055 2.667 10.309 8.67 10.44 15.68 0 0 .64 7.987-6.427 12.276a8.265 8.265 0 0 0-.202.127l-.08.05-.246.147-.03.018-.256.15-.01.004c-.08.048-.162.093-.241.138a.378.378 0 0 1-.035.018l-.013.008a.088.088 0 0 0-.025.013l-.013.007-.025.013-.014.007a.376.376 0 0 1-.026.013l-.014.008a.269.269 0 0 1-.028.014c-.005.003-.008.006-.012.007l-.084.044a.038.038 0 0 1-.013.005.33.33 0 0 1-.032.017l-.014.008a.502.502 0 0 0-.046.024l-.032.016-.014.006-.037.02a.035.035 0 0 0-.009.004c-.03.017-.063.033-.097.05l-.01.005a.933.933 0 0 0-.038.019l-.015.006a.61.61 0 0 1-.05.026c-.012.006-.025.012-.038.02l-.012.006-.046.022-.004.003-.107.052-.006.004c-.015.006-.03.015-.046.022l-.011.005a.908.908 0 0 1-.041.02l-.014.007-.041.02-.012.006-.048.025-.005.001-.11.054-.006.003-.047.023c-.005.001-.01.005-.013.007a.443.443 0 0 1-.041.02.158.158 0 0 0-.014.008l-.041.018a.608.608 0 0 1-.067.033c-.018.009-.037.017-.054.027h-.001l-.052.025a.145.145 0 0 1-.019.008c-.01.007-.021.011-.032.017-.004 0-.005.003-.009.005-.758.377-1.713.866-2.516 1.311-2.448 1.355-4.897 2.776-7.85 2.776h-.244l-.095-.003a9.637 9.637 0 0 1-3.171-.607 8.306 8.306 0 0 1-.421-.172 6.84 6.84 0 0 1-.459-.222l-.09-.047v-.003l-.003-.001a.03.03 0 0 1-.015-.01c-.54-.292-.768-.475-1.223-.85-.212-.19-.438-.412-.656-.625-1.919-1.819-3.777-2.776-5.22-4.326-.075-.076-.15-.152-.222-.23l-.046-.052a25.127 25.127 0 0 1-.256-.29 9.655 9.655 0 0 1-.244-.286l-.003-.006a8.163 8.163 0 0 1-.244-.31l-.072-.093-.022-.028c-.018-.022-.033-.046-.051-.07l-.021-.03a2.446 2.446 0 0 1-.06-.082l-.011-.014-.07-.097-.017-.025a6.77 6.77 0 0 1-.053-.075l-.02-.03a5.103 5.103 0 0 1-.056-.08l-.013-.02-.067-.1c-.005-.005-.006-.01-.01-.015-.02-.029-.039-.058-.057-.088a.463.463 0 0 1-.018-.026c-.018-.027-.035-.055-.054-.082a.127.127 0 0 1-.012-.022c-.045-.068-.089-.14-.133-.21l-.012-.021-.053-.089-.013-.019-.127-.218-.01-.016-.053-.095-.01-.02a15.437 15.437 0 0 1-.588-1.119c-.708 1.123-1.1 2.068-1.597 3.594-1.045 3.184-1.55 6.972-.892 10.317.791 4.064 2.375 7.808 5.406 10.542 1.972 1.777 4.268 2.864 6.942 3.236 2.405.343 4.617-1.077 4.617-3.658 0-1.854-1.537-3.635-1.687-5.457-.224-2.642 1.39-5.01 4.118-4.742 1.338.13 2.9 1.075 3.124 3.031.179 1.585-.07 2.495-.927 4.062-.97 1.773-2.067 3.187-2.02 4.812l-.005-.001s0 .052.008.14c0 .02.004.04.005.061.006.05.012.11.022.175.006.042.007.084.016.126.008.048.024.095.034.144.01.049.02.099.035.152.012.043.02.086.034.126.279.975 1.057 2.46 3.265 2.91.606.123 1.638.178 2.447.119 3.024-.218 9.433-1.623 14.147-10.53 0 0 9.871.75 9.871-15.539l-.002.012\" fill=\"#0C1A22\"/><path d=\"M51.929 61.078c-.889.778-2.374.538-2.688 1.627a.362.362 0 0 1-.031.088.564.564 0 0 1-1.018.025.588.588 0 0 1-.057-.164c-.25-1.168-1.568-.952-2.385-1.908 0 0 .008.006 0 0a.58.58 0 0 1-.135-.368.57.57 0 0 1 .571-.569h.044c.622.028.691.237 2.653.323 1.965.088 2.125-.096 2.74-.066a.563.563 0 0 1 .306 1.012M59.482 51.52c-.658-3.758-3.316-5.192-5.302-4.402-1.391.552-2.642 2.612-1.118 5.304.904 1.599 1.33 2.427 1.555 3.324.093.379.225.702.417.965l.027.035c.084.11.18.21.29.292.212.174.523.352.911.362h.036c1.097-.011 3.819-2.277 3.184-5.88M44.646 46.677c-1.851-.882-4.481.322-5.351 3.872-.85 3.47 1.72 5.832 2.732 5.827.859 0 1.253-.658 1.253-.658.169-.227.298-.502.4-.82.27-.844.73-1.608 1.698-3.08 1.626-2.476.562-4.524-.732-5.14\" fill=\"#0C1A22\"/><path d=\"M42.294 52.244a.961.961 0 0 0 1.02-.895.975.975 0 0 0-.892-1.037.976.976 0 0 0-1.023.909.962.962 0 0 0 .895 1.023M55.875 53.037a.961.961 0 0 0 1.02-.896.973.973 0 0 0-.892-1.036.975.975 0 0 0-1.024.909.965.965 0 0 0 .896 1.023\" fill=\"#FFF\"/></g></svg>",
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@opentabs-dev/opentabs-plugin-panda-express",
3
3
  "description": "OpenTabs plugin for Panda Express",
4
- "version": "0.0.74",
4
+ "version": "0.0.75",
5
5
  "type": "module",
6
6
  "main": "dist/adapter.iife.js",
7
7
  "keywords": [
@@ -38,11 +38,11 @@
38
38
  "zod": "^4.0.0"
39
39
  },
40
40
  "dependencies": {
41
- "@opentabs-dev/plugin-sdk": "^0.0.74"
41
+ "@opentabs-dev/plugin-sdk": "^0.0.75"
42
42
  },
43
43
  "devDependencies": {
44
44
  "@biomejs/biome": "2.4.6",
45
- "@opentabs-dev/plugin-tools": "^0.0.74",
45
+ "@opentabs-dev/plugin-tools": "^0.0.75",
46
46
  "jiti": "^2.6.1",
47
47
  "typescript": "^5.9.3",
48
48
  "zod": "^4.0.0"