ch-admin-api-client-typescript 4.8.1 → 4.8.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/lib/api.d.ts CHANGED
@@ -1096,6 +1096,61 @@ export interface AuditableEntity {
1096
1096
  */
1097
1097
  'isDeleted'?: boolean;
1098
1098
  }
1099
+ /**
1100
+ *
1101
+ * @export
1102
+ * @interface AuditableEntityModel
1103
+ */
1104
+ export interface AuditableEntityModel {
1105
+ /**
1106
+ *
1107
+ * @type {string}
1108
+ * @memberof AuditableEntityModel
1109
+ */
1110
+ 'createdBy'?: string;
1111
+ /**
1112
+ *
1113
+ * @type {string}
1114
+ * @memberof AuditableEntityModel
1115
+ */
1116
+ 'updatedBy'?: string | null;
1117
+ /**
1118
+ *
1119
+ * @type {string}
1120
+ * @memberof AuditableEntityModel
1121
+ */
1122
+ 'deletedBy'?: string | null;
1123
+ /**
1124
+ *
1125
+ * @type {Date}
1126
+ * @memberof AuditableEntityModel
1127
+ */
1128
+ 'createdDate'?: Date;
1129
+ /**
1130
+ *
1131
+ * @type {Date}
1132
+ * @memberof AuditableEntityModel
1133
+ */
1134
+ 'updatedDate'?: Date | null;
1135
+ /**
1136
+ *
1137
+ * @type {Date}
1138
+ * @memberof AuditableEntityModel
1139
+ */
1140
+ 'deletedDate'?: Date | null;
1141
+ /**
1142
+ *
1143
+ * @type {boolean}
1144
+ * @memberof AuditableEntityModel
1145
+ */
1146
+ 'isHidden'?: boolean;
1147
+ /**
1148
+ *
1149
+ * @type {boolean}
1150
+ * @memberof AuditableEntityModel
1151
+ */
1152
+ 'isDeleted'?: boolean;
1153
+ }
1099
1154
  /**
1100
1155
  *
1101
1156
  * @export
@@ -5668,6 +5723,67 @@ export interface CreateSpecialtyTypeCommand {
5668
5723
  */
5669
5724
  'medias'?: Array<MediaModel> | null;
5670
5725
  }
5726
+ /**
5727
+ *
5728
+ * @export
5729
+ * @interface CreateSurveyFormCommand
5730
+ */
5731
+ export interface CreateSurveyFormCommand {
5732
+ /**
5733
+ *
5734
+ * @type {string}
5735
+ * @memberof CreateSurveyFormCommand
5736
+ */
5737
+ 'languageCode'?: string | null;
5738
+ /**
5739
+ *
5740
+ * @type {string}
5741
+ * @memberof CreateSurveyFormCommand
5742
+ */
5743
+ 'hospitalId'?: string;
5744
+ /**
5745
+ *
5746
+ * @type {SurveyFormStatus}
5747
+ * @memberof CreateSurveyFormCommand
5748
+ */
5749
+ 'status'?: SurveyFormStatus;
5750
+ /**
5751
+ *
5752
+ * @type {string}
5753
+ * @memberof CreateSurveyFormCommand
5754
+ */
5755
+ 'name'?: string | null;
5756
+ /**
5757
+ *
5758
+ * @type {string}
5759
+ * @memberof CreateSurveyFormCommand
5760
+ */
5761
+ 'content'?: string | null;
5762
+ /**
5763
+ *
5764
+ * @type {string}
5765
+ * @memberof CreateSurveyFormCommand
5766
+ */
5767
+ 'overview'?: string | null;
5768
+ /**
5769
+ *
5770
+ * @type {string}
5771
+ * @memberof CreateSurveyFormCommand
5772
+ */
5773
+ 'description'?: string | null;
5774
+ /**
5775
+ *
5776
+ * @type {boolean}
5777
+ * @memberof CreateSurveyFormCommand
5778
+ */
5779
+ 'isConfirmed'?: boolean;
5780
+ /**
5781
+ *
5782
+ * @type {Array<SurveyFormElementInputModel>}
5783
+ * @memberof CreateSurveyFormCommand
5784
+ */
5785
+ 'elements'?: Array<SurveyFormElementInputModel> | null;
5786
+ }
5671
5787
  /**
5672
5788
  *
5673
5789
  * @export
@@ -13427,6 +13543,643 @@ export interface SubscriptionModel {
13427
13543
  */
13428
13544
  'status'?: string | null;
13429
13545
  }
13546
+ /**
13547
+ *
13548
+ * @export
13549
+ * @interface SurveyFormElementInputModel
13550
+ */
13551
+ export interface SurveyFormElementInputModel {
13552
+ /**
13553
+ *
13554
+ * @type {string}
13555
+ * @memberof SurveyFormElementInputModel
13556
+ */
13557
+ 'id'?: string | null;
13558
+ /**
13559
+ *
13560
+ * @type {SurveyFormElementTypes}
13561
+ * @memberof SurveyFormElementInputModel
13562
+ */
13563
+ 'elementType'?: SurveyFormElementTypes;
13564
+ /**
13565
+ *
13566
+ * @type {string}
13567
+ * @memberof SurveyFormElementInputModel
13568
+ */
13569
+ 'formInputName'?: string | null;
13570
+ /**
13571
+ *
13572
+ * @type {boolean}
13573
+ * @memberof SurveyFormElementInputModel
13574
+ */
13575
+ 'isRequired'?: boolean;
13576
+ /**
13577
+ *
13578
+ * @type {boolean}
13579
+ * @memberof SurveyFormElementInputModel
13580
+ */
13581
+ 'isHidden'?: boolean;
13582
+ /**
13583
+ *
13584
+ * @type {number}
13585
+ * @memberof SurveyFormElementInputModel
13586
+ */
13587
+ 'order'?: number;
13588
+ /**
13589
+ *
13590
+ * @type {string}
13591
+ * @memberof SurveyFormElementInputModel
13592
+ */
13593
+ 'name'?: string | null;
13594
+ /**
13595
+ *
13596
+ * @type {string}
13597
+ * @memberof SurveyFormElementInputModel
13598
+ */
13599
+ 'placeholder'?: string | null;
13600
+ /**
13601
+ *
13602
+ * @type {boolean}
13603
+ * @memberof SurveyFormElementInputModel
13604
+ */
13605
+ 'isConfirmed'?: boolean;
13606
+ /**
13607
+ *
13608
+ * @type {Array<SurveyFormElementOptionInputModel>}
13609
+ * @memberof SurveyFormElementInputModel
13610
+ */
13611
+ 'options'?: Array<SurveyFormElementOptionInputModel> | null;
13612
+ }
13613
+ /**
13614
+ *
13615
+ * @export
13616
+ * @interface SurveyFormElementModel
13617
+ */
13618
+ export interface SurveyFormElementModel {
13619
+ /**
13620
+ *
13621
+ * @type {string}
13622
+ * @memberof SurveyFormElementModel
13623
+ */
13624
+ 'id'?: string;
13625
+ /**
13626
+ *
13627
+ * @type {SurveyFormElementTypes}
13628
+ * @memberof SurveyFormElementModel
13629
+ */
13630
+ 'elementType'?: SurveyFormElementTypes;
13631
+ /**
13632
+ *
13633
+ * @type {string}
13634
+ * @memberof SurveyFormElementModel
13635
+ */
13636
+ 'formInputName'?: string | null;
13637
+ /**
13638
+ *
13639
+ * @type {boolean}
13640
+ * @memberof SurveyFormElementModel
13641
+ */
13642
+ 'isRequired'?: boolean;
13643
+ /**
13644
+ *
13645
+ * @type {boolean}
13646
+ * @memberof SurveyFormElementModel
13647
+ */
13648
+ 'isHidden'?: boolean;
13649
+ /**
13650
+ *
13651
+ * @type {number}
13652
+ * @memberof SurveyFormElementModel
13653
+ */
13654
+ 'order'?: number;
13655
+ /**
13656
+ *
13657
+ * @type {string}
13658
+ * @memberof SurveyFormElementModel
13659
+ */
13660
+ 'languageCode'?: string | null;
13661
+ /**
13662
+ *
13663
+ * @type {string}
13664
+ * @memberof SurveyFormElementModel
13665
+ */
13666
+ 'name'?: string | null;
13667
+ /**
13668
+ *
13669
+ * @type {string}
13670
+ * @memberof SurveyFormElementModel
13671
+ */
13672
+ 'placeholder'?: string | null;
13673
+ /**
13674
+ *
13675
+ * @type {Array<SurveyFormElementOptionModel>}
13676
+ * @memberof SurveyFormElementModel
13677
+ */
13678
+ 'options'?: Array<SurveyFormElementOptionModel> | null;
13679
+ }
13680
+ /**
13681
+ *
13682
+ * @export
13683
+ * @interface SurveyFormElementOptionInputModel
13684
+ */
13685
+ export interface SurveyFormElementOptionInputModel {
13686
+ /**
13687
+ *
13688
+ * @type {string}
13689
+ * @memberof SurveyFormElementOptionInputModel
13690
+ */
13691
+ 'id'?: string | null;
13692
+ /**
13693
+ *
13694
+ * @type {string}
13695
+ * @memberof SurveyFormElementOptionInputModel
13696
+ */
13697
+ 'value'?: string | null;
13698
+ /**
13699
+ *
13700
+ * @type {boolean}
13701
+ * @memberof SurveyFormElementOptionInputModel
13702
+ */
13703
+ 'needAdditionalValue'?: boolean;
13704
+ /**
13705
+ *
13706
+ * @type {number}
13707
+ * @memberof SurveyFormElementOptionInputModel
13708
+ */
13709
+ 'order'?: number;
13710
+ /**
13711
+ *
13712
+ * @type {string}
13713
+ * @memberof SurveyFormElementOptionInputModel
13714
+ */
13715
+ 'name'?: string | null;
13716
+ /**
13717
+ *
13718
+ * @type {boolean}
13719
+ * @memberof SurveyFormElementOptionInputModel
13720
+ */
13721
+ 'isConfirmed'?: boolean;
13722
+ }
13723
+ /**
13724
+ *
13725
+ * @export
13726
+ * @interface SurveyFormElementOptionModel
13727
+ */
13728
+ export interface SurveyFormElementOptionModel {
13729
+ /**
13730
+ *
13731
+ * @type {string}
13732
+ * @memberof SurveyFormElementOptionModel
13733
+ */
13734
+ 'id'?: string;
13735
+ /**
13736
+ *
13737
+ * @type {string}
13738
+ * @memberof SurveyFormElementOptionModel
13739
+ */
13740
+ 'surveyFormElementId'?: string;
13741
+ /**
13742
+ *
13743
+ * @type {string}
13744
+ * @memberof SurveyFormElementOptionModel
13745
+ */
13746
+ 'value'?: string | null;
13747
+ /**
13748
+ *
13749
+ * @type {boolean}
13750
+ * @memberof SurveyFormElementOptionModel
13751
+ */
13752
+ 'needAdditionalValue'?: boolean;
13753
+ /**
13754
+ *
13755
+ * @type {number}
13756
+ * @memberof SurveyFormElementOptionModel
13757
+ */
13758
+ 'order'?: number;
13759
+ /**
13760
+ *
13761
+ * @type {string}
13762
+ * @memberof SurveyFormElementOptionModel
13763
+ */
13764
+ 'name'?: string | null;
13765
+ /**
13766
+ *
13767
+ * @type {string}
13768
+ * @memberof SurveyFormElementOptionModel
13769
+ */
13770
+ 'languageCode'?: string | null;
13771
+ }
13772
+ /**
13773
+ *
13774
+ * @export
13775
+ * @enum {string}
13776
+ */
13777
+ export declare const SurveyFormElementTypes: {
13778
+ readonly SingleLineText: "SingleLineText";
13779
+ readonly MultiLineText: "MultiLineText";
13780
+ readonly Email: "Email";
13781
+ readonly DateTime: "DateTime";
13782
+ readonly Date: "Date";
13783
+ readonly Time: "Time";
13784
+ readonly NumberInteger: "NumberInteger";
13785
+ readonly NumberFloat: "NumberFloat";
13786
+ readonly Select: "Select";
13787
+ readonly Checkbox: "Checkbox";
13788
+ readonly Radio: "Radio";
13789
+ readonly File: "File";
13790
+ };
13791
+ export type SurveyFormElementTypes = typeof SurveyFormElementTypes[keyof typeof SurveyFormElementTypes];
13792
+ /**
13793
+ *
13794
+ * @export
13795
+ * @interface SurveyFormItemModel
13796
+ */
13797
+ export interface SurveyFormItemModel {
13798
+ /**
13799
+ *
13800
+ * @type {string}
13801
+ * @memberof SurveyFormItemModel
13802
+ */
13803
+ 'id'?: string;
13804
+ /**
13805
+ *
13806
+ * @type {string}
13807
+ * @memberof SurveyFormItemModel
13808
+ */
13809
+ 'hospitalId'?: string;
13810
+ /**
13811
+ *
13812
+ * @type {string}
13813
+ * @memberof SurveyFormItemModel
13814
+ */
13815
+ 'hospitalName'?: string | null;
13816
+ /**
13817
+ *
13818
+ * @type {SurveyFormStatus}
13819
+ * @memberof SurveyFormItemModel
13820
+ */
13821
+ 'status'?: SurveyFormStatus;
13822
+ /**
13823
+ *
13824
+ * @type {string}
13825
+ * @memberof SurveyFormItemModel
13826
+ */
13827
+ 'languageCode'?: string | null;
13828
+ /**
13829
+ *
13830
+ * @type {string}
13831
+ * @memberof SurveyFormItemModel
13832
+ */
13833
+ 'name'?: string | null;
13834
+ /**
13835
+ *
13836
+ * @type {AuditableEntityModel}
13837
+ * @memberof SurveyFormItemModel
13838
+ */
13839
+ 'auditableEntity'?: AuditableEntityModel;
13840
+ }
13841
+ /**
13842
+ *
13843
+ * @export
13844
+ * @interface SurveyFormModel
13845
+ */
13846
+ export interface SurveyFormModel {
13847
+ /**
13848
+ *
13849
+ * @type {string}
13850
+ * @memberof SurveyFormModel
13851
+ */
13852
+ 'id'?: string;
13853
+ /**
13854
+ *
13855
+ * @type {string}
13856
+ * @memberof SurveyFormModel
13857
+ */
13858
+ 'hospitalId'?: string;
13859
+ /**
13860
+ *
13861
+ * @type {string}
13862
+ * @memberof SurveyFormModel
13863
+ */
13864
+ 'hospitalName'?: string | null;
13865
+ /**
13866
+ *
13867
+ * @type {SurveyFormStatus}
13868
+ * @memberof SurveyFormModel
13869
+ */
13870
+ 'status'?: SurveyFormStatus;
13871
+ /**
13872
+ *
13873
+ * @type {string}
13874
+ * @memberof SurveyFormModel
13875
+ */
13876
+ 'languageCode'?: string | null;
13877
+ /**
13878
+ *
13879
+ * @type {string}
13880
+ * @memberof SurveyFormModel
13881
+ */
13882
+ 'name'?: string | null;
13883
+ /**
13884
+ *
13885
+ * @type {AuditableEntityModel}
13886
+ * @memberof SurveyFormModel
13887
+ */
13888
+ 'auditableEntity'?: AuditableEntityModel;
13889
+ /**
13890
+ *
13891
+ * @type {string}
13892
+ * @memberof SurveyFormModel
13893
+ */
13894
+ 'description'?: string | null;
13895
+ /**
13896
+ *
13897
+ * @type {string}
13898
+ * @memberof SurveyFormModel
13899
+ */
13900
+ 'overview'?: string | null;
13901
+ /**
13902
+ *
13903
+ * @type {string}
13904
+ * @memberof SurveyFormModel
13905
+ */
13906
+ 'content'?: string | null;
13907
+ /**
13908
+ *
13909
+ * @type {Array<SurveyFormElementModel>}
13910
+ * @memberof SurveyFormModel
13911
+ */
13912
+ 'elements'?: Array<SurveyFormElementModel> | null;
13913
+ }
13914
+ /**
13915
+ *
13916
+ * @export
13917
+ * @enum {string}
13918
+ */
13919
+ export declare const SurveyFormStatus: {
13920
+ readonly Draft: "Draft";
13921
+ readonly Active: "Active";
13922
+ };
13923
+ export type SurveyFormStatus = typeof SurveyFormStatus[keyof typeof SurveyFormStatus];
13924
+ /**
13925
+ *
13926
+ * @export
13927
+ * @interface SurveyFormsModel
13928
+ */
13929
+ export interface SurveyFormsModel {
13930
+ /**
13931
+ *
13932
+ * @type {Array<SurveyFormItemModel>}
13933
+ * @memberof SurveyFormsModel
13934
+ */
13935
+ 'items'?: Array<SurveyFormItemModel> | null;
13936
+ /**
13937
+ *
13938
+ * @type {PagedListMetaData}
13939
+ * @memberof SurveyFormsModel
13940
+ */
13941
+ 'metaData'?: PagedListMetaData;
13942
+ }
13943
+ /**
13944
+ *
13945
+ * @export
13946
+ * @interface SurveyResultElementModel
13947
+ */
13948
+ export interface SurveyResultElementModel {
13949
+ /**
13950
+ *
13951
+ * @type {string}
13952
+ * @memberof SurveyResultElementModel
13953
+ */
13954
+ 'label'?: string | null;
13955
+ /**
13956
+ *
13957
+ * @type {number}
13958
+ * @memberof SurveyResultElementModel
13959
+ */
13960
+ 'order'?: number;
13961
+ /**
13962
+ *
13963
+ * @type {Array<SurveyResultElementValueModel>}
13964
+ * @memberof SurveyResultElementModel
13965
+ */
13966
+ 'values'?: Array<SurveyResultElementValueModel> | null;
13967
+ }
13968
+ /**
13969
+ *
13970
+ * @export
13971
+ * @interface SurveyResultElementValueModel
13972
+ */
13973
+ export interface SurveyResultElementValueModel {
13974
+ /**
13975
+ *
13976
+ * @type {string}
13977
+ * @memberof SurveyResultElementValueModel
13978
+ */
13979
+ 'value'?: string | null;
13980
+ /**
13981
+ *
13982
+ * @type {string}
13983
+ * @memberof SurveyResultElementValueModel
13984
+ */
13985
+ 'additionalValue'?: string | null;
13986
+ /**
13987
+ *
13988
+ * @type {number}
13989
+ * @memberof SurveyResultElementValueModel
13990
+ */
13991
+ 'order'?: number;
13992
+ }
13993
+ /**
13994
+ *
13995
+ * @export
13996
+ * @interface SurveyResultItemModel
13997
+ */
13998
+ export interface SurveyResultItemModel {
13999
+ /**
14000
+ *
14001
+ * @type {string}
14002
+ * @memberof SurveyResultItemModel
14003
+ */
14004
+ 'id'?: string;
14005
+ /**
14006
+ *
14007
+ * @type {string}
14008
+ * @memberof SurveyResultItemModel
14009
+ */
14010
+ 'surveyFormId'?: string;
14011
+ /**
14012
+ *
14013
+ * @type {string}
14014
+ * @memberof SurveyResultItemModel
14015
+ */
14016
+ 'surveyFormName'?: string | null;
14017
+ /**
14018
+ *
14019
+ * @type {string}
14020
+ * @memberof SurveyResultItemModel
14021
+ */
14022
+ 'hospitalId'?: string;
14023
+ /**
14024
+ *
14025
+ * @type {string}
14026
+ * @memberof SurveyResultItemModel
14027
+ */
14028
+ 'hospitalName'?: string | null;
14029
+ /**
14030
+ *
14031
+ * @type {string}
14032
+ * @memberof SurveyResultItemModel
14033
+ */
14034
+ 'languageCode'?: string | null;
14035
+ /**
14036
+ *
14037
+ * @type {string}
14038
+ * @memberof SurveyResultItemModel
14039
+ */
14040
+ 'userId'?: string | null;
14041
+ /**
14042
+ *
14043
+ * @type {SurveyResultUserModel}
14044
+ * @memberof SurveyResultItemModel
14045
+ */
14046
+ 'user'?: SurveyResultUserModel;
14047
+ /**
14048
+ *
14049
+ * @type {Date}
14050
+ * @memberof SurveyResultItemModel
14051
+ */
14052
+ 'createdDate'?: Date;
14053
+ }
14054
+ /**
14055
+ *
14056
+ * @export
14057
+ * @interface SurveyResultModel
14058
+ */
14059
+ export interface SurveyResultModel {
14060
+ /**
14061
+ *
14062
+ * @type {string}
14063
+ * @memberof SurveyResultModel
14064
+ */
14065
+ 'id'?: string;
14066
+ /**
14067
+ *
14068
+ * @type {string}
14069
+ * @memberof SurveyResultModel
14070
+ */
14071
+ 'surveyFormId'?: string;
14072
+ /**
14073
+ *
14074
+ * @type {string}
14075
+ * @memberof SurveyResultModel
14076
+ */
14077
+ 'surveyFormName'?: string | null;
14078
+ /**
14079
+ *
14080
+ * @type {string}
14081
+ * @memberof SurveyResultModel
14082
+ */
14083
+ 'hospitalId'?: string;
14084
+ /**
14085
+ *
14086
+ * @type {string}
14087
+ * @memberof SurveyResultModel
14088
+ */
14089
+ 'hospitalName'?: string | null;
14090
+ /**
14091
+ *
14092
+ * @type {string}
14093
+ * @memberof SurveyResultModel
14094
+ */
14095
+ 'languageCode'?: string | null;
14096
+ /**
14097
+ *
14098
+ * @type {string}
14099
+ * @memberof SurveyResultModel
14100
+ */
14101
+ 'userId'?: string | null;
14102
+ /**
14103
+ *
14104
+ * @type {SurveyResultUserModel}
14105
+ * @memberof SurveyResultModel
14106
+ */
14107
+ 'user'?: SurveyResultUserModel;
14108
+ /**
14109
+ *
14110
+ * @type {Date}
14111
+ * @memberof SurveyResultModel
14112
+ */
14113
+ 'createdDate'?: Date;
14114
+ /**
14115
+ *
14116
+ * @type {string}
14117
+ * @memberof SurveyResultModel
14118
+ */
14119
+ 'surveyFormContent'?: string | null;
14120
+ /**
14121
+ *
14122
+ * @type {string}
14123
+ * @memberof SurveyResultModel
14124
+ */
14125
+ 'surveyFormOverview'?: string | null;
14126
+ /**
14127
+ *
14128
+ * @type {string}
14129
+ * @memberof SurveyResultModel
14130
+ */
14131
+ 'surveyFormDescription'?: string | null;
14132
+ /**
14133
+ *
14134
+ * @type {Array<SurveyResultElementModel>}
14135
+ * @memberof SurveyResultModel
14136
+ */
14137
+ 'elements'?: Array<SurveyResultElementModel> | null;
14138
+ }
14139
+ /**
14140
+ *
14141
+ * @export
14142
+ * @interface SurveyResultUserModel
14143
+ */
14144
+ export interface SurveyResultUserModel {
14145
+ /**
14146
+ *
14147
+ * @type {string}
14148
+ * @memberof SurveyResultUserModel
14149
+ */
14150
+ 'firstName'?: string | null;
14151
+ /**
14152
+ *
14153
+ * @type {string}
14154
+ * @memberof SurveyResultUserModel
14155
+ */
14156
+ 'lastName'?: string | null;
14157
+ /**
14158
+ *
14159
+ * @type {string}
14160
+ * @memberof SurveyResultUserModel
14161
+ */
14162
+ 'email'?: string | null;
14163
+ }
14164
+ /**
14165
+ *
14166
+ * @export
14167
+ * @interface SurveyResultsModel
14168
+ */
14169
+ export interface SurveyResultsModel {
14170
+ /**
14171
+ *
14172
+ * @type {Array<SurveyResultItemModel>}
14173
+ * @memberof SurveyResultsModel
14174
+ */
14175
+ 'items'?: Array<SurveyResultItemModel> | null;
14176
+ /**
14177
+ *
14178
+ * @type {PagedListMetaData}
14179
+ * @memberof SurveyResultsModel
14180
+ */
14181
+ 'metaData'?: PagedListMetaData;
14182
+ }
13430
14183
  /**
13431
14184
  *
13432
14185
  * @export
@@ -16167,6 +16920,61 @@ export interface UpdateSpecialtyTypeCommand {
16167
16920
  */
16168
16921
  'medias'?: Array<MediaModel> | null;
16169
16922
  }
16923
+ /**
16924
+ *
16925
+ * @export
16926
+ * @interface UpdateSurveyFormCommand
16927
+ */
16928
+ export interface UpdateSurveyFormCommand {
16929
+ /**
16930
+ *
16931
+ * @type {string}
16932
+ * @memberof UpdateSurveyFormCommand
16933
+ */
16934
+ 'languageCode'?: string | null;
16935
+ /**
16936
+ *
16937
+ * @type {SurveyFormStatus}
16938
+ * @memberof UpdateSurveyFormCommand
16939
+ */
16940
+ 'status'?: SurveyFormStatus;
16941
+ /**
16942
+ *
16943
+ * @type {string}
16944
+ * @memberof UpdateSurveyFormCommand
16945
+ */
16946
+ 'name'?: string | null;
16947
+ /**
16948
+ *
16949
+ * @type {string}
16950
+ * @memberof UpdateSurveyFormCommand
16951
+ */
16952
+ 'content'?: string | null;
16953
+ /**
16954
+ *
16955
+ * @type {string}
16956
+ * @memberof UpdateSurveyFormCommand
16957
+ */
16958
+ 'overview'?: string | null;
16959
+ /**
16960
+ *
16961
+ * @type {string}
16962
+ * @memberof UpdateSurveyFormCommand
16963
+ */
16964
+ 'description'?: string | null;
16965
+ /**
16966
+ *
16967
+ * @type {boolean}
16968
+ * @memberof UpdateSurveyFormCommand
16969
+ */
16970
+ 'isConfirmed'?: boolean;
16971
+ /**
16972
+ *
16973
+ * @type {Array<SurveyFormElementInputModel>}
16974
+ * @memberof UpdateSurveyFormCommand
16975
+ */
16976
+ 'elements'?: Array<SurveyFormElementInputModel> | null;
16977
+ }
16170
16978
  /**
16171
16979
  *
16172
16980
  * @export
@@ -33781,6 +34589,390 @@ export declare class SpecialtyTypesApi extends BaseAPI {
33781
34589
  */
33782
34590
  apiV1SpecialtytypesSpecialtyTypeIdReactivePut(specialtyTypeId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
33783
34591
  }
34592
+ /**
34593
+ * SurveyFormsApi - axios parameter creator
34594
+ * @export
34595
+ */
34596
+ export declare const SurveyFormsApiAxiosParamCreator: (configuration?: Configuration) => {
34597
+ /**
34598
+ *
34599
+ * @summary Get survey forms
34600
+ * @param {string} [id]
34601
+ * @param {string} [hospitalId]
34602
+ * @param {string} [name]
34603
+ * @param {string} [languageCode]
34604
+ * @param {boolean} [showHidden]
34605
+ * @param {SurveyFormStatus} [status]
34606
+ * @param {number} [page]
34607
+ * @param {number} [limit]
34608
+ * @param {Date} [lastRetrieved]
34609
+ * @param {*} [options] Override http request option.
34610
+ * @throws {RequiredError}
34611
+ */
34612
+ apiV1SurveyformsGet: (id?: string, hospitalId?: string, name?: string, languageCode?: string, showHidden?: boolean, status?: SurveyFormStatus, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
34613
+ /**
34614
+ *
34615
+ * @summary Create survey form
34616
+ * @param {CreateSurveyFormCommand} [createSurveyFormCommand]
34617
+ * @param {*} [options] Override http request option.
34618
+ * @throws {RequiredError}
34619
+ */
34620
+ apiV1SurveyformsPost: (createSurveyFormCommand?: CreateSurveyFormCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
34621
+ /**
34622
+ *
34623
+ * @summary Delete survey form by Id
34624
+ * @param {string} surveyFormId
34625
+ * @param {boolean} [isPermanent]
34626
+ * @param {*} [options] Override http request option.
34627
+ * @throws {RequiredError}
34628
+ */
34629
+ apiV1SurveyformsSurveyFormIdDelete: (surveyFormId: string, isPermanent?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
34630
+ /**
34631
+ *
34632
+ * @summary Get survey form by Id
34633
+ * @param {string} surveyFormId
34634
+ * @param {string} [languageCode]
34635
+ * @param {*} [options] Override http request option.
34636
+ * @throws {RequiredError}
34637
+ */
34638
+ apiV1SurveyformsSurveyFormIdGet: (surveyFormId: string, languageCode?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
34639
+ /**
34640
+ *
34641
+ * @summary Update survey form
34642
+ * @param {string} surveyFormId
34643
+ * @param {UpdateSurveyFormCommand} [updateSurveyFormCommand]
34644
+ * @param {*} [options] Override http request option.
34645
+ * @throws {RequiredError}
34646
+ */
34647
+ apiV1SurveyformsSurveyFormIdPut: (surveyFormId: string, updateSurveyFormCommand?: UpdateSurveyFormCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
34648
+ };
34649
+ /**
34650
+ * SurveyFormsApi - functional programming interface
34651
+ * @export
34652
+ */
34653
+ export declare const SurveyFormsApiFp: (configuration?: Configuration) => {
34654
+ /**
34655
+ *
34656
+ * @summary Get survey forms
34657
+ * @param {string} [id]
34658
+ * @param {string} [hospitalId]
34659
+ * @param {string} [name]
34660
+ * @param {string} [languageCode]
34661
+ * @param {boolean} [showHidden]
34662
+ * @param {SurveyFormStatus} [status]
34663
+ * @param {number} [page]
34664
+ * @param {number} [limit]
34665
+ * @param {Date} [lastRetrieved]
34666
+ * @param {*} [options] Override http request option.
34667
+ * @throws {RequiredError}
34668
+ */
34669
+ apiV1SurveyformsGet(id?: string, hospitalId?: string, name?: string, languageCode?: string, showHidden?: boolean, status?: SurveyFormStatus, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SurveyFormsModel>>;
34670
+ /**
34671
+ *
34672
+ * @summary Create survey form
34673
+ * @param {CreateSurveyFormCommand} [createSurveyFormCommand]
34674
+ * @param {*} [options] Override http request option.
34675
+ * @throws {RequiredError}
34676
+ */
34677
+ apiV1SurveyformsPost(createSurveyFormCommand?: CreateSurveyFormCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
34678
+ /**
34679
+ *
34680
+ * @summary Delete survey form by Id
34681
+ * @param {string} surveyFormId
34682
+ * @param {boolean} [isPermanent]
34683
+ * @param {*} [options] Override http request option.
34684
+ * @throws {RequiredError}
34685
+ */
34686
+ apiV1SurveyformsSurveyFormIdDelete(surveyFormId: string, isPermanent?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
34687
+ /**
34688
+ *
34689
+ * @summary Get survey form by Id
34690
+ * @param {string} surveyFormId
34691
+ * @param {string} [languageCode]
34692
+ * @param {*} [options] Override http request option.
34693
+ * @throws {RequiredError}
34694
+ */
34695
+ apiV1SurveyformsSurveyFormIdGet(surveyFormId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SurveyFormModel>>;
34696
+ /**
34697
+ *
34698
+ * @summary Update survey form
34699
+ * @param {string} surveyFormId
34700
+ * @param {UpdateSurveyFormCommand} [updateSurveyFormCommand]
34701
+ * @param {*} [options] Override http request option.
34702
+ * @throws {RequiredError}
34703
+ */
34704
+ apiV1SurveyformsSurveyFormIdPut(surveyFormId: string, updateSurveyFormCommand?: UpdateSurveyFormCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
34705
+ };
34706
+ /**
34707
+ * SurveyFormsApi - factory interface
34708
+ * @export
34709
+ */
34710
+ export declare const SurveyFormsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
34711
+ /**
34712
+ *
34713
+ * @summary Get survey forms
34714
+ * @param {string} [id]
34715
+ * @param {string} [hospitalId]
34716
+ * @param {string} [name]
34717
+ * @param {string} [languageCode]
34718
+ * @param {boolean} [showHidden]
34719
+ * @param {SurveyFormStatus} [status]
34720
+ * @param {number} [page]
34721
+ * @param {number} [limit]
34722
+ * @param {Date} [lastRetrieved]
34723
+ * @param {*} [options] Override http request option.
34724
+ * @throws {RequiredError}
34725
+ */
34726
+ apiV1SurveyformsGet(id?: string, hospitalId?: string, name?: string, languageCode?: string, showHidden?: boolean, status?: SurveyFormStatus, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<SurveyFormsModel>;
34727
+ /**
34728
+ *
34729
+ * @summary Create survey form
34730
+ * @param {CreateSurveyFormCommand} [createSurveyFormCommand]
34731
+ * @param {*} [options] Override http request option.
34732
+ * @throws {RequiredError}
34733
+ */
34734
+ apiV1SurveyformsPost(createSurveyFormCommand?: CreateSurveyFormCommand, options?: any): AxiosPromise<void>;
34735
+ /**
34736
+ *
34737
+ * @summary Delete survey form by Id
34738
+ * @param {string} surveyFormId
34739
+ * @param {boolean} [isPermanent]
34740
+ * @param {*} [options] Override http request option.
34741
+ * @throws {RequiredError}
34742
+ */
34743
+ apiV1SurveyformsSurveyFormIdDelete(surveyFormId: string, isPermanent?: boolean, options?: any): AxiosPromise<boolean>;
34744
+ /**
34745
+ *
34746
+ * @summary Get survey form by Id
34747
+ * @param {string} surveyFormId
34748
+ * @param {string} [languageCode]
34749
+ * @param {*} [options] Override http request option.
34750
+ * @throws {RequiredError}
34751
+ */
34752
+ apiV1SurveyformsSurveyFormIdGet(surveyFormId: string, languageCode?: string, options?: any): AxiosPromise<SurveyFormModel>;
34753
+ /**
34754
+ *
34755
+ * @summary Update survey form
34756
+ * @param {string} surveyFormId
34757
+ * @param {UpdateSurveyFormCommand} [updateSurveyFormCommand]
34758
+ * @param {*} [options] Override http request option.
34759
+ * @throws {RequiredError}
34760
+ */
34761
+ apiV1SurveyformsSurveyFormIdPut(surveyFormId: string, updateSurveyFormCommand?: UpdateSurveyFormCommand, options?: any): AxiosPromise<void>;
34762
+ };
34763
+ /**
34764
+ * SurveyFormsApi - object-oriented interface
34765
+ * @export
34766
+ * @class SurveyFormsApi
34767
+ * @extends {BaseAPI}
34768
+ */
34769
+ export declare class SurveyFormsApi extends BaseAPI {
34770
+ /**
34771
+ *
34772
+ * @summary Get survey forms
34773
+ * @param {string} [id]
34774
+ * @param {string} [hospitalId]
34775
+ * @param {string} [name]
34776
+ * @param {string} [languageCode]
34777
+ * @param {boolean} [showHidden]
34778
+ * @param {SurveyFormStatus} [status]
34779
+ * @param {number} [page]
34780
+ * @param {number} [limit]
34781
+ * @param {Date} [lastRetrieved]
34782
+ * @param {*} [options] Override http request option.
34783
+ * @throws {RequiredError}
34784
+ * @memberof SurveyFormsApi
34785
+ */
34786
+ apiV1SurveyformsGet(id?: string, hospitalId?: string, name?: string, languageCode?: string, showHidden?: boolean, status?: SurveyFormStatus, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SurveyFormsModel, any>>;
34787
+ /**
34788
+ *
34789
+ * @summary Create survey form
34790
+ * @param {CreateSurveyFormCommand} [createSurveyFormCommand]
34791
+ * @param {*} [options] Override http request option.
34792
+ * @throws {RequiredError}
34793
+ * @memberof SurveyFormsApi
34794
+ */
34795
+ apiV1SurveyformsPost(createSurveyFormCommand?: CreateSurveyFormCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
34796
+ /**
34797
+ *
34798
+ * @summary Delete survey form by Id
34799
+ * @param {string} surveyFormId
34800
+ * @param {boolean} [isPermanent]
34801
+ * @param {*} [options] Override http request option.
34802
+ * @throws {RequiredError}
34803
+ * @memberof SurveyFormsApi
34804
+ */
34805
+ apiV1SurveyformsSurveyFormIdDelete(surveyFormId: string, isPermanent?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
34806
+ /**
34807
+ *
34808
+ * @summary Get survey form by Id
34809
+ * @param {string} surveyFormId
34810
+ * @param {string} [languageCode]
34811
+ * @param {*} [options] Override http request option.
34812
+ * @throws {RequiredError}
34813
+ * @memberof SurveyFormsApi
34814
+ */
34815
+ apiV1SurveyformsSurveyFormIdGet(surveyFormId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SurveyFormModel, any>>;
34816
+ /**
34817
+ *
34818
+ * @summary Update survey form
34819
+ * @param {string} surveyFormId
34820
+ * @param {UpdateSurveyFormCommand} [updateSurveyFormCommand]
34821
+ * @param {*} [options] Override http request option.
34822
+ * @throws {RequiredError}
34823
+ * @memberof SurveyFormsApi
34824
+ */
34825
+ apiV1SurveyformsSurveyFormIdPut(surveyFormId: string, updateSurveyFormCommand?: UpdateSurveyFormCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
34826
+ }
34827
+ /**
34828
+ * SurveyResultsApi - axios parameter creator
34829
+ * @export
34830
+ */
34831
+ export declare const SurveyResultsApiAxiosParamCreator: (configuration?: Configuration) => {
34832
+ /**
34833
+ *
34834
+ * @summary Get survey results
34835
+ * @param {string} [id]
34836
+ * @param {string} [hospitalId]
34837
+ * @param {string} [name]
34838
+ * @param {string} [languageCode]
34839
+ * @param {number} [page]
34840
+ * @param {number} [limit]
34841
+ * @param {Date} [lastRetrieved]
34842
+ * @param {*} [options] Override http request option.
34843
+ * @throws {RequiredError}
34844
+ */
34845
+ apiV1SurveyresultsGet: (id?: string, hospitalId?: string, name?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
34846
+ /**
34847
+ *
34848
+ * @summary Delete survey result
34849
+ * @param {string} surveyResultId
34850
+ * @param {*} [options] Override http request option.
34851
+ * @throws {RequiredError}
34852
+ */
34853
+ apiV1SurveyresultsSurveyResultIdDelete: (surveyResultId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
34854
+ /**
34855
+ *
34856
+ * @summary Get survey result by Id
34857
+ * @param {string} surveyResultId
34858
+ * @param {*} [options] Override http request option.
34859
+ * @throws {RequiredError}
34860
+ */
34861
+ apiV1SurveyresultsSurveyResultIdGet: (surveyResultId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
34862
+ };
34863
+ /**
34864
+ * SurveyResultsApi - functional programming interface
34865
+ * @export
34866
+ */
34867
+ export declare const SurveyResultsApiFp: (configuration?: Configuration) => {
34868
+ /**
34869
+ *
34870
+ * @summary Get survey results
34871
+ * @param {string} [id]
34872
+ * @param {string} [hospitalId]
34873
+ * @param {string} [name]
34874
+ * @param {string} [languageCode]
34875
+ * @param {number} [page]
34876
+ * @param {number} [limit]
34877
+ * @param {Date} [lastRetrieved]
34878
+ * @param {*} [options] Override http request option.
34879
+ * @throws {RequiredError}
34880
+ */
34881
+ apiV1SurveyresultsGet(id?: string, hospitalId?: string, name?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SurveyResultsModel>>;
34882
+ /**
34883
+ *
34884
+ * @summary Delete survey result
34885
+ * @param {string} surveyResultId
34886
+ * @param {*} [options] Override http request option.
34887
+ * @throws {RequiredError}
34888
+ */
34889
+ apiV1SurveyresultsSurveyResultIdDelete(surveyResultId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
34890
+ /**
34891
+ *
34892
+ * @summary Get survey result by Id
34893
+ * @param {string} surveyResultId
34894
+ * @param {*} [options] Override http request option.
34895
+ * @throws {RequiredError}
34896
+ */
34897
+ apiV1SurveyresultsSurveyResultIdGet(surveyResultId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SurveyResultModel>>;
34898
+ };
34899
+ /**
34900
+ * SurveyResultsApi - factory interface
34901
+ * @export
34902
+ */
34903
+ export declare const SurveyResultsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
34904
+ /**
34905
+ *
34906
+ * @summary Get survey results
34907
+ * @param {string} [id]
34908
+ * @param {string} [hospitalId]
34909
+ * @param {string} [name]
34910
+ * @param {string} [languageCode]
34911
+ * @param {number} [page]
34912
+ * @param {number} [limit]
34913
+ * @param {Date} [lastRetrieved]
34914
+ * @param {*} [options] Override http request option.
34915
+ * @throws {RequiredError}
34916
+ */
34917
+ apiV1SurveyresultsGet(id?: string, hospitalId?: string, name?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<SurveyResultsModel>;
34918
+ /**
34919
+ *
34920
+ * @summary Delete survey result
34921
+ * @param {string} surveyResultId
34922
+ * @param {*} [options] Override http request option.
34923
+ * @throws {RequiredError}
34924
+ */
34925
+ apiV1SurveyresultsSurveyResultIdDelete(surveyResultId: string, options?: any): AxiosPromise<boolean>;
34926
+ /**
34927
+ *
34928
+ * @summary Get survey result by Id
34929
+ * @param {string} surveyResultId
34930
+ * @param {*} [options] Override http request option.
34931
+ * @throws {RequiredError}
34932
+ */
34933
+ apiV1SurveyresultsSurveyResultIdGet(surveyResultId: string, options?: any): AxiosPromise<SurveyResultModel>;
34934
+ };
34935
+ /**
34936
+ * SurveyResultsApi - object-oriented interface
34937
+ * @export
34938
+ * @class SurveyResultsApi
34939
+ * @extends {BaseAPI}
34940
+ */
34941
+ export declare class SurveyResultsApi extends BaseAPI {
34942
+ /**
34943
+ *
34944
+ * @summary Get survey results
34945
+ * @param {string} [id]
34946
+ * @param {string} [hospitalId]
34947
+ * @param {string} [name]
34948
+ * @param {string} [languageCode]
34949
+ * @param {number} [page]
34950
+ * @param {number} [limit]
34951
+ * @param {Date} [lastRetrieved]
34952
+ * @param {*} [options] Override http request option.
34953
+ * @throws {RequiredError}
34954
+ * @memberof SurveyResultsApi
34955
+ */
34956
+ apiV1SurveyresultsGet(id?: string, hospitalId?: string, name?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SurveyResultsModel, any>>;
34957
+ /**
34958
+ *
34959
+ * @summary Delete survey result
34960
+ * @param {string} surveyResultId
34961
+ * @param {*} [options] Override http request option.
34962
+ * @throws {RequiredError}
34963
+ * @memberof SurveyResultsApi
34964
+ */
34965
+ apiV1SurveyresultsSurveyResultIdDelete(surveyResultId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
34966
+ /**
34967
+ *
34968
+ * @summary Get survey result by Id
34969
+ * @param {string} surveyResultId
34970
+ * @param {*} [options] Override http request option.
34971
+ * @throws {RequiredError}
34972
+ * @memberof SurveyResultsApi
34973
+ */
34974
+ apiV1SurveyresultsSurveyResultIdGet(surveyResultId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SurveyResultModel, any>>;
34975
+ }
33784
34976
  /**
33785
34977
  * TagsApi - axios parameter creator
33786
34978
  * @export