@credal/actions 0.2.36 → 0.2.37

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.
@@ -869,10 +869,7 @@ export const googleOauthUpdateDocParamsSchema = z.object({
869
869
  text: z.string().describe("The text to insert"),
870
870
  location: z
871
871
  .object({
872
- index: z
873
- .number()
874
- .int()
875
- .describe("The zero-based index in the document where to insert the text"),
872
+ index: z.number().describe("The zero-based index in the document where to insert the text"),
876
873
  })
877
874
  .describe("The location where the text will be inserted"),
878
875
  })
@@ -915,7 +912,7 @@ export const googleOauthUpdateDocParamsSchema = z.object({
915
912
  weightedFontFamily: z
916
913
  .object({
917
914
  fontFamily: z.string().describe("The font family of the text").optional(),
918
- weight: z.number().int().describe("The weight of the font").optional(),
915
+ weight: z.number().describe("The weight of the font").optional(),
919
916
  })
920
917
  .describe("The font family and weight of the text")
921
918
  .optional(),
@@ -924,8 +921,8 @@ export const googleOauthUpdateDocParamsSchema = z.object({
924
921
  fields: z.string().describe("The fields that should be updated"),
925
922
  range: z
926
923
  .object({
927
- startIndex: z.number().int().describe("The zero-based starting index of the range"),
928
- endIndex: z.number().int().describe("The zero-based ending index of the range (exclusive)"),
924
+ startIndex: z.number().describe("The zero-based starting index of the range"),
925
+ endIndex: z.number().describe("The zero-based ending index of the range (exclusive)"),
929
926
  })
930
927
  .describe("The range of text to style")
931
928
  .optional(),
@@ -937,8 +934,8 @@ export const googleOauthUpdateDocParamsSchema = z.object({
937
934
  .object({
938
935
  range: z
939
936
  .object({
940
- startIndex: z.number().int().describe("The zero-based starting index of the range"),
941
- endIndex: z.number().int().describe("The zero-based ending index of the range (exclusive)"),
937
+ startIndex: z.number().describe("The zero-based starting index of the range"),
938
+ endIndex: z.number().describe("The zero-based ending index of the range (exclusive)"),
942
939
  })
943
940
  .describe("The range of content to delete"),
944
941
  })
@@ -950,10 +947,10 @@ export const googleOauthUpdateDocParamsSchema = z.object({
950
947
  tableCellLocation: z
951
948
  .object({
952
949
  tableStartLocation: z
953
- .object({ index: z.number().int().describe("The zero-based index in the document") })
950
+ .object({ index: z.number().describe("The zero-based index in the document") })
954
951
  .describe("The location where the table starts"),
955
- rowIndex: z.number().int().describe("The zero-based row index").optional(),
956
- columnIndex: z.number().int().describe("The zero-based column index").optional(),
952
+ rowIndex: z.number().describe("The zero-based row index").optional(),
953
+ columnIndex: z.number().describe("The zero-based column index").optional(),
957
954
  })
958
955
  .describe("The location where the table row will be inserted"),
959
956
  insertBelow: z.boolean().describe("Whether to insert the row below the reference row"),
@@ -966,10 +963,10 @@ export const googleOauthUpdateDocParamsSchema = z.object({
966
963
  tableCellLocation: z
967
964
  .object({
968
965
  tableStartLocation: z
969
- .object({ index: z.number().int().describe("The zero-based index in the document") })
966
+ .object({ index: z.number().describe("The zero-based index in the document") })
970
967
  .describe("The location where the table starts"),
971
- rowIndex: z.number().int().describe("The zero-based row index").optional(),
972
- columnIndex: z.number().int().describe("The zero-based column index").optional(),
968
+ rowIndex: z.number().describe("The zero-based row index").optional(),
969
+ columnIndex: z.number().describe("The zero-based column index").optional(),
973
970
  })
974
971
  .describe("The location where the table column will be inserted"),
975
972
  insertRight: z
@@ -984,10 +981,10 @@ export const googleOauthUpdateDocParamsSchema = z.object({
984
981
  tableCellLocation: z
985
982
  .object({
986
983
  tableStartLocation: z
987
- .object({ index: z.number().int().describe("The zero-based index in the document") })
984
+ .object({ index: z.number().describe("The zero-based index in the document") })
988
985
  .describe("The location where the table starts"),
989
- rowIndex: z.number().int().describe("The zero-based row index").optional(),
990
- columnIndex: z.number().int().describe("The zero-based column index").optional(),
986
+ rowIndex: z.number().describe("The zero-based row index").optional(),
987
+ columnIndex: z.number().describe("The zero-based column index").optional(),
991
988
  })
992
989
  .describe("The location of the row to delete"),
993
990
  })
@@ -999,10 +996,10 @@ export const googleOauthUpdateDocParamsSchema = z.object({
999
996
  tableCellLocation: z
1000
997
  .object({
1001
998
  tableStartLocation: z
1002
- .object({ index: z.number().int().describe("The zero-based index in the document") })
999
+ .object({ index: z.number().describe("The zero-based index in the document") })
1003
1000
  .describe("The location where the table starts"),
1004
- rowIndex: z.number().int().describe("The zero-based row index").optional(),
1005
- columnIndex: z.number().int().describe("The zero-based column index").optional(),
1001
+ rowIndex: z.number().describe("The zero-based row index").optional(),
1002
+ columnIndex: z.number().describe("The zero-based column index").optional(),
1006
1003
  })
1007
1004
  .describe("The location of the column to delete"),
1008
1005
  })
@@ -1013,8 +1010,8 @@ export const googleOauthUpdateDocParamsSchema = z.object({
1013
1010
  .object({
1014
1011
  range: z
1015
1012
  .object({
1016
- startIndex: z.number().int().describe("The zero-based starting index of the range"),
1017
- endIndex: z.number().int().describe("The zero-based ending index of the range (exclusive)"),
1013
+ startIndex: z.number().describe("The zero-based starting index of the range"),
1014
+ endIndex: z.number().describe("The zero-based ending index of the range (exclusive)"),
1018
1015
  })
1019
1016
  .describe("The range of paragraphs to update"),
1020
1017
  paragraphStyle: z
@@ -1082,8 +1079,8 @@ export const googleOauthUpdateDocParamsSchema = z.object({
1082
1079
  .object({
1083
1080
  range: z
1084
1081
  .object({
1085
- startIndex: z.number().int().describe("The zero-based starting index of the range"),
1086
- endIndex: z.number().int().describe("The zero-based ending index of the range (exclusive)"),
1082
+ startIndex: z.number().describe("The zero-based starting index of the range"),
1083
+ endIndex: z.number().describe("The zero-based ending index of the range (exclusive)"),
1087
1084
  })
1088
1085
  .describe("The range of paragraphs to bullet"),
1089
1086
  bulletPreset: z
@@ -1115,8 +1112,8 @@ export const googleOauthUpdateDocParamsSchema = z.object({
1115
1112
  .object({
1116
1113
  range: z
1117
1114
  .object({
1118
- startIndex: z.number().int().describe("The zero-based starting index of the range"),
1119
- endIndex: z.number().int().describe("The zero-based ending index of the range (exclusive)"),
1115
+ startIndex: z.number().describe("The zero-based starting index of the range"),
1116
+ endIndex: z.number().describe("The zero-based ending index of the range (exclusive)"),
1120
1117
  })
1121
1118
  .describe("The range of paragraphs to remove bullets from"),
1122
1119
  })
@@ -1126,7 +1123,7 @@ export const googleOauthUpdateDocParamsSchema = z.object({
1126
1123
  insertPageBreak: z
1127
1124
  .object({
1128
1125
  location: z
1129
- .object({ index: z.number().int().describe("The zero-based index in the document") })
1126
+ .object({ index: z.number().describe("The zero-based index in the document") })
1130
1127
  .describe("The location at which to insert the page break"),
1131
1128
  })
1132
1129
  .describe("Inserts a page break"),
@@ -1157,11 +1154,7 @@ export const googleOauthUpdateDocParamsSchema = z.object({
1157
1154
  marginBottom: z.object({}).catchall(z.any()).describe("The bottom page margin").optional(),
1158
1155
  marginRight: z.object({}).catchall(z.any()).describe("The right page margin").optional(),
1159
1156
  marginLeft: z.object({}).catchall(z.any()).describe("The left page margin").optional(),
1160
- pageNumberStart: z
1161
- .number()
1162
- .int()
1163
- .describe("The page number from which to start counting")
1164
- .optional(),
1157
+ pageNumberStart: z.number().describe("The page number from which to start counting").optional(),
1165
1158
  pageSize: z
1166
1159
  .object({
1167
1160
  width: z.object({}).catchall(z.any()).describe("The width of the page").optional(),
@@ -1219,7 +1212,7 @@ export const googleOauthUpdateDocParamsSchema = z.object({
1219
1212
  .describe("The right border of the cells")
1220
1213
  .optional(),
1221
1214
  borderTop: z.object({}).catchall(z.any()).describe("The top border of the cells").optional(),
1222
- columnSpan: z.number().int().describe("The number of columns that the cell spans").optional(),
1215
+ columnSpan: z.number().describe("The number of columns that the cell spans").optional(),
1223
1216
  contentAlignment: z
1224
1217
  .string()
1225
1218
  .describe("The alignment of the content within the cells")
@@ -1240,7 +1233,7 @@ export const googleOauthUpdateDocParamsSchema = z.object({
1240
1233
  .describe("The right padding of the cells")
1241
1234
  .optional(),
1242
1235
  paddingTop: z.object({}).catchall(z.any()).describe("The top padding of the cells").optional(),
1243
- rowSpan: z.number().int().describe("The number of rows that the cell spans").optional(),
1236
+ rowSpan: z.number().describe("The number of rows that the cell spans").optional(),
1244
1237
  })
1245
1238
  .describe("The style to apply to the cells"),
1246
1239
  fields: z.string().describe("The fields that should be updated"),
@@ -1249,14 +1242,14 @@ export const googleOauthUpdateDocParamsSchema = z.object({
1249
1242
  tableCellLocation: z
1250
1243
  .object({
1251
1244
  tableStartLocation: z
1252
- .object({ index: z.number().int().describe("The zero-based index in the document") })
1245
+ .object({ index: z.number().describe("The zero-based index in the document") })
1253
1246
  .describe("The location where the table starts"),
1254
- rowIndex: z.number().int().describe("The zero-based row index").optional(),
1255
- columnIndex: z.number().int().describe("The zero-based column index").optional(),
1247
+ rowIndex: z.number().describe("The zero-based row index").optional(),
1248
+ columnIndex: z.number().describe("The zero-based column index").optional(),
1256
1249
  })
1257
1250
  .describe("The location of the table cell"),
1258
- rowSpan: z.number().int().describe("The number of rows that the range should span"),
1259
- columnSpan: z.number().int().describe("The number of columns that the range should span"),
1251
+ rowSpan: z.number().describe("The number of rows that the range should span"),
1252
+ columnSpan: z.number().describe("The number of columns that the range should span"),
1260
1253
  })
1261
1254
  .describe("The table range to apply the style to"),
1262
1255
  })
@@ -1270,14 +1263,14 @@ export const googleOauthUpdateDocParamsSchema = z.object({
1270
1263
  tableCellLocation: z
1271
1264
  .object({
1272
1265
  tableStartLocation: z
1273
- .object({ index: z.number().int().describe("The zero-based index in the document") })
1266
+ .object({ index: z.number().describe("The zero-based index in the document") })
1274
1267
  .describe("The location where the table starts"),
1275
- rowIndex: z.number().int().describe("The zero-based row index").optional(),
1276
- columnIndex: z.number().int().describe("The zero-based column index").optional(),
1268
+ rowIndex: z.number().describe("The zero-based row index").optional(),
1269
+ columnIndex: z.number().describe("The zero-based column index").optional(),
1277
1270
  })
1278
1271
  .describe("The location of the table cell"),
1279
- rowSpan: z.number().int().describe("The number of rows that the range should span"),
1280
- columnSpan: z.number().int().describe("The number of columns that the range should span"),
1272
+ rowSpan: z.number().describe("The number of rows that the range should span"),
1273
+ columnSpan: z.number().describe("The number of columns that the range should span"),
1281
1274
  })
1282
1275
  .describe("The table range to merge"),
1283
1276
  })
@@ -1291,14 +1284,14 @@ export const googleOauthUpdateDocParamsSchema = z.object({
1291
1284
  tableCellLocation: z
1292
1285
  .object({
1293
1286
  tableStartLocation: z
1294
- .object({ index: z.number().int().describe("The zero-based index in the document") })
1287
+ .object({ index: z.number().describe("The zero-based index in the document") })
1295
1288
  .describe("The location where the table starts"),
1296
- rowIndex: z.number().int().describe("The zero-based row index").optional(),
1297
- columnIndex: z.number().int().describe("The zero-based column index").optional(),
1289
+ rowIndex: z.number().describe("The zero-based row index").optional(),
1290
+ columnIndex: z.number().describe("The zero-based column index").optional(),
1298
1291
  })
1299
1292
  .describe("The location of the table cell"),
1300
- rowSpan: z.number().int().describe("The number of rows that the range should span"),
1301
- columnSpan: z.number().int().describe("The number of columns that the range should span"),
1293
+ rowSpan: z.number().describe("The number of rows that the range should span"),
1294
+ columnSpan: z.number().describe("The number of columns that the range should span"),
1302
1295
  })
1303
1296
  .describe("The table range to unmerge"),
1304
1297
  })
@@ -1310,8 +1303,8 @@ export const googleOauthUpdateDocParamsSchema = z.object({
1310
1303
  name: z.string().describe("The name of the range"),
1311
1304
  range: z
1312
1305
  .object({
1313
- startIndex: z.number().int().describe("The zero-based starting index of the range"),
1314
- endIndex: z.number().int().describe("The zero-based ending index of the range (exclusive)"),
1306
+ startIndex: z.number().describe("The zero-based starting index of the range"),
1307
+ endIndex: z.number().describe("The zero-based ending index of the range (exclusive)"),
1315
1308
  })
1316
1309
  .describe("The range to name"),
1317
1310
  })
@@ -1334,7 +1327,7 @@ export const googleOauthUpdateDocParamsSchema = z.object({
1334
1327
  insertInlineImage: z
1335
1328
  .object({
1336
1329
  location: z
1337
- .object({ index: z.number().int().describe("The zero-based index in the document") })
1330
+ .object({ index: z.number().describe("The zero-based index in the document") })
1338
1331
  .describe("The location at which to insert the image"),
1339
1332
  uri: z.string().describe("The image URI"),
1340
1333
  objectSize: z
@@ -1396,7 +1389,7 @@ export const googleOauthScheduleCalendarMeetingOutputSchema = z.object({
1396
1389
  error: z.string().describe("The error that occurred if the meeting was not scheduled successfully").optional(),
1397
1390
  });
1398
1391
  export const googleOauthListCalendarsParamsSchema = z.object({
1399
- maxResults: z.number().int().describe("Maximum number of calendars to return, defaults to 250").optional(),
1392
+ maxResults: z.number().describe("Maximum number of calendars to return, defaults to 250").optional(),
1400
1393
  });
1401
1394
  export const googleOauthListCalendarsOutputSchema = z.object({
1402
1395
  success: z.boolean().describe("Whether the calendars were listed successfully"),
@@ -1408,7 +1401,7 @@ export const googleOauthListCalendarsOutputSchema = z.object({
1408
1401
  export const googleOauthListCalendarEventsParamsSchema = z.object({
1409
1402
  calendarId: z.string().describe("The ID of the calendar to list events from"),
1410
1403
  query: z.string().describe("Optional free-text search query to filter events").optional(),
1411
- maxResults: z.number().int().describe("Maximum number of events to return, defaults to 250").optional(),
1404
+ maxResults: z.number().describe("Maximum number of events to return, defaults to 250").optional(),
1412
1405
  timeMin: z
1413
1406
  .string()
1414
1407
  .describe("Optional lower bound (exclusive) for an event's end time to filter by. Must be an RFC3339 timestamp with mandatory time zone offset, for example, 2011-06-03T10:00:00-07:00, 2011-06-03T10:00:00Z.")
@@ -1504,10 +1497,10 @@ export const googleOauthCreateSpreadsheetParamsSchema = z.object({
1504
1497
  title: z.string().describe("The title of the sheet").optional(),
1505
1498
  gridProperties: z
1506
1499
  .object({
1507
- rowCount: z.number().int().describe("The number of rows in the sheet").optional(),
1508
- columnCount: z.number().int().describe("The number of columns in the sheet").optional(),
1509
- frozenRowCount: z.number().int().describe("The number of frozen rows").optional(),
1510
- frozenColumnCount: z.number().int().describe("The number of frozen columns").optional(),
1500
+ rowCount: z.number().describe("The number of rows in the sheet").optional(),
1501
+ columnCount: z.number().describe("The number of columns in the sheet").optional(),
1502
+ frozenRowCount: z.number().describe("The number of frozen rows").optional(),
1503
+ frozenColumnCount: z.number().describe("The number of frozen columns").optional(),
1511
1504
  })
1512
1505
  .optional(),
1513
1506
  }))
@@ -1528,9 +1521,9 @@ export const googleOauthCreateSpreadsheetOutputSchema = z.object({
1528
1521
  spreadsheetUrl: z.string().describe("The URL to access the created spreadsheet").optional(),
1529
1522
  sheets: z
1530
1523
  .array(z.object({
1531
- sheetId: z.number().int().describe("The ID of the sheet").optional(),
1524
+ sheetId: z.number().describe("The ID of the sheet").optional(),
1532
1525
  title: z.string().describe("The title of the sheet").optional(),
1533
- index: z.number().int().describe("The index of the sheet").optional(),
1526
+ index: z.number().describe("The index of the sheet").optional(),
1534
1527
  }))
1535
1528
  .describe("Information about the created sheets")
1536
1529
  .optional(),
@@ -1553,8 +1546,8 @@ export const googleOauthUpdateSpreadsheetParamsSchema = z.object({
1553
1546
  title: z.string().describe("The title of the new sheet").optional(),
1554
1547
  gridProperties: z
1555
1548
  .object({
1556
- rowCount: z.number().int().describe("The number of rows in the sheet").optional(),
1557
- columnCount: z.number().int().describe("The number of columns in the sheet").optional(),
1549
+ rowCount: z.number().describe("The number of rows in the sheet").optional(),
1550
+ columnCount: z.number().describe("The number of columns in the sheet").optional(),
1558
1551
  })
1559
1552
  .optional(),
1560
1553
  })
@@ -1566,7 +1559,7 @@ export const googleOauthUpdateSpreadsheetParamsSchema = z.object({
1566
1559
  z
1567
1560
  .object({
1568
1561
  deleteSheet: z
1569
- .object({ sheetId: z.number().int().describe("The ID of the sheet to delete").optional() })
1562
+ .object({ sheetId: z.number().describe("The ID of the sheet to delete").optional() })
1570
1563
  .optional(),
1571
1564
  })
1572
1565
  .describe("Delete a sheet"),
@@ -1576,15 +1569,11 @@ export const googleOauthUpdateSpreadsheetParamsSchema = z.object({
1576
1569
  .object({
1577
1570
  range: z
1578
1571
  .object({
1579
- sheetId: z.number().int().describe("The ID of the sheet").optional(),
1580
- startRowIndex: z.number().int().describe("The start row (0-based, inclusive)").optional(),
1581
- endRowIndex: z.number().int().describe("The end row (0-based, exclusive)").optional(),
1582
- startColumnIndex: z
1583
- .number()
1584
- .int()
1585
- .describe("The start column (0-based, inclusive)")
1586
- .optional(),
1587
- endColumnIndex: z.number().int().describe("The end column (0-based, exclusive)").optional(),
1572
+ sheetId: z.number().describe("The ID of the sheet").optional(),
1573
+ startRowIndex: z.number().describe("The start row (0-based, inclusive)").optional(),
1574
+ endRowIndex: z.number().describe("The end row (0-based, exclusive)").optional(),
1575
+ startColumnIndex: z.number().describe("The start column (0-based, inclusive)").optional(),
1576
+ endColumnIndex: z.number().describe("The end column (0-based, exclusive)").optional(),
1588
1577
  })
1589
1578
  .optional(),
1590
1579
  rows: z
@@ -1613,14 +1602,14 @@ export const googleOauthUpdateSpreadsheetParamsSchema = z.object({
1613
1602
  .object({
1614
1603
  properties: z
1615
1604
  .object({
1616
- sheetId: z.number().int().describe("The ID of the sheet to update").optional(),
1605
+ sheetId: z.number().describe("The ID of the sheet to update").optional(),
1617
1606
  title: z.string().describe("The new title of the sheet").optional(),
1618
1607
  gridProperties: z
1619
1608
  .object({
1620
- rowCount: z.number().int().describe("The new number of rows").optional(),
1621
- columnCount: z.number().int().describe("The new number of columns").optional(),
1622
- frozenRowCount: z.number().int().describe("The number of frozen rows").optional(),
1623
- frozenColumnCount: z.number().int().describe("The number of frozen columns").optional(),
1609
+ rowCount: z.number().describe("The new number of rows").optional(),
1610
+ columnCount: z.number().describe("The new number of columns").optional(),
1611
+ frozenRowCount: z.number().describe("The number of frozen rows").optional(),
1612
+ frozenColumnCount: z.number().describe("The number of frozen columns").optional(),
1624
1613
  })
1625
1614
  .optional(),
1626
1615
  })
@@ -1688,7 +1677,7 @@ export const googleOauthUpdateSpreadsheetParamsSchema = z.object({
1688
1677
  })
1689
1678
  .optional(),
1690
1679
  fontFamily: z.string().describe("The font family").optional(),
1691
- fontSize: z.number().int().describe("The size of the font in points").optional(),
1680
+ fontSize: z.number().describe("The size of the font in points").optional(),
1692
1681
  bold: z.boolean().describe("Whether the text is bold").optional(),
1693
1682
  italic: z.boolean().describe("Whether the text is italic").optional(),
1694
1683
  strikethrough: z
@@ -1736,9 +1725,9 @@ export const googleOauthUpdateSpreadsheetOutputSchema = z.object({
1736
1725
  .object({
1737
1726
  properties: z
1738
1727
  .object({
1739
- sheetId: z.number().int().describe("The ID of the newly created sheet").optional(),
1728
+ sheetId: z.number().describe("The ID of the newly created sheet").optional(),
1740
1729
  title: z.string().describe("The title of the new sheet").optional(),
1741
- index: z.number().int().describe("The index of the new sheet").optional(),
1730
+ index: z.number().describe("The index of the new sheet").optional(),
1742
1731
  })
1743
1732
  .optional(),
1744
1733
  })
@@ -1791,7 +1780,6 @@ export const googleOauthUpdatePresentationParamsSchema = z.object({
1791
1780
  objectId: z.string().describe("The object ID for the created slide").optional(),
1792
1781
  insertionIndex: z
1793
1782
  .number()
1794
- .int()
1795
1783
  .describe("The 0-based index where the new slide should be inserted")
1796
1784
  .optional(),
1797
1785
  slideLayoutReference: z
@@ -1818,8 +1806,8 @@ export const googleOauthUpdatePresentationParamsSchema = z.object({
1818
1806
  createTable: z
1819
1807
  .object({
1820
1808
  objectId: z.string().describe("The object ID for the created table").optional(),
1821
- rows: z.number().int().describe("Number of rows in the table"),
1822
- columns: z.number().int().describe("Number of columns in the table"),
1809
+ rows: z.number().describe("Number of rows in the table"),
1810
+ columns: z.number().describe("Number of columns in the table"),
1823
1811
  elementProperties: z
1824
1812
  .object({})
1825
1813
  .catchall(z.any())
@@ -1833,7 +1821,7 @@ export const googleOauthUpdatePresentationParamsSchema = z.object({
1833
1821
  .object({
1834
1822
  objectId: z.string().describe("The object ID of the shape or table cell"),
1835
1823
  text: z.string().describe("The text to be inserted"),
1836
- insertionIndex: z.number().int().describe("The index where the text will be inserted").optional(),
1824
+ insertionIndex: z.number().describe("The index where the text will be inserted").optional(),
1837
1825
  })
1838
1826
  .describe("Inserts text into a shape or table cell"),
1839
1827
  }),
@@ -1842,7 +1830,7 @@ export const googleOauthUpdatePresentationParamsSchema = z.object({
1842
1830
  .object({
1843
1831
  tableObjectId: z.string().describe("The table to insert rows into"),
1844
1832
  insertBelow: z.boolean().describe("Whether to insert the rows below the reference cell"),
1845
- number: z.number().int().describe("The number of rows to insert").optional(),
1833
+ number: z.number().describe("The number of rows to insert").optional(),
1846
1834
  cellLocation: z
1847
1835
  .object({})
1848
1836
  .catchall(z.any())
@@ -1858,7 +1846,7 @@ export const googleOauthUpdatePresentationParamsSchema = z.object({
1858
1846
  insertRight: z
1859
1847
  .boolean()
1860
1848
  .describe("Whether to insert the columns to the right of the reference cell"),
1861
- number: z.number().int().describe("The number of columns to insert").optional(),
1849
+ number: z.number().describe("The number of columns to insert").optional(),
1862
1850
  cellLocation: z
1863
1851
  .object({})
1864
1852
  .catchall(z.any())
@@ -1923,7 +1911,6 @@ export const googleOauthUpdatePresentationParamsSchema = z.object({
1923
1911
  slideObjectIds: z.array(z.string()).describe("The IDs of the slides to reorder"),
1924
1912
  insertionIndex: z
1925
1913
  .number()
1926
- .int()
1927
1914
  .describe("The 0-based index where the slides should be moved to")
1928
1915
  .optional(),
1929
1916
  })
@@ -1935,8 +1922,8 @@ export const googleOauthUpdatePresentationParamsSchema = z.object({
1935
1922
  objectId: z.string().describe("The object ID of the shape or table cell"),
1936
1923
  textRange: z
1937
1924
  .object({
1938
- startIndex: z.number().int().describe("The starting index of the range (0-based)").optional(),
1939
- endIndex: z.number().int().describe("The ending index of the range (0-based)").optional(),
1925
+ startIndex: z.number().describe("The starting index of the range (0-based)").optional(),
1926
+ endIndex: z.number().describe("The ending index of the range (0-based)").optional(),
1940
1927
  })
1941
1928
  .describe("The range of text to delete")
1942
1929
  .optional(),
@@ -1974,7 +1961,7 @@ export const googleOauthUpdatePresentationParamsSchema = z.object({
1974
1961
  .object({
1975
1962
  objectId: z.string().describe("The object ID for the created chart").optional(),
1976
1963
  spreadsheetId: z.string().describe("The ID of the Google Sheets spreadsheet containing the chart"),
1977
- chartId: z.number().int().describe("The ID of the specific chart in the spreadsheet"),
1964
+ chartId: z.number().describe("The ID of the specific chart in the spreadsheet"),
1978
1965
  elementProperties: z
1979
1966
  .object({})
1980
1967
  .catchall(z.any())
@@ -2131,10 +2118,9 @@ export const googleOauthUpdatePresentationParamsSchema = z.object({
2131
2118
  .optional(),
2132
2119
  startIndex: z
2133
2120
  .number()
2134
- .int()
2135
2121
  .describe("The start index for FROM_START_INDEX or FIXED_RANGE")
2136
2122
  .optional(),
2137
- endIndex: z.number().int().describe("The end index for FIXED_RANGE").optional(),
2123
+ endIndex: z.number().describe("The end index for FIXED_RANGE").optional(),
2138
2124
  })
2139
2125
  .describe("The range of text to style (defaults to all text if unspecified)")
2140
2126
  .optional(),
@@ -2145,7 +2131,7 @@ export const googleOauthUpdatePresentationParamsSchema = z.object({
2145
2131
  replaceAllShapesWithSheetsChart: z
2146
2132
  .object({
2147
2133
  spreadsheetId: z.string().describe("The ID of the Google Sheets spreadsheet containing the chart"),
2148
- chartId: z.number().int().describe("The ID of the chart within the spreadsheet"),
2134
+ chartId: z.number().describe("The ID of the chart within the spreadsheet"),
2149
2135
  containsText: z
2150
2136
  .object({
2151
2137
  text: z.string().describe("The text the shape must contain to be replaced"),
@@ -2175,10 +2161,9 @@ export const googleOauthUpdatePresentationParamsSchema = z.object({
2175
2161
  .optional(),
2176
2162
  startIndex: z
2177
2163
  .number()
2178
- .int()
2179
2164
  .describe("The start index for FROM_START_INDEX or FIXED_RANGE")
2180
2165
  .optional(),
2181
- endIndex: z.number().int().describe("The end index for FIXED_RANGE").optional(),
2166
+ endIndex: z.number().describe("The end index for FIXED_RANGE").optional(),
2182
2167
  })
2183
2168
  .describe("The range of text to delete bullets from (defaults to all text if unspecified)")
2184
2169
  .optional(),
@@ -2204,10 +2189,9 @@ export const googleOauthUpdatePresentationParamsSchema = z.object({
2204
2189
  .optional(),
2205
2190
  startIndex: z
2206
2191
  .number()
2207
- .int()
2208
2192
  .describe("The start index for FROM_START_INDEX or FIXED_RANGE")
2209
2193
  .optional(),
2210
- endIndex: z.number().int().describe("The end index for FIXED_RANGE").optional(),
2194
+ endIndex: z.number().describe("The end index for FIXED_RANGE").optional(),
2211
2195
  })
2212
2196
  .describe("The range of text to apply the style to (defaults to all paragraphs if unspecified)")
2213
2197
  .optional(),
@@ -2233,8 +2217,8 @@ export const googleOauthUpdatePresentationParamsSchema = z.object({
2233
2217
  tableRange: z
2234
2218
  .object({
2235
2219
  location: z.object({}).catchall(z.any()).describe("The starting cell location").optional(),
2236
- rowSpan: z.number().int().describe("The number of rows in the range").optional(),
2237
- columnSpan: z.number().int().describe("The number of columns in the range").optional(),
2220
+ rowSpan: z.number().describe("The number of rows in the range").optional(),
2221
+ columnSpan: z.number().describe("The number of columns in the range").optional(),
2238
2222
  })
2239
2223
  .describe("The range of cells whose border should be updated (defaults to the entire table if unspecified)")
2240
2224
  .optional(),
@@ -2245,7 +2229,7 @@ export const googleOauthUpdatePresentationParamsSchema = z.object({
2245
2229
  updateTableColumnProperties: z
2246
2230
  .object({
2247
2231
  objectId: z.string().describe("The object ID of the table"),
2248
- columnIndices: z.array(z.number().int()).describe("The 0-based indices of the columns to update"),
2232
+ columnIndices: z.array(z.number()).describe("The 0-based indices of the columns to update"),
2249
2233
  tableColumnProperties: z
2250
2234
  .object({})
2251
2235
  .catchall(z.any())
@@ -2260,7 +2244,7 @@ export const googleOauthUpdatePresentationParamsSchema = z.object({
2260
2244
  updateTableRowProperties: z
2261
2245
  .object({
2262
2246
  objectId: z.string().describe("The object ID of the table"),
2263
- rowIndices: z.array(z.number().int()).describe("The 0-based indices of the rows to update"),
2247
+ rowIndices: z.array(z.number()).describe("The 0-based indices of the rows to update"),
2264
2248
  tableRowProperties: z
2265
2249
  .object({})
2266
2250
  .catchall(z.any())
@@ -2278,8 +2262,8 @@ export const googleOauthUpdatePresentationParamsSchema = z.object({
2278
2262
  tableRange: z
2279
2263
  .object({
2280
2264
  location: z.object({}).catchall(z.any()).describe("The starting cell location").optional(),
2281
- rowSpan: z.number().int().describe("The number of rows in the range").optional(),
2282
- columnSpan: z.number().int().describe("The number of columns in the range").optional(),
2265
+ rowSpan: z.number().describe("The number of rows in the range").optional(),
2266
+ columnSpan: z.number().describe("The number of columns in the range").optional(),
2283
2267
  })
2284
2268
  .describe("The range of cells to merge"),
2285
2269
  })
@@ -2292,8 +2276,8 @@ export const googleOauthUpdatePresentationParamsSchema = z.object({
2292
2276
  tableRange: z
2293
2277
  .object({
2294
2278
  location: z.object({}).catchall(z.any()).describe("The starting cell location").optional(),
2295
- rowSpan: z.number().int().describe("The number of rows in the range").optional(),
2296
- columnSpan: z.number().int().describe("The number of columns in the range").optional(),
2279
+ rowSpan: z.number().describe("The number of rows in the range").optional(),
2280
+ columnSpan: z.number().describe("The number of columns in the range").optional(),
2297
2281
  })
2298
2282
  .describe("The range of cells to unmerge"),
2299
2283
  })
@@ -2390,7 +2374,7 @@ export const googleOauthUpdatePresentationOutputSchema = z.object({
2390
2374
  });
2391
2375
  export const googleOauthSearchDriveByKeywordsParamsSchema = z.object({
2392
2376
  keywords: z.array(z.string()).describe("List of keywords to search for in file contents."),
2393
- limit: z.number().int().describe("The maximum number of files to return").optional(),
2377
+ limit: z.number().describe("The maximum number of files to return").optional(),
2394
2378
  });
2395
2379
  export const googleOauthSearchDriveByKeywordsOutputSchema = z.object({
2396
2380
  success: z.boolean().describe("Whether the search was successful"),
@@ -2407,17 +2391,17 @@ export const googleOauthSearchDriveByKeywordsOutputSchema = z.object({
2407
2391
  });
2408
2392
  export const googleOauthGetDriveFileContentByIdParamsSchema = z.object({
2409
2393
  fileId: z.string().describe("The ID of the file to get content from"),
2410
- limit: z.number().int().describe("The character limit for the file content"),
2394
+ limit: z.number().describe("The character limit for the file content"),
2411
2395
  });
2412
2396
  export const googleOauthGetDriveFileContentByIdOutputSchema = z.object({
2413
2397
  success: z.boolean().describe("Whether the file content was retrieved successfully"),
2414
2398
  content: z.string().describe("The content of the file").optional(),
2415
2399
  fileName: z.string().describe("The name of the file").optional(),
2416
- fileLength: z.number().int().describe("The length of the file content prior to truncating").optional(),
2400
+ fileLength: z.number().describe("The length of the file content prior to truncating").optional(),
2417
2401
  error: z.string().describe("Error message if file content retrieval failed").optional(),
2418
2402
  });
2419
2403
  export const googleOauthListGroupsParamsSchema = z.object({
2420
- maxResults: z.number().int().describe("The maximum number of groups to return (max allowed is 200)").optional(),
2404
+ maxResults: z.number().describe("The maximum number of groups to return (max allowed is 200)").optional(),
2421
2405
  });
2422
2406
  export const googleOauthListGroupsOutputSchema = z.object({
2423
2407
  success: z.boolean().describe("Whether the groups were listed successfully"),
@@ -2446,7 +2430,7 @@ export const googleOauthGetGroupOutputSchema = z.object({
2446
2430
  });
2447
2431
  export const googleOauthListGroupMembersParamsSchema = z.object({
2448
2432
  groupKey: z.string().describe("The group's email address or unique group ID"),
2449
- maxResults: z.number().int().describe("The maximum number of members to return (max allowed is 200)").optional(),
2433
+ maxResults: z.number().describe("The maximum number of members to return (max allowed is 200)").optional(),
2450
2434
  });
2451
2435
  export const googleOauthListGroupMembersOutputSchema = z.object({
2452
2436
  success: z.boolean().describe("Whether the members were listed successfully"),
@@ -2488,7 +2472,7 @@ export const googleOauthDeleteGroupMemberOutputSchema = z.object({
2488
2472
  });
2489
2473
  export const googlemailSearchGmailMessagesParamsSchema = z.object({
2490
2474
  query: z.string().describe('Gmail search query (e.g. "from:alice subject:urgent")'),
2491
- maxResults: z.number().int().describe("Maximum number of messages to return (optional)").optional(),
2475
+ maxResults: z.number().describe("Maximum number of messages to return (optional)").optional(),
2492
2476
  });
2493
2477
  export const googlemailSearchGmailMessagesOutputSchema = z.object({
2494
2478
  success: z.boolean(),
@@ -2506,7 +2490,7 @@ export const googlemailSearchGmailMessagesOutputSchema = z.object({
2506
2490
  });
2507
2491
  export const googlemailListGmailThreadsParamsSchema = z.object({
2508
2492
  query: z.string().describe('Gmail search query (e.g. "from:alice subject:project")'),
2509
- maxResults: z.number().int().describe("Maximum number of threads to return").optional(),
2493
+ maxResults: z.number().describe("Maximum number of threads to return").optional(),
2510
2494
  });
2511
2495
  export const googlemailListGmailThreadsOutputSchema = z.object({
2512
2496
  success: z.boolean(),
@@ -2577,7 +2561,7 @@ export const oktaGetOktaUserOutputSchema = z.object({
2577
2561
  });
2578
2562
  export const oktaListOktaUserGroupsParamsSchema = z.object({
2579
2563
  userId: z.string().describe("The ID of the user whose groups are to be listed."),
2580
- maxResults: z.number().int().gte(1).describe("The maximum number of results to return.").optional(),
2564
+ maxResults: z.number().gte(1).describe("The maximum number of results to return.").optional(),
2581
2565
  });
2582
2566
  export const oktaListOktaUserGroupsOutputSchema = z.object({
2583
2567
  success: z.boolean().describe("Whether the groups were successfully retrieved."),
@@ -2598,7 +2582,7 @@ export const oktaListOktaGroupsParamsSchema = z.object({
2598
2582
  .string()
2599
2583
  .describe("Optional search query to filter groups.\nThis field corresponds to the `search` query parameter in the Okta API's List Groups operation.\nFor detailed information on constructing search queries and available filter expressions, refer to the Okta API documentation:\nhttps://developer.okta.com/docs/api/openapi/okta-management/management/tag/Group/#tag/Group/operation/listGroups!in=query&path=search&t=request\nExample: 'profile.name eq \"My Group\"'\n")
2600
2584
  .optional(),
2601
- maxResults: z.number().int().gte(1).describe("The maximum number of results to return.").optional(),
2585
+ maxResults: z.number().gte(1).describe("The maximum number of results to return.").optional(),
2602
2586
  });
2603
2587
  export const oktaListOktaGroupsOutputSchema = z.object({
2604
2588
  success: z.boolean().describe("Whether the groups were successfully retrieved."),
@@ -2657,7 +2641,7 @@ export const oktaGetOktaGroupOutputSchema = z.object({
2657
2641
  });
2658
2642
  export const oktaListOktaGroupMembersParamsSchema = z.object({
2659
2643
  groupId: z.string().describe("The ID of the group whose members are to be listed."),
2660
- maxResults: z.number().int().gte(1).describe("The maximum number of results to return.").optional(),
2644
+ maxResults: z.number().gte(1).describe("The maximum number of results to return.").optional(),
2661
2645
  });
2662
2646
  export const oktaListOktaGroupMembersOutputSchema = z.object({
2663
2647
  success: z.boolean().describe("Whether the members were successfully retrieved."),
@@ -2732,7 +2716,7 @@ export const oktaListOktaUsersParamsSchema = z.object({
2732
2716
  .string()
2733
2717
  .describe("Optional search query to filter users.\nThis field corresponds to the `search` query parameter in the Okta API's List Users operation.\nFor detailed information on constructing search queries and available filter expressions, refer to the Okta API documentation:\nhttps://developer.okta.com/docs/api/openapi/okta-management/management/tag/User/#tag/User/operation/listUsers!in=query&path=search&t=request\nExample: 'profile.email eq \"my_user@example.com\"'\n")
2734
2718
  .optional(),
2735
- maxResults: z.number().int().gte(1).describe("The maximum number of results to return.").optional(),
2719
+ maxResults: z.number().gte(1).describe("The maximum number of results to return.").optional(),
2736
2720
  });
2737
2721
  export const oktaListOktaUsersOutputSchema = z.object({
2738
2722
  success: z.boolean().describe("Whether the user list was successfully retrieved"),
@@ -0,0 +1,3 @@
1
+ import type { googleOauthSearchDriveAndGetContentByKeywordsFunction } from "../../autogen/types.js";
2
+ declare const searchDriveAndGetContentByKeywords: googleOauthSearchDriveAndGetContentByKeywordsFunction;
3
+ export default searchDriveAndGetContentByKeywords;