ch-admin-api-client-typescript 4.8.1 → 4.8.3
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 +1200 -4
- package/lib/api.d.ts.map +1 -1
- package/lib/api.js +935 -11
- package/package.json +1 -1
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
|
|
@@ -25312,11 +26120,12 @@ export declare const GroupChannelsApiAxiosParamCreator: (configuration?: Configu
|
|
|
25312
26120
|
* @summary Get group channel list
|
|
25313
26121
|
* @param {string} [nextToken]
|
|
25314
26122
|
* @param {string} [userId]
|
|
26123
|
+
* @param {string} [customType]
|
|
25315
26124
|
* @param {number} [limit]
|
|
25316
26125
|
* @param {*} [options] Override http request option.
|
|
25317
26126
|
* @throws {RequiredError}
|
|
25318
26127
|
*/
|
|
25319
|
-
apiV1GroupchannelsGet: (nextToken?: string, userId?: string, limit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
26128
|
+
apiV1GroupchannelsGet: (nextToken?: string, userId?: string, customType?: string, limit?: number, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
25320
26129
|
};
|
|
25321
26130
|
/**
|
|
25322
26131
|
* GroupChannelsApi - functional programming interface
|
|
@@ -25337,11 +26146,12 @@ export declare const GroupChannelsApiFp: (configuration?: Configuration) => {
|
|
|
25337
26146
|
* @summary Get group channel list
|
|
25338
26147
|
* @param {string} [nextToken]
|
|
25339
26148
|
* @param {string} [userId]
|
|
26149
|
+
* @param {string} [customType]
|
|
25340
26150
|
* @param {number} [limit]
|
|
25341
26151
|
* @param {*} [options] Override http request option.
|
|
25342
26152
|
* @throws {RequiredError}
|
|
25343
26153
|
*/
|
|
25344
|
-
apiV1GroupchannelsGet(nextToken?: string, userId?: string, limit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GroupChannelList>>;
|
|
26154
|
+
apiV1GroupchannelsGet(nextToken?: string, userId?: string, customType?: string, limit?: number, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GroupChannelList>>;
|
|
25345
26155
|
};
|
|
25346
26156
|
/**
|
|
25347
26157
|
* GroupChannelsApi - factory interface
|
|
@@ -25362,11 +26172,12 @@ export declare const GroupChannelsApiFactory: (configuration?: Configuration, ba
|
|
|
25362
26172
|
* @summary Get group channel list
|
|
25363
26173
|
* @param {string} [nextToken]
|
|
25364
26174
|
* @param {string} [userId]
|
|
26175
|
+
* @param {string} [customType]
|
|
25365
26176
|
* @param {number} [limit]
|
|
25366
26177
|
* @param {*} [options] Override http request option.
|
|
25367
26178
|
* @throws {RequiredError}
|
|
25368
26179
|
*/
|
|
25369
|
-
apiV1GroupchannelsGet(nextToken?: string, userId?: string, limit?: number, options?: any): AxiosPromise<GroupChannelList>;
|
|
26180
|
+
apiV1GroupchannelsGet(nextToken?: string, userId?: string, customType?: string, limit?: number, options?: any): AxiosPromise<GroupChannelList>;
|
|
25370
26181
|
};
|
|
25371
26182
|
/**
|
|
25372
26183
|
* GroupChannelsApi - object-oriented interface
|
|
@@ -25390,12 +26201,13 @@ export declare class GroupChannelsApi extends BaseAPI {
|
|
|
25390
26201
|
* @summary Get group channel list
|
|
25391
26202
|
* @param {string} [nextToken]
|
|
25392
26203
|
* @param {string} [userId]
|
|
26204
|
+
* @param {string} [customType]
|
|
25393
26205
|
* @param {number} [limit]
|
|
25394
26206
|
* @param {*} [options] Override http request option.
|
|
25395
26207
|
* @throws {RequiredError}
|
|
25396
26208
|
* @memberof GroupChannelsApi
|
|
25397
26209
|
*/
|
|
25398
|
-
apiV1GroupchannelsGet(nextToken?: string, userId?: string, limit?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GroupChannelList, any>>;
|
|
26210
|
+
apiV1GroupchannelsGet(nextToken?: string, userId?: string, customType?: string, limit?: number, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<GroupChannelList, any>>;
|
|
25399
26211
|
}
|
|
25400
26212
|
/**
|
|
25401
26213
|
* HeaderNavigationsApi - axios parameter creator
|
|
@@ -33781,6 +34593,390 @@ export declare class SpecialtyTypesApi extends BaseAPI {
|
|
|
33781
34593
|
*/
|
|
33782
34594
|
apiV1SpecialtytypesSpecialtyTypeIdReactivePut(specialtyTypeId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
33783
34595
|
}
|
|
34596
|
+
/**
|
|
34597
|
+
* SurveyFormsApi - axios parameter creator
|
|
34598
|
+
* @export
|
|
34599
|
+
*/
|
|
34600
|
+
export declare const SurveyFormsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
34601
|
+
/**
|
|
34602
|
+
*
|
|
34603
|
+
* @summary Get survey forms
|
|
34604
|
+
* @param {string} [id]
|
|
34605
|
+
* @param {string} [hospitalId]
|
|
34606
|
+
* @param {string} [name]
|
|
34607
|
+
* @param {string} [languageCode]
|
|
34608
|
+
* @param {boolean} [showHidden]
|
|
34609
|
+
* @param {SurveyFormStatus} [status]
|
|
34610
|
+
* @param {number} [page]
|
|
34611
|
+
* @param {number} [limit]
|
|
34612
|
+
* @param {Date} [lastRetrieved]
|
|
34613
|
+
* @param {*} [options] Override http request option.
|
|
34614
|
+
* @throws {RequiredError}
|
|
34615
|
+
*/
|
|
34616
|
+
apiV1SurveyformsGet: (id?: string, hospitalId?: string, name?: string, languageCode?: string, showHidden?: boolean, status?: SurveyFormStatus, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
34617
|
+
/**
|
|
34618
|
+
*
|
|
34619
|
+
* @summary Create survey form
|
|
34620
|
+
* @param {CreateSurveyFormCommand} [createSurveyFormCommand]
|
|
34621
|
+
* @param {*} [options] Override http request option.
|
|
34622
|
+
* @throws {RequiredError}
|
|
34623
|
+
*/
|
|
34624
|
+
apiV1SurveyformsPost: (createSurveyFormCommand?: CreateSurveyFormCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
34625
|
+
/**
|
|
34626
|
+
*
|
|
34627
|
+
* @summary Delete survey form by Id
|
|
34628
|
+
* @param {string} surveyFormId
|
|
34629
|
+
* @param {boolean} [isPermanent]
|
|
34630
|
+
* @param {*} [options] Override http request option.
|
|
34631
|
+
* @throws {RequiredError}
|
|
34632
|
+
*/
|
|
34633
|
+
apiV1SurveyformsSurveyFormIdDelete: (surveyFormId: string, isPermanent?: boolean, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
34634
|
+
/**
|
|
34635
|
+
*
|
|
34636
|
+
* @summary Get survey form by Id
|
|
34637
|
+
* @param {string} surveyFormId
|
|
34638
|
+
* @param {string} [languageCode]
|
|
34639
|
+
* @param {*} [options] Override http request option.
|
|
34640
|
+
* @throws {RequiredError}
|
|
34641
|
+
*/
|
|
34642
|
+
apiV1SurveyformsSurveyFormIdGet: (surveyFormId: string, languageCode?: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
34643
|
+
/**
|
|
34644
|
+
*
|
|
34645
|
+
* @summary Update survey form
|
|
34646
|
+
* @param {string} surveyFormId
|
|
34647
|
+
* @param {UpdateSurveyFormCommand} [updateSurveyFormCommand]
|
|
34648
|
+
* @param {*} [options] Override http request option.
|
|
34649
|
+
* @throws {RequiredError}
|
|
34650
|
+
*/
|
|
34651
|
+
apiV1SurveyformsSurveyFormIdPut: (surveyFormId: string, updateSurveyFormCommand?: UpdateSurveyFormCommand, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
34652
|
+
};
|
|
34653
|
+
/**
|
|
34654
|
+
* SurveyFormsApi - functional programming interface
|
|
34655
|
+
* @export
|
|
34656
|
+
*/
|
|
34657
|
+
export declare const SurveyFormsApiFp: (configuration?: Configuration) => {
|
|
34658
|
+
/**
|
|
34659
|
+
*
|
|
34660
|
+
* @summary Get survey forms
|
|
34661
|
+
* @param {string} [id]
|
|
34662
|
+
* @param {string} [hospitalId]
|
|
34663
|
+
* @param {string} [name]
|
|
34664
|
+
* @param {string} [languageCode]
|
|
34665
|
+
* @param {boolean} [showHidden]
|
|
34666
|
+
* @param {SurveyFormStatus} [status]
|
|
34667
|
+
* @param {number} [page]
|
|
34668
|
+
* @param {number} [limit]
|
|
34669
|
+
* @param {Date} [lastRetrieved]
|
|
34670
|
+
* @param {*} [options] Override http request option.
|
|
34671
|
+
* @throws {RequiredError}
|
|
34672
|
+
*/
|
|
34673
|
+
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>>;
|
|
34674
|
+
/**
|
|
34675
|
+
*
|
|
34676
|
+
* @summary Create survey form
|
|
34677
|
+
* @param {CreateSurveyFormCommand} [createSurveyFormCommand]
|
|
34678
|
+
* @param {*} [options] Override http request option.
|
|
34679
|
+
* @throws {RequiredError}
|
|
34680
|
+
*/
|
|
34681
|
+
apiV1SurveyformsPost(createSurveyFormCommand?: CreateSurveyFormCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
34682
|
+
/**
|
|
34683
|
+
*
|
|
34684
|
+
* @summary Delete survey form by Id
|
|
34685
|
+
* @param {string} surveyFormId
|
|
34686
|
+
* @param {boolean} [isPermanent]
|
|
34687
|
+
* @param {*} [options] Override http request option.
|
|
34688
|
+
* @throws {RequiredError}
|
|
34689
|
+
*/
|
|
34690
|
+
apiV1SurveyformsSurveyFormIdDelete(surveyFormId: string, isPermanent?: boolean, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
34691
|
+
/**
|
|
34692
|
+
*
|
|
34693
|
+
* @summary Get survey form by Id
|
|
34694
|
+
* @param {string} surveyFormId
|
|
34695
|
+
* @param {string} [languageCode]
|
|
34696
|
+
* @param {*} [options] Override http request option.
|
|
34697
|
+
* @throws {RequiredError}
|
|
34698
|
+
*/
|
|
34699
|
+
apiV1SurveyformsSurveyFormIdGet(surveyFormId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SurveyFormModel>>;
|
|
34700
|
+
/**
|
|
34701
|
+
*
|
|
34702
|
+
* @summary Update survey form
|
|
34703
|
+
* @param {string} surveyFormId
|
|
34704
|
+
* @param {UpdateSurveyFormCommand} [updateSurveyFormCommand]
|
|
34705
|
+
* @param {*} [options] Override http request option.
|
|
34706
|
+
* @throws {RequiredError}
|
|
34707
|
+
*/
|
|
34708
|
+
apiV1SurveyformsSurveyFormIdPut(surveyFormId: string, updateSurveyFormCommand?: UpdateSurveyFormCommand, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
34709
|
+
};
|
|
34710
|
+
/**
|
|
34711
|
+
* SurveyFormsApi - factory interface
|
|
34712
|
+
* @export
|
|
34713
|
+
*/
|
|
34714
|
+
export declare const SurveyFormsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
34715
|
+
/**
|
|
34716
|
+
*
|
|
34717
|
+
* @summary Get survey forms
|
|
34718
|
+
* @param {string} [id]
|
|
34719
|
+
* @param {string} [hospitalId]
|
|
34720
|
+
* @param {string} [name]
|
|
34721
|
+
* @param {string} [languageCode]
|
|
34722
|
+
* @param {boolean} [showHidden]
|
|
34723
|
+
* @param {SurveyFormStatus} [status]
|
|
34724
|
+
* @param {number} [page]
|
|
34725
|
+
* @param {number} [limit]
|
|
34726
|
+
* @param {Date} [lastRetrieved]
|
|
34727
|
+
* @param {*} [options] Override http request option.
|
|
34728
|
+
* @throws {RequiredError}
|
|
34729
|
+
*/
|
|
34730
|
+
apiV1SurveyformsGet(id?: string, hospitalId?: string, name?: string, languageCode?: string, showHidden?: boolean, status?: SurveyFormStatus, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<SurveyFormsModel>;
|
|
34731
|
+
/**
|
|
34732
|
+
*
|
|
34733
|
+
* @summary Create survey form
|
|
34734
|
+
* @param {CreateSurveyFormCommand} [createSurveyFormCommand]
|
|
34735
|
+
* @param {*} [options] Override http request option.
|
|
34736
|
+
* @throws {RequiredError}
|
|
34737
|
+
*/
|
|
34738
|
+
apiV1SurveyformsPost(createSurveyFormCommand?: CreateSurveyFormCommand, options?: any): AxiosPromise<void>;
|
|
34739
|
+
/**
|
|
34740
|
+
*
|
|
34741
|
+
* @summary Delete survey form by Id
|
|
34742
|
+
* @param {string} surveyFormId
|
|
34743
|
+
* @param {boolean} [isPermanent]
|
|
34744
|
+
* @param {*} [options] Override http request option.
|
|
34745
|
+
* @throws {RequiredError}
|
|
34746
|
+
*/
|
|
34747
|
+
apiV1SurveyformsSurveyFormIdDelete(surveyFormId: string, isPermanent?: boolean, options?: any): AxiosPromise<boolean>;
|
|
34748
|
+
/**
|
|
34749
|
+
*
|
|
34750
|
+
* @summary Get survey form by Id
|
|
34751
|
+
* @param {string} surveyFormId
|
|
34752
|
+
* @param {string} [languageCode]
|
|
34753
|
+
* @param {*} [options] Override http request option.
|
|
34754
|
+
* @throws {RequiredError}
|
|
34755
|
+
*/
|
|
34756
|
+
apiV1SurveyformsSurveyFormIdGet(surveyFormId: string, languageCode?: string, options?: any): AxiosPromise<SurveyFormModel>;
|
|
34757
|
+
/**
|
|
34758
|
+
*
|
|
34759
|
+
* @summary Update survey form
|
|
34760
|
+
* @param {string} surveyFormId
|
|
34761
|
+
* @param {UpdateSurveyFormCommand} [updateSurveyFormCommand]
|
|
34762
|
+
* @param {*} [options] Override http request option.
|
|
34763
|
+
* @throws {RequiredError}
|
|
34764
|
+
*/
|
|
34765
|
+
apiV1SurveyformsSurveyFormIdPut(surveyFormId: string, updateSurveyFormCommand?: UpdateSurveyFormCommand, options?: any): AxiosPromise<void>;
|
|
34766
|
+
};
|
|
34767
|
+
/**
|
|
34768
|
+
* SurveyFormsApi - object-oriented interface
|
|
34769
|
+
* @export
|
|
34770
|
+
* @class SurveyFormsApi
|
|
34771
|
+
* @extends {BaseAPI}
|
|
34772
|
+
*/
|
|
34773
|
+
export declare class SurveyFormsApi extends BaseAPI {
|
|
34774
|
+
/**
|
|
34775
|
+
*
|
|
34776
|
+
* @summary Get survey forms
|
|
34777
|
+
* @param {string} [id]
|
|
34778
|
+
* @param {string} [hospitalId]
|
|
34779
|
+
* @param {string} [name]
|
|
34780
|
+
* @param {string} [languageCode]
|
|
34781
|
+
* @param {boolean} [showHidden]
|
|
34782
|
+
* @param {SurveyFormStatus} [status]
|
|
34783
|
+
* @param {number} [page]
|
|
34784
|
+
* @param {number} [limit]
|
|
34785
|
+
* @param {Date} [lastRetrieved]
|
|
34786
|
+
* @param {*} [options] Override http request option.
|
|
34787
|
+
* @throws {RequiredError}
|
|
34788
|
+
* @memberof SurveyFormsApi
|
|
34789
|
+
*/
|
|
34790
|
+
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>>;
|
|
34791
|
+
/**
|
|
34792
|
+
*
|
|
34793
|
+
* @summary Create survey form
|
|
34794
|
+
* @param {CreateSurveyFormCommand} [createSurveyFormCommand]
|
|
34795
|
+
* @param {*} [options] Override http request option.
|
|
34796
|
+
* @throws {RequiredError}
|
|
34797
|
+
* @memberof SurveyFormsApi
|
|
34798
|
+
*/
|
|
34799
|
+
apiV1SurveyformsPost(createSurveyFormCommand?: CreateSurveyFormCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
34800
|
+
/**
|
|
34801
|
+
*
|
|
34802
|
+
* @summary Delete survey form by Id
|
|
34803
|
+
* @param {string} surveyFormId
|
|
34804
|
+
* @param {boolean} [isPermanent]
|
|
34805
|
+
* @param {*} [options] Override http request option.
|
|
34806
|
+
* @throws {RequiredError}
|
|
34807
|
+
* @memberof SurveyFormsApi
|
|
34808
|
+
*/
|
|
34809
|
+
apiV1SurveyformsSurveyFormIdDelete(surveyFormId: string, isPermanent?: boolean, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
34810
|
+
/**
|
|
34811
|
+
*
|
|
34812
|
+
* @summary Get survey form by Id
|
|
34813
|
+
* @param {string} surveyFormId
|
|
34814
|
+
* @param {string} [languageCode]
|
|
34815
|
+
* @param {*} [options] Override http request option.
|
|
34816
|
+
* @throws {RequiredError}
|
|
34817
|
+
* @memberof SurveyFormsApi
|
|
34818
|
+
*/
|
|
34819
|
+
apiV1SurveyformsSurveyFormIdGet(surveyFormId: string, languageCode?: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SurveyFormModel, any>>;
|
|
34820
|
+
/**
|
|
34821
|
+
*
|
|
34822
|
+
* @summary Update survey form
|
|
34823
|
+
* @param {string} surveyFormId
|
|
34824
|
+
* @param {UpdateSurveyFormCommand} [updateSurveyFormCommand]
|
|
34825
|
+
* @param {*} [options] Override http request option.
|
|
34826
|
+
* @throws {RequiredError}
|
|
34827
|
+
* @memberof SurveyFormsApi
|
|
34828
|
+
*/
|
|
34829
|
+
apiV1SurveyformsSurveyFormIdPut(surveyFormId: string, updateSurveyFormCommand?: UpdateSurveyFormCommand, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any>>;
|
|
34830
|
+
}
|
|
34831
|
+
/**
|
|
34832
|
+
* SurveyResultsApi - axios parameter creator
|
|
34833
|
+
* @export
|
|
34834
|
+
*/
|
|
34835
|
+
export declare const SurveyResultsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
34836
|
+
/**
|
|
34837
|
+
*
|
|
34838
|
+
* @summary Get survey results
|
|
34839
|
+
* @param {string} [id]
|
|
34840
|
+
* @param {string} [hospitalId]
|
|
34841
|
+
* @param {string} [name]
|
|
34842
|
+
* @param {string} [languageCode]
|
|
34843
|
+
* @param {number} [page]
|
|
34844
|
+
* @param {number} [limit]
|
|
34845
|
+
* @param {Date} [lastRetrieved]
|
|
34846
|
+
* @param {*} [options] Override http request option.
|
|
34847
|
+
* @throws {RequiredError}
|
|
34848
|
+
*/
|
|
34849
|
+
apiV1SurveyresultsGet: (id?: string, hospitalId?: string, name?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
34850
|
+
/**
|
|
34851
|
+
*
|
|
34852
|
+
* @summary Delete survey result
|
|
34853
|
+
* @param {string} surveyResultId
|
|
34854
|
+
* @param {*} [options] Override http request option.
|
|
34855
|
+
* @throws {RequiredError}
|
|
34856
|
+
*/
|
|
34857
|
+
apiV1SurveyresultsSurveyResultIdDelete: (surveyResultId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
34858
|
+
/**
|
|
34859
|
+
*
|
|
34860
|
+
* @summary Get survey result by Id
|
|
34861
|
+
* @param {string} surveyResultId
|
|
34862
|
+
* @param {*} [options] Override http request option.
|
|
34863
|
+
* @throws {RequiredError}
|
|
34864
|
+
*/
|
|
34865
|
+
apiV1SurveyresultsSurveyResultIdGet: (surveyResultId: string, options?: AxiosRequestConfig) => Promise<RequestArgs>;
|
|
34866
|
+
};
|
|
34867
|
+
/**
|
|
34868
|
+
* SurveyResultsApi - functional programming interface
|
|
34869
|
+
* @export
|
|
34870
|
+
*/
|
|
34871
|
+
export declare const SurveyResultsApiFp: (configuration?: Configuration) => {
|
|
34872
|
+
/**
|
|
34873
|
+
*
|
|
34874
|
+
* @summary Get survey results
|
|
34875
|
+
* @param {string} [id]
|
|
34876
|
+
* @param {string} [hospitalId]
|
|
34877
|
+
* @param {string} [name]
|
|
34878
|
+
* @param {string} [languageCode]
|
|
34879
|
+
* @param {number} [page]
|
|
34880
|
+
* @param {number} [limit]
|
|
34881
|
+
* @param {Date} [lastRetrieved]
|
|
34882
|
+
* @param {*} [options] Override http request option.
|
|
34883
|
+
* @throws {RequiredError}
|
|
34884
|
+
*/
|
|
34885
|
+
apiV1SurveyresultsGet(id?: string, hospitalId?: string, name?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SurveyResultsModel>>;
|
|
34886
|
+
/**
|
|
34887
|
+
*
|
|
34888
|
+
* @summary Delete survey result
|
|
34889
|
+
* @param {string} surveyResultId
|
|
34890
|
+
* @param {*} [options] Override http request option.
|
|
34891
|
+
* @throws {RequiredError}
|
|
34892
|
+
*/
|
|
34893
|
+
apiV1SurveyresultsSurveyResultIdDelete(surveyResultId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<boolean>>;
|
|
34894
|
+
/**
|
|
34895
|
+
*
|
|
34896
|
+
* @summary Get survey result by Id
|
|
34897
|
+
* @param {string} surveyResultId
|
|
34898
|
+
* @param {*} [options] Override http request option.
|
|
34899
|
+
* @throws {RequiredError}
|
|
34900
|
+
*/
|
|
34901
|
+
apiV1SurveyresultsSurveyResultIdGet(surveyResultId: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SurveyResultModel>>;
|
|
34902
|
+
};
|
|
34903
|
+
/**
|
|
34904
|
+
* SurveyResultsApi - factory interface
|
|
34905
|
+
* @export
|
|
34906
|
+
*/
|
|
34907
|
+
export declare const SurveyResultsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
34908
|
+
/**
|
|
34909
|
+
*
|
|
34910
|
+
* @summary Get survey results
|
|
34911
|
+
* @param {string} [id]
|
|
34912
|
+
* @param {string} [hospitalId]
|
|
34913
|
+
* @param {string} [name]
|
|
34914
|
+
* @param {string} [languageCode]
|
|
34915
|
+
* @param {number} [page]
|
|
34916
|
+
* @param {number} [limit]
|
|
34917
|
+
* @param {Date} [lastRetrieved]
|
|
34918
|
+
* @param {*} [options] Override http request option.
|
|
34919
|
+
* @throws {RequiredError}
|
|
34920
|
+
*/
|
|
34921
|
+
apiV1SurveyresultsGet(id?: string, hospitalId?: string, name?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: any): AxiosPromise<SurveyResultsModel>;
|
|
34922
|
+
/**
|
|
34923
|
+
*
|
|
34924
|
+
* @summary Delete survey result
|
|
34925
|
+
* @param {string} surveyResultId
|
|
34926
|
+
* @param {*} [options] Override http request option.
|
|
34927
|
+
* @throws {RequiredError}
|
|
34928
|
+
*/
|
|
34929
|
+
apiV1SurveyresultsSurveyResultIdDelete(surveyResultId: string, options?: any): AxiosPromise<boolean>;
|
|
34930
|
+
/**
|
|
34931
|
+
*
|
|
34932
|
+
* @summary Get survey result by Id
|
|
34933
|
+
* @param {string} surveyResultId
|
|
34934
|
+
* @param {*} [options] Override http request option.
|
|
34935
|
+
* @throws {RequiredError}
|
|
34936
|
+
*/
|
|
34937
|
+
apiV1SurveyresultsSurveyResultIdGet(surveyResultId: string, options?: any): AxiosPromise<SurveyResultModel>;
|
|
34938
|
+
};
|
|
34939
|
+
/**
|
|
34940
|
+
* SurveyResultsApi - object-oriented interface
|
|
34941
|
+
* @export
|
|
34942
|
+
* @class SurveyResultsApi
|
|
34943
|
+
* @extends {BaseAPI}
|
|
34944
|
+
*/
|
|
34945
|
+
export declare class SurveyResultsApi extends BaseAPI {
|
|
34946
|
+
/**
|
|
34947
|
+
*
|
|
34948
|
+
* @summary Get survey results
|
|
34949
|
+
* @param {string} [id]
|
|
34950
|
+
* @param {string} [hospitalId]
|
|
34951
|
+
* @param {string} [name]
|
|
34952
|
+
* @param {string} [languageCode]
|
|
34953
|
+
* @param {number} [page]
|
|
34954
|
+
* @param {number} [limit]
|
|
34955
|
+
* @param {Date} [lastRetrieved]
|
|
34956
|
+
* @param {*} [options] Override http request option.
|
|
34957
|
+
* @throws {RequiredError}
|
|
34958
|
+
* @memberof SurveyResultsApi
|
|
34959
|
+
*/
|
|
34960
|
+
apiV1SurveyresultsGet(id?: string, hospitalId?: string, name?: string, languageCode?: string, page?: number, limit?: number, lastRetrieved?: Date, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SurveyResultsModel, any>>;
|
|
34961
|
+
/**
|
|
34962
|
+
*
|
|
34963
|
+
* @summary Delete survey result
|
|
34964
|
+
* @param {string} surveyResultId
|
|
34965
|
+
* @param {*} [options] Override http request option.
|
|
34966
|
+
* @throws {RequiredError}
|
|
34967
|
+
* @memberof SurveyResultsApi
|
|
34968
|
+
*/
|
|
34969
|
+
apiV1SurveyresultsSurveyResultIdDelete(surveyResultId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<boolean, any>>;
|
|
34970
|
+
/**
|
|
34971
|
+
*
|
|
34972
|
+
* @summary Get survey result by Id
|
|
34973
|
+
* @param {string} surveyResultId
|
|
34974
|
+
* @param {*} [options] Override http request option.
|
|
34975
|
+
* @throws {RequiredError}
|
|
34976
|
+
* @memberof SurveyResultsApi
|
|
34977
|
+
*/
|
|
34978
|
+
apiV1SurveyresultsSurveyResultIdGet(surveyResultId: string, options?: AxiosRequestConfig): Promise<import("axios").AxiosResponse<SurveyResultModel, any>>;
|
|
34979
|
+
}
|
|
33784
34980
|
/**
|
|
33785
34981
|
* TagsApi - axios parameter creator
|
|
33786
34982
|
* @export
|