propline 0.47.0 → 0.48.0

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/index.d.cts CHANGED
@@ -1088,6 +1088,65 @@ interface ClvGradeResponse {
1088
1088
  redacted?: boolean;
1089
1089
  upgrade_url?: string | null;
1090
1090
  }
1091
+ /**
1092
+ * One leg of a same-game parlay submitted to `priceSgp`, named exactly as
1093
+ * `/odds` names an outcome. Or pass `book_outcome_id` (from
1094
+ * `includeBookIds: true`), which overrides the other fields.
1095
+ */
1096
+ interface SgpLegInput {
1097
+ /** Market key as served by /odds, e.g. "h2h", "totals", "batter_1plus_hits". */
1098
+ market?: string | null;
1099
+ /** Outcome name: team name, "Over"/"Under", or the player for YES-only props. */
1100
+ name?: string | null;
1101
+ /** Outcome description (the player on a two-way prop); "" for game lines. */
1102
+ description?: string;
1103
+ /** Line exactly as served by /odds. Omit for h2h and YES-only props. */
1104
+ point?: number | null;
1105
+ /** Canonical period code (q1, h1, f5). Omit for full game. */
1106
+ period?: string | null;
1107
+ /** The book's own id from includeBookIds. Overrides the other fields. */
1108
+ book_outcome_id?: string | null;
1109
+ }
1110
+ /** One leg as the book saw it, returned by `priceSgp`. */
1111
+ interface SgpLegQuote {
1112
+ index: number;
1113
+ market: string;
1114
+ name: string;
1115
+ description: string;
1116
+ point: number | null;
1117
+ period: string | null;
1118
+ book_outcome_id: string | null;
1119
+ /** The last price PropLine stored for this leg (American). */
1120
+ price: number | null;
1121
+ /** The single-leg price the book quoted in the same call — the live number. */
1122
+ book_price: number | null;
1123
+ accepted: boolean | null;
1124
+ /** The book's own refusal code when it would not take this leg in the slip. */
1125
+ failure_code?: string | null;
1126
+ }
1127
+ interface SgpQuoteResponse {
1128
+ id: string;
1129
+ sport_key: string;
1130
+ home_team: string;
1131
+ away_team: string;
1132
+ commence_time: string;
1133
+ bookmaker: string;
1134
+ bookmaker_title: string;
1135
+ legs: SgpLegQuote[];
1136
+ /** True when the book priced the FULL combination; null on the free tier. */
1137
+ quoted: boolean | null;
1138
+ /** The book's correlated parlay price (American). */
1139
+ sgp_price: number | null;
1140
+ sgp_price_decimal: number | null;
1141
+ /** Product of the live single-leg prices, as American odds. */
1142
+ independent_price: number | null;
1143
+ independent_price_decimal: number | null;
1144
+ /** sgp_price_decimal / independent_price_decimal. */
1145
+ correlation_factor: number | null;
1146
+ priced_at: string | null;
1147
+ redacted?: boolean;
1148
+ upgrade_url?: string | null;
1149
+ }
1091
1150
 
1092
1151
  /** Options for {@link PropLineClient.getDfsPayouts}. */
1093
1152
  interface GetDfsPayoutsOptions {
@@ -2016,6 +2075,39 @@ declare class PropLine {
2016
2075
  * console.log(res.summary.avg_ev_vs_close_pct);
2017
2076
  */
2018
2077
  gradeClv(bets: ClvBetInput[]): Promise<ClvGradeResponse>;
2078
+ /**
2079
+ * Price a same-game parlay at the book's own correlated odds.
2080
+ *
2081
+ * Send two to ten legs from ONE event and get back the book's own price
2082
+ * for that exact slip — what a FanDuel customer would be offered for it
2083
+ * at that moment, not a model of it — beside `independent_price` (the
2084
+ * product of the live single-leg prices) and `correlation_factor`
2085
+ * (their ratio: the correlation the book is charging, below 1, or
2086
+ * paying, above 1, for). Measured live: Cardinals ML +205 × Freddie
2087
+ * Freeman to record a hit -260 → SGP +592 against an independent +322.
2088
+ *
2089
+ * Book-native. FanDuel is the only book wired today; `bookmaker` is
2090
+ * additive and an unsupported value is a 422.
2091
+ *
2092
+ * Legs are named exactly as `/odds` names an outcome (market, name,
2093
+ * description, point, period), or by `book_outcome_id` from
2094
+ * `includeBookIds: true`. Matching is fail-closed — a leg that does not
2095
+ * pin to exactly one stored outcome is a 422 `leg_unmatched` naming the
2096
+ * leg. `quoted: false` means the book will not offer that combination as
2097
+ * a same-game parlay; refused legs carry the book's own `failure_code`.
2098
+ * Quotes for an identical slip are shared for 15 seconds.
2099
+ *
2100
+ * Hobby+ required; free tier receives the matched legs with every price
2101
+ * nulled and never triggers a book call.
2102
+ *
2103
+ * @example
2104
+ * const q = await client.priceSgp("baseball_mlb", 150791, [
2105
+ * { market: "h2h", name: "St. Louis Cardinals" },
2106
+ * { market: "batter_1plus_hits", name: "Freddie Freeman", description: "Freddie Freeman" },
2107
+ * ]);
2108
+ * console.log(q.sgp_price, q.independent_price, q.correlation_factor);
2109
+ */
2110
+ priceSgp(sportKey: string, eventId: number | string, legs: SgpLegInput[], bookmaker?: string): Promise<SgpQuoteResponse>;
2019
2111
  /**
2020
2112
  * Verify that an inbound webhook delivery was signed by PropLine.
2021
2113
  *
@@ -2070,6 +2162,6 @@ declare const Bookmakers: {
2070
2162
  readonly PRIZEPICKS: "prizepicks";
2071
2163
  };
2072
2164
  type BookmakerKey = (typeof Bookmakers)[keyof typeof Bookmakers];
2073
- declare const VERSION = "0.47.0";
2165
+ declare const VERSION = "0.48.0";
2074
2166
 
2075
- export { AuthError, type BestLine, type BestLineSide, type BestPrice, type Bookmaker, type BookmakerKey, Bookmakers, type CalcEventEvOptions, type ClosingBookmaker, type ClosingMarket, type ClosingOutcome, type ClvBetInput, type ClvGradeResponse, type ClvGradedBet, type ClvSummary, type ContextResponse, type CreateWebhookOptions, type DfsPayoutTier, type DfsPayoutsResponse, type DfsPlayPayout, type EvLine, type EvOutcome, type Event, type EventBestLineResponse, type EventEvCalcResponse, type EventEvResponse, type EventProjectionsResponse, type ExportOddsHistoryOptions, type ExportResolvedPropsOptions, type FuturesEvent, type FuturesMarket, type FuturesOutcome, type GetDfsPayoutsOptions, type GetEventBestLineOptions, type GetEventEvOptions, type GetEventProjectionsOptions, type GetMlbGrandSalamiOptions, type GetNhlDailyGoalsTotalOptions, type GetOddsClosingOptions, type GetOddsHistoryOptions, type GetOddsOptions, type GetPlayerGamesOptions, type GetPlayerHistoryOptions, type GetPlayerTrendsOptions, type GetResultsOptions, type GetScoresOptions, type GetStatsOptions, type HitRateSplit, type ListWebhookDeliveriesOptions, type Market, type MarketSummary, type MlbGrandSalamiBook, type MlbGrandSalamiResponse, type MovementBookmaker, type MovementMarket, type MovementOutcome, type MovementResponse, type NhlDailyGoalsTotalBook, type NhlDailyGoalsTotalResponse, type OddsClosingResponse, type OddsHistoryBookmaker, type OddsHistoryMarket, type OddsHistoryOutcome, type OddsHistoryResponse, type OddsResponse, type Outcome, type OutcomeSnapshot, type PeriodFilter, type PlayerGame, type PlayerGameLog, type PlayerHistoryEntry, type PlayerHistoryResponse, type PlayerMarketTrend, type PlayerStat, type PlayerTrends, type ProjectionRow, PropLine, PropLineError, type PropLineErrorInfo, type PropLineOptions, type QuotaStatus, RateLimitError, type ReplayEvent, type ReplayPage, type ReplayWebhookEventsOptions, type ResolutionSummary, type ResolutionSummaryMarket, type ResolutionSummarySport, type ResolvedOutcome, type ResultsMarket, type ResultsResponse, type ScoreEvent, type Sport, type StatsResponse, type SteamMove, type StreamOptions, type TrendLastGame, type TrendStreak, type UpdateWebhookOptions, VERSION, type VerifySignatureOptions, type WeatherInfo, type Webhook, type WebhookDelivery, type WebhookEventType };
2167
+ export { AuthError, type BestLine, type BestLineSide, type BestPrice, type Bookmaker, type BookmakerKey, Bookmakers, type CalcEventEvOptions, type ClosingBookmaker, type ClosingMarket, type ClosingOutcome, type ClvBetInput, type ClvGradeResponse, type ClvGradedBet, type ClvSummary, type ContextResponse, type CreateWebhookOptions, type DfsPayoutTier, type DfsPayoutsResponse, type DfsPlayPayout, type EvLine, type EvOutcome, type Event, type EventBestLineResponse, type EventEvCalcResponse, type EventEvResponse, type EventProjectionsResponse, type ExportOddsHistoryOptions, type ExportResolvedPropsOptions, type FuturesEvent, type FuturesMarket, type FuturesOutcome, type GetDfsPayoutsOptions, type GetEventBestLineOptions, type GetEventEvOptions, type GetEventProjectionsOptions, type GetMlbGrandSalamiOptions, type GetNhlDailyGoalsTotalOptions, type GetOddsClosingOptions, type GetOddsHistoryOptions, type GetOddsOptions, type GetPlayerGamesOptions, type GetPlayerHistoryOptions, type GetPlayerTrendsOptions, type GetResultsOptions, type GetScoresOptions, type GetStatsOptions, type HitRateSplit, type ListWebhookDeliveriesOptions, type Market, type MarketSummary, type MlbGrandSalamiBook, type MlbGrandSalamiResponse, type MovementBookmaker, type MovementMarket, type MovementOutcome, type MovementResponse, type NhlDailyGoalsTotalBook, type NhlDailyGoalsTotalResponse, type OddsClosingResponse, type OddsHistoryBookmaker, type OddsHistoryMarket, type OddsHistoryOutcome, type OddsHistoryResponse, type OddsResponse, type Outcome, type OutcomeSnapshot, type PeriodFilter, type PlayerGame, type PlayerGameLog, type PlayerHistoryEntry, type PlayerHistoryResponse, type PlayerMarketTrend, type PlayerStat, type PlayerTrends, type ProjectionRow, PropLine, PropLineError, type PropLineErrorInfo, type PropLineOptions, type QuotaStatus, RateLimitError, type ReplayEvent, type ReplayPage, type ReplayWebhookEventsOptions, type ResolutionSummary, type ResolutionSummaryMarket, type ResolutionSummarySport, type ResolvedOutcome, type ResultsMarket, type ResultsResponse, type ScoreEvent, type SgpLegInput, type SgpLegQuote, type SgpQuoteResponse, type Sport, type StatsResponse, type SteamMove, type StreamOptions, type TrendLastGame, type TrendStreak, type UpdateWebhookOptions, VERSION, type VerifySignatureOptions, type WeatherInfo, type Webhook, type WebhookDelivery, type WebhookEventType };
package/dist/index.d.ts CHANGED
@@ -1088,6 +1088,65 @@ interface ClvGradeResponse {
1088
1088
  redacted?: boolean;
1089
1089
  upgrade_url?: string | null;
1090
1090
  }
1091
+ /**
1092
+ * One leg of a same-game parlay submitted to `priceSgp`, named exactly as
1093
+ * `/odds` names an outcome. Or pass `book_outcome_id` (from
1094
+ * `includeBookIds: true`), which overrides the other fields.
1095
+ */
1096
+ interface SgpLegInput {
1097
+ /** Market key as served by /odds, e.g. "h2h", "totals", "batter_1plus_hits". */
1098
+ market?: string | null;
1099
+ /** Outcome name: team name, "Over"/"Under", or the player for YES-only props. */
1100
+ name?: string | null;
1101
+ /** Outcome description (the player on a two-way prop); "" for game lines. */
1102
+ description?: string;
1103
+ /** Line exactly as served by /odds. Omit for h2h and YES-only props. */
1104
+ point?: number | null;
1105
+ /** Canonical period code (q1, h1, f5). Omit for full game. */
1106
+ period?: string | null;
1107
+ /** The book's own id from includeBookIds. Overrides the other fields. */
1108
+ book_outcome_id?: string | null;
1109
+ }
1110
+ /** One leg as the book saw it, returned by `priceSgp`. */
1111
+ interface SgpLegQuote {
1112
+ index: number;
1113
+ market: string;
1114
+ name: string;
1115
+ description: string;
1116
+ point: number | null;
1117
+ period: string | null;
1118
+ book_outcome_id: string | null;
1119
+ /** The last price PropLine stored for this leg (American). */
1120
+ price: number | null;
1121
+ /** The single-leg price the book quoted in the same call — the live number. */
1122
+ book_price: number | null;
1123
+ accepted: boolean | null;
1124
+ /** The book's own refusal code when it would not take this leg in the slip. */
1125
+ failure_code?: string | null;
1126
+ }
1127
+ interface SgpQuoteResponse {
1128
+ id: string;
1129
+ sport_key: string;
1130
+ home_team: string;
1131
+ away_team: string;
1132
+ commence_time: string;
1133
+ bookmaker: string;
1134
+ bookmaker_title: string;
1135
+ legs: SgpLegQuote[];
1136
+ /** True when the book priced the FULL combination; null on the free tier. */
1137
+ quoted: boolean | null;
1138
+ /** The book's correlated parlay price (American). */
1139
+ sgp_price: number | null;
1140
+ sgp_price_decimal: number | null;
1141
+ /** Product of the live single-leg prices, as American odds. */
1142
+ independent_price: number | null;
1143
+ independent_price_decimal: number | null;
1144
+ /** sgp_price_decimal / independent_price_decimal. */
1145
+ correlation_factor: number | null;
1146
+ priced_at: string | null;
1147
+ redacted?: boolean;
1148
+ upgrade_url?: string | null;
1149
+ }
1091
1150
 
1092
1151
  /** Options for {@link PropLineClient.getDfsPayouts}. */
1093
1152
  interface GetDfsPayoutsOptions {
@@ -2016,6 +2075,39 @@ declare class PropLine {
2016
2075
  * console.log(res.summary.avg_ev_vs_close_pct);
2017
2076
  */
2018
2077
  gradeClv(bets: ClvBetInput[]): Promise<ClvGradeResponse>;
2078
+ /**
2079
+ * Price a same-game parlay at the book's own correlated odds.
2080
+ *
2081
+ * Send two to ten legs from ONE event and get back the book's own price
2082
+ * for that exact slip — what a FanDuel customer would be offered for it
2083
+ * at that moment, not a model of it — beside `independent_price` (the
2084
+ * product of the live single-leg prices) and `correlation_factor`
2085
+ * (their ratio: the correlation the book is charging, below 1, or
2086
+ * paying, above 1, for). Measured live: Cardinals ML +205 × Freddie
2087
+ * Freeman to record a hit -260 → SGP +592 against an independent +322.
2088
+ *
2089
+ * Book-native. FanDuel is the only book wired today; `bookmaker` is
2090
+ * additive and an unsupported value is a 422.
2091
+ *
2092
+ * Legs are named exactly as `/odds` names an outcome (market, name,
2093
+ * description, point, period), or by `book_outcome_id` from
2094
+ * `includeBookIds: true`. Matching is fail-closed — a leg that does not
2095
+ * pin to exactly one stored outcome is a 422 `leg_unmatched` naming the
2096
+ * leg. `quoted: false` means the book will not offer that combination as
2097
+ * a same-game parlay; refused legs carry the book's own `failure_code`.
2098
+ * Quotes for an identical slip are shared for 15 seconds.
2099
+ *
2100
+ * Hobby+ required; free tier receives the matched legs with every price
2101
+ * nulled and never triggers a book call.
2102
+ *
2103
+ * @example
2104
+ * const q = await client.priceSgp("baseball_mlb", 150791, [
2105
+ * { market: "h2h", name: "St. Louis Cardinals" },
2106
+ * { market: "batter_1plus_hits", name: "Freddie Freeman", description: "Freddie Freeman" },
2107
+ * ]);
2108
+ * console.log(q.sgp_price, q.independent_price, q.correlation_factor);
2109
+ */
2110
+ priceSgp(sportKey: string, eventId: number | string, legs: SgpLegInput[], bookmaker?: string): Promise<SgpQuoteResponse>;
2019
2111
  /**
2020
2112
  * Verify that an inbound webhook delivery was signed by PropLine.
2021
2113
  *
@@ -2070,6 +2162,6 @@ declare const Bookmakers: {
2070
2162
  readonly PRIZEPICKS: "prizepicks";
2071
2163
  };
2072
2164
  type BookmakerKey = (typeof Bookmakers)[keyof typeof Bookmakers];
2073
- declare const VERSION = "0.47.0";
2165
+ declare const VERSION = "0.48.0";
2074
2166
 
2075
- export { AuthError, type BestLine, type BestLineSide, type BestPrice, type Bookmaker, type BookmakerKey, Bookmakers, type CalcEventEvOptions, type ClosingBookmaker, type ClosingMarket, type ClosingOutcome, type ClvBetInput, type ClvGradeResponse, type ClvGradedBet, type ClvSummary, type ContextResponse, type CreateWebhookOptions, type DfsPayoutTier, type DfsPayoutsResponse, type DfsPlayPayout, type EvLine, type EvOutcome, type Event, type EventBestLineResponse, type EventEvCalcResponse, type EventEvResponse, type EventProjectionsResponse, type ExportOddsHistoryOptions, type ExportResolvedPropsOptions, type FuturesEvent, type FuturesMarket, type FuturesOutcome, type GetDfsPayoutsOptions, type GetEventBestLineOptions, type GetEventEvOptions, type GetEventProjectionsOptions, type GetMlbGrandSalamiOptions, type GetNhlDailyGoalsTotalOptions, type GetOddsClosingOptions, type GetOddsHistoryOptions, type GetOddsOptions, type GetPlayerGamesOptions, type GetPlayerHistoryOptions, type GetPlayerTrendsOptions, type GetResultsOptions, type GetScoresOptions, type GetStatsOptions, type HitRateSplit, type ListWebhookDeliveriesOptions, type Market, type MarketSummary, type MlbGrandSalamiBook, type MlbGrandSalamiResponse, type MovementBookmaker, type MovementMarket, type MovementOutcome, type MovementResponse, type NhlDailyGoalsTotalBook, type NhlDailyGoalsTotalResponse, type OddsClosingResponse, type OddsHistoryBookmaker, type OddsHistoryMarket, type OddsHistoryOutcome, type OddsHistoryResponse, type OddsResponse, type Outcome, type OutcomeSnapshot, type PeriodFilter, type PlayerGame, type PlayerGameLog, type PlayerHistoryEntry, type PlayerHistoryResponse, type PlayerMarketTrend, type PlayerStat, type PlayerTrends, type ProjectionRow, PropLine, PropLineError, type PropLineErrorInfo, type PropLineOptions, type QuotaStatus, RateLimitError, type ReplayEvent, type ReplayPage, type ReplayWebhookEventsOptions, type ResolutionSummary, type ResolutionSummaryMarket, type ResolutionSummarySport, type ResolvedOutcome, type ResultsMarket, type ResultsResponse, type ScoreEvent, type Sport, type StatsResponse, type SteamMove, type StreamOptions, type TrendLastGame, type TrendStreak, type UpdateWebhookOptions, VERSION, type VerifySignatureOptions, type WeatherInfo, type Webhook, type WebhookDelivery, type WebhookEventType };
2167
+ export { AuthError, type BestLine, type BestLineSide, type BestPrice, type Bookmaker, type BookmakerKey, Bookmakers, type CalcEventEvOptions, type ClosingBookmaker, type ClosingMarket, type ClosingOutcome, type ClvBetInput, type ClvGradeResponse, type ClvGradedBet, type ClvSummary, type ContextResponse, type CreateWebhookOptions, type DfsPayoutTier, type DfsPayoutsResponse, type DfsPlayPayout, type EvLine, type EvOutcome, type Event, type EventBestLineResponse, type EventEvCalcResponse, type EventEvResponse, type EventProjectionsResponse, type ExportOddsHistoryOptions, type ExportResolvedPropsOptions, type FuturesEvent, type FuturesMarket, type FuturesOutcome, type GetDfsPayoutsOptions, type GetEventBestLineOptions, type GetEventEvOptions, type GetEventProjectionsOptions, type GetMlbGrandSalamiOptions, type GetNhlDailyGoalsTotalOptions, type GetOddsClosingOptions, type GetOddsHistoryOptions, type GetOddsOptions, type GetPlayerGamesOptions, type GetPlayerHistoryOptions, type GetPlayerTrendsOptions, type GetResultsOptions, type GetScoresOptions, type GetStatsOptions, type HitRateSplit, type ListWebhookDeliveriesOptions, type Market, type MarketSummary, type MlbGrandSalamiBook, type MlbGrandSalamiResponse, type MovementBookmaker, type MovementMarket, type MovementOutcome, type MovementResponse, type NhlDailyGoalsTotalBook, type NhlDailyGoalsTotalResponse, type OddsClosingResponse, type OddsHistoryBookmaker, type OddsHistoryMarket, type OddsHistoryOutcome, type OddsHistoryResponse, type OddsResponse, type Outcome, type OutcomeSnapshot, type PeriodFilter, type PlayerGame, type PlayerGameLog, type PlayerHistoryEntry, type PlayerHistoryResponse, type PlayerMarketTrend, type PlayerStat, type PlayerTrends, type ProjectionRow, PropLine, PropLineError, type PropLineErrorInfo, type PropLineOptions, type QuotaStatus, RateLimitError, type ReplayEvent, type ReplayPage, type ReplayWebhookEventsOptions, type ResolutionSummary, type ResolutionSummaryMarket, type ResolutionSummarySport, type ResolvedOutcome, type ResultsMarket, type ResultsResponse, type ScoreEvent, type SgpLegInput, type SgpLegQuote, type SgpQuoteResponse, type Sport, type StatsResponse, type SteamMove, type StreamOptions, type TrendLastGame, type TrendStreak, type UpdateWebhookOptions, VERSION, type VerifySignatureOptions, type WeatherInfo, type Webhook, type WebhookDelivery, type WebhookEventType };
package/dist/index.js CHANGED
@@ -970,6 +970,45 @@ var PropLine = class {
970
970
  gradeClv(bets) {
971
971
  return this._request("POST", "/clv/grade", { body: bets });
972
972
  }
973
+ /**
974
+ * Price a same-game parlay at the book's own correlated odds.
975
+ *
976
+ * Send two to ten legs from ONE event and get back the book's own price
977
+ * for that exact slip — what a FanDuel customer would be offered for it
978
+ * at that moment, not a model of it — beside `independent_price` (the
979
+ * product of the live single-leg prices) and `correlation_factor`
980
+ * (their ratio: the correlation the book is charging, below 1, or
981
+ * paying, above 1, for). Measured live: Cardinals ML +205 × Freddie
982
+ * Freeman to record a hit -260 → SGP +592 against an independent +322.
983
+ *
984
+ * Book-native. FanDuel is the only book wired today; `bookmaker` is
985
+ * additive and an unsupported value is a 422.
986
+ *
987
+ * Legs are named exactly as `/odds` names an outcome (market, name,
988
+ * description, point, period), or by `book_outcome_id` from
989
+ * `includeBookIds: true`. Matching is fail-closed — a leg that does not
990
+ * pin to exactly one stored outcome is a 422 `leg_unmatched` naming the
991
+ * leg. `quoted: false` means the book will not offer that combination as
992
+ * a same-game parlay; refused legs carry the book's own `failure_code`.
993
+ * Quotes for an identical slip are shared for 15 seconds.
994
+ *
995
+ * Hobby+ required; free tier receives the matched legs with every price
996
+ * nulled and never triggers a book call.
997
+ *
998
+ * @example
999
+ * const q = await client.priceSgp("baseball_mlb", 150791, [
1000
+ * { market: "h2h", name: "St. Louis Cardinals" },
1001
+ * { market: "batter_1plus_hits", name: "Freddie Freeman", description: "Freddie Freeman" },
1002
+ * ]);
1003
+ * console.log(q.sgp_price, q.independent_price, q.correlation_factor);
1004
+ */
1005
+ priceSgp(sportKey, eventId, legs, bookmaker = "fanduel") {
1006
+ return this._request(
1007
+ "POST",
1008
+ `/sports/${encodeURIComponent(sportKey)}/events/${encodeURIComponent(String(eventId))}/sgp`,
1009
+ { body: { bookmaker, legs } }
1010
+ );
1011
+ }
973
1012
  /**
974
1013
  * Verify that an inbound webhook delivery was signed by PropLine.
975
1014
  *
@@ -1061,7 +1100,7 @@ var Bookmakers = {
1061
1100
  POLYMARKET: "polymarket",
1062
1101
  PRIZEPICKS: "prizepicks"
1063
1102
  };
1064
- var VERSION = "0.47.0";
1103
+ var VERSION = "0.48.0";
1065
1104
  export {
1066
1105
  AuthError,
1067
1106
  Bookmakers,