@grid-is/agent-tools 0.1.0 → 0.2.1
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/README.md +2 -2
- package/assets/FONT-LICENSES.md +22 -0
- package/assets/blank.xlsx +0 -0
- package/assets/fonts/caladea/caladea-bold.ttf +0 -0
- package/assets/fonts/caladea/caladea-bolditalic.ttf +0 -0
- package/assets/fonts/caladea/caladea-italic.ttf +0 -0
- package/assets/fonts/caladea/caladea-regular.ttf +0 -0
- package/assets/fonts/carlito/carlito-bold.ttf +0 -0
- package/assets/fonts/carlito/carlito-bolditalic.ttf +0 -0
- package/assets/fonts/carlito/carlito-italic.ttf +0 -0
- package/assets/fonts/carlito/carlito-regular.ttf +0 -0
- package/assets/fonts/lora/lora-bold.ttf +0 -0
- package/assets/fonts/lora/lora-bolditalic.ttf +0 -0
- package/assets/fonts/lora/lora-italic.ttf +0 -0
- package/assets/fonts/lora/lora-regular.ttf +0 -0
- package/assets/fonts/merriweather/merriweather-bold.ttf +0 -0
- package/assets/fonts/merriweather/merriweather-bolditalic.ttf +0 -0
- package/assets/fonts/merriweather/merriweather-italic.ttf +0 -0
- package/assets/fonts/merriweather/merriweather-regular.ttf +0 -0
- package/assets/fonts/poppins/poppins-bold.ttf +0 -0
- package/assets/fonts/poppins/poppins-bolditalic.ttf +0 -0
- package/assets/fonts/poppins/poppins-italic.ttf +0 -0
- package/assets/fonts/poppins/poppins-regular.ttf +0 -0
- package/dist/dist-BJH7vBTb.js +1 -0
- package/dist/dist-RYXWtRir.js +5 -0
- package/dist/index.d.ts +5 -5
- package/dist/index.js +1 -2
- package/dist/server.js +1 -5
- package/dist/src-CRstzQKG.js +167 -0
- package/package.json +9 -6
- package/dist/src-Dzffbe0i.js +0 -18827
package/dist/index.d.ts
CHANGED
|
@@ -1072,7 +1072,7 @@ declare const editCells: SpreadsheetTool<z.ZodObject<{
|
|
|
1072
1072
|
}>>;
|
|
1073
1073
|
wrapText: z.ZodOptional<z.ZodBoolean>;
|
|
1074
1074
|
}, z.core.$strip>>>;
|
|
1075
|
-
note: z.ZodString
|
|
1075
|
+
note: z.ZodOptional<z.ZodString>;
|
|
1076
1076
|
merge: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1077
1077
|
unmerge: z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1078
1078
|
}, z.core.$strip>, ToolError | EditCellsResult>;
|
|
@@ -1088,7 +1088,7 @@ declare const fillCells: SpreadsheetTool<z.ZodObject<{
|
|
|
1088
1088
|
sheet: z.ZodString;
|
|
1089
1089
|
selection: z.ZodString;
|
|
1090
1090
|
extend_to: z.ZodString;
|
|
1091
|
-
note: z.ZodString
|
|
1091
|
+
note: z.ZodOptional<z.ZodString>;
|
|
1092
1092
|
}, z.core.$strip>, ToolError | FillCellsResult>;
|
|
1093
1093
|
//#endregion
|
|
1094
1094
|
//#region src/tools/manage_sheets.d.ts
|
|
@@ -1115,7 +1115,7 @@ declare const manageSheets: SpreadsheetTool<z.ZodObject<{
|
|
|
1115
1115
|
veryHidden: "veryHidden";
|
|
1116
1116
|
}>;
|
|
1117
1117
|
}, z.core.$strip>>;
|
|
1118
|
-
note: z.ZodString
|
|
1118
|
+
note: z.ZodOptional<z.ZodString>;
|
|
1119
1119
|
}, z.core.$strip>, ToolError | ManageSheetsResult>;
|
|
1120
1120
|
//#endregion
|
|
1121
1121
|
//#region src/tools/manage_rows_and_columns.d.ts
|
|
@@ -1147,7 +1147,7 @@ declare const manageRowsAndColumns: SpreadsheetTool<z.ZodObject<{
|
|
|
1147
1147
|
}, z.core.$strip>>;
|
|
1148
1148
|
autoSize: z.ZodOptional<z.ZodArray<z.ZodNumber>>;
|
|
1149
1149
|
}, z.core.$strip>>;
|
|
1150
|
-
note: z.ZodString
|
|
1150
|
+
note: z.ZodOptional<z.ZodString>;
|
|
1151
1151
|
}, z.core.$strip>, ToolError | ManageRowsAndColumnsResult>;
|
|
1152
1152
|
//#endregion
|
|
1153
1153
|
//#region src/tools/edit_cell_styles.d.ts
|
|
@@ -1264,7 +1264,7 @@ declare const editCellStyles: SpreadsheetTool<z.ZodObject<{
|
|
|
1264
1264
|
wrapText: z.ZodOptional<z.ZodBoolean>;
|
|
1265
1265
|
}, z.core.$strip>;
|
|
1266
1266
|
}, z.core.$strip>>;
|
|
1267
|
-
note: z.ZodString
|
|
1267
|
+
note: z.ZodOptional<z.ZodString>;
|
|
1268
1268
|
}, z.core.$strip>, ToolError | EditCellStylesResult>;
|
|
1269
1269
|
//#endregion
|
|
1270
1270
|
//#region src/tools/get_styles.d.ts
|
package/dist/index.js
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
import
|
|
2
|
-
export { captureRange, createGridTools, dependents, describeStructure, editCellStyles, editCells, fillCells, findCells, generateWorkbookContext, getComment, getComments, getStyles, goalSeek, inspect, isToolError, listErrors, manageRowsAndColumns, manageSheets, precedents, readCalculatedValues, runFormula, serveStdio, symbols, toMcpServer, viewRange, whatIf };
|
|
1
|
+
import{C as e,E as t,S as n,T as r,_ as i,a,b as o,c as s,d as c,f as l,g as u,h as d,i as f,l as p,m,n as h,o as g,p as _,r as v,s as y,t as b,u as x,v as S,w as C,x as w,y as T}from"./src-CRstzQKG.js";export{f as captureRange,v as createGridTools,a as dependents,g as describeStructure,y as editCellStyles,s as editCells,p as fillCells,x as findCells,c as generateWorkbookContext,l as getComment,_ as getComments,m as getStyles,d as goalSeek,u as inspect,i as isToolError,S as listErrors,T as manageRowsAndColumns,o as manageSheets,w as precedents,n as readCalculatedValues,e as runFormula,b as serveStdio,C as symbols,h as toMcpServer,r as viewRange,t as whatIf};
|