shcp-api-lib 1.0.6 → 1.0.8
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.d.ts +202 -6
- package/dist/index.esm.js +257 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.js +260 -0
- package/dist/index.js.map +1 -1
- package/dist/types/src/api/index.d.ts +4 -0
- package/dist/types/src/api/system-AttachController-api.d.ts +23 -0
- package/dist/types/src/api/system-AuthClientController-api.d.ts +21 -0
- package/dist/types/src/api/system-OssController-api.d.ts +25 -0
- package/dist/types/src/api/system-SmsController-api.d.ts +25 -0
- package/dist/types/src/type/model/health-medication-model.d.ts +4 -4
- package/dist/types/src/type/model/index.d.ts +4 -0
- package/dist/types/src/type/model/system-AttachController-model.d.ts +28 -0
- package/dist/types/src/type/model/system-AuthClientController-model.d.ts +24 -0
- package/dist/types/src/type/model/system-OssController-model.d.ts +28 -0
- package/dist/types/src/type/model/system-SmsController-model.d.ts +30 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -7783,13 +7783,13 @@ interface Log {
|
|
7783
7783
|
*/
|
7784
7784
|
interface HealthMedicationConfigDTO {
|
7785
7785
|
/** 是否支持表单智能填充 */
|
7786
|
-
|
7786
|
+
smasmartFillEnabledrtFill: boolean;
|
7787
7787
|
/** OCR识别次数限制 */
|
7788
|
-
|
7788
|
+
smartFillLimit: number;
|
7789
7789
|
/** 上传图片数量限制 */
|
7790
|
-
|
7790
|
+
smartFillImageLimit: number;
|
7791
7791
|
/** 文件大小限制,默认10M,单位MB */
|
7792
|
-
|
7792
|
+
smartFillImageFileSizeLimit: number;
|
7793
7793
|
}
|
7794
7794
|
interface AiMedicationRecordItem {
|
7795
7795
|
/** 药品名称 */
|
@@ -9156,6 +9156,120 @@ interface DeptVO extends Dept {
|
|
9156
9156
|
hasChildren?: boolean;
|
9157
9157
|
}
|
9158
9158
|
|
9159
|
+
/**
|
9160
|
+
* 应用管理实体
|
9161
|
+
*/
|
9162
|
+
interface AuthClient {
|
9163
|
+
id?: number | string;
|
9164
|
+
clientId?: string;
|
9165
|
+
clientSecret?: string;
|
9166
|
+
clientName?: string;
|
9167
|
+
resourceIds?: string;
|
9168
|
+
scope?: string;
|
9169
|
+
authorizedGrantTypes?: string;
|
9170
|
+
webServerRedirectUri?: string;
|
9171
|
+
authorities?: string;
|
9172
|
+
accessTokenValidity?: number;
|
9173
|
+
refreshTokenValidity?: number;
|
9174
|
+
additionalInformation?: string;
|
9175
|
+
autoapprove?: string;
|
9176
|
+
createUser?: number | string;
|
9177
|
+
createDept?: number | string;
|
9178
|
+
createTime?: string;
|
9179
|
+
updateUser?: number | string;
|
9180
|
+
updateTime?: string;
|
9181
|
+
isDeleted?: number;
|
9182
|
+
}
|
9183
|
+
|
9184
|
+
/**
|
9185
|
+
* 附件实体
|
9186
|
+
*/
|
9187
|
+
interface Attach {
|
9188
|
+
id?: number | string;
|
9189
|
+
link?: string;
|
9190
|
+
originalName?: string;
|
9191
|
+
name?: string;
|
9192
|
+
domain?: string;
|
9193
|
+
bucket?: string;
|
9194
|
+
fileType?: string;
|
9195
|
+
attachType?: string;
|
9196
|
+
uploadType?: string;
|
9197
|
+
size?: number;
|
9198
|
+
extension?: string;
|
9199
|
+
objectName?: string;
|
9200
|
+
createUser?: number | string;
|
9201
|
+
createDept?: number | string;
|
9202
|
+
createTime?: string;
|
9203
|
+
updateUser?: number | string;
|
9204
|
+
updateTime?: string;
|
9205
|
+
isDeleted?: number;
|
9206
|
+
}
|
9207
|
+
/**
|
9208
|
+
* 附件视图对象
|
9209
|
+
*/
|
9210
|
+
interface AttachVO extends Attach {
|
9211
|
+
}
|
9212
|
+
|
9213
|
+
/**
|
9214
|
+
* 对象存储实体
|
9215
|
+
*/
|
9216
|
+
interface Oss {
|
9217
|
+
id?: number | string;
|
9218
|
+
tenantId?: string;
|
9219
|
+
tenantName?: string;
|
9220
|
+
endpoint?: string;
|
9221
|
+
accessKey?: string;
|
9222
|
+
secretKey?: string;
|
9223
|
+
bucketName?: string;
|
9224
|
+
region?: string;
|
9225
|
+
ossType?: string;
|
9226
|
+
domain?: string;
|
9227
|
+
isPrivate?: number;
|
9228
|
+
remark?: string;
|
9229
|
+
isDeleted?: number;
|
9230
|
+
createUser?: number | string;
|
9231
|
+
createDept?: number | string;
|
9232
|
+
createTime?: string;
|
9233
|
+
updateUser?: number | string;
|
9234
|
+
updateTime?: string;
|
9235
|
+
}
|
9236
|
+
/**
|
9237
|
+
* 对象存储视图对象
|
9238
|
+
*/
|
9239
|
+
interface OssVO extends Oss {
|
9240
|
+
}
|
9241
|
+
|
9242
|
+
/**
|
9243
|
+
* 短信配置实体
|
9244
|
+
*/
|
9245
|
+
interface Sms {
|
9246
|
+
id?: number | string;
|
9247
|
+
tenantId?: string;
|
9248
|
+
tenantName?: string;
|
9249
|
+
provider?: string;
|
9250
|
+
accessKey?: string;
|
9251
|
+
secretKey?: string;
|
9252
|
+
signName?: string;
|
9253
|
+
templateCode?: string;
|
9254
|
+
templateParam?: string;
|
9255
|
+
region?: string;
|
9256
|
+
smsType?: string;
|
9257
|
+
domain?: string;
|
9258
|
+
isEnabled?: number;
|
9259
|
+
remark?: string;
|
9260
|
+
isDeleted?: number;
|
9261
|
+
createUser?: number | string;
|
9262
|
+
createDept?: number | string;
|
9263
|
+
createTime?: string;
|
9264
|
+
updateUser?: number | string;
|
9265
|
+
updateTime?: string;
|
9266
|
+
}
|
9267
|
+
/**
|
9268
|
+
* 短信配置视图对象
|
9269
|
+
*/
|
9270
|
+
interface SmsVO extends Sms {
|
9271
|
+
}
|
9272
|
+
|
9159
9273
|
declare enum MetricScopeValueType {
|
9160
9274
|
GreaterThan = 1,
|
9161
9275
|
LessThan = 2,
|
@@ -11942,6 +12056,88 @@ declare class DeptControllerApi {
|
|
11942
12056
|
static select(userId?: number | string, deptId?: string): Promise<CommonRes<Dept[]>>;
|
11943
12057
|
}
|
11944
12058
|
|
12059
|
+
/**
|
12060
|
+
* 应用管理 API
|
12061
|
+
*/
|
12062
|
+
declare class AuthClientControllerApi {
|
12063
|
+
/** 查看详情 */
|
12064
|
+
static detail(authClient: Partial<AuthClient>): Promise<CommonRes<AuthClient>>;
|
12065
|
+
/** 分页获取应用管理 */
|
12066
|
+
static list(authClient: Partial<AuthClient>, query: PageRequest): Promise<CommonRes<PagedList<AuthClient>>>;
|
12067
|
+
/** 新增应用管理 */
|
12068
|
+
static save(authClient: AuthClient): Promise<CommonRes<boolean>>;
|
12069
|
+
/** 修改应用管理 */
|
12070
|
+
static update(authClient: AuthClient): Promise<CommonRes<boolean>>;
|
12071
|
+
/** 新增或修改应用管理 */
|
12072
|
+
static submit(authClient: AuthClient): Promise<CommonRes<boolean>>;
|
12073
|
+
/** 删除应用管理 */
|
12074
|
+
static remove(ids: string): Promise<CommonRes<boolean>>;
|
12075
|
+
}
|
12076
|
+
|
12077
|
+
/**
|
12078
|
+
* 附件管理 API
|
12079
|
+
*/
|
12080
|
+
declare class AttachControllerApi {
|
12081
|
+
/** 查看详情 */
|
12082
|
+
static detail(attach: Partial<Attach>): Promise<CommonRes<Attach>>;
|
12083
|
+
/** 分页获取附件 */
|
12084
|
+
static list(attach: Partial<Attach>, query: PageRequest): Promise<CommonRes<PagedList<Attach>>>;
|
12085
|
+
/** 自定义分页获取附件 */
|
12086
|
+
static page(attach: Partial<AttachVO>, query: PageRequest): Promise<CommonRes<PagedList<AttachVO>>>;
|
12087
|
+
/** 新增附件 */
|
12088
|
+
static save(attach: Attach): Promise<CommonRes<boolean>>;
|
12089
|
+
/** 修改附件 */
|
12090
|
+
static update(attach: Attach): Promise<CommonRes<boolean>>;
|
12091
|
+
/** 新增或修改附件 */
|
12092
|
+
static submit(attach: Attach): Promise<CommonRes<boolean>>;
|
12093
|
+
/** 删除附件 */
|
12094
|
+
static remove(ids: string): Promise<CommonRes<boolean>>;
|
12095
|
+
}
|
12096
|
+
|
12097
|
+
/**
|
12098
|
+
* 对象存储管理 API
|
12099
|
+
*/
|
12100
|
+
declare class OssControllerApi {
|
12101
|
+
/** 查看详情 */
|
12102
|
+
static detail(oss: Partial<Oss>): Promise<CommonRes<OssVO>>;
|
12103
|
+
/** 分页获取对象存储 */
|
12104
|
+
static list(oss: Partial<Oss>, query: PageRequest): Promise<CommonRes<PagedList<OssVO>>>;
|
12105
|
+
/** 自定义分页获取对象存储 */
|
12106
|
+
static page(oss: Partial<OssVO>, query: PageRequest): Promise<CommonRes<PagedList<OssVO>>>;
|
12107
|
+
/** 新增对象存储 */
|
12108
|
+
static save(oss: Oss): Promise<CommonRes<boolean>>;
|
12109
|
+
/** 修改对象存储 */
|
12110
|
+
static update(oss: Oss): Promise<CommonRes<boolean>>;
|
12111
|
+
/** 新增或修改对象存储 */
|
12112
|
+
static submit(oss: Oss): Promise<CommonRes<boolean>>;
|
12113
|
+
/** 删除对象存储 */
|
12114
|
+
static remove(ids: string): Promise<CommonRes<boolean>>;
|
12115
|
+
/** 启用对象存储 */
|
12116
|
+
static enable(id: number | string): Promise<CommonRes<boolean>>;
|
12117
|
+
}
|
12118
|
+
|
12119
|
+
/**
|
12120
|
+
* 短信资源管理 API
|
12121
|
+
*/
|
12122
|
+
declare class SmsControllerApi {
|
12123
|
+
/** 查看详情 */
|
12124
|
+
static detail(sms: Partial<Sms>): Promise<CommonRes<SmsVO>>;
|
12125
|
+
/** 分页获取短信配置 */
|
12126
|
+
static list(sms: Partial<Sms>, query: PageRequest): Promise<CommonRes<PagedList<SmsVO>>>;
|
12127
|
+
/** 自定义分页获取短信配置 */
|
12128
|
+
static page(sms: Partial<SmsVO>, query: PageRequest): Promise<CommonRes<PagedList<SmsVO>>>;
|
12129
|
+
/** 新增短信配置 */
|
12130
|
+
static save(sms: Sms): Promise<CommonRes<boolean>>;
|
12131
|
+
/** 修改短信配置 */
|
12132
|
+
static update(sms: Sms): Promise<CommonRes<boolean>>;
|
12133
|
+
/** 新增或修改短信配置 */
|
12134
|
+
static submit(sms: Sms): Promise<CommonRes<boolean>>;
|
12135
|
+
/** 删除短信配置 */
|
12136
|
+
static remove(ids: string): Promise<CommonRes<boolean>>;
|
12137
|
+
/** 启用短信配置 */
|
12138
|
+
static enable(id: number | string): Promise<CommonRes<boolean>>;
|
12139
|
+
}
|
12140
|
+
|
11945
12141
|
interface QiniuResponse {
|
11946
12142
|
token: string;
|
11947
12143
|
key: string;
|
@@ -12000,5 +12196,5 @@ declare class _ShcpApiSdk {
|
|
12000
12196
|
}
|
12001
12197
|
declare const ShcpApiSdk: _ShcpApiSdk;
|
12002
12198
|
|
12003
|
-
export { AggregateType, AiApi, AiApplicationApi, AiModelType, AiModelTypeOptions, ApiScopeControllerApi, AppCategory, AppCategoryOptions, AppClientApi, AppClientPageConfigApi, AppClientSettingApi, AppPlatformType, ArticleLibType, AuthorizationStatus, AuthorizationStatusOptions, CommonDictApi, CommonRightApi, ConsumerApi, ConsumerBindApi, ConsumerDeviceApi, ConsumerDeviceStatus, ConsumerDeviceStatusOptions, ConsumerFavoriteApi, ConsumerMarkType, ConsumerMarkTypeOptions, ConsumerRightStatus, ConsumerRightStatusOptions, DeliveryMethod, DeliveryMethodOptions, DeptControllerApi, DeviceApi, DeviceStatus, DeviceStatusOptions, DeviceType, DeviceTypeOptions, DeviceUserApi, DictBizControllerApi, DictControllerApi, DiseaseCareApi, DiseaseCareServiceFlowStatusOptions, ErrCode, FileApi, FileType, FileTypeOptions, FlowFollowApi, FlowManagerApi, FlowModelApi, FlowProcessApi, FormLibType, FormLibraryType, FormLibraryTypeOptions, FormRuleType, FormType, FormTypeOptions, Gender, GenderOptions, GroupJoinType, GroupJoinTypeOptions, HealthCommonApi, HealthMedicationApi, HealthMedicationRequests, HealthMetricApi, HealthProfileApi, HealthRecordType, HealthRecordTypeOptions, HealthSelfAssessApi, HealthServiceType, HealthServiceTypeOptions, HealthStudyApi, HealthStudyPlanExecMethodOptions, HealthStudyServiceFlowStatusOptions, HealthToolApi, HelpCenterApi, HuaWeiWatchMetricCategory, ImUserApi, InterviewServiceTaskStatusOptions, JobInfoApi, JobServerApi, KMForm, KmArticleApi, KmArticleCategoryApi, KmArticleDraftApi, KmArticleTagApi, KmArticleTagCategoryApi, KmFormApi, KmFormCategoryApi, KmFormContentDraftApi, KmFormDraftApi, KmFormItemApi, KmFormRuleRelationApi, KmFormTreeNodeApi, KmTagApi, KmTagCategoryApi, KmTagValueDictApi, LabelLibType, LicenseApi, LicenseStatus, LoginApi, MarketingApi, MarketingTaskLogStatus, MarketingTaskLogStatusOptions, MarketingTaskStatus, MarketingTaskStatusOptions, MemberListType, MemberListTypeMap, MenuControllerApi, MessageActionLabel, MessageActionLabelOptions, MessageActionStatus, MessageBizCategory, MessageBizCategoryOptions, MessageChannelType, MessageChannelTypeOptions, MessageRecordApi, MessageStatus, MessageStyle, MessageStyleOptions, MetricExceptionLevel, MetricExceptionLevelOptions, MetricExceptionStatus, MetricExceptionStatusOptions, MetricScopeValueOptions, MetricScopeValueType, MetricValueType, MetricValueTypeOptions, MineApi, PlanExecFollowType, PlanExecFollowTypeOptions, PlanExecMethod, PlanExecMethodOptions, PlanExecType, PlanExecTypeOptions, PostControllerApi, PotentialCustomerApi, QuestionItemType, RegionApi, ReportApi, ReportTheme, ReportThemeOptions, Resource, RightApi, RightDraftApi, RightDraftRequests, RightDraftServiceConfigApi, RightQrcodeApi, RightServiceConfigApi, RightType, RoleControllerApi, RuleActionOperator, RuleApi, RuleConditionOperator, RuleConditionOperatorOptions, RuleConditionType, RuleExecuteStrategy, RuleExecutorType, RuleStatus, RuleStatusOptions, RuleType, ServiceFlowDraftRequests, ServiceFlowRequests, ServiceFlowStatus, ServiceTaskCategory, ServiceTaskRequests, ServiceTaskStatus, ServiceTaskStatusOptions, ShcpApiSdk, ShcpUserType, ShcpUserTypeOptions, Status, StudyType, SystemRightApi, TenantControllerApi, TenantPackageApi, TopMenuControllerApi, UserControllerApi, UserGroupApi, VisitType, VisitTypeOptions, checkResponse, commonProccessResponse, crudConsumerApi, crudConsumerGroupApi, crudUserGroupTableApi, crudUserGroupTreeApi, diseaseExceptionOpApi, diseaseOpApi, formatMathInterval, formatMetricData, formatMetricScopeToInterval, getPlanExecLabel, healthStudyExceptionOpApi, healthStudyOpApi, isFormEqual, parseIntervalToMetricScope, processFormQueryParams };
|
12004
|
-
export type { AdviceConfigDTO, Aggregation, AiChatRequest, AiErrorResponse, AiMedicationRecord, AiMedicationRecordItem, AiModelCopyRequest, AiModelCopyResponse, ApiScope, ApiScopeVO, AppClientCopyRequest, AppClientCopyResponse, AppClientDTO, AppClientLoginRequest, AppClientPageConfigCopyUpdateRequest, AppClientPageConfigDTO, AppClientPageConfigQuery, AppClientPageConfigUpdateRequest, AppClientQuery, AppClientSettingCreateRequest, AppClientSettingDTO, AppClientSettingDeleteRequest, AppClientSettingQuery, AppClientSettingUpdateRequest, ArticleApplyCreateRequest, ArticleApplyDTO, ArticleArchiveRequest, ArticleCategory, ArticleCategoryBashUpdateRequest, ArticleCategoryCreateRequest, ArticleCategoryDTO, ArticleCategoryDeleteRequest, ArticleCategoryMoveRequest, ArticleCategoryRenameRequest, ArticleCategoryTreeRequest, ArticleCopyRequest, ArticleCopyResponse, ArticleCreateRequest, ArticleDTO, ArticleDeleteRequest, ArticleDraftCreateRequest, ArticleDraftDTO, ArticleDraftQuery, ArticleDraftSubmitRequest, ArticleDraftUpdateRequest, ArticleItem, ArticlePublishRequest, ArticleQuery, ArticleTagCreateRequest, ArticleTagDTO, ArticleTagDeleteRequest, ArticleTagQuery, ArticleTagUpdateRequest, ArticleUpdateRequest, AssessConfigDTO, AssessTaskDTO, AssessmentConfig, AssessmentResultDTO, AssessmentTaskDTO, BaseProfileTaskDTO, BindUserRequest, BladeFlow, BloodOxygenExceptionInfo, BloodOxygenLevelRange, BloodOxygenMetricInfo, BloodPressureExceptionInfo, BloodPressureLevelRange, BloodPressureMetricInfo, BytLoginRequest, CAppCardDTO, CareConfig, CheckedTreeVO, ClientPageConfigDTO, ClientPageConfigQuery, CommonRes, ComponentConfig, ComponentInfo, ComponentItem, ConsumerBindActiveRequest, ConsumerBindCreateRequest, ConsumerBindDTO, ConsumerBindDeleteRequest, ConsumerBindQuery, ConsumerBindSendSmsCodeRequest, ConsumerBindUpdateRequest, ConsumerContact, ConsumerCreateRequest, ConsumerDTO, ConsumerDetail, ConsumerDeviceCreateRequest, ConsumerDeviceDTO, ConsumerDeviceQuery, ConsumerDeviceUpdateRequest, ConsumerFavoriteCreateRequest, ConsumerFavoriteDTO, ConsumerFavoriteDeleteRequest, ConsumerFavoriteQuery, ConsumerGroupDTO, ConsumerGroupDeleteRequest, ConsumerGroupMemberCreateRequest, ConsumerGroupMemberDTO, ConsumerGroupMemberQuery, ConsumerGroupMemberUpdateRequest, ConsumerGroupQuery, ConsumerGroupUpdateRequest, ConsumerLabel, ConsumerMark, ConsumerQuery, ConsumerRightCreateRequest, ConsumerRightDTO, ConsumerRightDeleteRequest, ConsumerRightDoctorDTO, ConsumerRightDoctorQuery, ConsumerRightQuery, ConsumerUpdateRequest, CreateRequest, Dept, DeptVO, Detail, DeviceCopyRequest, DeviceCopyResponse, DeviceCreateRequest, DeviceDTO, DeviceDeleteRequest, DeviceQuery, DeviceUpdateRequest, DeviceUserCreateRequest, DeviceUserDTO, DeviceUserInfo, DeviceUserLoginRequest, DeviceUserQuery, DeviceUserUpdateRequest, DiaryTaskDTO, DiaryTaskFetch, DiaryTaskSubmit, DictBiz, DictBizController, DictBizVO, DictBizVOController, DictController, DictEntry, DictVOController, DiseaseCareConfigDTO, DiseaseCareFlowExtension, EducationConfigDTO, ExRightQuery, ExecTimeConfig, FastAgent, FileObject, FlowExecution, FlowModel, FlowProcess, FollowUpConfigDTO, FollowUpPlan, FollowUpPoint, FollowUpTaskDTO, FormObjectType, FormRuleRelationDTO, FormRuleRelationQuery, GrantTreeVO, GrantVO, Group, GroupingConfig, GroupingConfigDTO, GuideArticle, HealthCareOpApi, HealthConsultConfigDTO, HealthMedicationConfigDTO, HealthMedicationTaskDTO, HealthMetric, HealthMetricDTO, HealthMetricLogDTO, HealthMetricQuery, HealthMetricTrendDTO, HealthMetricTrendQuery, HealthProfileConfigDTO, HealthRecord, HealthSelfAssessmentConfigDTO, HealthStudyConfigDTO, HealthStudyFlowExtension, HealthToolConfigDTO, HealthToolTaskDTO, HealthToolTaskFetch, HealthToolTaskStart, HealthToolTaskStartDTO, HeartRateExceptionInfo, HeartRateLevelRange, HeartRateMetricInfo, HuaWeiWatch, HuaWeiWatchConfig, HuaWeiWatchMetric, IMUserDTO, IMUserQuery, IMUserRequest, JobInfo, JobInfoVO, JobServer, JobServerVO, KMLibraryType, LibraryTypeOption, LicenseCancelRequest, LicenseCreateRequest, LicenseDTO, LicenseQuery, LicenseReAuthRequest, LicenseeTenantQuery, Log$1 as Log, MarketingContentCreateRequest, MarketingContentDTO, MarketingContentUpdateRequest, MarketingCreateRequest, MarketingDTO, MarketingDeleteRequest, MarketingQuery, MarketingTaskDTO, MarketingTaskLogCreateRequest, MarketingTaskLogDTO, MarketingTaskLogQuery, MarketingTaskQuery, MarketingUpdateRequest, MedicationRecord, MedicationRecordItem, MedicationReportTaskDTO, MedicationSmartFillDTO, MedicationSmartFillRequest, Menu, MenuVO, MessageRecordDTO, MessageRecordQuery, MessageRecordUpdateRequest, MessageTemplateDTO, MessageTemplateQuery, Metric, MetricExceptionDTO, MetricExceptionInfo, MetricExceptionQuery, MetricExceptionUpdateRequests, MetricExceptionUserCountDTO, MetricExceptionUserDTO, MetricMonitorConfigDTO, MetricMonitorPlan, MetricRecordInfo, MetricScope, MetricTrendInfo, NewsArticleTag, Operator, PageRequest, PagedList, Post, PostVO, PotentialCustomerCreateRequest, PotentialCustomerDTO, PotentialCustomerQuery, PotentialCustomerUpdateRequest, QiniuInitOptions, QiniuOptions, QiniuResponse, QueryTreeRequest, Region, RegionExcel, RegionVO, ReportQuery, ReportTaskDTO, ReportTaskFetch, ReportTaskSubmit, RequestConfig, ReturnVisitConfigDTO, RightCopyRequest, RightCopyResponse, RightDTO, RightDeleteRequest, RightDraftDTO, RightQrCodeCreateRequest, RightQrCodeDTO, RightQrCodeRequest, RightQrCodeUpdateRequest, RightQuery, RightRequest, RightServiceConfigCopyUpdateRequest, RightServiceConfigDTO, RightServiceConfigQuery, Role, RoleGrantVO, RoleVO, Rule, RuleAction, RuleCondition, RuleCopyRequest, RuleCopyResponse, RuleCreateRequest, RuleDTO, RuleDeleteRequest, RuleExecuteRequest, RuleQuery, RuleUpdateRequest, SaleDTO, ServiceFlowConfigDTO, ServiceFlowConfigHistoryDTO, ServiceFlowConfigQuery, ServiceFlowDTO, ServiceFlowDraftDTO, ServiceFlowQuery, ServiceFlowStatisticsDTO, ServiceFlowStatisticsQuery, ServiceStartDTO, ServiceStartRequest, ServiceTaskDTO, ServiceTaskDeleteRequest, ServiceTaskQuery, ServiceTaskRightQuery, ServiceTaskStatisticsDTO, ServiceTaskStatisticsQuery, ServiceTaskUserCountDTO, ServiceTaskUserDTO, SmsDTO, StepsMetricInfo, SystemTenant, TabOption, TagCategoryBashUpdateRequest, TagCategoryCopyRequest, TagCategoryCopyResponse, TagCategoryCreateRequest, TagCategoryDTO, TagCategoryDeleteRequest, TagCategoryMoveRequest, TagCategoryQuery, TagCategoryRelationQuery, TagCategoryRenameRequest, TagCategoryTreeQuery, TagCreateRequest, TagDTO, TagQueryRequest, TagUpdateRequest, TagValueDictCategoryDTO, TagValueDictDTO, TagValueDictItemDTO, TagValueDictItemQuery, TaskDTO, Tenant, TenantCopyRequest, TenantCopyRetryRequest, TenantDTO, TenantPackage, TenantUpdateRequest, TenantUserDetail, TopMenu, TreeNode, TrendMetric, TrendMetricTag, UnbindUserRequest, UploadResponse, User, UserDTO, UserExcel, UserGroupDeleteRequest, UserGroupInfo, UserGroupMemberRequest, UserGroupUpdateRequest, UserInfo, UserVO, ValueDictCreateRequest, ValueDictDeleteRequest, ValueDictQueryRequest, WebComponentInfo, WebPotentialCustomerDTO, WebReportDTO, WrapperMessageRecordDTO, marketingSendContentRequest, uplooadReportQuery };
|
12199
|
+
export { AggregateType, AiApi, AiApplicationApi, AiModelType, AiModelTypeOptions, ApiScopeControllerApi, AppCategory, AppCategoryOptions, AppClientApi, AppClientPageConfigApi, AppClientSettingApi, AppPlatformType, ArticleLibType, AttachControllerApi, AuthClientControllerApi, AuthorizationStatus, AuthorizationStatusOptions, CommonDictApi, CommonRightApi, ConsumerApi, ConsumerBindApi, ConsumerDeviceApi, ConsumerDeviceStatus, ConsumerDeviceStatusOptions, ConsumerFavoriteApi, ConsumerMarkType, ConsumerMarkTypeOptions, ConsumerRightStatus, ConsumerRightStatusOptions, DeliveryMethod, DeliveryMethodOptions, DeptControllerApi, DeviceApi, DeviceStatus, DeviceStatusOptions, DeviceType, DeviceTypeOptions, DeviceUserApi, DictBizControllerApi, DictControllerApi, DiseaseCareApi, DiseaseCareServiceFlowStatusOptions, ErrCode, FileApi, FileType, FileTypeOptions, FlowFollowApi, FlowManagerApi, FlowModelApi, FlowProcessApi, FormLibType, FormLibraryType, FormLibraryTypeOptions, FormRuleType, FormType, FormTypeOptions, Gender, GenderOptions, GroupJoinType, GroupJoinTypeOptions, HealthCommonApi, HealthMedicationApi, HealthMedicationRequests, HealthMetricApi, HealthProfileApi, HealthRecordType, HealthRecordTypeOptions, HealthSelfAssessApi, HealthServiceType, HealthServiceTypeOptions, HealthStudyApi, HealthStudyPlanExecMethodOptions, HealthStudyServiceFlowStatusOptions, HealthToolApi, HelpCenterApi, HuaWeiWatchMetricCategory, ImUserApi, InterviewServiceTaskStatusOptions, JobInfoApi, JobServerApi, KMForm, KmArticleApi, KmArticleCategoryApi, KmArticleDraftApi, KmArticleTagApi, KmArticleTagCategoryApi, KmFormApi, KmFormCategoryApi, KmFormContentDraftApi, KmFormDraftApi, KmFormItemApi, KmFormRuleRelationApi, KmFormTreeNodeApi, KmTagApi, KmTagCategoryApi, KmTagValueDictApi, LabelLibType, LicenseApi, LicenseStatus, LoginApi, MarketingApi, MarketingTaskLogStatus, MarketingTaskLogStatusOptions, MarketingTaskStatus, MarketingTaskStatusOptions, MemberListType, MemberListTypeMap, MenuControllerApi, MessageActionLabel, MessageActionLabelOptions, MessageActionStatus, MessageBizCategory, MessageBizCategoryOptions, MessageChannelType, MessageChannelTypeOptions, MessageRecordApi, MessageStatus, MessageStyle, MessageStyleOptions, MetricExceptionLevel, MetricExceptionLevelOptions, MetricExceptionStatus, MetricExceptionStatusOptions, MetricScopeValueOptions, MetricScopeValueType, MetricValueType, MetricValueTypeOptions, MineApi, OssControllerApi, PlanExecFollowType, PlanExecFollowTypeOptions, PlanExecMethod, PlanExecMethodOptions, PlanExecType, PlanExecTypeOptions, PostControllerApi, PotentialCustomerApi, QuestionItemType, RegionApi, ReportApi, ReportTheme, ReportThemeOptions, Resource, RightApi, RightDraftApi, RightDraftRequests, RightDraftServiceConfigApi, RightQrcodeApi, RightServiceConfigApi, RightType, RoleControllerApi, RuleActionOperator, RuleApi, RuleConditionOperator, RuleConditionOperatorOptions, RuleConditionType, RuleExecuteStrategy, RuleExecutorType, RuleStatus, RuleStatusOptions, RuleType, ServiceFlowDraftRequests, ServiceFlowRequests, ServiceFlowStatus, ServiceTaskCategory, ServiceTaskRequests, ServiceTaskStatus, ServiceTaskStatusOptions, ShcpApiSdk, ShcpUserType, ShcpUserTypeOptions, SmsControllerApi, Status, StudyType, SystemRightApi, TenantControllerApi, TenantPackageApi, TopMenuControllerApi, UserControllerApi, UserGroupApi, VisitType, VisitTypeOptions, checkResponse, commonProccessResponse, crudConsumerApi, crudConsumerGroupApi, crudUserGroupTableApi, crudUserGroupTreeApi, diseaseExceptionOpApi, diseaseOpApi, formatMathInterval, formatMetricData, formatMetricScopeToInterval, getPlanExecLabel, healthStudyExceptionOpApi, healthStudyOpApi, isFormEqual, parseIntervalToMetricScope, processFormQueryParams };
|
12200
|
+
export type { AdviceConfigDTO, Aggregation, AiChatRequest, AiErrorResponse, AiMedicationRecord, AiMedicationRecordItem, AiModelCopyRequest, AiModelCopyResponse, ApiScope, ApiScopeVO, AppClientCopyRequest, AppClientCopyResponse, AppClientDTO, AppClientLoginRequest, AppClientPageConfigCopyUpdateRequest, AppClientPageConfigDTO, AppClientPageConfigQuery, AppClientPageConfigUpdateRequest, AppClientQuery, AppClientSettingCreateRequest, AppClientSettingDTO, AppClientSettingDeleteRequest, AppClientSettingQuery, AppClientSettingUpdateRequest, ArticleApplyCreateRequest, ArticleApplyDTO, ArticleArchiveRequest, ArticleCategory, ArticleCategoryBashUpdateRequest, ArticleCategoryCreateRequest, ArticleCategoryDTO, ArticleCategoryDeleteRequest, ArticleCategoryMoveRequest, ArticleCategoryRenameRequest, ArticleCategoryTreeRequest, ArticleCopyRequest, ArticleCopyResponse, ArticleCreateRequest, ArticleDTO, ArticleDeleteRequest, ArticleDraftCreateRequest, ArticleDraftDTO, ArticleDraftQuery, ArticleDraftSubmitRequest, ArticleDraftUpdateRequest, ArticleItem, ArticlePublishRequest, ArticleQuery, ArticleTagCreateRequest, ArticleTagDTO, ArticleTagDeleteRequest, ArticleTagQuery, ArticleTagUpdateRequest, ArticleUpdateRequest, AssessConfigDTO, AssessTaskDTO, AssessmentConfig, AssessmentResultDTO, AssessmentTaskDTO, Attach, AttachVO, AuthClient, BaseProfileTaskDTO, BindUserRequest, BladeFlow, BloodOxygenExceptionInfo, BloodOxygenLevelRange, BloodOxygenMetricInfo, BloodPressureExceptionInfo, BloodPressureLevelRange, BloodPressureMetricInfo, BytLoginRequest, CAppCardDTO, CareConfig, CheckedTreeVO, ClientPageConfigDTO, ClientPageConfigQuery, CommonRes, ComponentConfig, ComponentInfo, ComponentItem, ConsumerBindActiveRequest, ConsumerBindCreateRequest, ConsumerBindDTO, ConsumerBindDeleteRequest, ConsumerBindQuery, ConsumerBindSendSmsCodeRequest, ConsumerBindUpdateRequest, ConsumerContact, ConsumerCreateRequest, ConsumerDTO, ConsumerDetail, ConsumerDeviceCreateRequest, ConsumerDeviceDTO, ConsumerDeviceQuery, ConsumerDeviceUpdateRequest, ConsumerFavoriteCreateRequest, ConsumerFavoriteDTO, ConsumerFavoriteDeleteRequest, ConsumerFavoriteQuery, ConsumerGroupDTO, ConsumerGroupDeleteRequest, ConsumerGroupMemberCreateRequest, ConsumerGroupMemberDTO, ConsumerGroupMemberQuery, ConsumerGroupMemberUpdateRequest, ConsumerGroupQuery, ConsumerGroupUpdateRequest, ConsumerLabel, ConsumerMark, ConsumerQuery, ConsumerRightCreateRequest, ConsumerRightDTO, ConsumerRightDeleteRequest, ConsumerRightDoctorDTO, ConsumerRightDoctorQuery, ConsumerRightQuery, ConsumerUpdateRequest, CreateRequest, Dept, DeptVO, Detail, DeviceCopyRequest, DeviceCopyResponse, DeviceCreateRequest, DeviceDTO, DeviceDeleteRequest, DeviceQuery, DeviceUpdateRequest, DeviceUserCreateRequest, DeviceUserDTO, DeviceUserInfo, DeviceUserLoginRequest, DeviceUserQuery, DeviceUserUpdateRequest, DiaryTaskDTO, DiaryTaskFetch, DiaryTaskSubmit, DictBiz, DictBizController, DictBizVO, DictBizVOController, DictController, DictEntry, DictVOController, DiseaseCareConfigDTO, DiseaseCareFlowExtension, EducationConfigDTO, ExRightQuery, ExecTimeConfig, FastAgent, FileObject, FlowExecution, FlowModel, FlowProcess, FollowUpConfigDTO, FollowUpPlan, FollowUpPoint, FollowUpTaskDTO, FormObjectType, FormRuleRelationDTO, FormRuleRelationQuery, GrantTreeVO, GrantVO, Group, GroupingConfig, GroupingConfigDTO, GuideArticle, HealthCareOpApi, HealthConsultConfigDTO, HealthMedicationConfigDTO, HealthMedicationTaskDTO, HealthMetric, HealthMetricDTO, HealthMetricLogDTO, HealthMetricQuery, HealthMetricTrendDTO, HealthMetricTrendQuery, HealthProfileConfigDTO, HealthRecord, HealthSelfAssessmentConfigDTO, HealthStudyConfigDTO, HealthStudyFlowExtension, HealthToolConfigDTO, HealthToolTaskDTO, HealthToolTaskFetch, HealthToolTaskStart, HealthToolTaskStartDTO, HeartRateExceptionInfo, HeartRateLevelRange, HeartRateMetricInfo, HuaWeiWatch, HuaWeiWatchConfig, HuaWeiWatchMetric, IMUserDTO, IMUserQuery, IMUserRequest, JobInfo, JobInfoVO, JobServer, JobServerVO, KMLibraryType, LibraryTypeOption, LicenseCancelRequest, LicenseCreateRequest, LicenseDTO, LicenseQuery, LicenseReAuthRequest, LicenseeTenantQuery, Log$1 as Log, MarketingContentCreateRequest, MarketingContentDTO, MarketingContentUpdateRequest, MarketingCreateRequest, MarketingDTO, MarketingDeleteRequest, MarketingQuery, MarketingTaskDTO, MarketingTaskLogCreateRequest, MarketingTaskLogDTO, MarketingTaskLogQuery, MarketingTaskQuery, MarketingUpdateRequest, MedicationRecord, MedicationRecordItem, MedicationReportTaskDTO, MedicationSmartFillDTO, MedicationSmartFillRequest, Menu, MenuVO, MessageRecordDTO, MessageRecordQuery, MessageRecordUpdateRequest, MessageTemplateDTO, MessageTemplateQuery, Metric, MetricExceptionDTO, MetricExceptionInfo, MetricExceptionQuery, MetricExceptionUpdateRequests, MetricExceptionUserCountDTO, MetricExceptionUserDTO, MetricMonitorConfigDTO, MetricMonitorPlan, MetricRecordInfo, MetricScope, MetricTrendInfo, NewsArticleTag, Operator, Oss, OssVO, PageRequest, PagedList, Post, PostVO, PotentialCustomerCreateRequest, PotentialCustomerDTO, PotentialCustomerQuery, PotentialCustomerUpdateRequest, QiniuInitOptions, QiniuOptions, QiniuResponse, QueryTreeRequest, Region, RegionExcel, RegionVO, ReportQuery, ReportTaskDTO, ReportTaskFetch, ReportTaskSubmit, RequestConfig, ReturnVisitConfigDTO, RightCopyRequest, RightCopyResponse, RightDTO, RightDeleteRequest, RightDraftDTO, RightQrCodeCreateRequest, RightQrCodeDTO, RightQrCodeRequest, RightQrCodeUpdateRequest, RightQuery, RightRequest, RightServiceConfigCopyUpdateRequest, RightServiceConfigDTO, RightServiceConfigQuery, Role, RoleGrantVO, RoleVO, Rule, RuleAction, RuleCondition, RuleCopyRequest, RuleCopyResponse, RuleCreateRequest, RuleDTO, RuleDeleteRequest, RuleExecuteRequest, RuleQuery, RuleUpdateRequest, SaleDTO, ServiceFlowConfigDTO, ServiceFlowConfigHistoryDTO, ServiceFlowConfigQuery, ServiceFlowDTO, ServiceFlowDraftDTO, ServiceFlowQuery, ServiceFlowStatisticsDTO, ServiceFlowStatisticsQuery, ServiceStartDTO, ServiceStartRequest, ServiceTaskDTO, ServiceTaskDeleteRequest, ServiceTaskQuery, ServiceTaskRightQuery, ServiceTaskStatisticsDTO, ServiceTaskStatisticsQuery, ServiceTaskUserCountDTO, ServiceTaskUserDTO, Sms, SmsDTO, SmsVO, StepsMetricInfo, SystemTenant, TabOption, TagCategoryBashUpdateRequest, TagCategoryCopyRequest, TagCategoryCopyResponse, TagCategoryCreateRequest, TagCategoryDTO, TagCategoryDeleteRequest, TagCategoryMoveRequest, TagCategoryQuery, TagCategoryRelationQuery, TagCategoryRenameRequest, TagCategoryTreeQuery, TagCreateRequest, TagDTO, TagQueryRequest, TagUpdateRequest, TagValueDictCategoryDTO, TagValueDictDTO, TagValueDictItemDTO, TagValueDictItemQuery, TaskDTO, Tenant, TenantCopyRequest, TenantCopyRetryRequest, TenantDTO, TenantPackage, TenantUpdateRequest, TenantUserDetail, TopMenu, TreeNode, TrendMetric, TrendMetricTag, UnbindUserRequest, UploadResponse, User, UserDTO, UserExcel, UserGroupDeleteRequest, UserGroupInfo, UserGroupMemberRequest, UserGroupUpdateRequest, UserInfo, UserVO, ValueDictCreateRequest, ValueDictDeleteRequest, ValueDictQueryRequest, WebComponentInfo, WebPotentialCustomerDTO, WebReportDTO, WrapperMessageRecordDTO, marketingSendContentRequest, uplooadReportQuery };
|
package/dist/index.esm.js
CHANGED
@@ -7564,5 +7564,261 @@ class DeptControllerApi {
|
|
7564
7564
|
}
|
7565
7565
|
}
|
7566
7566
|
|
7567
|
-
|
7567
|
+
/**
|
7568
|
+
* 应用管理 API
|
7569
|
+
*/
|
7570
|
+
class AuthClientControllerApi {
|
7571
|
+
/** 查看详情 */
|
7572
|
+
static detail(authClient) {
|
7573
|
+
return ShcpApiSdk.request({
|
7574
|
+
url: `/api/blade-system/client/detail`,
|
7575
|
+
method: 'get',
|
7576
|
+
params: authClient,
|
7577
|
+
});
|
7578
|
+
}
|
7579
|
+
/** 分页获取应用管理 */
|
7580
|
+
static list(authClient, query) {
|
7581
|
+
return ShcpApiSdk.request({
|
7582
|
+
url: `/api/blade-system/client/list`,
|
7583
|
+
method: 'get',
|
7584
|
+
params: { ...authClient, ...query },
|
7585
|
+
});
|
7586
|
+
}
|
7587
|
+
/** 新增应用管理 */
|
7588
|
+
static save(authClient) {
|
7589
|
+
return ShcpApiSdk.request({
|
7590
|
+
url: `/api/blade-system/client/save`,
|
7591
|
+
method: 'post',
|
7592
|
+
data: authClient,
|
7593
|
+
});
|
7594
|
+
}
|
7595
|
+
/** 修改应用管理 */
|
7596
|
+
static update(authClient) {
|
7597
|
+
return ShcpApiSdk.request({
|
7598
|
+
url: `/api/blade-system/client/update`,
|
7599
|
+
method: 'post',
|
7600
|
+
data: authClient,
|
7601
|
+
});
|
7602
|
+
}
|
7603
|
+
/** 新增或修改应用管理 */
|
7604
|
+
static submit(authClient) {
|
7605
|
+
return ShcpApiSdk.request({
|
7606
|
+
url: `/api/blade-system/client/submit`,
|
7607
|
+
method: 'post',
|
7608
|
+
data: authClient,
|
7609
|
+
});
|
7610
|
+
}
|
7611
|
+
/** 删除应用管理 */
|
7612
|
+
static remove(ids) {
|
7613
|
+
return ShcpApiSdk.request({
|
7614
|
+
url: `/api/blade-system/client/remove`,
|
7615
|
+
method: 'post',
|
7616
|
+
params: { ids },
|
7617
|
+
});
|
7618
|
+
}
|
7619
|
+
}
|
7620
|
+
|
7621
|
+
/**
|
7622
|
+
* 附件管理 API
|
7623
|
+
*/
|
7624
|
+
class AttachControllerApi {
|
7625
|
+
/** 查看详情 */
|
7626
|
+
static detail(attach) {
|
7627
|
+
return ShcpApiSdk.request({
|
7628
|
+
url: `/api/blade-resource/attach/detail`,
|
7629
|
+
method: 'get',
|
7630
|
+
params: attach,
|
7631
|
+
});
|
7632
|
+
}
|
7633
|
+
/** 分页获取附件 */
|
7634
|
+
static list(attach, query) {
|
7635
|
+
return ShcpApiSdk.request({
|
7636
|
+
url: `/api/blade-resource/attach/list`,
|
7637
|
+
method: 'get',
|
7638
|
+
params: { ...attach, ...query },
|
7639
|
+
});
|
7640
|
+
}
|
7641
|
+
/** 自定义分页获取附件 */
|
7642
|
+
static page(attach, query) {
|
7643
|
+
return ShcpApiSdk.request({
|
7644
|
+
url: `/api/blade-resource/attach/page`,
|
7645
|
+
method: 'get',
|
7646
|
+
params: { ...attach, ...query },
|
7647
|
+
});
|
7648
|
+
}
|
7649
|
+
/** 新增附件 */
|
7650
|
+
static save(attach) {
|
7651
|
+
return ShcpApiSdk.request({
|
7652
|
+
url: `/api/blade-resource/attach/save`,
|
7653
|
+
method: 'post',
|
7654
|
+
data: attach,
|
7655
|
+
});
|
7656
|
+
}
|
7657
|
+
/** 修改附件 */
|
7658
|
+
static update(attach) {
|
7659
|
+
return ShcpApiSdk.request({
|
7660
|
+
url: `/api/blade-resource/attach/update`,
|
7661
|
+
method: 'post',
|
7662
|
+
data: attach,
|
7663
|
+
});
|
7664
|
+
}
|
7665
|
+
/** 新增或修改附件 */
|
7666
|
+
static submit(attach) {
|
7667
|
+
return ShcpApiSdk.request({
|
7668
|
+
url: `/api/blade-resource/attach/submit`,
|
7669
|
+
method: 'post',
|
7670
|
+
data: attach,
|
7671
|
+
});
|
7672
|
+
}
|
7673
|
+
/** 删除附件 */
|
7674
|
+
static remove(ids) {
|
7675
|
+
return ShcpApiSdk.request({
|
7676
|
+
url: `/api/blade-resource/attach/remove`,
|
7677
|
+
method: 'post',
|
7678
|
+
params: { ids },
|
7679
|
+
});
|
7680
|
+
}
|
7681
|
+
}
|
7682
|
+
|
7683
|
+
/**
|
7684
|
+
* 对象存储管理 API
|
7685
|
+
*/
|
7686
|
+
class OssControllerApi {
|
7687
|
+
/** 查看详情 */
|
7688
|
+
static detail(oss) {
|
7689
|
+
return ShcpApiSdk.request({
|
7690
|
+
url: `/api/blade-resource/oss/detail`,
|
7691
|
+
method: 'get',
|
7692
|
+
params: oss,
|
7693
|
+
});
|
7694
|
+
}
|
7695
|
+
/** 分页获取对象存储 */
|
7696
|
+
static list(oss, query) {
|
7697
|
+
return ShcpApiSdk.request({
|
7698
|
+
url: `/api/blade-resource/oss/list`,
|
7699
|
+
method: 'get',
|
7700
|
+
params: { ...oss, ...query },
|
7701
|
+
});
|
7702
|
+
}
|
7703
|
+
/** 自定义分页获取对象存储 */
|
7704
|
+
static page(oss, query) {
|
7705
|
+
return ShcpApiSdk.request({
|
7706
|
+
url: `/api/blade-resource/oss/page`,
|
7707
|
+
method: 'get',
|
7708
|
+
params: { ...oss, ...query },
|
7709
|
+
});
|
7710
|
+
}
|
7711
|
+
/** 新增对象存储 */
|
7712
|
+
static save(oss) {
|
7713
|
+
return ShcpApiSdk.request({
|
7714
|
+
url: `/api/blade-resource/oss/save`,
|
7715
|
+
method: 'post',
|
7716
|
+
data: oss,
|
7717
|
+
});
|
7718
|
+
}
|
7719
|
+
/** 修改对象存储 */
|
7720
|
+
static update(oss) {
|
7721
|
+
return ShcpApiSdk.request({
|
7722
|
+
url: `/api/blade-resource/oss/update`,
|
7723
|
+
method: 'post',
|
7724
|
+
data: oss,
|
7725
|
+
});
|
7726
|
+
}
|
7727
|
+
/** 新增或修改对象存储 */
|
7728
|
+
static submit(oss) {
|
7729
|
+
return ShcpApiSdk.request({
|
7730
|
+
url: `/api/blade-resource/oss/submit`,
|
7731
|
+
method: 'post',
|
7732
|
+
data: oss,
|
7733
|
+
});
|
7734
|
+
}
|
7735
|
+
/** 删除对象存储 */
|
7736
|
+
static remove(ids) {
|
7737
|
+
return ShcpApiSdk.request({
|
7738
|
+
url: `/api/blade-resource/oss/remove`,
|
7739
|
+
method: 'post',
|
7740
|
+
params: { ids },
|
7741
|
+
});
|
7742
|
+
}
|
7743
|
+
/** 启用对象存储 */
|
7744
|
+
static enable(id) {
|
7745
|
+
return ShcpApiSdk.request({
|
7746
|
+
url: `/api/blade-resource/oss/enable`,
|
7747
|
+
method: 'post',
|
7748
|
+
params: { id },
|
7749
|
+
});
|
7750
|
+
}
|
7751
|
+
}
|
7752
|
+
|
7753
|
+
/**
|
7754
|
+
* 短信资源管理 API
|
7755
|
+
*/
|
7756
|
+
class SmsControllerApi {
|
7757
|
+
/** 查看详情 */
|
7758
|
+
static detail(sms) {
|
7759
|
+
return ShcpApiSdk.request({
|
7760
|
+
url: `/api/blade-resource/sms/detail`,
|
7761
|
+
method: 'get',
|
7762
|
+
params: sms,
|
7763
|
+
});
|
7764
|
+
}
|
7765
|
+
/** 分页获取短信配置 */
|
7766
|
+
static list(sms, query) {
|
7767
|
+
return ShcpApiSdk.request({
|
7768
|
+
url: `/api/blade-resource/sms/list`,
|
7769
|
+
method: 'get',
|
7770
|
+
params: { ...sms, ...query },
|
7771
|
+
});
|
7772
|
+
}
|
7773
|
+
/** 自定义分页获取短信配置 */
|
7774
|
+
static page(sms, query) {
|
7775
|
+
return ShcpApiSdk.request({
|
7776
|
+
url: `/api/blade-resource/sms/page`,
|
7777
|
+
method: 'get',
|
7778
|
+
params: { ...sms, ...query },
|
7779
|
+
});
|
7780
|
+
}
|
7781
|
+
/** 新增短信配置 */
|
7782
|
+
static save(sms) {
|
7783
|
+
return ShcpApiSdk.request({
|
7784
|
+
url: `/api/blade-resource/sms/save`,
|
7785
|
+
method: 'post',
|
7786
|
+
data: sms,
|
7787
|
+
});
|
7788
|
+
}
|
7789
|
+
/** 修改短信配置 */
|
7790
|
+
static update(sms) {
|
7791
|
+
return ShcpApiSdk.request({
|
7792
|
+
url: `/api/blade-resource/sms/update`,
|
7793
|
+
method: 'post',
|
7794
|
+
data: sms,
|
7795
|
+
});
|
7796
|
+
}
|
7797
|
+
/** 新增或修改短信配置 */
|
7798
|
+
static submit(sms) {
|
7799
|
+
return ShcpApiSdk.request({
|
7800
|
+
url: `/api/blade-resource/sms/submit`,
|
7801
|
+
method: 'post',
|
7802
|
+
data: sms,
|
7803
|
+
});
|
7804
|
+
}
|
7805
|
+
/** 删除短信配置 */
|
7806
|
+
static remove(ids) {
|
7807
|
+
return ShcpApiSdk.request({
|
7808
|
+
url: `/api/blade-resource/sms/remove`,
|
7809
|
+
method: 'post',
|
7810
|
+
params: { ids },
|
7811
|
+
});
|
7812
|
+
}
|
7813
|
+
/** 启用短信配置 */
|
7814
|
+
static enable(id) {
|
7815
|
+
return ShcpApiSdk.request({
|
7816
|
+
url: `/api/blade-resource/sms/enable`,
|
7817
|
+
method: 'post',
|
7818
|
+
params: { id },
|
7819
|
+
});
|
7820
|
+
}
|
7821
|
+
}
|
7822
|
+
|
7823
|
+
export { AggregateType, AiApi, AiApplicationApi, AiModelType, AiModelTypeOptions, ApiScopeControllerApi, AppCategory, AppCategoryOptions, AppClientApi, AppClientPageConfigApi, AppClientSettingApi, AppPlatformType, ArticleLibType, AttachControllerApi, AuthClientControllerApi, AuthorizationStatus, AuthorizationStatusOptions, CommonDictApi, CommonRightApi, ConsumerApi, ConsumerBindApi, ConsumerDeviceApi, ConsumerDeviceStatus, ConsumerDeviceStatusOptions, ConsumerFavoriteApi, ConsumerMarkType, ConsumerMarkTypeOptions, ConsumerRightStatus, ConsumerRightStatusOptions, DeliveryMethod, DeliveryMethodOptions, DeptControllerApi, DeviceApi, DeviceStatus, DeviceStatusOptions, DeviceType, DeviceTypeOptions, DeviceUserApi, DictBizControllerApi, DictControllerApi, DiseaseCareApi, DiseaseCareServiceFlowStatusOptions, ErrCode, FileApi, FileType, FileTypeOptions, FlowFollowApi, FlowManagerApi, FlowModelApi, FlowProcessApi, FormLibType, FormLibraryType, FormLibraryTypeOptions, FormRuleType, FormType, FormTypeOptions, Gender, GenderOptions, GroupJoinType, GroupJoinTypeOptions, HealthCommonApi, HealthMedicationApi, HealthMetricApi, HealthProfileApi, HealthRecordType, HealthRecordTypeOptions, HealthSelfAssessApi, HealthServiceType, HealthServiceTypeOptions, HealthStudyApi, HealthStudyPlanExecMethodOptions, HealthStudyServiceFlowStatusOptions, HealthToolApi, HelpCenterApi, HuaWeiWatchMetricCategory, ImUserApi, InterviewServiceTaskStatusOptions, JobInfoApi, JobServerApi, KmArticleApi, KmArticleCategoryApi, KmArticleDraftApi, KmArticleTagApi, KmArticleTagCategoryApi, KmFormApi, KmFormCategoryApi, KmFormContentDraftApi, KmFormDraftApi, KmFormItemApi, KmFormRuleRelationApi, KmFormTreeNodeApi, KmTagApi, KmTagCategoryApi, KmTagValueDictApi, LabelLibType, LicenseApi, LicenseStatus, LoginApi, MarketingApi, MarketingTaskLogStatus, MarketingTaskLogStatusOptions, MarketingTaskStatus, MarketingTaskStatusOptions, MemberListType, MemberListTypeMap, MenuControllerApi, MessageActionLabel, MessageActionLabelOptions, MessageActionStatus, MessageBizCategory, MessageBizCategoryOptions, MessageChannelType, MessageChannelTypeOptions, MessageRecordApi, MessageStatus, MessageStyle, MessageStyleOptions, MetricExceptionLevel, MetricExceptionLevelOptions, MetricExceptionStatus, MetricExceptionStatusOptions, MetricScopeValueOptions, MetricScopeValueType, MetricValueType, MetricValueTypeOptions, MineApi, OssControllerApi, PlanExecFollowType, PlanExecFollowTypeOptions, PlanExecMethod, PlanExecMethodOptions, PlanExecType, PlanExecTypeOptions, PostControllerApi, PotentialCustomerApi, QuestionItemType, RegionApi, ReportApi, ReportTheme, ReportThemeOptions, Resource, RightApi, RightDraftApi, RightDraftServiceConfigApi, RightQrcodeApi, RightServiceConfigApi, RightType, RoleControllerApi, RuleActionOperator, RuleApi, RuleConditionOperator, RuleConditionOperatorOptions, RuleConditionType, RuleExecuteStrategy, RuleExecutorType, RuleStatus, RuleStatusOptions, RuleType, ServiceFlowStatus, ServiceTaskCategory, ServiceTaskStatus, ServiceTaskStatusOptions, ShcpApiSdk, ShcpUserType, ShcpUserTypeOptions, SmsControllerApi, Status, StudyType, SystemRightApi, TenantControllerApi, TenantPackageApi, TopMenuControllerApi, UserControllerApi, UserGroupApi, VisitType, VisitTypeOptions, checkResponse, commonProccessResponse, crudConsumerApi, crudConsumerGroupApi, crudUserGroupTableApi, crudUserGroupTreeApi, diseaseExceptionOpApi, diseaseOpApi, formatMathInterval, formatMetricData, formatMetricScopeToInterval, getPlanExecLabel, healthStudyExceptionOpApi, healthStudyOpApi, isFormEqual, parseIntervalToMetricScope, processFormQueryParams };
|
7568
7824
|
//# sourceMappingURL=index.esm.js.map
|