Skip to content

Commit

Permalink
remove claim links
Browse files Browse the repository at this point in the history
  • Loading branch information
jchen293 committed Jul 24, 2024
1 parent 42963bb commit 7ca8db8
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 5 deletions.
4 changes: 0 additions & 4 deletions src/services/claim_service.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ export default (easypostClient) =>
class ClaimService extends baseService(easypostClient) {
/**
* Create a {@link Claim claim} record.
* See {@link https://www.easypost.com/docs/api/node#create-a-claim EasyPost API Documentation} for more information.
* @param {Object} params - Parameters for the claim to be created.
* @returns {Claim} - The created claim.
*/
Expand All @@ -20,7 +19,6 @@ export default (easypostClient) =>

/**
* Retrieve all {@link Claim} records associated with the current authenticated user.
* See {@link https://www.easypost.com/docs/api/node#retrieve-a-list-of-claims EasyPost API Documentation} for more information.
* @param {Object} [params] - Parameters to filter the claim records.
* @returns {Object} - An object containing the list of {@link Claim claim} records and pagination information.
*/
Expand All @@ -43,7 +41,6 @@ export default (easypostClient) =>

/**
* Retrieve a {@link Claim claim} record by its ID.
* See {@link https://www.easypost.com/docs/api/node#retrieve-a-claim EasyPost API Documentation} for more information.
* @param {string} id - The ID of the claim to retrieve.
* @returns {Claim} - The retrieved claim.
*/
Expand All @@ -55,7 +52,6 @@ export default (easypostClient) =>

/**
* Cancel a {@link Claim claim} record by its ID.
* See {@link https://www.easypost.com/docs/api/node#refund-a-claim EasyPost API Documentation} for more information.
* @param {string} id - The ID of the claim to be canceled.
* @returns {Claim} - The canceled claim.
*/
Expand Down
1 change: 0 additions & 1 deletion types/Claim/Claim.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ import { TClaimType } from './ClaimType';
/**
* Class representing an EasyPost claim object.
*
* @see https://www.easypost.com/docs/api/node#claim-object
*/
export declare interface IClaim extends IObjectWithId<'Claim'>, IDatedObject {
/** The amount that has been approved for reimbursement */
Expand Down

0 comments on commit 7ca8db8

Please sign in to comment.