@tellescope/types-models 1.155.0 → 1.156.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/lib/cjs/index.d.ts +19 -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 +19 -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 +18 -0
package/lib/cjs/index.d.ts
CHANGED
|
@@ -2288,6 +2288,7 @@ export interface AppointmentBookingPage extends AppointmentBookingPage_readonly,
|
|
|
2288
2288
|
publicUserTags?: string[];
|
|
2289
2289
|
publicUserFilterTags?: string[];
|
|
2290
2290
|
appointmentSlotsMaxHeight?: number;
|
|
2291
|
+
includeRelatedContactTypes?: string[];
|
|
2291
2292
|
}
|
|
2292
2293
|
export interface CalendarEventRSVP_readonly extends ClientRecord {
|
|
2293
2294
|
creatorType: SessionType;
|
|
@@ -4230,7 +4231,22 @@ export interface AllergyCode_updatesDisabled {
|
|
|
4230
4231
|
}
|
|
4231
4232
|
export interface AllergyCode extends AllergyCode_readonly, AllergyCode_required, AllergyCode_updatesDisabled {
|
|
4232
4233
|
}
|
|
4234
|
+
export interface IntegrationLog_readonly extends ClientRecord {
|
|
4235
|
+
integration: string;
|
|
4236
|
+
status: "Success" | "Error";
|
|
4237
|
+
type: string;
|
|
4238
|
+
url?: string;
|
|
4239
|
+
payload?: string;
|
|
4240
|
+
response?: string;
|
|
4241
|
+
}
|
|
4242
|
+
export interface IntegrationLog_required {
|
|
4243
|
+
}
|
|
4244
|
+
export interface IntegrationLog_updatesDisabled {
|
|
4245
|
+
}
|
|
4246
|
+
export interface IntegrationLog extends IntegrationLog_readonly, IntegrationLog_required, IntegrationLog_updatesDisabled {
|
|
4247
|
+
}
|
|
4233
4248
|
export type ModelForName_required = {
|
|
4249
|
+
integration_logs: IntegrationLog_required;
|
|
4234
4250
|
allergy_codes: AllergyCode_required;
|
|
4235
4251
|
diagnosis_codes: DiagnosisCode_required;
|
|
4236
4252
|
suggested_contacts: SuggestedContact_required;
|
|
@@ -4316,6 +4332,7 @@ export type ModelForName_required = {
|
|
|
4316
4332
|
};
|
|
4317
4333
|
export type ClientModel_required = ModelForName_required[keyof ModelForName_required];
|
|
4318
4334
|
export interface ModelForName_readonly {
|
|
4335
|
+
integration_logs: IntegrationLog_readonly;
|
|
4319
4336
|
allergy_codes: AllergyCode_readonly;
|
|
4320
4337
|
diagnosis_codes: DiagnosisCode_readonly;
|
|
4321
4338
|
suggested_contacts: SuggestedContact_readonly;
|
|
@@ -4401,6 +4418,7 @@ export interface ModelForName_readonly {
|
|
|
4401
4418
|
}
|
|
4402
4419
|
export type ClientModel_readonly = ModelForName_readonly[keyof ModelForName_readonly];
|
|
4403
4420
|
export interface ModelForName_updatesDisabled {
|
|
4421
|
+
integration_logs: IntegrationLog_updatesDisabled;
|
|
4404
4422
|
allergy_codes: AllergyCode_updatesDisabled;
|
|
4405
4423
|
diagnosis_codes: DiagnosisCode_updatesDisabled;
|
|
4406
4424
|
suggested_contacts: SuggestedContact_updatesDisabled;
|
|
@@ -4486,6 +4504,7 @@ export interface ModelForName_updatesDisabled {
|
|
|
4486
4504
|
}
|
|
4487
4505
|
export type ClientModel_updatesDisabled = ModelForName_updatesDisabled[keyof ModelForName_updatesDisabled];
|
|
4488
4506
|
export interface ModelForName extends ModelForName_required, ModelForName_readonly {
|
|
4507
|
+
integration_logs: IntegrationLog;
|
|
4489
4508
|
allergy_codes: AllergyCode;
|
|
4490
4509
|
diagnosis_codes: DiagnosisCode;
|
|
4491
4510
|
suggested_contacts: SuggestedContact;
|