@tellescope/types-models 1.242.0 → 1.242.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/lib/cjs/index.d.ts +23 -0
- package/lib/cjs/index.d.ts.map +1 -1
- package/lib/cjs/index.js +1 -0
- package/lib/cjs/index.js.map +1 -1
- package/lib/esm/index.d.ts +23 -0
- package/lib/esm/index.d.ts.map +1 -1
- package/lib/esm/index.js +1 -0
- package/lib/esm/index.js.map +1 -1
- package/lib/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/src/index.ts +23 -1
package/lib/cjs/index.d.ts
CHANGED
|
@@ -634,6 +634,7 @@ export type WeeklyAvailability = {
|
|
|
634
634
|
};
|
|
635
635
|
export type NotificationPreference = {
|
|
636
636
|
email?: boolean;
|
|
637
|
+
browser?: boolean;
|
|
637
638
|
};
|
|
638
639
|
export type AccountType = string;
|
|
639
640
|
export type UserCallRoutingBehavior = ('' | 'Assigned' | 'Unassigned' | 'All');
|
|
@@ -5233,6 +5234,23 @@ export interface IntegrationLog_updatesDisabled {
|
|
|
5233
5234
|
}
|
|
5234
5235
|
export interface IntegrationLog extends IntegrationLog_readonly, IntegrationLog_required, IntegrationLog_updatesDisabled {
|
|
5235
5236
|
}
|
|
5237
|
+
export type OrganizationPaymentStatus = "pending" | "completed" | "failed" | "refunded";
|
|
5238
|
+
export interface OrganizationPayment_readonly extends ClientRecord {
|
|
5239
|
+
amountInCents: number;
|
|
5240
|
+
type: string;
|
|
5241
|
+
status: OrganizationPaymentStatus;
|
|
5242
|
+
stripePaymentIntentId: string;
|
|
5243
|
+
stripeCheckoutSessionId?: string;
|
|
5244
|
+
userId: string;
|
|
5245
|
+
title: string;
|
|
5246
|
+
data?: Indexable;
|
|
5247
|
+
}
|
|
5248
|
+
export interface OrganizationPayment_required {
|
|
5249
|
+
}
|
|
5250
|
+
export interface OrganizationPayment_updatesDisabled {
|
|
5251
|
+
}
|
|
5252
|
+
export interface OrganizationPayment extends OrganizationPayment_readonly, OrganizationPayment_required, OrganizationPayment_updatesDisabled {
|
|
5253
|
+
}
|
|
5236
5254
|
export interface EnduserEligibilityResult_readonly extends ClientRecord {
|
|
5237
5255
|
}
|
|
5238
5256
|
export interface EnduserEligibilityResult_updatesDisabled {
|
|
@@ -5341,6 +5359,7 @@ export interface InboxThread extends InboxThread_readonly, InboxThread_required,
|
|
|
5341
5359
|
recentInboundEnduserId?: string;
|
|
5342
5360
|
draftMessageIds?: string[];
|
|
5343
5361
|
scheduledMessageIds?: string[];
|
|
5362
|
+
isDraftOnlyThread?: boolean;
|
|
5344
5363
|
}
|
|
5345
5364
|
export type ModelForName_required = {
|
|
5346
5365
|
inbox_threads: InboxThread_required;
|
|
@@ -5349,6 +5368,7 @@ export type ModelForName_required = {
|
|
|
5349
5368
|
agent_records: AgentRecord_required;
|
|
5350
5369
|
enduser_eligibility_results: EnduserEligibilityResult_required;
|
|
5351
5370
|
integration_logs: IntegrationLog_required;
|
|
5371
|
+
organization_payments: OrganizationPayment_required;
|
|
5352
5372
|
allergy_codes: AllergyCode_required;
|
|
5353
5373
|
diagnosis_codes: DiagnosisCode_required;
|
|
5354
5374
|
suggested_contacts: SuggestedContact_required;
|
|
@@ -5442,6 +5462,7 @@ export interface ModelForName_readonly {
|
|
|
5442
5462
|
agent_records: AgentRecord_readonly;
|
|
5443
5463
|
enduser_eligibility_results: EnduserEligibilityResult_readonly;
|
|
5444
5464
|
integration_logs: IntegrationLog_readonly;
|
|
5465
|
+
organization_payments: OrganizationPayment_readonly;
|
|
5445
5466
|
allergy_codes: AllergyCode_readonly;
|
|
5446
5467
|
diagnosis_codes: DiagnosisCode_readonly;
|
|
5447
5468
|
suggested_contacts: SuggestedContact_readonly;
|
|
@@ -5535,6 +5556,7 @@ export interface ModelForName_updatesDisabled {
|
|
|
5535
5556
|
agent_records: AgentRecord_updatesDisabled;
|
|
5536
5557
|
enduser_eligibility_results: EnduserEligibilityResult_updatesDisabled;
|
|
5537
5558
|
integration_logs: IntegrationLog_updatesDisabled;
|
|
5559
|
+
organization_payments: OrganizationPayment_updatesDisabled;
|
|
5538
5560
|
allergy_codes: AllergyCode_updatesDisabled;
|
|
5539
5561
|
diagnosis_codes: DiagnosisCode_updatesDisabled;
|
|
5540
5562
|
suggested_contacts: SuggestedContact_updatesDisabled;
|
|
@@ -5628,6 +5650,7 @@ export interface ModelForName extends ModelForName_required, ModelForName_readon
|
|
|
5628
5650
|
agent_records: AgentRecord;
|
|
5629
5651
|
enduser_eligibility_results: EnduserEligibilityResult;
|
|
5630
5652
|
integration_logs: IntegrationLog;
|
|
5653
|
+
organization_payments: OrganizationPayment;
|
|
5631
5654
|
allergy_codes: AllergyCode;
|
|
5632
5655
|
diagnosis_codes: DiagnosisCode;
|
|
5633
5656
|
suggested_contacts: SuggestedContact;
|