@fincuratech/sikka-sdk-js 1.6.0 → 1.8.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/lib/client.js +64 -0
- package/dist/lib/client.js.map +1 -1
- package/dist/lib/types.js.map +1 -1
- package/dist/types/lib/client.d.ts +6 -1
- package/dist/types/lib/client.d.ts.map +1 -1
- package/dist/types/lib/types.d.ts +39 -32
- package/dist/types/lib/types.d.ts.map +1 -1
- package/package.json +1 -1
package/dist/lib/client.js
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { getLogger } from './logger.js';
|
|
2
2
|
const SIKKA_BASE_URL = 'https://api.sikkasoft.com';
|
|
3
3
|
const WRITEBACK_ID_PATTERN = /^Id:(\d+)$/u;
|
|
4
|
+
const AUTHORIZED_PRACTICES_PAGE_SIZE = 500;
|
|
4
5
|
const parseWritebackId = (longMessage) => {
|
|
5
6
|
if (!longMessage) {
|
|
6
7
|
return null;
|
|
@@ -9,6 +10,35 @@ const parseWritebackId = (longMessage) => {
|
|
|
9
10
|
return match?.[1] ?? null;
|
|
10
11
|
};
|
|
11
12
|
export class SikkaClient {
|
|
13
|
+
authorizedPractices = {
|
|
14
|
+
getByOfficeId: async (officeId) => {
|
|
15
|
+
const practices = await this.authorizedPractices.list({ show: 'all' });
|
|
16
|
+
return (practices.find((practice) => practice.office_id === officeId) ?? null);
|
|
17
|
+
},
|
|
18
|
+
list: async (params = {}) => {
|
|
19
|
+
const items = [];
|
|
20
|
+
let offset = params.offset ?? 0;
|
|
21
|
+
let limit = params.limit ?? AUTHORIZED_PRACTICES_PAGE_SIZE;
|
|
22
|
+
for (;;) {
|
|
23
|
+
const response = await this.appAuthGet('/v4/authorized_practices', { ...params, limit, offset });
|
|
24
|
+
const pageItems = response.items ?? [];
|
|
25
|
+
items.push(...pageItems);
|
|
26
|
+
const totalCount = Number.parseInt(response.total_count, 10);
|
|
27
|
+
const pageSize = Number.parseInt(String(limit), 10);
|
|
28
|
+
const nextUrl = response.pagination?.next;
|
|
29
|
+
if (pageItems.length === 0 ||
|
|
30
|
+
(!Number.isNaN(totalCount) && items.length >= totalCount) ||
|
|
31
|
+
!nextUrl ||
|
|
32
|
+
(!Number.isNaN(pageSize) && pageItems.length < pageSize)) {
|
|
33
|
+
break;
|
|
34
|
+
}
|
|
35
|
+
const nextSearch = new URL(nextUrl).searchParams;
|
|
36
|
+
offset = nextSearch.get('offset') ?? offset;
|
|
37
|
+
limit = nextSearch.get('limit') ?? limit;
|
|
38
|
+
}
|
|
39
|
+
return items;
|
|
40
|
+
},
|
|
41
|
+
};
|
|
12
42
|
claimPayment = {
|
|
13
43
|
post: async (request) => {
|
|
14
44
|
const response = await this.post('/v4/claim_payment', request);
|
|
@@ -89,6 +119,40 @@ export class SikkaClient {
|
|
|
89
119
|
this.baseUrl = config.baseUrl ?? SIKKA_BASE_URL;
|
|
90
120
|
this.credentials = config.credentials;
|
|
91
121
|
}
|
|
122
|
+
async appAuthGet(endpoint, params) {
|
|
123
|
+
const log = getLogger();
|
|
124
|
+
const url = new URL(`${this.baseUrl}${endpoint}`);
|
|
125
|
+
if (params) {
|
|
126
|
+
for (const [key, value] of Object.entries(params)) {
|
|
127
|
+
if (value !== null && value !== undefined) {
|
|
128
|
+
url.searchParams.set(key, String(value));
|
|
129
|
+
}
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
log.debug('Sikka API app-auth GET request', { endpoint, params });
|
|
133
|
+
const response = await fetch(url.toString(), {
|
|
134
|
+
headers: {
|
|
135
|
+
'App-Id': this.credentials.appId,
|
|
136
|
+
'App-Key': this.credentials.appKey,
|
|
137
|
+
'Content-Type': 'application/json',
|
|
138
|
+
},
|
|
139
|
+
method: 'GET',
|
|
140
|
+
});
|
|
141
|
+
if (!response.ok) {
|
|
142
|
+
const errorBody = await response.text();
|
|
143
|
+
throw new Error(`Sikka API GET ${endpoint} failed: ${response.status} ${response.statusText} - ${errorBody}`);
|
|
144
|
+
}
|
|
145
|
+
const text = await response.text();
|
|
146
|
+
if (!text || text.trim() === '') {
|
|
147
|
+
return { items: [] };
|
|
148
|
+
}
|
|
149
|
+
const data = JSON.parse(text);
|
|
150
|
+
log.debug('Sikka API app-auth GET response', {
|
|
151
|
+
endpoint,
|
|
152
|
+
status: response.status,
|
|
153
|
+
});
|
|
154
|
+
return data;
|
|
155
|
+
}
|
|
92
156
|
async authenticate() {
|
|
93
157
|
const log = getLogger();
|
|
94
158
|
log.debug('Sikka API: Authenticating');
|
package/dist/lib/client.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client.js","sourceRoot":"","sources":["../../src/lib/client.ts"],"names":[],"mappings":"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","sourcesContent":["import { getLogger } from './logger.js';\nimport {\n type SikkaApiError,\n type SikkaClaim,\n type SikkaClaimListParams,\n type SikkaClaimListResponse,\n type SikkaClaimPaymentRequest,\n type SikkaClaimPaymentResponse,\n type SikkaClaimPaymentResult,\n type SikkaClaimUpdateRequest,\n type SikkaClaimUpdateResponse,\n type SikkaClaimUpdateResult,\n type SikkaClientConfig,\n type SikkaClientCredentials,\n type SikkaInsuranceCompanyDetail,\n type SikkaInsuranceCompanyDetailListParams,\n type SikkaInsuranceCompanyDetailListResponse,\n type SikkaPatient,\n type SikkaPatientListParams,\n type SikkaPatientListResponse,\n type SikkaPaymentType,\n type SikkaPaymentTypeListParams,\n type SikkaPaymentTypeListResponse,\n type SikkaPracticeVariable,\n type SikkaPracticeVariableListParams,\n type SikkaPracticeVariableListResponse,\n type SikkaRequestKeyRequest,\n type SikkaRequestKeyResponse,\n type SikkaSubscriber,\n type SikkaSubscriberListParams,\n type SikkaSubscriberListResponse,\n type SikkaTransaction,\n type SikkaTransactionListParams,\n type SikkaTransactionListResponse,\n type SikkaWritebackStatusItem,\n type SikkaWritebackStatusResponse,\n} from './types.js';\n\nconst SIKKA_BASE_URL = 'https://api.sikkasoft.com';\n\nconst WRITEBACK_ID_PATTERN = /^Id:(\\d+)$/u;\n\n/**\n * Extract the numeric writeback tracking ID from the long_message field.\n * Expected format: \"Id:3809955\"\n */\nconst parseWritebackId = (longMessage: string | undefined): string | null => {\n if (!longMessage) {\n return null;\n }\n\n const match = WRITEBACK_ID_PATTERN.exec(longMessage);\n return match?.[1] ?? null;\n};\n\n/**\n * Sikka API Client\n *\n * Provides authenticated access to Sikka's ONE API for a specific practice/office.\n *\n * @example\n * ```typescript\n * const client = new SikkaClient({\n * credentials: {\n * appId: 'your-app-id',\n * appKey: 'your-app-key',\n * officeId: 'practice-office-id',\n * secretKey: 'practice-secret-key',\n * },\n * });\n *\n * await client.authenticate();\n *\n * const patients = await client.patients.list({ firstname: 'John' });\n * ```\n */\nexport class SikkaClient {\n /**\n * Claim payment endpoints.\n */\n public readonly claimPayment = {\n /**\n * Post a payment to a claim.\n *\n * The Sikka API accepts the request (201) but the actual PMS writeback\n * is asynchronous. The returned `writeback_id` can be used with\n * `writebackStatus.get()` to poll for completion.\n *\n * @param request - Payment details\n * @returns Payment response with parsed writeback tracking ID\n *\n * @example\n * ```typescript\n * const result = await client.claimPayment.post({\n * claim_sr_no: '123456',\n * practice_id: 'practice-id',\n * payment_amount: '100.00|50.00',\n * transaction_sr_no: '789|790',\n * deductible: '0.00|0.00',\n * write_off: '0.00|0.00',\n * claim_payment_date: '2024-01-15',\n * payment_mode: 'EFT',\n * is_payment_by_procedure_code: 'true',\n * note: 'Insurance payment',\n * });\n *\n * if (result.writeback_id) {\n * const status = await client.writebackStatus.get(result.writeback_id);\n * }\n * ```\n */\n post: async (\n request: SikkaClaimPaymentRequest,\n ): Promise<SikkaClaimPaymentResult> => {\n const response = await this.post<SikkaClaimPaymentResponse>(\n '/v4/claim_payment',\n request as unknown as Record<string, unknown>,\n );\n const writebackId = parseWritebackId(response.long_message);\n return { ...response, writeback_id: writebackId };\n },\n };\n\n /**\n * Claims management endpoints.\n */\n public readonly claims = {\n /**\n * List claims matching the given criteria.\n *\n * @param params - Search parameters\n * @returns List of matching claims\n *\n * @example\n * ```typescript\n * const claims = await client.claims.list({\n * patient_id: '12345',\n * status: 'Pending',\n * start_date: '2024-01-01',\n * end_date: '2024-12-31',\n * });\n * ```\n */\n list: async (params: SikkaClaimListParams): Promise<SikkaClaim[]> => {\n const response = await this.get<SikkaClaimListResponse>(\n '/v4/claims',\n params,\n );\n return response.items;\n },\n\n /**\n * Update a claim's status and/or note.\n *\n * The Sikka API accepts the request but the actual PMS writeback\n * is asynchronous. The returned `writeback_id` can be used with\n * `writebackStatus.get()` to poll for completion.\n *\n * At least one of `status` or `note` must be provided.\n *\n * @param request - Claim update details including claim_sr_no\n * @returns Update response with parsed writeback tracking ID\n *\n * @example\n * ```typescript\n * const result = await client.claims.update({\n * claim_sr_no: '123456',\n * practice_id: 'practice-id',\n * status: 'Received',\n * note: 'Claim received and under review',\n * });\n *\n * if (result.writeback_id) {\n * const status = await client.writebackStatus.get(result.writeback_id);\n * }\n * ```\n */\n update: async (\n request: SikkaClaimUpdateRequest,\n ): Promise<SikkaClaimUpdateResult> => {\n const { claim_sr_no: claimSrNo, ...body } = request;\n const response = await this.patch<SikkaClaimUpdateResponse>(\n `/v4/claims/${claimSrNo}`,\n body as unknown as Record<string, unknown>,\n );\n const writebackId = parseWritebackId(response.long_message);\n return { ...response, writeback_id: writebackId };\n },\n };\n\n /**\n * Insurance company details endpoints.\n * Returns insurance company information associated with practices.\n */\n public readonly insuranceCompanyDetails = {\n /**\n * List insurance company details, optionally filtered by practice or company.\n *\n * @param params - Optional filter, sort, and pagination parameters\n * @returns List of insurance company details\n *\n * @example\n * ```typescript\n * // Get all insurance companies\n * const companies = await client.insuranceCompanyDetails.list();\n *\n * // Get insurance companies for a specific practice\n * const practiceCompanies = await client.insuranceCompanyDetails.list({\n * practice_id: '1',\n * });\n * ```\n */\n list: async (\n params: SikkaInsuranceCompanyDetailListParams = {},\n ): Promise<SikkaInsuranceCompanyDetail[]> => {\n const response = await this.get<SikkaInsuranceCompanyDetailListResponse>(\n '/v4/insurance_company_details',\n params,\n );\n return response.items;\n },\n };\n\n /**\n * Patient management endpoints.\n */\n public readonly patients = {\n /**\n * List patients matching the given criteria.\n *\n * @param params - Search parameters\n * @returns List of matching patients\n *\n * @example\n * ```typescript\n * const patients = await client.patients.list({\n * firstname: 'John',\n * lastname: 'Doe',\n * });\n * ```\n */\n list: async (params: SikkaPatientListParams): Promise<SikkaPatient[]> => {\n const response = await this.get<SikkaPatientListResponse>(\n '/v4/patients',\n params,\n );\n return response.items;\n },\n };\n\n /**\n * Payment types management endpoints.\n * Payment types represent the different methods a practice accepts for payments.\n */\n public readonly paymentTypes = {\n /**\n * List payment types for the practice.\n *\n * @param params - Optional filter and pagination parameters\n * @returns List of payment types\n *\n * @example\n * ```typescript\n * // Get all payment types\n * const types = await client.paymentTypes.list();\n *\n * // Get only insurance payment types\n * const insuranceTypes = await client.paymentTypes.list({\n * is_insurance_type: true,\n * });\n * ```\n */\n list: async (\n params: SikkaPaymentTypeListParams = {},\n ): Promise<SikkaPaymentType[]> => {\n const response = await this.get<SikkaPaymentTypeListResponse>(\n '/v4/payment_types',\n params,\n );\n return response.items;\n },\n };\n\n /**\n * Practice variables endpoints.\n * Returns configurable values from the practice management system such as\n * appointment statuses, claim statuses, and patient statuses.\n */\n public readonly practiceVariables = {\n /**\n * List practice variables, optionally filtered by service name.\n *\n * @param params - Optional filter and pagination parameters\n * @returns List of practice variables\n *\n * @example\n * ```typescript\n * // Get all claim statuses\n * const claimStatuses = await client.practiceVariables.list({\n * service_name: 'Claim Status',\n * });\n *\n * // Use the value field for claims.update()\n * const validStatuses = claimStatuses.map(v => v.value);\n * ```\n */\n list: async (\n params: SikkaPracticeVariableListParams = {},\n ): Promise<SikkaPracticeVariable[]> => {\n const response = await this.get<SikkaPracticeVariableListResponse>(\n '/v4/practice_variables',\n params,\n );\n return response.items;\n },\n };\n\n /**\n * Subscribers endpoints.\n * Returns insurance subscriber data associated with patients in practices.\n */\n public readonly subscribers = {\n /**\n * List subscribers, optionally filtered by patient, practice, or subscriber ID.\n *\n * @param params - Optional filter, sort, and pagination parameters\n * @returns List of subscribers\n *\n * @example\n * ```typescript\n * // Get all subscribers\n * const subscribers = await client.subscribers.list();\n *\n * // Get subscribers for a specific patient\n * const patientSubscribers = await client.subscribers.list({\n * patient_id: '994',\n * });\n * ```\n */\n list: async (\n params: SikkaSubscriberListParams = {},\n ): Promise<SikkaSubscriber[]> => {\n const response = await this.get<SikkaSubscriberListResponse>(\n '/v4/subscribers',\n params,\n );\n return response.items;\n },\n };\n\n /**\n * Transactions management endpoints.\n * Transactions include both procedures (service line items) and payments.\n */\n public readonly transactions = {\n /**\n * List transactions matching the given criteria.\n *\n * @param params - Search parameters\n * @returns List of matching transactions\n *\n * @example\n * ```typescript\n * const transactions = await client.transactions.list({\n * claim_sr_no: '123456',\n * });\n * ```\n */\n list: async (\n params: SikkaTransactionListParams,\n ): Promise<SikkaTransaction[]> => {\n const response = await this.get<SikkaTransactionListResponse>(\n '/v4/transactions',\n params,\n );\n return response.items;\n },\n\n /**\n * List only procedure transactions for a specific claim.\n *\n * @param claimSrNo - The claim serial number\n * @returns List of procedure transactions\n */\n listProcedures: async (claimSrNo: string): Promise<SikkaTransaction[]> => {\n const transactions = await this.transactions.list({\n claim_sr_no: claimSrNo,\n });\n return transactions.filter((txn) => txn.transaction_type === 'Procedure');\n },\n };\n\n /**\n * Writeback status endpoints.\n * Used to poll for the result of asynchronous PMS writeback operations\n * (e.g., after posting a claim payment).\n */\n public readonly writebackStatus = {\n /**\n * Get the status of a writeback operation.\n *\n * @param id - The writeback tracking ID (returned from claimPayment.post as writeback_id)\n * @returns The writeback status record\n *\n * @example\n * ```typescript\n * const result = await client.claimPayment.post({ ... });\n * if (result.writeback_id) {\n * const status = await client.writebackStatus.get(result.writeback_id);\n * console.log(status.status, status.is_completed);\n * }\n * ```\n */\n get: async (id: string): Promise<SikkaWritebackStatusItem> => {\n const response = await this.get<SikkaWritebackStatusResponse>(\n '/v4/writeback_status',\n { id },\n );\n const item = response.items[0];\n if (!item) {\n throw new Error(`No writeback status found for id: ${id}`);\n }\n\n return item;\n },\n };\n\n private readonly baseUrl: string;\n\n private readonly credentials: SikkaClientCredentials;\n\n private refreshKey: string | null = null;\n\n private requestKey: string | null = null;\n\n private requestKeyExpiresAt: Date | null = null;\n\n constructor(config: SikkaClientConfig) {\n this.baseUrl = config.baseUrl ?? SIKKA_BASE_URL;\n this.credentials = config.credentials;\n }\n\n /**\n * Authenticate with the Sikka API.\n * Must be called before making any other API requests.\n * The request key is valid for 24 hours.\n */\n async authenticate(): Promise<void> {\n const log = getLogger();\n\n log.debug('Sikka API: Authenticating');\n\n const requestBody: SikkaRequestKeyRequest = {\n app_id: this.credentials.appId,\n app_key: this.credentials.appKey,\n grant_type: 'request_key',\n office_id: this.credentials.officeId,\n secret_key: this.credentials.secretKey,\n };\n\n const response = await this.requestNewKey(requestBody);\n this.requestKey = response.request_key;\n this.refreshKey = response.refresh_key;\n this.requestKeyExpiresAt = new Date(response.end_time);\n\n log.debug('Sikka API: Authenticated successfully', {\n expiresAt: this.requestKeyExpiresAt.toISOString(),\n });\n }\n\n /**\n * Clear the current authentication state.\n */\n clearAuth(): void {\n this.requestKey = null;\n this.refreshKey = null;\n this.requestKeyExpiresAt = null;\n }\n\n /**\n * Ensure the client is authenticated, refreshing if necessary.\n * Automatically refreshes if token expires within 1 hour.\n */\n async ensureAuthenticated(): Promise<void> {\n if (!this.requestKey) {\n throw new Error('Not authenticated. Call authenticate() first.');\n }\n\n const oneHourFromNow = new Date(Date.now() + 60 * 60 * 1_000);\n if (this.requestKeyExpiresAt && this.requestKeyExpiresAt < oneHourFromNow) {\n await this.refreshAuthentication();\n }\n }\n\n /**\n * Make an authenticated GET request to the Sikka API.\n */\n async get<T>(endpoint: string, params?: Record<string, unknown>): Promise<T> {\n const log = getLogger();\n\n await this.ensureAuthenticated();\n\n const requestKey = this.getRequestKey();\n const url = new URL(`${this.baseUrl}${endpoint}`);\n url.searchParams.set('request_key', requestKey);\n\n if (params) {\n for (const [key, value] of Object.entries(params)) {\n if (value !== null && value !== undefined) {\n url.searchParams.set(key, String(value));\n }\n }\n }\n\n log.debug('Sikka API GET request', { endpoint, params });\n\n const response = await fetch(url.toString(), {\n headers: {\n 'Content-Type': 'application/json',\n 'Request-Key': requestKey,\n },\n method: 'GET',\n });\n\n if (!response.ok) {\n const errorBody = await response.text();\n throw new Error(\n `Sikka API GET ${endpoint} failed: ${response.status} ${response.statusText} - ${errorBody}`,\n );\n }\n\n const text = await response.text();\n if (!text || text.trim() === '') {\n return { items: [] } as T;\n }\n\n const data = JSON.parse(text) as T;\n\n log.debug('Sikka API GET response', { endpoint, status: response.status });\n\n return data;\n }\n\n /**\n * Get the current request key.\n *\n * @throws Error if not authenticated\n */\n getRequestKey(): string {\n if (!this.requestKey) {\n throw new Error('Not authenticated. Call authenticate() first.');\n }\n\n return this.requestKey;\n }\n\n // -------------------------------------------------------------------------\n // API Modules\n\n /**\n * Check if the client is currently authenticated with a valid token.\n */\n isAuthenticated(): boolean {\n if (!this.requestKey || !this.requestKeyExpiresAt) {\n return false;\n }\n\n return this.requestKeyExpiresAt > new Date();\n }\n\n /**\n * Make an authenticated PATCH request to the Sikka API.\n */\n async patch<T>(endpoint: string, body: Record<string, unknown>): Promise<T> {\n const log = getLogger();\n\n await this.ensureAuthenticated();\n\n const requestKey = this.getRequestKey();\n const url = new URL(`${this.baseUrl}${endpoint}`);\n url.searchParams.set('request_key', requestKey);\n\n log.debug('Sikka API PATCH request', { body, endpoint });\n\n const response = await fetch(url.toString(), {\n body: JSON.stringify(body),\n headers: {\n 'Content-Type': 'application/json',\n 'Request-Key': requestKey,\n },\n method: 'PATCH',\n });\n\n if (!response.ok) {\n const errorBody = await response.text();\n throw new Error(\n `Sikka API PATCH ${endpoint} failed: ${response.status} ${response.statusText} - ${errorBody}`,\n );\n }\n\n const data = (await response.json()) as T;\n\n log.debug('Sikka API PATCH response', {\n endpoint,\n status: response.status,\n });\n\n return data;\n }\n\n /**\n * Make an authenticated POST request to the Sikka API.\n */\n async post<T>(endpoint: string, body: Record<string, unknown>): Promise<T> {\n const log = getLogger();\n\n await this.ensureAuthenticated();\n\n const requestKey = this.getRequestKey();\n const url = new URL(`${this.baseUrl}${endpoint}`);\n url.searchParams.set('request_key', requestKey);\n\n log.debug('Sikka API POST request', { body, endpoint });\n\n const response = await fetch(url.toString(), {\n body: JSON.stringify(body),\n headers: {\n 'Content-Type': 'application/json',\n 'Request-Key': requestKey,\n },\n method: 'POST',\n });\n\n if (!response.ok) {\n const errorBody = await response.text();\n throw new Error(\n `Sikka API POST ${endpoint} failed: ${response.status} ${response.statusText} - ${errorBody}`,\n );\n }\n\n const data = (await response.json()) as T;\n\n log.debug('Sikka API POST response', { endpoint, status: response.status });\n\n return data;\n }\n\n /**\n * Refresh the authentication token using the refresh key.\n * Called automatically when token is near expiration.\n */\n async refreshAuthentication(): Promise<void> {\n const log = getLogger();\n\n if (!this.refreshKey) {\n throw new Error('No refresh key available. Call authenticate() first.');\n }\n\n log.debug('Sikka API: Refreshing authentication');\n\n const requestBody: SikkaRequestKeyRequest = {\n app_id: this.credentials.appId,\n app_key: this.credentials.appKey,\n grant_type: 'refresh_key',\n refresh_key: this.refreshKey,\n };\n\n const response = await this.requestNewKey(requestBody);\n this.requestKey = response.request_key;\n this.refreshKey = response.refresh_key;\n this.requestKeyExpiresAt = new Date(response.end_time);\n\n log.debug('Sikka API: Authentication refreshed', {\n expiresAt: this.requestKeyExpiresAt.toISOString(),\n });\n }\n\n private async requestNewKey(\n requestBody: SikkaRequestKeyRequest,\n ): Promise<SikkaRequestKeyResponse> {\n const response = await fetch(`${this.baseUrl}/v4/request_key`, {\n body: JSON.stringify(requestBody),\n headers: { 'Content-Type': 'application/json' },\n method: 'POST',\n });\n\n if (!response.ok) {\n let errorMessage = `${response.status} ${response.statusText}`;\n try {\n const errorBody = (await response.json()) as SikkaApiError;\n errorMessage =\n errorBody.error_description ??\n errorBody.error ??\n errorBody.message ??\n errorMessage;\n } catch {\n // Ignore JSON parse errors\n }\n\n throw new Error(`Sikka authentication failed: ${errorMessage}`);\n }\n\n return response.json() as Promise<SikkaRequestKeyResponse>;\n }\n}\n\n/**\n * Create a new Sikka client instance.\n *\n * @param credentials - Office-level credentials\n * @param baseUrl - Optional base URL override\n * @returns A new SikkaClient instance\n *\n * @example\n * ```typescript\n * const client = createSikkaClient({\n * appId: 'your-app-id',\n * appKey: 'your-app-key',\n * officeId: 'practice-office-id',\n * secretKey: 'practice-secret-key',\n * });\n *\n * await client.authenticate();\n * ```\n */\nexport const createSikkaClient = (\n credentials: SikkaClientCredentials,\n baseUrl?: string,\n): SikkaClient => {\n return new SikkaClient({ baseUrl, credentials });\n};\n"]}
|
|
1
|
+
{"version":3,"file":"client.js","sourceRoot":"","sources":["../../src/lib/client.ts"],"names":[],"mappings":"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","sourcesContent":["import { getLogger } from './logger.js';\nimport {\n type SikkaApiError,\n type SikkaAuthorizedPractice,\n type SikkaAuthorizedPracticeListParams,\n type SikkaAuthorizedPracticeListResponse,\n type SikkaClaim,\n type SikkaClaimListParams,\n type SikkaClaimListResponse,\n type SikkaClaimPaymentRequest,\n type SikkaClaimPaymentResponse,\n type SikkaClaimPaymentResult,\n type SikkaClaimUpdateRequest,\n type SikkaClaimUpdateResponse,\n type SikkaClaimUpdateResult,\n type SikkaClientConfig,\n type SikkaClientCredentials,\n type SikkaInsuranceCompanyDetail,\n type SikkaInsuranceCompanyDetailListParams,\n type SikkaInsuranceCompanyDetailListResponse,\n type SikkaPatient,\n type SikkaPatientListParams,\n type SikkaPatientListResponse,\n type SikkaPaymentType,\n type SikkaPaymentTypeListParams,\n type SikkaPaymentTypeListResponse,\n type SikkaPracticeVariable,\n type SikkaPracticeVariableListParams,\n type SikkaPracticeVariableListResponse,\n type SikkaRequestKeyRequest,\n type SikkaRequestKeyResponse,\n type SikkaSubscriber,\n type SikkaSubscriberListParams,\n type SikkaSubscriberListResponse,\n type SikkaTransaction,\n type SikkaTransactionListParams,\n type SikkaTransactionListResponse,\n type SikkaWritebackStatusItem,\n type SikkaWritebackStatusResponse,\n} from './types.js';\n\nconst SIKKA_BASE_URL = 'https://api.sikkasoft.com';\n\nconst WRITEBACK_ID_PATTERN = /^Id:(\\d+)$/u;\n\n/**\n * Page size used when auto-paginating the authorized_practices endpoint.\n */\nconst AUTHORIZED_PRACTICES_PAGE_SIZE = 500;\n\n/**\n * Extract the numeric writeback tracking ID from the long_message field.\n * Expected format: \"Id:3809955\"\n */\nconst parseWritebackId = (longMessage: string | undefined): string | null => {\n if (!longMessage) {\n return null;\n }\n\n const match = WRITEBACK_ID_PATTERN.exec(longMessage);\n return match?.[1] ?? null;\n};\n\n/**\n * Sikka API Client\n *\n * Provides authenticated access to Sikka's ONE API for a specific practice/office.\n *\n * @example\n * ```typescript\n * const client = new SikkaClient({\n * credentials: {\n * appId: 'your-app-id',\n * appKey: 'your-app-key',\n * officeId: 'practice-office-id',\n * secretKey: 'practice-secret-key',\n * },\n * });\n *\n * await client.authenticate();\n *\n * const patients = await client.patients.list({ firstname: 'John' });\n * ```\n */\nexport class SikkaClient {\n /**\n * Authorized practices endpoints.\n * Returns your authorized practices with the Sikka practice utility last\n * refresh and data insert times.\n *\n * This is an application-scoped resource: requests authenticate with the\n * application credentials (`App-Id` / `App-Key` headers), so no prior\n * `authenticate()` call is required.\n */\n public readonly authorizedPractices = {\n /**\n * Get a single authorized practice by its office ID.\n *\n * This is the primary access pattern for resolving \"what PMS does this\n * office run\", since `office_id` (e.g. \"D13303\") is the unique identifier\n * for a practice/office. Matching is a case-sensitive exact match.\n *\n * Internally this lists all authorized practices (`show: 'all'`, with\n * auto-pagination) and returns the first record whose `office_id` matches.\n * Application-scoped: no prior `authenticate()` call is required.\n *\n * @param officeId - The unique office ID to look up\n * @returns The matching authorized practice, or `null` if none matches\n *\n * @example\n * ```typescript\n * const practice = await client.authorizedPractices.getByOfficeId('D13303');\n * if (practice) {\n * console.log(practice.practice_management_system);\n * }\n * ```\n */\n getByOfficeId: async (\n officeId: string,\n ): Promise<SikkaAuthorizedPractice | null> => {\n const practices = await this.authorizedPractices.list({ show: 'all' });\n return (\n practices.find((practice) => practice.office_id === officeId) ?? null\n );\n },\n\n /**\n * List your authorized practices, auto-paginating to completion.\n *\n * By default the API returns only practice id 1. Pass `show: 'all'` to\n * retrieve every authorized office. This method follows the response\n * pagination (offset/limit + `pagination.next`) and accumulates all pages,\n * so the returned array contains every matching record.\n *\n * Application-scoped: requests use the `App-Id` / `App-Key` headers, so no\n * prior `authenticate()` call is required.\n *\n * Items are returned RAW: no normalization, filtering, or coercion is\n * applied. In particular, `practice_management_system` values are\n * inconsistent in case/spelling across records — callers should normalize\n * themselves.\n *\n * WARNING: `practice_id` is NOT unique across offices — the live API can\n * return the same `practice_id` (e.g. \"1\") for every authorized office. Key\n * off `office_id` (e.g. \"D13303\") instead. See `getByOfficeId()`.\n *\n * @param params - Optional filter, sort, and pagination parameters. A\n * caller-supplied `offset`/`limit` controls the starting page and page\n * size; pagination then continues from there until all items are fetched.\n * @returns List of all authorized practices across every page\n *\n * @example\n * ```typescript\n * // Get the default practice\n * const practices = await client.authorizedPractices.list();\n *\n * // Get all authorized practices (across all pages)\n * const allPractices = await client.authorizedPractices.list({\n * show: 'all',\n * });\n * ```\n */\n list: async (\n params: SikkaAuthorizedPracticeListParams = {},\n ): Promise<SikkaAuthorizedPractice[]> => {\n const items: SikkaAuthorizedPractice[] = [];\n\n // Sikka's `offset` is a 0-indexed PAGE NUMBER (not a record offset): the\n // next page is `offset + 1` with `limit` held constant. To stay correct\n // regardless of those semantics, we never compute the next offset\n // ourselves — we follow the `pagination.next` URL's query params verbatim.\n let offset: number | string = params.offset ?? 0;\n let limit: number | string =\n params.limit ?? AUTHORIZED_PRACTICES_PAGE_SIZE;\n\n for (;;) {\n const response: SikkaAuthorizedPracticeListResponse =\n await this.appAuthGet<SikkaAuthorizedPracticeListResponse>(\n '/v4/authorized_practices',\n { ...params, limit, offset },\n );\n\n const pageItems = response.items ?? [];\n items.push(...pageItems);\n\n const totalCount = Number.parseInt(response.total_count, 10);\n const pageSize = Number.parseInt(String(limit), 10);\n const nextUrl = response.pagination?.next;\n\n // Stop when the page came back empty, we've reached the reported\n // total, the API reported no next page, or the page was not full\n // (a reliable \"last page\" signal that guards against infinite loops).\n if (\n pageItems.length === 0 ||\n (!Number.isNaN(totalCount) && items.length >= totalCount) ||\n !nextUrl ||\n (!Number.isNaN(pageSize) && pageItems.length < pageSize)\n ) {\n break;\n }\n\n // Advance strictly by what the API tells us, rather than doing\n // `offset += limit` arithmetic (which would be wrong for page-number\n // semantics).\n const nextSearch = new URL(nextUrl).searchParams;\n offset = nextSearch.get('offset') ?? offset;\n limit = nextSearch.get('limit') ?? limit;\n }\n\n return items;\n },\n };\n\n /**\n * Claim payment endpoints.\n */\n public readonly claimPayment = {\n /**\n * Post a payment to a claim.\n *\n * The Sikka API accepts the request (201) but the actual PMS writeback\n * is asynchronous. The returned `writeback_id` can be used with\n * `writebackStatus.get()` to poll for completion.\n *\n * @param request - Payment details\n * @returns Payment response with parsed writeback tracking ID\n *\n * @example\n * ```typescript\n * const result = await client.claimPayment.post({\n * claim_sr_no: '123456',\n * practice_id: 'practice-id',\n * payment_amount: '100.00|50.00',\n * transaction_sr_no: '789|790',\n * deductible: '0.00|0.00',\n * write_off: '0.00|0.00',\n * claim_payment_date: '2024-01-15',\n * payment_mode: 'EFT',\n * is_payment_by_procedure_code: 'true',\n * note: 'Insurance payment',\n * });\n *\n * if (result.writeback_id) {\n * const status = await client.writebackStatus.get(result.writeback_id);\n * }\n * ```\n */\n post: async (\n request: SikkaClaimPaymentRequest,\n ): Promise<SikkaClaimPaymentResult> => {\n const response = await this.post<SikkaClaimPaymentResponse>(\n '/v4/claim_payment',\n request as unknown as Record<string, unknown>,\n );\n const writebackId = parseWritebackId(response.long_message);\n return { ...response, writeback_id: writebackId };\n },\n };\n\n /**\n * Claims management endpoints.\n */\n public readonly claims = {\n /**\n * List claims matching the given criteria.\n *\n * @param params - Search parameters\n * @returns List of matching claims\n *\n * @example\n * ```typescript\n * const claims = await client.claims.list({\n * patient_id: '12345',\n * status: 'Pending',\n * start_date: '2024-01-01',\n * end_date: '2024-12-31',\n * });\n * ```\n */\n list: async (params: SikkaClaimListParams): Promise<SikkaClaim[]> => {\n const response = await this.get<SikkaClaimListResponse>(\n '/v4/claims',\n params,\n );\n return response.items;\n },\n\n /**\n * Update a claim's status and/or note.\n *\n * The Sikka API accepts the request but the actual PMS writeback\n * is asynchronous. The returned `writeback_id` can be used with\n * `writebackStatus.get()` to poll for completion.\n *\n * At least one of `status` or `note` must be provided.\n *\n * @param request - Claim update details including claim_sr_no\n * @returns Update response with parsed writeback tracking ID\n *\n * @example\n * ```typescript\n * const result = await client.claims.update({\n * claim_sr_no: '123456',\n * practice_id: 'practice-id',\n * status: 'Received',\n * note: 'Claim received and under review',\n * });\n *\n * if (result.writeback_id) {\n * const status = await client.writebackStatus.get(result.writeback_id);\n * }\n * ```\n */\n update: async (\n request: SikkaClaimUpdateRequest,\n ): Promise<SikkaClaimUpdateResult> => {\n const { claim_sr_no: claimSrNo, ...body } = request;\n const response = await this.patch<SikkaClaimUpdateResponse>(\n `/v4/claims/${claimSrNo}`,\n body as unknown as Record<string, unknown>,\n );\n const writebackId = parseWritebackId(response.long_message);\n return { ...response, writeback_id: writebackId };\n },\n };\n\n /**\n * Insurance company details endpoints.\n * Returns insurance company information associated with practices.\n */\n public readonly insuranceCompanyDetails = {\n /**\n * List insurance company details, optionally filtered by practice or company.\n *\n * @param params - Optional filter, sort, and pagination parameters\n * @returns List of insurance company details\n *\n * @example\n * ```typescript\n * // Get all insurance companies\n * const companies = await client.insuranceCompanyDetails.list();\n *\n * // Get insurance companies for a specific practice\n * const practiceCompanies = await client.insuranceCompanyDetails.list({\n * practice_id: '1',\n * });\n * ```\n */\n list: async (\n params: SikkaInsuranceCompanyDetailListParams = {},\n ): Promise<SikkaInsuranceCompanyDetail[]> => {\n const response = await this.get<SikkaInsuranceCompanyDetailListResponse>(\n '/v4/insurance_company_details',\n params,\n );\n return response.items;\n },\n };\n\n /**\n * Patient management endpoints.\n */\n public readonly patients = {\n /**\n * List patients matching the given criteria.\n *\n * @param params - Search parameters\n * @returns List of matching patients\n *\n * @example\n * ```typescript\n * const patients = await client.patients.list({\n * firstname: 'John',\n * lastname: 'Doe',\n * });\n * ```\n */\n list: async (params: SikkaPatientListParams): Promise<SikkaPatient[]> => {\n const response = await this.get<SikkaPatientListResponse>(\n '/v4/patients',\n params,\n );\n return response.items;\n },\n };\n\n /**\n * Payment types management endpoints.\n * Payment types represent the different methods a practice accepts for payments.\n */\n public readonly paymentTypes = {\n /**\n * List payment types for the practice.\n *\n * @param params - Optional filter and pagination parameters\n * @returns List of payment types\n *\n * @example\n * ```typescript\n * // Get all payment types\n * const types = await client.paymentTypes.list();\n *\n * // Get only insurance payment types\n * const insuranceTypes = await client.paymentTypes.list({\n * is_insurance_type: true,\n * });\n * ```\n */\n list: async (\n params: SikkaPaymentTypeListParams = {},\n ): Promise<SikkaPaymentType[]> => {\n const response = await this.get<SikkaPaymentTypeListResponse>(\n '/v4/payment_types',\n params,\n );\n return response.items;\n },\n };\n\n /**\n * Practice variables endpoints.\n * Returns configurable values from the practice management system such as\n * appointment statuses, claim statuses, and patient statuses.\n */\n public readonly practiceVariables = {\n /**\n * List practice variables, optionally filtered by service name.\n *\n * @param params - Optional filter and pagination parameters\n * @returns List of practice variables\n *\n * @example\n * ```typescript\n * // Get all claim statuses\n * const claimStatuses = await client.practiceVariables.list({\n * service_name: 'Claim Status',\n * });\n *\n * // Use the value field for claims.update()\n * const validStatuses = claimStatuses.map(v => v.value);\n * ```\n */\n list: async (\n params: SikkaPracticeVariableListParams = {},\n ): Promise<SikkaPracticeVariable[]> => {\n const response = await this.get<SikkaPracticeVariableListResponse>(\n '/v4/practice_variables',\n params,\n );\n return response.items;\n },\n };\n\n /**\n * Subscribers endpoints.\n * Returns insurance subscriber data associated with patients in practices.\n */\n public readonly subscribers = {\n /**\n * List subscribers, optionally filtered by patient, practice, or subscriber ID.\n *\n * @param params - Optional filter, sort, and pagination parameters\n * @returns List of subscribers\n *\n * @example\n * ```typescript\n * // Get all subscribers\n * const subscribers = await client.subscribers.list();\n *\n * // Get subscribers for a specific patient\n * const patientSubscribers = await client.subscribers.list({\n * patient_id: '994',\n * });\n * ```\n */\n list: async (\n params: SikkaSubscriberListParams = {},\n ): Promise<SikkaSubscriber[]> => {\n const response = await this.get<SikkaSubscriberListResponse>(\n '/v4/subscribers',\n params,\n );\n return response.items;\n },\n };\n\n /**\n * Transactions management endpoints.\n * Transactions include both procedures (service line items) and payments.\n */\n public readonly transactions = {\n /**\n * List transactions matching the given criteria.\n *\n * @param params - Search parameters\n * @returns List of matching transactions\n *\n * @example\n * ```typescript\n * const transactions = await client.transactions.list({\n * claim_sr_no: '123456',\n * });\n * ```\n */\n list: async (\n params: SikkaTransactionListParams,\n ): Promise<SikkaTransaction[]> => {\n const response = await this.get<SikkaTransactionListResponse>(\n '/v4/transactions',\n params,\n );\n return response.items;\n },\n\n /**\n * List only procedure transactions for a specific claim.\n *\n * @param claimSrNo - The claim serial number\n * @returns List of procedure transactions\n */\n listProcedures: async (claimSrNo: string): Promise<SikkaTransaction[]> => {\n const transactions = await this.transactions.list({\n claim_sr_no: claimSrNo,\n });\n return transactions.filter((txn) => txn.transaction_type === 'Procedure');\n },\n };\n\n /**\n * Writeback status endpoints.\n * Used to poll for the result of asynchronous PMS writeback operations\n * (e.g., after posting a claim payment).\n */\n public readonly writebackStatus = {\n /**\n * Get the status of a writeback operation.\n *\n * @param id - The writeback tracking ID (returned from claimPayment.post as writeback_id)\n * @returns The writeback status record\n *\n * @example\n * ```typescript\n * const result = await client.claimPayment.post({ ... });\n * if (result.writeback_id) {\n * const status = await client.writebackStatus.get(result.writeback_id);\n * console.log(status.status, status.is_completed);\n * }\n * ```\n */\n get: async (id: string): Promise<SikkaWritebackStatusItem> => {\n const response = await this.get<SikkaWritebackStatusResponse>(\n '/v4/writeback_status',\n { id },\n );\n const item = response.items[0];\n if (!item) {\n throw new Error(`No writeback status found for id: ${id}`);\n }\n\n return item;\n },\n };\n\n private readonly baseUrl: string;\n\n private readonly credentials: SikkaClientCredentials;\n\n private refreshKey: string | null = null;\n\n private requestKey: string | null = null;\n\n private requestKeyExpiresAt: Date | null = null;\n\n constructor(config: SikkaClientConfig) {\n this.baseUrl = config.baseUrl ?? SIKKA_BASE_URL;\n this.credentials = config.credentials;\n }\n\n /**\n * Make an application-scoped GET request to the Sikka API.\n *\n * Used for endpoints that authenticate with the application credentials\n * (`App-Id` / `App-Key` headers) rather than the per-office request_key\n * scheme — e.g. `/v4/authorized_practices`. This does NOT require a prior\n * `authenticate()` call and does NOT set the `request_key` query param.\n */\n async appAuthGet<T>(\n endpoint: string,\n params?: Record<string, unknown>,\n ): Promise<T> {\n const log = getLogger();\n\n const url = new URL(`${this.baseUrl}${endpoint}`);\n\n if (params) {\n for (const [key, value] of Object.entries(params)) {\n if (value !== null && value !== undefined) {\n url.searchParams.set(key, String(value));\n }\n }\n }\n\n log.debug('Sikka API app-auth GET request', { endpoint, params });\n\n const response = await fetch(url.toString(), {\n headers: {\n 'App-Id': this.credentials.appId,\n 'App-Key': this.credentials.appKey,\n 'Content-Type': 'application/json',\n },\n method: 'GET',\n });\n\n if (!response.ok) {\n const errorBody = await response.text();\n throw new Error(\n `Sikka API GET ${endpoint} failed: ${response.status} ${response.statusText} - ${errorBody}`,\n );\n }\n\n const text = await response.text();\n if (!text || text.trim() === '') {\n return { items: [] } as T;\n }\n\n const data = JSON.parse(text) as T;\n\n log.debug('Sikka API app-auth GET response', {\n endpoint,\n status: response.status,\n });\n\n return data;\n }\n\n /**\n * Authenticate with the Sikka API.\n * Must be called before making any other API requests.\n * The request key is valid for 24 hours.\n */\n async authenticate(): Promise<void> {\n const log = getLogger();\n\n log.debug('Sikka API: Authenticating');\n\n const requestBody: SikkaRequestKeyRequest = {\n app_id: this.credentials.appId,\n app_key: this.credentials.appKey,\n grant_type: 'request_key',\n office_id: this.credentials.officeId,\n secret_key: this.credentials.secretKey,\n };\n\n const response = await this.requestNewKey(requestBody);\n this.requestKey = response.request_key;\n this.refreshKey = response.refresh_key;\n this.requestKeyExpiresAt = new Date(response.end_time);\n\n log.debug('Sikka API: Authenticated successfully', {\n expiresAt: this.requestKeyExpiresAt.toISOString(),\n });\n }\n\n /**\n * Clear the current authentication state.\n */\n clearAuth(): void {\n this.requestKey = null;\n this.refreshKey = null;\n this.requestKeyExpiresAt = null;\n }\n\n /**\n * Ensure the client is authenticated, refreshing if necessary.\n * Automatically refreshes if token expires within 1 hour.\n */\n async ensureAuthenticated(): Promise<void> {\n if (!this.requestKey) {\n throw new Error('Not authenticated. Call authenticate() first.');\n }\n\n const oneHourFromNow = new Date(Date.now() + 60 * 60 * 1_000);\n if (this.requestKeyExpiresAt && this.requestKeyExpiresAt < oneHourFromNow) {\n await this.refreshAuthentication();\n }\n }\n\n /**\n * Make an authenticated GET request to the Sikka API.\n */\n async get<T>(endpoint: string, params?: Record<string, unknown>): Promise<T> {\n const log = getLogger();\n\n await this.ensureAuthenticated();\n\n const requestKey = this.getRequestKey();\n const url = new URL(`${this.baseUrl}${endpoint}`);\n url.searchParams.set('request_key', requestKey);\n\n if (params) {\n for (const [key, value] of Object.entries(params)) {\n if (value !== null && value !== undefined) {\n url.searchParams.set(key, String(value));\n }\n }\n }\n\n log.debug('Sikka API GET request', { endpoint, params });\n\n const response = await fetch(url.toString(), {\n headers: {\n 'Content-Type': 'application/json',\n 'Request-Key': requestKey,\n },\n method: 'GET',\n });\n\n if (!response.ok) {\n const errorBody = await response.text();\n throw new Error(\n `Sikka API GET ${endpoint} failed: ${response.status} ${response.statusText} - ${errorBody}`,\n );\n }\n\n const text = await response.text();\n if (!text || text.trim() === '') {\n return { items: [] } as T;\n }\n\n const data = JSON.parse(text) as T;\n\n log.debug('Sikka API GET response', { endpoint, status: response.status });\n\n return data;\n }\n\n /**\n * Get the current request key.\n *\n * @throws Error if not authenticated\n */\n getRequestKey(): string {\n if (!this.requestKey) {\n throw new Error('Not authenticated. Call authenticate() first.');\n }\n\n return this.requestKey;\n }\n\n // -------------------------------------------------------------------------\n // API Modules\n\n /**\n * Check if the client is currently authenticated with a valid token.\n */\n isAuthenticated(): boolean {\n if (!this.requestKey || !this.requestKeyExpiresAt) {\n return false;\n }\n\n return this.requestKeyExpiresAt > new Date();\n }\n\n /**\n * Make an authenticated PATCH request to the Sikka API.\n */\n async patch<T>(endpoint: string, body: Record<string, unknown>): Promise<T> {\n const log = getLogger();\n\n await this.ensureAuthenticated();\n\n const requestKey = this.getRequestKey();\n const url = new URL(`${this.baseUrl}${endpoint}`);\n url.searchParams.set('request_key', requestKey);\n\n log.debug('Sikka API PATCH request', { body, endpoint });\n\n const response = await fetch(url.toString(), {\n body: JSON.stringify(body),\n headers: {\n 'Content-Type': 'application/json',\n 'Request-Key': requestKey,\n },\n method: 'PATCH',\n });\n\n if (!response.ok) {\n const errorBody = await response.text();\n throw new Error(\n `Sikka API PATCH ${endpoint} failed: ${response.status} ${response.statusText} - ${errorBody}`,\n );\n }\n\n const data = (await response.json()) as T;\n\n log.debug('Sikka API PATCH response', {\n endpoint,\n status: response.status,\n });\n\n return data;\n }\n\n /**\n * Make an authenticated POST request to the Sikka API.\n */\n async post<T>(endpoint: string, body: Record<string, unknown>): Promise<T> {\n const log = getLogger();\n\n await this.ensureAuthenticated();\n\n const requestKey = this.getRequestKey();\n const url = new URL(`${this.baseUrl}${endpoint}`);\n url.searchParams.set('request_key', requestKey);\n\n log.debug('Sikka API POST request', { body, endpoint });\n\n const response = await fetch(url.toString(), {\n body: JSON.stringify(body),\n headers: {\n 'Content-Type': 'application/json',\n 'Request-Key': requestKey,\n },\n method: 'POST',\n });\n\n if (!response.ok) {\n const errorBody = await response.text();\n throw new Error(\n `Sikka API POST ${endpoint} failed: ${response.status} ${response.statusText} - ${errorBody}`,\n );\n }\n\n const data = (await response.json()) as T;\n\n log.debug('Sikka API POST response', { endpoint, status: response.status });\n\n return data;\n }\n\n /**\n * Refresh the authentication token using the refresh key.\n * Called automatically when token is near expiration.\n */\n async refreshAuthentication(): Promise<void> {\n const log = getLogger();\n\n if (!this.refreshKey) {\n throw new Error('No refresh key available. Call authenticate() first.');\n }\n\n log.debug('Sikka API: Refreshing authentication');\n\n const requestBody: SikkaRequestKeyRequest = {\n app_id: this.credentials.appId,\n app_key: this.credentials.appKey,\n grant_type: 'refresh_key',\n refresh_key: this.refreshKey,\n };\n\n const response = await this.requestNewKey(requestBody);\n this.requestKey = response.request_key;\n this.refreshKey = response.refresh_key;\n this.requestKeyExpiresAt = new Date(response.end_time);\n\n log.debug('Sikka API: Authentication refreshed', {\n expiresAt: this.requestKeyExpiresAt.toISOString(),\n });\n }\n\n private async requestNewKey(\n requestBody: SikkaRequestKeyRequest,\n ): Promise<SikkaRequestKeyResponse> {\n const response = await fetch(`${this.baseUrl}/v4/request_key`, {\n body: JSON.stringify(requestBody),\n headers: { 'Content-Type': 'application/json' },\n method: 'POST',\n });\n\n if (!response.ok) {\n let errorMessage = `${response.status} ${response.statusText}`;\n try {\n const errorBody = (await response.json()) as SikkaApiError;\n errorMessage =\n errorBody.error_description ??\n errorBody.error ??\n errorBody.message ??\n errorMessage;\n } catch {\n // Ignore JSON parse errors\n }\n\n throw new Error(`Sikka authentication failed: ${errorMessage}`);\n }\n\n return response.json() as Promise<SikkaRequestKeyResponse>;\n }\n}\n\n/**\n * Create a new Sikka client instance.\n *\n * @param credentials - Office-level credentials\n * @param baseUrl - Optional base URL override\n * @returns A new SikkaClient instance\n *\n * @example\n * ```typescript\n * const client = createSikkaClient({\n * appId: 'your-app-id',\n * appKey: 'your-app-key',\n * officeId: 'practice-office-id',\n * secretKey: 'practice-secret-key',\n * });\n *\n * await client.authenticate();\n * ```\n */\nexport const createSikkaClient = (\n credentials: SikkaClientCredentials,\n baseUrl?: string,\n): SikkaClient => {\n return new SikkaClient({ baseUrl, credentials });\n};\n"]}
|
package/dist/lib/types.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/lib/types.ts"],"names":[],"mappings":"","sourcesContent":["/**\n * Sikka SDK Types\n *\n * Types for interacting with the Sikka API (https://api.sikkasoft.com)\n */\n\n/**\n * Grant type for authentication\n */\nexport type SikkaGrantType = 'refresh_key' | 'request_key';\n\n/**\n * Request body for obtaining a request key\n */\nexport type SikkaRequestKeyRequest = {\n app_id: string;\n app_key: string;\n grant_type: SikkaGrantType;\n office_id?: string;\n refresh_key?: string;\n secret_key?: string;\n};\n\n/**\n * Response from the request_key endpoint\n */\nexport type SikkaRequestKeyResponse = {\n domain: string;\n end_time: string;\n expires_in: string;\n href: string;\n issued_to: string;\n refresh_key: string;\n request_count: string;\n request_key: string;\n scope: string;\n start_time: string;\n status: string;\n};\n\n/**\n * Sikka API error response\n */\nexport type SikkaApiError = {\n error?: string;\n error_description?: string;\n message?: string;\n};\n\n/**\n * An authorized practice from the authorized_practices endpoint\n */\nexport type SikkaAuthorizedPractice = {\n address: string;\n city: string;\n data_insert_date: string;\n data_synchronization_date: string;\n domain: string;\n email: string;\n href: string;\n office_id: string;\n practice_id: string;\n practice_management_system: string;\n practice_management_system_refresh_date: string;\n practice_management_system_version: string;\n practice_name: string;\n secret_key: string;\n state: string;\n zip: string;\n};\n\n/**\n * Response from the authorized_practices endpoint\n */\nexport type SikkaAuthorizedPracticesResponse = {\n execution_time: string;\n items: SikkaAuthorizedPractice[];\n limit: string;\n offset: string;\n pagination: {\n current: string;\n first: string;\n last: string;\n next: string;\n previous: string;\n };\n total_count: string;\n};\n\n/**\n * App-level credentials (from env vars)\n */\nexport type SikkaAppCredentials = {\n appId: string;\n appKey: string;\n};\n\n/**\n * Credentials required to initialize the Sikka client for a specific office\n */\nexport type SikkaClientCredentials = {\n appId: string;\n appKey: string;\n officeId: string;\n secretKey: string;\n};\n\n/**\n * Configuration for the Sikka client\n */\nexport type SikkaClientConfig = {\n baseUrl?: string;\n credentials: SikkaClientCredentials;\n};\n\n// -----------------------------------------------------------------------------\n// Paginated Response Types\n\n/**\n * Generic paginated response from Sikka API\n */\nexport type SikkaPaginatedResponse<T> = {\n execution_time: string;\n items: T[];\n limit: string;\n offset: string;\n pagination: {\n current: string;\n first: string;\n last: string;\n next: string;\n previous: string;\n };\n total_count: string;\n};\n\n// -----------------------------------------------------------------------------\n// Patient Types\n\n/**\n * Sikka patient record\n */\nexport type SikkaPatient = {\n address_line1: string;\n address_line2: string;\n appointment_href: string;\n birthdate: string;\n cell: string;\n city: string;\n created_date: string;\n email: string;\n fee_no: string;\n first_visit: string;\n firstname: string;\n guarantor_first_name: string;\n guarantor_href: string;\n guarantor_id: string;\n guarantor_last_name: string;\n href: string;\n last_visit: string;\n lastname: string;\n middlename: string;\n other_referral: string;\n patient_id: string;\n patient_referral: string;\n practice_href: string;\n practice_id: string;\n preferred_communication_method: string;\n preferred_contact: string;\n preferred_name: string;\n primary_insurance_company_href: string;\n primary_insurance_company_id: string;\n primary_medical_insurance: string;\n primary_medical_insurance_id: string;\n primary_medical_relationship: string;\n primary_medical_subscriber_id: string;\n primary_relationship: string;\n provider_href: string;\n provider_id: string;\n referred_out: string;\n salutation: string;\n state: string;\n status: string;\n subscriber_id: string;\n zipcode: string;\n};\n\n/**\n * Parameters for listing patients\n */\nexport type SikkaPatientListParams = {\n birthdate?: string;\n firstname?: string;\n lastname?: string;\n limit?: number;\n offset?: number;\n patient_id?: string;\n};\n\n/**\n * Response from the patients endpoint\n */\nexport type SikkaPatientListResponse = SikkaPaginatedResponse<SikkaPatient>;\n\n// -----------------------------------------------------------------------------\n// Claim Types\n\n/**\n * Sikka claim record\n */\nexport type SikkaClaim = {\n bank_no: string;\n carrier_id: string;\n cheque_no: string;\n claim_channel: string;\n claim_description_href: string;\n claim_description_id: string;\n claim_payment_date: string;\n claim_sent_date: string;\n claim_sr_no: string;\n claim_status: string;\n creation_date: string;\n estimated_amount: string;\n guarantor_href: string;\n guarantor_id: string;\n href: string;\n insurance_company_href: string;\n insurance_company_id: string;\n insurance_company_name: string;\n note: string;\n on_hold_date: string;\n others: string;\n patient_href: string;\n patient_id: string;\n pay_to_provider: string;\n payer_id: string;\n payment_amount: string;\n practice_href: string;\n practice_id: string;\n preventive: string;\n primary_claim_id: string;\n primary_or_secondary: string;\n provider_href: string;\n provider_id: string;\n rendering_provider: string;\n resent_date: string;\n return_date: string;\n sent_claim_status: string;\n standard: string;\n total_billed_amount: string;\n total_paid_amount: string;\n tp: string;\n tracer: string;\n};\n\n/**\n * Parameters for listing claims\n */\nexport type SikkaClaimListParams = {\n claim_id?: string;\n end_date?: string;\n limit?: number;\n offset?: number;\n patient_id?: string;\n start_date?: string;\n status?: string;\n};\n\n/**\n * Response from the claims endpoint\n */\nexport type SikkaClaimListResponse = SikkaPaginatedResponse<SikkaClaim>;\n\n/**\n * Request body for updating a claim's status and/or note.\n * Must contain at least one of `status` or `note`.\n */\nexport type SikkaClaimUpdateRequest = {\n /**\n * The generic ID of the claim to update.\n * Used as a URL path parameter: PATCH /v4/claims/{claim_sr_no}\n */\n claim_sr_no: string;\n\n /**\n * The unique identifier for the practice.\n * Retrieve this using the Practices API.\n */\n practice_id: string;\n\n /**\n * Claim status. Only values accepted by the practice management software are valid.\n * Get valid statuses from the practice_variables API where service_name='Claim Status'.\n */\n status?: string;\n\n /**\n * Claim note. At least one of `status` or `note` must be provided.\n */\n note?: string;\n\n /**\n * Internal note for the claim.\n */\n internal_note?: string;\n\n /**\n * Date the claim was sent (format: yyyy-mm-dd).\n */\n date_sent?: string;\n\n /**\n * User who performed the update. Defaults to 'Sikkauser' if not provided.\n */\n user?: string;\n\n /**\n * Date the claim was resent (format: yyyy-mm-dd).\n */\n date_resent?: string;\n\n /**\n * Custom tracking status for OpenDental PMS only.\n * Check PMS settings via pms_general_settings API with\n * setting_name=ClaimTrackingStatusExcludesNone to determine if mandatory.\n * Get values from writeback_details API with category=CustomTrackStatusType\n * and writeback_type=claim_status.\n */\n custom_track_status?: string;\n\n /**\n * SPU check flag.\n */\n check_spu?: string;\n};\n\n/**\n * Raw API response from updating a claim.\n */\nexport type SikkaClaimUpdateResponse = {\n error_code: string;\n http_code: string;\n http_code_desc: string;\n long_message: string;\n more_information: string;\n short_message: string;\n};\n\n/**\n * Enriched result from claims.update() that includes\n * the parsed writeback tracking ID extracted from long_message.\n */\nexport type SikkaClaimUpdateResult = SikkaClaimUpdateResponse & {\n writeback_id: string | null;\n};\n\n// -----------------------------------------------------------------------------\n// Transaction Types\n\n/**\n * Transaction type in Sikka (Procedure = service line item, Payment = payment)\n */\nexport type SikkaTransactionType = 'Payment' | 'Procedure';\n\n/**\n * Sikka transaction record (represents both procedures and payments)\n */\nexport type SikkaTransaction = {\n amount: string;\n claim_href: string;\n claim_sr_no: string;\n created_by: string;\n cust_id: string;\n estimated_insurance_payment: string;\n guarantor_href: string;\n guarantor_id: string;\n href: string;\n insurance_payment: string;\n last_updated_by: string;\n note: string;\n patient_href: string;\n patient_id: string;\n payment_type: string;\n practice_href: string;\n practice_id: string;\n primary_insurance_estimate: string;\n procedure_code: string;\n procedure_description: string;\n provider_href: string;\n provider_id: string;\n quantity: string;\n rowhash: string;\n surface: string;\n tooth_from: string;\n tooth_to: string;\n transaction_date: string;\n transaction_entry_date: string;\n transaction_sr_no: string;\n transaction_type: SikkaTransactionType;\n};\n\n/**\n * Parameters for listing transactions\n */\nexport type SikkaTransactionListParams = {\n claim_sr_no?: string;\n limit?: number;\n offset?: number;\n patient_id?: string;\n transaction_type?: SikkaTransactionType;\n};\n\n/**\n * Response from the transactions endpoint\n */\nexport type SikkaTransactionListResponse =\n SikkaPaginatedResponse<SikkaTransaction>;\n\n// -----------------------------------------------------------------------------\n// Claim Payment Types\n\n/**\n * Payment mode for posting payments\n */\nexport type SikkaPaymentMode = 'Cash' | 'Check' | 'EFT';\n\n/**\n * Request body for posting a claim payment.\n * Uses pipe-delimited values for line item amounts when is_payment_by_procedure_code=true.\n */\nexport type SikkaClaimPaymentRequest = {\n /**\n * The generic ID of the claim for which you want to post the payment.\n */\n claim_sr_no: string;\n\n /**\n * The unique identifier for the practice.\n */\n practice_id: string;\n\n /**\n * The total payment amount (format: xx.xx).\n * If is_payment_by_procedure_code=true, use pipe-delimited values (e.g., \"100.00|50.00\").\n */\n payment_amount: string;\n\n /**\n * Boolean flag indicating if the payment is allocated by procedure code.\n * For Tracker, value should be true only as PMS does not support without procedure code.\n */\n is_payment_by_procedure_code: 'false' | 'true';\n\n /**\n * The date of the payment (format: yyyy-MM-dd).\n */\n claim_payment_date: string;\n\n /**\n * The method of payment.\n * Get valid modes from payment_types API with is_insurance_type=true.\n */\n payment_mode: SikkaPaymentMode;\n\n /**\n * The deductible amount (format: xx.xx). Pass \"0\" if no amount.\n * PMS-specific formats:\n * - Dentrix Enterprise/G6: pipe-delimited \"standard|preventive|others\" (e.g., \"0|0|0\")\n * - Dentrix Ascend: pipe-delimited \"major|preventive|basic|ortho\" (e.g., \"0|0|0|0\")\n * - Tracker: Not supported\n */\n deductible: string;\n\n /**\n * The write-off amount (format: xx.xx). Pass \"0\" if no amount.\n * If is_payment_by_procedure_code=true, use pipe-delimited values.\n * - Dentrix Ascend: write_off not allowed for is_payment_by_procedure_code=false, pass \"0\"\n * - Tracker: Not supported\n */\n write_off: string;\n\n /**\n * The specific transaction ID(s) associated with the payment.\n * Required only if is_payment_by_procedure_code=true.\n * For multiple procedures, use pipe-delimited values (e.g., \"123|124|125\").\n */\n transaction_sr_no?: string;\n\n /**\n * Payment notes/remarks.\n * Should not contain special characters (<, >, &, ,).\n */\n note?: string;\n\n /**\n * The credit adjustment type ID.\n * Get from payment_types API with is_adjustment_type=true.\n * Supported only for Dentrix Enterprise, Dentrix Ascend, and Dentrix G6+.\n * Required if write_off value is negative in Dentrix Enterprise/Ascend.\n */\n adjustment_type?: string;\n\n /**\n * The provider ID for the credit adjustment.\n * Supported only for Dentrix G6+.\n * Must match count of write_off values (pipe-delimited).\n */\n credit_adjustment_provider?: string;\n\n /**\n * Boolean to trigger a debit adjustment write-back.\n * Not supported for Tracker.\n */\n is_debit_adjustment_writeback?: 'false' | 'true';\n\n /**\n * The amount for the debit adjustment (format: xx.xx).\n * Required only if performing debit adjustment write-back.\n * Must be positive (Dentrix G6+ allows 0).\n */\n debit_adjustment_amount?: string;\n\n /**\n * Date of the debit adjustment (format: yyyy-MM-dd).\n * Required for Open Dental PMS if performing debit adjustment write-back.\n * Not supported for Dentrix Ascend.\n */\n debit_adjustment_date?: string;\n\n /**\n * The debit adjustment type ID.\n * Get from payment_types API with is_debit_adjustment_type=true.\n * Required for Open Dental and Dentrix Ascend if performing debit adjustment write-back.\n */\n debit_adjustment_type?: string;\n\n /**\n * Notes for the debit adjustment.\n * Must not contain special characters (<, >, &, ,).\n * Not supported for Dentrix Ascend.\n */\n debit_adjustment_note?: string;\n\n /**\n * Boolean for procedure-level debit adjustments.\n * Supported for Open Dental only.\n * If true, debit_adjustment_amount, debit_adjustment_transaction_sr_no,\n * debit_adjustment_provider, and debit_adjustment_type must have matching counts (pipe-delimited).\n */\n is_debit_adjustment_by_procedure?: 'false' | 'true';\n\n /**\n * Transaction ID(s) for the debit adjustment.\n * Required if is_debit_adjustment_by_procedure=true.\n * Supported for Open Dental only.\n */\n debit_adjustment_transaction_sr_no?: string;\n\n /**\n * The provider ID for the debit adjustment.\n * Required for Open Dental if performing debit adjustment write-back.\n * For Dentrix G6+, must match count of debit_adjustment_amount (pipe-delimited).\n */\n debit_adjustment_provider?: string;\n\n /**\n * The cheque number.\n * Mandatory if payment mode is Cheque for Tracker.\n */\n cheque_no?: string;\n\n /**\n * The bank number.\n */\n bank_no?: string;\n\n /**\n * The name of the bank.\n * Mandatory for Tracker.\n * Get using writeback_details API with category=bank name and writeback_type=claim_payment.\n */\n bank_name?: string;\n\n /**\n * The direct deposit reference number.\n * Mandatory if payment mode is Direct Deposit for Tracker.\n */\n direct_deposit_number?: string;\n\n /**\n * The provider ID.\n * Get using providers API.\n * Supported only for Tracker and Dentrix PMS.\n */\n provider_id?: string;\n};\n\n/**\n * Raw API response from posting a claim payment.\n * The Sikka API returns a 201 with writeback tracking fields rather than\n * the final PMS result, since the actual writeback is asynchronous.\n */\nexport type SikkaClaimPaymentResponse = {\n error_code: string;\n http_code: string;\n http_code_desc: string;\n long_message: string;\n more_information: string;\n short_message: string;\n};\n\n/**\n * Enriched result from claimPayment.post() that includes\n * the parsed writeback tracking ID extracted from long_message.\n */\nexport type SikkaClaimPaymentResult = SikkaClaimPaymentResponse & {\n writeback_id: string | null;\n};\n\n// -----------------------------------------------------------------------------\n// Writeback Status Types\n\n/**\n * A single writeback status record returned by the writeback_status endpoint.\n * Represents the state of an asynchronous PMS writeback operation.\n */\nexport type SikkaWritebackStatusItem = {\n completed_time: string;\n current_status: string;\n has_error: string;\n id: string;\n is_completed: string;\n request_time: string;\n result: string;\n status: string;\n};\n\n/**\n * Response from GET /v4/writeback_status\n */\nexport type SikkaWritebackStatusResponse = {\n items: SikkaWritebackStatusItem[];\n};\n\n// -----------------------------------------------------------------------------\n// Payment Type Types\n\n/**\n * Sikka payment type record\n */\nexport type SikkaPaymentType = {\n code: string;\n description: string;\n href: string;\n practice_href: string;\n practice_id: string;\n};\n\n/**\n * Parameters for listing payment types\n */\nexport type SikkaPaymentTypeListParams = {\n /**\n * Filter by payment type code in practice management system\n */\n code?: string;\n /**\n * Customer ID of office\n */\n customer_id?: string;\n /**\n * If true, returns Credit Adjustment Types only\n */\n is_adjustment_type?: boolean;\n /**\n * If true, returns Payment Types which require credit card details\n * for POST transaction (Planet DDS PMS only)\n */\n are_credit_card_details_required?: boolean;\n /**\n * If true, returns Debit Adjustment Types only\n */\n is_debit_adjustment_type?: boolean;\n /**\n * If true, returns Insurance Payment Types only\n */\n is_insurance_type?: boolean;\n /**\n * Results per page\n */\n limit?: number;\n /**\n * Pagination offset\n */\n offset?: number;\n /**\n * Practice ID of office\n */\n practice_id?: string;\n};\n\n/**\n * Response from the payment_types endpoint\n */\nexport type SikkaPaymentTypeListResponse =\n SikkaPaginatedResponse<SikkaPaymentType>;\n\n// -----------------------------------------------------------------------------\n// Practice Variable Types\n\n/**\n * Sikka practice variable record.\n * Represents configurable values like appointment statuses, claim statuses,\n * and patient statuses from the practice management system.\n */\nexport type SikkaPracticeVariable = {\n description: string;\n href: string;\n practice_href: string;\n practice_id: string;\n service_name: string;\n value: string;\n};\n\n/**\n * Parameters for listing practice variables\n */\nexport type SikkaPracticeVariableListParams = {\n /**\n * Results per page\n */\n limit?: number;\n /**\n * Pagination offset\n */\n offset?: number;\n /**\n * Practice ID of office\n */\n practice_id?: string;\n /**\n * Service item as per the response\n */\n service_item?: string;\n /**\n * Service name filter (e.g. \"Claim Status\", \"Appointment Status\")\n */\n service_name?: string;\n};\n\n/**\n * Response from the practice_variables endpoint\n */\nexport type SikkaPracticeVariableListResponse =\n SikkaPaginatedResponse<SikkaPracticeVariable>;\n\n// -----------------------------------------------------------------------------\n// Insurance Company Details\n// -----------------------------------------------------------------------------\n\n/**\n * Sikka insurance company detail record.\n * Represents an insurance company associated with a practice.\n */\nexport type SikkaInsuranceCompanyDetail = {\n address_line1: string;\n beeper: string;\n cell: string;\n city: string;\n contact: string;\n default_plan: string;\n email1: string;\n email2: string;\n era_capable: string;\n ext1: string;\n ext2: string;\n ext3: string;\n fax1: string;\n fax2: string;\n href: string;\n insurance_company_id: string;\n insurance_company_name: string;\n notes: string;\n payer_id: string;\n payer_type: string;\n phone1: string;\n phone2: string;\n phone3: string;\n practice_href: string;\n practice_id: string;\n provider_practice_id: string;\n state: string;\n trojan_id: string;\n web_link: string;\n zipcode: string;\n};\n\n/**\n * Parameters for listing insurance company details\n */\nexport type SikkaInsuranceCompanyDetailListParams = {\n /**\n * Results per page\n */\n limit?: number;\n /**\n * Pagination offset\n */\n offset?: number;\n /**\n * Practice ID of office\n */\n practice_id?: string;\n /**\n * Insurance company ID in practice management system\n */\n insurance_company_id?: string;\n /**\n * Sort order for results\n */\n sort_by?: 'insurance_company_id' | 'insurance_company_name' | 'practice_id';\n};\n\n/**\n * Response from the insurance_company_details endpoint\n */\nexport type SikkaInsuranceCompanyDetailListResponse =\n SikkaPaginatedResponse<SikkaInsuranceCompanyDetail>;\n\n// -----------------------------------------------------------------------------\n// Subscribers\n// -----------------------------------------------------------------------------\n\n/**\n * Sikka subscriber record.\n * Represents insurance subscriber data associated with a patient in a practice.\n */\nexport type SikkaSubscriber = {\n address_line1: string;\n address_line2: string;\n birthdate: string;\n city: string;\n employer_name: string;\n family_deductible_reamining: string;\n firstname: string;\n gender: string;\n href: string;\n identification_type: string;\n individual_deductible_remaining: string;\n individual_used: string;\n individual_used_treatment_plan: string;\n insurance_company_href: string;\n insurance_company_id: string;\n insurance_effective_date: string;\n lastname: string;\n middlename: string;\n ortho_used: string;\n ortho_used_treatment_plan: string;\n patient_href: string;\n patient_id: string;\n patient_relation: string;\n practice_href: string;\n practice_id: string;\n salutation: string;\n state: string;\n subscriber_id: string;\n type: string;\n zipcode: string;\n};\n\n/**\n * Parameters for listing subscribers\n */\nexport type SikkaSubscriberListParams = {\n /**\n * Results per page\n */\n limit?: number;\n /**\n * Pagination offset\n */\n offset?: number;\n /**\n * Patient ID from practice\n */\n patient_id?: string;\n /**\n * Practice ID of office\n */\n practice_id?: string;\n /**\n * Subscriber ID of office\n */\n subscriber_id?: string;\n /**\n * Sort order for results\n */\n sort_by?: 'patient_id' | 'practice_id';\n};\n\n/**\n * Response from the subscribers endpoint\n */\nexport type SikkaSubscriberListResponse =\n SikkaPaginatedResponse<SikkaSubscriber>;\n"]}
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/lib/types.ts"],"names":[],"mappings":"","sourcesContent":["/**\n * Sikka SDK Types\n *\n * Types for interacting with the Sikka API (https://api.sikkasoft.com)\n */\n\n/**\n * Grant type for authentication\n */\nexport type SikkaGrantType = 'refresh_key' | 'request_key';\n\n/**\n * Request body for obtaining a request key\n */\nexport type SikkaRequestKeyRequest = {\n app_id: string;\n app_key: string;\n grant_type: SikkaGrantType;\n office_id?: string;\n refresh_key?: string;\n secret_key?: string;\n};\n\n/**\n * Response from the request_key endpoint\n */\nexport type SikkaRequestKeyResponse = {\n domain: string;\n end_time: string;\n expires_in: string;\n href: string;\n issued_to: string;\n refresh_key: string;\n request_count: string;\n request_key: string;\n scope: string;\n start_time: string;\n status: string;\n};\n\n/**\n * Sikka API error response\n */\nexport type SikkaApiError = {\n error?: string;\n error_description?: string;\n message?: string;\n};\n\n/**\n * App-level credentials (from env vars)\n */\nexport type SikkaAppCredentials = {\n appId: string;\n appKey: string;\n};\n\n/**\n * Credentials required to initialize the Sikka client for a specific office\n */\nexport type SikkaClientCredentials = {\n appId: string;\n appKey: string;\n officeId: string;\n secretKey: string;\n};\n\n/**\n * Configuration for the Sikka client\n */\nexport type SikkaClientConfig = {\n baseUrl?: string;\n credentials: SikkaClientCredentials;\n};\n\n// -----------------------------------------------------------------------------\n// Paginated Response Types\n\n/**\n * Generic paginated response from Sikka API\n */\nexport type SikkaPaginatedResponse<T> = {\n execution_time: string;\n items: T[];\n limit: string;\n offset: string;\n pagination: {\n current: string;\n first: string;\n last: string;\n next: string;\n previous: string;\n };\n total_count: string;\n};\n\n// -----------------------------------------------------------------------------\n// Patient Types\n\n/**\n * Sikka patient record\n */\nexport type SikkaPatient = {\n address_line1: string;\n address_line2: string;\n appointment_href: string;\n birthdate: string;\n cell: string;\n city: string;\n created_date: string;\n email: string;\n fee_no: string;\n first_visit: string;\n firstname: string;\n guarantor_first_name: string;\n guarantor_href: string;\n guarantor_id: string;\n guarantor_last_name: string;\n href: string;\n last_visit: string;\n lastname: string;\n middlename: string;\n other_referral: string;\n patient_id: string;\n patient_referral: string;\n practice_href: string;\n practice_id: string;\n preferred_communication_method: string;\n preferred_contact: string;\n preferred_name: string;\n primary_insurance_company_href: string;\n primary_insurance_company_id: string;\n primary_medical_insurance: string;\n primary_medical_insurance_id: string;\n primary_medical_relationship: string;\n primary_medical_subscriber_id: string;\n primary_relationship: string;\n provider_href: string;\n provider_id: string;\n referred_out: string;\n salutation: string;\n state: string;\n status: string;\n subscriber_id: string;\n zipcode: string;\n};\n\n/**\n * Parameters for listing patients\n */\nexport type SikkaPatientListParams = {\n birthdate?: string;\n firstname?: string;\n lastname?: string;\n limit?: number;\n offset?: number;\n patient_id?: string;\n};\n\n/**\n * Response from the patients endpoint\n */\nexport type SikkaPatientListResponse = SikkaPaginatedResponse<SikkaPatient>;\n\n// -----------------------------------------------------------------------------\n// Claim Types\n\n/**\n * Sikka claim record\n */\nexport type SikkaClaim = {\n bank_no: string;\n carrier_id: string;\n cheque_no: string;\n claim_channel: string;\n claim_description_href: string;\n claim_description_id: string;\n claim_payment_date: string;\n claim_sent_date: string;\n claim_sr_no: string;\n claim_status: string;\n creation_date: string;\n estimated_amount: string;\n guarantor_href: string;\n guarantor_id: string;\n href: string;\n insurance_company_href: string;\n insurance_company_id: string;\n insurance_company_name: string;\n note: string;\n on_hold_date: string;\n others: string;\n patient_href: string;\n patient_id: string;\n pay_to_provider: string;\n payer_id: string;\n payment_amount: string;\n practice_href: string;\n practice_id: string;\n preventive: string;\n primary_claim_id: string;\n primary_or_secondary: string;\n provider_href: string;\n provider_id: string;\n rendering_provider: string;\n resent_date: string;\n return_date: string;\n sent_claim_status: string;\n standard: string;\n total_billed_amount: string;\n total_paid_amount: string;\n tp: string;\n tracer: string;\n};\n\n/**\n * Parameters for listing claims\n */\nexport type SikkaClaimListParams = {\n claim_id?: string;\n end_date?: string;\n limit?: number;\n offset?: number;\n patient_id?: string;\n start_date?: string;\n status?: string;\n};\n\n/**\n * Response from the claims endpoint\n */\nexport type SikkaClaimListResponse = SikkaPaginatedResponse<SikkaClaim>;\n\n/**\n * Request body for updating a claim's status and/or note.\n * Must contain at least one of `status` or `note`.\n */\nexport type SikkaClaimUpdateRequest = {\n /**\n * The generic ID of the claim to update.\n * Used as a URL path parameter: PATCH /v4/claims/{claim_sr_no}\n */\n claim_sr_no: string;\n\n /**\n * The unique identifier for the practice.\n * Retrieve this using the Practices API.\n */\n practice_id: string;\n\n /**\n * Claim status. Only values accepted by the practice management software are valid.\n * Get valid statuses from the practice_variables API where service_name='Claim Status'.\n */\n status?: string;\n\n /**\n * Claim note. At least one of `status` or `note` must be provided.\n */\n note?: string;\n\n /**\n * Internal note for the claim.\n */\n internal_note?: string;\n\n /**\n * Date the claim was sent (format: yyyy-mm-dd).\n */\n date_sent?: string;\n\n /**\n * User who performed the update. Defaults to 'Sikkauser' if not provided.\n */\n user?: string;\n\n /**\n * Date the claim was resent (format: yyyy-mm-dd).\n */\n date_resent?: string;\n\n /**\n * Custom tracking status for OpenDental PMS only.\n * Check PMS settings via pms_general_settings API with\n * setting_name=ClaimTrackingStatusExcludesNone to determine if mandatory.\n * Get values from writeback_details API with category=CustomTrackStatusType\n * and writeback_type=claim_status.\n */\n custom_track_status?: string;\n\n /**\n * SPU check flag.\n */\n check_spu?: string;\n};\n\n/**\n * Raw API response from updating a claim.\n */\nexport type SikkaClaimUpdateResponse = {\n error_code: string;\n http_code: string;\n http_code_desc: string;\n long_message: string;\n more_information: string;\n short_message: string;\n};\n\n/**\n * Enriched result from claims.update() that includes\n * the parsed writeback tracking ID extracted from long_message.\n */\nexport type SikkaClaimUpdateResult = SikkaClaimUpdateResponse & {\n writeback_id: string | null;\n};\n\n// -----------------------------------------------------------------------------\n// Transaction Types\n\n/**\n * Transaction type in Sikka (Procedure = service line item, Payment = payment)\n */\nexport type SikkaTransactionType = 'Payment' | 'Procedure';\n\n/**\n * Sikka transaction record (represents both procedures and payments)\n */\nexport type SikkaTransaction = {\n amount: string;\n claim_href: string;\n claim_sr_no: string;\n created_by: string;\n cust_id: string;\n estimated_insurance_payment: string;\n guarantor_href: string;\n guarantor_id: string;\n href: string;\n insurance_payment: string;\n last_updated_by: string;\n note: string;\n patient_href: string;\n patient_id: string;\n payment_type: string;\n practice_href: string;\n practice_id: string;\n primary_insurance_estimate: string;\n procedure_code: string;\n procedure_description: string;\n provider_href: string;\n provider_id: string;\n quantity: string;\n rowhash: string;\n surface: string;\n tooth_from: string;\n tooth_to: string;\n transaction_date: string;\n transaction_entry_date: string;\n transaction_sr_no: string;\n transaction_type: SikkaTransactionType;\n};\n\n/**\n * Parameters for listing transactions\n */\nexport type SikkaTransactionListParams = {\n claim_sr_no?: string;\n limit?: number;\n offset?: number;\n patient_id?: string;\n transaction_type?: SikkaTransactionType;\n};\n\n/**\n * Response from the transactions endpoint\n */\nexport type SikkaTransactionListResponse =\n SikkaPaginatedResponse<SikkaTransaction>;\n\n// -----------------------------------------------------------------------------\n// Claim Payment Types\n\n/**\n * Payment mode for posting payments\n */\nexport type SikkaPaymentMode = 'Cash' | 'Check' | 'EFT';\n\n/**\n * Request body for posting a claim payment.\n * Uses pipe-delimited values for line item amounts when is_payment_by_procedure_code=true.\n */\nexport type SikkaClaimPaymentRequest = {\n /**\n * The generic ID of the claim for which you want to post the payment.\n */\n claim_sr_no: string;\n\n /**\n * The unique identifier for the practice.\n */\n practice_id: string;\n\n /**\n * The total payment amount (format: xx.xx).\n * If is_payment_by_procedure_code=true, use pipe-delimited values (e.g., \"100.00|50.00\").\n */\n payment_amount: string;\n\n /**\n * Boolean flag indicating if the payment is allocated by procedure code.\n * For Tracker, value should be true only as PMS does not support without procedure code.\n */\n is_payment_by_procedure_code: 'false' | 'true';\n\n /**\n * The date of the payment (format: yyyy-MM-dd).\n */\n claim_payment_date: string;\n\n /**\n * The method of payment.\n * Get valid modes from payment_types API with is_insurance_type=true.\n */\n payment_mode: SikkaPaymentMode;\n\n /**\n * The deductible amount (format: xx.xx). Pass \"0\" if no amount.\n * PMS-specific formats:\n * - Dentrix Enterprise/G6: pipe-delimited \"standard|preventive|others\" (e.g., \"0|0|0\")\n * - Dentrix Ascend: pipe-delimited \"major|preventive|basic|ortho\" (e.g., \"0|0|0|0\")\n * - Tracker: Not supported\n */\n deductible: string;\n\n /**\n * The write-off amount (format: xx.xx). Pass \"0\" if no amount.\n * If is_payment_by_procedure_code=true, use pipe-delimited values.\n * - Dentrix Ascend: write_off not allowed for is_payment_by_procedure_code=false, pass \"0\"\n * - Tracker: Not supported\n */\n write_off: string;\n\n /**\n * The specific transaction ID(s) associated with the payment.\n * Required only if is_payment_by_procedure_code=true.\n * For multiple procedures, use pipe-delimited values (e.g., \"123|124|125\").\n */\n transaction_sr_no?: string;\n\n /**\n * Payment notes/remarks.\n * Should not contain special characters (<, >, &, ,).\n */\n note?: string;\n\n /**\n * The credit adjustment type ID.\n * Get from payment_types API with is_adjustment_type=true.\n * Supported only for Dentrix Enterprise, Dentrix Ascend, and Dentrix G6+.\n * Required if write_off value is negative in Dentrix Enterprise/Ascend.\n */\n adjustment_type?: string;\n\n /**\n * The provider ID for the credit adjustment.\n * Supported only for Dentrix G6+.\n * Must match count of write_off values (pipe-delimited).\n */\n credit_adjustment_provider?: string;\n\n /**\n * Boolean to trigger a debit adjustment write-back.\n * Not supported for Tracker.\n */\n is_debit_adjustment_writeback?: 'false' | 'true';\n\n /**\n * The amount for the debit adjustment (format: xx.xx).\n * Required only if performing debit adjustment write-back.\n * Must be positive (Dentrix G6+ allows 0).\n */\n debit_adjustment_amount?: string;\n\n /**\n * Date of the debit adjustment (format: yyyy-MM-dd).\n * Required for Open Dental PMS if performing debit adjustment write-back.\n * Not supported for Dentrix Ascend.\n */\n debit_adjustment_date?: string;\n\n /**\n * The debit adjustment type ID.\n * Get from payment_types API with is_debit_adjustment_type=true.\n * Required for Open Dental and Dentrix Ascend if performing debit adjustment write-back.\n */\n debit_adjustment_type?: string;\n\n /**\n * Notes for the debit adjustment.\n * Must not contain special characters (<, >, &, ,).\n * Not supported for Dentrix Ascend.\n */\n debit_adjustment_note?: string;\n\n /**\n * Boolean for procedure-level debit adjustments.\n * Supported for Open Dental only.\n * If true, debit_adjustment_amount, debit_adjustment_transaction_sr_no,\n * debit_adjustment_provider, and debit_adjustment_type must have matching counts (pipe-delimited).\n */\n is_debit_adjustment_by_procedure?: 'false' | 'true';\n\n /**\n * Transaction ID(s) for the debit adjustment.\n * Required if is_debit_adjustment_by_procedure=true.\n * Supported for Open Dental only.\n */\n debit_adjustment_transaction_sr_no?: string;\n\n /**\n * The provider ID for the debit adjustment.\n * Required for Open Dental if performing debit adjustment write-back.\n * For Dentrix G6+, must match count of debit_adjustment_amount (pipe-delimited).\n */\n debit_adjustment_provider?: string;\n\n /**\n * The cheque number.\n * Mandatory if payment mode is Cheque for Tracker.\n */\n cheque_no?: string;\n\n /**\n * The bank number.\n */\n bank_no?: string;\n\n /**\n * The name of the bank.\n * Mandatory for Tracker.\n * Get using writeback_details API with category=bank name and writeback_type=claim_payment.\n */\n bank_name?: string;\n\n /**\n * The direct deposit reference number.\n * Mandatory if payment mode is Direct Deposit for Tracker.\n */\n direct_deposit_number?: string;\n\n /**\n * The provider ID.\n * Get using providers API.\n * Supported only for Tracker and Dentrix PMS.\n */\n provider_id?: string;\n};\n\n/**\n * Raw API response from posting a claim payment.\n * The Sikka API returns a 201 with writeback tracking fields rather than\n * the final PMS result, since the actual writeback is asynchronous.\n */\nexport type SikkaClaimPaymentResponse = {\n error_code: string;\n http_code: string;\n http_code_desc: string;\n long_message: string;\n more_information: string;\n short_message: string;\n};\n\n/**\n * Enriched result from claimPayment.post() that includes\n * the parsed writeback tracking ID extracted from long_message.\n */\nexport type SikkaClaimPaymentResult = SikkaClaimPaymentResponse & {\n writeback_id: string | null;\n};\n\n// -----------------------------------------------------------------------------\n// Writeback Status Types\n\n/**\n * A single writeback status record returned by the writeback_status endpoint.\n * Represents the state of an asynchronous PMS writeback operation.\n */\nexport type SikkaWritebackStatusItem = {\n completed_time: string;\n current_status: string;\n has_error: string;\n id: string;\n is_completed: string;\n request_time: string;\n result: string;\n status: string;\n};\n\n/**\n * Response from GET /v4/writeback_status\n */\nexport type SikkaWritebackStatusResponse = {\n items: SikkaWritebackStatusItem[];\n};\n\n// -----------------------------------------------------------------------------\n// Payment Type Types\n\n/**\n * Sikka payment type record\n */\nexport type SikkaPaymentType = {\n code: string;\n description: string;\n href: string;\n practice_href: string;\n practice_id: string;\n};\n\n/**\n * Parameters for listing payment types\n */\nexport type SikkaPaymentTypeListParams = {\n /**\n * Filter by payment type code in practice management system\n */\n code?: string;\n /**\n * Customer ID of office\n */\n customer_id?: string;\n /**\n * If true, returns Credit Adjustment Types only\n */\n is_adjustment_type?: boolean;\n /**\n * If true, returns Payment Types which require credit card details\n * for POST transaction (Planet DDS PMS only)\n */\n are_credit_card_details_required?: boolean;\n /**\n * If true, returns Debit Adjustment Types only\n */\n is_debit_adjustment_type?: boolean;\n /**\n * If true, returns Insurance Payment Types only\n */\n is_insurance_type?: boolean;\n /**\n * Results per page\n */\n limit?: number;\n /**\n * Pagination offset\n */\n offset?: number;\n /**\n * Practice ID of office\n */\n practice_id?: string;\n};\n\n/**\n * Response from the payment_types endpoint\n */\nexport type SikkaPaymentTypeListResponse =\n SikkaPaginatedResponse<SikkaPaymentType>;\n\n// -----------------------------------------------------------------------------\n// Practice Variable Types\n\n/**\n * Sikka practice variable record.\n * Represents configurable values like appointment statuses, claim statuses,\n * and patient statuses from the practice management system.\n */\nexport type SikkaPracticeVariable = {\n description: string;\n href: string;\n practice_href: string;\n practice_id: string;\n service_name: string;\n value: string;\n};\n\n/**\n * Parameters for listing practice variables\n */\nexport type SikkaPracticeVariableListParams = {\n /**\n * Results per page\n */\n limit?: number;\n /**\n * Pagination offset\n */\n offset?: number;\n /**\n * Practice ID of office\n */\n practice_id?: string;\n /**\n * Service item as per the response\n */\n service_item?: string;\n /**\n * Service name filter (e.g. \"Claim Status\", \"Appointment Status\")\n */\n service_name?: string;\n};\n\n/**\n * Response from the practice_variables endpoint\n */\nexport type SikkaPracticeVariableListResponse =\n SikkaPaginatedResponse<SikkaPracticeVariable>;\n\n// -----------------------------------------------------------------------------\n// Insurance Company Details\n// -----------------------------------------------------------------------------\n\n/**\n * Sikka insurance company detail record.\n * Represents an insurance company associated with a practice.\n */\nexport type SikkaInsuranceCompanyDetail = {\n address_line1: string;\n beeper: string;\n cell: string;\n city: string;\n contact: string;\n default_plan: string;\n email1: string;\n email2: string;\n era_capable: string;\n ext1: string;\n ext2: string;\n ext3: string;\n fax1: string;\n fax2: string;\n href: string;\n insurance_company_id: string;\n insurance_company_name: string;\n notes: string;\n payer_id: string;\n payer_type: string;\n phone1: string;\n phone2: string;\n phone3: string;\n practice_href: string;\n practice_id: string;\n provider_practice_id: string;\n state: string;\n trojan_id: string;\n web_link: string;\n zipcode: string;\n};\n\n/**\n * Parameters for listing insurance company details\n */\nexport type SikkaInsuranceCompanyDetailListParams = {\n /**\n * Results per page\n */\n limit?: number;\n /**\n * Pagination offset\n */\n offset?: number;\n /**\n * Practice ID of office\n */\n practice_id?: string;\n /**\n * Insurance company ID in practice management system\n */\n insurance_company_id?: string;\n /**\n * Sort order for results\n */\n sort_by?: 'insurance_company_id' | 'insurance_company_name' | 'practice_id';\n};\n\n/**\n * Response from the insurance_company_details endpoint\n */\nexport type SikkaInsuranceCompanyDetailListResponse =\n SikkaPaginatedResponse<SikkaInsuranceCompanyDetail>;\n\n// -----------------------------------------------------------------------------\n// Subscribers\n// -----------------------------------------------------------------------------\n\n/**\n * Sikka subscriber record.\n * Represents insurance subscriber data associated with a patient in a practice.\n */\nexport type SikkaSubscriber = {\n address_line1: string;\n address_line2: string;\n birthdate: string;\n city: string;\n employer_name: string;\n family_deductible_reamining: string;\n firstname: string;\n gender: string;\n href: string;\n identification_type: string;\n individual_deductible_remaining: string;\n individual_used: string;\n individual_used_treatment_plan: string;\n insurance_company_href: string;\n insurance_company_id: string;\n insurance_effective_date: string;\n lastname: string;\n middlename: string;\n ortho_used: string;\n ortho_used_treatment_plan: string;\n patient_href: string;\n patient_id: string;\n patient_relation: string;\n practice_href: string;\n practice_id: string;\n salutation: string;\n state: string;\n subscriber_id: string;\n type: string;\n zipcode: string;\n};\n\n/**\n * Parameters for listing subscribers\n */\nexport type SikkaSubscriberListParams = {\n /**\n * Results per page\n */\n limit?: number;\n /**\n * Pagination offset\n */\n offset?: number;\n /**\n * Patient ID from practice\n */\n patient_id?: string;\n /**\n * Practice ID of office\n */\n practice_id?: string;\n /**\n * Subscriber ID of office\n */\n subscriber_id?: string;\n /**\n * Sort order for results\n */\n sort_by?: 'patient_id' | 'practice_id';\n};\n\n/**\n * Response from the subscribers endpoint\n */\nexport type SikkaSubscriberListResponse =\n SikkaPaginatedResponse<SikkaSubscriber>;\n\n// -----------------------------------------------------------------------------\n// Authorized Practices\n// -----------------------------------------------------------------------------\n\n/**\n * Sikka authorized practice record.\n * Represents a practice authorized for your app, including the Sikka practice\n * utility last refresh and data insert times.\n *\n * IMPORTANT: `practice_id` is NOT unique across offices — the live API can\n * return the same `practice_id` (e.g. \"1\") for every authorized office. Use\n * `office_id` (e.g. \"D13303\") as the unique identifier for a practice/office.\n *\n * Values such as `practice_management_system` are returned RAW from the\n * provider and are inconsistent in case/spelling across records (e.g.\n * \"Opendental\" vs \"OpenDental\"). The SDK does not normalize them; callers are\n * responsible for any normalization.\n */\nexport type SikkaAuthorizedPractice = {\n address: string;\n city: string;\n data_insert_date: string;\n data_synchronization_date: string;\n /**\n * Difference in minutes between the last PMS refresh and data insert.\n * May be absent on some records.\n */\n difference_in_minutes?: string;\n domain: string;\n /**\n * Email associated with the office. May be absent on some records.\n */\n email?: string;\n /**\n * Financial system name. May be absent for practices without a financial\n * system integration.\n */\n financial_system?: string;\n financial_system_refresh_date?: string;\n financial_system_version?: string;\n href: string;\n /**\n * Unique identifier for the office (e.g. \"D13303\"). Prefer this over\n * `practice_id`, which is NOT unique across offices.\n */\n office_id: string;\n partner_id?: string;\n /**\n * NOT unique across offices — the live API can return the same value (e.g.\n * \"1\") for multiple offices. Use `office_id` as the unique identifier.\n */\n practice_id: string;\n /**\n * Raw practice management system name from the provider. Inconsistent in\n * case/spelling (e.g. \"Opendental\" vs \"OpenDental\"); not normalized.\n */\n practice_management_system: string;\n practice_management_system_refresh_date: string;\n practice_management_system_refresh_date_time_zone?: string;\n practice_management_system_refresh_date_time_zone_utc_offset?: string;\n practice_management_system_version: string;\n practice_name: string;\n secret_key: string;\n state: string;\n zip: string;\n};\n\n/**\n * Parameters for listing authorized practices\n */\nexport type SikkaAuthorizedPracticeListParams = {\n /**\n * Financial system\n */\n financial_system?: string;\n /**\n * Financial system version\n */\n financial_system_version?: string;\n /**\n * Results per page\n */\n limit?: number;\n /**\n * Pagination offset\n */\n offset?: number;\n /**\n * Practice ID\n */\n practice_id?: string;\n /**\n * Practice management system\n */\n practice_management_system?: string;\n /**\n * Practice management system refresh date time zone\n */\n practice_management_system_refresh_date_time_zone?: string;\n /**\n * Practice management system version\n */\n practice_management_system_version?: string;\n /**\n * Practice name\n */\n practice_name?: string;\n /**\n * value should be 'all'. API returns by default practice id 1.\n * Use this parameter to get all practices.\n */\n show?: 'all';\n /**\n * Sort order for results\n */\n sort_by?: 'office_id' | 'practice_id';\n};\n\n/**\n * Response from the authorized_practices endpoint\n */\nexport type SikkaAuthorizedPracticeListResponse =\n SikkaPaginatedResponse<SikkaAuthorizedPractice>;\n"]}
|
|
@@ -1,5 +1,9 @@
|
|
|
1
|
-
import { type SikkaClaim, type SikkaClaimListParams, type SikkaClaimPaymentRequest, type SikkaClaimPaymentResult, type SikkaClaimUpdateRequest, type SikkaClaimUpdateResult, type SikkaClientConfig, type SikkaClientCredentials, type SikkaInsuranceCompanyDetail, type SikkaInsuranceCompanyDetailListParams, type SikkaPatient, type SikkaPatientListParams, type SikkaPaymentType, type SikkaPaymentTypeListParams, type SikkaPracticeVariable, type SikkaPracticeVariableListParams, type SikkaSubscriber, type SikkaSubscriberListParams, type SikkaTransaction, type SikkaTransactionListParams, type SikkaWritebackStatusItem } from './types.js';
|
|
1
|
+
import { type SikkaAuthorizedPractice, type SikkaAuthorizedPracticeListParams, type SikkaClaim, type SikkaClaimListParams, type SikkaClaimPaymentRequest, type SikkaClaimPaymentResult, type SikkaClaimUpdateRequest, type SikkaClaimUpdateResult, type SikkaClientConfig, type SikkaClientCredentials, type SikkaInsuranceCompanyDetail, type SikkaInsuranceCompanyDetailListParams, type SikkaPatient, type SikkaPatientListParams, type SikkaPaymentType, type SikkaPaymentTypeListParams, type SikkaPracticeVariable, type SikkaPracticeVariableListParams, type SikkaSubscriber, type SikkaSubscriberListParams, type SikkaTransaction, type SikkaTransactionListParams, type SikkaWritebackStatusItem } from './types.js';
|
|
2
2
|
export declare class SikkaClient {
|
|
3
|
+
readonly authorizedPractices: {
|
|
4
|
+
getByOfficeId: (officeId: string) => Promise<SikkaAuthorizedPractice | null>;
|
|
5
|
+
list: (params?: SikkaAuthorizedPracticeListParams) => Promise<SikkaAuthorizedPractice[]>;
|
|
6
|
+
};
|
|
3
7
|
readonly claimPayment: {
|
|
4
8
|
post: (request: SikkaClaimPaymentRequest) => Promise<SikkaClaimPaymentResult>;
|
|
5
9
|
};
|
|
@@ -35,6 +39,7 @@ export declare class SikkaClient {
|
|
|
35
39
|
private requestKey;
|
|
36
40
|
private requestKeyExpiresAt;
|
|
37
41
|
constructor(config: SikkaClientConfig);
|
|
42
|
+
appAuthGet<T>(endpoint: string, params?: Record<string, unknown>): Promise<T>;
|
|
38
43
|
authenticate(): Promise<void>;
|
|
39
44
|
clearAuth(): void;
|
|
40
45
|
ensureAuthenticated(): Promise<void>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../../src/lib/client.ts"],"names":[],"mappings":"AACA,OAAO,EAEL,KAAK,UAAU,EACf,KAAK,oBAAoB,EAEzB,KAAK,wBAAwB,EAE7B,KAAK,uBAAuB,EAC5B,KAAK,uBAAuB,EAE5B,KAAK,sBAAsB,EAC3B,KAAK,iBAAiB,EACtB,KAAK,sBAAsB,EAC3B,KAAK,2BAA2B,EAChC,KAAK,qCAAqC,EAE1C,KAAK,YAAY,EACjB,KAAK,sBAAsB,EAE3B,KAAK,gBAAgB,EACrB,KAAK,0BAA0B,EAE/B,KAAK,qBAAqB,EAC1B,KAAK,+BAA+B,EAIpC,KAAK,eAAe,EACpB,KAAK,yBAAyB,EAE9B,KAAK,gBAAgB,EACrB,KAAK,0BAA0B,EAE/B,KAAK,wBAAwB,EAE9B,MAAM,YAAY,CAAC;
|
|
1
|
+
{"version":3,"file":"client.d.ts","sourceRoot":"","sources":["../../../src/lib/client.ts"],"names":[],"mappings":"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"}
|
|
@@ -25,38 +25,6 @@ export type SikkaApiError = {
|
|
|
25
25
|
error_description?: string;
|
|
26
26
|
message?: string;
|
|
27
27
|
};
|
|
28
|
-
export type SikkaAuthorizedPractice = {
|
|
29
|
-
address: string;
|
|
30
|
-
city: string;
|
|
31
|
-
data_insert_date: string;
|
|
32
|
-
data_synchronization_date: string;
|
|
33
|
-
domain: string;
|
|
34
|
-
email: string;
|
|
35
|
-
href: string;
|
|
36
|
-
office_id: string;
|
|
37
|
-
practice_id: string;
|
|
38
|
-
practice_management_system: string;
|
|
39
|
-
practice_management_system_refresh_date: string;
|
|
40
|
-
practice_management_system_version: string;
|
|
41
|
-
practice_name: string;
|
|
42
|
-
secret_key: string;
|
|
43
|
-
state: string;
|
|
44
|
-
zip: string;
|
|
45
|
-
};
|
|
46
|
-
export type SikkaAuthorizedPracticesResponse = {
|
|
47
|
-
execution_time: string;
|
|
48
|
-
items: SikkaAuthorizedPractice[];
|
|
49
|
-
limit: string;
|
|
50
|
-
offset: string;
|
|
51
|
-
pagination: {
|
|
52
|
-
current: string;
|
|
53
|
-
first: string;
|
|
54
|
-
last: string;
|
|
55
|
-
next: string;
|
|
56
|
-
previous: string;
|
|
57
|
-
};
|
|
58
|
-
total_count: string;
|
|
59
|
-
};
|
|
60
28
|
export type SikkaAppCredentials = {
|
|
61
29
|
appId: string;
|
|
62
30
|
appKey: string;
|
|
@@ -425,4 +393,43 @@ export type SikkaSubscriberListParams = {
|
|
|
425
393
|
sort_by?: 'patient_id' | 'practice_id';
|
|
426
394
|
};
|
|
427
395
|
export type SikkaSubscriberListResponse = SikkaPaginatedResponse<SikkaSubscriber>;
|
|
396
|
+
export type SikkaAuthorizedPractice = {
|
|
397
|
+
address: string;
|
|
398
|
+
city: string;
|
|
399
|
+
data_insert_date: string;
|
|
400
|
+
data_synchronization_date: string;
|
|
401
|
+
difference_in_minutes?: string;
|
|
402
|
+
domain: string;
|
|
403
|
+
email?: string;
|
|
404
|
+
financial_system?: string;
|
|
405
|
+
financial_system_refresh_date?: string;
|
|
406
|
+
financial_system_version?: string;
|
|
407
|
+
href: string;
|
|
408
|
+
office_id: string;
|
|
409
|
+
partner_id?: string;
|
|
410
|
+
practice_id: string;
|
|
411
|
+
practice_management_system: string;
|
|
412
|
+
practice_management_system_refresh_date: string;
|
|
413
|
+
practice_management_system_refresh_date_time_zone?: string;
|
|
414
|
+
practice_management_system_refresh_date_time_zone_utc_offset?: string;
|
|
415
|
+
practice_management_system_version: string;
|
|
416
|
+
practice_name: string;
|
|
417
|
+
secret_key: string;
|
|
418
|
+
state: string;
|
|
419
|
+
zip: string;
|
|
420
|
+
};
|
|
421
|
+
export type SikkaAuthorizedPracticeListParams = {
|
|
422
|
+
financial_system?: string;
|
|
423
|
+
financial_system_version?: string;
|
|
424
|
+
limit?: number;
|
|
425
|
+
offset?: number;
|
|
426
|
+
practice_id?: string;
|
|
427
|
+
practice_management_system?: string;
|
|
428
|
+
practice_management_system_refresh_date_time_zone?: string;
|
|
429
|
+
practice_management_system_version?: string;
|
|
430
|
+
practice_name?: string;
|
|
431
|
+
show?: 'all';
|
|
432
|
+
sort_by?: 'office_id' | 'practice_id';
|
|
433
|
+
};
|
|
434
|
+
export type SikkaAuthorizedPracticeListResponse = SikkaPaginatedResponse<SikkaAuthorizedPractice>;
|
|
428
435
|
//# sourceMappingURL=types.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/lib/types.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/lib/types.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED