@awell-health/awell-extensions 2.0.64 → 2.0.65

Sign up to get free protection for your applications and to get access to all the features.
Files changed (25) hide show
  1. package/dist/extensions/healthie/actions/index.d.ts +24 -0
  2. package/dist/extensions/healthie/actions/index.js +2 -0
  3. package/dist/extensions/healthie/actions/index.js.map +1 -1
  4. package/dist/extensions/healthie/actions/lockFormAnswer/config/datapoints.d.ts +1 -0
  5. package/dist/extensions/healthie/actions/lockFormAnswer/config/datapoints.js +5 -0
  6. package/dist/extensions/healthie/actions/lockFormAnswer/config/datapoints.js.map +1 -0
  7. package/dist/extensions/healthie/actions/lockFormAnswer/config/fields.d.ts +18 -0
  8. package/dist/extensions/healthie/actions/lockFormAnswer/config/fields.js +21 -0
  9. package/dist/extensions/healthie/actions/lockFormAnswer/config/fields.js.map +1 -0
  10. package/dist/extensions/healthie/actions/lockFormAnswer/config/index.d.ts +2 -0
  11. package/dist/extensions/healthie/actions/lockFormAnswer/config/index.js +9 -0
  12. package/dist/extensions/healthie/actions/lockFormAnswer/config/index.js.map +1 -0
  13. package/dist/extensions/healthie/actions/lockFormAnswer/index.d.ts +1 -0
  14. package/dist/extensions/healthie/actions/lockFormAnswer/index.js +6 -0
  15. package/dist/extensions/healthie/actions/lockFormAnswer/index.js.map +1 -0
  16. package/dist/extensions/healthie/actions/lockFormAnswer/lockFormAnswerGroup.d.ts +4 -0
  17. package/dist/extensions/healthie/actions/lockFormAnswer/lockFormAnswerGroup.js +35 -0
  18. package/dist/extensions/healthie/actions/lockFormAnswer/lockFormAnswerGroup.js.map +1 -0
  19. package/dist/extensions/healthie/lib/sdk/genql/generated/schema.d.ts +931 -26
  20. package/dist/extensions/healthie/lib/sdk/genql/generated/schema.js +141 -14
  21. package/dist/extensions/healthie/lib/sdk/genql/generated/schema.js.map +1 -1
  22. package/dist/extensions/healthie/lib/sdk/genql/generated/types.d.ts +295 -4
  23. package/dist/extensions/healthie/lib/sdk/genql/generated/types.js +10271 -9543
  24. package/dist/extensions/healthie/lib/sdk/genql/generated/types.js.map +1 -1
  25. package/package.json +1 -1
@@ -8,6 +8,7 @@ export type Scalars = {
8
8
  Int: number;
9
9
  JSON: any;
10
10
  String: string;
11
+ UUID: any;
11
12
  Upload: any;
12
13
  };
13
14
  /** Accepted Insurance Plan */
@@ -663,7 +664,10 @@ export interface AppointmentSetting {
663
664
  late_cancellation_fee: (Scalars['Int'] | null);
664
665
  /** The maximum number of days in advance a client can book */
665
666
  max_days_in_future: (Scalars['String'] | null);
666
- /** Maximum time a client must wait before being able to reschedule a past appointment */
667
+ /**
668
+ * @deprecated No longer supported
669
+ * DEPRECATED: Maximum time a client must wait before being able to reschedule a past appointment
670
+ */
667
671
  maximum_past_reschedule_time: (Scalars['Int'] | null);
668
672
  /** Minimum time before the appointment when client still can cancel it (in minutes) */
669
673
  minimum_advance_cancel_time: (Scalars['Int'] | null);
@@ -673,7 +677,10 @@ export interface AppointmentSetting {
673
677
  minimum_advance_schedule_time: (Scalars['Int'] | null);
674
678
  /** The minimum days in advance a client has to book */
675
679
  minimum_days_in_advance: (Scalars['String'] | null);
676
- /** Minimum time a client must wait before being able to reschedule a past appointment */
680
+ /**
681
+ * @deprecated No longer supported
682
+ * DEPRECATED: Minimum time a client must wait before being able to reschedule a past appointment
683
+ */
677
684
  minimum_past_reschedule_time: (Scalars['Int'] | null);
678
685
  /** The fee (in cents) to use for appointments marked as no show */
679
686
  no_show_fee: (Scalars['Int'] | null);
@@ -706,9 +713,15 @@ export interface AppointmentSetting {
706
713
  reply_to_provider: (Scalars['Boolean'] | null);
707
714
  /** When true, providers and staff will always be asked to select an appointment location when scheduling, even if its a video chat. */
708
715
  require_selected_location_for_all_contact_types: (Scalars['Boolean'] | null);
709
- /** The minimum number of days beyond the current appointment date that the patient can reschedule to */
716
+ /**
717
+ * @deprecated No longer supported
718
+ * DEPRECATED: The minimum number of days beyond the current appointment date that the patient can reschedule to
719
+ */
710
720
  reschedule_max_days_before_date: (Scalars['String'] | null);
711
- /** The maximum number of days beyond the current appointment date that the patient can reschedule to */
721
+ /**
722
+ * @deprecated No longer supported
723
+ * DEPRECATED: The maximum number of days beyond the current appointment date that the patient can reschedule to
724
+ */
712
725
  reschedule_max_days_from_date: (Scalars['String'] | null);
713
726
  /** Give clients their credit back when an appointment is cancelled */
714
727
  restore_credit_on_cancel: (Scalars['Boolean'] | null);
@@ -902,6 +915,10 @@ export interface AppointmentType {
902
915
  require_in_state_clients: (Scalars['Boolean'] | null);
903
916
  /** Whether or not appointment type should use specific providers */
904
917
  require_specific_providers: Scalars['Boolean'];
918
+ /** Whether or not the appointment type is tied to specific rooms */
919
+ require_specific_rooms: Scalars['Boolean'];
920
+ /** rooms associated with appointment type */
921
+ room_appt_type_connections: (RoomApptTypeConnection[] | null);
905
922
  /** position of appointment type when displayed in packages list */
906
923
  row_order: (Scalars['String'] | null);
907
924
  /** A label that includes the length of the appointment */
@@ -1320,8 +1337,14 @@ export interface CalendarColorScheme {
1320
1337
  export interface CalendarViewSetting {
1321
1338
  /** Filter appointments by status */
1322
1339
  appointment_status_filter: Scalars['String'];
1340
+ /** Filter appointments by statuses */
1341
+ appointment_statuses_filter: ((Scalars['String'] | null)[] | null);
1323
1342
  /** ID of appointment type to filter appointments */
1324
1343
  appointment_type_filter: Scalars['ID'];
1344
+ /** Array of IDs of appointment types to filter appointments */
1345
+ appointment_types_filter: ((Scalars['ID'] | null)[] | null);
1346
+ /** Array of IDs of appointment types to filter availabilities */
1347
+ availability_appointment_types_filter: ((Scalars['ID'] | null)[] | null);
1325
1348
  /** Filter availabilities by contact type */
1326
1349
  availability_contact_type_filter: (Scalars['String'] | null);
1327
1350
  /** ID of location to filter availabilities */
@@ -1356,6 +1379,8 @@ export interface CalendarViewSetting {
1356
1379
  id: Scalars['ID'];
1357
1380
  /** ID of location to filter appointments */
1358
1381
  location_filter: (Scalars['ID'] | null);
1382
+ /** IDs of locations to filter appointments */
1383
+ locations_filter: ((Scalars['ID'] | null)[] | null);
1359
1384
  /** Visibility of one time availabilities in calendar */
1360
1385
  one_time_availabilities: (Scalars['Boolean'] | null);
1361
1386
  /** Selected organization calendar view */
@@ -2562,6 +2587,19 @@ export interface CreateClientViaFormPayload {
2562
2587
  messages: ((FieldError | null)[] | null);
2563
2588
  __typename: 'CreateClientViaFormPayload';
2564
2589
  }
2590
+ /** Autogenerated return type of CreateHarborPartner. */
2591
+ export interface CreateHarborPartnerPayload {
2592
+ /**
2593
+ * @deprecated DO NOT USE
2594
+ * DO NOT USE
2595
+ */
2596
+ clientMutationId: (Scalars['String'] | null);
2597
+ /** The list of errors occurred during the mutation */
2598
+ messages: ((FieldError | null)[] | null);
2599
+ /** The success string */
2600
+ success_string: (Scalars['String'] | null);
2601
+ __typename: 'CreateHarborPartnerPayload';
2602
+ }
2565
2603
  /** A custom email */
2566
2604
  export interface CustomEmail {
2567
2605
  /** created at */
@@ -2980,6 +3018,18 @@ export interface DrugAllergenType {
2980
3018
  }
2981
3019
  /** DrugAllergen class enum */
2982
3020
  export type DrugAllergenTypeEnum = 'INGREDIENT' | 'CLASS';
3021
+ /** An allergy/sensitivity/preference for a client */
3022
+ export interface DsiComment {
3023
+ /** The content of the comment */
3024
+ content: Scalars['String'];
3025
+ /** The unique identifier of the comment */
3026
+ id: Scalars['ID'];
3027
+ /** The type of intervention */
3028
+ intervention_type: InterventionType;
3029
+ /** The organization that the comment belongs to */
3030
+ organization_id: Scalars['ID'];
3031
+ __typename: 'DsiComment';
3032
+ }
2983
3033
  /** A processed eligibility check */
2984
3034
  export interface EligibilityCheck {
2985
3035
  /** The time the eligibility check was run */
@@ -3648,6 +3698,8 @@ export interface FormAnswerGroup {
3648
3698
  user: (User | null);
3649
3699
  /** ID of the user */
3650
3700
  user_id: (Scalars['String'] | null);
3701
+ /** The name of the signed stream to track changes in `form_answers` */
3702
+ versioning_stream_name: (Scalars['String'] | null);
3651
3703
  __typename: 'FormAnswerGroup';
3652
3704
  }
3653
3705
  /** Base class for types */
@@ -4540,6 +4592,8 @@ export interface IntegrationOptionType {
4540
4592
  type: (Scalars['String'] | null);
4541
4593
  __typename: 'IntegrationOptionType';
4542
4594
  }
4595
+ /** The type of intervention for a DSI comment */
4596
+ export type InterventionType = 'GENDER_MISMATCHED_DIAGNOSIS' | 'INCOMPATIBLE_DIABETES_DIAGNOSIS' | 'UDI_NOT_UNIQUE' | 'BREAST_CANCER_PROCEDURE_RECOMMENDATION' | 'ALLERGY_DRUG_INTERACTIONS' | 'LAB_BASED_ASSESSMENTS' | 'DRUG_DRUG_INTERACTIONS' | 'VITALS_OUTSIDE_OF_RANGE';
4543
4597
  /** Options for lab filters */
4544
4598
  export interface LabFiltersDataType {
4545
4599
  /** The list of the data clients */
@@ -4880,6 +4934,8 @@ export interface Mutation {
4880
4934
  addIcdCode: (AddIcdCodePayload | null);
4881
4935
  /** Add Living Plate Integration to provider */
4882
4936
  addLivingPlate: (addLivingPlatePayload | null);
4937
+ /** Add a pharmacy to the user */
4938
+ addPharmacy: (addPharmacyPayload | null);
4883
4939
  /** Add a member to the Zus organization */
4884
4940
  addZusUser: (addZusMemberPayload | null);
4885
4941
  /** Apply selected tags on a specific user */
@@ -5000,12 +5056,16 @@ export interface Mutation {
5000
5056
  createCustomModule: (createCustomModulePayload | null);
5001
5057
  /** create Custom Module Form */
5002
5058
  createCustomModuleForm: (createCustomModuleFormPayload | null);
5059
+ /** Create a Custom Navigation Item for a Whitelabel User */
5060
+ createCustomNavItem: (createCustomNavItemPayload | null);
5003
5061
  /** create Document */
5004
5062
  createDocument: (createDocumentPayload | null);
5005
5063
  /** Create dosespot clinician */
5006
5064
  createDosespotClinician: (createDosespotClinicianPayload | null);
5007
5065
  /** create Draft */
5008
5066
  createDraft: (createDraftPayload | null);
5067
+ /** Create a DSI comment */
5068
+ createDsiComment: (createDsiCommentPayload | null);
5009
5069
  /** create ebook */
5010
5070
  createEbook: (createEbookPayload | null);
5011
5071
  /** creates a new Entry */
@@ -5043,6 +5103,10 @@ export interface Mutation {
5043
5103
  createGoogleFit: (createGoogleFitPayload | null);
5044
5104
  /** Create a Group */
5045
5105
  createGroup: (createGroupPayload | null);
5106
+ /** Create a Harbor Partner */
5107
+ createHarborPartner: (CreateHarborPartnerPayload | null);
5108
+ /** Create an API key for a Harbor Partner */
5109
+ createHarborPartnerApiKey: (createHarborPartnerApiKeyPayload | null);
5046
5110
  /** Create a HealthConcern Object */
5047
5111
  createHealthConcern: (createHealthConcernPayload | null);
5048
5112
  /** Create an Immunization */
@@ -5163,6 +5227,8 @@ export interface Mutation {
5163
5227
  deleteAppointmentTypeCptCode: (deleteAppointmentTypeCptCodePayload | null);
5164
5228
  /** Delete auto task generator */
5165
5229
  deleteAutoTaskGenerator: (deleteAutoTaskGeneratorPayload | null);
5230
+ /** Delete autoscoring section */
5231
+ deleteAutoscoring: (deleteAutoscoringPayload | null);
5166
5232
  /** delete Availability */
5167
5233
  deleteAvailability: (deleteAvailabilityPayload | null);
5168
5234
  /** Destroy a Billing Item */
@@ -5197,6 +5263,8 @@ export interface Mutation {
5197
5263
  deleteCustomModule: (deleteCustomModulePayload | null);
5198
5264
  /** Destroy an CustomModuleForm */
5199
5265
  deleteCustomModuleForm: (deleteCustomModuleFormPayload | null);
5266
+ /** Delete a Custom Navigation Item for a Whitelabel User */
5267
+ deleteCustomNavItem: (deleteCustomNavItemPayload | null);
5200
5268
  /** Destroy Dexcom Connection */
5201
5269
  deleteDexcomConnection: (deleteDexcomConnectionPayload | null);
5202
5270
  /** Destroy a Document */
@@ -5308,6 +5376,8 @@ export interface Mutation {
5308
5376
  deleteWebhook: (deleteWebhookPayload | null);
5309
5377
  /** Destroy Withings Connection */
5310
5378
  deleteWithingsConnection: (deleteWithingsConnectionPayload | null);
5379
+ /** Destroy an API key for a Harbor Partner */
5380
+ destroyHarborPartnerApiKey: (destroyHarborPartnerApiKeyPayload | null);
5311
5381
  /** Dismiss All Announcements For A User */
5312
5382
  dismissAllAnnouncements: (dismissAllAnnouncementsPayload | null);
5313
5383
  /** Dismiss Announcement */
@@ -5384,6 +5454,8 @@ export interface Mutation {
5384
5454
  sendCarePlanEmail: (sendCarePlanEmailPayload | null);
5385
5455
  /** Send the trainer an email that the client wants to speak to them */
5386
5456
  sendSpeakToTrainerNotification: (SendSpeakToTrainerNotificationPayload | null);
5457
+ /** Sends a test webhook to the specified URL */
5458
+ sendTestWebhook: (sendTestWebhookPayload | null);
5387
5459
  /** Send Welcome Email to Client */
5388
5460
  sendWelcomeEmail: (SendWelcomeEmailPayload | null);
5389
5461
  /** Add form answer group answers as document viewable by client */
@@ -5445,6 +5517,8 @@ export interface Mutation {
5445
5517
  updateAutoTaskGenerator: (updateAutoTaskGeneratorPayload | null);
5446
5518
  /** update automated insurance billing setting */
5447
5519
  updateAutomatedInsuranceBillingSetting: (updateAutomatedInsuranceBillingSettingPayload | null);
5520
+ /** Update autoscoring */
5521
+ updateAutoscoring: (updateAutoscoringPayload | null);
5448
5522
  /** Update a BillingItem */
5449
5523
  updateBillingItem: (updateBillingItemPayload | null);
5450
5524
  /** Update a Brand and return Brand */
@@ -5495,8 +5569,12 @@ export interface Mutation {
5495
5569
  updateCustomModule: (updateCustomModulePayload | null);
5496
5570
  /** Update an Custom Module Form and return Custom Module Form */
5497
5571
  updateCustomModuleForm: (updateCustomModuleFormPayload | null);
5572
+ /** Update a Custom Navigation Item for a Whitelabel User */
5573
+ updateCustomNavItem: (updateCustomNavItemsPayload | null);
5498
5574
  /** Update a Document and return Document */
5499
5575
  updateDocument: (updateDocumentPayload | null);
5576
+ /** Update a DSI comment */
5577
+ updateDsiComment: (updateDsiCommentPayload | null);
5500
5578
  /** Updates an Entry and returns an Entry */
5501
5579
  updateEntry: (updateEntryPayload | null);
5502
5580
  /** Update an External Calendar */
@@ -5521,6 +5599,8 @@ export interface Mutation {
5521
5599
  updateGoogleFit: (updateGoogleFitPayload | null);
5522
5600
  /** Updates the care plan status for groups */
5523
5601
  updateGroupCarePlan: (updateGroupCarePlanPayload | null);
5602
+ /** Update a Harbor Partner */
5603
+ updateHarborPartner: (UpdateHarborPartnerPayload | null);
5524
5604
  /** Update a HealthConcern Object */
5525
5605
  updateHealthConcern: (updateHealthConcernPayload | null);
5526
5606
  /** Update an Appointment Setting */
@@ -5588,6 +5668,8 @@ export interface Mutation {
5588
5668
  updateProduct: (updateProductPayload | null);
5589
5669
  /** Update ProviderCptCode Objects */
5590
5670
  updateProviderCptCodes: (updateProviderCptCodesPayload | null);
5671
+ /** Update a Received Direct Message */
5672
+ updateReceivedDirectMessage: (updateReceivedDirectMessagePayload | null);
5591
5673
  /** update a received fax */
5592
5674
  updateReceivedFax: (updateReceivedFaxPayload | null);
5593
5675
  /** Update a care plan recommendation */
@@ -6525,6 +6607,8 @@ export interface OrganizationMembership {
6525
6607
  can_unlock_charting_notes: (Scalars['Boolean'] | null);
6526
6608
  /** If true, it will return all organization tasks for current user */
6527
6609
  can_view_all_org_members_tasks: (Scalars['Boolean'] | null);
6610
+ /** If true, the user can access the audit log API query. */
6611
+ can_view_audit_log: (Scalars['Boolean'] | null);
6528
6612
  /** If true, the user can view/edit cms1500s */
6529
6613
  can_view_cms1500s: (Scalars['Boolean'] | null);
6530
6614
  /** If true can use goal favorites that are shared from other members of the organization */
@@ -6754,6 +6838,8 @@ export interface PermissionTemplateType {
6754
6838
  can_submit_cms_1500s_to_office_ally: (Scalars['Boolean'] | null);
6755
6839
  /** If true, it will return all organization tasks for current user */
6756
6840
  can_view_all_org_members_tasks: (Scalars['Boolean'] | null);
6841
+ /** If true, the user can access the audit log API query. */
6842
+ can_view_audit_log: (Scalars['Boolean'] | null);
6757
6843
  /** If true, the user can view/edit cms1500s */
6758
6844
  can_view_cms1500s: (Scalars['Boolean'] | null);
6759
6845
  /** If true can use goal favorites that are shared from other members of the organization */
@@ -7433,6 +7519,8 @@ export interface Query {
7433
7519
  drugAllergen: (DrugAllergenType | null);
7434
7520
  /** Search for allergens by name */
7435
7521
  drugAllergens: (DrugAllergenType[] | null);
7522
+ /** Fetch DSI comment for given intervention_type */
7523
+ dsiComment: (DsiComment | null);
7436
7524
  /** Fetch a link from Fullscript to create a treatment plan for a given user */
7437
7525
  dynamicLink: (Scalars['String'] | null);
7438
7526
  /** fetch embed steps based off of params */
@@ -7524,6 +7612,8 @@ export interface Query {
7524
7612
  initialCms1500: (Cms1500 | null);
7525
7613
  /** Initial form answers for a given user and template */
7526
7614
  initialFormAnswers: (FormAnswer[] | null);
7615
+ /** Initial date of service for a new form answer group */
7616
+ initialServiceDate: (Scalars['ISO8601DateTime'] | null);
7527
7617
  /** appointment types related to offering */
7528
7618
  initializedOfferingIncludes: (OfferingInclude[] | null);
7529
7619
  /** Insurance Authorization belonging to a client */
@@ -7536,7 +7626,10 @@ export interface Query {
7536
7626
  intakeFlow: (IntakeFlowType | null);
7537
7627
  /** Fetch list of available integrations */
7538
7628
  integrationsList: (IntegrationCategoryType[] | null);
7539
- /** Initial date of service for a new form answer group */
7629
+ /**
7630
+ * @deprecated Use `initialServiceDate` instead
7631
+ * Initial date of service for a new form answer group
7632
+ */
7540
7633
  intitialServiceDate: (Scalars['String'] | null);
7541
7634
  /** get the base price for the invoice based off the associated item */
7542
7635
  invoiceBasePrice: (Scalars['String'] | null);
@@ -7776,9 +7869,9 @@ export interface Query {
7776
7869
  sentNotificationRecords: (SentNotificationRecord[] | null);
7777
7870
  /** Get number of SentNotificationRecord entries */
7778
7871
  sentNotificationRecordsCount: (Scalars['Int'] | null);
7779
- /** Fetch paginated Webhooks collection */
7872
+ /** Fetch paginated SentWebhooks collection. SentWebhook records are available for 180 days. */
7780
7873
  sentWebhooks: (SentWebhook[] | null);
7781
- /** Number of Webhooks */
7874
+ /** Number of SentWebhooks. SentWebhook records are available for 180 days. */
7782
7875
  sentWebhooksCount: (Scalars['Int'] | null);
7783
7876
  /** Fetch serving sizes for a food */
7784
7877
  servingSizes: (ServingSize[] | null);
@@ -7915,6 +8008,8 @@ export interface ReceivedDirectMessage {
7915
8008
  listed_sender: (Scalars['String'] | null);
7916
8009
  /** The message body of the direct message */
7917
8010
  message_body: (Scalars['String'] | null);
8011
+ /** The patient associated with the direct message. Will be nil if the direct message is not associated */
8012
+ patient: (User | null);
7918
8013
  /** The subject */
7919
8014
  subject: (Scalars['String'] | null);
7920
8015
  __typename: 'ReceivedDirectMessage';
@@ -8392,6 +8487,8 @@ export interface RequestedPayment {
8392
8487
  offering: (Offering | null);
8393
8488
  /** The ID of the offering to buy */
8394
8489
  offering_id: (Scalars['String'] | null);
8490
+ /** The price of the offering at the time of invoice creation */
8491
+ offering_price_at_invoice_creation: (Scalars['String'] | null);
8395
8492
  /** The requested payer. This will return null if the requested payer exists as a client in Healthie */
8396
8493
  other_requested_payer: (RequestedPayer | null);
8397
8494
  /** The datetime that the invoice was paid */
@@ -8448,6 +8545,18 @@ export interface Room {
8448
8545
  name: (Scalars['String'] | null);
8449
8546
  __typename: 'Room';
8450
8547
  }
8548
+ /** Room appointment type connection */
8549
+ export interface RoomApptTypeConnection {
8550
+ /** The appointment type ID associated with this connection */
8551
+ appointment_type_id: Scalars['ID'];
8552
+ /** The unique identifier of the connection */
8553
+ id: Scalars['ID'];
8554
+ /** Room ID of the room associated with this appointment type connection */
8555
+ room_id: Scalars['ID'];
8556
+ /** Name of the room associated with this appointment type connection */
8557
+ room_name: (Scalars['String'] | null);
8558
+ __typename: 'RoomApptTypeConnection';
8559
+ }
8451
8560
  /** Configuration for the SDK */
8452
8561
  export interface SDKConfig {
8453
8562
  /** Stripe's publishable key */
@@ -8530,6 +8639,8 @@ export interface SentDirectMessage {
8530
8639
  }
8531
8640
  /** SentDirectMessage sorting enum */
8532
8641
  export type SentDirectMessageOrderKeys = 'CREATED_AT_ASC' | 'CREATED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
8642
+ /** Options of what patient XML formats to include in the message */
8643
+ export type SentDirectMessageXml = 'cda' | 'referral_note';
8533
8644
  /** A Sent Fax */
8534
8645
  export interface SentFax {
8535
8646
  /** The creation date of the fax */
@@ -8616,6 +8727,8 @@ export interface ServingSize {
8616
8727
  food_portion_id: (Scalars['ID'] | null);
8617
8728
  /** The unique identifier of the serving size */
8618
8729
  id: Scalars['ID'];
8730
+ /** The macro nutrients of this serving size (Calories, Carbohydrate, Protein, Fat) */
8731
+ macro_nutrients: (FoodNutrient[] | null);
8619
8732
  /** percentage of 100g. For example if modifier is 2.5 then this serving size is 250g */
8620
8733
  modifier: (Scalars['Float'] | null);
8621
8734
  /** The nutrients of this serving size */
@@ -9174,7 +9287,7 @@ export interface Task {
9174
9287
  __typename: 'Task';
9175
9288
  }
9176
9289
  /** Task sorting enum */
9177
- export type TaskOrderKeys = 'TASK_ASC' | 'TASK_DESC' | 'CREATOR_ASC' | 'CREATOR_DESC' | 'ASSIGNEE_ASC' | 'ASSIGNEE_DESC' | 'CREATED_ASC' | 'CREATED_DESC' | 'PRIORITY_ASC' | 'PRIORITY_DESC' | 'DUE_DATE_ASC' | 'DUE_DATE_DESC' | 'CLIENT_NAME_DESC' | 'CLIENT_NAME_ASC' | 'COMPLETED_AT_ASC' | 'COMPLETED_AT_DESC' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
9290
+ export type TaskOrderKeys = 'TASK_ASC' | 'TASK_DESC' | 'CREATOR_ASC' | 'CREATOR_DESC' | 'ASSIGNEE_ASC' | 'ASSIGNEE_DESC' | 'CREATED_ASC' | 'CREATED_DESC' | 'PRIORITY_ASC' | 'PRIORITY_DESC' | 'DUE_DATE_ASC' | 'DUE_DATE_DESC' | 'CLIENT_NAME_DESC' | 'CLIENT_NAME_ASC' | 'COMPLETED_AT_ASC' | 'COMPLETED_AT_DESC' | 'COMPLETED_AT_DESC_INCOMPLETE_FIRST' | 'UPDATED_AT_ASC' | 'UPDATED_AT_DESC';
9178
9291
  /** Autogenerated return type of Toggle2Fa. */
9179
9292
  export interface Toggle2FaPayload {
9180
9293
  /**
@@ -9352,6 +9465,19 @@ export interface UpdateCurrencyPayload {
9352
9465
  success_string: (Scalars['String'] | null);
9353
9466
  __typename: 'UpdateCurrencyPayload';
9354
9467
  }
9468
+ /** Autogenerated return type of UpdateHarborPartner. */
9469
+ export interface UpdateHarborPartnerPayload {
9470
+ /**
9471
+ * @deprecated DO NOT USE
9472
+ * DO NOT USE
9473
+ */
9474
+ clientMutationId: (Scalars['String'] | null);
9475
+ /** The list of errors occurred during the mutation */
9476
+ messages: ((FieldError | null)[] | null);
9477
+ /** The success string */
9478
+ success_string: (Scalars['String'] | null);
9479
+ __typename: 'UpdateHarborPartnerPayload';
9480
+ }
9355
9481
  /** Autogenerated return type of UpdateHiddenSettings. */
9356
9482
  export interface UpdateHiddenSettingsPayload {
9357
9483
  /**
@@ -10495,6 +10621,8 @@ export interface Webhook {
10495
10621
  id: Scalars['ID'];
10496
10622
  /** Whether the webhook is enabled or not */
10497
10623
  is_enabled: Scalars['Boolean'];
10624
+ /** Whether the webhook should retry on failure */
10625
+ should_retry: Scalars['Boolean'];
10498
10626
  /** The secret key used to sign the webhook */
10499
10627
  signature_secret: (Scalars['String'] | null);
10500
10628
  /** The URL that the webhook will be sent to */
@@ -10611,6 +10739,18 @@ export interface addLivingPlatePayload {
10611
10739
  success_string: (Scalars['String'] | null);
10612
10740
  __typename: 'addLivingPlatePayload';
10613
10741
  }
10742
+ /** Autogenerated return type of addPharmacy. */
10743
+ export interface addPharmacyPayload {
10744
+ /**
10745
+ * @deprecated DO NOT USE
10746
+ * DO NOT USE
10747
+ */
10748
+ clientMutationId: (Scalars['String'] | null);
10749
+ /** The list of errors occurred during the mutation */
10750
+ messages: ((FieldError | null)[] | null);
10751
+ pharmacy: (Pharmacy | null);
10752
+ __typename: 'addPharmacyPayload';
10753
+ }
10614
10754
  /** Autogenerated return type of addZusMember. */
10615
10755
  export interface addZusMemberPayload {
10616
10756
  /**
@@ -11265,6 +11405,19 @@ export interface createCustomModulePayload {
11265
11405
  messages: ((FieldError | null)[] | null);
11266
11406
  __typename: 'createCustomModulePayload';
11267
11407
  }
11408
+ /** Autogenerated return type of createCustomNavItem. */
11409
+ export interface createCustomNavItemPayload {
11410
+ /**
11411
+ * @deprecated DO NOT USE
11412
+ * DO NOT USE
11413
+ */
11414
+ clientMutationId: (Scalars['String'] | null);
11415
+ /** The list of errors occurred during the mutation */
11416
+ messages: ((FieldError | null)[] | null);
11417
+ /** The success message */
11418
+ success_string: (Scalars['String'] | null);
11419
+ __typename: 'createCustomNavItemPayload';
11420
+ }
11268
11421
  /** Autogenerated return type of createDocument. */
11269
11422
  export interface createDocumentPayload {
11270
11423
  /**
@@ -11315,6 +11468,18 @@ export interface createDraftPayload {
11315
11468
  messages: ((FieldError | null)[] | null);
11316
11469
  __typename: 'createDraftPayload';
11317
11470
  }
11471
+ /** Autogenerated return type of createDsiComment. */
11472
+ export interface createDsiCommentPayload {
11473
+ /**
11474
+ * @deprecated DO NOT USE
11475
+ * DO NOT USE
11476
+ */
11477
+ clientMutationId: (Scalars['String'] | null);
11478
+ dsi_comment: (DsiComment | null);
11479
+ /** The list of errors occurred during the mutation */
11480
+ messages: ((FieldError | null)[] | null);
11481
+ __typename: 'createDsiCommentPayload';
11482
+ }
11318
11483
  /** Autogenerated return type of createEbook. */
11319
11484
  export interface createEbookPayload {
11320
11485
  /**
@@ -11520,6 +11685,19 @@ export interface createGroupPayload {
11520
11685
  user_group: (UserGroup | null);
11521
11686
  __typename: 'createGroupPayload';
11522
11687
  }
11688
+ /** Autogenerated return type of createHarborPartnerApiKey. */
11689
+ export interface createHarborPartnerApiKeyPayload {
11690
+ /**
11691
+ * @deprecated DO NOT USE
11692
+ * DO NOT USE
11693
+ */
11694
+ clientMutationId: (Scalars['String'] | null);
11695
+ /** The list of errors occurred during the mutation */
11696
+ messages: ((FieldError | null)[] | null);
11697
+ /** The success string */
11698
+ success_string: (Scalars['String'] | null);
11699
+ __typename: 'createHarborPartnerApiKeyPayload';
11700
+ }
11523
11701
  /** Autogenerated return type of createHealthConcern. */
11524
11702
  export interface createHealthConcernPayload {
11525
11703
  /**
@@ -11768,6 +11946,8 @@ export interface createOrganizationMembershipPayload {
11768
11946
  * DO NOT USE
11769
11947
  */
11770
11948
  clientMutationId: (Scalars['String'] | null);
11949
+ /** The current authenticated user (for client state management) */
11950
+ currentUser: (User | null);
11771
11951
  /** The list of errors occurred during the mutation */
11772
11952
  messages: ((FieldError | null)[] | null);
11773
11953
  organizationMembership: (OrganizationMembership | null);
@@ -11780,6 +11960,8 @@ export interface createOrganizationPayload {
11780
11960
  * DO NOT USE
11781
11961
  */
11782
11962
  clientMutationId: (Scalars['String'] | null);
11963
+ /** The current authenticated user (for client state management) */
11964
+ currentUser: (User | null);
11783
11965
  /** The list of errors occurred during the mutation */
11784
11966
  messages: ((FieldError | null)[] | null);
11785
11967
  organization: (Organization | null);
@@ -12233,6 +12415,18 @@ export interface deleteAutoTaskGeneratorPayload {
12233
12415
  messages: ((FieldError | null)[] | null);
12234
12416
  __typename: 'deleteAutoTaskGeneratorPayload';
12235
12417
  }
12418
+ /** Autogenerated return type of deleteAutoscoring. */
12419
+ export interface deleteAutoscoringPayload {
12420
+ /**
12421
+ * @deprecated DO NOT USE
12422
+ * DO NOT USE
12423
+ */
12424
+ clientMutationId: (Scalars['String'] | null);
12425
+ /** The list of errors occurred during the mutation */
12426
+ messages: ((FieldError | null)[] | null);
12427
+ success_string: (Scalars['String'] | null);
12428
+ __typename: 'deleteAutoscoringPayload';
12429
+ }
12236
12430
  /** Autogenerated return type of deleteAvailability. */
12237
12431
  export interface deleteAvailabilityPayload {
12238
12432
  availability: (Availability | null);
@@ -12437,6 +12631,19 @@ export interface deleteCustomModulePayload {
12437
12631
  messages: ((FieldError | null)[] | null);
12438
12632
  __typename: 'deleteCustomModulePayload';
12439
12633
  }
12634
+ /** Autogenerated return type of deleteCustomNavItem. */
12635
+ export interface deleteCustomNavItemPayload {
12636
+ /**
12637
+ * @deprecated DO NOT USE
12638
+ * DO NOT USE
12639
+ */
12640
+ clientMutationId: (Scalars['String'] | null);
12641
+ /** The list of errors occurred during the mutation */
12642
+ messages: ((FieldError | null)[] | null);
12643
+ /** The success message */
12644
+ success_string: (Scalars['String'] | null);
12645
+ __typename: 'deleteCustomNavItemPayload';
12646
+ }
12440
12647
  /** Autogenerated return type of deleteDexcomConnection. */
12441
12648
  export interface deleteDexcomConnectionPayload {
12442
12649
  /**
@@ -13074,6 +13281,19 @@ export interface destroyFaxAcctInfoPayload {
13074
13281
  success_string: (Scalars['String'] | null);
13075
13282
  __typename: 'destroyFaxAcctInfoPayload';
13076
13283
  }
13284
+ /** Autogenerated return type of destroyHarborPartnerApiKey. */
13285
+ export interface destroyHarborPartnerApiKeyPayload {
13286
+ /**
13287
+ * @deprecated DO NOT USE
13288
+ * DO NOT USE
13289
+ */
13290
+ clientMutationId: (Scalars['String'] | null);
13291
+ /** The list of errors occurred during the mutation */
13292
+ messages: ((FieldError | null)[] | null);
13293
+ /** The success string */
13294
+ success_string: (Scalars['String'] | null);
13295
+ __typename: 'destroyHarborPartnerApiKeyPayload';
13296
+ }
13077
13297
  /** Autogenerated return type of destroyMedication. */
13078
13298
  export interface destroyMedicationPayload {
13079
13299
  /**
@@ -13415,6 +13635,18 @@ export interface sendCarePlanEmailPayload {
13415
13635
  messages: ((FieldError | null)[] | null);
13416
13636
  __typename: 'sendCarePlanEmailPayload';
13417
13637
  }
13638
+ /** Autogenerated return type of sendTestWebhook. */
13639
+ export interface sendTestWebhookPayload {
13640
+ /**
13641
+ * @deprecated DO NOT USE
13642
+ * DO NOT USE
13643
+ */
13644
+ clientMutationId: (Scalars['String'] | null);
13645
+ /** The list of errors occurred during the mutation */
13646
+ messages: ((FieldError | null)[] | null);
13647
+ sent: Scalars['Boolean'];
13648
+ __typename: 'sendTestWebhookPayload';
13649
+ }
13418
13650
  /** Autogenerated return type of shareAnswersAsDocument. */
13419
13651
  export interface shareAnswersAsDocumentPayload {
13420
13652
  /**
@@ -13671,6 +13903,18 @@ export interface updateAutomatedInsuranceBillingSettingPayload {
13671
13903
  messages: ((FieldError | null)[] | null);
13672
13904
  __typename: 'updateAutomatedInsuranceBillingSettingPayload';
13673
13905
  }
13906
+ /** Autogenerated return type of updateAutoscoring. */
13907
+ export interface updateAutoscoringPayload {
13908
+ /**
13909
+ * @deprecated DO NOT USE
13910
+ * DO NOT USE
13911
+ */
13912
+ clientMutationId: (Scalars['String'] | null);
13913
+ /** The list of errors occurred during the mutation */
13914
+ messages: ((FieldError | null)[] | null);
13915
+ success_string: (Scalars['String'] | null);
13916
+ __typename: 'updateAutoscoringPayload';
13917
+ }
13674
13918
  /** Autogenerated return type of updateBillingItem. */
13675
13919
  export interface updateBillingItemPayload {
13676
13920
  billingItem: (BillingItem | null);
@@ -13935,6 +14179,19 @@ export interface updateCustomModulePayload {
13935
14179
  messages: ((FieldError | null)[] | null);
13936
14180
  __typename: 'updateCustomModulePayload';
13937
14181
  }
14182
+ /** Autogenerated return type of updateCustomNavItems. */
14183
+ export interface updateCustomNavItemsPayload {
14184
+ /**
14185
+ * @deprecated DO NOT USE
14186
+ * DO NOT USE
14187
+ */
14188
+ clientMutationId: (Scalars['String'] | null);
14189
+ /** The list of errors occurred during the mutation */
14190
+ messages: ((FieldError | null)[] | null);
14191
+ /** The success message */
14192
+ success_string: (Scalars['String'] | null);
14193
+ __typename: 'updateCustomNavItemsPayload';
14194
+ }
13938
14195
  /** Autogenerated return type of updateDocument. */
13939
14196
  export interface updateDocumentPayload {
13940
14197
  /**
@@ -13947,6 +14204,18 @@ export interface updateDocumentPayload {
13947
14204
  messages: ((FieldError | null)[] | null);
13948
14205
  __typename: 'updateDocumentPayload';
13949
14206
  }
14207
+ /** Autogenerated return type of updateDsiComment. */
14208
+ export interface updateDsiCommentPayload {
14209
+ /**
14210
+ * @deprecated DO NOT USE
14211
+ * DO NOT USE
14212
+ */
14213
+ clientMutationId: (Scalars['String'] | null);
14214
+ dsi_comment: (DsiComment | null);
14215
+ /** The list of errors occurred during the mutation */
14216
+ messages: ((FieldError | null)[] | null);
14217
+ __typename: 'updateDsiCommentPayload';
14218
+ }
13950
14219
  /** Autogenerated return type of updateEntry. */
13951
14220
  export interface updateEntryPayload {
13952
14221
  /**
@@ -14443,6 +14712,18 @@ export interface updateProviderCptCodesPayload {
14443
14712
  messages: ((FieldError | null)[] | null);
14444
14713
  __typename: 'updateProviderCptCodesPayload';
14445
14714
  }
14715
+ /** Autogenerated return type of updateReceivedDirectMessage. */
14716
+ export interface updateReceivedDirectMessagePayload {
14717
+ /**
14718
+ * @deprecated DO NOT USE
14719
+ * DO NOT USE
14720
+ */
14721
+ clientMutationId: (Scalars['String'] | null);
14722
+ /** The list of errors occurred during the mutation */
14723
+ messages: ((FieldError | null)[] | null);
14724
+ received_direct_message: (ReceivedDirectMessage | null);
14725
+ __typename: 'updateReceivedDirectMessagePayload';
14726
+ }
14446
14727
  /** Autogenerated return type of updateReceivedFax. */
14447
14728
  export interface updateReceivedFaxPayload {
14448
14729
  /**
@@ -15519,7 +15800,10 @@ export interface AppointmentSettingGenqlSelection {
15519
15800
  late_cancellation_fee?: boolean | number;
15520
15801
  /** The maximum number of days in advance a client can book */
15521
15802
  max_days_in_future?: boolean | number;
15522
- /** Maximum time a client must wait before being able to reschedule a past appointment */
15803
+ /**
15804
+ * @deprecated No longer supported
15805
+ * DEPRECATED: Maximum time a client must wait before being able to reschedule a past appointment
15806
+ */
15523
15807
  maximum_past_reschedule_time?: boolean | number;
15524
15808
  /** Minimum time before the appointment when client still can cancel it (in minutes) */
15525
15809
  minimum_advance_cancel_time?: boolean | number;
@@ -15529,7 +15813,10 @@ export interface AppointmentSettingGenqlSelection {
15529
15813
  minimum_advance_schedule_time?: boolean | number;
15530
15814
  /** The minimum days in advance a client has to book */
15531
15815
  minimum_days_in_advance?: boolean | number;
15532
- /** Minimum time a client must wait before being able to reschedule a past appointment */
15816
+ /**
15817
+ * @deprecated No longer supported
15818
+ * DEPRECATED: Minimum time a client must wait before being able to reschedule a past appointment
15819
+ */
15533
15820
  minimum_past_reschedule_time?: boolean | number;
15534
15821
  /** The fee (in cents) to use for appointments marked as no show */
15535
15822
  no_show_fee?: boolean | number;
@@ -15562,9 +15849,15 @@ export interface AppointmentSettingGenqlSelection {
15562
15849
  reply_to_provider?: boolean | number;
15563
15850
  /** When true, providers and staff will always be asked to select an appointment location when scheduling, even if its a video chat. */
15564
15851
  require_selected_location_for_all_contact_types?: boolean | number;
15565
- /** The minimum number of days beyond the current appointment date that the patient can reschedule to */
15852
+ /**
15853
+ * @deprecated No longer supported
15854
+ * DEPRECATED: The minimum number of days beyond the current appointment date that the patient can reschedule to
15855
+ */
15566
15856
  reschedule_max_days_before_date?: boolean | number;
15567
- /** The maximum number of days beyond the current appointment date that the patient can reschedule to */
15857
+ /**
15858
+ * @deprecated No longer supported
15859
+ * DEPRECATED: The maximum number of days beyond the current appointment date that the patient can reschedule to
15860
+ */
15568
15861
  reschedule_max_days_from_date?: boolean | number;
15569
15862
  /** Give clients their credit back when an appointment is cancelled */
15570
15863
  restore_credit_on_cancel?: boolean | number;
@@ -15817,6 +16110,10 @@ export interface AppointmentTypeGenqlSelection {
15817
16110
  require_in_state_clients?: boolean | number;
15818
16111
  /** Whether or not appointment type should use specific providers */
15819
16112
  require_specific_providers?: boolean | number;
16113
+ /** Whether or not the appointment type is tied to specific rooms */
16114
+ require_specific_rooms?: boolean | number;
16115
+ /** rooms associated with appointment type */
16116
+ room_appt_type_connections?: RoomApptTypeConnectionGenqlSelection;
15820
16117
  /** position of appointment type when displayed in packages list */
15821
16118
  row_order?: boolean | number;
15822
16119
  /** A label that includes the length of the appointment */
@@ -15886,26 +16183,18 @@ export interface AppointmentTypeAppointmentSettingInput {
15886
16183
  invoice_clients_without_payment_method?: (Scalars['Boolean'] | null);
15887
16184
  /** The maximum number of days in the future when appointments can be scheduled */
15888
16185
  max_days_in_future?: (Scalars['String'] | null);
15889
- /** The maximum number of minutes in the past that the patient can reschedule */
15890
- maximum_past_reschedule_time?: (Scalars['Int'] | null);
15891
16186
  /** Prevents the patient from canceling too close the appointment time. In minutes */
15892
16187
  minimum_advance_cancel_time?: (Scalars['Int'] | null);
15893
16188
  /** Prevents the patient from rescheduling too close the appointment time. In minutes */
15894
16189
  minimum_advance_reschedule_time?: (Scalars['Int'] | null);
15895
16190
  /** Prevents the patient from scheduling too close to the desired appointment time. In minutes */
15896
16191
  minimum_advance_schedule_time?: (Scalars['Int'] | null);
15897
- /** The minimum number of minutes in the past that the patient can reschedule */
15898
- minimum_past_reschedule_time?: (Scalars['Int'] | null);
15899
16192
  /** The maximum number of times a patient can reschedule an appointment */
15900
16193
  patient_reschedule_count_cap?: (Scalars['String'] | null);
15901
16194
  /** Whether the appointment setting prevents booking without credit */
15902
16195
  prevent_no_credit_booking?: (Scalars['Boolean'] | null);
15903
16196
  /** The pricing for the appointment setting */
15904
16197
  pricing?: (Scalars['String'] | null);
15905
- /** The maximum number of days before the appointment that the patient can reschedule */
15906
- reschedule_max_days_before_date?: (Scalars['String'] | null);
15907
- /** The maximum number of days after the appointment that the patient can reschedule */
15908
- reschedule_max_days_from_date?: (Scalars['String'] | null);
15909
16198
  /** Whether the appointment setting allows same day appointments */
15910
16199
  same_day_appointments?: (Scalars['Boolean'] | null);
15911
16200
  /** Whether the appointment setting sends a booking notice */
@@ -16497,8 +16786,14 @@ export interface CalendarColorSchemeInput {
16497
16786
  export interface CalendarViewSettingGenqlSelection {
16498
16787
  /** Filter appointments by status */
16499
16788
  appointment_status_filter?: boolean | number;
16789
+ /** Filter appointments by statuses */
16790
+ appointment_statuses_filter?: boolean | number;
16500
16791
  /** ID of appointment type to filter appointments */
16501
16792
  appointment_type_filter?: boolean | number;
16793
+ /** Array of IDs of appointment types to filter appointments */
16794
+ appointment_types_filter?: boolean | number;
16795
+ /** Array of IDs of appointment types to filter availabilities */
16796
+ availability_appointment_types_filter?: boolean | number;
16502
16797
  /** Filter availabilities by contact type */
16503
16798
  availability_contact_type_filter?: boolean | number;
16504
16799
  /** ID of location to filter availabilities */
@@ -16533,6 +16828,8 @@ export interface CalendarViewSettingGenqlSelection {
16533
16828
  id?: boolean | number;
16534
16829
  /** ID of location to filter appointments */
16535
16830
  location_filter?: boolean | number;
16831
+ /** IDs of locations to filter appointments */
16832
+ locations_filter?: boolean | number;
16536
16833
  /** Visibility of one time availabilities in calendar */
16537
16834
  one_time_availabilities?: boolean | number;
16538
16835
  /** Selected organization calendar view */
@@ -18228,6 +18525,29 @@ export interface CreateClientViaFormPayloadGenqlSelection {
18228
18525
  __typename?: boolean | number;
18229
18526
  __scalar?: boolean | number;
18230
18527
  }
18528
+ /** Autogenerated input type of CreateHarborPartner */
18529
+ export interface CreateHarborPartnerInput {
18530
+ /** The name of the Harbor Partner */
18531
+ name: Scalars['String'];
18532
+ /** The URL of the Harbor Partner */
18533
+ url?: (Scalars['String'] | null);
18534
+ /** The description of the Harbor Partner */
18535
+ description?: (Scalars['String'] | null);
18536
+ }
18537
+ /** Autogenerated return type of CreateHarborPartner. */
18538
+ export interface CreateHarborPartnerPayloadGenqlSelection {
18539
+ /**
18540
+ * @deprecated DO NOT USE
18541
+ * DO NOT USE
18542
+ */
18543
+ clientMutationId?: boolean | number;
18544
+ /** The list of errors occurred during the mutation */
18545
+ messages?: FieldErrorGenqlSelection;
18546
+ /** The success string */
18547
+ success_string?: boolean | number;
18548
+ __typename?: boolean | number;
18549
+ __scalar?: boolean | number;
18550
+ }
18231
18551
  /** A custom email */
18232
18552
  export interface CustomEmailGenqlSelection {
18233
18553
  /** created at */
@@ -18462,6 +18782,35 @@ export interface CustomModuleFormGenqlSelection {
18462
18782
  __typename?: boolean | number;
18463
18783
  __scalar?: boolean | number;
18464
18784
  }
18785
+ /** CustomSidebarOverride Inputs */
18786
+ export interface CustomNavItemInputs {
18787
+ /** Append current user ID to Custom Navigation Sidebar Item */
18788
+ append_current_user_id?: (Scalars['Boolean'] | null);
18789
+ /** Icon of the image that will display on the Custom Navigation Sidebar Item */
18790
+ icon?: (Scalars['String'] | null);
18791
+ /** If Custom Navigation Sidebar Item displays for Providers */
18792
+ is_provider_side: Scalars['Boolean'];
18793
+ /** Label of Custom Navigation Sidebar Item */
18794
+ label: Scalars['String'];
18795
+ /** Location of Custom Navigation Sidebar Items */
18796
+ nav_section: Scalars['String'];
18797
+ /** If the Custom Navigation Sidebar Item will open in an iframe within the Healthie UI */
18798
+ open_in_iframe?: (Scalars['Boolean'] | null);
18799
+ /** Position number for setting a specific nav link order */
18800
+ position?: (Scalars['Int'] | null);
18801
+ /** If Custom Navigation Sidebar Item is restricted to a User Group */
18802
+ restrict_to_user_group?: (Scalars['Boolean'] | null);
18803
+ /** If Custom Navigation Sidebar Item is displayed */
18804
+ show: Scalars['Boolean'];
18805
+ /** The link to the custom icon that will be displayed on the Custom Navigation Sidebar Item */
18806
+ svg_url?: (Scalars['String'] | null);
18807
+ /** If Custom Navigation Sidebar Item should open in new tab */
18808
+ target?: (Scalars['String'] | null);
18809
+ /** The link that the Custom Navigation Sidebar Item will direct to */
18810
+ url?: (Scalars['String'] | null);
18811
+ /** User Group ID that sees the Custom Navigation Sidebar Item */
18812
+ user_group_id?: (Scalars['String'] | null);
18813
+ }
18465
18814
  /** A custom sidebar override */
18466
18815
  export interface CustomSidebarOverrideGenqlSelection {
18467
18816
  /** The icon of the image that will be display on the sidebar */
@@ -18742,6 +19091,19 @@ export interface DrugAllergenTypeGenqlSelection {
18742
19091
  __typename?: boolean | number;
18743
19092
  __scalar?: boolean | number;
18744
19093
  }
19094
+ /** An allergy/sensitivity/preference for a client */
19095
+ export interface DsiCommentGenqlSelection {
19096
+ /** The content of the comment */
19097
+ content?: boolean | number;
19098
+ /** The unique identifier of the comment */
19099
+ id?: boolean | number;
19100
+ /** The type of intervention */
19101
+ intervention_type?: boolean | number;
19102
+ /** The organization that the comment belongs to */
19103
+ organization_id?: boolean | number;
19104
+ __typename?: boolean | number;
19105
+ __scalar?: boolean | number;
19106
+ }
18745
19107
  /** A processed eligibility check */
18746
19108
  export interface EligibilityCheckGenqlSelection {
18747
19109
  /** The time the eligibility check was run */
@@ -19554,6 +19916,8 @@ export interface FormAnswerGroupGenqlSelection {
19554
19916
  user?: UserGenqlSelection;
19555
19917
  /** ID of the user */
19556
19918
  user_id?: boolean | number;
19919
+ /** The name of the signed stream to track changes in `form_answers` */
19920
+ versioning_stream_name?: boolean | number;
19557
19921
  __typename?: boolean | number;
19558
19922
  __scalar?: boolean | number;
19559
19923
  }
@@ -21097,6 +21461,13 @@ export interface MutationGenqlSelection {
21097
21461
  input?: (addLivingPlateInput | null);
21098
21462
  };
21099
21463
  });
21464
+ /** Add a pharmacy to the user */
21465
+ addPharmacy?: (addPharmacyPayloadGenqlSelection & {
21466
+ __args?: {
21467
+ /** Parameters for addPharmacy */
21468
+ input?: (addPharmacyInput | null);
21469
+ };
21470
+ });
21100
21471
  /** Add a member to the Zus organization */
21101
21472
  addZusUser?: (addZusMemberPayloadGenqlSelection & {
21102
21473
  __args?: {
@@ -21517,6 +21888,13 @@ export interface MutationGenqlSelection {
21517
21888
  input?: (createCustomModuleFormInput | null);
21518
21889
  };
21519
21890
  });
21891
+ /** Create a Custom Navigation Item for a Whitelabel User */
21892
+ createCustomNavItem?: (createCustomNavItemPayloadGenqlSelection & {
21893
+ __args?: {
21894
+ /** Parameters for createCustomNavItem */
21895
+ input?: (createCustomNavItemInput | null);
21896
+ };
21897
+ });
21520
21898
  /** create Document */
21521
21899
  createDocument?: (createDocumentPayloadGenqlSelection & {
21522
21900
  __args?: {
@@ -21538,6 +21916,13 @@ export interface MutationGenqlSelection {
21538
21916
  input?: (createDraftInput | null);
21539
21917
  };
21540
21918
  });
21919
+ /** Create a DSI comment */
21920
+ createDsiComment?: (createDsiCommentPayloadGenqlSelection & {
21921
+ __args?: {
21922
+ /** Parameters for createDsiComment */
21923
+ input?: (createDsiCommentInput | null);
21924
+ };
21925
+ });
21541
21926
  /** create ebook */
21542
21927
  createEbook?: (createEbookPayloadGenqlSelection & {
21543
21928
  __args?: {
@@ -21660,6 +22045,20 @@ export interface MutationGenqlSelection {
21660
22045
  input?: (createGroupInput | null);
21661
22046
  };
21662
22047
  });
22048
+ /** Create a Harbor Partner */
22049
+ createHarborPartner?: (CreateHarborPartnerPayloadGenqlSelection & {
22050
+ __args?: {
22051
+ /** Parameters for CreateHarborPartner */
22052
+ input?: (CreateHarborPartnerInput | null);
22053
+ };
22054
+ });
22055
+ /** Create an API key for a Harbor Partner */
22056
+ createHarborPartnerApiKey?: (createHarborPartnerApiKeyPayloadGenqlSelection & {
22057
+ __args?: {
22058
+ /** Parameters for createHarborPartnerApiKey */
22059
+ input?: (createHarborPartnerApiKeyInput | null);
22060
+ };
22061
+ });
21663
22062
  /** Create a HealthConcern Object */
21664
22063
  createHealthConcern?: (createHealthConcernPayloadGenqlSelection & {
21665
22064
  __args?: {
@@ -22080,6 +22479,13 @@ export interface MutationGenqlSelection {
22080
22479
  input?: (deleteAutoTaskGeneratorInput | null);
22081
22480
  };
22082
22481
  });
22482
+ /** Delete autoscoring section */
22483
+ deleteAutoscoring?: (deleteAutoscoringPayloadGenqlSelection & {
22484
+ __args?: {
22485
+ /** Parameters for deleteAutoscoring */
22486
+ input?: (deleteAutoscoringInput | null);
22487
+ };
22488
+ });
22083
22489
  /** delete Availability */
22084
22490
  deleteAvailability?: (deleteAvailabilityPayloadGenqlSelection & {
22085
22491
  __args?: {
@@ -22199,6 +22605,13 @@ export interface MutationGenqlSelection {
22199
22605
  input?: (deleteCustomModuleFormInput | null);
22200
22606
  };
22201
22607
  });
22608
+ /** Delete a Custom Navigation Item for a Whitelabel User */
22609
+ deleteCustomNavItem?: (deleteCustomNavItemPayloadGenqlSelection & {
22610
+ __args?: {
22611
+ /** Parameters for deleteCustomNavItem */
22612
+ input?: (deleteCustomNavItemInput | null);
22613
+ };
22614
+ });
22202
22615
  /** Destroy Dexcom Connection */
22203
22616
  deleteDexcomConnection?: (deleteDexcomConnectionPayloadGenqlSelection & {
22204
22617
  __args?: {
@@ -22580,6 +22993,13 @@ export interface MutationGenqlSelection {
22580
22993
  input?: (deleteWithingsConnectionInput | null);
22581
22994
  };
22582
22995
  });
22996
+ /** Destroy an API key for a Harbor Partner */
22997
+ destroyHarborPartnerApiKey?: (destroyHarborPartnerApiKeyPayloadGenqlSelection & {
22998
+ __args?: {
22999
+ /** Parameters for destroyHarborPartnerApiKey */
23000
+ input?: (destroyHarborPartnerApiKeyInput | null);
23001
+ };
23002
+ });
22583
23003
  /** Dismiss All Announcements For A User */
22584
23004
  dismissAllAnnouncements?: (dismissAllAnnouncementsPayloadGenqlSelection & {
22585
23005
  __args?: {
@@ -22846,6 +23266,13 @@ export interface MutationGenqlSelection {
22846
23266
  input?: (SendSpeakToTrainerNotificationInput | null);
22847
23267
  };
22848
23268
  });
23269
+ /** Sends a test webhook to the specified URL */
23270
+ sendTestWebhook?: (sendTestWebhookPayloadGenqlSelection & {
23271
+ __args?: {
23272
+ /** Parameters for sendTestWebhook */
23273
+ input?: (sendTestWebhookInput | null);
23274
+ };
23275
+ });
22849
23276
  /** Send Welcome Email to Client */
22850
23277
  sendWelcomeEmail?: (SendWelcomeEmailPayloadGenqlSelection & {
22851
23278
  __args?: {
@@ -23052,6 +23479,13 @@ export interface MutationGenqlSelection {
23052
23479
  input?: (updateAutomatedInsuranceBillingSettingInput | null);
23053
23480
  };
23054
23481
  });
23482
+ /** Update autoscoring */
23483
+ updateAutoscoring?: (updateAutoscoringPayloadGenqlSelection & {
23484
+ __args?: {
23485
+ /** Parameters for updateAutoscoring */
23486
+ input?: (updateAutoscoringInput | null);
23487
+ };
23488
+ });
23055
23489
  /** Update a BillingItem */
23056
23490
  updateBillingItem?: (updateBillingItemPayloadGenqlSelection & {
23057
23491
  __args?: {
@@ -23227,6 +23661,13 @@ export interface MutationGenqlSelection {
23227
23661
  input?: (updateCustomModuleFormInput | null);
23228
23662
  };
23229
23663
  });
23664
+ /** Update a Custom Navigation Item for a Whitelabel User */
23665
+ updateCustomNavItem?: (updateCustomNavItemsPayloadGenqlSelection & {
23666
+ __args?: {
23667
+ /** Parameters for updateCustomNavItems */
23668
+ input?: (updateCustomNavItemsInput | null);
23669
+ };
23670
+ });
23230
23671
  /** Update a Document and return Document */
23231
23672
  updateDocument?: (updateDocumentPayloadGenqlSelection & {
23232
23673
  __args?: {
@@ -23234,6 +23675,13 @@ export interface MutationGenqlSelection {
23234
23675
  input?: (updateDocumentInput | null);
23235
23676
  };
23236
23677
  });
23678
+ /** Update a DSI comment */
23679
+ updateDsiComment?: (updateDsiCommentPayloadGenqlSelection & {
23680
+ __args?: {
23681
+ /** Parameters for updateDsiComment */
23682
+ input?: (updateDsiCommentInput | null);
23683
+ };
23684
+ });
23237
23685
  /** Updates an Entry and returns an Entry */
23238
23686
  updateEntry?: (updateEntryPayloadGenqlSelection & {
23239
23687
  __args?: {
@@ -23318,6 +23766,13 @@ export interface MutationGenqlSelection {
23318
23766
  input?: (updateGroupCarePlanInput | null);
23319
23767
  };
23320
23768
  });
23769
+ /** Update a Harbor Partner */
23770
+ updateHarborPartner?: (UpdateHarborPartnerPayloadGenqlSelection & {
23771
+ __args?: {
23772
+ /** Parameters for UpdateHarborPartner */
23773
+ input?: (UpdateHarborPartnerInput | null);
23774
+ };
23775
+ });
23321
23776
  /** Update a HealthConcern Object */
23322
23777
  updateHealthConcern?: (updateHealthConcernPayloadGenqlSelection & {
23323
23778
  __args?: {
@@ -23555,6 +24010,13 @@ export interface MutationGenqlSelection {
23555
24010
  input?: (updateProviderCptCodesInput | null);
23556
24011
  };
23557
24012
  });
24013
+ /** Update a Received Direct Message */
24014
+ updateReceivedDirectMessage?: (updateReceivedDirectMessagePayloadGenqlSelection & {
24015
+ __args?: {
24016
+ /** Parameters for updateReceivedDirectMessage */
24017
+ input?: (updateReceivedDirectMessageInput | null);
24018
+ };
24019
+ });
23558
24020
  /** update a received fax */
23559
24021
  updateReceivedFax?: (updateReceivedFaxPayloadGenqlSelection & {
23560
24022
  __args?: {
@@ -24664,7 +25126,7 @@ export interface OrganizationGenqlSelection {
24664
25126
  provider_ids?: ((Scalars['ID'] | null)[] | null);
24665
25127
  should_paginate?: (Scalars['Boolean'] | null);
24666
25128
  with_private_notes_for_id?: (Scalars['String'] | null);
24667
- /** When passed in, only providers with ONE of the passed-in tags will be returned. */
25129
+ /** When passed in, only providers with at least ONE of the passed-in tags will be returned. */
24668
25130
  with_tag_ids?: ((Scalars['ID'] | null)[] | null);
24669
25131
  };
24670
25132
  });
@@ -24881,6 +25343,8 @@ export interface OrganizationMembershipGenqlSelection {
24881
25343
  can_unlock_charting_notes?: boolean | number;
24882
25344
  /** If true, it will return all organization tasks for current user */
24883
25345
  can_view_all_org_members_tasks?: boolean | number;
25346
+ /** If true, the user can access the audit log API query. */
25347
+ can_view_audit_log?: boolean | number;
24884
25348
  /** If true, the user can view/edit cms1500s */
24885
25349
  can_view_cms1500s?: boolean | number;
24886
25350
  /** If true can use goal favorites that are shared from other members of the organization */
@@ -25164,6 +25628,8 @@ export interface PermissionTemplateTypeGenqlSelection {
25164
25628
  can_submit_cms_1500s_to_office_ally?: boolean | number;
25165
25629
  /** If true, it will return all organization tasks for current user */
25166
25630
  can_view_all_org_members_tasks?: boolean | number;
25631
+ /** If true, the user can access the audit log API query. */
25632
+ can_view_audit_log?: boolean | number;
25167
25633
  /** If true, the user can view/edit cms1500s */
25168
25634
  can_view_cms1500s?: boolean | number;
25169
25635
  /** If true can use goal favorites that are shared from other members of the organization */
@@ -25938,6 +26404,7 @@ export interface QueryGenqlSelection {
25938
26404
  /** Returns a json hash of the number of appointments in each day of the month. The month is the month that the passed day is in. */
25939
26405
  appointmentNumberPerDayOfMonth?: {
25940
26406
  __args: {
26407
+ /** If not provided, defaults to the current date */
25941
26408
  date?: (Scalars['String'] | null);
25942
26409
  include_blockers?: (Scalars['Boolean'] | null);
25943
26410
  };
@@ -26013,8 +26480,10 @@ export interface QueryGenqlSelection {
26013
26480
  /** Returns appointments of the specified appointment locations. Overrides filter_by_location_id */
26014
26481
  filter_by_appointment_location_ids?: ((Scalars['ID'] | null)[] | null);
26015
26482
  filter_by_appointment_status?: (Scalars['String'] | null);
26483
+ /** Returns appointments of the specified appointment statuses. Overrides filter_by_appointment_status */
26484
+ filter_by_appointment_statuses?: ((Scalars['String'] | null)[] | null);
26016
26485
  filter_by_appointment_type_id?: (Scalars['ID'] | null);
26017
- /** Returns appointments of the specified appointment Overrides filter_by_appointment_type_id */
26486
+ /** Returns appointments of the specified appointment types. Overrides filter_by_appointment_type_id */
26018
26487
  filter_by_appointment_type_ids?: ((Scalars['ID'] | null)[] | null);
26019
26488
  filter_by_contact_types?: (Scalars['String'] | null);
26020
26489
  /** When true, only appointments without an associated chart note will be returned. When false, only appointments with an associated chart note will be return. If nil, has no effect */
@@ -26057,6 +26526,7 @@ export interface QueryGenqlSelection {
26057
26526
  without_status?: (Scalars['Boolean'] | null);
26058
26527
  /** Returns appointments for the specified attendee_ids */
26059
26528
  attendee_ids?: ((Scalars['ID'] | null)[] | null);
26529
+ state_license?: (Scalars['String'] | null);
26060
26530
  };
26061
26531
  });
26062
26532
  /** Number of Appointments */
@@ -26110,7 +26580,9 @@ export interface QueryGenqlSelection {
26110
26580
  appointmentsSummary?: (AppointmentSummaryDataGenqlSelection & {
26111
26581
  __args?: {
26112
26582
  provider_ids?: ((Scalars['ID'] | null)[] | null);
26583
+ /** If not provided, defaults to the current date */
26113
26584
  range_end?: (Scalars['String'] | null);
26585
+ /** If not provided, defaults to the current date */
26114
26586
  range_start?: (Scalars['String'] | null);
26115
26587
  range_type?: (Scalars['String'] | null);
26116
26588
  /** When provided, the query will require data to be loaded from cache if the appointment count is over the provided number. If data is not in the cache, it will return without data, and load the data in the cache in the background. */
@@ -26134,6 +26606,8 @@ export interface QueryGenqlSelection {
26134
26606
  __args?: {
26135
26607
  appointment_location_id?: (Scalars['String'] | null);
26136
26608
  appointment_type_id?: (Scalars['String'] | null);
26609
+ /** Array of IDs of appointment types to filter availabilities */
26610
+ appointment_type_ids?: ((Scalars['ID'] | null)[] | null);
26137
26611
  /** ID of the provider to show availabilities for, supercedes provider id and is_org */
26138
26612
  availability_provider_id?: (Scalars['ID'] | null);
26139
26613
  contact_type_id?: (Scalars['String'] | null);
@@ -26154,6 +26628,7 @@ export interface QueryGenqlSelection {
26154
26628
  start_date_padding?: (Scalars['Int'] | null);
26155
26629
  user_id?: (Scalars['String'] | null);
26156
26630
  timezone?: (Scalars['String'] | null);
26631
+ state_license?: (Scalars['String'] | null);
26157
26632
  };
26158
26633
  });
26159
26634
  /** number of availabilities */
@@ -26197,6 +26672,7 @@ export interface QueryGenqlSelection {
26197
26672
  appt_type_id?: (Scalars['String'] | null);
26198
26673
  clients_can_join_waitlist?: (Scalars['Boolean'] | null);
26199
26674
  contact_type?: (Scalars['String'] | null);
26675
+ /** If not provided, defaults to the current date */
26200
26676
  end_date?: (Scalars['String'] | null);
26201
26677
  /** When passed in, slots after this will not be returned. Inclusive. YYYY-MM-DD format */
26202
26678
  end_date_boundary?: (Scalars['String'] | null);
@@ -26212,6 +26688,7 @@ export interface QueryGenqlSelection {
26212
26688
  provider_ids?: ((Scalars['String'] | null)[] | null);
26213
26689
  /** Filters the provider list to only include users who have all of the specified tags applied. Ignored if org_level is not true */
26214
26690
  tag_ids?: ((Scalars['ID'] | null)[] | null);
26691
+ /** If not provided, defaults to the current date */
26215
26692
  start_date?: (Scalars['String'] | null);
26216
26693
  /** When passed in, slots before this will not be returned. YYYY-MM-DD format */
26217
26694
  start_date_boundary?: (Scalars['String'] | null);
@@ -26847,6 +27324,7 @@ export interface QueryGenqlSelection {
26847
27324
  appt_type_id?: (Scalars['String'] | null);
26848
27325
  clients_can_join_waitlist?: (Scalars['Boolean'] | null);
26849
27326
  contact_type?: (Scalars['String'] | null);
27327
+ /** If not provided, defaults to the current date */
26850
27328
  date_from_month?: (Scalars['String'] | null);
26851
27329
  /** When passed in, supercedes date_from_month. Must be passed in along with start_date */
26852
27330
  end_date?: (Scalars['String'] | null);
@@ -26960,6 +27438,12 @@ export interface QueryGenqlSelection {
26960
27438
  keywords: Scalars['String'];
26961
27439
  };
26962
27440
  });
27441
+ /** Fetch DSI comment for given intervention_type */
27442
+ dsiComment?: (DsiCommentGenqlSelection & {
27443
+ __args?: {
27444
+ intervention_type?: (InterventionType | null);
27445
+ };
27446
+ });
26963
27447
  /** Fetch a link from Fullscript to create a treatment plan for a given user */
26964
27448
  dynamicLink?: {
26965
27449
  __args: {
@@ -27115,6 +27599,8 @@ export interface QueryGenqlSelection {
27115
27599
  __args?: {
27116
27600
  for_superbills?: (Scalars['Boolean'] | null);
27117
27601
  external_id?: (Scalars['String'] | null);
27602
+ /** Return a FormAnswerGroup based on an associated appointment_form_answer_group_connection_id */
27603
+ appointment_form_answer_group_connection_id?: (Scalars['ID'] | null);
27118
27604
  id?: (Scalars['ID'] | null);
27119
27605
  ids?: ((Scalars['ID'] | null)[] | null);
27120
27606
  /** If TRUE, create form history 'opened' event */
@@ -27469,6 +27955,13 @@ export interface QueryGenqlSelection {
27469
27955
  user_id?: (Scalars['ID'] | null);
27470
27956
  };
27471
27957
  });
27958
+ /** Initial date of service for a new form answer group */
27959
+ initialServiceDate?: {
27960
+ __args: {
27961
+ appointment_id?: (Scalars['ID'] | null);
27962
+ user_id?: (Scalars['ID'] | null);
27963
+ };
27964
+ } | boolean | number;
27472
27965
  /** appointment types related to offering */
27473
27966
  initializedOfferingIncludes?: (OfferingIncludeGenqlSelection & {
27474
27967
  __args?: {
@@ -27533,7 +28026,10 @@ export interface QueryGenqlSelection {
27533
28026
  category?: (Scalars['String'] | null);
27534
28027
  };
27535
28028
  });
27536
- /** Initial date of service for a new form answer group */
28029
+ /**
28030
+ * @deprecated Use `initialServiceDate` instead
28031
+ * Initial date of service for a new form answer group
28032
+ */
27537
28033
  intitialServiceDate?: {
27538
28034
  __args: {
27539
28035
  appointment_id?: (Scalars['ID'] | null);
@@ -28517,7 +29013,7 @@ export interface QueryGenqlSelection {
28517
29013
  type?: (Scalars['String'] | null);
28518
29014
  };
28519
29015
  } | boolean | number;
28520
- /** Fetch paginated Webhooks collection */
29016
+ /** Fetch paginated SentWebhooks collection. SentWebhook records are available for 180 days. */
28521
29017
  sentWebhooks?: (SentWebhookGenqlSelection & {
28522
29018
  __args?: {
28523
29019
  /** Cursor to fetch results after */
@@ -28528,7 +29024,7 @@ export interface QueryGenqlSelection {
28528
29024
  page_size?: (Scalars['Int'] | null);
28529
29025
  };
28530
29026
  });
28531
- /** Number of Webhooks */
29027
+ /** Number of SentWebhooks. SentWebhook records are available for 180 days. */
28532
29028
  sentWebhooksCount?: {
28533
29029
  __args: {
28534
29030
  keywords?: (Scalars['String'] | null);
@@ -28856,6 +29352,7 @@ export interface QueryGenqlSelection {
28856
29352
  should_paginate?: (Scalars['Boolean'] | null);
28857
29353
  show_all_by_default?: (Scalars['Boolean'] | null);
28858
29354
  order_by?: (UserOrderKeys | null);
29355
+ /** When passed in, only clients with at least ONE of the passed-in tags will be returned. */
28859
29356
  tag_ids?: ((Scalars['ID'] | null)[] | null);
28860
29357
  with_feature_toggles?: (Scalars['Boolean'] | null);
28861
29358
  };
@@ -28874,6 +29371,7 @@ export interface QueryGenqlSelection {
28874
29371
  keywords?: (Scalars['String'] | null);
28875
29372
  limited_to_provider?: (Scalars['Boolean'] | null);
28876
29373
  provider_id?: (Scalars['String'] | null);
29374
+ /** When passed in, only clients with at least ONE of the passed-in tags will be returned. */
28877
29375
  tag_ids?: ((Scalars['ID'] | null)[] | null);
28878
29376
  };
28879
29377
  } | boolean | number;
@@ -28995,6 +29493,8 @@ export interface ReceivedDirectMessageGenqlSelection {
28995
29493
  listed_sender?: boolean | number;
28996
29494
  /** The message body of the direct message */
28997
29495
  message_body?: boolean | number;
29496
+ /** The patient associated with the direct message. Will be nil if the direct message is not associated */
29497
+ patient?: UserGenqlSelection;
28998
29498
  /** The subject */
28999
29499
  subject?: boolean | number;
29000
29500
  __typename?: boolean | number;
@@ -29630,6 +30130,8 @@ export interface RequestedPaymentGenqlSelection {
29630
30130
  offering?: OfferingGenqlSelection;
29631
30131
  /** The ID of the offering to buy */
29632
30132
  offering_id?: boolean | number;
30133
+ /** The price of the offering at the time of invoice creation */
30134
+ offering_price_at_invoice_creation?: boolean | number;
29633
30135
  /** The requested payer. This will return null if the requested payer exists as a client in Healthie */
29634
30136
  other_requested_payer?: RequestedPayerGenqlSelection;
29635
30137
  /** The datetime that the invoice was paid */
@@ -29696,6 +30198,19 @@ export interface RoomGenqlSelection {
29696
30198
  __typename?: boolean | number;
29697
30199
  __scalar?: boolean | number;
29698
30200
  }
30201
+ /** Room appointment type connection */
30202
+ export interface RoomApptTypeConnectionGenqlSelection {
30203
+ /** The appointment type ID associated with this connection */
30204
+ appointment_type_id?: boolean | number;
30205
+ /** The unique identifier of the connection */
30206
+ id?: boolean | number;
30207
+ /** Room ID of the room associated with this appointment type connection */
30208
+ room_id?: boolean | number;
30209
+ /** Name of the room associated with this appointment type connection */
30210
+ room_name?: boolean | number;
30211
+ __typename?: boolean | number;
30212
+ __scalar?: boolean | number;
30213
+ }
29699
30214
  /** Payload for a Room */
29700
30215
  export interface RoomInput {
29701
30216
  /** If true, the room will be deleted */
@@ -29887,6 +30402,8 @@ export interface ServingSizeGenqlSelection {
29887
30402
  food_portion_id?: boolean | number;
29888
30403
  /** The unique identifier of the serving size */
29889
30404
  id?: boolean | number;
30405
+ /** The macro nutrients of this serving size (Calories, Carbohydrate, Protein, Fat) */
30406
+ macro_nutrients?: FoodNutrientGenqlSelection;
29890
30407
  /** percentage of 100g. For example if modifier is 2.5 then this serving size is 250g */
29891
30408
  modifier?: boolean | number;
29892
30409
  /** The nutrients of this serving size */
@@ -30856,6 +31373,60 @@ export interface UpdateCurrencyPayloadGenqlSelection {
30856
31373
  __typename?: boolean | number;
30857
31374
  __scalar?: boolean | number;
30858
31375
  }
31376
+ /** Updating CustomSidebarOverride Inputs */
31377
+ export interface UpdateCustomNavItemInputs {
31378
+ /** Append current user ID to Custom Navigation Sidebar Item */
31379
+ append_current_user_id?: (Scalars['Boolean'] | null);
31380
+ /** Icon of the image that will display on the Custom Navigation Sidebar Item */
31381
+ icon?: (Scalars['String'] | null);
31382
+ /** If Custom Navigation Sidebar Item displays for Providers */
31383
+ is_provider_side?: (Scalars['Boolean'] | null);
31384
+ /** Label of Custom Navigation Sidebar Item */
31385
+ label?: (Scalars['String'] | null);
31386
+ /** Location of Custom Navigation Sidebar Items */
31387
+ nav_section?: (Scalars['String'] | null);
31388
+ /** If the Custom Navigation Sidebar Item will open in an iframe within the Healthie UI */
31389
+ open_in_iframe?: (Scalars['Boolean'] | null);
31390
+ /** Position number for setting a specific nav link order */
31391
+ position?: (Scalars['Int'] | null);
31392
+ /** If Custom Navigation Sidebar Item is restricted to a User Group */
31393
+ restrict_to_user_group?: (Scalars['Boolean'] | null);
31394
+ /** If Custom Navigation Sidebar Item is displayed */
31395
+ show?: (Scalars['Boolean'] | null);
31396
+ /** The link to the custom icon that will be displayed on the Custom Navigation Sidebar Item */
31397
+ svg_url?: (Scalars['String'] | null);
31398
+ /** If Custom Navigation Sidebar Item should open in new tab */
31399
+ target?: (Scalars['String'] | null);
31400
+ /** The link that the Custom Navigation Sidebar Item will direct to */
31401
+ url?: (Scalars['String'] | null);
31402
+ /** User Group ID that sees the Custom Navigation Sidebar Item */
31403
+ user_group_id?: (Scalars['String'] | null);
31404
+ }
31405
+ /** Autogenerated input type of UpdateHarborPartner */
31406
+ export interface UpdateHarborPartnerInput {
31407
+ /** The ID of the Harbor Partner to update */
31408
+ harbor_partner_id: Scalars['ID'];
31409
+ /** The name of the Harbor Partner */
31410
+ name?: (Scalars['String'] | null);
31411
+ /** The URL of the Harbor Partner */
31412
+ url?: (Scalars['String'] | null);
31413
+ /** The description of the Harbor Partner */
31414
+ description?: (Scalars['String'] | null);
31415
+ }
31416
+ /** Autogenerated return type of UpdateHarborPartner. */
31417
+ export interface UpdateHarborPartnerPayloadGenqlSelection {
31418
+ /**
31419
+ * @deprecated DO NOT USE
31420
+ * DO NOT USE
31421
+ */
31422
+ clientMutationId?: boolean | number;
31423
+ /** The list of errors occurred during the mutation */
31424
+ messages?: FieldErrorGenqlSelection;
31425
+ /** The success string */
31426
+ success_string?: boolean | number;
31427
+ __typename?: boolean | number;
31428
+ __scalar?: boolean | number;
31429
+ }
30859
31430
  /** Autogenerated input type of UpdateHiddenSettings */
30860
31431
  export interface UpdateHiddenSettingsInput {
30861
31432
  /** User's AppointmentSetting ID */
@@ -31648,6 +32219,8 @@ export interface UserGenqlSelection {
31648
32219
  limit?: (Scalars['Int'] | null);
31649
32220
  /** If true, return hidden tasks */
31650
32221
  show_hidden?: (Scalars['Boolean'] | null);
32222
+ /** The order to return the tasks in */
32223
+ order_by?: (TaskOrderKeys | null);
31651
32224
  };
31652
32225
  });
31653
32226
  /** The full name of the user */
@@ -32329,6 +32902,8 @@ export interface WebhookGenqlSelection {
32329
32902
  id?: boolean | number;
32330
32903
  /** Whether the webhook is enabled or not */
32331
32904
  is_enabled?: boolean | number;
32905
+ /** Whether the webhook should retry on failure */
32906
+ should_retry?: boolean | number;
32332
32907
  /** The secret key used to sign the webhook */
32333
32908
  signature_secret?: boolean | number;
32334
32909
  /** The URL that the webhook will be sent to */
@@ -32495,6 +33070,27 @@ export interface addLivingPlatePayloadGenqlSelection {
32495
33070
  __typename?: boolean | number;
32496
33071
  __scalar?: boolean | number;
32497
33072
  }
33073
+ /** Autogenerated input type of addPharmacy */
33074
+ export interface addPharmacyInput {
33075
+ /** ID from pharmacy search results */
33076
+ pharmacy_id: Scalars['ID'];
33077
+ /** Healthie patient/client ID */
33078
+ patient_id: Scalars['ID'];
33079
+ primary?: (Scalars['Boolean'] | null);
33080
+ }
33081
+ /** Autogenerated return type of addPharmacy. */
33082
+ export interface addPharmacyPayloadGenqlSelection {
33083
+ /**
33084
+ * @deprecated DO NOT USE
33085
+ * DO NOT USE
33086
+ */
33087
+ clientMutationId?: boolean | number;
33088
+ /** The list of errors occurred during the mutation */
33089
+ messages?: FieldErrorGenqlSelection;
33090
+ pharmacy?: PharmacyGenqlSelection;
33091
+ __typename?: boolean | number;
33092
+ __scalar?: boolean | number;
33093
+ }
32498
33094
  /** Autogenerated input type of addZusMember */
32499
33095
  export interface addZusMemberInput {
32500
33096
  /** Healthie organization ID */
@@ -33247,6 +33843,7 @@ export interface createAppointmentTypeInput {
33247
33843
  /** Available options are CUSTOM and CPT_CODE */
33248
33844
  pricing_option?: (Scalars['String'] | null);
33249
33845
  provider_ids_for_appt_type_connections?: (Scalars['String'] | null);
33846
+ room_ids_for_appt_type_connections?: (Scalars['String'] | null);
33250
33847
  require_in_state_clients?: (Scalars['Boolean'] | null);
33251
33848
  require_specific_providers?: (Scalars['Boolean'] | null);
33252
33849
  specific_groups?: (Scalars['Boolean'] | null);
@@ -33868,6 +34465,27 @@ export interface createCustomModulePayloadGenqlSelection {
33868
34465
  __typename?: boolean | number;
33869
34466
  __scalar?: boolean | number;
33870
34467
  }
34468
+ /** Autogenerated input type of createCustomNavItem */
34469
+ export interface createCustomNavItemInput {
34470
+ /** Brand ID */
34471
+ brand_id: Scalars['ID'];
34472
+ /** The Custom Sidebar Override inputs */
34473
+ custom_nav_item_params: CustomNavItemInputs;
34474
+ }
34475
+ /** Autogenerated return type of createCustomNavItem. */
34476
+ export interface createCustomNavItemPayloadGenqlSelection {
34477
+ /**
34478
+ * @deprecated DO NOT USE
34479
+ * DO NOT USE
34480
+ */
34481
+ clientMutationId?: boolean | number;
34482
+ /** The list of errors occurred during the mutation */
34483
+ messages?: FieldErrorGenqlSelection;
34484
+ /** The success message */
34485
+ success_string?: boolean | number;
34486
+ __typename?: boolean | number;
34487
+ __scalar?: boolean | number;
34488
+ }
33871
34489
  /** Autogenerated input type of createDocument */
33872
34490
  export interface createDocumentInput {
33873
34491
  care_plan_id?: (Scalars['ID'] | null);
@@ -34006,6 +34624,24 @@ export interface createDraftPayloadGenqlSelection {
34006
34624
  __typename?: boolean | number;
34007
34625
  __scalar?: boolean | number;
34008
34626
  }
34627
+ /** Autogenerated input type of createDsiComment */
34628
+ export interface createDsiCommentInput {
34629
+ content: Scalars['String'];
34630
+ intervention_type: InterventionType;
34631
+ }
34632
+ /** Autogenerated return type of createDsiComment. */
34633
+ export interface createDsiCommentPayloadGenqlSelection {
34634
+ /**
34635
+ * @deprecated DO NOT USE
34636
+ * DO NOT USE
34637
+ */
34638
+ clientMutationId?: boolean | number;
34639
+ dsi_comment?: DsiCommentGenqlSelection;
34640
+ /** The list of errors occurred during the mutation */
34641
+ messages?: FieldErrorGenqlSelection;
34642
+ __typename?: boolean | number;
34643
+ __scalar?: boolean | number;
34644
+ }
34009
34645
  /** Autogenerated input type of createEbook */
34010
34646
  export interface createEbookInput {
34011
34647
  email?: (Scalars['String'] | null);
@@ -34338,6 +34974,7 @@ export interface createFormAnswerGroupPayloadGenqlSelection {
34338
34974
  /** Autogenerated input type of createFormAnswerGroupSigning */
34339
34975
  export interface createFormAnswerGroupSigningInput {
34340
34976
  form_answer_group_id?: (Scalars['String'] | null);
34977
+ user_id?: (Scalars['String'] | null);
34341
34978
  }
34342
34979
  /** Autogenerated return type of createFormAnswerGroupSigning. */
34343
34980
  export interface createFormAnswerGroupSigningPayloadGenqlSelection {
@@ -34490,6 +35127,27 @@ export interface createGroupPayloadGenqlSelection {
34490
35127
  __typename?: boolean | number;
34491
35128
  __scalar?: boolean | number;
34492
35129
  }
35130
+ /** Autogenerated input type of createHarborPartnerApiKey */
35131
+ export interface createHarborPartnerApiKeyInput {
35132
+ /** The ID of the Harbor Partner to create an API key for */
35133
+ harbor_partner_id?: (Scalars['ID'] | null);
35134
+ /** The ID of the Organization to create an API key for */
35135
+ organization_id?: (Scalars['ID'] | null);
35136
+ }
35137
+ /** Autogenerated return type of createHarborPartnerApiKey. */
35138
+ export interface createHarborPartnerApiKeyPayloadGenqlSelection {
35139
+ /**
35140
+ * @deprecated DO NOT USE
35141
+ * DO NOT USE
35142
+ */
35143
+ clientMutationId?: boolean | number;
35144
+ /** The list of errors occurred during the mutation */
35145
+ messages?: FieldErrorGenqlSelection;
35146
+ /** The success string */
35147
+ success_string?: boolean | number;
35148
+ __typename?: boolean | number;
35149
+ __scalar?: boolean | number;
35150
+ }
34493
35151
  /** Autogenerated input type of createHealthConcern */
34494
35152
  export interface createHealthConcernInput {
34495
35153
  code?: (Scalars['String'] | null);
@@ -35029,6 +35687,8 @@ export interface createOrganizationMembershipPayloadGenqlSelection {
35029
35687
  * DO NOT USE
35030
35688
  */
35031
35689
  clientMutationId?: boolean | number;
35690
+ /** The current authenticated user (for client state management) */
35691
+ currentUser?: UserGenqlSelection;
35032
35692
  /** The list of errors occurred during the mutation */
35033
35693
  messages?: FieldErrorGenqlSelection;
35034
35694
  organizationMembership?: OrganizationMembershipGenqlSelection;
@@ -35042,6 +35702,8 @@ export interface createOrganizationPayloadGenqlSelection {
35042
35702
  * DO NOT USE
35043
35703
  */
35044
35704
  clientMutationId?: boolean | number;
35705
+ /** The current authenticated user (for client state management) */
35706
+ currentUser?: UserGenqlSelection;
35045
35707
  /** The list of errors occurred during the mutation */
35046
35708
  messages?: FieldErrorGenqlSelection;
35047
35709
  organization?: OrganizationGenqlSelection;
@@ -35154,6 +35816,7 @@ export interface createPermissionTemplateInput {
35154
35816
  can_sign_others_charting_notes?: (Scalars['Boolean'] | null);
35155
35817
  can_sign_own_charting_notes?: (Scalars['Boolean'] | null);
35156
35818
  can_submit_cms_1500s_to_office_ally?: (Scalars['Boolean'] | null);
35819
+ can_view_audit_log?: (Scalars['Boolean'] | null);
35157
35820
  can_view_all_org_members_tasks?: (Scalars['Boolean'] | null);
35158
35821
  can_view_cms1500s?: (Scalars['Boolean'] | null);
35159
35822
  can_view_goal_templates?: (Scalars['Boolean'] | null);
@@ -35395,7 +36058,7 @@ export interface createRequestedFormInput {
35395
36058
  minute?: (Scalars['String'] | null);
35396
36059
  monthday?: (Scalars['String'] | null);
35397
36060
  period?: (Scalars['String'] | null);
35398
- /** A comma-separated list of user IDs and/or user group IDs. If passing user group IDs, they should take the following format: 'group_1,group_2,group_3' You can pass both user IDs and user group IDs. Example: '1,2,3,group_1,group_2' If you pass a user group ID, all users in that group will be sent the form. */
36061
+ /** A comma-separated list of user IDs and/or user group IDs. If passing user group IDs, they should take the following format: 'group-1,group-2,group-3' You can pass both user IDs and user group IDs. Example: '1,2,3,group-1,group-2' If you pass a user group ID, all users in that group will be sent the form. */
35399
36062
  recipient_ids?: (Scalars['String'] | null);
35400
36063
  recurrence_ends?: (Scalars['Boolean'] | null);
35401
36064
  weekday?: (Scalars['String'] | null);
@@ -35484,11 +36147,13 @@ export interface createSavedFilterPayloadGenqlSelection {
35484
36147
  }
35485
36148
  /** Autogenerated input type of createSentDirectMessage */
35486
36149
  export interface createSentDirectMessageInput {
36150
+ /** Required */
35487
36151
  message_body?: (Scalars['String'] | null);
35488
36152
  outbound_recipient?: (Scalars['String'] | null);
35489
36153
  subject?: (Scalars['String'] | null);
35490
36154
  patient_id?: (Scalars['ID'] | null);
35491
36155
  binary_attachment_document_id?: (Scalars['ID'] | null);
36156
+ include_patient_xml?: (SentDirectMessageXml | null);
35492
36157
  }
35493
36158
  /** Autogenerated return type of createSentDirectMessage. */
35494
36159
  export interface createSentDirectMessagePayloadGenqlSelection {
@@ -35752,6 +36417,7 @@ export interface createVisitorPayloadGenqlSelection {
35752
36417
  export interface createWebhookInput {
35753
36418
  event_type?: (Scalars['String'] | null);
35754
36419
  is_enabled?: (Scalars['Boolean'] | null);
36420
+ should_retry?: (Scalars['Boolean'] | null);
35755
36421
  /** A valid URL per the WHATWG specification */
35756
36422
  url?: (Scalars['String'] | null);
35757
36423
  /** Webhook events to create */
@@ -35947,6 +36613,26 @@ export interface deleteAutoTaskGeneratorPayloadGenqlSelection {
35947
36613
  __typename?: boolean | number;
35948
36614
  __scalar?: boolean | number;
35949
36615
  }
36616
+ /** Autogenerated input type of deleteAutoscoring */
36617
+ export interface deleteAutoscoringInput {
36618
+ /** ID of the form being edited */
36619
+ form_id: Scalars['ID'];
36620
+ /** ID of the sections being edited */
36621
+ section_id: Scalars['ID'];
36622
+ }
36623
+ /** Autogenerated return type of deleteAutoscoring. */
36624
+ export interface deleteAutoscoringPayloadGenqlSelection {
36625
+ /**
36626
+ * @deprecated DO NOT USE
36627
+ * DO NOT USE
36628
+ */
36629
+ clientMutationId?: boolean | number;
36630
+ /** The list of errors occurred during the mutation */
36631
+ messages?: FieldErrorGenqlSelection;
36632
+ success_string?: boolean | number;
36633
+ __typename?: boolean | number;
36634
+ __scalar?: boolean | number;
36635
+ }
35950
36636
  /** Autogenerated input type of deleteAvailability */
35951
36637
  export interface deleteAvailabilityInput {
35952
36638
  id?: (Scalars['ID'] | null);
@@ -36241,6 +36927,27 @@ export interface deleteCustomModulePayloadGenqlSelection {
36241
36927
  __typename?: boolean | number;
36242
36928
  __scalar?: boolean | number;
36243
36929
  }
36930
+ /** Autogenerated input type of deleteCustomNavItem */
36931
+ export interface deleteCustomNavItemInput {
36932
+ /** Brand ID */
36933
+ brand_id: Scalars['ID'];
36934
+ /** Custom Sidebar Override ID */
36935
+ custom_nav_item_id: Scalars['ID'];
36936
+ }
36937
+ /** Autogenerated return type of deleteCustomNavItem. */
36938
+ export interface deleteCustomNavItemPayloadGenqlSelection {
36939
+ /**
36940
+ * @deprecated DO NOT USE
36941
+ * DO NOT USE
36942
+ */
36943
+ clientMutationId?: boolean | number;
36944
+ /** The list of errors occurred during the mutation */
36945
+ messages?: FieldErrorGenqlSelection;
36946
+ /** The success message */
36947
+ success_string?: boolean | number;
36948
+ __typename?: boolean | number;
36949
+ __scalar?: boolean | number;
36950
+ }
36244
36951
  /** Autogenerated input type of deleteDexcomConnection */
36245
36952
  export interface deleteDexcomConnectionInput {
36246
36953
  id?: (Scalars['ID'] | null);
@@ -37163,6 +37870,25 @@ export interface destroyFaxAcctInfoPayloadGenqlSelection {
37163
37870
  __typename?: boolean | number;
37164
37871
  __scalar?: boolean | number;
37165
37872
  }
37873
+ /** Autogenerated input type of destroyHarborPartnerApiKey */
37874
+ export interface destroyHarborPartnerApiKeyInput {
37875
+ /** The ID of the API key to destroy */
37876
+ api_key_id: Scalars['ID'];
37877
+ }
37878
+ /** Autogenerated return type of destroyHarborPartnerApiKey. */
37879
+ export interface destroyHarborPartnerApiKeyPayloadGenqlSelection {
37880
+ /**
37881
+ * @deprecated DO NOT USE
37882
+ * DO NOT USE
37883
+ */
37884
+ clientMutationId?: boolean | number;
37885
+ /** The list of errors occurred during the mutation */
37886
+ messages?: FieldErrorGenqlSelection;
37887
+ /** The success string */
37888
+ success_string?: boolean | number;
37889
+ __typename?: boolean | number;
37890
+ __scalar?: boolean | number;
37891
+ }
37166
37892
  /** Autogenerated input type of destroyMedication */
37167
37893
  export interface destroyMedicationInput {
37168
37894
  id?: (Scalars['ID'] | null);
@@ -37702,6 +38428,24 @@ export interface sendCarePlanEmailPayloadGenqlSelection {
37702
38428
  __typename?: boolean | number;
37703
38429
  __scalar?: boolean | number;
37704
38430
  }
38431
+ /** Autogenerated input type of sendTestWebhook */
38432
+ export interface sendTestWebhookInput {
38433
+ /** The ID of the webhook */
38434
+ id: Scalars['ID'];
38435
+ }
38436
+ /** Autogenerated return type of sendTestWebhook. */
38437
+ export interface sendTestWebhookPayloadGenqlSelection {
38438
+ /**
38439
+ * @deprecated DO NOT USE
38440
+ * DO NOT USE
38441
+ */
38442
+ clientMutationId?: boolean | number;
38443
+ /** The list of errors occurred during the mutation */
38444
+ messages?: FieldErrorGenqlSelection;
38445
+ sent?: boolean | number;
38446
+ __typename?: boolean | number;
38447
+ __scalar?: boolean | number;
38448
+ }
37705
38449
  /** Autogenerated input type of shareAnswersAsDocument */
37706
38450
  export interface shareAnswersAsDocumentInput {
37707
38451
  answers?: (Scalars['String'] | null);
@@ -37823,6 +38567,8 @@ export interface signUpInput {
37823
38567
  provider_type?: (Scalars['String'] | null);
37824
38568
  /** Affliate id used for conversion tracking */
37825
38569
  ps_xid?: (Scalars['String'] | null);
38570
+ /** The unique identifier of the Partner in Partnerstack */
38571
+ ps_partner_key?: (Scalars['String'] | null);
37826
38572
  /** 'patient' to create a patient, 'dietitian' to create a staff member or provider */
37827
38573
  role?: (Scalars['String'] | null);
37828
38574
  /** timezone from TZ database names in IANA Timezone list */
@@ -38271,6 +39017,7 @@ export interface updateAppointmentTypeInput {
38271
39017
  /** Available options are CUSTOM and CPT_CODE */
38272
39018
  pricing_option?: (Scalars['String'] | null);
38273
39019
  provider_ids_for_appt_type_connections?: (Scalars['String'] | null);
39020
+ room_ids_for_appt_type_connections?: (Scalars['String'] | null);
38274
39021
  require_in_state_clients?: (Scalars['Boolean'] | null);
38275
39022
  require_specific_providers?: (Scalars['Boolean'] | null);
38276
39023
  row_order?: (Scalars['Int'] | null);
@@ -38334,6 +39081,32 @@ export interface updateAutomatedInsuranceBillingSettingPayloadGenqlSelection {
38334
39081
  __typename?: boolean | number;
38335
39082
  __scalar?: boolean | number;
38336
39083
  }
39084
+ /** Autogenerated input type of updateAutoscoring */
39085
+ export interface updateAutoscoringInput {
39086
+ /** ID of the form being edited */
39087
+ form_id: Scalars['ID'];
39088
+ /** List of form modules to add to a subtotal */
39089
+ module_ids?: ((Scalars['ID'] | null)[] | null);
39090
+ /** If the form or section update enables or disables autoscoring */
39091
+ section_autoscoring?: (Scalars['Boolean'] | null);
39092
+ /** ID of the sections being edited */
39093
+ section_ids?: ((Scalars['ID'] | null)[] | null);
39094
+ /** Label that a scoring section is to be updated to */
39095
+ updated_label?: (Scalars['String'] | null);
39096
+ }
39097
+ /** Autogenerated return type of updateAutoscoring. */
39098
+ export interface updateAutoscoringPayloadGenqlSelection {
39099
+ /**
39100
+ * @deprecated DO NOT USE
39101
+ * DO NOT USE
39102
+ */
39103
+ clientMutationId?: boolean | number;
39104
+ /** The list of errors occurred during the mutation */
39105
+ messages?: FieldErrorGenqlSelection;
39106
+ success_string?: boolean | number;
39107
+ __typename?: boolean | number;
39108
+ __scalar?: boolean | number;
39109
+ }
38337
39110
  /** Autogenerated input type of updateBillingItem */
38338
39111
  export interface updateBillingItemInput {
38339
39112
  amount_paid?: (Scalars['String'] | null);
@@ -38424,11 +39197,14 @@ export interface updateByTemplatePayloadGenqlSelection {
38424
39197
  /** Autogenerated input type of updateCalendarViewSetting */
38425
39198
  export interface updateCalendarViewSettingInput {
38426
39199
  appointment_status_filter?: (Scalars['String'] | null);
39200
+ appointment_statuses_filter?: ((Scalars['String'] | null)[] | null);
38427
39201
  appointment_type_filter?: (Scalars['ID'] | null);
39202
+ appointment_types_filter?: ((Scalars['ID'] | null)[] | null);
38428
39203
  availability_contact_type_filter?: (Scalars['String'] | null);
38429
39204
  availability_location_filter?: (Scalars['ID'] | null);
38430
39205
  availability_provider_filter?: (Scalars['ID'] | null);
38431
39206
  availablilty_appt_type_filter?: (Scalars['ID'] | null);
39207
+ availability_appointment_types_filter?: ((Scalars['ID'] | null)[] | null);
38432
39208
  calendar_color_scheme_filter?: (Scalars['ID'] | null);
38433
39209
  calendar_view_filter?: (Scalars['String'] | null);
38434
39210
  client_confirmation_status?: (Scalars['String'] | null);
@@ -38442,6 +39218,7 @@ export interface updateCalendarViewSettingInput {
38442
39218
  expand_show_availabilities?: (Scalars['Boolean'] | null);
38443
39219
  id?: (Scalars['ID'] | null);
38444
39220
  location_filter?: (Scalars['ID'] | null);
39221
+ locations_filter?: ((Scalars['ID'] | null)[] | null);
38445
39222
  one_time_availabilities?: (Scalars['Boolean'] | null);
38446
39223
  org_calendar_view_filter?: (Scalars['String'] | null);
38447
39224
  provider_confirmation_status?: (Scalars['String'] | null);
@@ -38983,6 +39760,29 @@ export interface updateCustomModulePayloadGenqlSelection {
38983
39760
  __typename?: boolean | number;
38984
39761
  __scalar?: boolean | number;
38985
39762
  }
39763
+ /** Autogenerated input type of updateCustomNavItems */
39764
+ export interface updateCustomNavItemsInput {
39765
+ /** Custom Sidebar Override Brand ID */
39766
+ brand_id: Scalars['ID'];
39767
+ /** Custom Sidebar Override ID */
39768
+ custom_nav_item_id: Scalars['ID'];
39769
+ /** Custom Nav Item Params */
39770
+ update_custom_nav_item_params: UpdateCustomNavItemInputs;
39771
+ }
39772
+ /** Autogenerated return type of updateCustomNavItems. */
39773
+ export interface updateCustomNavItemsPayloadGenqlSelection {
39774
+ /**
39775
+ * @deprecated DO NOT USE
39776
+ * DO NOT USE
39777
+ */
39778
+ clientMutationId?: boolean | number;
39779
+ /** The list of errors occurred during the mutation */
39780
+ messages?: FieldErrorGenqlSelection;
39781
+ /** The success message */
39782
+ success_string?: boolean | number;
39783
+ __typename?: boolean | number;
39784
+ __scalar?: boolean | number;
39785
+ }
38986
39786
  /** Autogenerated input type of updateDocument */
38987
39787
  export interface updateDocumentInput {
38988
39788
  care_plan_id?: (Scalars['ID'] | null);
@@ -39016,6 +39816,24 @@ export interface updateDocumentPayloadGenqlSelection {
39016
39816
  __typename?: boolean | number;
39017
39817
  __scalar?: boolean | number;
39018
39818
  }
39819
+ /** Autogenerated input type of updateDsiComment */
39820
+ export interface updateDsiCommentInput {
39821
+ content: Scalars['String'];
39822
+ intervention_type: InterventionType;
39823
+ }
39824
+ /** Autogenerated return type of updateDsiComment. */
39825
+ export interface updateDsiCommentPayloadGenqlSelection {
39826
+ /**
39827
+ * @deprecated DO NOT USE
39828
+ * DO NOT USE
39829
+ */
39830
+ clientMutationId?: boolean | number;
39831
+ dsi_comment?: DsiCommentGenqlSelection;
39832
+ /** The list of errors occurred during the mutation */
39833
+ messages?: FieldErrorGenqlSelection;
39834
+ __typename?: boolean | number;
39835
+ __scalar?: boolean | number;
39836
+ }
39019
39837
  /** Autogenerated input type of updateEntry */
39020
39838
  export interface updateEntryInput {
39021
39839
  category?: (Scalars['String'] | null);
@@ -39270,6 +40088,7 @@ export interface updateFormAnswerGroupInput {
39270
40088
  id?: (Scalars['ID'] | null);
39271
40089
  individual_client_notes?: ((IndividualClientNoteInput | null)[] | null);
39272
40090
  marked_complete?: (Scalars['Boolean'] | null);
40091
+ marked_locked?: (Scalars['Boolean'] | null);
39273
40092
  /** Maximum character limit of 128,000. */
39274
40093
  metadata?: (Scalars['String'] | null);
39275
40094
  name?: (Scalars['String'] | null);
@@ -39277,6 +40096,8 @@ export interface updateFormAnswerGroupInput {
39277
40096
  time?: (Scalars['String'] | null);
39278
40097
  /** The associated appointment (if any) */
39279
40098
  appointment_id?: (Scalars['ID'] | null);
40099
+ /** Used to track changes in `form_answers` */
40100
+ tab_uuid?: (Scalars['UUID'] | null);
39280
40101
  }
39281
40102
  /** Autogenerated return type of updateFormAnswerGroup. */
39282
40103
  export interface updateFormAnswerGroupPayloadGenqlSelection {
@@ -40032,6 +40853,7 @@ export interface updateOrganizationMembershipInput {
40032
40853
  can_submit_cms_1500s_to_change_health?: (Scalars['Boolean'] | null);
40033
40854
  can_submit_cms_1500s_to_office_ally?: (Scalars['Boolean'] | null);
40034
40855
  can_unlock_charting_notes?: (Scalars['Boolean'] | null);
40856
+ can_view_audit_log?: (Scalars['Boolean'] | null);
40035
40857
  can_view_all_org_members_tasks?: (Scalars['Boolean'] | null);
40036
40858
  can_view_cms1500s?: (Scalars['Boolean'] | null);
40037
40859
  can_view_goal_templates?: (Scalars['Boolean'] | null);
@@ -40170,6 +40992,7 @@ export interface updatePermissionTemplateInput {
40170
40992
  can_sign_own_charting_notes?: (Scalars['Boolean'] | null);
40171
40993
  can_submit_cms_1500s_to_change_health?: (Scalars['Boolean'] | null);
40172
40994
  can_submit_cms_1500s_to_office_ally?: (Scalars['Boolean'] | null);
40995
+ can_view_audit_log?: (Scalars['Boolean'] | null);
40173
40996
  can_view_all_org_members_tasks?: (Scalars['Boolean'] | null);
40174
40997
  can_view_cms1500s?: (Scalars['Boolean'] | null);
40175
40998
  can_view_goal_templates?: (Scalars['Boolean'] | null);
@@ -40327,6 +41150,24 @@ export interface updateProviderCptCodesPayloadGenqlSelection {
40327
41150
  __typename?: boolean | number;
40328
41151
  __scalar?: boolean | number;
40329
41152
  }
41153
+ /** Autogenerated input type of updateReceivedDirectMessage */
41154
+ export interface updateReceivedDirectMessageInput {
41155
+ id?: (Scalars['ID'] | null);
41156
+ patient_id?: (Scalars['ID'] | null);
41157
+ }
41158
+ /** Autogenerated return type of updateReceivedDirectMessage. */
41159
+ export interface updateReceivedDirectMessagePayloadGenqlSelection {
41160
+ /**
41161
+ * @deprecated DO NOT USE
41162
+ * DO NOT USE
41163
+ */
41164
+ clientMutationId?: boolean | number;
41165
+ /** The list of errors occurred during the mutation */
41166
+ messages?: FieldErrorGenqlSelection;
41167
+ received_direct_message?: ReceivedDirectMessageGenqlSelection;
41168
+ __typename?: boolean | number;
41169
+ __scalar?: boolean | number;
41170
+ }
40330
41171
  /** Autogenerated input type of updateReceivedFax */
40331
41172
  export interface updateReceivedFaxInput {
40332
41173
  archived?: (Scalars['Boolean'] | null);
@@ -40886,6 +41727,7 @@ export interface updateWebhookInput {
40886
41727
  event_type?: (Scalars['String'] | null);
40887
41728
  id?: (Scalars['ID'] | null);
40888
41729
  is_enabled?: (Scalars['Boolean'] | null);
41730
+ should_retry?: (Scalars['Boolean'] | null);
40889
41731
  /** A valid URL per the WHATWG specification */
40890
41732
  url?: (Scalars['String'] | null);
40891
41733
  /** Webhook events to update or delete */
@@ -41271,6 +42113,9 @@ export declare const isCreateClaimSubmitterPayload: (obj?: {
41271
42113
  export declare const isCreateClientViaFormPayload: (obj?: {
41272
42114
  __typename?: any;
41273
42115
  } | null) => obj is CreateClientViaFormPayload;
42116
+ export declare const isCreateHarborPartnerPayload: (obj?: {
42117
+ __typename?: any;
42118
+ } | null) => obj is CreateHarborPartnerPayload;
41274
42119
  export declare const isCustomEmail: (obj?: {
41275
42120
  __typename?: any;
41276
42121
  } | null) => obj is CustomEmail;
@@ -41328,6 +42173,9 @@ export declare const isDraft: (obj?: {
41328
42173
  export declare const isDrugAllergenType: (obj?: {
41329
42174
  __typename?: any;
41330
42175
  } | null) => obj is DrugAllergenType;
42176
+ export declare const isDsiComment: (obj?: {
42177
+ __typename?: any;
42178
+ } | null) => obj is DsiComment;
41331
42179
  export declare const isEligibilityCheck: (obj?: {
41332
42180
  __typename?: any;
41333
42181
  } | null) => obj is EligibilityCheck;
@@ -41769,6 +42617,9 @@ export declare const isRequestedPaymentTemplate: (obj?: {
41769
42617
  export declare const isRoom: (obj?: {
41770
42618
  __typename?: any;
41771
42619
  } | null) => obj is Room;
42620
+ export declare const isRoomApptTypeConnection: (obj?: {
42621
+ __typename?: any;
42622
+ } | null) => obj is RoomApptTypeConnection;
41772
42623
  export declare const isSDKConfig: (obj?: {
41773
42624
  __typename?: any;
41774
42625
  } | null) => obj is SDKConfig;
@@ -41904,6 +42755,9 @@ export declare const isUpdateClaimSubmitterPayload: (obj?: {
41904
42755
  export declare const isUpdateCurrencyPayload: (obj?: {
41905
42756
  __typename?: any;
41906
42757
  } | null) => obj is UpdateCurrencyPayload;
42758
+ export declare const isUpdateHarborPartnerPayload: (obj?: {
42759
+ __typename?: any;
42760
+ } | null) => obj is UpdateHarborPartnerPayload;
41907
42761
  export declare const isUpdateHiddenSettingsPayload: (obj?: {
41908
42762
  __typename?: any;
41909
42763
  } | null) => obj is UpdateHiddenSettingsPayload;
@@ -41967,6 +42821,9 @@ export declare const isZoomAppointment: (obj?: {
41967
42821
  export declare const isaddLivingPlatePayload: (obj?: {
41968
42822
  __typename?: any;
41969
42823
  } | null) => obj is addLivingPlatePayload;
42824
+ export declare const isaddPharmacyPayload: (obj?: {
42825
+ __typename?: any;
42826
+ } | null) => obj is addPharmacyPayload;
41970
42827
  export declare const isaddZusMemberPayload: (obj?: {
41971
42828
  __typename?: any;
41972
42829
  } | null) => obj is addZusMemberPayload;
@@ -42126,6 +42983,9 @@ export declare const iscreateCustomModuleFormPayload: (obj?: {
42126
42983
  export declare const iscreateCustomModulePayload: (obj?: {
42127
42984
  __typename?: any;
42128
42985
  } | null) => obj is createCustomModulePayload;
42986
+ export declare const iscreateCustomNavItemPayload: (obj?: {
42987
+ __typename?: any;
42988
+ } | null) => obj is createCustomNavItemPayload;
42129
42989
  export declare const iscreateDocumentPayload: (obj?: {
42130
42990
  __typename?: any;
42131
42991
  } | null) => obj is createDocumentPayload;
@@ -42138,6 +42998,9 @@ export declare const iscreateDosespotPayload: (obj?: {
42138
42998
  export declare const iscreateDraftPayload: (obj?: {
42139
42999
  __typename?: any;
42140
43000
  } | null) => obj is createDraftPayload;
43001
+ export declare const iscreateDsiCommentPayload: (obj?: {
43002
+ __typename?: any;
43003
+ } | null) => obj is createDsiCommentPayload;
42141
43004
  export declare const iscreateEbookPayload: (obj?: {
42142
43005
  __typename?: any;
42143
43006
  } | null) => obj is createEbookPayload;
@@ -42189,6 +43052,9 @@ export declare const iscreateGoogleFitPayload: (obj?: {
42189
43052
  export declare const iscreateGroupPayload: (obj?: {
42190
43053
  __typename?: any;
42191
43054
  } | null) => obj is createGroupPayload;
43055
+ export declare const iscreateHarborPartnerApiKeyPayload: (obj?: {
43056
+ __typename?: any;
43057
+ } | null) => obj is createHarborPartnerApiKeyPayload;
42192
43058
  export declare const iscreateHealthConcernPayload: (obj?: {
42193
43059
  __typename?: any;
42194
43060
  } | null) => obj is createHealthConcernPayload;
@@ -42366,6 +43232,9 @@ export declare const isdeleteAppointmentTypePayload: (obj?: {
42366
43232
  export declare const isdeleteAutoTaskGeneratorPayload: (obj?: {
42367
43233
  __typename?: any;
42368
43234
  } | null) => obj is deleteAutoTaskGeneratorPayload;
43235
+ export declare const isdeleteAutoscoringPayload: (obj?: {
43236
+ __typename?: any;
43237
+ } | null) => obj is deleteAutoscoringPayload;
42369
43238
  export declare const isdeleteAvailabilityPayload: (obj?: {
42370
43239
  __typename?: any;
42371
43240
  } | null) => obj is deleteAvailabilityPayload;
@@ -42417,6 +43286,9 @@ export declare const isdeleteCustomModuleFormPayload: (obj?: {
42417
43286
  export declare const isdeleteCustomModulePayload: (obj?: {
42418
43287
  __typename?: any;
42419
43288
  } | null) => obj is deleteCustomModulePayload;
43289
+ export declare const isdeleteCustomNavItemPayload: (obj?: {
43290
+ __typename?: any;
43291
+ } | null) => obj is deleteCustomNavItemPayload;
42420
43292
  export declare const isdeleteDexcomConnectionPayload: (obj?: {
42421
43293
  __typename?: any;
42422
43294
  } | null) => obj is deleteDexcomConnectionPayload;
@@ -42576,6 +43448,9 @@ export declare const isdestroyAnnouncementPayload: (obj?: {
42576
43448
  export declare const isdestroyFaxAcctInfoPayload: (obj?: {
42577
43449
  __typename?: any;
42578
43450
  } | null) => obj is destroyFaxAcctInfoPayload;
43451
+ export declare const isdestroyHarborPartnerApiKeyPayload: (obj?: {
43452
+ __typename?: any;
43453
+ } | null) => obj is destroyHarborPartnerApiKeyPayload;
42579
43454
  export declare const isdestroyMedicationPayload: (obj?: {
42580
43455
  __typename?: any;
42581
43456
  } | null) => obj is destroyMedicationPayload;
@@ -42660,6 +43535,9 @@ export declare const isrunEligibilityCheckMutationPayload: (obj?: {
42660
43535
  export declare const issendCarePlanEmailPayload: (obj?: {
42661
43536
  __typename?: any;
42662
43537
  } | null) => obj is sendCarePlanEmailPayload;
43538
+ export declare const issendTestWebhookPayload: (obj?: {
43539
+ __typename?: any;
43540
+ } | null) => obj is sendTestWebhookPayload;
42663
43541
  export declare const isshareAnswersAsDocumentPayload: (obj?: {
42664
43542
  __typename?: any;
42665
43543
  } | null) => obj is shareAnswersAsDocumentPayload;
@@ -42720,6 +43598,9 @@ export declare const isupdateAutoTaskGeneratorPayload: (obj?: {
42720
43598
  export declare const isupdateAutomatedInsuranceBillingSettingPayload: (obj?: {
42721
43599
  __typename?: any;
42722
43600
  } | null) => obj is updateAutomatedInsuranceBillingSettingPayload;
43601
+ export declare const isupdateAutoscoringPayload: (obj?: {
43602
+ __typename?: any;
43603
+ } | null) => obj is updateAutoscoringPayload;
42723
43604
  export declare const isupdateBillingItemPayload: (obj?: {
42724
43605
  __typename?: any;
42725
43606
  } | null) => obj is updateBillingItemPayload;
@@ -42786,9 +43667,15 @@ export declare const isupdateCustomModuleFormPayload: (obj?: {
42786
43667
  export declare const isupdateCustomModulePayload: (obj?: {
42787
43668
  __typename?: any;
42788
43669
  } | null) => obj is updateCustomModulePayload;
43670
+ export declare const isupdateCustomNavItemsPayload: (obj?: {
43671
+ __typename?: any;
43672
+ } | null) => obj is updateCustomNavItemsPayload;
42789
43673
  export declare const isupdateDocumentPayload: (obj?: {
42790
43674
  __typename?: any;
42791
43675
  } | null) => obj is updateDocumentPayload;
43676
+ export declare const isupdateDsiCommentPayload: (obj?: {
43677
+ __typename?: any;
43678
+ } | null) => obj is updateDsiCommentPayload;
42792
43679
  export declare const isupdateEntryPayload: (obj?: {
42793
43680
  __typename?: any;
42794
43681
  } | null) => obj is updateEntryPayload;
@@ -42912,6 +43799,9 @@ export declare const isupdateProductPayload: (obj?: {
42912
43799
  export declare const isupdateProviderCptCodesPayload: (obj?: {
42913
43800
  __typename?: any;
42914
43801
  } | null) => obj is updateProviderCptCodesPayload;
43802
+ export declare const isupdateReceivedDirectMessagePayload: (obj?: {
43803
+ __typename?: any;
43804
+ } | null) => obj is updateReceivedDirectMessagePayload;
42915
43805
  export declare const isupdateReceivedFaxPayload: (obj?: {
42916
43806
  __typename?: any;
42917
43807
  } | null) => obj is updateReceivedFaxPayload;
@@ -43212,6 +44102,16 @@ export declare const enumIntakeFlowOrderKeys: {
43212
44102
  COMPLETE_DATE_ASC: "COMPLETE_DATE_ASC";
43213
44103
  COMPLETE_DATE_DESC: "COMPLETE_DATE_DESC";
43214
44104
  };
44105
+ export declare const enumInterventionType: {
44106
+ GENDER_MISMATCHED_DIAGNOSIS: "GENDER_MISMATCHED_DIAGNOSIS";
44107
+ INCOMPATIBLE_DIABETES_DIAGNOSIS: "INCOMPATIBLE_DIABETES_DIAGNOSIS";
44108
+ UDI_NOT_UNIQUE: "UDI_NOT_UNIQUE";
44109
+ BREAST_CANCER_PROCEDURE_RECOMMENDATION: "BREAST_CANCER_PROCEDURE_RECOMMENDATION";
44110
+ ALLERGY_DRUG_INTERACTIONS: "ALLERGY_DRUG_INTERACTIONS";
44111
+ LAB_BASED_ASSESSMENTS: "LAB_BASED_ASSESSMENTS";
44112
+ DRUG_DRUG_INTERACTIONS: "DRUG_DRUG_INTERACTIONS";
44113
+ VITALS_OUTSIDE_OF_RANGE: "VITALS_OUTSIDE_OF_RANGE";
44114
+ };
43215
44115
  export declare const enumLabOrderOrderKeys: {
43216
44116
  NAME_ASC: "NAME_ASC";
43217
44117
  NAME_DESC: "NAME_DESC";
@@ -43345,6 +44245,10 @@ export declare const enumSentDirectMessageOrderKeys: {
43345
44245
  UPDATED_AT_ASC: "UPDATED_AT_ASC";
43346
44246
  UPDATED_AT_DESC: "UPDATED_AT_DESC";
43347
44247
  };
44248
+ export declare const enumSentDirectMessageXml: {
44249
+ cda: "cda";
44250
+ referral_note: "referral_note";
44251
+ };
43348
44252
  export declare const enumSentFaxOrderKeys: {
43349
44253
  CREATED_AT_ASC: "CREATED_AT_ASC";
43350
44254
  CREATED_AT_DESC: "CREATED_AT_DESC";
@@ -43428,6 +44332,7 @@ export declare const enumTaskOrderKeys: {
43428
44332
  CLIENT_NAME_ASC: "CLIENT_NAME_ASC";
43429
44333
  COMPLETED_AT_ASC: "COMPLETED_AT_ASC";
43430
44334
  COMPLETED_AT_DESC: "COMPLETED_AT_DESC";
44335
+ COMPLETED_AT_DESC_INCOMPLETE_FIRST: "COMPLETED_AT_DESC_INCOMPLETE_FIRST";
43431
44336
  UPDATED_AT_ASC: "UPDATED_AT_ASC";
43432
44337
  UPDATED_AT_DESC: "UPDATED_AT_DESC";
43433
44338
  };