@keystrokehq/seat_geek 0.1.0 → 0.1.2

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.
Files changed (71) hide show
  1. package/dist/action.cjs.map +1 -1
  2. package/dist/action.mjs.map +1 -1
  3. package/dist/actions/get-event-details.cjs.map +1 -1
  4. package/dist/actions/get-event-details.d.cts +7 -3
  5. package/dist/actions/get-event-details.d.cts.map +1 -1
  6. package/dist/actions/get-event-details.d.mts +7 -3
  7. package/dist/actions/get-event-details.d.mts.map +1 -1
  8. package/dist/actions/get-event-details.mjs.map +1 -1
  9. package/dist/actions/get-event-recommendations.cjs +5 -5
  10. package/dist/actions/get-event-recommendations.cjs.map +1 -1
  11. package/dist/actions/get-event-recommendations.d.cts +68 -3
  12. package/dist/actions/get-event-recommendations.d.cts.map +1 -1
  13. package/dist/actions/get-event-recommendations.d.mts +68 -3
  14. package/dist/actions/get-event-recommendations.d.mts.map +1 -1
  15. package/dist/actions/get-event-recommendations.mjs +5 -5
  16. package/dist/actions/get-event-recommendations.mjs.map +1 -1
  17. package/dist/actions/get-event-seating.cjs +1 -1
  18. package/dist/actions/get-event-seating.cjs.map +1 -1
  19. package/dist/actions/get-event-seating.d.cts +12 -3
  20. package/dist/actions/get-event-seating.d.cts.map +1 -1
  21. package/dist/actions/get-event-seating.d.mts +12 -3
  22. package/dist/actions/get-event-seating.d.mts.map +1 -1
  23. package/dist/actions/get-event-seating.mjs +1 -1
  24. package/dist/actions/get-event-seating.mjs.map +1 -1
  25. package/dist/actions/get-performer-details.cjs +10 -10
  26. package/dist/actions/get-performer-details.cjs.map +1 -1
  27. package/dist/actions/get-performer-details.d.cts +34 -3
  28. package/dist/actions/get-performer-details.d.cts.map +1 -1
  29. package/dist/actions/get-performer-details.d.mts +34 -3
  30. package/dist/actions/get-performer-details.d.mts.map +1 -1
  31. package/dist/actions/get-performer-details.mjs +10 -10
  32. package/dist/actions/get-performer-details.mjs.map +1 -1
  33. package/dist/actions/get-performer-recommendations.cjs.map +1 -1
  34. package/dist/actions/get-performer-recommendations.d.cts +11 -3
  35. package/dist/actions/get-performer-recommendations.d.cts.map +1 -1
  36. package/dist/actions/get-performer-recommendations.d.mts +11 -3
  37. package/dist/actions/get-performer-recommendations.d.mts.map +1 -1
  38. package/dist/actions/get-performer-recommendations.mjs.map +1 -1
  39. package/dist/actions/get-taxonomies.cjs.map +1 -1
  40. package/dist/actions/get-taxonomies.d.cts +9 -3
  41. package/dist/actions/get-taxonomies.d.cts.map +1 -1
  42. package/dist/actions/get-taxonomies.d.mts +9 -3
  43. package/dist/actions/get-taxonomies.d.mts.map +1 -1
  44. package/dist/actions/get-taxonomies.mjs.map +1 -1
  45. package/dist/actions/get-venue-details.cjs.map +1 -1
  46. package/dist/actions/get-venue-details.d.cts +48 -3
  47. package/dist/actions/get-venue-details.d.cts.map +1 -1
  48. package/dist/actions/get-venue-details.d.mts +48 -3
  49. package/dist/actions/get-venue-details.d.mts.map +1 -1
  50. package/dist/actions/get-venue-details.mjs.map +1 -1
  51. package/dist/actions/search-events.cjs +6 -6
  52. package/dist/actions/search-events.cjs.map +1 -1
  53. package/dist/actions/search-events.d.cts +44 -3
  54. package/dist/actions/search-events.d.cts.map +1 -1
  55. package/dist/actions/search-events.d.mts +44 -3
  56. package/dist/actions/search-events.d.mts.map +1 -1
  57. package/dist/actions/search-events.mjs +6 -6
  58. package/dist/actions/search-events.mjs.map +1 -1
  59. package/dist/actions/search-performers.cjs.map +1 -1
  60. package/dist/actions/search-performers.d.cts +17 -3
  61. package/dist/actions/search-performers.d.cts.map +1 -1
  62. package/dist/actions/search-performers.d.mts +17 -3
  63. package/dist/actions/search-performers.d.mts.map +1 -1
  64. package/dist/actions/search-performers.mjs.map +1 -1
  65. package/dist/actions/search-venues.cjs.map +1 -1
  66. package/dist/actions/search-venues.d.cts +21 -3
  67. package/dist/actions/search-venues.d.cts.map +1 -1
  68. package/dist/actions/search-venues.d.mts +21 -3
  69. package/dist/actions/search-venues.d.mts.map +1 -1
  70. package/dist/actions/search-venues.mjs.map +1 -1
  71. package/package.json +2 -2
@@ -17,19 +17,19 @@ const SeatGeekSearchEventsInput = zod.z.object({
17
17
  datetime_utc_lte: zod.z.string().describe("Filter events happening on or before this UTC date/time.").optional()
18
18
  });
19
19
  const SeatGeekSearchEvents_VenueInfoSchema = zod.z.object({
20
- city: zod.z.string().describe("Venue city"),
21
- name: zod.z.string().describe("Venue name")
20
+ city: zod.z.string().describe("Venue city").nullable(),
21
+ name: zod.z.string().describe("Venue name").nullable()
22
22
  }).describe("Essential venue information");
23
23
  const SeatGeekSearchEvents_EventInfoSchema = zod.z.object({
24
- id: zod.z.number().int().describe("Unique SeatGeek event ID"),
25
- url: zod.z.string().describe("SeatGeek URL for the event"),
24
+ id: zod.z.number().int().describe("Unique SeatGeek event ID").nullable(),
25
+ url: zod.z.string().describe("SeatGeek URL for the event").nullable(),
26
26
  title: zod.z.string().describe("Event title").nullable().optional(),
27
27
  venue: SeatGeekSearchEvents_VenueInfoSchema.nullable(),
28
28
  short_title: zod.z.string().describe("Short event title").nullable().optional(),
29
- datetime_local: zod.z.string().describe("Event date and time in local timezone (ISO 8601 format)")
29
+ datetime_local: zod.z.string().describe("Event date and time in local timezone (ISO 8601 format)").nullable()
30
30
  }).describe("Essential event information for schedule listing and discovery");
31
31
  const SeatGeekSearchEventsOutput = zod.z.object({
32
- total: zod.z.number().int().describe("Total number of events available across all pages"),
32
+ total: zod.z.number().int().describe("Total number of events available across all pages").nullable(),
33
33
  events: zod.z.array(SeatGeekSearchEvents_EventInfoSchema).describe("List of events matching search criteria")
34
34
  }).describe("Search results containing essential event information");
35
35
  const seatGeekSearchEvents = require_action.action("SEAT_GEEK_SEARCH_EVENTS", {
@@ -1 +1 @@
1
- {"version":3,"file":"search-events.cjs","names":["z","action"],"sources":["../../src/actions/search-events.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SeatGeekSearchEventsInput: z.ZodTypeAny = z.object({\n q: z.string().describe(\"General search query for events, performers, or venues. Supports natural language like 'yankees march' or 'skrillex on june 4th'.\").optional(),\n per_page: z.number().int().describe(\"Number of results per page. Default is 10. Maximum is 100. Use the page parameter to paginate when meta.total exceeds per_page to avoid silently missing events.\").optional(),\n venue_id: z.string().describe(\"Venue ID to filter events to a specific venue.\").optional(),\n venue_city: z.string().describe(\"City name to filter events by venue location.\").optional(),\n venue_state: z.string().describe(\"Two-letter state code to filter events by venue location.\").optional(),\n datetime_utc: z.string().describe(\"Filter events by exact UTC date/time. Format: YYYY-MM-DD or YYYY-MM-DDTHH:MM:SS.\").optional(),\n performers_id: z.string().describe(\"Performer ID(s) to filter events. Multiple IDs can be comma-separated for OR queries. IDs must come from prior SeatGeek search results; arbitrary or stale IDs may yield empty responses.\").optional(),\n taxonomies_id: z.string().describe(\"Filter events by taxonomy ID.\").optional(),\n datetime_local: z.string().describe(\"Filter events by exact local date/time. Format: YYYY-MM-DD or YYYY-MM-DDTHH:MM:SS.\").optional(),\n performers_slug: z.string().describe(\"Performer slug(s) to filter events. Use URL-friendly format.\").optional(),\n taxonomies_name: z.string().describe(\"Filter events by category/type name. Accepts a single value only; comma-separated categories silently return zero results even when each category individually has matches.\").optional(),\n datetime_utc_gte: z.string().describe(\"Filter events happening on or after this UTC date/time. Convert relative expressions ('tomorrow', 'this weekend') to explicit UTC timestamps before use. Widen UTC range to fully cover the intended local time window to avoid off-by-one-day omissions near day boundaries.\").optional(),\n datetime_utc_lte: z.string().describe(\"Filter events happening on or before this UTC date/time.\").optional(),\n});\nconst SeatGeekSearchEvents_VenueInfoSchema: z.ZodTypeAny = z.object({\n city: z.string().describe(\"Venue city\"),\n name: z.string().describe(\"Venue name\"),\n}).describe(\"Essential venue information\");\nconst SeatGeekSearchEvents_EventInfoSchema: z.ZodTypeAny = z.object({\n id: z.number().int().describe(\"Unique SeatGeek event ID\"),\n url: z.string().describe(\"SeatGeek URL for the event\"),\n title: z.string().describe(\"Event title\").nullable().optional(),\n venue: SeatGeekSearchEvents_VenueInfoSchema.nullable(),\n short_title: z.string().describe(\"Short event title\").nullable().optional(),\n datetime_local: z.string().describe(\"Event date and time in local timezone (ISO 8601 format)\"),\n}).describe(\"Essential event information for schedule listing and discovery\");\nexport const SeatGeekSearchEventsOutput: z.ZodTypeAny = z.object({\n total: z.number().int().describe(\"Total number of events available across all pages\"),\n events: z.array(SeatGeekSearchEvents_EventInfoSchema).describe(\"List of events matching search criteria\"),\n}).describe(\"Search results containing essential event information\");\n\nexport const seatGeekSearchEvents = action(\"SEAT_GEEK_SEARCH_EVENTS\", {\n slug: \"seat_geek-search-events\",\n name: \"Search Events\",\n description: \"Search for ticketed events on SeatGeek by performers, venues, dates, or general queries. Covers concerts, sports games, theater shows, and other live entertainment. Only indexes ticketed events; empty results may indicate coverage gaps. Avoid over-filtering — start broad and progressively narrow. lat and lon parameters must be supplied together for location-based filtering.\",\n input: SeatGeekSearchEventsInput,\n output: SeatGeekSearchEventsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,4BAA0CA,IAAAA,EAAE,OAAO;CAC9D,GAAGA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mIAAmI,CAAC,CAAC,SAAS;CACrK,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,kKAAkK,CAAC,CAAC,SAAS;CACjN,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS;CACzF,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS;CAC1F,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2DAA2D,CAAC,CAAC,SAAS;CACvG,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kFAAkF,CAAC,CAAC,SAAS;CAC/H,eAAeA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2LAA2L,CAAC,CAAC,SAAS;CACzO,eAAeA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS;CAC7E,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oFAAoF,CAAC,CAAC,SAAS;CACnI,iBAAiBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS;CAC9G,iBAAiBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6KAA6K,CAAC,CAAC,SAAS;CAC7N,kBAAkBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+QAA+Q,CAAC,CAAC,SAAS;CAChU,kBAAkBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0DAA0D,CAAC,CAAC,SAAS;AAC7G,CAAC;AACD,MAAM,uCAAqDA,IAAAA,EAAE,OAAO;CAClE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,YAAY;CACtC,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,YAAY;AACxC,CAAC,CAAC,CAAC,SAAS,6BAA6B;AACzC,MAAM,uCAAqDA,IAAAA,EAAE,OAAO;CAClE,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,0BAA0B;CACxD,KAAKA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B;CACrD,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,aAAa,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9D,OAAO,qCAAqC,SAAS;CACrD,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mBAAmB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1E,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yDAAyD;AAC/F,CAAC,CAAC,CAAC,SAAS,gEAAgE;AAC5E,MAAa,6BAA2CA,IAAAA,EAAE,OAAO;CAC/D,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,mDAAmD;CACpF,QAAQA,IAAAA,EAAE,MAAM,oCAAoC,CAAC,CAAC,SAAS,yCAAyC;AAC1G,CAAC,CAAC,CAAC,SAAS,uDAAuD;AAEnE,MAAa,uBAAuBC,eAAAA,OAAO,2BAA2B;CACpE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"search-events.cjs","names":["z","action"],"sources":["../../src/actions/search-events.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SeatGeekSearchEventsInput = z.object({\n q: z.string().describe(\"General search query for events, performers, or venues. Supports natural language like 'yankees march' or 'skrillex on june 4th'.\").optional(),\n per_page: z.number().int().describe(\"Number of results per page. Default is 10. Maximum is 100. Use the page parameter to paginate when meta.total exceeds per_page to avoid silently missing events.\").optional(),\n venue_id: z.string().describe(\"Venue ID to filter events to a specific venue.\").optional(),\n venue_city: z.string().describe(\"City name to filter events by venue location.\").optional(),\n venue_state: z.string().describe(\"Two-letter state code to filter events by venue location.\").optional(),\n datetime_utc: z.string().describe(\"Filter events by exact UTC date/time. Format: YYYY-MM-DD or YYYY-MM-DDTHH:MM:SS.\").optional(),\n performers_id: z.string().describe(\"Performer ID(s) to filter events. Multiple IDs can be comma-separated for OR queries. IDs must come from prior SeatGeek search results; arbitrary or stale IDs may yield empty responses.\").optional(),\n taxonomies_id: z.string().describe(\"Filter events by taxonomy ID.\").optional(),\n datetime_local: z.string().describe(\"Filter events by exact local date/time. Format: YYYY-MM-DD or YYYY-MM-DDTHH:MM:SS.\").optional(),\n performers_slug: z.string().describe(\"Performer slug(s) to filter events. Use URL-friendly format.\").optional(),\n taxonomies_name: z.string().describe(\"Filter events by category/type name. Accepts a single value only; comma-separated categories silently return zero results even when each category individually has matches.\").optional(),\n datetime_utc_gte: z.string().describe(\"Filter events happening on or after this UTC date/time. Convert relative expressions ('tomorrow', 'this weekend') to explicit UTC timestamps before use. Widen UTC range to fully cover the intended local time window to avoid off-by-one-day omissions near day boundaries.\").optional(),\n datetime_utc_lte: z.string().describe(\"Filter events happening on or before this UTC date/time.\").optional(),\n});\nconst SeatGeekSearchEvents_VenueInfoSchema = z.object({\n city: z.string().describe(\"Venue city\").nullable(),\n name: z.string().describe(\"Venue name\").nullable(),\n}).describe(\"Essential venue information\");\nconst SeatGeekSearchEvents_EventInfoSchema = z.object({\n id: z.number().int().describe(\"Unique SeatGeek event ID\").nullable(),\n url: z.string().describe(\"SeatGeek URL for the event\").nullable(),\n title: z.string().describe(\"Event title\").nullable().optional(),\n venue: SeatGeekSearchEvents_VenueInfoSchema.nullable(),\n short_title: z.string().describe(\"Short event title\").nullable().optional(),\n datetime_local: z.string().describe(\"Event date and time in local timezone (ISO 8601 format)\").nullable(),\n}).describe(\"Essential event information for schedule listing and discovery\");\nexport const SeatGeekSearchEventsOutput = z.object({\n total: z.number().int().describe(\"Total number of events available across all pages\").nullable(),\n events: z.array(SeatGeekSearchEvents_EventInfoSchema).describe(\"List of events matching search criteria\"),\n}).describe(\"Search results containing essential event information\");\n\nexport const seatGeekSearchEvents = action(\"SEAT_GEEK_SEARCH_EVENTS\", {\n slug: \"seat_geek-search-events\",\n name: \"Search Events\",\n description: \"Search for ticketed events on SeatGeek by performers, venues, dates, or general queries. Covers concerts, sports games, theater shows, and other live entertainment. Only indexes ticketed events; empty results may indicate coverage gaps. Avoid over-filtering — start broad and progressively narrow. lat and lon parameters must be supplied together for location-based filtering.\",\n input: SeatGeekSearchEventsInput,\n output: SeatGeekSearchEventsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,4BAA4BA,IAAAA,EAAE,OAAO;CAChD,GAAGA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mIAAmI,CAAC,CAAC,SAAS;CACrK,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,kKAAkK,CAAC,CAAC,SAAS;CACjN,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS;CACzF,YAAYA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS;CAC1F,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2DAA2D,CAAC,CAAC,SAAS;CACvG,cAAcA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kFAAkF,CAAC,CAAC,SAAS;CAC/H,eAAeA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,2LAA2L,CAAC,CAAC,SAAS;CACzO,eAAeA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS;CAC7E,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oFAAoF,CAAC,CAAC,SAAS;CACnI,iBAAiBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS;CAC9G,iBAAiBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6KAA6K,CAAC,CAAC,SAAS;CAC7N,kBAAkBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,+QAA+Q,CAAC,CAAC,SAAS;CAChU,kBAAkBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,0DAA0D,CAAC,CAAC,SAAS;AAC7G,CAAC;AACD,MAAM,uCAAuCA,IAAAA,EAAE,OAAO;CACpD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,YAAY,CAAC,CAAC,SAAS;CACjD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,YAAY,CAAC,CAAC,SAAS;AACnD,CAAC,CAAC,CAAC,SAAS,6BAA6B;AACzC,MAAM,uCAAuCA,IAAAA,EAAE,OAAO;CACpD,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;CACnE,KAAKA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS;CAChE,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,aAAa,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9D,OAAO,qCAAqC,SAAS;CACrD,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mBAAmB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1E,gBAAgBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yDAAyD,CAAC,CAAC,SAAS;AAC1G,CAAC,CAAC,CAAC,SAAS,gEAAgE;AAC5E,MAAa,6BAA6BA,IAAAA,EAAE,OAAO;CACjD,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,mDAAmD,CAAC,CAAC,SAAS;CAC/F,QAAQA,IAAAA,EAAE,MAAM,oCAAoC,CAAC,CAAC,SAAS,yCAAyC;AAC1G,CAAC,CAAC,CAAC,SAAS,uDAAuD;AAEnE,MAAa,uBAAuBC,eAAAA,OAAO,2BAA2B;CACpE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -1,9 +1,50 @@
1
1
  import { z } from "zod";
2
2
 
3
3
  //#region src/actions/search-events.d.ts
4
- declare const SeatGeekSearchEventsInput: z.ZodTypeAny;
5
- declare const SeatGeekSearchEventsOutput: z.ZodTypeAny;
6
- declare const seatGeekSearchEvents: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
4
+ declare const SeatGeekSearchEventsInput: z.ZodObject<{
5
+ q: z.ZodOptional<z.ZodString>;
6
+ per_page: z.ZodOptional<z.ZodNumber>;
7
+ venue_id: z.ZodOptional<z.ZodString>;
8
+ venue_city: z.ZodOptional<z.ZodString>;
9
+ venue_state: z.ZodOptional<z.ZodString>;
10
+ datetime_utc: z.ZodOptional<z.ZodString>;
11
+ performers_id: z.ZodOptional<z.ZodString>;
12
+ taxonomies_id: z.ZodOptional<z.ZodString>;
13
+ datetime_local: z.ZodOptional<z.ZodString>;
14
+ performers_slug: z.ZodOptional<z.ZodString>;
15
+ taxonomies_name: z.ZodOptional<z.ZodString>;
16
+ datetime_utc_gte: z.ZodOptional<z.ZodString>;
17
+ datetime_utc_lte: z.ZodOptional<z.ZodString>;
18
+ }, z.core.$strip>;
19
+ declare const SeatGeekSearchEventsOutput: z.ZodObject<{
20
+ total: z.ZodNullable<z.ZodNumber>;
21
+ events: z.ZodArray<z.ZodObject<{
22
+ id: z.ZodNullable<z.ZodNumber>;
23
+ url: z.ZodNullable<z.ZodString>;
24
+ title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25
+ venue: z.ZodNullable<z.ZodObject<{
26
+ city: z.ZodNullable<z.ZodString>;
27
+ name: z.ZodNullable<z.ZodString>;
28
+ }, z.core.$strip>>;
29
+ short_title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30
+ datetime_local: z.ZodNullable<z.ZodString>;
31
+ }, z.core.$strip>>;
32
+ }, z.core.$strip>;
33
+ declare const seatGeekSearchEvents: import("@keystrokehq/action").WorkflowActionDefinition<{
34
+ q?: string | undefined;
35
+ per_page?: number | undefined;
36
+ venue_id?: string | undefined;
37
+ venue_city?: string | undefined;
38
+ venue_state?: string | undefined;
39
+ datetime_utc?: string | undefined;
40
+ performers_id?: string | undefined;
41
+ taxonomies_id?: string | undefined;
42
+ datetime_local?: string | undefined;
43
+ performers_slug?: string | undefined;
44
+ taxonomies_name?: string | undefined;
45
+ datetime_utc_gte?: string | undefined;
46
+ datetime_utc_lte?: string | undefined;
47
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
48
  //#endregion
8
49
  export { seatGeekSearchEvents };
9
50
  //# sourceMappingURL=search-events.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"search-events.d.cts","names":[],"sources":["../../src/actions/search-events.ts"],"mappings":";;;cAIa,yBAAA,EAA2B,CAAA,CAAE,UAcxC;AAAA,cAaW,0BAAA,EAA4B,CAAA,CAAE,UAGyB;AAAA,cAEvD,oBAAA,gCAAoB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"search-events.d.cts","names":[],"sources":["../../src/actions/search-events.ts"],"mappings":";;;cAIa,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;cA2BzB,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;cAK1B,oBAAA,gCAAoB,wBAAA"}
@@ -1,9 +1,50 @@
1
1
  import { z } from "zod";
2
2
 
3
3
  //#region src/actions/search-events.d.ts
4
- declare const SeatGeekSearchEventsInput: z.ZodTypeAny;
5
- declare const SeatGeekSearchEventsOutput: z.ZodTypeAny;
6
- declare const seatGeekSearchEvents: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
4
+ declare const SeatGeekSearchEventsInput: z.ZodObject<{
5
+ q: z.ZodOptional<z.ZodString>;
6
+ per_page: z.ZodOptional<z.ZodNumber>;
7
+ venue_id: z.ZodOptional<z.ZodString>;
8
+ venue_city: z.ZodOptional<z.ZodString>;
9
+ venue_state: z.ZodOptional<z.ZodString>;
10
+ datetime_utc: z.ZodOptional<z.ZodString>;
11
+ performers_id: z.ZodOptional<z.ZodString>;
12
+ taxonomies_id: z.ZodOptional<z.ZodString>;
13
+ datetime_local: z.ZodOptional<z.ZodString>;
14
+ performers_slug: z.ZodOptional<z.ZodString>;
15
+ taxonomies_name: z.ZodOptional<z.ZodString>;
16
+ datetime_utc_gte: z.ZodOptional<z.ZodString>;
17
+ datetime_utc_lte: z.ZodOptional<z.ZodString>;
18
+ }, z.core.$strip>;
19
+ declare const SeatGeekSearchEventsOutput: z.ZodObject<{
20
+ total: z.ZodNullable<z.ZodNumber>;
21
+ events: z.ZodArray<z.ZodObject<{
22
+ id: z.ZodNullable<z.ZodNumber>;
23
+ url: z.ZodNullable<z.ZodString>;
24
+ title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
25
+ venue: z.ZodNullable<z.ZodObject<{
26
+ city: z.ZodNullable<z.ZodString>;
27
+ name: z.ZodNullable<z.ZodString>;
28
+ }, z.core.$strip>>;
29
+ short_title: z.ZodOptional<z.ZodNullable<z.ZodString>>;
30
+ datetime_local: z.ZodNullable<z.ZodString>;
31
+ }, z.core.$strip>>;
32
+ }, z.core.$strip>;
33
+ declare const seatGeekSearchEvents: import("@keystrokehq/action").WorkflowActionDefinition<{
34
+ q?: string | undefined;
35
+ per_page?: number | undefined;
36
+ venue_id?: string | undefined;
37
+ venue_city?: string | undefined;
38
+ venue_state?: string | undefined;
39
+ datetime_utc?: string | undefined;
40
+ performers_id?: string | undefined;
41
+ taxonomies_id?: string | undefined;
42
+ datetime_local?: string | undefined;
43
+ performers_slug?: string | undefined;
44
+ taxonomies_name?: string | undefined;
45
+ datetime_utc_gte?: string | undefined;
46
+ datetime_utc_lte?: string | undefined;
47
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
48
  //#endregion
8
49
  export { seatGeekSearchEvents };
9
50
  //# sourceMappingURL=search-events.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"search-events.d.mts","names":[],"sources":["../../src/actions/search-events.ts"],"mappings":";;;cAIa,yBAAA,EAA2B,CAAA,CAAE,UAcxC;AAAA,cAaW,0BAAA,EAA4B,CAAA,CAAE,UAGyB;AAAA,cAEvD,oBAAA,gCAAoB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"search-events.d.mts","names":[],"sources":["../../src/actions/search-events.ts"],"mappings":";;;cAIa,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;cA2BzB,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;;;;;;;;;;;cAK1B,oBAAA,gCAAoB,wBAAA"}
@@ -17,16 +17,16 @@ const SeatGeekSearchEventsInput = z.object({
17
17
  datetime_utc_lte: z.string().describe("Filter events happening on or before this UTC date/time.").optional()
18
18
  });
19
19
  const SeatGeekSearchEvents_VenueInfoSchema = z.object({
20
- city: z.string().describe("Venue city"),
21
- name: z.string().describe("Venue name")
20
+ city: z.string().describe("Venue city").nullable(),
21
+ name: z.string().describe("Venue name").nullable()
22
22
  }).describe("Essential venue information");
23
23
  const SeatGeekSearchEvents_EventInfoSchema = z.object({
24
- id: z.number().int().describe("Unique SeatGeek event ID"),
25
- url: z.string().describe("SeatGeek URL for the event"),
24
+ id: z.number().int().describe("Unique SeatGeek event ID").nullable(),
25
+ url: z.string().describe("SeatGeek URL for the event").nullable(),
26
26
  title: z.string().describe("Event title").nullable().optional(),
27
27
  venue: SeatGeekSearchEvents_VenueInfoSchema.nullable(),
28
28
  short_title: z.string().describe("Short event title").nullable().optional(),
29
- datetime_local: z.string().describe("Event date and time in local timezone (ISO 8601 format)")
29
+ datetime_local: z.string().describe("Event date and time in local timezone (ISO 8601 format)").nullable()
30
30
  }).describe("Essential event information for schedule listing and discovery");
31
31
  const seatGeekSearchEvents = action("SEAT_GEEK_SEARCH_EVENTS", {
32
32
  slug: "seat_geek-search-events",
@@ -34,7 +34,7 @@ const seatGeekSearchEvents = action("SEAT_GEEK_SEARCH_EVENTS", {
34
34
  description: "Search for ticketed events on SeatGeek by performers, venues, dates, or general queries. Covers concerts, sports games, theater shows, and other live entertainment. Only indexes ticketed events; empty results may indicate coverage gaps. Avoid over-filtering — start broad and progressively narrow. lat and lon parameters must be supplied together for location-based filtering.",
35
35
  input: SeatGeekSearchEventsInput,
36
36
  output: z.object({
37
- total: z.number().int().describe("Total number of events available across all pages"),
37
+ total: z.number().int().describe("Total number of events available across all pages").nullable(),
38
38
  events: z.array(SeatGeekSearchEvents_EventInfoSchema).describe("List of events matching search criteria")
39
39
  }).describe("Search results containing essential event information")
40
40
  });
@@ -1 +1 @@
1
- {"version":3,"file":"search-events.mjs","names":[],"sources":["../../src/actions/search-events.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SeatGeekSearchEventsInput: z.ZodTypeAny = z.object({\n q: z.string().describe(\"General search query for events, performers, or venues. Supports natural language like 'yankees march' or 'skrillex on june 4th'.\").optional(),\n per_page: z.number().int().describe(\"Number of results per page. Default is 10. Maximum is 100. Use the page parameter to paginate when meta.total exceeds per_page to avoid silently missing events.\").optional(),\n venue_id: z.string().describe(\"Venue ID to filter events to a specific venue.\").optional(),\n venue_city: z.string().describe(\"City name to filter events by venue location.\").optional(),\n venue_state: z.string().describe(\"Two-letter state code to filter events by venue location.\").optional(),\n datetime_utc: z.string().describe(\"Filter events by exact UTC date/time. Format: YYYY-MM-DD or YYYY-MM-DDTHH:MM:SS.\").optional(),\n performers_id: z.string().describe(\"Performer ID(s) to filter events. Multiple IDs can be comma-separated for OR queries. IDs must come from prior SeatGeek search results; arbitrary or stale IDs may yield empty responses.\").optional(),\n taxonomies_id: z.string().describe(\"Filter events by taxonomy ID.\").optional(),\n datetime_local: z.string().describe(\"Filter events by exact local date/time. Format: YYYY-MM-DD or YYYY-MM-DDTHH:MM:SS.\").optional(),\n performers_slug: z.string().describe(\"Performer slug(s) to filter events. Use URL-friendly format.\").optional(),\n taxonomies_name: z.string().describe(\"Filter events by category/type name. Accepts a single value only; comma-separated categories silently return zero results even when each category individually has matches.\").optional(),\n datetime_utc_gte: z.string().describe(\"Filter events happening on or after this UTC date/time. Convert relative expressions ('tomorrow', 'this weekend') to explicit UTC timestamps before use. Widen UTC range to fully cover the intended local time window to avoid off-by-one-day omissions near day boundaries.\").optional(),\n datetime_utc_lte: z.string().describe(\"Filter events happening on or before this UTC date/time.\").optional(),\n});\nconst SeatGeekSearchEvents_VenueInfoSchema: z.ZodTypeAny = z.object({\n city: z.string().describe(\"Venue city\"),\n name: z.string().describe(\"Venue name\"),\n}).describe(\"Essential venue information\");\nconst SeatGeekSearchEvents_EventInfoSchema: z.ZodTypeAny = z.object({\n id: z.number().int().describe(\"Unique SeatGeek event ID\"),\n url: z.string().describe(\"SeatGeek URL for the event\"),\n title: z.string().describe(\"Event title\").nullable().optional(),\n venue: SeatGeekSearchEvents_VenueInfoSchema.nullable(),\n short_title: z.string().describe(\"Short event title\").nullable().optional(),\n datetime_local: z.string().describe(\"Event date and time in local timezone (ISO 8601 format)\"),\n}).describe(\"Essential event information for schedule listing and discovery\");\nexport const SeatGeekSearchEventsOutput: z.ZodTypeAny = z.object({\n total: z.number().int().describe(\"Total number of events available across all pages\"),\n events: z.array(SeatGeekSearchEvents_EventInfoSchema).describe(\"List of events matching search criteria\"),\n}).describe(\"Search results containing essential event information\");\n\nexport const seatGeekSearchEvents = action(\"SEAT_GEEK_SEARCH_EVENTS\", {\n slug: \"seat_geek-search-events\",\n name: \"Search Events\",\n description: \"Search for ticketed events on SeatGeek by performers, venues, dates, or general queries. Covers concerts, sports games, theater shows, and other live entertainment. Only indexes ticketed events; empty results may indicate coverage gaps. Avoid over-filtering — start broad and progressively narrow. lat and lon parameters must be supplied together for location-based filtering.\",\n input: SeatGeekSearchEventsInput,\n output: SeatGeekSearchEventsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,4BAA0C,EAAE,OAAO;CAC9D,GAAG,EAAE,OAAO,CAAC,CAAC,SAAS,mIAAmI,CAAC,CAAC,SAAS;CACrK,UAAU,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,kKAAkK,CAAC,CAAC,SAAS;CACjN,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS;CACzF,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS;CAC1F,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,2DAA2D,CAAC,CAAC,SAAS;CACvG,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,kFAAkF,CAAC,CAAC,SAAS;CAC/H,eAAe,EAAE,OAAO,CAAC,CAAC,SAAS,2LAA2L,CAAC,CAAC,SAAS;CACzO,eAAe,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS;CAC7E,gBAAgB,EAAE,OAAO,CAAC,CAAC,SAAS,oFAAoF,CAAC,CAAC,SAAS;CACnI,iBAAiB,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS;CAC9G,iBAAiB,EAAE,OAAO,CAAC,CAAC,SAAS,6KAA6K,CAAC,CAAC,SAAS;CAC7N,kBAAkB,EAAE,OAAO,CAAC,CAAC,SAAS,+QAA+Q,CAAC,CAAC,SAAS;CAChU,kBAAkB,EAAE,OAAO,CAAC,CAAC,SAAS,0DAA0D,CAAC,CAAC,SAAS;AAC7G,CAAC;AACD,MAAM,uCAAqD,EAAE,OAAO;CAClE,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,YAAY;CACtC,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,YAAY;AACxC,CAAC,CAAC,CAAC,SAAS,6BAA6B;AACzC,MAAM,uCAAqD,EAAE,OAAO;CAClE,IAAI,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,0BAA0B;CACxD,KAAK,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B;CACrD,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,aAAa,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9D,OAAO,qCAAqC,SAAS;CACrD,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,mBAAmB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1E,gBAAgB,EAAE,OAAO,CAAC,CAAC,SAAS,yDAAyD;AAC/F,CAAC,CAAC,CAAC,SAAS,gEAAgE;AAM5E,MAAa,uBAAuB,OAAO,2BAA2B;CACpE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAVsD,EAAE,OAAO;EAC/D,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,mDAAmD;EACpF,QAAQ,EAAE,MAAM,oCAAoC,CAAC,CAAC,SAAS,yCAAyC;CAC1G,CAAC,CAAC,CAAC,SAAS,uDAOF;AACV,CAAC"}
1
+ {"version":3,"file":"search-events.mjs","names":[],"sources":["../../src/actions/search-events.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SeatGeekSearchEventsInput = z.object({\n q: z.string().describe(\"General search query for events, performers, or venues. Supports natural language like 'yankees march' or 'skrillex on june 4th'.\").optional(),\n per_page: z.number().int().describe(\"Number of results per page. Default is 10. Maximum is 100. Use the page parameter to paginate when meta.total exceeds per_page to avoid silently missing events.\").optional(),\n venue_id: z.string().describe(\"Venue ID to filter events to a specific venue.\").optional(),\n venue_city: z.string().describe(\"City name to filter events by venue location.\").optional(),\n venue_state: z.string().describe(\"Two-letter state code to filter events by venue location.\").optional(),\n datetime_utc: z.string().describe(\"Filter events by exact UTC date/time. Format: YYYY-MM-DD or YYYY-MM-DDTHH:MM:SS.\").optional(),\n performers_id: z.string().describe(\"Performer ID(s) to filter events. Multiple IDs can be comma-separated for OR queries. IDs must come from prior SeatGeek search results; arbitrary or stale IDs may yield empty responses.\").optional(),\n taxonomies_id: z.string().describe(\"Filter events by taxonomy ID.\").optional(),\n datetime_local: z.string().describe(\"Filter events by exact local date/time. Format: YYYY-MM-DD or YYYY-MM-DDTHH:MM:SS.\").optional(),\n performers_slug: z.string().describe(\"Performer slug(s) to filter events. Use URL-friendly format.\").optional(),\n taxonomies_name: z.string().describe(\"Filter events by category/type name. Accepts a single value only; comma-separated categories silently return zero results even when each category individually has matches.\").optional(),\n datetime_utc_gte: z.string().describe(\"Filter events happening on or after this UTC date/time. Convert relative expressions ('tomorrow', 'this weekend') to explicit UTC timestamps before use. Widen UTC range to fully cover the intended local time window to avoid off-by-one-day omissions near day boundaries.\").optional(),\n datetime_utc_lte: z.string().describe(\"Filter events happening on or before this UTC date/time.\").optional(),\n});\nconst SeatGeekSearchEvents_VenueInfoSchema = z.object({\n city: z.string().describe(\"Venue city\").nullable(),\n name: z.string().describe(\"Venue name\").nullable(),\n}).describe(\"Essential venue information\");\nconst SeatGeekSearchEvents_EventInfoSchema = z.object({\n id: z.number().int().describe(\"Unique SeatGeek event ID\").nullable(),\n url: z.string().describe(\"SeatGeek URL for the event\").nullable(),\n title: z.string().describe(\"Event title\").nullable().optional(),\n venue: SeatGeekSearchEvents_VenueInfoSchema.nullable(),\n short_title: z.string().describe(\"Short event title\").nullable().optional(),\n datetime_local: z.string().describe(\"Event date and time in local timezone (ISO 8601 format)\").nullable(),\n}).describe(\"Essential event information for schedule listing and discovery\");\nexport const SeatGeekSearchEventsOutput = z.object({\n total: z.number().int().describe(\"Total number of events available across all pages\").nullable(),\n events: z.array(SeatGeekSearchEvents_EventInfoSchema).describe(\"List of events matching search criteria\"),\n}).describe(\"Search results containing essential event information\");\n\nexport const seatGeekSearchEvents = action(\"SEAT_GEEK_SEARCH_EVENTS\", {\n slug: \"seat_geek-search-events\",\n name: \"Search Events\",\n description: \"Search for ticketed events on SeatGeek by performers, venues, dates, or general queries. Covers concerts, sports games, theater shows, and other live entertainment. Only indexes ticketed events; empty results may indicate coverage gaps. Avoid over-filtering — start broad and progressively narrow. lat and lon parameters must be supplied together for location-based filtering.\",\n input: SeatGeekSearchEventsInput,\n output: SeatGeekSearchEventsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,4BAA4B,EAAE,OAAO;CAChD,GAAG,EAAE,OAAO,CAAC,CAAC,SAAS,mIAAmI,CAAC,CAAC,SAAS;CACrK,UAAU,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,kKAAkK,CAAC,CAAC,SAAS;CACjN,UAAU,EAAE,OAAO,CAAC,CAAC,SAAS,gDAAgD,CAAC,CAAC,SAAS;CACzF,YAAY,EAAE,OAAO,CAAC,CAAC,SAAS,+CAA+C,CAAC,CAAC,SAAS;CAC1F,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,2DAA2D,CAAC,CAAC,SAAS;CACvG,cAAc,EAAE,OAAO,CAAC,CAAC,SAAS,kFAAkF,CAAC,CAAC,SAAS;CAC/H,eAAe,EAAE,OAAO,CAAC,CAAC,SAAS,2LAA2L,CAAC,CAAC,SAAS;CACzO,eAAe,EAAE,OAAO,CAAC,CAAC,SAAS,+BAA+B,CAAC,CAAC,SAAS;CAC7E,gBAAgB,EAAE,OAAO,CAAC,CAAC,SAAS,oFAAoF,CAAC,CAAC,SAAS;CACnI,iBAAiB,EAAE,OAAO,CAAC,CAAC,SAAS,8DAA8D,CAAC,CAAC,SAAS;CAC9G,iBAAiB,EAAE,OAAO,CAAC,CAAC,SAAS,6KAA6K,CAAC,CAAC,SAAS;CAC7N,kBAAkB,EAAE,OAAO,CAAC,CAAC,SAAS,+QAA+Q,CAAC,CAAC,SAAS;CAChU,kBAAkB,EAAE,OAAO,CAAC,CAAC,SAAS,0DAA0D,CAAC,CAAC,SAAS;AAC7G,CAAC;AACD,MAAM,uCAAuC,EAAE,OAAO;CACpD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,YAAY,CAAC,CAAC,SAAS;CACjD,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,YAAY,CAAC,CAAC,SAAS;AACnD,CAAC,CAAC,CAAC,SAAS,6BAA6B;AACzC,MAAM,uCAAuC,EAAE,OAAO;CACpD,IAAI,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,0BAA0B,CAAC,CAAC,SAAS;CACnE,KAAK,EAAE,OAAO,CAAC,CAAC,SAAS,4BAA4B,CAAC,CAAC,SAAS;CAChE,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,aAAa,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC9D,OAAO,qCAAqC,SAAS;CACrD,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,mBAAmB,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAC1E,gBAAgB,EAAE,OAAO,CAAC,CAAC,SAAS,yDAAyD,CAAC,CAAC,SAAS;AAC1G,CAAC,CAAC,CAAC,SAAS,gEAAgE;AAM5E,MAAa,uBAAuB,OAAO,2BAA2B;CACpE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAVwC,EAAE,OAAO;EACjD,OAAO,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,mDAAmD,CAAC,CAAC,SAAS;EAC/F,QAAQ,EAAE,MAAM,oCAAoC,CAAC,CAAC,SAAS,yCAAyC;CAC1G,CAAC,CAAC,CAAC,SAAS,uDAOF;AACV,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"search-performers.cjs","names":["z","action"],"sources":["../../src/actions/search-performers.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SeatGeekSearchPerformersInput: z.ZodTypeAny = z.object({\n q: z.string().describe(\"General search query for performers. Search artists, bands, sports teams, or any performers.\").optional(),\n id: z.string().describe(\"Performer ID(s) to retrieve. Can be comma-separated for multiple performers. Must be valid SeatGeek performer IDs obtained from prior search results; arbitrary or external IDs return empty responses.\").optional(),\n slug: z.string().describe(\"Search for a specific performer by their slug (URL-friendly name).\").optional(),\n per_page: z.number().int().describe(\"Number of results per page. Default is 10. High values return large payloads; keep low when exploring.\").optional(),\n taxonomies_id: z.string().describe(\"Filter performers by taxonomy ID.\").optional(),\n taxonomies_name: z.string().describe(\"Filter performers by category/type name (e.g., 'sports', 'concert', 'theater').\").optional(),\n});\nexport const SeatGeekSearchPerformersOutput: z.ZodTypeAny = z.object({});\n\nexport const seatGeekSearchPerformers = action(\"SEAT_GEEK_SEARCH_PERFORMERS\", {\n slug: \"seat_geek-search-performers\",\n name: \"Search Performers\",\n description: \"Search for performers including artists, bands, sports teams, comedians, and more. Find your favorite entertainers and see their upcoming events.\",\n input: SeatGeekSearchPerformersInput,\n output: SeatGeekSearchPerformersOutput,\n});\n"],"mappings":";;;AAIA,MAAa,gCAA8CA,IAAAA,EAAE,OAAO;CAClE,GAAGA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8FAA8F,CAAC,CAAC,SAAS;CAChI,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yMAAyM,CAAC,CAAC,SAAS;CAC5O,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oEAAoE,CAAC,CAAC,SAAS;CACzG,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wGAAwG,CAAC,CAAC,SAAS;CACvJ,eAAeA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS;CACjF,iBAAiBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iFAAiF,CAAC,CAAC,SAAS;AACnI,CAAC;AACD,MAAa,iCAA+CA,IAAAA,EAAE,OAAO,CAAC,CAAC;AAEvE,MAAa,2BAA2BC,eAAAA,OAAO,+BAA+B;CAC5E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"search-performers.cjs","names":["z","action"],"sources":["../../src/actions/search-performers.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SeatGeekSearchPerformersInput = z.object({\n q: z.string().describe(\"General search query for performers. Search artists, bands, sports teams, or any performers.\").optional(),\n id: z.string().describe(\"Performer ID(s) to retrieve. Can be comma-separated for multiple performers. Must be valid SeatGeek performer IDs obtained from prior search results; arbitrary or external IDs return empty responses.\").optional(),\n slug: z.string().describe(\"Search for a specific performer by their slug (URL-friendly name).\").optional(),\n per_page: z.number().int().describe(\"Number of results per page. Default is 10. High values return large payloads; keep low when exploring.\").optional(),\n taxonomies_id: z.string().describe(\"Filter performers by taxonomy ID.\").optional(),\n taxonomies_name: z.string().describe(\"Filter performers by category/type name (e.g., 'sports', 'concert', 'theater').\").optional(),\n});\nexport const SeatGeekSearchPerformersOutput = z.object({});\n\nexport const seatGeekSearchPerformers = action(\"SEAT_GEEK_SEARCH_PERFORMERS\", {\n slug: \"seat_geek-search-performers\",\n name: \"Search Performers\",\n description: \"Search for performers including artists, bands, sports teams, comedians, and more. Find your favorite entertainers and see their upcoming events.\",\n input: SeatGeekSearchPerformersInput,\n output: SeatGeekSearchPerformersOutput,\n});\n"],"mappings":";;;AAIA,MAAa,gCAAgCA,IAAAA,EAAE,OAAO;CACpD,GAAGA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,8FAA8F,CAAC,CAAC,SAAS;CAChI,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yMAAyM,CAAC,CAAC,SAAS;CAC5O,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,oEAAoE,CAAC,CAAC,SAAS;CACzG,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wGAAwG,CAAC,CAAC,SAAS;CACvJ,eAAeA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS;CACjF,iBAAiBA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iFAAiF,CAAC,CAAC,SAAS;AACnI,CAAC;AACD,MAAa,iCAAiCA,IAAAA,EAAE,OAAO,CAAC,CAAC;AAEzD,MAAa,2BAA2BC,eAAAA,OAAO,+BAA+B;CAC5E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -1,9 +1,23 @@
1
1
  import { z } from "zod";
2
2
 
3
3
  //#region src/actions/search-performers.d.ts
4
- declare const SeatGeekSearchPerformersInput: z.ZodTypeAny;
5
- declare const SeatGeekSearchPerformersOutput: z.ZodTypeAny;
6
- declare const seatGeekSearchPerformers: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
4
+ declare const SeatGeekSearchPerformersInput: z.ZodObject<{
5
+ q: z.ZodOptional<z.ZodString>;
6
+ id: z.ZodOptional<z.ZodString>;
7
+ slug: z.ZodOptional<z.ZodString>;
8
+ per_page: z.ZodOptional<z.ZodNumber>;
9
+ taxonomies_id: z.ZodOptional<z.ZodString>;
10
+ taxonomies_name: z.ZodOptional<z.ZodString>;
11
+ }, z.core.$strip>;
12
+ declare const SeatGeekSearchPerformersOutput: z.ZodObject<{}, z.core.$strip>;
13
+ declare const seatGeekSearchPerformers: import("@keystrokehq/action").WorkflowActionDefinition<{
14
+ q?: string | undefined;
15
+ id?: string | undefined;
16
+ slug?: string | undefined;
17
+ per_page?: number | undefined;
18
+ taxonomies_id?: string | undefined;
19
+ taxonomies_name?: string | undefined;
20
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
21
  //#endregion
8
22
  export { seatGeekSearchPerformers };
9
23
  //# sourceMappingURL=search-performers.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"search-performers.d.cts","names":[],"sources":["../../src/actions/search-performers.ts"],"mappings":";;;cAIa,6BAAA,EAA+B,CAAA,CAAE,UAO5C;AAAA,cACW,8BAAA,EAAgC,CAAA,CAAE,UAAyB;AAAA,cAE3D,wBAAA,gCAAwB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"search-performers.d.cts","names":[],"sources":["../../src/actions/search-performers.ts"],"mappings":";;;cAIa,6BAAA,EAA6B,CAAA,CAAA,SAAA;;;;;;;;cAQ7B,8BAAA,EAA8B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAE9B,wBAAA,gCAAwB,wBAAA"}
@@ -1,9 +1,23 @@
1
1
  import { z } from "zod";
2
2
 
3
3
  //#region src/actions/search-performers.d.ts
4
- declare const SeatGeekSearchPerformersInput: z.ZodTypeAny;
5
- declare const SeatGeekSearchPerformersOutput: z.ZodTypeAny;
6
- declare const seatGeekSearchPerformers: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
4
+ declare const SeatGeekSearchPerformersInput: z.ZodObject<{
5
+ q: z.ZodOptional<z.ZodString>;
6
+ id: z.ZodOptional<z.ZodString>;
7
+ slug: z.ZodOptional<z.ZodString>;
8
+ per_page: z.ZodOptional<z.ZodNumber>;
9
+ taxonomies_id: z.ZodOptional<z.ZodString>;
10
+ taxonomies_name: z.ZodOptional<z.ZodString>;
11
+ }, z.core.$strip>;
12
+ declare const SeatGeekSearchPerformersOutput: z.ZodObject<{}, z.core.$strip>;
13
+ declare const seatGeekSearchPerformers: import("@keystrokehq/action").WorkflowActionDefinition<{
14
+ q?: string | undefined;
15
+ id?: string | undefined;
16
+ slug?: string | undefined;
17
+ per_page?: number | undefined;
18
+ taxonomies_id?: string | undefined;
19
+ taxonomies_name?: string | undefined;
20
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
21
  //#endregion
8
22
  export { seatGeekSearchPerformers };
9
23
  //# sourceMappingURL=search-performers.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"search-performers.d.mts","names":[],"sources":["../../src/actions/search-performers.ts"],"mappings":";;;cAIa,6BAAA,EAA+B,CAAA,CAAE,UAO5C;AAAA,cACW,8BAAA,EAAgC,CAAA,CAAE,UAAyB;AAAA,cAE3D,wBAAA,gCAAwB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"search-performers.d.mts","names":[],"sources":["../../src/actions/search-performers.ts"],"mappings":";;;cAIa,6BAAA,EAA6B,CAAA,CAAA,SAAA;;;;;;;;cAQ7B,8BAAA,EAA8B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAE9B,wBAAA,gCAAwB,wBAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"search-performers.mjs","names":[],"sources":["../../src/actions/search-performers.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SeatGeekSearchPerformersInput: z.ZodTypeAny = z.object({\n q: z.string().describe(\"General search query for performers. Search artists, bands, sports teams, or any performers.\").optional(),\n id: z.string().describe(\"Performer ID(s) to retrieve. Can be comma-separated for multiple performers. Must be valid SeatGeek performer IDs obtained from prior search results; arbitrary or external IDs return empty responses.\").optional(),\n slug: z.string().describe(\"Search for a specific performer by their slug (URL-friendly name).\").optional(),\n per_page: z.number().int().describe(\"Number of results per page. Default is 10. High values return large payloads; keep low when exploring.\").optional(),\n taxonomies_id: z.string().describe(\"Filter performers by taxonomy ID.\").optional(),\n taxonomies_name: z.string().describe(\"Filter performers by category/type name (e.g., 'sports', 'concert', 'theater').\").optional(),\n});\nexport const SeatGeekSearchPerformersOutput: z.ZodTypeAny = z.object({});\n\nexport const seatGeekSearchPerformers = action(\"SEAT_GEEK_SEARCH_PERFORMERS\", {\n slug: \"seat_geek-search-performers\",\n name: \"Search Performers\",\n description: \"Search for performers including artists, bands, sports teams, comedians, and more. Find your favorite entertainers and see their upcoming events.\",\n input: SeatGeekSearchPerformersInput,\n output: SeatGeekSearchPerformersOutput,\n});\n"],"mappings":";;AAcA,MAAa,2BAA2B,OAAO,+BAA+B;CAC5E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAdyD,EAAE,OAAO;EAClE,GAAG,EAAE,OAAO,CAAC,CAAC,SAAS,8FAA8F,CAAC,CAAC,SAAS;EAChI,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,yMAAyM,CAAC,CAAC,SAAS;EAC5O,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,oEAAoE,CAAC,CAAC,SAAS;EACzG,UAAU,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wGAAwG,CAAC,CAAC,SAAS;EACvJ,eAAe,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS;EACjF,iBAAiB,EAAE,OAAO,CAAC,CAAC,SAAS,iFAAiF,CAAC,CAAC,SAAS;CACnI,CAOS;CACP,QAP0D,EAAE,OAAO,CAAC,CAO5D;AACV,CAAC"}
1
+ {"version":3,"file":"search-performers.mjs","names":[],"sources":["../../src/actions/search-performers.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SeatGeekSearchPerformersInput = z.object({\n q: z.string().describe(\"General search query for performers. Search artists, bands, sports teams, or any performers.\").optional(),\n id: z.string().describe(\"Performer ID(s) to retrieve. Can be comma-separated for multiple performers. Must be valid SeatGeek performer IDs obtained from prior search results; arbitrary or external IDs return empty responses.\").optional(),\n slug: z.string().describe(\"Search for a specific performer by their slug (URL-friendly name).\").optional(),\n per_page: z.number().int().describe(\"Number of results per page. Default is 10. High values return large payloads; keep low when exploring.\").optional(),\n taxonomies_id: z.string().describe(\"Filter performers by taxonomy ID.\").optional(),\n taxonomies_name: z.string().describe(\"Filter performers by category/type name (e.g., 'sports', 'concert', 'theater').\").optional(),\n});\nexport const SeatGeekSearchPerformersOutput = z.object({});\n\nexport const seatGeekSearchPerformers = action(\"SEAT_GEEK_SEARCH_PERFORMERS\", {\n slug: \"seat_geek-search-performers\",\n name: \"Search Performers\",\n description: \"Search for performers including artists, bands, sports teams, comedians, and more. Find your favorite entertainers and see their upcoming events.\",\n input: SeatGeekSearchPerformersInput,\n output: SeatGeekSearchPerformersOutput,\n});\n"],"mappings":";;AAcA,MAAa,2BAA2B,OAAO,+BAA+B;CAC5E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAd2C,EAAE,OAAO;EACpD,GAAG,EAAE,OAAO,CAAC,CAAC,SAAS,8FAA8F,CAAC,CAAC,SAAS;EAChI,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,yMAAyM,CAAC,CAAC,SAAS;EAC5O,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,oEAAoE,CAAC,CAAC,SAAS;EACzG,UAAU,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,wGAAwG,CAAC,CAAC,SAAS;EACvJ,eAAe,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS;EACjF,iBAAiB,EAAE,OAAO,CAAC,CAAC,SAAS,iFAAiF,CAAC,CAAC,SAAS;CACnI,CAOS;CACP,QAP4C,EAAE,OAAO,CAAC,CAO9C;AACV,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"search-venues.cjs","names":["z","action"],"sources":["../../src/actions/search-venues.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SeatGeekSearchVenuesInput: z.ZodTypeAny = z.object({\n q: z.string().describe(\"General search query for venues.\").optional(),\n id: z.string().describe(\"Venue ID(s) to retrieve. Can be comma-separated for multiple venues.\").optional(),\n city: z.string().describe(\"Filter venues by city name.\").optional(),\n page: z.number().int().describe(\"Page number for pagination. Default is 1.\").optional(),\n state: z.string().describe(\"Filter venues by state (use two-letter state code).\").optional(),\n country: z.string().describe(\"Filter venues by country (use two-letter country code).\").optional(),\n per_page: z.number().int().describe(\"Number of results per page. Default is 10.\").optional(),\n postal_code: z.string().describe(\"Filter venues by postal/zip code.\").optional(),\n});\nexport const SeatGeekSearchVenuesOutput: z.ZodTypeAny = z.object({});\n\nexport const seatGeekSearchVenues = action(\"SEAT_GEEK_SEARCH_VENUES\", {\n slug: \"seat_geek-search-venues\",\n name: \"Search Venues\",\n description: \"Search for venues by location, name, or other criteria. Find stadiums, theaters, concert halls, and other entertainment venues. Supports lat/lon coordinate filtering (both must be provided together).\",\n input: SeatGeekSearchVenuesInput,\n output: SeatGeekSearchVenuesOutput,\n});\n"],"mappings":";;;AAIA,MAAa,4BAA0CA,IAAAA,EAAE,OAAO;CAC9D,GAAGA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS;CACpE,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sEAAsE,CAAC,CAAC,SAAS;CACzG,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS;CAClE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,2CAA2C,CAAC,CAAC,SAAS;CACtF,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qDAAqD,CAAC,CAAC,SAAS;CAC3F,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yDAAyD,CAAC,CAAC,SAAS;CACjG,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS;CAC3F,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS;AACjF,CAAC;AACD,MAAa,6BAA2CA,IAAAA,EAAE,OAAO,CAAC,CAAC;AAEnE,MAAa,uBAAuBC,eAAAA,OAAO,2BAA2B;CACpE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
1
+ {"version":3,"file":"search-venues.cjs","names":["z","action"],"sources":["../../src/actions/search-venues.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SeatGeekSearchVenuesInput = z.object({\n q: z.string().describe(\"General search query for venues.\").optional(),\n id: z.string().describe(\"Venue ID(s) to retrieve. Can be comma-separated for multiple venues.\").optional(),\n city: z.string().describe(\"Filter venues by city name.\").optional(),\n page: z.number().int().describe(\"Page number for pagination. Default is 1.\").optional(),\n state: z.string().describe(\"Filter venues by state (use two-letter state code).\").optional(),\n country: z.string().describe(\"Filter venues by country (use two-letter country code).\").optional(),\n per_page: z.number().int().describe(\"Number of results per page. Default is 10.\").optional(),\n postal_code: z.string().describe(\"Filter venues by postal/zip code.\").optional(),\n});\nexport const SeatGeekSearchVenuesOutput = z.object({});\n\nexport const seatGeekSearchVenues = action(\"SEAT_GEEK_SEARCH_VENUES\", {\n slug: \"seat_geek-search-venues\",\n name: \"Search Venues\",\n description: \"Search for venues by location, name, or other criteria. Find stadiums, theaters, concert halls, and other entertainment venues. Supports lat/lon coordinate filtering (both must be provided together).\",\n input: SeatGeekSearchVenuesInput,\n output: SeatGeekSearchVenuesOutput,\n});\n"],"mappings":";;;AAIA,MAAa,4BAA4BA,IAAAA,EAAE,OAAO;CAChD,GAAGA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS;CACpE,IAAIA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,sEAAsE,CAAC,CAAC,SAAS;CACzG,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS;CAClE,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,2CAA2C,CAAC,CAAC,SAAS;CACtF,OAAOA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qDAAqD,CAAC,CAAC,SAAS;CAC3F,SAASA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,yDAAyD,CAAC,CAAC,SAAS;CACjG,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS;CAC3F,aAAaA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS;AACjF,CAAC;AACD,MAAa,6BAA6BA,IAAAA,EAAE,OAAO,CAAC,CAAC;AAErD,MAAa,uBAAuBC,eAAAA,OAAO,2BAA2B;CACpE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
@@ -1,9 +1,27 @@
1
1
  import { z } from "zod";
2
2
 
3
3
  //#region src/actions/search-venues.d.ts
4
- declare const SeatGeekSearchVenuesInput: z.ZodTypeAny;
5
- declare const SeatGeekSearchVenuesOutput: z.ZodTypeAny;
6
- declare const seatGeekSearchVenues: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
4
+ declare const SeatGeekSearchVenuesInput: z.ZodObject<{
5
+ q: z.ZodOptional<z.ZodString>;
6
+ id: z.ZodOptional<z.ZodString>;
7
+ city: z.ZodOptional<z.ZodString>;
8
+ page: z.ZodOptional<z.ZodNumber>;
9
+ state: z.ZodOptional<z.ZodString>;
10
+ country: z.ZodOptional<z.ZodString>;
11
+ per_page: z.ZodOptional<z.ZodNumber>;
12
+ postal_code: z.ZodOptional<z.ZodString>;
13
+ }, z.core.$strip>;
14
+ declare const SeatGeekSearchVenuesOutput: z.ZodObject<{}, z.core.$strip>;
15
+ declare const seatGeekSearchVenues: import("@keystrokehq/action").WorkflowActionDefinition<{
16
+ q?: string | undefined;
17
+ id?: string | undefined;
18
+ city?: string | undefined;
19
+ page?: number | undefined;
20
+ state?: string | undefined;
21
+ country?: string | undefined;
22
+ per_page?: number | undefined;
23
+ postal_code?: string | undefined;
24
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
25
  //#endregion
8
26
  export { seatGeekSearchVenues };
9
27
  //# sourceMappingURL=search-venues.d.cts.map
@@ -1 +1 @@
1
- {"version":3,"file":"search-venues.d.cts","names":[],"sources":["../../src/actions/search-venues.ts"],"mappings":";;;cAIa,yBAAA,EAA2B,CAAA,CAAE,UASxC;AAAA,cACW,0BAAA,EAA4B,CAAA,CAAE,UAAyB;AAAA,cAEvD,oBAAA,gCAAoB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"search-venues.d.cts","names":[],"sources":["../../src/actions/search-venues.ts"],"mappings":";;;cAIa,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;;;cAUzB,0BAAA,EAA0B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAE1B,oBAAA,gCAAoB,wBAAA"}
@@ -1,9 +1,27 @@
1
1
  import { z } from "zod";
2
2
 
3
3
  //#region src/actions/search-venues.d.ts
4
- declare const SeatGeekSearchVenuesInput: z.ZodTypeAny;
5
- declare const SeatGeekSearchVenuesOutput: z.ZodTypeAny;
6
- declare const seatGeekSearchVenues: import("@keystrokehq/action").WorkflowActionDefinition<unknown, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
4
+ declare const SeatGeekSearchVenuesInput: z.ZodObject<{
5
+ q: z.ZodOptional<z.ZodString>;
6
+ id: z.ZodOptional<z.ZodString>;
7
+ city: z.ZodOptional<z.ZodString>;
8
+ page: z.ZodOptional<z.ZodNumber>;
9
+ state: z.ZodOptional<z.ZodString>;
10
+ country: z.ZodOptional<z.ZodString>;
11
+ per_page: z.ZodOptional<z.ZodNumber>;
12
+ postal_code: z.ZodOptional<z.ZodString>;
13
+ }, z.core.$strip>;
14
+ declare const SeatGeekSearchVenuesOutput: z.ZodObject<{}, z.core.$strip>;
15
+ declare const seatGeekSearchVenues: import("@keystrokehq/action").WorkflowActionDefinition<{
16
+ q?: string | undefined;
17
+ id?: string | undefined;
18
+ city?: string | undefined;
19
+ page?: number | undefined;
20
+ state?: string | undefined;
21
+ country?: string | undefined;
22
+ per_page?: number | undefined;
23
+ postal_code?: string | undefined;
24
+ }, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
7
25
  //#endregion
8
26
  export { seatGeekSearchVenues };
9
27
  //# sourceMappingURL=search-venues.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"search-venues.d.mts","names":[],"sources":["../../src/actions/search-venues.ts"],"mappings":";;;cAIa,yBAAA,EAA2B,CAAA,CAAE,UASxC;AAAA,cACW,0BAAA,EAA4B,CAAA,CAAE,UAAyB;AAAA,cAEvD,oBAAA,gCAAoB,wBAAA,iDAAA,mBAAA,yCAAA,UAAA,4CAAA,UAAA"}
1
+ {"version":3,"file":"search-venues.d.mts","names":[],"sources":["../../src/actions/search-venues.ts"],"mappings":";;;cAIa,yBAAA,EAAyB,CAAA,CAAA,SAAA;;;;;;;;;;cAUzB,0BAAA,EAA0B,CAAA,CAAA,SAAA,KAAA,CAAA,CAAA,IAAA,CAAA,MAAA;AAAA,cAE1B,oBAAA,gCAAoB,wBAAA"}
@@ -1 +1 @@
1
- {"version":3,"file":"search-venues.mjs","names":[],"sources":["../../src/actions/search-venues.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SeatGeekSearchVenuesInput: z.ZodTypeAny = z.object({\n q: z.string().describe(\"General search query for venues.\").optional(),\n id: z.string().describe(\"Venue ID(s) to retrieve. Can be comma-separated for multiple venues.\").optional(),\n city: z.string().describe(\"Filter venues by city name.\").optional(),\n page: z.number().int().describe(\"Page number for pagination. Default is 1.\").optional(),\n state: z.string().describe(\"Filter venues by state (use two-letter state code).\").optional(),\n country: z.string().describe(\"Filter venues by country (use two-letter country code).\").optional(),\n per_page: z.number().int().describe(\"Number of results per page. Default is 10.\").optional(),\n postal_code: z.string().describe(\"Filter venues by postal/zip code.\").optional(),\n});\nexport const SeatGeekSearchVenuesOutput: z.ZodTypeAny = z.object({});\n\nexport const seatGeekSearchVenues = action(\"SEAT_GEEK_SEARCH_VENUES\", {\n slug: \"seat_geek-search-venues\",\n name: \"Search Venues\",\n description: \"Search for venues by location, name, or other criteria. Find stadiums, theaters, concert halls, and other entertainment venues. Supports lat/lon coordinate filtering (both must be provided together).\",\n input: SeatGeekSearchVenuesInput,\n output: SeatGeekSearchVenuesOutput,\n});\n"],"mappings":";;AAgBA,MAAa,uBAAuB,OAAO,2BAA2B;CACpE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAhBqD,EAAE,OAAO;EAC9D,GAAG,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS;EACpE,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,sEAAsE,CAAC,CAAC,SAAS;EACzG,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS;EAClE,MAAM,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,2CAA2C,CAAC,CAAC,SAAS;EACtF,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,qDAAqD,CAAC,CAAC,SAAS;EAC3F,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,yDAAyD,CAAC,CAAC,SAAS;EACjG,UAAU,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS;EAC3F,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS;CACjF,CAOS;CACP,QAPsD,EAAE,OAAO,CAAC,CAOxD;AACV,CAAC"}
1
+ {"version":3,"file":"search-venues.mjs","names":[],"sources":["../../src/actions/search-venues.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SeatGeekSearchVenuesInput = z.object({\n q: z.string().describe(\"General search query for venues.\").optional(),\n id: z.string().describe(\"Venue ID(s) to retrieve. Can be comma-separated for multiple venues.\").optional(),\n city: z.string().describe(\"Filter venues by city name.\").optional(),\n page: z.number().int().describe(\"Page number for pagination. Default is 1.\").optional(),\n state: z.string().describe(\"Filter venues by state (use two-letter state code).\").optional(),\n country: z.string().describe(\"Filter venues by country (use two-letter country code).\").optional(),\n per_page: z.number().int().describe(\"Number of results per page. Default is 10.\").optional(),\n postal_code: z.string().describe(\"Filter venues by postal/zip code.\").optional(),\n});\nexport const SeatGeekSearchVenuesOutput = z.object({});\n\nexport const seatGeekSearchVenues = action(\"SEAT_GEEK_SEARCH_VENUES\", {\n slug: \"seat_geek-search-venues\",\n name: \"Search Venues\",\n description: \"Search for venues by location, name, or other criteria. Find stadiums, theaters, concert halls, and other entertainment venues. Supports lat/lon coordinate filtering (both must be provided together).\",\n input: SeatGeekSearchVenuesInput,\n output: SeatGeekSearchVenuesOutput,\n});\n"],"mappings":";;AAgBA,MAAa,uBAAuB,OAAO,2BAA2B;CACpE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAhBuC,EAAE,OAAO;EAChD,GAAG,EAAE,OAAO,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS;EACpE,IAAI,EAAE,OAAO,CAAC,CAAC,SAAS,sEAAsE,CAAC,CAAC,SAAS;EACzG,MAAM,EAAE,OAAO,CAAC,CAAC,SAAS,6BAA6B,CAAC,CAAC,SAAS;EAClE,MAAM,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,2CAA2C,CAAC,CAAC,SAAS;EACtF,OAAO,EAAE,OAAO,CAAC,CAAC,SAAS,qDAAqD,CAAC,CAAC,SAAS;EAC3F,SAAS,EAAE,OAAO,CAAC,CAAC,SAAS,yDAAyD,CAAC,CAAC,SAAS;EACjG,UAAU,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,4CAA4C,CAAC,CAAC,SAAS;EAC3F,aAAa,EAAE,OAAO,CAAC,CAAC,SAAS,mCAAmC,CAAC,CAAC,SAAS;CACjF,CAOS;CACP,QAPwC,EAAE,OAAO,CAAC,CAO1C;AACV,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keystrokehq/seat_geek",
3
- "version": "0.1.0",
3
+ "version": "0.1.2",
4
4
  "publishConfig": {
5
5
  "access": "public",
6
6
  "registry": "https://registry.npmjs.org"
@@ -31,7 +31,7 @@
31
31
  }
32
32
  },
33
33
  "peerDependencies": {
34
- "@keystrokehq/keystroke": "^0.1.4",
34
+ "@keystrokehq/keystroke": ">=0.1.4",
35
35
  "zod": "^4.4.3"
36
36
  },
37
37
  "devDependencies": {