@capable-health/client
Advanced tools
Comparing version 0.0.20 to 0.0.21
@@ -89,3 +89,3 @@ import type { CancelablePromise } from '../core/CancelablePromise'; | ||
/** | ||
* Retrieve an insurance eligibility | ||
* Retrieve an Eligibility | ||
* <h3> | ||
@@ -97,3 +97,3 @@ * 🔓 Access policy | ||
* | ||
* @returns any Find Eligibilities | ||
* @returns any Found | ||
* @throws ApiError | ||
@@ -100,0 +100,0 @@ */ |
@@ -55,3 +55,3 @@ "use strict"; | ||
/** | ||
* Retrieve an insurance eligibility | ||
* Retrieve an Eligibility | ||
* <h3> | ||
@@ -63,3 +63,3 @@ * 🔓 Access policy | ||
* | ||
* @returns any Find Eligibilities | ||
* @returns any Found | ||
* @throws ApiError | ||
@@ -66,0 +66,0 @@ */ |
@@ -98,2 +98,6 @@ import type { CancelablePromise } from '../core/CancelablePromise'; | ||
}; | ||
/** | ||
* If true, send notes associated with encounter as part of claim submission | ||
*/ | ||
send_encounter_notes?: boolean; | ||
insurance_claim_lines_attributes: Array<{ | ||
@@ -151,2 +155,6 @@ /** | ||
place_of_service?: 'Pharmacy' | 'Telehealth Provided Other than in Patient\'s Home' | 'School' | 'Homeless Shelter' | 'Indian Health Service Free-standing Facility' | 'Indian Health Service Provider-based Facility' | 'Tribal 638 Free-standing Facility' | 'Tribal 638 Provider-based Facility' | 'Prison/Correction Facility' | 'Telehealth Provided in Patient\'s Home' | 'Office' | 'Home' | 'Assisted Living Facility' | 'Group Home' | 'Mobile Unit' | 'Temporary Lodging' | 'Walk-in Retail Health Clinic' | 'Place of Employment-Worksite' | 'Off Campus-Outpatient Hospital' | 'Urgent Care Facility' | 'Inpatient Hospital' | 'On Campus-Outpatient Hospital' | 'Emergency Room-Hospital' | 'Ambulatory Surgical Center' | 'Birthing Center' | 'Military Treatment Facility' | 'Skilled Nursing Facility' | 'Nursing Facility' | 'Custodial Care Facility' | 'Hospice' | 'Ambulance-Land' | 'Ambulance-Air or Water' | 'Independent Clinic' | 'Federally Qualified Health Center' | 'Inpatient Psychiatric Facility' | 'Psychiatric Facility-Partial Hospitalization' | 'Community Mental Health Center' | 'Intermediate Care Facility/Individuals with Intellectual Disabilities' | 'Residential Substance Abuse Treatment Facility' | 'Psychiatric Residential Treatment Center' | 'Non-residential Substance Abuse Treatment Facility' | 'Non-residential Opioid Treatment Facility' | 'Mass Immunization Center' | 'Comprehensive Inpatient Rehabilitation Facility' | 'Comprehensive Outpatient Rehabilitation Facility' | 'End-Stage Renal Disease Treatment' | 'Public Health Clinic' | 'Rural Health Clinic' | 'Independent Laboratory' | 'Other Place of Service'; | ||
/** | ||
* If true, send notes associated with encounter as part of claim submission | ||
*/ | ||
send_encounter_notes?: boolean; | ||
address_attributes?: { | ||
@@ -153,0 +161,0 @@ /** |
@@ -52,3 +52,3 @@ import type { CancelablePromise } from '../core/CancelablePromise'; | ||
requestBody?: { | ||
order?: { | ||
order?: ({ | ||
carrier?: 'USPS' | 'UPS' | 'FedEx' | 'DHL'; | ||
@@ -113,3 +113,76 @@ order_type: 'medication' | 'encounter'; | ||
metadata?: any; | ||
}; | ||
} | { | ||
order_type: 'appointment'; | ||
/** | ||
* ID of the patient being assigned the order | ||
*/ | ||
patient_id: string; | ||
order_line_items?: Array<{ | ||
/** | ||
* ID of the product being assigned to the order | ||
*/ | ||
product_id: string; | ||
/** | ||
* ID of the associated Acuity calendar | ||
*/ | ||
calendar_id: string; | ||
/** | ||
* The date and time that the appointment will start at | ||
*/ | ||
appointment_time: string; | ||
quantity?: number; | ||
}>; | ||
/** | ||
* Billing address for the order | ||
*/ | ||
billing_address: { | ||
address_id?: string; | ||
line1?: string; | ||
line2?: string | null; | ||
city?: string; | ||
state?: string; | ||
zip?: string; | ||
country?: string; | ||
}; | ||
/** | ||
* Any JSON-formatted data you want to associate with this object | ||
*/ | ||
metadata?: any; | ||
} | { | ||
carrier?: string; | ||
order_type?: string; | ||
patient_id?: string; | ||
requires_approval?: boolean; | ||
order_line_items?: Array<{ | ||
product_id?: string; | ||
quantity?: number; | ||
prescription_id?: string; | ||
calendar_id?: string; | ||
appointment_time?: string; | ||
}>; | ||
submission_id?: string; | ||
promotion_code?: string; | ||
shipping_address?: { | ||
address_id?: string; | ||
line1?: string; | ||
line2?: string; | ||
city?: string; | ||
state?: string; | ||
zip?: string; | ||
country?: string; | ||
}; | ||
billing_address?: { | ||
address_id?: string; | ||
line1?: string; | ||
line2?: string; | ||
city?: string; | ||
state?: string; | ||
zip?: string; | ||
country?: string; | ||
}; | ||
/** | ||
* Any JSON-formatted data you want to associate with this object | ||
*/ | ||
metadata?: any; | ||
}); | ||
}; | ||
@@ -116,0 +189,0 @@ }): CancelablePromise<any>; |
@@ -86,8 +86,16 @@ import type { CancelablePromise } from '../core/CancelablePromise'; | ||
requestBody?: { | ||
patient_billing?: { | ||
patient_billing?: ({ | ||
/** | ||
* ID of the subscription plan this patient billing is for | ||
*/ | ||
subscription_plan_id: string; | ||
} | { | ||
/** | ||
* ID of the order this patient billing is for | ||
*/ | ||
order_id: string; | ||
} | { | ||
subscription_plan_id?: string; | ||
}; | ||
order_id?: string; | ||
}); | ||
}; | ||
@@ -94,0 +102,0 @@ }): CancelablePromise<any>; |
{ | ||
"name": "@capable-health/client", | ||
"version": "0.0.20", | ||
"version": "0.0.21", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "./dist/src/index.js", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
944401
18148