Skip to content

Commit

Permalink
lib: add cssiStation function and related types to exports
Browse files Browse the repository at this point in the history
  • Loading branch information
ShaggyTech committed Dec 26, 2023
1 parent 37c346c commit f5f73f6
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
1 change: 1 addition & 0 deletions packages/lib/src/api/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
*/

export { complaints } from './complaints/complaints'
export { cssiStation } from './cssiStation/cssiStation'
export { products } from './products/products'
export { recalls } from './recalls/recalls'
export { safetyRatings } from './safetyRatings/safetyRatings'
Expand Down
1 change: 1 addition & 0 deletions packages/lib/src/api/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
*/

export * from './complaints/types'
export * from './cssiStation/types'
export * from './products/types'
export * from './recalls/types'
export * from './safetyRatings/types'
Expand Down
13 changes: 13 additions & 0 deletions packages/lib/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
* @category Exported NHTSA API Functions
*/
export {
/* vPIC API */
DecodeVin,
DecodeVinExtended,
DecodeVinValues,
Expand All @@ -31,10 +32,13 @@ export {
GetVehicleVariableList,
GetVehicleVariableValuesList,
GetWMIsForManufacturer,
/* Other APIs */
complaints,
cssiStation,
products,
recalls,
safetyRatings,
/* NHTSA Helper Function */
useNHTSA,
} from '@/api'

Expand Down Expand Up @@ -94,6 +98,15 @@ export type {
ComplaintsResultsByVariant,
ComplaintsResultsData,
ComplaintsResultsVariant,
CSSIOptions,
CSSIOptionsBase,
CSSIOptionsEmpty,
CSSIOptionsCanBeQuery,
CSSIOptionsLocation,
CSSIOptionsState,
CSSIOptionsZip,
CSSIResponse,
CSSIResultsData,
ProductsIssueType,
ProductsOptions,
ProductsOptionsBase,
Expand Down

0 comments on commit f5f73f6

Please sign in to comment.