@awell-health/ui-library 0.1.65 → 0.1.66

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -16114,8 +16114,11 @@ Check the top-level render call using <` + t + ">.");
16114
16114
  })(exports.AllowedDatesOptions || (exports.AllowedDatesOptions = {}));
16115
16115
  exports.ApiCallRequestMethod = void 0;
16116
16116
  (function (ApiCallRequestMethod) {
16117
+ ApiCallRequestMethod["Delete"] = "DELETE";
16117
16118
  ApiCallRequestMethod["Get"] = "GET";
16119
+ ApiCallRequestMethod["Patch"] = "PATCH";
16118
16120
  ApiCallRequestMethod["Post"] = "POST";
16121
+ ApiCallRequestMethod["Put"] = "PUT";
16119
16122
  })(exports.ApiCallRequestMethod || (exports.ApiCallRequestMethod = {}));
16120
16123
  exports.ApiCallStatus = void 0;
16121
16124
  (function (ApiCallStatus) {
@@ -16153,6 +16156,8 @@ Check the top-level render call using <` + t + ">.");
16153
16156
  ConditionOperator["IsInRange"] = "IS_IN_RANGE";
16154
16157
  ConditionOperator["IsLessThan"] = "IS_LESS_THAN";
16155
16158
  ConditionOperator["IsLessThanOrEqualTo"] = "IS_LESS_THAN_OR_EQUAL_TO";
16159
+ ConditionOperator["IsLessThanXDaysAgo"] = "IS_LESS_THAN_X_DAYS_AGO";
16160
+ ConditionOperator["IsMoreThanXDaysAgo"] = "IS_MORE_THAN_X_DAYS_AGO";
16156
16161
  ConditionOperator["IsNoneOf"] = "IS_NONE_OF";
16157
16162
  ConditionOperator["IsNotEmpty"] = "IS_NOT_EMPTY";
16158
16163
  ConditionOperator["IsNotEqualTo"] = "IS_NOT_EQUAL_TO";
@@ -16268,27 +16273,11 @@ Check the top-level render call using <` + t + ">.");
16268
16273
  StakeholderClinicalAppRole["Patient"] = "PATIENT";
16269
16274
  StakeholderClinicalAppRole["Physician"] = "PHYSICIAN";
16270
16275
  })(exports.StakeholderClinicalAppRole || (exports.StakeholderClinicalAppRole = {}));
16271
- exports.SwimlaneItemCategory = void 0;
16272
- (function (SwimlaneItemCategory) {
16273
- SwimlaneItemCategory["Action"] = "ACTION";
16274
- SwimlaneItemCategory["PathwayEnd"] = "PATHWAY_END";
16275
- SwimlaneItemCategory["PathwayStart"] = "PATHWAY_START";
16276
- SwimlaneItemCategory["Step"] = "STEP";
16277
- SwimlaneItemCategory["Track"] = "TRACK";
16278
- SwimlaneItemCategory["TrackEnd"] = "TRACK_END";
16279
- SwimlaneItemCategory["TrackStart"] = "TRACK_START";
16280
- })(exports.SwimlaneItemCategory || (exports.SwimlaneItemCategory = {}));
16281
- exports.SwimlaneItemType = void 0;
16282
- (function (SwimlaneItemType) {
16283
- SwimlaneItemType["Active"] = "active";
16284
- SwimlaneItemType["Completed"] = "completed";
16285
- SwimlaneItemType["Pending"] = "pending";
16286
- SwimlaneItemType["Possible"] = "possible";
16287
- })(exports.SwimlaneItemType || (exports.SwimlaneItemType = {}));
16288
16276
  exports.UserQuestionType = void 0;
16289
16277
  (function (UserQuestionType) {
16290
16278
  UserQuestionType["Date"] = "DATE";
16291
16279
  UserQuestionType["Description"] = "DESCRIPTION";
16280
+ UserQuestionType["Email"] = "EMAIL";
16292
16281
  UserQuestionType["LongText"] = "LONG_TEXT";
16293
16282
  UserQuestionType["MultipleChoice"] = "MULTIPLE_CHOICE";
16294
16283
  UserQuestionType["MultipleChoiceGrid"] = "MULTIPLE_CHOICE_GRID";
@@ -37483,11 +37472,17 @@ Check the top-level render call using <` + t + ">.");
37483
37472
  return undefined;
37484
37473
  };
37485
37474
 
37475
+ var isValidEmail = function (email) {
37476
+ var emailRegex = /^[^\s@]+@[^\s@]+\.[^\s@]+$/;
37477
+ return emailRegex.test(email);
37478
+ };
37479
+
37486
37480
  var AUTO_PROGRESS_DELAY = 850;
37487
37481
  var QuestionData = function (_a) {
37488
37482
  var _b, _c, _d, _e, _f;
37489
37483
  var question = _a.question,control = _a.control,getValues = _a.getValues,labels = _a.labels,_g = _a.inputAutoFocus,inputAutoFocus = _g === void 0 ? false : _g,_h = _a.submitAndMoveToNextQuestion,submitAndMoveToNextQuestion = _h === void 0 ? lodash.exports.noop : _h,_j = _a.onAnswerChange,onAnswerChange = _j === void 0 ? lodash.exports.noop : _j,_k = _a.shouldAutoProgress,shouldAutoProgress = _k === void 0 ? function () {return false;} : _k;
37490
37484
  var config = question === null || question === void 0 ? void 0 : question.questionConfig;
37485
+ useValidate().validateDateResponse;
37491
37486
  switch (question.userQuestionType) {
37492
37487
  case exports.UserQuestionType.YesNo:
37493
37488
  return jsxRuntime.exports.jsx(Controller, { name: question.id, control: control, defaultValue: "", rules: { required: config === null || config === void 0 ? void 0 : config.mandatory }, render: function (_a) {
@@ -37618,6 +37613,19 @@ Check the top-level render call using <` + t + ">.");
37618
37613
  onAnswerChange();
37619
37614
  }, touchTooltipLabel: (_b = labels.slider) === null || _b === void 0 ? void 0 : _b.tooltip_guide, id: question.id, sliderConfig: config === null || config === void 0 ? void 0 : config.slider, value: value === '' ? undefined : value, mandatory: config === null || config === void 0 ? void 0 : config.mandatory });
37620
37615
  } });
37616
+ case exports.UserQuestionType.Email:
37617
+ return jsxRuntime.exports.jsx(Controller, { name: question.id, control: control, defaultValue: "", rules: {
37618
+ required: config === null || config === void 0 ? void 0 : config.mandatory,
37619
+ validate: function (value) {
37620
+ return isValidEmail(value);
37621
+ } },
37622
+ render: function (_a) {
37623
+ var _b = _a.field,onChange = _b.onChange,value = _b.value;
37624
+ return jsxRuntime.exports.jsx(InputField, { autoFocus: inputAutoFocus, type: "email", onChange: function (e) {
37625
+ onChange(e.target.value);
37626
+ onAnswerChange();
37627
+ }, label: question.title, id: question.id, value: value, mandatory: config === null || config === void 0 ? void 0 : config.mandatory });
37628
+ } });
37621
37629
  case exports.UserQuestionType.Date:
37622
37630
  return jsxRuntime.exports.jsx(Controller, { name: question.id, control: control, rules: {
37623
37631
  required: config === null || config === void 0 ? void 0 : config.mandatory },
@@ -52131,6 +52139,7 @@ Check the top-level render call using <` + t + ">.");
52131
52139
  exports.useScrollHint = useScrollHint;
52132
52140
  exports.useTheme = useTheme;
52133
52141
  exports.useTraditionalForm = useTraditionalForm;
52142
+ exports.useValidate = useValidate;
52134
52143
 
52135
52144
  Object.defineProperty(exports, '__esModule', { value: true });
52136
52145
 
@@ -1,6 +1,6 @@
1
1
  import { ChangeEventHandler, InputHTMLAttributes, MouseEventHandler } from 'react';
2
2
  export interface InputFieldProps extends InputHTMLAttributes<HTMLInputElement> {
3
- type: 'number' | 'text' | 'date';
3
+ type: 'number' | 'text' | 'date' | 'email';
4
4
  label: string;
5
5
  id: string;
6
6
  onChange: ChangeEventHandler<HTMLInputElement>;
@@ -1,5 +1,5 @@
1
1
  export { Button, CheckboxButton, DatePicker, Description, InputField, QuestionLabel, Logo, LongTextField, RadioButton, RangeInput, RichTextViewer, HeadingMain, HeadingSecondary, HeadingTertiary, SubHeading, Heading5, Heading6, Text, InlineText, ExternalLink, InnerText, CircularSpinner, HorizontalSpinner, ThemeProvider, useTheme, ScrollIndicator, Modal, CalDotComScheduling, type CalDotComBookingSuccessfulFunction, ProgressIndicator, TypingCaret, WithTypingCaret, Select, } from './atoms';
2
2
  export { MultipleChoiceQuestion, Navbar, Question, SingleChoiceQuestion, AttachmentList, } from './molecules';
3
3
  export { Checklist, ConversationalForm, TraditionalForm, WizardForm, Message, HostedPageLayout, CloseButton, CloudinaryUpload, CloudinarySingleFileUpload, HostedPageFooter, LoadActivityPlaceholder, CollectMedication, } from './hostedPages';
4
- export { useClickOutsideNotifier, useScrollHint, useConversationalForm, useTraditionalForm, } from './hooks';
4
+ export { useClickOutsideNotifier, useScrollHint, useConversationalForm, useTraditionalForm, useValidate, } from './hooks';
5
5
  export * from './types';
@@ -0,0 +1 @@
1
+ export declare const isValidEmail: (email: string) => boolean;
@@ -249,8 +249,11 @@ export declare type ApiCallRequest = {
249
249
  method: ApiCallRequestMethod;
250
250
  };
251
251
  export declare enum ApiCallRequestMethod {
252
+ Delete = "DELETE",
252
253
  Get = "GET",
253
- Post = "POST"
254
+ Patch = "PATCH",
255
+ Post = "POST",
256
+ Put = "PUT"
254
257
  }
255
258
  export declare type ApiCallResponse = {
256
259
  __typename?: 'ApiCallResponse';
@@ -389,6 +392,8 @@ export declare enum ConditionOperator {
389
392
  IsInRange = "IS_IN_RANGE",
390
393
  IsLessThan = "IS_LESS_THAN",
391
394
  IsLessThanOrEqualTo = "IS_LESS_THAN_OR_EQUAL_TO",
395
+ IsLessThanXDaysAgo = "IS_LESS_THAN_X_DAYS_AGO",
396
+ IsMoreThanXDaysAgo = "IS_MORE_THAN_X_DAYS_AGO",
392
397
  IsNoneOf = "IS_NONE_OF",
393
398
  IsNotEmpty = "IS_NOT_EMPTY",
394
399
  IsNotEqualTo = "IS_NOT_EQUAL_TO",
@@ -429,6 +434,16 @@ export declare type CurrentUserPayload = Payload & {
429
434
  success: Scalars['Boolean'];
430
435
  user: CurrentUser;
431
436
  };
437
+ export declare type DataPoint = {
438
+ __typename?: 'DataPoint';
439
+ activity_id?: Maybe<Scalars['String']>;
440
+ data_point_definition_id: Scalars['String'];
441
+ data_set_id: Scalars['String'];
442
+ date: Scalars['String'];
443
+ id: Scalars['ID'];
444
+ serialized_value?: Maybe<Scalars['String']>;
445
+ valueType: DataPointValueType;
446
+ };
432
447
  export declare type DataPointDefinition = {
433
448
  __typename?: 'DataPointDefinition';
434
449
  category: DataPointSourceType;
@@ -453,6 +468,14 @@ export declare type DataPointMetaDataItem = {
453
468
  key: Scalars['String'];
454
469
  value: Scalars['String'];
455
470
  };
471
+ export declare type DataPointPayload = PaginationAndSortingPayload & {
472
+ __typename?: 'DataPointPayload';
473
+ code: Scalars['String'];
474
+ dataPoints: Array<DataPoint>;
475
+ pagination?: Maybe<PaginationOutput>;
476
+ sorting?: Maybe<SortingOutput>;
477
+ success: Scalars['Boolean'];
478
+ };
456
479
  export declare type DataPointPossibleValue = {
457
480
  __typename?: 'DataPointPossibleValue';
458
481
  label?: Maybe<Scalars['String']>;
@@ -497,6 +520,11 @@ export declare type DeletePathwayInput = {
497
520
  export declare type DeletePatientInput = {
498
521
  patient_id: Scalars['String'];
499
522
  };
523
+ export declare type EmrRequest = {
524
+ __typename?: 'EMRRequest';
525
+ id?: Maybe<Scalars['String']>;
526
+ status?: Maybe<Scalars['String']>;
527
+ };
500
528
  export declare type Element = {
501
529
  __typename?: 'Element';
502
530
  activity_type?: Maybe<ActionType>;
@@ -633,9 +661,6 @@ export declare type FilterPathwayDataPointDefinitionsParams = {
633
661
  category?: InputMaybe<StringArrayFilter>;
634
662
  value_type?: InputMaybe<StringArrayFilter>;
635
663
  };
636
- export declare type FilterPathwayDefinitionsParams = {
637
- search?: InputMaybe<TextFilterContains>;
638
- };
639
664
  export declare type FilterPathways = {
640
665
  pathway_definition_id?: InputMaybe<IdFilter>;
641
666
  patient_id?: InputMaybe<StringArrayFilter>;
@@ -689,17 +714,18 @@ export declare type FormResponsePayload = Payload & {
689
714
  response: FormResponse;
690
715
  success: Scalars['Boolean'];
691
716
  };
692
- export declare type FormattedText = {
693
- __typename?: 'FormattedText';
694
- content: TranslatedText;
695
- format: Scalars['String'];
696
- };
697
717
  export declare type FormsPayload = Payload & {
698
718
  __typename?: 'FormsPayload';
699
719
  code: Scalars['String'];
700
720
  forms?: Maybe<Array<Form>>;
701
721
  success: Scalars['Boolean'];
702
722
  };
723
+ export declare type GenerateRetoolEmbedUrlPayload = Payload & {
724
+ __typename?: 'GenerateRetoolEmbedUrlPayload';
725
+ code: Scalars['String'];
726
+ success: Scalars['Boolean'];
727
+ url?: Maybe<Scalars['String']>;
728
+ };
703
729
  export declare type GeneratedClinicalNote = {
704
730
  __typename?: 'GeneratedClinicalNote';
705
731
  context: Array<GeneratedClinicalNoteContextField>;
@@ -787,6 +813,12 @@ export declare type IdentifierSystem = {
787
813
  name: Scalars['String'];
788
814
  system: Scalars['String'];
789
815
  };
816
+ export declare type IdentityVerificationPayload = Payload & {
817
+ __typename?: 'IdentityVerificationPayload';
818
+ code: Scalars['String'];
819
+ is_verified: Scalars['Boolean'];
820
+ success: Scalars['Boolean'];
821
+ };
790
822
  export declare type MarkMessageAsReadInput = {
791
823
  activity_id: Scalars['String'];
792
824
  };
@@ -865,9 +897,11 @@ export declare type Mutation = {
865
897
  submitFormResponse: SubmitFormResponsePayload;
866
898
  unscheduleTracks: CancelScheduledTracksPayload;
867
899
  updateBaselineInfo: EmptyPayload;
900
+ updateEmrReportStatus: UpdateEmrReportStatusPayload;
868
901
  updatePatient: UpdatePatientPayload;
869
902
  updatePatientDemographicsQuery: UpdatePatientDemographicsQueryPayload;
870
903
  updatePatientLanguage: UpdatePatientLanguagePayload;
904
+ verify_identity: IdentityVerificationPayload;
871
905
  };
872
906
  export declare type MutationAddIdentifierToPatientArgs = {
873
907
  input: AddIdentifierToPatientInput;
@@ -880,7 +914,6 @@ export declare type MutationCompleteExtensionActivityArgs = {
880
914
  };
881
915
  export declare type MutationCreatePatientArgs = {
882
916
  input?: InputMaybe<CreatePatientInput>;
883
- mycare?: InputMaybe<MyCareOptions>;
884
917
  };
885
918
  export declare type MutationDeletePathwayArgs = {
886
919
  input: DeletePathwayInput;
@@ -966,6 +999,9 @@ export declare type MutationUnscheduleTracksArgs = {
966
999
  export declare type MutationUpdateBaselineInfoArgs = {
967
1000
  input: UpdateBaselineInfoInput;
968
1001
  };
1002
+ export declare type MutationUpdateEmrReportStatusArgs = {
1003
+ input: UpdateEmrReportStatusInput;
1004
+ };
969
1005
  export declare type MutationUpdatePatientArgs = {
970
1006
  input: UpdatePatientInput;
971
1007
  };
@@ -975,8 +1011,8 @@ export declare type MutationUpdatePatientDemographicsQueryArgs = {
975
1011
  export declare type MutationUpdatePatientLanguageArgs = {
976
1012
  input: UpdatePatientLanguageInput;
977
1013
  };
978
- export declare type MyCareOptions = {
979
- password?: InputMaybe<Scalars['String']>;
1014
+ export declare type MutationVerify_IdentityArgs = {
1015
+ input: VerifyIdentityInput;
980
1016
  };
981
1017
  export declare type NumberArrayFilter = {
982
1018
  in?: InputMaybe<Array<Scalars['Float']>>;
@@ -1038,7 +1074,6 @@ export declare type Pathway = {
1038
1074
  __typename?: 'Pathway';
1039
1075
  activities?: Maybe<Array<Activity>>;
1040
1076
  complete_date?: Maybe<Scalars['SafeDate']>;
1041
- dashboards?: Maybe<PathwayDashboard>;
1042
1077
  id: Scalars['ID'];
1043
1078
  latestActivities: Array<Activity>;
1044
1079
  pathway_definition_id: Scalars['String'];
@@ -1049,7 +1084,6 @@ export declare type Pathway = {
1049
1084
  status: PathwayStatus;
1050
1085
  status_explanation?: Maybe<Scalars['String']>;
1051
1086
  stop_date?: Maybe<Scalars['SafeDate']>;
1052
- swimlanes: Swimlanes;
1053
1087
  title: Scalars['String'];
1054
1088
  tracks: Array<Track>;
1055
1089
  version?: Maybe<Scalars['Float']>;
@@ -1062,12 +1096,6 @@ export declare type PathwayContext = {
1062
1096
  step_id?: Maybe<Scalars['String']>;
1063
1097
  track_id?: Maybe<Scalars['String']>;
1064
1098
  };
1065
- export declare type PathwayDashboard = {
1066
- __typename?: 'PathwayDashboard';
1067
- cumulio_auth_id: Scalars['String'];
1068
- cumulio_auth_token: Scalars['String'];
1069
- dashboard_ids: Array<Scalars['String']>;
1070
- };
1071
1099
  export declare type PathwayDataPointDefinitionsPayload = Payload & {
1072
1100
  __typename?: 'PathwayDataPointDefinitionsPayload';
1073
1101
  code: Scalars['String'];
@@ -1261,6 +1289,7 @@ export declare type Query = {
1261
1289
  form: FormPayload;
1262
1290
  formResponse: FormResponsePayload;
1263
1291
  forms: FormsPayload;
1292
+ generateRetoolEmbedUrl: GenerateRetoolEmbedUrlPayload;
1264
1293
  getOrchestrationFactsFromPrompt: OrchestrationFactsPromptPayload;
1265
1294
  getStatusForPublishedPathwayDefinitions: PublishedPathwayDefinitionsPayload;
1266
1295
  hostedPagesLink: HostedPagesLinkPayload;
@@ -1273,6 +1302,7 @@ export declare type Query = {
1273
1302
  pathway: PathwayPayload;
1274
1303
  pathwayActivities: ActivitiesPayload;
1275
1304
  pathwayDataPointDefinitions: PathwayDataPointDefinitionsPayload;
1305
+ pathwayDataPoints: DataPointPayload;
1276
1306
  pathwayElements: ElementsPayload;
1277
1307
  pathwayFacts: OrchestrationFactsPayload;
1278
1308
  pathwayStepActivities: ActivitiesPayload;
@@ -1283,7 +1313,6 @@ export declare type Query = {
1283
1313
  patientPathways: PatientPathwaysPayload;
1284
1314
  patients: PatientsPayload;
1285
1315
  publishedPathwayDefinitions: PublishedPathwayDefinitionsPayload;
1286
- publishedPathwayDefinitionsDashboard: PublishedPathwayDefinitionsPayload;
1287
1316
  scheduledSteps: ScheduledStepsPayload;
1288
1317
  scheduledTracksForPathway: ScheduledTracksPayload;
1289
1318
  searchPatientsByNationalRegistryNumber: SearchPatientsPayload;
@@ -1352,6 +1381,11 @@ export declare type QueryFormsArgs = {
1352
1381
  pathway_definition_id: Scalars['String'];
1353
1382
  release_id?: InputMaybe<Scalars['String']>;
1354
1383
  };
1384
+ export declare type QueryGenerateRetoolEmbedUrlArgs = {
1385
+ groupIds: Array<Scalars['String']>;
1386
+ landingPageUuid: Scalars['String'];
1387
+ userInfo: UserInfoParams;
1388
+ };
1355
1389
  export declare type QueryGetOrchestrationFactsFromPromptArgs = {
1356
1390
  pathway_id: Scalars['String'];
1357
1391
  prompt: Scalars['String'];
@@ -1384,6 +1418,13 @@ export declare type QueryPathwayDataPointDefinitionsArgs = {
1384
1418
  pathway_definition_id?: InputMaybe<Scalars['String']>;
1385
1419
  release_id: Scalars['String'];
1386
1420
  };
1421
+ export declare type QueryPathwayDataPointsArgs = {
1422
+ activity_id?: InputMaybe<Scalars['String']>;
1423
+ data_point_definition_id?: InputMaybe<Scalars['String']>;
1424
+ pagination?: InputMaybe<PaginationParams>;
1425
+ pathway_id: Scalars['String'];
1426
+ sorting?: InputMaybe<SortingParams>;
1427
+ };
1387
1428
  export declare type QueryPathwayElementsArgs = {
1388
1429
  pathway_id: Scalars['String'];
1389
1430
  };
@@ -1417,11 +1458,6 @@ export declare type QueryPatientsArgs = {
1417
1458
  pagination?: InputMaybe<PaginationParams>;
1418
1459
  sorting?: InputMaybe<SortingParams>;
1419
1460
  };
1420
- export declare type QueryPublishedPathwayDefinitionsDashboardArgs = {
1421
- filters?: InputMaybe<FilterPathwayDefinitionsParams>;
1422
- pagination?: InputMaybe<PaginationParams>;
1423
- sorting?: InputMaybe<SortingParams>;
1424
- };
1425
1461
  export declare type QueryScheduledStepsArgs = {
1426
1462
  pathway_id: Scalars['String'];
1427
1463
  };
@@ -1856,52 +1892,6 @@ export declare type SubscriptionWebhookCallCreatedArgs = {
1856
1892
  export declare type SubscriptionWebhookCallUpdatedArgs = {
1857
1893
  pathway_id: Scalars['String'];
1858
1894
  };
1859
- export declare type Swimlane = {
1860
- __typename?: 'Swimlane';
1861
- id: Scalars['ID'];
1862
- title: Scalars['String'];
1863
- };
1864
- export declare type SwimlaneItem = {
1865
- __typename?: 'SwimlaneItem';
1866
- category: SwimlaneItemCategory;
1867
- column_index: Scalars['Float'];
1868
- date?: Maybe<Scalars['SafeDate']>;
1869
- documentation?: Maybe<FormattedText>;
1870
- id: Scalars['ID'];
1871
- info?: Maybe<Scalars['String']>;
1872
- lane_id: Scalars['ID'];
1873
- row_index: Scalars['Float'];
1874
- title: Scalars['String'];
1875
- track_id?: Maybe<Scalars['ID']>;
1876
- type: SwimlaneItemType;
1877
- };
1878
- export declare enum SwimlaneItemCategory {
1879
- Action = "ACTION",
1880
- PathwayEnd = "PATHWAY_END",
1881
- PathwayStart = "PATHWAY_START",
1882
- Step = "STEP",
1883
- Track = "TRACK",
1884
- TrackEnd = "TRACK_END",
1885
- TrackStart = "TRACK_START"
1886
- }
1887
- export declare enum SwimlaneItemType {
1888
- Active = "active",
1889
- Completed = "completed",
1890
- Pending = "pending",
1891
- Possible = "possible"
1892
- }
1893
- export declare type SwimlaneLink = {
1894
- __typename?: 'SwimlaneLink';
1895
- destination_id: Scalars['ID'];
1896
- id: Scalars['ID'];
1897
- origin_id: Scalars['ID'];
1898
- };
1899
- export declare type Swimlanes = {
1900
- __typename?: 'Swimlanes';
1901
- items: Array<SwimlaneItem>;
1902
- lanes: Array<Swimlane>;
1903
- links: Array<SwimlaneLink>;
1904
- };
1905
1895
  export declare type Tenant = {
1906
1896
  __typename?: 'Tenant';
1907
1897
  accent_color: Scalars['String'];
@@ -1942,6 +1932,17 @@ export declare type UpdateBaselineInfoInput = {
1942
1932
  baseline_info: Array<BaselineInfoInput>;
1943
1933
  pathway_id: Scalars['String'];
1944
1934
  };
1935
+ export declare type UpdateEmrReportStatusInput = {
1936
+ reason: Scalars['String'];
1937
+ request_id: Scalars['String'];
1938
+ status: Scalars['String'];
1939
+ };
1940
+ export declare type UpdateEmrReportStatusPayload = Payload & {
1941
+ __typename?: 'UpdateEmrReportStatusPayload';
1942
+ code: Scalars['String'];
1943
+ request?: Maybe<EmrRequest>;
1944
+ success: Scalars['Boolean'];
1945
+ };
1945
1946
  export declare type UpdatePatientDemographicsQueryInput = {
1946
1947
  created_patient_entry_index: Scalars['Float'];
1947
1948
  created_patient_id: Scalars['String'];
@@ -1979,6 +1980,12 @@ export declare type User = {
1979
1980
  profile?: Maybe<UserProfile>;
1980
1981
  tenant_id: Scalars['String'];
1981
1982
  };
1983
+ export declare type UserInfoParams = {
1984
+ email: Scalars['String'];
1985
+ firstName: Scalars['String'];
1986
+ id: Scalars['String'];
1987
+ lastName: Scalars['String'];
1988
+ };
1982
1989
  export declare type UserProfile = {
1983
1990
  __typename?: 'UserProfile';
1984
1991
  address?: Maybe<Address>;
@@ -1998,6 +2005,7 @@ export declare type UserProfile = {
1998
2005
  export declare enum UserQuestionType {
1999
2006
  Date = "DATE",
2000
2007
  Description = "DESCRIPTION",
2008
+ Email = "EMAIL",
2001
2009
  LongText = "LONG_TEXT",
2002
2010
  MultipleChoice = "MULTIPLE_CHOICE",
2003
2011
  MultipleChoiceGrid = "MULTIPLE_CHOICE_GRID",
@@ -2009,6 +2017,10 @@ export declare enum UserQuestionType {
2009
2017
  Telephone = "TELEPHONE",
2010
2018
  YesNo = "YES_NO"
2011
2019
  }
2020
+ export declare type VerifyIdentityInput = {
2021
+ dob?: InputMaybe<Scalars['String']>;
2022
+ pathway_id: Scalars['String'];
2023
+ };
2012
2024
  export declare type WebhookCall = {
2013
2025
  __typename?: 'WebhookCall';
2014
2026
  created_at: Scalars['String'];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awell-health/ui-library",
3
- "version": "0.1.65",
3
+ "version": "0.1.66",
4
4
  "description": "UI components to integrate with Awell Health",
5
5
  "repository": {
6
6
  "type": "git",