Skip to content

Commit

Permalink
fix: expose createRUMURL function (#188)
Browse files Browse the repository at this point in the history
  • Loading branch information
ekremney authored Mar 19, 2024
1 parent b6f0e7b commit 3b8b0c6
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions packages/spacecat-shared-rum-api-client/src/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,14 @@ export default class RUMAPIClient {
*/
get404Sources(params?: RUMAPIOptions): Promise<Array<object>>;

/**
* Method to return the url composed of params that the RUM Dashboard API is called with.
* @param {RUMAPIOptions} params - An object representing the parameters to be included
* for the RUM Dashboard API call.
* @returns A string returning to the RUM Dashboard url including query parameters.
*/
createRUMURL(params?: RUMAPIOptions): string;

/**
* Method to return the url composed of params that the 404 sources API is called with.
* @param {RUMAPIOptions} params - An object representing the parameters to be included
Expand Down

0 comments on commit 3b8b0c6

Please sign in to comment.