@keystrokehq/seat_geek 0.1.0 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/action.cjs.map +1 -1
- package/dist/action.mjs.map +1 -1
- package/dist/actions/get-event-details.cjs +1 -1
- package/dist/actions/get-event-details.cjs.map +1 -1
- package/dist/actions/get-event-details.d.cts +7 -3
- package/dist/actions/get-event-details.d.cts.map +1 -1
- package/dist/actions/get-event-details.d.mts +7 -3
- package/dist/actions/get-event-details.d.mts.map +1 -1
- package/dist/actions/get-event-details.mjs +1 -1
- package/dist/actions/get-event-details.mjs.map +1 -1
- package/dist/actions/get-event-recommendations.cjs +13 -13
- package/dist/actions/get-event-recommendations.cjs.map +1 -1
- package/dist/actions/get-event-recommendations.d.cts +68 -3
- package/dist/actions/get-event-recommendations.d.cts.map +1 -1
- package/dist/actions/get-event-recommendations.d.mts +68 -3
- package/dist/actions/get-event-recommendations.d.mts.map +1 -1
- package/dist/actions/get-event-recommendations.mjs +13 -13
- package/dist/actions/get-event-recommendations.mjs.map +1 -1
- package/dist/actions/get-event-seating.cjs +3 -3
- package/dist/actions/get-event-seating.cjs.map +1 -1
- package/dist/actions/get-event-seating.d.cts +12 -3
- package/dist/actions/get-event-seating.d.cts.map +1 -1
- package/dist/actions/get-event-seating.d.mts +12 -3
- package/dist/actions/get-event-seating.d.mts.map +1 -1
- package/dist/actions/get-event-seating.mjs +3 -3
- package/dist/actions/get-event-seating.mjs.map +1 -1
- package/dist/actions/get-performer-details.cjs +14 -14
- package/dist/actions/get-performer-details.cjs.map +1 -1
- package/dist/actions/get-performer-details.d.cts +34 -3
- package/dist/actions/get-performer-details.d.cts.map +1 -1
- package/dist/actions/get-performer-details.d.mts +34 -3
- package/dist/actions/get-performer-details.d.mts.map +1 -1
- package/dist/actions/get-performer-details.mjs +14 -14
- package/dist/actions/get-performer-details.mjs.map +1 -1
- package/dist/actions/get-performer-recommendations.cjs +1 -1
- package/dist/actions/get-performer-recommendations.cjs.map +1 -1
- package/dist/actions/get-performer-recommendations.d.cts +11 -3
- package/dist/actions/get-performer-recommendations.d.cts.map +1 -1
- package/dist/actions/get-performer-recommendations.d.mts +11 -3
- package/dist/actions/get-performer-recommendations.d.mts.map +1 -1
- package/dist/actions/get-performer-recommendations.mjs +1 -1
- package/dist/actions/get-performer-recommendations.mjs.map +1 -1
- package/dist/actions/get-taxonomies.cjs +1 -1
- package/dist/actions/get-taxonomies.cjs.map +1 -1
- package/dist/actions/get-taxonomies.d.cts +9 -3
- package/dist/actions/get-taxonomies.d.cts.map +1 -1
- package/dist/actions/get-taxonomies.d.mts +9 -3
- package/dist/actions/get-taxonomies.d.mts.map +1 -1
- package/dist/actions/get-taxonomies.mjs +1 -1
- package/dist/actions/get-taxonomies.mjs.map +1 -1
- package/dist/actions/get-venue-details.cjs +5 -5
- package/dist/actions/get-venue-details.cjs.map +1 -1
- package/dist/actions/get-venue-details.d.cts +48 -3
- package/dist/actions/get-venue-details.d.cts.map +1 -1
- package/dist/actions/get-venue-details.d.mts +48 -3
- package/dist/actions/get-venue-details.d.mts.map +1 -1
- package/dist/actions/get-venue-details.mjs +5 -5
- package/dist/actions/get-venue-details.mjs.map +1 -1
- package/dist/actions/search-events.cjs +9 -9
- package/dist/actions/search-events.cjs.map +1 -1
- package/dist/actions/search-events.d.cts +44 -3
- package/dist/actions/search-events.d.cts.map +1 -1
- package/dist/actions/search-events.d.mts +44 -3
- package/dist/actions/search-events.d.mts.map +1 -1
- package/dist/actions/search-events.mjs +9 -9
- package/dist/actions/search-events.mjs.map +1 -1
- package/dist/actions/search-performers.cjs +1 -1
- package/dist/actions/search-performers.cjs.map +1 -1
- package/dist/actions/search-performers.d.cts +17 -3
- package/dist/actions/search-performers.d.cts.map +1 -1
- package/dist/actions/search-performers.d.mts +17 -3
- package/dist/actions/search-performers.d.mts.map +1 -1
- package/dist/actions/search-performers.mjs +1 -1
- package/dist/actions/search-performers.mjs.map +1 -1
- package/dist/actions/search-venues.cjs +1 -1
- package/dist/actions/search-venues.cjs.map +1 -1
- package/dist/actions/search-venues.d.cts +21 -3
- package/dist/actions/search-venues.d.cts.map +1 -1
- package/dist/actions/search-venues.d.mts +21 -3
- package/dist/actions/search-venues.d.mts.map +1 -1
- package/dist/actions/search-venues.mjs +1 -1
- package/dist/actions/search-venues.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1,9 +1,18 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/get-event-seating.d.ts
|
|
4
|
-
declare const SeatGeekGetEventSeatingInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const SeatGeekGetEventSeatingInput: z.ZodObject<{
|
|
5
|
+
event_id: z.ZodNumber;
|
|
6
|
+
}, z.core.$strip>;
|
|
7
|
+
declare const SeatGeekGetEventSeatingOutput: z.ZodObject<{
|
|
8
|
+
meta: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
9
|
+
status: z.ZodNullable<z.ZodNumber>;
|
|
10
|
+
}, z.core.$loose>>>;
|
|
11
|
+
sections: z.ZodOptional<z.ZodNullable<z.ZodRecord<z.ZodString, z.ZodUnknown>>>;
|
|
12
|
+
}, z.core.$loose>;
|
|
13
|
+
declare const seatGeekGetEventSeating: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
14
|
+
event_id: number;
|
|
15
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
16
|
//#endregion
|
|
8
17
|
export { seatGeekGetEventSeating };
|
|
9
18
|
//# sourceMappingURL=get-event-seating.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-event-seating.d.mts","names":[],"sources":["../../src/actions/get-event-seating.ts"],"mappings":";;;cAIa,4BAAA,
|
|
1
|
+
{"version":3,"file":"get-event-seating.d.mts","names":[],"sources":["../../src/actions/get-event-seating.ts"],"mappings":";;;cAIa,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;cAM5B,6BAAA,EAA6B,CAAA,CAAA,SAAA;;;;;;cAK7B,uBAAA,gCAAuB,wBAAA"}
|
|
@@ -2,7 +2,7 @@ import { action } from "../action.mjs";
|
|
|
2
2
|
import { z } from "zod";
|
|
3
3
|
//#region src/actions/get-event-seating.ts
|
|
4
4
|
const SeatGeekGetEventSeatingInput = z.object({ event_id: z.number().int().describe("The unique SeatGeek event ID. Get this from SEAT_GEEK_SEARCH_EVENTS. Note: Seating info is only available for events at major venues (stadiums, arenas). Concerts at small venues or general admission events return 404.") });
|
|
5
|
-
const SeatGeekGetEventSeating_MetaDataSchema = z.object({ status: z.number().int().describe("HTTP status code of the response") });
|
|
5
|
+
const SeatGeekGetEventSeating_MetaDataSchema = z.object({ status: z.number().int().describe("HTTP status code of the response").nullable() }).passthrough();
|
|
6
6
|
const seatGeekGetEventSeating = action("SEAT_GEEK_GET_EVENT_SEATING", {
|
|
7
7
|
slug: "seat_geek-get-event-seating",
|
|
8
8
|
name: "Get Event Seating Information",
|
|
@@ -10,8 +10,8 @@ const seatGeekGetEventSeating = action("SEAT_GEEK_GET_EVENT_SEATING", {
|
|
|
10
10
|
input: SeatGeekGetEventSeatingInput,
|
|
11
11
|
output: z.object({
|
|
12
12
|
meta: SeatGeekGetEventSeating_MetaDataSchema.nullable().optional(),
|
|
13
|
-
sections: z.
|
|
14
|
-
})
|
|
13
|
+
sections: z.record(z.string(), z.unknown()).describe("Dictionary mapping section names (e.g., '101', 'floor', 'suite-14') to lists of available row letters/identifiers in that section").nullable().optional()
|
|
14
|
+
}).passthrough()
|
|
15
15
|
});
|
|
16
16
|
//#endregion
|
|
17
17
|
export { seatGeekGetEventSeating };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-event-seating.mjs","names":[],"sources":["../../src/actions/get-event-seating.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SeatGeekGetEventSeatingInput
|
|
1
|
+
{"version":3,"file":"get-event-seating.mjs","names":[],"sources":["../../src/actions/get-event-seating.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SeatGeekGetEventSeatingInput = z.object({\n event_id: z.number().int().describe(\"The unique SeatGeek event ID. Get this from SEAT_GEEK_SEARCH_EVENTS. Note: Seating info is only available for events at major venues (stadiums, arenas). Concerts at small venues or general admission events return 404.\"),\n});\nconst SeatGeekGetEventSeating_MetaDataSchema = z.object({\n status: z.number().int().describe(\"HTTP status code of the response\").nullable(),\n}).passthrough();\nexport const SeatGeekGetEventSeatingOutput = z.object({\n meta: SeatGeekGetEventSeating_MetaDataSchema.nullable().optional(),\n sections: z.record(z.string(), z.unknown()).describe(\"Dictionary mapping section names (e.g., '101', 'floor', 'suite-14') to lists of available row letters/identifiers in that section\").nullable().optional(),\n}).passthrough();\n\nexport const seatGeekGetEventSeating = action(\"SEAT_GEEK_GET_EVENT_SEATING\", {\n slug: \"seat_geek-get-event-seating\",\n name: \"Get Event Seating Information\",\n description: \"Get section and row layout information for a specific event's venue. Returns available sections (e.g., '101', 'floor', 'suite-14') mapped to their row identifiers. IMPORTANT: Only works for events at major venues with seating maps (stadiums, arenas). Small venue concerts or general admission events will return a 404 error. Use SEAT_GEEK_SEARCH_EVENTS with taxonomies_name='sports' to find events that have seating data.\",\n input: SeatGeekGetEventSeatingInput,\n output: SeatGeekGetEventSeatingOutput,\n});\n"],"mappings":";;;AAIA,MAAa,+BAA+B,EAAE,OAAO,EACnD,UAAU,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,2NAA2N,EACjQ,CAAC;AACD,MAAM,yCAAyC,EAAE,OAAO,EACtD,QAAQ,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,kCAAkC,CAAC,CAAC,SAAS,EACjF,CAAC,CAAC,CAAC,YAAY;AAMf,MAAa,0BAA0B,OAAO,+BAA+B;CAC3E,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAV2C,EAAE,OAAO;EACpD,MAAM,uCAAuC,SAAS,CAAC,CAAC,SAAS;EACjE,UAAU,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAAC,CAAC,CAAC,SAAS,mIAAmI,CAAC,CAAC,SAAS,CAAC,CAAC,SAAS;CAChN,CAAC,CAAC,CAAC,YAOO;AACV,CAAC"}
|
|
@@ -2,24 +2,24 @@ const require_action = require("../action.cjs");
|
|
|
2
2
|
let zod = require("zod");
|
|
3
3
|
//#region src/actions/get-performer-details.ts
|
|
4
4
|
const SeatGeekGetPerformerDetailsInput = zod.z.object({ performer_id: zod.z.string().describe("The unique numeric ID of the performer to retrieve details for. Can be obtained from search_performers action or from event details. Examples: '266' (Beastie Boys), '303' (Billy Joel), '1' (LA Dodgers).") });
|
|
5
|
-
const SeatGeekGetPerformerDetails_PerformerStatsSchema = zod.z.object({ event_count: zod.z.number().int().describe("Number of upcoming events for this performer").nullable().optional() }).describe("Statistics for a performer.");
|
|
5
|
+
const SeatGeekGetPerformerDetails_PerformerStatsSchema = zod.z.object({ event_count: zod.z.number().int().describe("Number of upcoming events for this performer").nullable().optional() }).passthrough().describe("Statistics for a performer.");
|
|
6
6
|
const SeatGeekGetPerformerDetails_PerformerGenreSchema = zod.z.object({
|
|
7
|
-
id: zod.z.number().int().describe("Unique identifier for the genre"),
|
|
8
|
-
name: zod.z.string().describe("Genre name (e.g., 'Rock', 'Hip-hop')"),
|
|
9
|
-
slug: zod.z.string().describe("URL-friendly genre slug"),
|
|
7
|
+
id: zod.z.number().int().describe("Unique identifier for the genre").nullable(),
|
|
8
|
+
name: zod.z.string().describe("Genre name (e.g., 'Rock', 'Hip-hop')").nullable(),
|
|
9
|
+
slug: zod.z.string().describe("URL-friendly genre slug").nullable(),
|
|
10
10
|
primary: zod.z.boolean().default(false).describe("Whether this is the primary genre").nullable().optional()
|
|
11
|
-
}).describe("Genre information for music performers.");
|
|
11
|
+
}).passthrough().describe("Genre information for music performers.");
|
|
12
12
|
const SeatGeekGetPerformerDetails_PerformerTaxonomySchema = zod.z.object({
|
|
13
|
-
id: zod.z.number().int().describe("Unique identifier for the taxonomy"),
|
|
14
|
-
name: zod.z.string().describe("Name of the taxonomy (e.g., 'concert', 'mlb')"),
|
|
13
|
+
id: zod.z.number().int().describe("Unique identifier for the taxonomy").nullable(),
|
|
14
|
+
name: zod.z.string().describe("Name of the taxonomy (e.g., 'concert', 'mlb')").nullable(),
|
|
15
15
|
parent_id: zod.z.number().int().describe("ID of parent taxonomy, null if top-level").nullable().optional()
|
|
16
|
-
}).describe("Taxonomy classification for a performer.");
|
|
16
|
+
}).passthrough().describe("Taxonomy classification for a performer.");
|
|
17
17
|
const SeatGeekGetPerformerDetailsOutput = zod.z.object({
|
|
18
|
-
id: zod.z.number().int().describe("Unique performer ID"),
|
|
19
|
-
url: zod.z.string().describe("SeatGeek URL for ticket purchases"),
|
|
20
|
-
name: zod.z.string().describe("Full name of the performer"),
|
|
21
|
-
slug: zod.z.string().describe("URL-friendly performer identifier"),
|
|
22
|
-
type: zod.z.string().describe("Performer type (e.g., 'band', 'mlb', 'nfl', 'theater', 'nba')"),
|
|
18
|
+
id: zod.z.number().int().describe("Unique performer ID").nullable(),
|
|
19
|
+
url: zod.z.string().describe("SeatGeek URL for ticket purchases").nullable(),
|
|
20
|
+
name: zod.z.string().describe("Full name of the performer").nullable(),
|
|
21
|
+
slug: zod.z.string().describe("URL-friendly performer identifier").nullable(),
|
|
22
|
+
type: zod.z.string().describe("Performer type (e.g., 'band', 'mlb', 'nfl', 'theater', 'nba')").nullable(),
|
|
23
23
|
image: zod.z.string().describe("Primary performer image URL").nullable().optional(),
|
|
24
24
|
score: zod.z.number().describe("Performer popularity score from 0 to 1").nullable().optional(),
|
|
25
25
|
stats: SeatGeekGetPerformerDetails_PerformerStatsSchema.nullable().optional(),
|
|
@@ -30,7 +30,7 @@ const SeatGeekGetPerformerDetailsOutput = zod.z.object({
|
|
|
30
30
|
home_venue_id: zod.z.number().int().describe("Home venue ID for sports teams").nullable().optional(),
|
|
31
31
|
has_upcoming_events: zod.z.boolean().default(false).describe("Whether performer has upcoming events").nullable().optional(),
|
|
32
32
|
num_upcoming_events: zod.z.number().int().describe("Count of upcoming events").nullable().optional()
|
|
33
|
-
}).describe("Response containing detailed performer information.");
|
|
33
|
+
}).passthrough().describe("Response containing detailed performer information.");
|
|
34
34
|
const seatGeekGetPerformerDetails = require_action.action("SEAT_GEEK_GET_PERFORMER_DETAILS", {
|
|
35
35
|
slug: "seat_geek-get-performer-details",
|
|
36
36
|
name: "Get Performer Details",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-performer-details.cjs","names":["z","action"],"sources":["../../src/actions/get-performer-details.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SeatGeekGetPerformerDetailsInput
|
|
1
|
+
{"version":3,"file":"get-performer-details.cjs","names":["z","action"],"sources":["../../src/actions/get-performer-details.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SeatGeekGetPerformerDetailsInput = z.object({\n performer_id: z.string().describe(\"The unique numeric ID of the performer to retrieve details for. Can be obtained from search_performers action or from event details. Examples: '266' (Beastie Boys), '303' (Billy Joel), '1' (LA Dodgers).\"),\n});\nconst SeatGeekGetPerformerDetails_PerformerStatsSchema = z.object({\n event_count: z.number().int().describe(\"Number of upcoming events for this performer\").nullable().optional(),\n}).passthrough().describe(\"Statistics for a performer.\");\nconst SeatGeekGetPerformerDetails_PerformerGenreSchema = z.object({\n id: z.number().int().describe(\"Unique identifier for the genre\").nullable(),\n name: z.string().describe(\"Genre name (e.g., 'Rock', 'Hip-hop')\").nullable(),\n slug: z.string().describe(\"URL-friendly genre slug\").nullable(),\n primary: z.boolean().default(false).describe(\"Whether this is the primary genre\").nullable().optional(),\n}).passthrough().describe(\"Genre information for music performers.\");\nconst SeatGeekGetPerformerDetails_PerformerTaxonomySchema = z.object({\n id: z.number().int().describe(\"Unique identifier for the taxonomy\").nullable(),\n name: z.string().describe(\"Name of the taxonomy (e.g., 'concert', 'mlb')\").nullable(),\n parent_id: z.number().int().describe(\"ID of parent taxonomy, null if top-level\").nullable().optional(),\n}).passthrough().describe(\"Taxonomy classification for a performer.\");\nexport const SeatGeekGetPerformerDetailsOutput = z.object({\n id: z.number().int().describe(\"Unique performer ID\").nullable(),\n url: z.string().describe(\"SeatGeek URL for ticket purchases\").nullable(),\n name: z.string().describe(\"Full name of the performer\").nullable(),\n slug: z.string().describe(\"URL-friendly performer identifier\").nullable(),\n type: z.string().describe(\"Performer type (e.g., 'band', 'mlb', 'nfl', 'theater', 'nba')\").nullable(),\n image: z.string().describe(\"Primary performer image URL\").nullable().optional(),\n score: z.number().describe(\"Performer popularity score from 0 to 1\").nullable().optional(),\n stats: SeatGeekGetPerformerDetails_PerformerStatsSchema.nullable().optional(),\n genres: z.array(SeatGeekGetPerformerDetails_PerformerGenreSchema).describe(\"Music genres (for band/music performers)\").nullable().optional(),\n popularity: z.number().describe(\"Absolute popularity metric\").nullable().optional(),\n short_name: z.string().describe(\"Shortened display name for the performer\").nullable().optional(),\n taxonomies: z.array(SeatGeekGetPerformerDetails_PerformerTaxonomySchema).describe(\"Category classifications (sports, concert, theater, etc.)\").nullable().optional(),\n home_venue_id: z.number().int().describe(\"Home venue ID for sports teams\").nullable().optional(),\n has_upcoming_events: z.boolean().default(false).describe(\"Whether performer has upcoming events\").nullable().optional(),\n num_upcoming_events: z.number().int().describe(\"Count of upcoming events\").nullable().optional(),\n}).passthrough().describe(\"Response containing detailed performer information.\");\n\nexport const seatGeekGetPerformerDetails = action(\"SEAT_GEEK_GET_PERFORMER_DETAILS\", {\n slug: \"seat_geek-get-performer-details\",\n name: \"Get Performer Details\",\n description: \"Retrieves detailed information about a specific performer (artist, sports team, or theatrical production) from SeatGeek by their unique ID. Returns comprehensive data including performer name, type, images, popularity scores, upcoming event counts, genre/taxonomy classifications, and ticket URLs. Does not include box scores, match statistics, or performance stats. Use this action when you need fields beyond the basic performer info already embedded in event details (e.g., popularity scores, full taxonomy, upcoming event counts). To find performer IDs, first use the search_performers action to search by name.\",\n input: SeatGeekGetPerformerDetailsInput,\n output: SeatGeekGetPerformerDetailsOutput,\n});\n"],"mappings":"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"}
|
|
@@ -1,9 +1,40 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/get-performer-details.d.ts
|
|
4
|
-
declare const SeatGeekGetPerformerDetailsInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const SeatGeekGetPerformerDetailsInput: z.ZodObject<{
|
|
5
|
+
performer_id: z.ZodString;
|
|
6
|
+
}, z.core.$strip>;
|
|
7
|
+
declare const SeatGeekGetPerformerDetailsOutput: z.ZodObject<{
|
|
8
|
+
id: z.ZodNullable<z.ZodNumber>;
|
|
9
|
+
url: z.ZodNullable<z.ZodString>;
|
|
10
|
+
name: z.ZodNullable<z.ZodString>;
|
|
11
|
+
slug: z.ZodNullable<z.ZodString>;
|
|
12
|
+
type: z.ZodNullable<z.ZodString>;
|
|
13
|
+
image: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14
|
+
score: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
15
|
+
stats: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
16
|
+
event_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
17
|
+
}, z.core.$loose>>>;
|
|
18
|
+
genres: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
19
|
+
id: z.ZodNullable<z.ZodNumber>;
|
|
20
|
+
name: z.ZodNullable<z.ZodString>;
|
|
21
|
+
slug: z.ZodNullable<z.ZodString>;
|
|
22
|
+
primary: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
|
|
23
|
+
}, z.core.$loose>>>>;
|
|
24
|
+
popularity: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
25
|
+
short_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26
|
+
taxonomies: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
27
|
+
id: z.ZodNullable<z.ZodNumber>;
|
|
28
|
+
name: z.ZodNullable<z.ZodString>;
|
|
29
|
+
parent_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
30
|
+
}, z.core.$loose>>>>;
|
|
31
|
+
home_venue_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
32
|
+
has_upcoming_events: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
|
|
33
|
+
num_upcoming_events: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
34
|
+
}, z.core.$loose>;
|
|
35
|
+
declare const seatGeekGetPerformerDetails: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
36
|
+
performer_id: string;
|
|
37
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
38
|
//#endregion
|
|
8
39
|
export { seatGeekGetPerformerDetails };
|
|
9
40
|
//# sourceMappingURL=get-performer-details.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-performer-details.d.cts","names":[],"sources":["../../src/actions/get-performer-details.ts"],"mappings":";;;cAIa,gCAAA,
|
|
1
|
+
{"version":3,"file":"get-performer-details.d.cts","names":[],"sources":["../../src/actions/get-performer-details.ts"],"mappings":";;;cAIa,gCAAA,EAAgC,CAAA,CAAA,SAAA;;;cAiBhC,iCAAA,EAAiC,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAkBjC,2BAAA,gCAA2B,wBAAA"}
|
|
@@ -1,9 +1,40 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/get-performer-details.d.ts
|
|
4
|
-
declare const SeatGeekGetPerformerDetailsInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const SeatGeekGetPerformerDetailsInput: z.ZodObject<{
|
|
5
|
+
performer_id: z.ZodString;
|
|
6
|
+
}, z.core.$strip>;
|
|
7
|
+
declare const SeatGeekGetPerformerDetailsOutput: z.ZodObject<{
|
|
8
|
+
id: z.ZodNullable<z.ZodNumber>;
|
|
9
|
+
url: z.ZodNullable<z.ZodString>;
|
|
10
|
+
name: z.ZodNullable<z.ZodString>;
|
|
11
|
+
slug: z.ZodNullable<z.ZodString>;
|
|
12
|
+
type: z.ZodNullable<z.ZodString>;
|
|
13
|
+
image: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
14
|
+
score: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
15
|
+
stats: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
16
|
+
event_count: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
17
|
+
}, z.core.$loose>>>;
|
|
18
|
+
genres: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
19
|
+
id: z.ZodNullable<z.ZodNumber>;
|
|
20
|
+
name: z.ZodNullable<z.ZodString>;
|
|
21
|
+
slug: z.ZodNullable<z.ZodString>;
|
|
22
|
+
primary: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
|
|
23
|
+
}, z.core.$loose>>>>;
|
|
24
|
+
popularity: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
25
|
+
short_name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
26
|
+
taxonomies: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
|
|
27
|
+
id: z.ZodNullable<z.ZodNumber>;
|
|
28
|
+
name: z.ZodNullable<z.ZodString>;
|
|
29
|
+
parent_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
30
|
+
}, z.core.$loose>>>>;
|
|
31
|
+
home_venue_id: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
32
|
+
has_upcoming_events: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodBoolean>>>;
|
|
33
|
+
num_upcoming_events: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
34
|
+
}, z.core.$loose>;
|
|
35
|
+
declare const seatGeekGetPerformerDetails: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
36
|
+
performer_id: string;
|
|
37
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
38
|
//#endregion
|
|
8
39
|
export { seatGeekGetPerformerDetails };
|
|
9
40
|
//# sourceMappingURL=get-performer-details.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-performer-details.d.mts","names":[],"sources":["../../src/actions/get-performer-details.ts"],"mappings":";;;cAIa,gCAAA,
|
|
1
|
+
{"version":3,"file":"get-performer-details.d.mts","names":[],"sources":["../../src/actions/get-performer-details.ts"],"mappings":";;;cAIa,gCAAA,EAAgC,CAAA,CAAA,SAAA;;;cAiBhC,iCAAA,EAAiC,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAkBjC,2BAAA,gCAA2B,wBAAA"}
|
|
@@ -2,29 +2,29 @@ import { action } from "../action.mjs";
|
|
|
2
2
|
import { z } from "zod";
|
|
3
3
|
//#region src/actions/get-performer-details.ts
|
|
4
4
|
const SeatGeekGetPerformerDetailsInput = z.object({ performer_id: z.string().describe("The unique numeric ID of the performer to retrieve details for. Can be obtained from search_performers action or from event details. Examples: '266' (Beastie Boys), '303' (Billy Joel), '1' (LA Dodgers).") });
|
|
5
|
-
const SeatGeekGetPerformerDetails_PerformerStatsSchema = z.object({ event_count: z.number().int().describe("Number of upcoming events for this performer").nullable().optional() }).describe("Statistics for a performer.");
|
|
5
|
+
const SeatGeekGetPerformerDetails_PerformerStatsSchema = z.object({ event_count: z.number().int().describe("Number of upcoming events for this performer").nullable().optional() }).passthrough().describe("Statistics for a performer.");
|
|
6
6
|
const SeatGeekGetPerformerDetails_PerformerGenreSchema = z.object({
|
|
7
|
-
id: z.number().int().describe("Unique identifier for the genre"),
|
|
8
|
-
name: z.string().describe("Genre name (e.g., 'Rock', 'Hip-hop')"),
|
|
9
|
-
slug: z.string().describe("URL-friendly genre slug"),
|
|
7
|
+
id: z.number().int().describe("Unique identifier for the genre").nullable(),
|
|
8
|
+
name: z.string().describe("Genre name (e.g., 'Rock', 'Hip-hop')").nullable(),
|
|
9
|
+
slug: z.string().describe("URL-friendly genre slug").nullable(),
|
|
10
10
|
primary: z.boolean().default(false).describe("Whether this is the primary genre").nullable().optional()
|
|
11
|
-
}).describe("Genre information for music performers.");
|
|
11
|
+
}).passthrough().describe("Genre information for music performers.");
|
|
12
12
|
const SeatGeekGetPerformerDetails_PerformerTaxonomySchema = z.object({
|
|
13
|
-
id: z.number().int().describe("Unique identifier for the taxonomy"),
|
|
14
|
-
name: z.string().describe("Name of the taxonomy (e.g., 'concert', 'mlb')"),
|
|
13
|
+
id: z.number().int().describe("Unique identifier for the taxonomy").nullable(),
|
|
14
|
+
name: z.string().describe("Name of the taxonomy (e.g., 'concert', 'mlb')").nullable(),
|
|
15
15
|
parent_id: z.number().int().describe("ID of parent taxonomy, null if top-level").nullable().optional()
|
|
16
|
-
}).describe("Taxonomy classification for a performer.");
|
|
16
|
+
}).passthrough().describe("Taxonomy classification for a performer.");
|
|
17
17
|
const seatGeekGetPerformerDetails = action("SEAT_GEEK_GET_PERFORMER_DETAILS", {
|
|
18
18
|
slug: "seat_geek-get-performer-details",
|
|
19
19
|
name: "Get Performer Details",
|
|
20
20
|
description: "Retrieves detailed information about a specific performer (artist, sports team, or theatrical production) from SeatGeek by their unique ID. Returns comprehensive data including performer name, type, images, popularity scores, upcoming event counts, genre/taxonomy classifications, and ticket URLs. Does not include box scores, match statistics, or performance stats. Use this action when you need fields beyond the basic performer info already embedded in event details (e.g., popularity scores, full taxonomy, upcoming event counts). To find performer IDs, first use the search_performers action to search by name.",
|
|
21
21
|
input: SeatGeekGetPerformerDetailsInput,
|
|
22
22
|
output: z.object({
|
|
23
|
-
id: z.number().int().describe("Unique performer ID"),
|
|
24
|
-
url: z.string().describe("SeatGeek URL for ticket purchases"),
|
|
25
|
-
name: z.string().describe("Full name of the performer"),
|
|
26
|
-
slug: z.string().describe("URL-friendly performer identifier"),
|
|
27
|
-
type: z.string().describe("Performer type (e.g., 'band', 'mlb', 'nfl', 'theater', 'nba')"),
|
|
23
|
+
id: z.number().int().describe("Unique performer ID").nullable(),
|
|
24
|
+
url: z.string().describe("SeatGeek URL for ticket purchases").nullable(),
|
|
25
|
+
name: z.string().describe("Full name of the performer").nullable(),
|
|
26
|
+
slug: z.string().describe("URL-friendly performer identifier").nullable(),
|
|
27
|
+
type: z.string().describe("Performer type (e.g., 'band', 'mlb', 'nfl', 'theater', 'nba')").nullable(),
|
|
28
28
|
image: z.string().describe("Primary performer image URL").nullable().optional(),
|
|
29
29
|
score: z.number().describe("Performer popularity score from 0 to 1").nullable().optional(),
|
|
30
30
|
stats: SeatGeekGetPerformerDetails_PerformerStatsSchema.nullable().optional(),
|
|
@@ -35,7 +35,7 @@ const seatGeekGetPerformerDetails = action("SEAT_GEEK_GET_PERFORMER_DETAILS", {
|
|
|
35
35
|
home_venue_id: z.number().int().describe("Home venue ID for sports teams").nullable().optional(),
|
|
36
36
|
has_upcoming_events: z.boolean().default(false).describe("Whether performer has upcoming events").nullable().optional(),
|
|
37
37
|
num_upcoming_events: z.number().int().describe("Count of upcoming events").nullable().optional()
|
|
38
|
-
}).describe("Response containing detailed performer information.")
|
|
38
|
+
}).passthrough().describe("Response containing detailed performer information.")
|
|
39
39
|
});
|
|
40
40
|
//#endregion
|
|
41
41
|
export { seatGeekGetPerformerDetails };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-performer-details.mjs","names":[],"sources":["../../src/actions/get-performer-details.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SeatGeekGetPerformerDetailsInput
|
|
1
|
+
{"version":3,"file":"get-performer-details.mjs","names":[],"sources":["../../src/actions/get-performer-details.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SeatGeekGetPerformerDetailsInput = z.object({\n performer_id: z.string().describe(\"The unique numeric ID of the performer to retrieve details for. Can be obtained from search_performers action or from event details. Examples: '266' (Beastie Boys), '303' (Billy Joel), '1' (LA Dodgers).\"),\n});\nconst SeatGeekGetPerformerDetails_PerformerStatsSchema = z.object({\n event_count: z.number().int().describe(\"Number of upcoming events for this performer\").nullable().optional(),\n}).passthrough().describe(\"Statistics for a performer.\");\nconst SeatGeekGetPerformerDetails_PerformerGenreSchema = z.object({\n id: z.number().int().describe(\"Unique identifier for the genre\").nullable(),\n name: z.string().describe(\"Genre name (e.g., 'Rock', 'Hip-hop')\").nullable(),\n slug: z.string().describe(\"URL-friendly genre slug\").nullable(),\n primary: z.boolean().default(false).describe(\"Whether this is the primary genre\").nullable().optional(),\n}).passthrough().describe(\"Genre information for music performers.\");\nconst SeatGeekGetPerformerDetails_PerformerTaxonomySchema = z.object({\n id: z.number().int().describe(\"Unique identifier for the taxonomy\").nullable(),\n name: z.string().describe(\"Name of the taxonomy (e.g., 'concert', 'mlb')\").nullable(),\n parent_id: z.number().int().describe(\"ID of parent taxonomy, null if top-level\").nullable().optional(),\n}).passthrough().describe(\"Taxonomy classification for a performer.\");\nexport const SeatGeekGetPerformerDetailsOutput = z.object({\n id: z.number().int().describe(\"Unique performer ID\").nullable(),\n url: z.string().describe(\"SeatGeek URL for ticket purchases\").nullable(),\n name: z.string().describe(\"Full name of the performer\").nullable(),\n slug: z.string().describe(\"URL-friendly performer identifier\").nullable(),\n type: z.string().describe(\"Performer type (e.g., 'band', 'mlb', 'nfl', 'theater', 'nba')\").nullable(),\n image: z.string().describe(\"Primary performer image URL\").nullable().optional(),\n score: z.number().describe(\"Performer popularity score from 0 to 1\").nullable().optional(),\n stats: SeatGeekGetPerformerDetails_PerformerStatsSchema.nullable().optional(),\n genres: z.array(SeatGeekGetPerformerDetails_PerformerGenreSchema).describe(\"Music genres (for band/music performers)\").nullable().optional(),\n popularity: z.number().describe(\"Absolute popularity metric\").nullable().optional(),\n short_name: z.string().describe(\"Shortened display name for the performer\").nullable().optional(),\n taxonomies: z.array(SeatGeekGetPerformerDetails_PerformerTaxonomySchema).describe(\"Category classifications (sports, concert, theater, etc.)\").nullable().optional(),\n home_venue_id: z.number().int().describe(\"Home venue ID for sports teams\").nullable().optional(),\n has_upcoming_events: z.boolean().default(false).describe(\"Whether performer has upcoming events\").nullable().optional(),\n num_upcoming_events: z.number().int().describe(\"Count of upcoming events\").nullable().optional(),\n}).passthrough().describe(\"Response containing detailed performer information.\");\n\nexport const seatGeekGetPerformerDetails = action(\"SEAT_GEEK_GET_PERFORMER_DETAILS\", {\n slug: \"seat_geek-get-performer-details\",\n name: \"Get Performer Details\",\n description: \"Retrieves detailed information about a specific performer (artist, sports team, or theatrical production) from SeatGeek by their unique ID. Returns comprehensive data including performer name, type, images, popularity scores, upcoming event counts, genre/taxonomy classifications, and ticket URLs. Does not include box scores, match statistics, or performance stats. Use this action when you need fields beyond the basic performer info already embedded in event details (e.g., popularity scores, full taxonomy, upcoming event counts). To find performer IDs, first use the search_performers action to search by name.\",\n input: SeatGeekGetPerformerDetailsInput,\n output: SeatGeekGetPerformerDetailsOutput,\n});\n"],"mappings":"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"}
|
|
@@ -6,7 +6,7 @@ const SeatGeekGetPerformerRecommendationsInput = zod.z.object({
|
|
|
6
6
|
events_id: zod.z.string().describe("A single event ID to use as a recommendation seed. Get event IDs from the search_events action. Only one ID is allowed per request.").optional(),
|
|
7
7
|
performers_id: zod.z.string().describe("A single performer ID to use as a recommendation seed. Get performer IDs from the search_performers action. Only one ID is allowed per request.").optional()
|
|
8
8
|
});
|
|
9
|
-
const SeatGeekGetPerformerRecommendationsOutput = zod.z.
|
|
9
|
+
const SeatGeekGetPerformerRecommendationsOutput = zod.z.record(zod.z.string(), zod.z.unknown());
|
|
10
10
|
const seatGeekGetPerformerRecommendations = require_action.action("SEAT_GEEK_GET_PERFORMER_RECOMMENDATIONS", {
|
|
11
11
|
slug: "seat_geek-get-performer-recommendations",
|
|
12
12
|
name: "Get Performer Recommendations",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-performer-recommendations.cjs","names":["z","action"],"sources":["../../src/actions/get-performer-recommendations.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SeatGeekGetPerformerRecommendationsInput
|
|
1
|
+
{"version":3,"file":"get-performer-recommendations.cjs","names":["z","action"],"sources":["../../src/actions/get-performer-recommendations.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SeatGeekGetPerformerRecommendationsInput = z.object({\n per_page: z.number().int().describe(\"Number of recommended performers to return per page. Default is 10 if not specified.\").optional(),\n events_id: z.string().describe(\"A single event ID to use as a recommendation seed. Get event IDs from the search_events action. Only one ID is allowed per request.\").optional(),\n performers_id: z.string().describe(\"A single performer ID to use as a recommendation seed. Get performer IDs from the search_performers action. Only one ID is allowed per request.\").optional(),\n});\nexport const SeatGeekGetPerformerRecommendationsOutput = z.record(z.string(), z.unknown());\n\nexport const seatGeekGetPerformerRecommendations = action(\"SEAT_GEEK_GET_PERFORMER_RECOMMENDATIONS\", {\n slug: \"seat_geek-get-performer-recommendations\",\n name: \"Get Performer Recommendations\",\n description: \"Get recommendations for similar performers based on your interests. Discover new artists, bands, teams, or entertainers you might enjoy.\",\n input: SeatGeekGetPerformerRecommendationsInput,\n output: SeatGeekGetPerformerRecommendationsOutput,\n});\n"],"mappings":";;;AAIA,MAAa,2CAA2CA,IAAAA,EAAE,OAAO;CAC/D,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,sFAAsF,CAAC,CAAC,SAAS;CACrI,WAAWA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,qIAAqI,CAAC,CAAC,SAAS;CAC/K,eAAeA,IAAAA,EAAE,OAAO,CAAC,CAAC,SAAS,iJAAiJ,CAAC,CAAC,SAAS;AACjM,CAAC;AACD,MAAa,4CAA4CA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC;AAEzF,MAAa,sCAAsCC,eAAAA,OAAO,2CAA2C;CACnG,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,9 +1,17 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/get-performer-recommendations.d.ts
|
|
4
|
-
declare const SeatGeekGetPerformerRecommendationsInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const SeatGeekGetPerformerRecommendationsInput: z.ZodObject<{
|
|
5
|
+
per_page: z.ZodOptional<z.ZodNumber>;
|
|
6
|
+
events_id: z.ZodOptional<z.ZodString>;
|
|
7
|
+
performers_id: z.ZodOptional<z.ZodString>;
|
|
8
|
+
}, z.core.$strip>;
|
|
9
|
+
declare const SeatGeekGetPerformerRecommendationsOutput: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
10
|
+
declare const seatGeekGetPerformerRecommendations: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
11
|
+
per_page?: number | undefined;
|
|
12
|
+
events_id?: string | undefined;
|
|
13
|
+
performers_id?: string | undefined;
|
|
14
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
15
|
//#endregion
|
|
8
16
|
export { seatGeekGetPerformerRecommendations };
|
|
9
17
|
//# sourceMappingURL=get-performer-recommendations.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-performer-recommendations.d.cts","names":[],"sources":["../../src/actions/get-performer-recommendations.ts"],"mappings":";;;cAIa,wCAAA,
|
|
1
|
+
{"version":3,"file":"get-performer-recommendations.d.cts","names":[],"sources":["../../src/actions/get-performer-recommendations.ts"],"mappings":";;;cAIa,wCAAA,EAAwC,CAAA,CAAA,SAAA;;;;;cAKxC,yCAAA,EAAyC,CAAA,CAAA,SAAA,CAAA,CAAA,CAAA,SAAA,EAAA,CAAA,CAAA,UAAA;AAAA,cAEzC,mCAAA,gCAAmC,wBAAA"}
|
|
@@ -1,9 +1,17 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/get-performer-recommendations.d.ts
|
|
4
|
-
declare const SeatGeekGetPerformerRecommendationsInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const SeatGeekGetPerformerRecommendationsInput: z.ZodObject<{
|
|
5
|
+
per_page: z.ZodOptional<z.ZodNumber>;
|
|
6
|
+
events_id: z.ZodOptional<z.ZodString>;
|
|
7
|
+
performers_id: z.ZodOptional<z.ZodString>;
|
|
8
|
+
}, z.core.$strip>;
|
|
9
|
+
declare const SeatGeekGetPerformerRecommendationsOutput: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
10
|
+
declare const seatGeekGetPerformerRecommendations: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
11
|
+
per_page?: number | undefined;
|
|
12
|
+
events_id?: string | undefined;
|
|
13
|
+
performers_id?: string | undefined;
|
|
14
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
15
|
//#endregion
|
|
8
16
|
export { seatGeekGetPerformerRecommendations };
|
|
9
17
|
//# sourceMappingURL=get-performer-recommendations.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-performer-recommendations.d.mts","names":[],"sources":["../../src/actions/get-performer-recommendations.ts"],"mappings":";;;cAIa,wCAAA,
|
|
1
|
+
{"version":3,"file":"get-performer-recommendations.d.mts","names":[],"sources":["../../src/actions/get-performer-recommendations.ts"],"mappings":";;;cAIa,wCAAA,EAAwC,CAAA,CAAA,SAAA;;;;;cAKxC,yCAAA,EAAyC,CAAA,CAAA,SAAA,CAAA,CAAA,CAAA,SAAA,EAAA,CAAA,CAAA,UAAA;AAAA,cAEzC,mCAAA,gCAAmC,wBAAA"}
|
|
@@ -9,7 +9,7 @@ const seatGeekGetPerformerRecommendations = action("SEAT_GEEK_GET_PERFORMER_RECO
|
|
|
9
9
|
events_id: z.string().describe("A single event ID to use as a recommendation seed. Get event IDs from the search_events action. Only one ID is allowed per request.").optional(),
|
|
10
10
|
performers_id: z.string().describe("A single performer ID to use as a recommendation seed. Get performer IDs from the search_performers action. Only one ID is allowed per request.").optional()
|
|
11
11
|
}),
|
|
12
|
-
output: z.
|
|
12
|
+
output: z.record(z.string(), z.unknown())
|
|
13
13
|
});
|
|
14
14
|
//#endregion
|
|
15
15
|
export { seatGeekGetPerformerRecommendations };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-performer-recommendations.mjs","names":[],"sources":["../../src/actions/get-performer-recommendations.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SeatGeekGetPerformerRecommendationsInput
|
|
1
|
+
{"version":3,"file":"get-performer-recommendations.mjs","names":[],"sources":["../../src/actions/get-performer-recommendations.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SeatGeekGetPerformerRecommendationsInput = z.object({\n per_page: z.number().int().describe(\"Number of recommended performers to return per page. Default is 10 if not specified.\").optional(),\n events_id: z.string().describe(\"A single event ID to use as a recommendation seed. Get event IDs from the search_events action. Only one ID is allowed per request.\").optional(),\n performers_id: z.string().describe(\"A single performer ID to use as a recommendation seed. Get performer IDs from the search_performers action. Only one ID is allowed per request.\").optional(),\n});\nexport const SeatGeekGetPerformerRecommendationsOutput = z.record(z.string(), z.unknown());\n\nexport const seatGeekGetPerformerRecommendations = action(\"SEAT_GEEK_GET_PERFORMER_RECOMMENDATIONS\", {\n slug: \"seat_geek-get-performer-recommendations\",\n name: \"Get Performer Recommendations\",\n description: \"Get recommendations for similar performers based on your interests. Discover new artists, bands, teams, or entertainers you might enjoy.\",\n input: SeatGeekGetPerformerRecommendationsInput,\n output: SeatGeekGetPerformerRecommendationsOutput,\n});\n"],"mappings":";;AAWA,MAAa,sCAAsC,OAAO,2CAA2C;CACnG,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAXsD,EAAE,OAAO;EAC/D,UAAU,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,sFAAsF,CAAC,CAAC,SAAS;EACrI,WAAW,EAAE,OAAO,CAAC,CAAC,SAAS,qIAAqI,CAAC,CAAC,SAAS;EAC/K,eAAe,EAAE,OAAO,CAAC,CAAC,SAAS,iJAAiJ,CAAC,CAAC,SAAS;CACjM,CAOS;CACP,QAPuD,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAO9E;AACV,CAAC"}
|
|
@@ -5,7 +5,7 @@ const SeatGeekGetTaxonomiesInput = zod.z.object({
|
|
|
5
5
|
page: zod.z.number().int().describe("Page number for paginated results. Use with per_page parameter. Defaults to 1.").optional(),
|
|
6
6
|
per_page: zod.z.number().int().describe("Number of taxonomies to return per page. If not specified, returns all taxonomies.").optional()
|
|
7
7
|
});
|
|
8
|
-
const SeatGeekGetTaxonomiesOutput = zod.z.
|
|
8
|
+
const SeatGeekGetTaxonomiesOutput = zod.z.record(zod.z.string(), zod.z.unknown());
|
|
9
9
|
const seatGeekGetTaxonomies = require_action.action("SEAT_GEEK_GET_TAXONOMIES", {
|
|
10
10
|
slug: "seat_geek-get-taxonomies",
|
|
11
11
|
name: "Get Event Categories",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-taxonomies.cjs","names":["z","action"],"sources":["../../src/actions/get-taxonomies.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SeatGeekGetTaxonomiesInput
|
|
1
|
+
{"version":3,"file":"get-taxonomies.cjs","names":["z","action"],"sources":["../../src/actions/get-taxonomies.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SeatGeekGetTaxonomiesInput = z.object({\n page: z.number().int().describe(\"Page number for paginated results. Use with per_page parameter. Defaults to 1.\").optional(),\n per_page: z.number().int().describe(\"Number of taxonomies to return per page. If not specified, returns all taxonomies.\").optional(),\n});\nexport const SeatGeekGetTaxonomiesOutput = z.record(z.string(), z.unknown());\n\nexport const seatGeekGetTaxonomies = action(\"SEAT_GEEK_GET_TAXONOMIES\", {\n slug: \"seat_geek-get-taxonomies\",\n name: \"Get Event Categories\",\n description: \"Get a list of all available event categories and types (taxonomies) used on SeatGeek. Useful for understanding event classification and filtering options.\",\n input: SeatGeekGetTaxonomiesInput,\n output: SeatGeekGetTaxonomiesOutput,\n});\n"],"mappings":";;;AAIA,MAAa,6BAA6BA,IAAAA,EAAE,OAAO;CACjD,MAAMA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,gFAAgF,CAAC,CAAC,SAAS;CAC3H,UAAUA,IAAAA,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,oFAAoF,CAAC,CAAC,SAAS;AACrI,CAAC;AACD,MAAa,8BAA8BA,IAAAA,EAAE,OAAOA,IAAAA,EAAE,OAAO,GAAGA,IAAAA,EAAE,QAAQ,CAAC;AAE3E,MAAa,wBAAwBC,eAAAA,OAAO,4BAA4B;CACtE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAAO;CACP,QAAQ;AACV,CAAC"}
|
|
@@ -1,9 +1,15 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/get-taxonomies.d.ts
|
|
4
|
-
declare const SeatGeekGetTaxonomiesInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const SeatGeekGetTaxonomiesInput: z.ZodObject<{
|
|
5
|
+
page: z.ZodOptional<z.ZodNumber>;
|
|
6
|
+
per_page: z.ZodOptional<z.ZodNumber>;
|
|
7
|
+
}, z.core.$strip>;
|
|
8
|
+
declare const SeatGeekGetTaxonomiesOutput: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
9
|
+
declare const seatGeekGetTaxonomies: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
10
|
+
page?: number | undefined;
|
|
11
|
+
per_page?: number | undefined;
|
|
12
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
13
|
//#endregion
|
|
8
14
|
export { seatGeekGetTaxonomies };
|
|
9
15
|
//# sourceMappingURL=get-taxonomies.d.cts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-taxonomies.d.cts","names":[],"sources":["../../src/actions/get-taxonomies.ts"],"mappings":";;;cAIa,0BAAA,
|
|
1
|
+
{"version":3,"file":"get-taxonomies.d.cts","names":[],"sources":["../../src/actions/get-taxonomies.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;cAI1B,2BAAA,EAA2B,CAAA,CAAA,SAAA,CAAA,CAAA,CAAA,SAAA,EAAA,CAAA,CAAA,UAAA;AAAA,cAE3B,qBAAA,gCAAqB,wBAAA"}
|
|
@@ -1,9 +1,15 @@
|
|
|
1
1
|
import { z } from "zod";
|
|
2
2
|
|
|
3
3
|
//#region src/actions/get-taxonomies.d.ts
|
|
4
|
-
declare const SeatGeekGetTaxonomiesInput: z.
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
declare const SeatGeekGetTaxonomiesInput: z.ZodObject<{
|
|
5
|
+
page: z.ZodOptional<z.ZodNumber>;
|
|
6
|
+
per_page: z.ZodOptional<z.ZodNumber>;
|
|
7
|
+
}, z.core.$strip>;
|
|
8
|
+
declare const SeatGeekGetTaxonomiesOutput: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
9
|
+
declare const seatGeekGetTaxonomies: import("@keystrokehq/action").WorkflowActionDefinition<{
|
|
10
|
+
page?: number | undefined;
|
|
11
|
+
per_page?: number | undefined;
|
|
12
|
+
}, unknown, import("@keystrokehq/shared").ResolvedCredentials<readonly [import("@keystrokehq/shared").Credential]>, readonly [import("@keystrokehq/shared").Credential]>;
|
|
7
13
|
//#endregion
|
|
8
14
|
export { seatGeekGetTaxonomies };
|
|
9
15
|
//# sourceMappingURL=get-taxonomies.d.mts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-taxonomies.d.mts","names":[],"sources":["../../src/actions/get-taxonomies.ts"],"mappings":";;;cAIa,0BAAA,
|
|
1
|
+
{"version":3,"file":"get-taxonomies.d.mts","names":[],"sources":["../../src/actions/get-taxonomies.ts"],"mappings":";;;cAIa,0BAAA,EAA0B,CAAA,CAAA,SAAA;;;;cAI1B,2BAAA,EAA2B,CAAA,CAAA,SAAA,CAAA,CAAA,CAAA,SAAA,EAAA,CAAA,CAAA,UAAA;AAAA,cAE3B,qBAAA,gCAAqB,wBAAA"}
|
|
@@ -8,7 +8,7 @@ const seatGeekGetTaxonomies = action("SEAT_GEEK_GET_TAXONOMIES", {
|
|
|
8
8
|
page: z.number().int().describe("Page number for paginated results. Use with per_page parameter. Defaults to 1.").optional(),
|
|
9
9
|
per_page: z.number().int().describe("Number of taxonomies to return per page. If not specified, returns all taxonomies.").optional()
|
|
10
10
|
}),
|
|
11
|
-
output: z.
|
|
11
|
+
output: z.record(z.string(), z.unknown())
|
|
12
12
|
});
|
|
13
13
|
//#endregion
|
|
14
14
|
export { seatGeekGetTaxonomies };
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get-taxonomies.mjs","names":[],"sources":["../../src/actions/get-taxonomies.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SeatGeekGetTaxonomiesInput
|
|
1
|
+
{"version":3,"file":"get-taxonomies.mjs","names":[],"sources":["../../src/actions/get-taxonomies.ts"],"sourcesContent":["import { z } from \"zod\";\n\nimport { action } from \"../action\";\n\nexport const SeatGeekGetTaxonomiesInput = z.object({\n page: z.number().int().describe(\"Page number for paginated results. Use with per_page parameter. Defaults to 1.\").optional(),\n per_page: z.number().int().describe(\"Number of taxonomies to return per page. If not specified, returns all taxonomies.\").optional(),\n});\nexport const SeatGeekGetTaxonomiesOutput = z.record(z.string(), z.unknown());\n\nexport const seatGeekGetTaxonomies = action(\"SEAT_GEEK_GET_TAXONOMIES\", {\n slug: \"seat_geek-get-taxonomies\",\n name: \"Get Event Categories\",\n description: \"Get a list of all available event categories and types (taxonomies) used on SeatGeek. Useful for understanding event classification and filtering options.\",\n input: SeatGeekGetTaxonomiesInput,\n output: SeatGeekGetTaxonomiesOutput,\n});\n"],"mappings":";;AAUA,MAAa,wBAAwB,OAAO,4BAA4B;CACtE,MAAM;CACN,MAAM;CACN,aAAa;CACb,OAVwC,EAAE,OAAO;EACjD,MAAM,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,gFAAgF,CAAC,CAAC,SAAS;EAC3H,UAAU,EAAE,OAAO,CAAC,CAAC,IAAI,CAAC,CAAC,SAAS,oFAAoF,CAAC,CAAC,SAAS;CACrI,CAOS;CACP,QAPyC,EAAE,OAAO,EAAE,OAAO,GAAG,EAAE,QAAQ,CAOhE;AACV,CAAC"}
|
|
@@ -2,8 +2,8 @@ const require_action = require("../action.cjs");
|
|
|
2
2
|
let zod = require("zod");
|
|
3
3
|
//#region src/actions/get-venue-details.ts
|
|
4
4
|
const SeatGeekGetVenueDetailsInput = zod.z.object({ venue_id: zod.z.string().describe("The unique numeric ID of the venue to retrieve details for. Use the Search Venues action to find venue IDs. Deduplicate venue IDs before calling, as the same venue appears across many events.") });
|
|
5
|
-
const SeatGeekGetVenueDetails_VenueStatsSchema = zod.z.object({ event_count: zod.z.number().int().describe("Total number of upcoming events").nullable().optional() }).describe("Statistics about events at the venue.");
|
|
6
|
-
const SeatGeekGetVenueDetails_VenuePassStatsSchema = zod.z.object({ event_count: zod.z.number().int().describe("Number of events with this pass type").nullable().optional() }).describe("Statistics for a venue pass (e.g., parking).");
|
|
5
|
+
const SeatGeekGetVenueDetails_VenueStatsSchema = zod.z.object({ event_count: zod.z.number().int().describe("Total number of upcoming events").nullable().optional() }).passthrough().describe("Statistics about events at the venue.");
|
|
6
|
+
const SeatGeekGetVenueDetails_VenuePassStatsSchema = zod.z.object({ event_count: zod.z.number().int().describe("Number of events with this pass type").nullable().optional() }).passthrough().describe("Statistics for a venue pass (e.g., parking).");
|
|
7
7
|
const SeatGeekGetVenueDetails_VenuePassSchema = zod.z.object({
|
|
8
8
|
url: zod.z.string().describe("URL to purchase the pass").nullable().optional(),
|
|
9
9
|
name: zod.z.string().describe("Name of the pass").nullable().optional(),
|
|
@@ -11,11 +11,11 @@ const SeatGeekGetVenueDetails_VenuePassSchema = zod.z.object({
|
|
|
11
11
|
pass_type: zod.z.string().describe("Type of pass (e.g., 'PARKING')").nullable().optional(),
|
|
12
12
|
relative_url: zod.z.string().describe("Relative URL path").nullable().optional(),
|
|
13
13
|
image_rights_message: zod.z.string().describe("Image rights message").nullable().optional()
|
|
14
|
-
}).describe("Information about venue passes like parking.");
|
|
14
|
+
}).passthrough().describe("Information about venue passes like parking.");
|
|
15
15
|
const SeatGeekGetVenueDetails_VenueLocationSchema = zod.z.object({
|
|
16
16
|
lat: zod.z.number().describe("Latitude coordinate").nullable().optional(),
|
|
17
17
|
lon: zod.z.number().describe("Longitude coordinate").nullable().optional()
|
|
18
|
-
}).describe("Geographic coordinates of the venue.");
|
|
18
|
+
}).passthrough().describe("Geographic coordinates of the venue.");
|
|
19
19
|
const SeatGeekGetVenueDetailsOutput = zod.z.object({
|
|
20
20
|
id: zod.z.number().int().describe("Unique venue identifier").nullable().optional(),
|
|
21
21
|
url: zod.z.string().describe("Full URL to venue page on SeatGeek").nullable().optional(),
|
|
@@ -43,7 +43,7 @@ const SeatGeekGetVenueDetailsOutput = zod.z.object({
|
|
|
43
43
|
extended_address: zod.z.string().describe("Full address including city, state, and postal code").nullable().optional(),
|
|
44
44
|
has_upcoming_events: zod.z.boolean().describe("Whether the venue has upcoming events").nullable().optional(),
|
|
45
45
|
num_upcoming_events: zod.z.number().int().describe("Number of upcoming events at this venue").nullable().optional()
|
|
46
|
-
}).describe("Detailed information about a venue.");
|
|
46
|
+
}).passthrough().describe("Detailed information about a venue.");
|
|
47
47
|
const seatGeekGetVenueDetails = require_action.action("SEAT_GEEK_GET_VENUE_DETAILS", {
|
|
48
48
|
slug: "seat_geek-get-venue-details",
|
|
49
49
|
name: "Get Venue Details",
|