@fincuratech/stedi-sdk-js 1.4.0 → 1.4.2
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/README.md +36 -12
- package/dist/lib/types.js.map +1 -1
- package/dist/types/lib/types.d.ts +25 -41
- package/dist/types/lib/types.d.ts.map +1 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -246,34 +246,31 @@ Create a new provider profile in Stedi.
|
|
|
246
246
|
|
|
247
247
|
**Parameters:**
|
|
248
248
|
|
|
249
|
+
Each contact must include either `organizationName` **or** `firstName` + `lastName`, but not both.
|
|
250
|
+
|
|
249
251
|
```typescript
|
|
250
252
|
interface StediProviderInput {
|
|
251
253
|
name: string;
|
|
252
254
|
npi: string;
|
|
253
255
|
taxId: string;
|
|
254
256
|
taxIdType: string;
|
|
255
|
-
contacts:
|
|
256
|
-
firstName: string;
|
|
257
|
-
lastName: string;
|
|
258
|
-
email: string;
|
|
259
|
-
phone: string;
|
|
260
|
-
streetAddress1: string;
|
|
261
|
-
city: string;
|
|
262
|
-
state: string;
|
|
263
|
-
zipCode: string;
|
|
264
|
-
}>;
|
|
257
|
+
contacts: StediContact[];
|
|
265
258
|
}
|
|
259
|
+
|
|
260
|
+
// Each contact is one of:
|
|
261
|
+
// - Organization: { organizationName, email, phone, streetAddress1, city, state, zipCode, streetAddress2? }
|
|
262
|
+
// - Individual: { firstName, lastName, email, phone, streetAddress1, city, state, zipCode, streetAddress2? }
|
|
266
263
|
```
|
|
267
264
|
|
|
268
265
|
**Returns:** `Promise<StediProviderResponse>`
|
|
269
266
|
|
|
270
|
-
**Example:**
|
|
267
|
+
**Example (individual contact):**
|
|
271
268
|
|
|
272
269
|
```typescript
|
|
273
270
|
const provider = await stedi.provider.create({
|
|
274
271
|
name: 'Main Street Medical Clinic',
|
|
275
272
|
npi: '1234567890',
|
|
276
|
-
taxId: '
|
|
273
|
+
taxId: '123456789',
|
|
277
274
|
taxIdType: 'EIN',
|
|
278
275
|
contacts: [
|
|
279
276
|
{
|
|
@@ -293,6 +290,29 @@ console.log(`Provider created with ID: ${provider.id}`);
|
|
|
293
290
|
console.log(`Created at: ${provider.createdAt}`);
|
|
294
291
|
```
|
|
295
292
|
|
|
293
|
+
**Example (organization contact):**
|
|
294
|
+
|
|
295
|
+
```typescript
|
|
296
|
+
const provider = await stedi.provider.create({
|
|
297
|
+
name: 'Main Street Medical Clinic',
|
|
298
|
+
npi: '1234567890',
|
|
299
|
+
taxId: '123456789',
|
|
300
|
+
taxIdType: 'EIN',
|
|
301
|
+
contacts: [
|
|
302
|
+
{
|
|
303
|
+
organizationName: 'Main Street Medical Clinic',
|
|
304
|
+
email: 'admin@mainstreetmedical.com',
|
|
305
|
+
phone: '555-123-4567',
|
|
306
|
+
streetAddress1: '123 Main St',
|
|
307
|
+
streetAddress2: 'Suite 100',
|
|
308
|
+
city: 'Springfield',
|
|
309
|
+
state: 'IL',
|
|
310
|
+
zipCode: '62701',
|
|
311
|
+
},
|
|
312
|
+
],
|
|
313
|
+
});
|
|
314
|
+
```
|
|
315
|
+
|
|
296
316
|
**Response includes:**
|
|
297
317
|
- Provider ID
|
|
298
318
|
- Name, NPI, Tax ID
|
|
@@ -548,6 +568,10 @@ import type {
|
|
|
548
568
|
StediPayerResponse,
|
|
549
569
|
StediPayerSearchResponse,
|
|
550
570
|
|
|
571
|
+
// Contact
|
|
572
|
+
StediContact,
|
|
573
|
+
StediContactResponse,
|
|
574
|
+
|
|
551
575
|
// Providers
|
|
552
576
|
StediProviderInput,
|
|
553
577
|
StediProviderResponse,
|
package/dist/lib/types.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/lib/types.ts"],"names":[],"mappings":"","sourcesContent":["// COMMON\n\ntype Provider = {\n entityIdentifier: string;\n entityType: string;\n npi: string;\n providerName: string;\n};\n\ntype Address = {\n address1: string;\n city: string;\n postalCode: string;\n state: string;\n};\n\ntype Subscriber = {\n address?: Address;\n dateOfBirth?: string;\n entityIdentifier?: string;\n entityType?: string;\n firstName?: string;\n gender?: string;\n groupDescription?: string;\n groupNumber?: string;\n lastName?: string;\n memberId?: string;\n planNetworkDescription?: string;\n planNetworkIdNumber?: string;\n};\n\ntype ErrorDetail = {\n code: string;\n description: string;\n field: string;\n followupAction: string;\n location: string;\n possibleResolutions: string;\n};\n\n// ELIGIBILITY\n\nexport type StediEligibilityInput = {\n controlNumber: string;\n dependents?: Array<{\n dateOfBirth: string;\n firstName: string;\n lastName: string;\n memberId: string;\n }>;\n encounter?: {\n dateOfService: string;\n };\n provider: {\n npi: string;\n organizationName: string;\n };\n subscriber?: {\n dateOfBirth: string;\n firstName: string;\n lastName: string;\n memberId: string;\n };\n tradingPartnerName: string;\n tradingPartnerServiceId: string;\n};\n\ntype AdditionalInformation = {\n description: string;\n};\n\ntype BenefitsServiceDelivery = {\n quantity?: string;\n quantityQualifier?: string;\n quantityQualifierCode?: string;\n sampleSelectionModulus?: string;\n unitForMeasurementCode?: string;\n unitForMeasurementQualifier?: string;\n unitForMeasurementQualifierCode?: string;\n};\n\nexport type BenefitsInformation = {\n additionalInformation?: AdditionalInformation[];\n authOrCertIndicator?: string;\n benefitAmount?: string;\n benefitPercent?: string;\n benefitQuantity?: string;\n benefitsServiceDelivery?: BenefitsServiceDelivery[];\n code?: string;\n coverageLevel?: string;\n coverageLevelCode?: string;\n id?: string;\n inPlanNetworkIndicator?: string;\n inPlanNetworkIndicatorCode?: string;\n insuranceType?: string;\n insuranceTypeCode?: string;\n name?: string;\n planCoverage?: string;\n quantityQualifier?: string;\n quantityQualifierCode?: string;\n serviceTypeCodes?: string[];\n serviceTypes?: string[];\n timeQualifier?: string;\n timeQualifierCode?: string;\n};\n\ntype Contact = {\n communicationMode?: string;\n communicationNumber?: string;\n};\n\ntype Dependent = {\n address: Address;\n dateOfBirth: string;\n entityType: string;\n firstName: string;\n gender: string;\n groupNumber: string;\n insuredIndicator: string;\n lastName: string;\n maintenanceReasonCode: string;\n maintenanceTypeCode: string;\n middleName: string;\n relationToSubscriber: string;\n relationToSubscriberCode: string;\n};\n\ntype Meta = {\n applicationMode: string;\n outboundTraceId: string;\n senderId: string;\n submitterId: string;\n traceId: string;\n};\n\ntype PlanInformation = {\n eligibilityBegin?: string;\n groupDescription?: string;\n groupNumber?: string;\n planBegin?: string;\n planEnd?: string;\n planNetworkIdDescription?: string;\n planNetworkIdNumber?: string;\n};\n\ntype PlanDateInformation = {\n eligibilityBegin?: string;\n groupDescription?: string;\n groupNumber?: string;\n planBegin?: string;\n planEnd?: string;\n};\n\ntype PlanStatus = {\n planDetails?: string;\n serviceTypeCodes?: string[];\n status?: string;\n statusCode?: string;\n};\n\nexport type StediEligibilityResponse = {\n benefitsInformation: BenefitsInformation[];\n controlNumber: string;\n dependents?: Dependent[];\n eligibilitySearchId: string;\n errors: ErrorDetail[];\n meta: Meta;\n payer: {\n contactInformation?: {\n contacts?: Contact[];\n };\n entityIdentifier?: string;\n entityType?: string;\n federalTaxpayersIdNumber?: string;\n name?: string;\n };\n planDateInformation: PlanDateInformation;\n planInformation: PlanInformation;\n planStatus?: PlanStatus[];\n provider: Provider;\n reassociationKey: string;\n subscriber: Subscriber;\n tradingPartnerServiceId: string;\n x12?: string;\n};\n\n// PAYERS\n\nexport type StediPayerItem = {\n aliases: string[];\n coverageTypes?: string[];\n displayName: string;\n names: string[];\n primaryPayerId: string;\n stediId: string;\n transactionSupport: {\n claimPayment: string;\n claimStatus: string;\n claimSubmission: string;\n coordinationOfBenefits: string;\n eligibilityCheck: string;\n institutionalClaimSubmission: string;\n professionalClaimSubmission: string;\n };\n};\n\nexport type StediPayerSearchResponse = {\n items: Array<{\n payer: StediPayerItem;\n score: number;\n }>;\n};\n\nexport type StediPayerResponse = {\n items: StediPayerItem[];\n};\n\n// TRANSACTIONS\n\nexport type StediX12Metadata = {\n /**\n * Functional group information\n */\n functionalGroup: {\n /**\n * The control number for the functional group\n */\n controlNumber: number;\n\n /**\n * The date of the functional group\n */\n date: string;\n\n /**\n * The functional identifier code\n */\n functionalIdentifierCode: string;\n\n /**\n * The release of the functional group\n */\n release: string;\n\n /**\n * The time of the functional group\n */\n time: string;\n\n /**\n * Additional functional group properties could be added based on the nested content\n */\n };\n\n /**\n * Interchange information\n */\n interchange: {\n /**\n * The acknowledgment requested code\n */\n acknowledgmentRequestedCode: string;\n\n /**\n * The control number for the interchange\n */\n controlNumber: number;\n\n /**\n * Additional interchange properties could be added based on the nested content\n */\n };\n\n /**\n * Receiver information\n */\n receiver: {\n /**\n * The application code of the receiver\n */\n applicationCode: string;\n\n /**\n * The ISA information for the receiver\n */\n isa: {\n id: string;\n qualifier: string;\n };\n };\n\n /**\n * Sender information\n */\n sender: {\n /**\n * The application code of the sender\n */\n applicationCode: string;\n\n /**\n * The ISA information for the sender\n */\n isa: {\n id: string;\n qualifier: string;\n };\n };\n\n /**\n * Transaction information\n */\n transaction: {\n /**\n * The control number for the transaction\n */\n controlNumber: string;\n\n /**\n * The transaction set identifier\n */\n transactionSetIdentifier: string;\n\n /**\n * Additional transaction properties could be added based on the nested content\n */\n };\n};\n\n/**\n * Represents a transaction item in the Stedi Transactions API response\n */\nexport type StediTransactionItem = {\n /**\n * The artifacts associated with this transaction\n */\n artifacts: Array<{\n /**\n * The type of artifact\n */\n artifactType:\n | 'application/edi-x12'\n | 'application/edifact'\n | 'application/filepart'\n | 'application/json'\n | 'application/pdf'\n | 'application/xml'\n | 'application/zip'\n | 'text/csv'\n | 'text/psv'\n | 'text/tsv';\n\n /**\n * The model of the artifact\n */\n model: 'execution' | 'fault' | 'fragment' | 'transaction';\n\n /**\n * The size of the artifact in bytes\n */\n sizeBytes: number;\n\n /**\n * The URL to access the artifact\n */\n url: string;\n\n /**\n * The usage of the artifact\n */\n usage: 'input' | 'metadata' | 'output';\n }>;\n\n /**\n * Business identifiers for the transaction (optional)\n */\n businessIdentifiers?: Array<{\n /**\n * The element where the business identifier was found, e.g. BEG-03\n */\n element: string;\n\n /**\n * The identifier of the element as seen in the EDI ref\n */\n elementId: string;\n\n /**\n * The friendly name of the business identifier, e.g. Purchase Order Number\n */\n name: string;\n\n /**\n * The value of the business identifier\n */\n value: string;\n }>;\n\n /**\n * The direction of the transaction\n */\n direction: 'INBOUND' | 'OUTBOUND' | 'UNKNOWN';\n\n /**\n * A unique identifier for the file execution that processed this transaction\n */\n fileExecutionId: string;\n\n /**\n * Fragment information (optional)\n */\n fragments?: {\n /**\n * The batch size\n */\n batchSize: number;\n\n /**\n * The count of fragments\n */\n fragmentCount: number;\n\n /**\n * The key name for the fragment\n */\n keyName: string;\n };\n\n /**\n * The mode in which the transaction was processed\n */\n mode: 'other' | 'production' | 'test';\n\n /**\n * The operation (optional)\n */\n operation?: string;\n\n /**\n * The partnership information for this transaction\n */\n partnership: {\n /**\n * Identifier chosen by the user to uniquely identify a partnership\n */\n partnershipId: string;\n\n /**\n * The type of partnership\n */\n partnershipType: 'edifact' | 'x12';\n\n /**\n * The receiver information\n */\n receiver: {\n /**\n * The profile ID of the receiver\n */\n profileId: string;\n };\n\n /**\n * The sender information\n */\n sender: {\n /**\n * The profile ID of the sender\n */\n profileId: string;\n };\n };\n\n /**\n * The timestamp when the transaction was processed\n */\n processedAt: string;\n\n /**\n * The status of the transaction\n */\n status: 'failed' | 'succeeded';\n\n /**\n * A unique identifier for the processed transaction within Stedi\n */\n transactionId: string;\n\n /**\n * Any translation errors that occurred (optional)\n */\n translationErrors?: Array<{\n /**\n * The context of the error (optional)\n */\n context?: {\n /**\n * The error code\n */\n code?: string;\n\n /**\n * The schema path where the error occurred\n */\n schemaPath?: string;\n };\n\n /**\n * The mark indicating the location of the error in the document\n */\n mark?: {\n /**\n * The end position (optional)\n */\n end?: {\n /**\n * The column number\n */\n column: number;\n\n /**\n * The line number\n */\n line: number;\n };\n\n /**\n * The start position\n */\n start: {\n /**\n * The column number\n */\n column: number;\n\n /**\n * The line number\n */\n line: number;\n };\n };\n\n /**\n * The error message\n */\n message: string;\n }>;\n\n /**\n * X12 specific information (optional)\n */\n x12?: {\n /**\n * Metadata about the X12 document\n */\n metadata: StediX12Metadata;\n\n /**\n * The transaction setting (optional)\n */\n transactionSetting?: {\n /**\n * The guide ID\n */\n guideId?: string;\n\n /**\n * The transaction setting ID\n */\n transactionSettingId?: string;\n };\n };\n};\n\nexport type StediTransactionGetResponse = StediTransactionItem;\n\nexport type StediTransactionListResponse = {\n items: StediTransactionItem[];\n nextPageToken?: string;\n};\n\n// PROVIDER\n\nexport type StediProviderInput = {\n contacts: Array<{\n city: string;\n email: string;\n firstName: string;\n lastName: string;\n phone: string;\n state: string;\n streetAddress1: string;\n zipCode: string;\n }>;\n name: string;\n npi: string;\n taxId: string;\n taxIdType: string;\n};\n\nexport type StediProviderResponse = {\n contacts: Array<{\n city: string;\n email: string;\n firstName: string;\n lastName: string;\n organizationName: string;\n phone: string;\n state: string;\n streetAddress1: string;\n zipCode: string;\n }>;\n createdAt: string;\n id: string;\n name: string;\n npi: string;\n taxId: string;\n taxIdType: string;\n updatedAt: string;\n};\n\nexport type StediProviderListItem = {\n id: string;\n name: string;\n npi: string;\n taxId: string;\n taxIdType: string;\n};\n\nexport type StediProviderListResponse = {\n items: StediProviderListItem[];\n nextPageToken?: string;\n};\n\nexport type StediListProvidersParams = {\n /**\n * Filter for providers with properties matching a query string.\n * Supports fuzzy matching on provider name, NPI, or tax ID.\n */\n filter?: string;\n /**\n * The maximum number of elements to return in a page (1-500, default 100).\n */\n pageSize?: number;\n /**\n * An opaque token for pagination, returned by a previous call in `nextPageToken`.\n */\n pageToken?: string;\n /**\n * Filter for providers with NPIs matching any value in this list.\n */\n providerNpis?: string[];\n /**\n * Filter for providers with tax IDs matching any value in this list.\n */\n providerTaxIds?: string[];\n};\n\nexport type StediEnrollmentInput = {\n payer: {\n idOrAlias: string;\n };\n primaryContact: {\n city: string;\n email: string;\n firstName: string;\n lastName: string;\n phone: string;\n state: string;\n streetAddress1: string;\n zipCode: string;\n };\n provider: {\n id: string;\n };\n source: string;\n status: StediEnrollmentStatus;\n transactions: {\n claimPayment: {\n enroll: boolean;\n };\n };\n userEmail: string;\n};\n\nexport type StediEnrollmentStatus =\n | 'CANCELED'\n | 'DRAFT'\n | 'LIVE'\n | 'PROVISIONING'\n | 'REJECTED'\n | 'SUBMITTED';\n\nexport type StediEnrollmentSource = 'API' | 'UI';\n\nexport type StediEnrollmentTransaction =\n | 'claimPayment'\n | 'claimStatus'\n | 'claimSubmission'\n | 'coordinationOfBenefits'\n | 'eligibilityCheck';\n\nexport type StediEnrollmentDocument = {\n createdAt: string;\n enrollmentId: string;\n id: string;\n name: string;\n status: string;\n updatedAt: string;\n};\n\nexport type StediEnrollmentHistoryItem = {\n changedAt: string;\n changedBy: string;\n newStatus: string;\n previousStatus?: string;\n type: string;\n};\n\nexport type StediEnrollmentTask = {\n definition: {\n followInstructions?: {\n instructions: string;\n };\n };\n id: string;\n isComplete: boolean;\n rank: number;\n responsibleParty: string;\n};\n\nexport type StediEnrollmentResponse = {\n createdAt: string;\n documents?: StediEnrollmentDocument[];\n history?: StediEnrollmentHistoryItem[];\n id: string;\n payer: {\n name?: string;\n stediPayerId: string;\n submittedPayerIdOrAlias?: string;\n };\n primaryContact?: {\n city?: string;\n email?: string;\n firstName?: string;\n lastName?: string;\n phone?: string;\n state?: string;\n streetAddress1?: string;\n zipCode?: string;\n };\n provider: {\n id: string;\n name?: string;\n npi?: string;\n taxId?: string;\n taxIdType?: string;\n };\n reason?: string;\n source?: string;\n status: StediEnrollmentStatus;\n statusLastUpdatedAt?: string;\n submittedAt?: string;\n tasks?: StediEnrollmentTask[];\n transactions?: {\n claimPayment?: {\n enroll: boolean;\n };\n };\n updatedAt: string;\n userEmail?: string;\n};\n\nexport type StediListEnrollmentsParams = {\n /**\n * Filter for enrollments created from a specific date (ISO 8601 format).\n */\n createdFrom?: string;\n /**\n * Filter for enrollments created before a specific date (ISO 8601 format).\n */\n createdTo?: string;\n /**\n * Filter for enrollments with properties matching a query string.\n * Supports fuzzy matching on provider name, NPI, tax ID, or Stedi payer ID.\n */\n filter?: string;\n /**\n * The import ID associated with an enrollment through a CSV bulk import.\n */\n importId?: string;\n /**\n * The maximum number of elements to return in a page (1-500, default 100).\n */\n pageSize?: number;\n /**\n * An opaque token for pagination, returned by a previous call in `nextPageToken`.\n */\n pageToken?: string;\n /**\n * Filter for enrollments associated with specific Stedi payer IDs.\n */\n payerIds?: string[];\n /**\n * Filter for enrollments associated with specific provider names (case-sensitive, exact match).\n */\n providerNames?: string[];\n /**\n * Filter for enrollments associated with specific provider NPIs.\n */\n providerNpis?: string[];\n /**\n * Filter for enrollments associated with specific provider tax IDs.\n */\n providerTaxIds?: string[];\n /**\n * Sort the results by one or more properties in `property:direction` format.\n * Supported properties: `updatedAt`, `statusLastUpdatedAt`, `id`.\n * Direction: `asc` or `desc`.\n */\n sortBy?: string[];\n /**\n * Filter for enrollments submitted through specific sources (API or UI).\n */\n sources?: StediEnrollmentSource[];\n /**\n * Filter for enrollments with specific statuses.\n */\n status?: StediEnrollmentStatus[];\n /**\n * Filter for enrollments whose status was last updated from a specific date (ISO 8601 format).\n */\n statusUpdatedFrom?: string;\n /**\n * Filter for enrollments whose status was last updated before a specific date (ISO 8601 format).\n */\n statusUpdatedTo?: string;\n /**\n * Filter for enrollments for specific transaction types.\n */\n transactions?: StediEnrollmentTransaction[];\n};\n\nexport type StediListEnrollmentsResponse = {\n items: StediEnrollmentResponse[];\n nextPageToken?: string;\n totalCount?: number;\n};\n"]}
|
|
1
|
+
{"version":3,"file":"types.js","sourceRoot":"","sources":["../../src/lib/types.ts"],"names":[],"mappings":"","sourcesContent":["// COMMON\n\ntype Provider = {\n entityIdentifier: string;\n entityType: string;\n npi: string;\n providerName: string;\n};\n\ntype Address = {\n address1: string;\n city: string;\n postalCode: string;\n state: string;\n};\n\ntype Subscriber = {\n address?: Address;\n dateOfBirth?: string;\n entityIdentifier?: string;\n entityType?: string;\n firstName?: string;\n gender?: string;\n groupDescription?: string;\n groupNumber?: string;\n lastName?: string;\n memberId?: string;\n planNetworkDescription?: string;\n planNetworkIdNumber?: string;\n};\n\ntype ErrorDetail = {\n code: string;\n description: string;\n field: string;\n followupAction: string;\n location: string;\n possibleResolutions: string;\n};\n\n// ELIGIBILITY\n\nexport type StediEligibilityInput = {\n controlNumber: string;\n dependents?: Array<{\n dateOfBirth: string;\n firstName: string;\n lastName: string;\n memberId: string;\n }>;\n encounter?: {\n dateOfService: string;\n };\n provider: {\n npi: string;\n organizationName: string;\n };\n subscriber?: {\n dateOfBirth: string;\n firstName: string;\n lastName: string;\n memberId: string;\n };\n tradingPartnerName: string;\n tradingPartnerServiceId: string;\n};\n\ntype AdditionalInformation = {\n description: string;\n};\n\ntype BenefitsServiceDelivery = {\n quantity?: string;\n quantityQualifier?: string;\n quantityQualifierCode?: string;\n sampleSelectionModulus?: string;\n unitForMeasurementCode?: string;\n unitForMeasurementQualifier?: string;\n unitForMeasurementQualifierCode?: string;\n};\n\nexport type BenefitsInformation = {\n additionalInformation?: AdditionalInformation[];\n authOrCertIndicator?: string;\n benefitAmount?: string;\n benefitPercent?: string;\n benefitQuantity?: string;\n benefitsServiceDelivery?: BenefitsServiceDelivery[];\n code?: string;\n coverageLevel?: string;\n coverageLevelCode?: string;\n id?: string;\n inPlanNetworkIndicator?: string;\n inPlanNetworkIndicatorCode?: string;\n insuranceType?: string;\n insuranceTypeCode?: string;\n name?: string;\n planCoverage?: string;\n quantityQualifier?: string;\n quantityQualifierCode?: string;\n serviceTypeCodes?: string[];\n serviceTypes?: string[];\n timeQualifier?: string;\n timeQualifierCode?: string;\n};\n\ntype Contact = {\n communicationMode?: string;\n communicationNumber?: string;\n};\n\ntype Dependent = {\n address: Address;\n dateOfBirth: string;\n entityType: string;\n firstName: string;\n gender: string;\n groupNumber: string;\n insuredIndicator: string;\n lastName: string;\n maintenanceReasonCode: string;\n maintenanceTypeCode: string;\n middleName: string;\n relationToSubscriber: string;\n relationToSubscriberCode: string;\n};\n\ntype Meta = {\n applicationMode: string;\n outboundTraceId: string;\n senderId: string;\n submitterId: string;\n traceId: string;\n};\n\ntype PlanInformation = {\n eligibilityBegin?: string;\n groupDescription?: string;\n groupNumber?: string;\n planBegin?: string;\n planEnd?: string;\n planNetworkIdDescription?: string;\n planNetworkIdNumber?: string;\n};\n\ntype PlanDateInformation = {\n eligibilityBegin?: string;\n groupDescription?: string;\n groupNumber?: string;\n planBegin?: string;\n planEnd?: string;\n};\n\ntype PlanStatus = {\n planDetails?: string;\n serviceTypeCodes?: string[];\n status?: string;\n statusCode?: string;\n};\n\nexport type StediEligibilityResponse = {\n benefitsInformation: BenefitsInformation[];\n controlNumber: string;\n dependents?: Dependent[];\n eligibilitySearchId: string;\n errors: ErrorDetail[];\n meta: Meta;\n payer: {\n contactInformation?: {\n contacts?: Contact[];\n };\n entityIdentifier?: string;\n entityType?: string;\n federalTaxpayersIdNumber?: string;\n name?: string;\n };\n planDateInformation: PlanDateInformation;\n planInformation: PlanInformation;\n planStatus?: PlanStatus[];\n provider: Provider;\n reassociationKey: string;\n subscriber: Subscriber;\n tradingPartnerServiceId: string;\n x12?: string;\n};\n\n// PAYERS\n\nexport type StediPayerItem = {\n aliases: string[];\n coverageTypes?: string[];\n displayName: string;\n names: string[];\n primaryPayerId: string;\n stediId: string;\n transactionSupport: {\n claimPayment: string;\n claimStatus: string;\n claimSubmission: string;\n coordinationOfBenefits: string;\n eligibilityCheck: string;\n institutionalClaimSubmission: string;\n professionalClaimSubmission: string;\n };\n};\n\nexport type StediPayerSearchResponse = {\n items: Array<{\n payer: StediPayerItem;\n score: number;\n }>;\n};\n\nexport type StediPayerResponse = {\n items: StediPayerItem[];\n};\n\n// TRANSACTIONS\n\nexport type StediX12Metadata = {\n /**\n * Functional group information\n */\n functionalGroup: {\n /**\n * The control number for the functional group\n */\n controlNumber: number;\n\n /**\n * The date of the functional group\n */\n date: string;\n\n /**\n * The functional identifier code\n */\n functionalIdentifierCode: string;\n\n /**\n * The release of the functional group\n */\n release: string;\n\n /**\n * The time of the functional group\n */\n time: string;\n\n /**\n * Additional functional group properties could be added based on the nested content\n */\n };\n\n /**\n * Interchange information\n */\n interchange: {\n /**\n * The acknowledgment requested code\n */\n acknowledgmentRequestedCode: string;\n\n /**\n * The control number for the interchange\n */\n controlNumber: number;\n\n /**\n * Additional interchange properties could be added based on the nested content\n */\n };\n\n /**\n * Receiver information\n */\n receiver: {\n /**\n * The application code of the receiver\n */\n applicationCode: string;\n\n /**\n * The ISA information for the receiver\n */\n isa: {\n id: string;\n qualifier: string;\n };\n };\n\n /**\n * Sender information\n */\n sender: {\n /**\n * The application code of the sender\n */\n applicationCode: string;\n\n /**\n * The ISA information for the sender\n */\n isa: {\n id: string;\n qualifier: string;\n };\n };\n\n /**\n * Transaction information\n */\n transaction: {\n /**\n * The control number for the transaction\n */\n controlNumber: string;\n\n /**\n * The transaction set identifier\n */\n transactionSetIdentifier: string;\n\n /**\n * Additional transaction properties could be added based on the nested content\n */\n };\n};\n\n/**\n * Represents a transaction item in the Stedi Transactions API response\n */\nexport type StediTransactionItem = {\n /**\n * The artifacts associated with this transaction\n */\n artifacts: Array<{\n /**\n * The type of artifact\n */\n artifactType:\n | 'application/edi-x12'\n | 'application/edifact'\n | 'application/filepart'\n | 'application/json'\n | 'application/pdf'\n | 'application/xml'\n | 'application/zip'\n | 'text/csv'\n | 'text/psv'\n | 'text/tsv';\n\n /**\n * The model of the artifact\n */\n model: 'execution' | 'fault' | 'fragment' | 'transaction';\n\n /**\n * The size of the artifact in bytes\n */\n sizeBytes: number;\n\n /**\n * The URL to access the artifact\n */\n url: string;\n\n /**\n * The usage of the artifact\n */\n usage: 'input' | 'metadata' | 'output';\n }>;\n\n /**\n * Business identifiers for the transaction (optional)\n */\n businessIdentifiers?: Array<{\n /**\n * The element where the business identifier was found, e.g. BEG-03\n */\n element: string;\n\n /**\n * The identifier of the element as seen in the EDI ref\n */\n elementId: string;\n\n /**\n * The friendly name of the business identifier, e.g. Purchase Order Number\n */\n name: string;\n\n /**\n * The value of the business identifier\n */\n value: string;\n }>;\n\n /**\n * The direction of the transaction\n */\n direction: 'INBOUND' | 'OUTBOUND' | 'UNKNOWN';\n\n /**\n * A unique identifier for the file execution that processed this transaction\n */\n fileExecutionId: string;\n\n /**\n * Fragment information (optional)\n */\n fragments?: {\n /**\n * The batch size\n */\n batchSize: number;\n\n /**\n * The count of fragments\n */\n fragmentCount: number;\n\n /**\n * The key name for the fragment\n */\n keyName: string;\n };\n\n /**\n * The mode in which the transaction was processed\n */\n mode: 'other' | 'production' | 'test';\n\n /**\n * The operation (optional)\n */\n operation?: string;\n\n /**\n * The partnership information for this transaction\n */\n partnership: {\n /**\n * Identifier chosen by the user to uniquely identify a partnership\n */\n partnershipId: string;\n\n /**\n * The type of partnership\n */\n partnershipType: 'edifact' | 'x12';\n\n /**\n * The receiver information\n */\n receiver: {\n /**\n * The profile ID of the receiver\n */\n profileId: string;\n };\n\n /**\n * The sender information\n */\n sender: {\n /**\n * The profile ID of the sender\n */\n profileId: string;\n };\n };\n\n /**\n * The timestamp when the transaction was processed\n */\n processedAt: string;\n\n /**\n * The status of the transaction\n */\n status: 'failed' | 'succeeded';\n\n /**\n * A unique identifier for the processed transaction within Stedi\n */\n transactionId: string;\n\n /**\n * Any translation errors that occurred (optional)\n */\n translationErrors?: Array<{\n /**\n * The context of the error (optional)\n */\n context?: {\n /**\n * The error code\n */\n code?: string;\n\n /**\n * The schema path where the error occurred\n */\n schemaPath?: string;\n };\n\n /**\n * The mark indicating the location of the error in the document\n */\n mark?: {\n /**\n * The end position (optional)\n */\n end?: {\n /**\n * The column number\n */\n column: number;\n\n /**\n * The line number\n */\n line: number;\n };\n\n /**\n * The start position\n */\n start: {\n /**\n * The column number\n */\n column: number;\n\n /**\n * The line number\n */\n line: number;\n };\n };\n\n /**\n * The error message\n */\n message: string;\n }>;\n\n /**\n * X12 specific information (optional)\n */\n x12?: {\n /**\n * Metadata about the X12 document\n */\n metadata: StediX12Metadata;\n\n /**\n * The transaction setting (optional)\n */\n transactionSetting?: {\n /**\n * The guide ID\n */\n guideId?: string;\n\n /**\n * The transaction setting ID\n */\n transactionSettingId?: string;\n };\n };\n};\n\nexport type StediTransactionGetResponse = StediTransactionItem;\n\nexport type StediTransactionListResponse = {\n items: StediTransactionItem[];\n nextPageToken?: string;\n};\n\n// CONTACT\n\ntype StediContactBase = {\n city: string;\n email: string;\n phone: string;\n state: string;\n streetAddress1: string;\n streetAddress2?: string;\n zipCode: string;\n};\n\ntype StediIndividualContactIdentity = {\n firstName: string;\n lastName: string;\n organizationName?: never;\n};\n\ntype StediOrganizationContactIdentity = {\n firstName?: never;\n lastName?: never;\n organizationName: string;\n};\n\nexport type StediContact = StediContactBase &\n (StediIndividualContactIdentity | StediOrganizationContactIdentity);\n\nexport type StediContactResponse = Partial<StediContactBase> &\n (\n | Partial<StediIndividualContactIdentity>\n | Partial<StediOrganizationContactIdentity>\n );\n\n// PROVIDER\n\nexport type StediProviderInput = {\n contacts: StediContact[];\n name: string;\n npi: string;\n taxId: string;\n taxIdType: string;\n};\n\nexport type StediProviderResponse = {\n contacts: StediContact[];\n createdAt: string;\n id: string;\n name: string;\n npi: string;\n taxId: string;\n taxIdType: string;\n updatedAt: string;\n};\n\nexport type StediProviderListItem = {\n id: string;\n name: string;\n npi: string;\n taxId: string;\n taxIdType: string;\n};\n\nexport type StediProviderListResponse = {\n items: StediProviderListItem[];\n nextPageToken?: string;\n};\n\nexport type StediListProvidersParams = {\n /**\n * Filter for providers with properties matching a query string.\n * Supports fuzzy matching on provider name, NPI, or tax ID.\n */\n filter?: string;\n /**\n * The maximum number of elements to return in a page (1-500, default 100).\n */\n pageSize?: number;\n /**\n * An opaque token for pagination, returned by a previous call in `nextPageToken`.\n */\n pageToken?: string;\n /**\n * Filter for providers with NPIs matching any value in this list.\n */\n providerNpis?: string[];\n /**\n * Filter for providers with tax IDs matching any value in this list.\n */\n providerTaxIds?: string[];\n};\n\nexport type StediEnrollmentInput = {\n payer: {\n idOrAlias: string;\n };\n primaryContact: StediContact;\n provider: {\n id: string;\n };\n source: string;\n status: StediEnrollmentStatus;\n transactions: {\n claimPayment: {\n enroll: boolean;\n };\n };\n userEmail: string;\n};\n\nexport type StediEnrollmentStatus =\n | 'CANCELED'\n | 'DRAFT'\n | 'LIVE'\n | 'PROVISIONING'\n | 'REJECTED'\n | 'SUBMITTED';\n\nexport type StediEnrollmentSource = 'API' | 'UI';\n\nexport type StediEnrollmentTransaction =\n | 'claimPayment'\n | 'claimStatus'\n | 'claimSubmission'\n | 'coordinationOfBenefits'\n | 'eligibilityCheck';\n\nexport type StediEnrollmentDocument = {\n createdAt: string;\n enrollmentId: string;\n id: string;\n name: string;\n status: string;\n updatedAt: string;\n};\n\nexport type StediEnrollmentHistoryItem = {\n changedAt: string;\n changedBy: string;\n newStatus: string;\n previousStatus?: string;\n type: string;\n};\n\nexport type StediEnrollmentTask = {\n definition: {\n followInstructions?: {\n instructions: string;\n };\n };\n id: string;\n isComplete: boolean;\n rank: number;\n responsibleParty: string;\n};\n\nexport type StediEnrollmentResponse = {\n createdAt: string;\n documents?: StediEnrollmentDocument[];\n history?: StediEnrollmentHistoryItem[];\n id: string;\n payer: {\n name?: string;\n stediPayerId: string;\n submittedPayerIdOrAlias?: string;\n };\n primaryContact?: StediContactResponse;\n provider: {\n id: string;\n name?: string;\n npi?: string;\n taxId?: string;\n taxIdType?: string;\n };\n reason?: string;\n source?: string;\n status: StediEnrollmentStatus;\n statusLastUpdatedAt?: string;\n submittedAt?: string;\n tasks?: StediEnrollmentTask[];\n transactions?: {\n claimPayment?: {\n enroll: boolean;\n };\n };\n updatedAt: string;\n userEmail?: string;\n};\n\nexport type StediListEnrollmentsParams = {\n /**\n * Filter for enrollments created from a specific date (ISO 8601 format).\n */\n createdFrom?: string;\n /**\n * Filter for enrollments created before a specific date (ISO 8601 format).\n */\n createdTo?: string;\n /**\n * Filter for enrollments with properties matching a query string.\n * Supports fuzzy matching on provider name, NPI, tax ID, or Stedi payer ID.\n */\n filter?: string;\n /**\n * The import ID associated with an enrollment through a CSV bulk import.\n */\n importId?: string;\n /**\n * The maximum number of elements to return in a page (1-500, default 100).\n */\n pageSize?: number;\n /**\n * An opaque token for pagination, returned by a previous call in `nextPageToken`.\n */\n pageToken?: string;\n /**\n * Filter for enrollments associated with specific Stedi payer IDs.\n */\n payerIds?: string[];\n /**\n * Filter for enrollments associated with specific provider names (case-sensitive, exact match).\n */\n providerNames?: string[];\n /**\n * Filter for enrollments associated with specific provider NPIs.\n */\n providerNpis?: string[];\n /**\n * Filter for enrollments associated with specific provider tax IDs.\n */\n providerTaxIds?: string[];\n /**\n * Sort the results by one or more properties in `property:direction` format.\n * Supported properties: `updatedAt`, `statusLastUpdatedAt`, `id`.\n * Direction: `asc` or `desc`.\n */\n sortBy?: string[];\n /**\n * Filter for enrollments submitted through specific sources (API or UI).\n */\n sources?: StediEnrollmentSource[];\n /**\n * Filter for enrollments with specific statuses.\n */\n status?: StediEnrollmentStatus[];\n /**\n * Filter for enrollments whose status was last updated from a specific date (ISO 8601 format).\n */\n statusUpdatedFrom?: string;\n /**\n * Filter for enrollments whose status was last updated before a specific date (ISO 8601 format).\n */\n statusUpdatedTo?: string;\n /**\n * Filter for enrollments for specific transaction types.\n */\n transactions?: StediEnrollmentTransaction[];\n};\n\nexport type StediListEnrollmentsResponse = {\n items: StediEnrollmentResponse[];\n nextPageToken?: string;\n totalCount?: number;\n};\n"]}
|
|
@@ -288,34 +288,36 @@ export type StediTransactionListResponse = {
|
|
|
288
288
|
items: StediTransactionItem[];
|
|
289
289
|
nextPageToken?: string;
|
|
290
290
|
};
|
|
291
|
+
type StediContactBase = {
|
|
292
|
+
city: string;
|
|
293
|
+
email: string;
|
|
294
|
+
phone: string;
|
|
295
|
+
state: string;
|
|
296
|
+
streetAddress1: string;
|
|
297
|
+
streetAddress2?: string;
|
|
298
|
+
zipCode: string;
|
|
299
|
+
};
|
|
300
|
+
type StediIndividualContactIdentity = {
|
|
301
|
+
firstName: string;
|
|
302
|
+
lastName: string;
|
|
303
|
+
organizationName?: never;
|
|
304
|
+
};
|
|
305
|
+
type StediOrganizationContactIdentity = {
|
|
306
|
+
firstName?: never;
|
|
307
|
+
lastName?: never;
|
|
308
|
+
organizationName: string;
|
|
309
|
+
};
|
|
310
|
+
export type StediContact = StediContactBase & (StediIndividualContactIdentity | StediOrganizationContactIdentity);
|
|
311
|
+
export type StediContactResponse = Partial<StediContactBase> & (Partial<StediIndividualContactIdentity> | Partial<StediOrganizationContactIdentity>);
|
|
291
312
|
export type StediProviderInput = {
|
|
292
|
-
contacts:
|
|
293
|
-
city: string;
|
|
294
|
-
email: string;
|
|
295
|
-
firstName: string;
|
|
296
|
-
lastName: string;
|
|
297
|
-
phone: string;
|
|
298
|
-
state: string;
|
|
299
|
-
streetAddress1: string;
|
|
300
|
-
zipCode: string;
|
|
301
|
-
}>;
|
|
313
|
+
contacts: StediContact[];
|
|
302
314
|
name: string;
|
|
303
315
|
npi: string;
|
|
304
316
|
taxId: string;
|
|
305
317
|
taxIdType: string;
|
|
306
318
|
};
|
|
307
319
|
export type StediProviderResponse = {
|
|
308
|
-
contacts:
|
|
309
|
-
city: string;
|
|
310
|
-
email: string;
|
|
311
|
-
firstName: string;
|
|
312
|
-
lastName: string;
|
|
313
|
-
organizationName: string;
|
|
314
|
-
phone: string;
|
|
315
|
-
state: string;
|
|
316
|
-
streetAddress1: string;
|
|
317
|
-
zipCode: string;
|
|
318
|
-
}>;
|
|
320
|
+
contacts: StediContact[];
|
|
319
321
|
createdAt: string;
|
|
320
322
|
id: string;
|
|
321
323
|
name: string;
|
|
@@ -346,16 +348,7 @@ export type StediEnrollmentInput = {
|
|
|
346
348
|
payer: {
|
|
347
349
|
idOrAlias: string;
|
|
348
350
|
};
|
|
349
|
-
primaryContact:
|
|
350
|
-
city: string;
|
|
351
|
-
email: string;
|
|
352
|
-
firstName: string;
|
|
353
|
-
lastName: string;
|
|
354
|
-
phone: string;
|
|
355
|
-
state: string;
|
|
356
|
-
streetAddress1: string;
|
|
357
|
-
zipCode: string;
|
|
358
|
-
};
|
|
351
|
+
primaryContact: StediContact;
|
|
359
352
|
provider: {
|
|
360
353
|
id: string;
|
|
361
354
|
};
|
|
@@ -407,16 +400,7 @@ export type StediEnrollmentResponse = {
|
|
|
407
400
|
stediPayerId: string;
|
|
408
401
|
submittedPayerIdOrAlias?: string;
|
|
409
402
|
};
|
|
410
|
-
primaryContact?:
|
|
411
|
-
city?: string;
|
|
412
|
-
email?: string;
|
|
413
|
-
firstName?: string;
|
|
414
|
-
lastName?: string;
|
|
415
|
-
phone?: string;
|
|
416
|
-
state?: string;
|
|
417
|
-
streetAddress1?: string;
|
|
418
|
-
zipCode?: string;
|
|
419
|
-
};
|
|
403
|
+
primaryContact?: StediContactResponse;
|
|
420
404
|
provider: {
|
|
421
405
|
id: string;
|
|
422
406
|
name?: string;
|
|
@@ -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
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"author": "Fincura Technologies, Inc.",
|
|
3
3
|
"packageManager": "pnpm@10.11.0",
|
|
4
4
|
"dependencies": {
|
|
5
|
-
"axios": "1.13.
|
|
5
|
+
"axios": "1.13.5"
|
|
6
6
|
},
|
|
7
7
|
"description": "Stedi SDK JS",
|
|
8
8
|
"devDependencies": {
|
|
@@ -43,5 +43,5 @@
|
|
|
43
43
|
},
|
|
44
44
|
"type": "module",
|
|
45
45
|
"types": "dist/types/index.d.ts",
|
|
46
|
-
"version": "1.4.
|
|
46
|
+
"version": "1.4.2"
|
|
47
47
|
}
|