From e65883bb5abaa1c62561be48e8f504b41a26ec38 Mon Sep 17 00:00:00 2001 From: ChenYi <296215406@outlook.com> Date: Wed, 30 Jul 2025 11:52:21 +0800 Subject: [PATCH] =?UTF-8?q?=E6=9B=B4=E6=96=B0=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/web-antd/src/api-client/schemas.gen.ts | 897 +++++++++++++++++++ apps/web-antd/src/api-client/services.gen.ts | 102 ++- apps/web-antd/src/api-client/types.gen.ts | 539 +++++++++++ 3 files changed, 1537 insertions(+), 1 deletion(-) diff --git a/apps/web-antd/src/api-client/schemas.gen.ts b/apps/web-antd/src/api-client/schemas.gen.ts index 6f5de4e..f59c8cc 100644 --- a/apps/web-antd/src/api-client/schemas.gen.ts +++ b/apps/web-antd/src/api-client/schemas.gen.ts @@ -137,6 +137,25 @@ export const AddUserToOrganizationUnitInputSchema = { additionalProperties: false } as const; +export const AggregateRouteConfigSchema = { + type: 'object', + properties: { + routeKey: { + type: 'string', + nullable: true + }, + parameter: { + type: 'string', + nullable: true + }, + jsonPath: { + type: 'string', + nullable: true + } + }, + additionalProperties: false +} as const; + export const ApplicationApiDescriptionModelSchema = { type: 'object', properties: { @@ -1003,6 +1022,115 @@ export const CTWingPrivateProductInfoModifyInputSchema = { description: 'CTWing 产品修改' } as const; +export const CTWingWorkshopProductListOutputSchema = { + type: 'object', + properties: { + nonce: { + type: 'string', + description: '用于计算签名字符的随机串', + nullable: true + }, + signature: { + type: 'string', + description: '加密签名,用以校验推送客户端身份合法性,校验方法见实例验证', + nullable: true + }, + timestamp: { + type: 'integer', + description: '签名有效期(毫秒)', + format: 'int64' + }, + msg: { + type: 'string', + description: '消息内容,JSON字符串,具体的设备相关信息', + nullable: true + }, + ctWingAccountId: { + type: 'string', + description: 'CTWing账户Id', + nullable: true + }, + ioTPlatformProductId: { + type: 'string', + description: '物联网平台对应的产品Id', + nullable: true + }, + productName: { + type: 'string', + description: '产品名称', + nullable: true + }, + featureAccesskey: { + type: 'string', + description: '设备访问密钥', + nullable: true + }, + communicationAddress: { + type: 'string', + description: '通讯服务地址', + nullable: true + }, + communicationAddressTLS: { + type: 'string', + description: 'TLS通讯服务地址', + nullable: true + } + }, + additionalProperties: false, + description: '生产车间获取CTWing产品列表' +} as const; + +export const CTWingWorkshopProductListOutputListHttpDataResultSchema = { + type: 'object', + properties: { + code: { + '$ref': '#/components/schemas/ResponeResultEnum' + }, + msg: { + type: 'string', + description: '详细描述', + nullable: true + }, + success: { + type: 'boolean', + description: `是否获取到数据或者逻辑处理成功 +服务内部判断状态采用此属性` + }, + timestamp: { + type: 'integer', + description: '时间戳(毫秒)', + format: 'int64', + readOnly: true + }, + locationCode: { + type: 'integer', + description: `位置编码,主要用于接口请求逻辑定位 +使用时必须保证每个请求中不重复出现`, + format: 'int32' + }, + extras: { + type: 'string', + description: '扩展信息', + nullable: true + }, + data: { + type: 'array', + items: { + '$ref': '#/components/schemas/CTWingWorkshopProductListOutput' + }, + description: '扩展字段', + nullable: true + }, + total: { + type: 'integer', + description: '总数', + format: 'int64' + } + }, + additionalProperties: false, + description: 'HTTP 请求返回结果' +} as const; + export const ChangePasswordInputSchema = { required: ['newPassword'], type: 'object', @@ -1144,6 +1272,28 @@ export const CreateDataDictinaryInputSchema = { additionalProperties: false } as const; +export const CreateDeviceAggregationInputSchema = { + required: ['deviceAddress', 'ioTPlatform', 'ioTPlatformProductId'], + type: 'object', + properties: { + deviceAddress: { + minLength: 1, + type: 'string', + description: '表通信地址' + }, + ioTPlatform: { + '$ref': '#/components/schemas/IoTPlatformTypeEnum' + }, + ioTPlatformProductId: { + minLength: 1, + type: 'string', + description: '集中器在物联网平台中对应的产品Id' + } + }, + additionalProperties: false, + description: '设备聚合新增设备' +} as const; + export const CreateLanguageInputSchema = { type: 'object', properties: { @@ -2381,6 +2531,231 @@ export const FeatureProviderDtoSchema = { additionalProperties: false } as const; +export const FileAggregateRouteSchema = { + type: 'object', + properties: { + routeKeys: { + type: 'array', + items: { + type: 'string' + }, + nullable: true + }, + routeKeysConfig: { + type: 'array', + items: { + '$ref': '#/components/schemas/AggregateRouteConfig' + }, + nullable: true + }, + upstreamPathTemplate: { + type: 'string', + nullable: true + }, + upstreamHost: { + type: 'string', + nullable: true + }, + routeIsCaseSensitive: { + type: 'boolean' + }, + aggregator: { + type: 'string', + nullable: true + }, + upstreamHttpMethod: { + type: 'array', + items: { + type: 'string' + }, + nullable: true, + readOnly: true + }, + priority: { + type: 'integer', + format: 'int32' + } + }, + additionalProperties: false +} as const; + +export const FileAuthenticationOptionsSchema = { + type: 'object', + properties: { + authenticationProviderKey: { + type: 'string', + nullable: true + }, + allowedScopes: { + type: 'array', + items: { + type: 'string' + }, + nullable: true + } + }, + additionalProperties: false +} as const; + +export const FileCacheOptionsSchema = { + type: 'object', + properties: { + ttlSeconds: { + type: 'integer', + format: 'int32' + }, + region: { + type: 'string', + nullable: true + } + }, + additionalProperties: false +} as const; + +export const FileConfigurationSchema = { + type: 'object', + properties: { + routes: { + type: 'array', + items: { + '$ref': '#/components/schemas/FileRoute' + }, + nullable: true + }, + dynamicRoutes: { + type: 'array', + items: { + '$ref': '#/components/schemas/FileDynamicRoute' + }, + nullable: true + }, + aggregates: { + type: 'array', + items: { + '$ref': '#/components/schemas/FileAggregateRoute' + }, + nullable: true + }, + globalConfiguration: { + '$ref': '#/components/schemas/FileGlobalConfiguration' + } + }, + additionalProperties: false +} as const; + +export const FileDynamicRouteSchema = { + type: 'object', + properties: { + serviceName: { + type: 'string', + nullable: true + }, + rateLimitRule: { + '$ref': '#/components/schemas/FileRateLimitRule' + }, + downstreamHttpVersion: { + type: 'string', + nullable: true + } + }, + additionalProperties: false +} as const; + +export const FileGlobalConfigurationSchema = { + type: 'object', + properties: { + requestIdKey: { + type: 'string', + nullable: true + }, + serviceDiscoveryProvider: { + '$ref': '#/components/schemas/FileServiceDiscoveryProvider' + }, + rateLimitOptions: { + '$ref': '#/components/schemas/FileRateLimitOptions' + }, + qoSOptions: { + '$ref': '#/components/schemas/FileQoSOptions' + }, + baseUrl: { + type: 'string', + nullable: true + }, + loadBalancerOptions: { + '$ref': '#/components/schemas/FileLoadBalancerOptions' + }, + downstreamScheme: { + type: 'string', + nullable: true + }, + httpHandlerOptions: { + '$ref': '#/components/schemas/FileHttpHandlerOptions' + }, + downstreamHttpVersion: { + type: 'string', + nullable: true + } + }, + additionalProperties: false +} as const; + +export const FileHostAndPortSchema = { + type: 'object', + properties: { + host: { + type: 'string', + nullable: true + }, + port: { + type: 'integer', + format: 'int32' + } + }, + additionalProperties: false +} as const; + +export const FileHttpHandlerOptionsSchema = { + type: 'object', + properties: { + allowAutoRedirect: { + type: 'boolean' + }, + useCookieContainer: { + type: 'boolean' + }, + useTracing: { + type: 'boolean' + }, + useProxy: { + type: 'boolean' + }, + maxConnectionsPerServer: { + type: 'integer', + format: 'int32' + } + }, + additionalProperties: false +} as const; + +export const FileLoadBalancerOptionsSchema = { + type: 'object', + properties: { + type: { + type: 'string', + nullable: true + }, + key: { + type: 'string', + nullable: true + }, + expiry: { + type: 'integer', + format: 'int32' + } + }, + additionalProperties: false +} as const; + export const FileObjectDtoSchema = { type: 'object', properties: { @@ -2414,6 +2789,299 @@ export const FileObjectDtoSchema = { description: '文件' } as const; +export const FileQoSOptionsSchema = { + type: 'object', + properties: { + exceptionsAllowedBeforeBreaking: { + type: 'integer', + format: 'int32' + }, + durationOfBreak: { + type: 'integer', + format: 'int32' + }, + timeoutValue: { + type: 'integer', + format: 'int32' + } + }, + additionalProperties: false +} as const; + +export const FileRateLimitOptionsSchema = { + type: 'object', + properties: { + clientIdHeader: { + type: 'string', + nullable: true + }, + quotaExceededMessage: { + type: 'string', + nullable: true + }, + rateLimitCounterPrefix: { + type: 'string', + nullable: true + }, + disableRateLimitHeaders: { + type: 'boolean' + }, + httpStatusCode: { + type: 'integer', + format: 'int32' + } + }, + additionalProperties: false +} as const; + +export const FileRateLimitRuleSchema = { + type: 'object', + properties: { + clientWhitelist: { + type: 'array', + items: { + type: 'string' + }, + nullable: true + }, + enableRateLimiting: { + type: 'boolean' + }, + period: { + type: 'string', + nullable: true + }, + periodTimespan: { + type: 'number', + format: 'double' + }, + limit: { + type: 'integer', + format: 'int64' + } + }, + additionalProperties: false +} as const; + +export const FileRouteSchema = { + type: 'object', + properties: { + downstreamPathTemplate: { + type: 'string', + nullable: true + }, + upstreamPathTemplate: { + type: 'string', + nullable: true + }, + upstreamHttpMethod: { + type: 'array', + items: { + type: 'string' + }, + nullable: true + }, + downstreamHttpMethod: { + type: 'string', + nullable: true + }, + addHeadersToRequest: { + type: 'object', + additionalProperties: { + type: 'string', + nullable: true + }, + nullable: true + }, + upstreamHeaderTransform: { + type: 'object', + additionalProperties: { + type: 'string', + nullable: true + }, + nullable: true + }, + downstreamHeaderTransform: { + type: 'object', + additionalProperties: { + type: 'string', + nullable: true + }, + nullable: true + }, + addClaimsToRequest: { + type: 'object', + additionalProperties: { + type: 'string', + nullable: true + }, + nullable: true + }, + routeClaimsRequirement: { + type: 'object', + additionalProperties: { + type: 'string', + nullable: true + }, + nullable: true + }, + addQueriesToRequest: { + type: 'object', + additionalProperties: { + type: 'string', + nullable: true + }, + nullable: true + }, + changeDownstreamPathTemplate: { + type: 'object', + additionalProperties: { + type: 'string', + nullable: true + }, + nullable: true + }, + requestIdKey: { + type: 'string', + nullable: true + }, + fileCacheOptions: { + '$ref': '#/components/schemas/FileCacheOptions' + }, + routeIsCaseSensitive: { + type: 'boolean' + }, + serviceName: { + type: 'string', + nullable: true + }, + serviceNamespace: { + type: 'string', + nullable: true + }, + downstreamScheme: { + type: 'string', + nullable: true + }, + qoSOptions: { + '$ref': '#/components/schemas/FileQoSOptions' + }, + loadBalancerOptions: { + '$ref': '#/components/schemas/FileLoadBalancerOptions' + }, + rateLimitOptions: { + '$ref': '#/components/schemas/FileRateLimitRule' + }, + authenticationOptions: { + '$ref': '#/components/schemas/FileAuthenticationOptions' + }, + httpHandlerOptions: { + '$ref': '#/components/schemas/FileHttpHandlerOptions' + }, + downstreamHostAndPorts: { + type: 'array', + items: { + '$ref': '#/components/schemas/FileHostAndPort' + }, + nullable: true + }, + upstreamHost: { + type: 'string', + nullable: true + }, + key: { + type: 'string', + nullable: true + }, + delegatingHandlers: { + type: 'array', + items: { + type: 'string' + }, + nullable: true + }, + priority: { + type: 'integer', + format: 'int32' + }, + timeout: { + type: 'integer', + format: 'int32' + }, + dangerousAcceptAnyServerCertificateValidator: { + type: 'boolean' + }, + securityOptions: { + '$ref': '#/components/schemas/FileSecurityOptions' + }, + downstreamHttpVersion: { + type: 'string', + nullable: true + } + }, + additionalProperties: false +} as const; + +export const FileSecurityOptionsSchema = { + type: 'object', + properties: { + ipAllowedList: { + type: 'array', + items: { + type: 'string' + }, + nullable: true + }, + ipBlockedList: { + type: 'array', + items: { + type: 'string' + }, + nullable: true + } + }, + additionalProperties: false +} as const; + +export const FileServiceDiscoveryProviderSchema = { + type: 'object', + properties: { + scheme: { + type: 'string', + nullable: true + }, + host: { + type: 'string', + nullable: true + }, + port: { + type: 'integer', + format: 'int32' + }, + type: { + type: 'string', + nullable: true + }, + token: { + type: 'string', + nullable: true + }, + configurationKey: { + type: 'string', + nullable: true + }, + pollingInterval: { + type: 'integer', + format: 'int32' + }, + namespace: { + type: 'string', + nullable: true + } + }, + additionalProperties: false +} as const; + export const FindByUserNameInputSchema = { type: 'object', properties: { @@ -2901,6 +3569,44 @@ export const GetUnAddUserOutputPagedResultDtoSchema = { additionalProperties: false } as const; +export const HttpDataResultSchema = { + type: 'object', + properties: { + code: { + '$ref': '#/components/schemas/ResponeResultEnum' + }, + msg: { + type: 'string', + description: '详细描述', + nullable: true + }, + success: { + type: 'boolean', + description: `是否获取到数据或者逻辑处理成功 +服务内部判断状态采用此属性` + }, + timestamp: { + type: 'integer', + description: '时间戳(毫秒)', + format: 'int64', + readOnly: true + }, + locationCode: { + type: 'integer', + description: `位置编码,主要用于接口请求逻辑定位 +使用时必须保证每个请求中不重复出现`, + format: 'int32' + }, + extras: { + type: 'string', + description: '扩展信息', + nullable: true + } + }, + additionalProperties: false, + description: 'HTTP 请求返回结果' +} as const; + export const HttpStatusCodeSchema = { enum: [100, 101, 102, 103, 200, 201, 202, 203, 204, 205, 206, 207, 208, 226, 300, 301, 302, 303, 304, 305, 306, 307, 308, 400, 401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411, 412, 413, 414, 415, 416, 417, 421, 422, 423, 424, 426, 428, 429, 431, 451, 500, 501, 502, 503, 504, 505, 506, 507, 508, 510, 511], type: 'integer', @@ -4813,6 +5519,143 @@ export const OneNetProductInfoModifyInputSchema = { description: '修改OneNET产品' } as const; +export const OneNetWorkshopProductListOutputSchema = { + type: 'object', + properties: { + nonce: { + type: 'string', + description: '用于计算签名字符的随机串', + nullable: true + }, + signature: { + type: 'string', + description: '加密签名,用以校验推送客户端身份合法性,校验方法见实例验证', + nullable: true + }, + timestamp: { + type: 'integer', + description: '签名有效期(毫秒)', + format: 'int64' + }, + msg: { + type: 'string', + description: '消息内容,JSON字符串,具体的设备相关信息', + nullable: true + }, + oneNETAccountId: { + type: 'string', + description: 'OneNET账户Id', + nullable: true + }, + ioTPlatformProductId: { + type: 'string', + description: '物联网平台对应的产品Id', + nullable: true + }, + productName: { + type: 'string', + description: '产品名称', + nullable: true + }, + productAccesskey: { + type: 'string', + description: '产品访问密钥', + nullable: true + }, + communicationAddress: { + type: 'string', + description: '通讯服务地址', + nullable: true + }, + communicationAddressTLS: { + type: 'string', + description: 'TLS通讯服务地址', + nullable: true + } + }, + additionalProperties: false, + description: '生产车间获取OneNET产品列表' +} as const; + +export const OneNetWorkshopProductListOutputListHttpDataResultSchema = { + type: 'object', + properties: { + code: { + '$ref': '#/components/schemas/ResponeResultEnum' + }, + msg: { + type: 'string', + description: '详细描述', + nullable: true + }, + success: { + type: 'boolean', + description: `是否获取到数据或者逻辑处理成功 +服务内部判断状态采用此属性` + }, + timestamp: { + type: 'integer', + description: '时间戳(毫秒)', + format: 'int64', + readOnly: true + }, + locationCode: { + type: 'integer', + description: `位置编码,主要用于接口请求逻辑定位 +使用时必须保证每个请求中不重复出现`, + format: 'int32' + }, + extras: { + type: 'string', + description: '扩展信息', + nullable: true + }, + data: { + type: 'array', + items: { + '$ref': '#/components/schemas/OneNetWorkshopProductListOutput' + }, + description: '扩展字段', + nullable: true + }, + total: { + type: 'integer', + description: '总数', + format: 'int64' + } + }, + additionalProperties: false, + description: 'HTTP 请求返回结果' +} as const; + +export const OpenApiRequestSchema = { + type: 'object', + properties: { + nonce: { + type: 'string', + description: '用于计算签名字符的随机串', + nullable: true + }, + signature: { + type: 'string', + description: '加密签名,用以校验推送客户端身份合法性,校验方法见实例验证', + nullable: true + }, + timestamp: { + type: 'integer', + description: '签名有效期(毫秒)', + format: 'int64' + }, + msg: { + type: 'string', + description: '消息内容,JSON字符串,具体的设备相关信息', + nullable: true + } + }, + additionalProperties: false, + description: '开放接口请求入参,所有外部接口请求参数' +} as const; + export const OpenTypeSchema = { enum: [10, 20, 30, 40], type: 'integer', @@ -7511,6 +8354,14 @@ export const ResetTwoFactorInputSchema = { additionalProperties: false } as const; +export const ResponeResultEnumSchema = { + enum: [0, 1, 2, 3, 4, 5, 6, 200, 201, 400, 401, 403, 404, 500, 503, 504, -102, -101], + type: 'integer', + description: '响应结果枚举', + format: 'int32', + '说明:': 'Success=0,Fail=1,LoginOut=2,TimeOut=3,Exception=4,NotAllowed=5,NotLoggedIn=6,OK=200,NoData=201,BadRequest=400,Unauthorized=401,Forbidden=403,NotFound=404,AepInternalError=500,ServiceUnavailable=503,AsyncService=504,HandlerException=-102,HandlerFail=-101' +} as const; + export const ReturnValueApiDescriptionModelSchema = { type: 'object', properties: { @@ -7526,6 +8377,52 @@ export const ReturnValueApiDescriptionModelSchema = { additionalProperties: false } as const; +export const SelectResultSchema = { + type: 'object', + properties: { + key: { + type: 'string', + description: '下拉框 键', + nullable: true + }, + value: { + type: 'string', + description: '下拉框 值', + nullable: true + }, + secondValue: { + type: 'string', + description: '下拉框 值2', + nullable: true + }, + thirdValue: { + description: '下拉框 值3', + nullable: true + } + }, + additionalProperties: false, + description: '下拉框选项元素' +} as const; + +export const SelectResultListInputSchema = { + required: ['typeName'], + type: 'object', + properties: { + typeName: { + minLength: 1, + type: 'string', + description: '类型名称' + }, + thirdAttributeTypeName: { + type: 'string', + description: '第三级类型', + nullable: true + } + }, + additionalProperties: false, + description: '获取下拉框数据' +} as const; + export const SendBroadCastMessageInputSchema = { type: 'object', properties: { diff --git a/apps/web-antd/src/api-client/services.gen.ts b/apps/web-antd/src/api-client/services.gen.ts index 01cc2ff..98fc38f 100644 --- a/apps/web-antd/src/api-client/services.gen.ts +++ b/apps/web-antd/src/api-client/services.gen.ts @@ -1,7 +1,7 @@ // This file is auto-generated by @hey-api/openapi-ts import { createClient, createConfig, type Options, formDataBodySerializer } from '@hey-api/client-axios'; -import type { GetApiAbpApiDefinitionData, GetApiAbpApiDefinitionError, GetApiAbpApiDefinitionResponse, GetApiAbpApplicationConfigurationData, GetApiAbpApplicationConfigurationError, GetApiAbpApplicationConfigurationResponse, GetApiAbpApplicationLocalizationData, GetApiAbpApplicationLocalizationError, GetApiAbpApplicationLocalizationResponse, PostApiAppAccountLoginData, PostApiAppAccountLoginError, PostApiAppAccountLoginResponse, PostApiAppAccountLogin2FaData, PostApiAppAccountLogin2FaError, PostApiAppAccountLogin2FaResponse, PostApiAppAccountLoginOidcData, PostApiAppAccountLoginOidcError, PostApiAppAccountLoginOidcResponse, PostApiAppAccountRefreshTokenData, PostApiAppAccountRefreshTokenError, PostApiAppAccountRefreshTokenResponse, PostApiAppAccountLogoutError, PostApiAppAccountLogoutResponse, PostAuditLogsPageData, PostAuditLogsPageError, PostAuditLogsPageResponse, PostCtWingAccountInsertAsyncData, PostCtWingAccountInsertAsyncError, PostCtWingAccountInsertAsyncResponse, PostCtWingAccountModifyAsyncData, PostCtWingAccountModifyAsyncError, PostCtWingAccountModifyAsyncResponse, PostCtWingAccountDeleteAsyncData, PostCtWingAccountDeleteAsyncError, PostCtWingAccountDeleteAsyncResponse, PostCtWingAccountListAsyncData, PostCtWingAccountListAsyncError, PostCtWingAccountListAsyncResponse, PostCtWingProductInsertAsyncData, PostCtWingProductInsertAsyncError, PostCtWingProductInsertAsyncResponse, PostCtWingProductModifyAsyncData, PostCtWingProductModifyAsyncError, PostCtWingProductModifyAsyncResponse, PostCtWingProductDeleteAsyncData, PostCtWingProductDeleteAsyncError, PostCtWingProductDeleteAsyncResponse, PostCtWingProductGetAsyncData, PostCtWingProductGetAsyncError, PostCtWingProductGetAsyncResponse, PostCtWingProductProductStatusChangeAsyncData, PostCtWingProductProductStatusChangeAsyncError, PostCtWingProductProductStatusChangeAsyncResponse, PostCtWingProductListAsyncData, PostCtWingProductListAsyncError, PostCtWingProductListAsyncResponse, PostCtWingServiceReceiveStatusChangeError, PostCtWingServiceReceiveStatusChangeResponse, PostCtWingServiceReceiveDataChangeError, PostCtWingServiceReceiveDataChangeResponse, PostCtWingServiceReceiveCommandChangeError, PostCtWingServiceReceiveCommandChangeResponse, PostCtWingServiceReceiveEventChangeError, PostCtWingServiceReceiveEventChangeResponse, PostCtWingServiceReceiveDeviceChangeError, PostCtWingServiceReceiveDeviceChangeResponse, PostDataDictionaryPageData, PostDataDictionaryPageError, PostDataDictionaryPageResponse, PostDataDictionaryPageDetailData, PostDataDictionaryPageDetailError, PostDataDictionaryPageDetailResponse, PostDataDictionaryCreateData, PostDataDictionaryCreateError, PostDataDictionaryCreateResponse, PostDataDictionaryCreateDetailData, PostDataDictionaryCreateDetailError, PostDataDictionaryCreateDetailResponse, PostDataDictionaryStatusData, PostDataDictionaryStatusError, PostDataDictionaryStatusResponse, PostDataDictionaryUpdateDetailData, PostDataDictionaryUpdateDetailError, PostDataDictionaryUpdateDetailResponse, PostDataDictionaryDeleteData, PostDataDictionaryDeleteError, PostDataDictionaryDeleteResponse, PostDataDictionaryDeleteDataDictionaryTypeData, PostDataDictionaryDeleteDataDictionaryTypeError, PostDataDictionaryDeleteDataDictionaryTypeResponse, PostDataDictionaryUpdateData, PostDataDictionaryUpdateError, PostDataDictionaryUpdateResponse, PostDeviceInfoFindByDeviceAddressData, PostDeviceInfoFindByDeviceAddressError, PostDeviceInfoFindByDeviceAddressResponse, PostDeviceInfoPageData, PostDeviceInfoPageError, PostDeviceInfoPageResponse, PostDeviceInfoCacheDeviceDataToRedisError, PostDeviceInfoCacheDeviceDataToRedisResponse, PostDeviceInfoArchivesDownData, PostDeviceInfoArchivesDownError, PostDeviceInfoArchivesDownResponse, PostFeaturesListData, PostFeaturesListError, PostFeaturesListResponse, PostFeaturesUpdateData, PostFeaturesUpdateError, PostFeaturesUpdateResponse, PostFeaturesDeleteData, PostFeaturesDeleteError, PostFeaturesDeleteResponse, PostFilesPageData, PostFilesPageError, PostFilesPageResponse, PostFilesUploadData, PostFilesUploadError, PostFilesUploadResponse, PostFilesDeleteData, PostFilesDeleteError, PostFilesDeleteResponse, PostFilesDownloadData, PostFilesDownloadError, PostFilesDownloadResponse, PostIdentitySecurityLogsPageData, PostIdentitySecurityLogsPageError, PostIdentitySecurityLogsPageResponse, PostLanguagesAllError, PostLanguagesAllResponse, PostLanguagesPageData, PostLanguagesPageError, PostLanguagesPageResponse, PostLanguagesCreateData, PostLanguagesCreateError, PostLanguagesCreateResponse, PostLanguagesUpdateData, PostLanguagesUpdateError, PostLanguagesUpdateResponse, PostLanguagesDeleteData, PostLanguagesDeleteError, PostLanguagesDeleteResponse, PostLanguagesSetDefaultData, PostLanguagesSetDefaultError, PostLanguagesSetDefaultResponse, PostLanguageTextsAllResourceError, PostLanguageTextsAllResourceResponse, PostLanguageTextsPageData, PostLanguageTextsPageError, PostLanguageTextsPageResponse, PostLanguageTextsCreateData, PostLanguageTextsCreateError, PostLanguageTextsCreateResponse, PostLanguageTextsUpdateData, PostLanguageTextsUpdateError, PostLanguageTextsUpdateResponse, PostMenusUserMenuError, PostMenusUserMenuResponse, PostMenusPageData, PostMenusPageError, PostMenusPageResponse, PostMenusCreateData, PostMenusCreateError, PostMenusCreateResponse, PostMenusUpdateData, PostMenusUpdateError, PostMenusUpdateResponse, PostMenusDeleteData, PostMenusDeleteError, PostMenusDeleteResponse, PostMenusTreeError, PostMenusTreeResponse, PostNotificationNotificationPageData, PostNotificationNotificationPageError, PostNotificationNotificationPageResponse, PostNotificationNotificationSubscriptionPageData, PostNotificationNotificationSubscriptionPageError, PostNotificationNotificationSubscriptionPageResponse, PostNotificationDeleteData, PostNotificationDeleteError, PostNotificationDeleteResponse, PostNotificationSendCommonWarningMessageData, PostNotificationSendCommonWarningMessageError, PostNotificationSendCommonWarningMessageResponse, PostNotificationSendCommonInformationMessageData, PostNotificationSendCommonInformationMessageError, PostNotificationSendCommonInformationMessageResponse, PostNotificationSendCommonErrorMessageData, PostNotificationSendCommonErrorMessageError, PostNotificationSendCommonErrorMessageResponse, PostNotificationSendBroadCastWarningMessageData, PostNotificationSendBroadCastWarningMessageError, PostNotificationSendBroadCastWarningMessageResponse, PostNotificationSendBroadCastInformationMessageData, PostNotificationSendBroadCastInformationMessageError, PostNotificationSendBroadCastInformationMessageResponse, PostNotificationSendBroadCastErrorMessageData, PostNotificationSendBroadCastErrorMessageError, PostNotificationSendBroadCastErrorMessageResponse, PostNotificationReadData, PostNotificationReadError, PostNotificationReadResponse, PostNotificationBatchReadData, PostNotificationBatchReadError, PostNotificationBatchReadResponse, PostOneNetAccountInsertAsyncData, PostOneNetAccountInsertAsyncError, PostOneNetAccountInsertAsyncResponse, PostOneNetAccountModifyAsyncData, PostOneNetAccountModifyAsyncError, PostOneNetAccountModifyAsyncResponse, PostOneNetAccountDeleteAsyncData, PostOneNetAccountDeleteAsyncError, PostOneNetAccountDeleteAsyncResponse, PostOneNetAccountListAsyncData, PostOneNetAccountListAsyncError, PostOneNetAccountListAsyncResponse, PostOneNetProductInsertAsyncData, PostOneNetProductInsertAsyncError, PostOneNetProductInsertAsyncResponse, PostOneNetProductModifyAsyncData, PostOneNetProductModifyAsyncError, PostOneNetProductModifyAsyncResponse, PostOneNetProductDeleteAsyncData, PostOneNetProductDeleteAsyncError, PostOneNetProductDeleteAsyncResponse, PostOneNetProductGetAsyncData, PostOneNetProductGetAsyncError, PostOneNetProductGetAsyncResponse, PostOneNetProductProductStatusChangeAsyncData, PostOneNetProductProductStatusChangeAsyncError, PostOneNetProductProductStatusChangeAsyncResponse, PostOneNetProductListAsyncData, PostOneNetProductListAsyncError, PostOneNetProductListAsyncResponse, PostOneNetServiceReceivePlaintextDataChangeData, PostOneNetServiceReceivePlaintextDataChangeError, PostOneNetServiceReceivePlaintextDataChangeResponse, GetOneNetServiceReceivePlaintextDataChangeData, GetOneNetServiceReceivePlaintextDataChangeError, GetOneNetServiceReceivePlaintextDataChangeResponse, PostOneNetServiceReceiveCiphertextDataChangeData, PostOneNetServiceReceiveCiphertextDataChangeError, PostOneNetServiceReceiveCiphertextDataChangeResponse, GetOneNetServiceReceiveCiphertextDataChangeData, GetOneNetServiceReceiveCiphertextDataChangeError, GetOneNetServiceReceiveCiphertextDataChangeResponse, PostOrganizationUnitsTreeError, PostOrganizationUnitsTreeResponse, PostOrganizationUnitsCreateData, PostOrganizationUnitsCreateError, PostOrganizationUnitsCreateResponse, PostOrganizationUnitsDeleteData, PostOrganizationUnitsDeleteError, PostOrganizationUnitsDeleteResponse, PostOrganizationUnitsUpdateData, PostOrganizationUnitsUpdateError, PostOrganizationUnitsUpdateResponse, PostOrganizationUnitsAddRoleToOrganizationUnitAsyncData, PostOrganizationUnitsAddRoleToOrganizationUnitAsyncError, PostOrganizationUnitsAddRoleToOrganizationUnitAsyncResponse, PostOrganizationUnitsRemoveRoleFromOrganizationUnitAsyncData, PostOrganizationUnitsRemoveRoleFromOrganizationUnitAsyncError, PostOrganizationUnitsRemoveRoleFromOrganizationUnitAsyncResponse, PostOrganizationUnitsAddUserToOrganizationUnitData, PostOrganizationUnitsAddUserToOrganizationUnitError, PostOrganizationUnitsAddUserToOrganizationUnitResponse, PostOrganizationUnitsRemoveUserFromOrganizationUnitData, PostOrganizationUnitsRemoveUserFromOrganizationUnitError, PostOrganizationUnitsRemoveUserFromOrganizationUnitResponse, PostOrganizationUnitsGetUsersData, PostOrganizationUnitsGetUsersError, PostOrganizationUnitsGetUsersResponse, PostOrganizationUnitsGetRolesData, PostOrganizationUnitsGetRolesError, PostOrganizationUnitsGetRolesResponse, PostOrganizationUnitsGetUnAddUsersData, PostOrganizationUnitsGetUnAddUsersError, PostOrganizationUnitsGetUnAddUsersResponse, PostOrganizationUnitsGetUnAddRolesData, PostOrganizationUnitsGetUnAddRolesError, PostOrganizationUnitsGetUnAddRolesResponse, PostPermissionsTreeData, PostPermissionsTreeError, PostPermissionsTreeResponse, PostPermissionsUpdateData, PostPermissionsUpdateError, PostPermissionsUpdateResponse, PostRolesAllError, PostRolesAllResponse, PostRolesPageData, PostRolesPageError, PostRolesPageResponse, PostRolesCreateData, PostRolesCreateError, PostRolesCreateResponse, PostRolesUpdateData, PostRolesUpdateError, PostRolesUpdateResponse, PostRolesDeleteData, PostRolesDeleteError, PostRolesDeleteResponse, GetApiAppAbpProBasicApplicationConfigurationError, GetApiAppAbpProBasicApplicationConfigurationResponse, PostSettingsAllError, PostSettingsAllResponse, PostSettingsUpdateData, PostSettingsUpdateError, PostSettingsUpdateResponse, PostTableModelPacketInfoPageData, PostTableModelPacketInfoPageError, PostTableModelPacketInfoPageResponse, PostTableModelPacketInfoInsertData, PostTableModelPacketInfoInsertError, PostTableModelPacketInfoInsertResponse, PostTableModelPacketInfoBatchInsertData, PostTableModelPacketInfoBatchInsertError, PostTableModelPacketInfoBatchInsertResponse, PostTableModelDeviceDataInfoPageData, PostTableModelDeviceDataInfoPageError, PostTableModelDeviceDataInfoPageResponse, PostTableModelCtWingLogInfoData, PostTableModelCtWingLogInfoError, PostTableModelCtWingLogInfoResponse, PostTableModelOneNetLogInfoData, PostTableModelOneNetLogInfoError, PostTableModelOneNetLogInfoResponse, PostTenantsFindData, PostTenantsFindError, PostTenantsFindResponse, PostTenantsPageData, PostTenantsPageError, PostTenantsPageResponse, PostTenantsCreateData, PostTenantsCreateError, PostTenantsCreateResponse, PostTenantsUpdateData, PostTenantsUpdateError, PostTenantsUpdateResponse, PostTenantsDeleteData, PostTenantsDeleteError, PostTenantsDeleteResponse, PostTenantsPageConnectionStringData, PostTenantsPageConnectionStringError, PostTenantsPageConnectionStringResponse, PostTenantsAddOrUpdateConnectionStringData, PostTenantsAddOrUpdateConnectionStringError, PostTenantsAddOrUpdateConnectionStringResponse, PostTenantsDeleteConnectionStringData, PostTenantsDeleteConnectionStringError, PostTenantsDeleteConnectionStringResponse, PostTextTemplatesPageData, PostTextTemplatesPageError, PostTextTemplatesPageResponse, PostTextTemplatesCreateData, PostTextTemplatesCreateError, PostTextTemplatesCreateResponse, PostTextTemplatesUpdateData, PostTextTemplatesUpdateError, PostTextTemplatesUpdateResponse, PostTextTemplatesDeleteData, PostTextTemplatesDeleteError, PostTextTemplatesDeleteResponse, PostTextTemplatesExportData, PostTextTemplatesExportError, PostTextTemplatesExportResponse, PostTreeModelDeviceDataInfoPageData, PostTreeModelDeviceDataInfoPageError, PostTreeModelDeviceDataInfoPageResponse, PostUsersPageData, PostUsersPageError, PostUsersPageResponse, PostUsersListData, PostUsersListError, PostUsersListResponse, PostUsersExportData, PostUsersExportError, PostUsersExportResponse, PostUsersCreateData, PostUsersCreateError, PostUsersCreateResponse, PostUsersUpdateData, PostUsersUpdateError, PostUsersUpdateResponse, PostUsersDeleteData, PostUsersDeleteError, PostUsersDeleteResponse, PostUsersRoleData, PostUsersRoleError, PostUsersRoleResponse, PostUsersChangePasswordData, PostUsersChangePasswordError, PostUsersChangePasswordResponse, PostUsersResetPasswordData, PostUsersResetPasswordError, PostUsersResetPasswordResponse, PostUsersLockData, PostUsersLockError, PostUsersLockResponse, PostUsersFindByUserNameData, PostUsersFindByUserNameError, PostUsersFindByUserNameResponse, PostUsersMyProfileError, PostUsersMyProfileResponse, PostUsersCanUseTwoFactorError, PostUsersCanUseTwoFactorResponse, PostUsersGetQrCodeError, PostUsersGetQrCodeResponse, PostUsersEnabledTwoFactorData, PostUsersEnabledTwoFactorError, PostUsersEnabledTwoFactorResponse, PostUsersDisabledTwoFactorData, PostUsersDisabledTwoFactorError, PostUsersDisabledTwoFactorResponse, PostUsersResetTwoFactorData, PostUsersResetTwoFactorError, PostUsersResetTwoFactorResponse, PostUsersNeedChangePasswordError, PostUsersNeedChangePasswordResponse } from './types.gen'; +import type { GetApiAbpApiDefinitionData, GetApiAbpApiDefinitionError, GetApiAbpApiDefinitionResponse, GetApiAbpApplicationConfigurationData, GetApiAbpApplicationConfigurationError, GetApiAbpApplicationConfigurationResponse, GetApiAbpApplicationLocalizationData, GetApiAbpApplicationLocalizationError, GetApiAbpApplicationLocalizationResponse, PostApiAppAccountLoginData, PostApiAppAccountLoginError, PostApiAppAccountLoginResponse, PostApiAppAccountLogin2FaData, PostApiAppAccountLogin2FaError, PostApiAppAccountLogin2FaResponse, PostApiAppAccountLoginOidcData, PostApiAppAccountLoginOidcError, PostApiAppAccountLoginOidcResponse, PostApiAppAccountRefreshTokenData, PostApiAppAccountRefreshTokenError, PostApiAppAccountRefreshTokenResponse, PostApiAppAccountLogoutError, PostApiAppAccountLogoutResponse, PostAuditLogsPageData, PostAuditLogsPageError, PostAuditLogsPageResponse, PostAggregationBusinessReceiveCommandInfoAsyncData, PostAggregationBusinessReceiveCommandInfoAsyncError, PostAggregationBusinessReceiveCommandInfoAsyncResponse, GetCommonGetSelectListData, GetCommonGetSelectListError, GetCommonGetSelectListResponse, PostCtWingAccountInsertAsyncData, PostCtWingAccountInsertAsyncError, PostCtWingAccountInsertAsyncResponse, PostCtWingAccountModifyAsyncData, PostCtWingAccountModifyAsyncError, PostCtWingAccountModifyAsyncResponse, PostCtWingAccountDeleteAsyncData, PostCtWingAccountDeleteAsyncError, PostCtWingAccountDeleteAsyncResponse, PostCtWingAccountListAsyncData, PostCtWingAccountListAsyncError, PostCtWingAccountListAsyncResponse, PostAggregationCtWingReceiveWorkshopProductionInfoAsyncData, PostAggregationCtWingReceiveWorkshopProductionInfoAsyncError, PostAggregationCtWingReceiveWorkshopProductionInfoAsyncResponse, PostAggregationCtWingGetProductListAsyncData, PostAggregationCtWingGetProductListAsyncError, PostAggregationCtWingGetProductListAsyncResponse, PostCtWingProductInsertAsyncData, PostCtWingProductInsertAsyncError, PostCtWingProductInsertAsyncResponse, PostCtWingProductModifyAsyncData, PostCtWingProductModifyAsyncError, PostCtWingProductModifyAsyncResponse, PostCtWingProductDeleteAsyncData, PostCtWingProductDeleteAsyncError, PostCtWingProductDeleteAsyncResponse, PostCtWingProductGetAsyncData, PostCtWingProductGetAsyncError, PostCtWingProductGetAsyncResponse, PostCtWingProductProductStatusChangeAsyncData, PostCtWingProductProductStatusChangeAsyncError, PostCtWingProductProductStatusChangeAsyncResponse, PostCtWingProductListAsyncData, PostCtWingProductListAsyncError, PostCtWingProductListAsyncResponse, PostCtWingServiceReceiveStatusChangeError, PostCtWingServiceReceiveStatusChangeResponse, PostCtWingServiceReceiveDataChangeError, PostCtWingServiceReceiveDataChangeResponse, PostCtWingServiceReceiveCommandChangeError, PostCtWingServiceReceiveCommandChangeResponse, PostCtWingServiceReceiveEventChangeError, PostCtWingServiceReceiveEventChangeResponse, PostCtWingServiceReceiveDeviceChangeError, PostCtWingServiceReceiveDeviceChangeResponse, PostDataDictionaryPageData, PostDataDictionaryPageError, PostDataDictionaryPageResponse, PostDataDictionaryPageDetailData, PostDataDictionaryPageDetailError, PostDataDictionaryPageDetailResponse, PostDataDictionaryCreateData, PostDataDictionaryCreateError, PostDataDictionaryCreateResponse, PostDataDictionaryCreateDetailData, PostDataDictionaryCreateDetailError, PostDataDictionaryCreateDetailResponse, PostDataDictionaryStatusData, PostDataDictionaryStatusError, PostDataDictionaryStatusResponse, PostDataDictionaryUpdateDetailData, PostDataDictionaryUpdateDetailError, PostDataDictionaryUpdateDetailResponse, PostDataDictionaryDeleteData, PostDataDictionaryDeleteError, PostDataDictionaryDeleteResponse, PostDataDictionaryDeleteDataDictionaryTypeData, PostDataDictionaryDeleteDataDictionaryTypeError, PostDataDictionaryDeleteDataDictionaryTypeResponse, PostDataDictionaryUpdateData, PostDataDictionaryUpdateError, PostDataDictionaryUpdateResponse, PostAggregationDeviceCreateAsyncData, PostAggregationDeviceCreateAsyncError, PostAggregationDeviceCreateAsyncResponse, PostAggregationDeviceDeleteAsyncData, PostAggregationDeviceDeleteAsyncError, PostAggregationDeviceDeleteAsyncResponse, PostAggregationDeviceFindByIdAsyncData, PostAggregationDeviceFindByIdAsyncError, PostAggregationDeviceFindByIdAsyncResponse, PostAggregationDeviceRepushDeviceInfoToIoTplatformData, PostAggregationDeviceRepushDeviceInfoToIoTplatformError, PostAggregationDeviceRepushDeviceInfoToIoTplatformResponse, PostDeviceInfoFindByDeviceAddressData, PostDeviceInfoFindByDeviceAddressError, PostDeviceInfoFindByDeviceAddressResponse, PostDeviceInfoPageData, PostDeviceInfoPageError, PostDeviceInfoPageResponse, PostDeviceInfoCacheDeviceDataToRedisError, PostDeviceInfoCacheDeviceDataToRedisResponse, PostDeviceInfoArchivesDownData, PostDeviceInfoArchivesDownError, PostDeviceInfoArchivesDownResponse, PostFeaturesListData, PostFeaturesListError, PostFeaturesListResponse, PostFeaturesUpdateData, PostFeaturesUpdateError, PostFeaturesUpdateResponse, PostFeaturesDeleteData, PostFeaturesDeleteError, PostFeaturesDeleteResponse, PostFilesPageData, PostFilesPageError, PostFilesPageResponse, PostFilesUploadData, PostFilesUploadError, PostFilesUploadResponse, PostFilesDeleteData, PostFilesDeleteError, PostFilesDeleteResponse, PostFilesDownloadData, PostFilesDownloadError, PostFilesDownloadResponse, PostIdentitySecurityLogsPageData, PostIdentitySecurityLogsPageError, PostIdentitySecurityLogsPageResponse, PostLanguagesAllError, PostLanguagesAllResponse, PostLanguagesPageData, PostLanguagesPageError, PostLanguagesPageResponse, PostLanguagesCreateData, PostLanguagesCreateError, PostLanguagesCreateResponse, PostLanguagesUpdateData, PostLanguagesUpdateError, PostLanguagesUpdateResponse, PostLanguagesDeleteData, PostLanguagesDeleteError, PostLanguagesDeleteResponse, PostLanguagesSetDefaultData, PostLanguagesSetDefaultError, PostLanguagesSetDefaultResponse, PostLanguageTextsAllResourceError, PostLanguageTextsAllResourceResponse, PostLanguageTextsPageData, PostLanguageTextsPageError, PostLanguageTextsPageResponse, PostLanguageTextsCreateData, PostLanguageTextsCreateError, PostLanguageTextsCreateResponse, PostLanguageTextsUpdateData, PostLanguageTextsUpdateError, PostLanguageTextsUpdateResponse, PostMenusUserMenuError, PostMenusUserMenuResponse, PostMenusPageData, PostMenusPageError, PostMenusPageResponse, PostMenusCreateData, PostMenusCreateError, PostMenusCreateResponse, PostMenusUpdateData, PostMenusUpdateError, PostMenusUpdateResponse, PostMenusDeleteData, PostMenusDeleteError, PostMenusDeleteResponse, PostMenusTreeError, PostMenusTreeResponse, PostNotificationNotificationPageData, PostNotificationNotificationPageError, PostNotificationNotificationPageResponse, PostNotificationNotificationSubscriptionPageData, PostNotificationNotificationSubscriptionPageError, PostNotificationNotificationSubscriptionPageResponse, PostNotificationDeleteData, PostNotificationDeleteError, PostNotificationDeleteResponse, PostNotificationSendCommonWarningMessageData, PostNotificationSendCommonWarningMessageError, PostNotificationSendCommonWarningMessageResponse, PostNotificationSendCommonInformationMessageData, PostNotificationSendCommonInformationMessageError, PostNotificationSendCommonInformationMessageResponse, PostNotificationSendCommonErrorMessageData, PostNotificationSendCommonErrorMessageError, PostNotificationSendCommonErrorMessageResponse, PostNotificationSendBroadCastWarningMessageData, PostNotificationSendBroadCastWarningMessageError, PostNotificationSendBroadCastWarningMessageResponse, PostNotificationSendBroadCastInformationMessageData, PostNotificationSendBroadCastInformationMessageError, PostNotificationSendBroadCastInformationMessageResponse, PostNotificationSendBroadCastErrorMessageData, PostNotificationSendBroadCastErrorMessageError, PostNotificationSendBroadCastErrorMessageResponse, PostNotificationReadData, PostNotificationReadError, PostNotificationReadResponse, PostNotificationBatchReadData, PostNotificationBatchReadError, PostNotificationBatchReadResponse, PostOneNetAccountInsertAsyncData, PostOneNetAccountInsertAsyncError, PostOneNetAccountInsertAsyncResponse, PostOneNetAccountModifyAsyncData, PostOneNetAccountModifyAsyncError, PostOneNetAccountModifyAsyncResponse, PostOneNetAccountDeleteAsyncData, PostOneNetAccountDeleteAsyncError, PostOneNetAccountDeleteAsyncResponse, PostOneNetAccountListAsyncData, PostOneNetAccountListAsyncError, PostOneNetAccountListAsyncResponse, PostAggregationOneNetReceiveWorkshopProductionInfoAsyncData, PostAggregationOneNetReceiveWorkshopProductionInfoAsyncError, PostAggregationOneNetReceiveWorkshopProductionInfoAsyncResponse, PostAggregationOneNetGetProductListAsyncData, PostAggregationOneNetGetProductListAsyncError, PostAggregationOneNetGetProductListAsyncResponse, PostOneNetProductInsertAsyncData, PostOneNetProductInsertAsyncError, PostOneNetProductInsertAsyncResponse, PostOneNetProductModifyAsyncData, PostOneNetProductModifyAsyncError, PostOneNetProductModifyAsyncResponse, PostOneNetProductDeleteAsyncData, PostOneNetProductDeleteAsyncError, PostOneNetProductDeleteAsyncResponse, PostOneNetProductGetAsyncData, PostOneNetProductGetAsyncError, PostOneNetProductGetAsyncResponse, PostOneNetProductProductStatusChangeAsyncData, PostOneNetProductProductStatusChangeAsyncError, PostOneNetProductProductStatusChangeAsyncResponse, PostOneNetProductListAsyncData, PostOneNetProductListAsyncError, PostOneNetProductListAsyncResponse, PostOneNetServiceReceivePlaintextDataChangeData, PostOneNetServiceReceivePlaintextDataChangeError, PostOneNetServiceReceivePlaintextDataChangeResponse, GetOneNetServiceReceivePlaintextDataChangeData, GetOneNetServiceReceivePlaintextDataChangeError, GetOneNetServiceReceivePlaintextDataChangeResponse, PostOneNetServiceReceiveCiphertextDataChangeData, PostOneNetServiceReceiveCiphertextDataChangeError, PostOneNetServiceReceiveCiphertextDataChangeResponse, GetOneNetServiceReceiveCiphertextDataChangeData, GetOneNetServiceReceiveCiphertextDataChangeError, GetOneNetServiceReceiveCiphertextDataChangeResponse, PostOrganizationUnitsTreeError, PostOrganizationUnitsTreeResponse, PostOrganizationUnitsCreateData, PostOrganizationUnitsCreateError, PostOrganizationUnitsCreateResponse, PostOrganizationUnitsDeleteData, PostOrganizationUnitsDeleteError, PostOrganizationUnitsDeleteResponse, PostOrganizationUnitsUpdateData, PostOrganizationUnitsUpdateError, PostOrganizationUnitsUpdateResponse, PostOrganizationUnitsAddRoleToOrganizationUnitAsyncData, PostOrganizationUnitsAddRoleToOrganizationUnitAsyncError, PostOrganizationUnitsAddRoleToOrganizationUnitAsyncResponse, PostOrganizationUnitsRemoveRoleFromOrganizationUnitAsyncData, PostOrganizationUnitsRemoveRoleFromOrganizationUnitAsyncError, PostOrganizationUnitsRemoveRoleFromOrganizationUnitAsyncResponse, PostOrganizationUnitsAddUserToOrganizationUnitData, PostOrganizationUnitsAddUserToOrganizationUnitError, PostOrganizationUnitsAddUserToOrganizationUnitResponse, PostOrganizationUnitsRemoveUserFromOrganizationUnitData, PostOrganizationUnitsRemoveUserFromOrganizationUnitError, PostOrganizationUnitsRemoveUserFromOrganizationUnitResponse, PostOrganizationUnitsGetUsersData, PostOrganizationUnitsGetUsersError, PostOrganizationUnitsGetUsersResponse, PostOrganizationUnitsGetRolesData, PostOrganizationUnitsGetRolesError, PostOrganizationUnitsGetRolesResponse, PostOrganizationUnitsGetUnAddUsersData, PostOrganizationUnitsGetUnAddUsersError, PostOrganizationUnitsGetUnAddUsersResponse, PostOrganizationUnitsGetUnAddRolesData, PostOrganizationUnitsGetUnAddRolesError, PostOrganizationUnitsGetUnAddRolesResponse, PostPermissionsTreeData, PostPermissionsTreeError, PostPermissionsTreeResponse, PostPermissionsUpdateData, PostPermissionsUpdateError, PostPermissionsUpdateResponse, PostRolesAllError, PostRolesAllResponse, PostRolesPageData, PostRolesPageError, PostRolesPageResponse, PostRolesCreateData, PostRolesCreateError, PostRolesCreateResponse, PostRolesUpdateData, PostRolesUpdateError, PostRolesUpdateResponse, PostRolesDeleteData, PostRolesDeleteError, PostRolesDeleteResponse, GetApiAppAbpProBasicApplicationConfigurationError, GetApiAppAbpProBasicApplicationConfigurationResponse, PostSettingsAllError, PostSettingsAllResponse, PostSettingsUpdateData, PostSettingsUpdateError, PostSettingsUpdateResponse, PostTableModelPacketInfoPageData, PostTableModelPacketInfoPageError, PostTableModelPacketInfoPageResponse, PostTableModelPacketInfoInsertData, PostTableModelPacketInfoInsertError, PostTableModelPacketInfoInsertResponse, PostTableModelPacketInfoBatchInsertData, PostTableModelPacketInfoBatchInsertError, PostTableModelPacketInfoBatchInsertResponse, PostTableModelDeviceDataInfoPageData, PostTableModelDeviceDataInfoPageError, PostTableModelDeviceDataInfoPageResponse, PostTableModelCtWingLogInfoData, PostTableModelCtWingLogInfoError, PostTableModelCtWingLogInfoResponse, PostTableModelOneNetLogInfoData, PostTableModelOneNetLogInfoError, PostTableModelOneNetLogInfoResponse, PostTenantsFindData, PostTenantsFindError, PostTenantsFindResponse, PostTenantsPageData, PostTenantsPageError, PostTenantsPageResponse, PostTenantsCreateData, PostTenantsCreateError, PostTenantsCreateResponse, PostTenantsUpdateData, PostTenantsUpdateError, PostTenantsUpdateResponse, PostTenantsDeleteData, PostTenantsDeleteError, PostTenantsDeleteResponse, PostTenantsPageConnectionStringData, PostTenantsPageConnectionStringError, PostTenantsPageConnectionStringResponse, PostTenantsAddOrUpdateConnectionStringData, PostTenantsAddOrUpdateConnectionStringError, PostTenantsAddOrUpdateConnectionStringResponse, PostTenantsDeleteConnectionStringData, PostTenantsDeleteConnectionStringError, PostTenantsDeleteConnectionStringResponse, PostTextTemplatesPageData, PostTextTemplatesPageError, PostTextTemplatesPageResponse, PostTextTemplatesCreateData, PostTextTemplatesCreateError, PostTextTemplatesCreateResponse, PostTextTemplatesUpdateData, PostTextTemplatesUpdateError, PostTextTemplatesUpdateResponse, PostTextTemplatesDeleteData, PostTextTemplatesDeleteError, PostTextTemplatesDeleteResponse, PostTextTemplatesExportData, PostTextTemplatesExportError, PostTextTemplatesExportResponse, PostTreeModelDeviceDataInfoPageData, PostTreeModelDeviceDataInfoPageError, PostTreeModelDeviceDataInfoPageResponse, PostUsersPageData, PostUsersPageError, PostUsersPageResponse, PostUsersListData, PostUsersListError, PostUsersListResponse, PostUsersExportData, PostUsersExportError, PostUsersExportResponse, PostUsersCreateData, PostUsersCreateError, PostUsersCreateResponse, PostUsersUpdateData, PostUsersUpdateError, PostUsersUpdateResponse, PostUsersDeleteData, PostUsersDeleteError, PostUsersDeleteResponse, PostUsersRoleData, PostUsersRoleError, PostUsersRoleResponse, PostUsersChangePasswordData, PostUsersChangePasswordError, PostUsersChangePasswordResponse, PostUsersResetPasswordData, PostUsersResetPasswordError, PostUsersResetPasswordResponse, PostUsersLockData, PostUsersLockError, PostUsersLockResponse, PostUsersFindByUserNameData, PostUsersFindByUserNameError, PostUsersFindByUserNameResponse, PostUsersMyProfileError, PostUsersMyProfileResponse, PostUsersCanUseTwoFactorError, PostUsersCanUseTwoFactorResponse, PostUsersGetQrCodeError, PostUsersGetQrCodeResponse, PostUsersEnabledTwoFactorData, PostUsersEnabledTwoFactorError, PostUsersEnabledTwoFactorResponse, PostUsersDisabledTwoFactorData, PostUsersDisabledTwoFactorError, PostUsersDisabledTwoFactorResponse, PostUsersResetTwoFactorData, PostUsersResetTwoFactorError, PostUsersResetTwoFactorResponse, PostUsersNeedChangePasswordError, PostUsersNeedChangePasswordResponse } from './types.gen'; export const client = createClient(createConfig()); @@ -86,6 +86,26 @@ export const postAuditLogsPage = (options? }); }; +/** + * 接收业务系统指令信息 + */ +export const postAggregationBusinessReceiveCommandInfoAsync = (options?: Options) => { + return (options?.client ?? client).post({ + ...options, + url: '/Aggregation/Business/ReceiveCommandInfoAsync' + }); +}; + +/** + * 根据type名称获取下拉框数据 + */ +export const getCommonGetSelectList = (options?: Options) => { + return (options?.client ?? client).get({ + ...options, + url: '/Common/GetSelectList' + }); +}; + /** * 添加CTWing账号 */ @@ -126,6 +146,26 @@ export const postCtWingAccountListAsync = }); }; +/** + * 接收车间生产信息 + */ +export const postAggregationCtWingReceiveWorkshopProductionInfoAsync = (options?: Options) => { + return (options?.client ?? client).post({ + ...options, + url: '/Aggregation/CTWing/ReceiveWorkshopProductionInfoAsync' + }); +}; + +/** + * 获取CTWing产品列表 + */ +export const postAggregationCtWingGetProductListAsync = (options?: Options) => { + return (options?.client ?? client).post({ + ...options, + url: '/Aggregation/CTWing/GetProductListAsync' + }); +}; + /** * 添加CTWing产品 */ @@ -326,6 +366,46 @@ export const postDataDictionaryUpdate = (o }); }; +/** + * 创建设备信息 + */ +export const postAggregationDeviceCreateAsync = (options?: Options) => { + return (options?.client ?? client).post({ + ...options, + url: '/Aggregation/Device/CreateAsync' + }); +}; + +/** + * 删除设备信息 + */ +export const postAggregationDeviceDeleteAsync = (options?: Options) => { + return (options?.client ?? client).post({ + ...options, + url: '/Aggregation/Device/DeleteAsync' + }); +}; + +/** + * 根据设备ID查询设备信息 + */ +export const postAggregationDeviceFindByIdAsync = (options?: Options) => { + return (options?.client ?? client).post({ + ...options, + url: '/Aggregation/Device/FindByIdAsync' + }); +}; + +/** + * 重新推送设备信息到物联网平台 + */ +export const postAggregationDeviceRepushDeviceInfoToIoTplatform = (options?: Options) => { + return (options?.client ?? client).post({ + ...options, + url: '/Aggregation/Device/RepushDeviceInfoToIoTPlatform' + }); +}; + /** * 根据设备地址查询设备信息 */ @@ -665,6 +745,26 @@ export const postOneNetAccountListAsync = }); }; +/** + * 接收车间生产信息 + */ +export const postAggregationOneNetReceiveWorkshopProductionInfoAsync = (options?: Options) => { + return (options?.client ?? client).post({ + ...options, + url: '/Aggregation/OneNET/ReceiveWorkshopProductionInfoAsync' + }); +}; + +/** + * 获取OneNET产品列表 + */ +export const postAggregationOneNetGetProductListAsync = (options?: Options) => { + return (options?.client ?? client).post({ + ...options, + url: '/Aggregation/OneNET/GetProductListAsync' + }); +}; + /** * 添加OneNET产品 */ diff --git a/apps/web-antd/src/api-client/types.gen.ts b/apps/web-antd/src/api-client/types.gen.ts index 4cc4ee7..d84bd12 100644 --- a/apps/web-antd/src/api-client/types.gen.ts +++ b/apps/web-antd/src/api-client/types.gen.ts @@ -45,6 +45,12 @@ export type AddUserToOrganizationUnitInput = { organizationUnitId?: string; }; +export type AggregateRouteConfig = { + routeKey?: (string) | null; + parameter?: (string) | null; + jsonPath?: (string) | null; +}; + export type ApplicationApiDescriptionModel = { modules?: { [key: string]: ModuleApiDescriptionModel; @@ -204,6 +210,21 @@ export type CreateDataDictinaryInput = { description?: (string) | null; }; +/** + * 设备聚合新增设备 + */ +export type CreateDeviceAggregationInput = { + /** + * 表通信地址 + */ + deviceAddress: string; + ioTPlatform: IoTPlatformTypeEnum; + /** + * 集中器在物联网平台中对应的产品Id + */ + ioTPlatformProductId: string; +}; + /** * 创建语言 */ @@ -710,6 +731,89 @@ export type CTWingPrivateProductInfoModifyInput = { id?: string; }; +/** + * 生产车间获取CTWing产品列表 + */ +export type CTWingWorkshopProductListOutput = { + /** + * 用于计算签名字符的随机串 + */ + nonce?: (string) | null; + /** + * 加密签名,用以校验推送客户端身份合法性,校验方法见实例验证 + */ + signature?: (string) | null; + /** + * 签名有效期(毫秒) + */ + timestamp?: number; + /** + * 消息内容,JSON字符串,具体的设备相关信息 + */ + msg?: (string) | null; + /** + * CTWing账户Id + */ + ctWingAccountId?: (string) | null; + /** + * 物联网平台对应的产品Id + */ + ioTPlatformProductId?: (string) | null; + /** + * 产品名称 + */ + productName?: (string) | null; + /** + * 设备访问密钥 + */ + featureAccesskey?: (string) | null; + /** + * 通讯服务地址 + */ + communicationAddress?: (string) | null; + /** + * TLS通讯服务地址 + */ + communicationAddressTLS?: (string) | null; +}; + +/** + * HTTP 请求返回结果 + */ +export type CTWingWorkshopProductListOutputListHttpDataResult = { + code?: ResponeResultEnum; + /** + * 详细描述 + */ + msg?: (string) | null; + /** + * 是否获取到数据或者逻辑处理成功 + * 服务内部判断状态采用此属性 + */ + success?: boolean; + /** + * 时间戳(毫秒) + */ + readonly timestamp?: number; + /** + * 位置编码,主要用于接口请求逻辑定位 + * 使用时必须保证每个请求中不重复出现 + */ + locationCode?: number; + /** + * 扩展信息 + */ + extras?: (string) | null; + /** + * 扩展字段 + */ + data?: Array | null; + /** + * 总数 + */ + total?: number; +}; + export type CurrentCultureDto = { displayName?: (string) | null; englishName?: (string) | null; @@ -1206,6 +1310,71 @@ export type FeatureProviderDto = { key?: (string) | null; }; +export type FileAggregateRoute = { + routeKeys?: Array<(string)> | null; + routeKeysConfig?: Array | null; + upstreamPathTemplate?: (string) | null; + upstreamHost?: (string) | null; + routeIsCaseSensitive?: boolean; + aggregator?: (string) | null; + readonly upstreamHttpMethod?: Array<(string)> | null; + priority?: number; +}; + +export type FileAuthenticationOptions = { + authenticationProviderKey?: (string) | null; + allowedScopes?: Array<(string)> | null; +}; + +export type FileCacheOptions = { + ttlSeconds?: number; + region?: (string) | null; +}; + +export type FileConfiguration = { + routes?: Array | null; + dynamicRoutes?: Array | null; + aggregates?: Array | null; + globalConfiguration?: FileGlobalConfiguration; +}; + +export type FileDynamicRoute = { + serviceName?: (string) | null; + rateLimitRule?: FileRateLimitRule; + downstreamHttpVersion?: (string) | null; +}; + +export type FileGlobalConfiguration = { + requestIdKey?: (string) | null; + serviceDiscoveryProvider?: FileServiceDiscoveryProvider; + rateLimitOptions?: FileRateLimitOptions; + qoSOptions?: FileQoSOptions; + baseUrl?: (string) | null; + loadBalancerOptions?: FileLoadBalancerOptions; + downstreamScheme?: (string) | null; + httpHandlerOptions?: FileHttpHandlerOptions; + downstreamHttpVersion?: (string) | null; +}; + +export type FileHostAndPort = { + host?: (string) | null; + port?: number; +}; + +export type FileHttpHandlerOptions = { + allowAutoRedirect?: boolean; + useCookieContainer?: boolean; + useTracing?: boolean; + useProxy?: boolean; + maxConnectionsPerServer?: number; +}; + +export type FileLoadBalancerOptions = { + type?: (string) | null; + key?: (string) | null; + expiry?: number; +}; + /** * 文件 */ @@ -1232,6 +1401,92 @@ export type FileObjectDto = { fileName?: (string) | null; }; +export type FileQoSOptions = { + exceptionsAllowedBeforeBreaking?: number; + durationOfBreak?: number; + timeoutValue?: number; +}; + +export type FileRateLimitOptions = { + clientIdHeader?: (string) | null; + quotaExceededMessage?: (string) | null; + rateLimitCounterPrefix?: (string) | null; + disableRateLimitHeaders?: boolean; + httpStatusCode?: number; +}; + +export type FileRateLimitRule = { + clientWhitelist?: Array<(string)> | null; + enableRateLimiting?: boolean; + period?: (string) | null; + periodTimespan?: number; + limit?: number; +}; + +export type FileRoute = { + downstreamPathTemplate?: (string) | null; + upstreamPathTemplate?: (string) | null; + upstreamHttpMethod?: Array<(string)> | null; + downstreamHttpMethod?: (string) | null; + addHeadersToRequest?: { + [key: string]: ((string) | null); + } | null; + upstreamHeaderTransform?: { + [key: string]: ((string) | null); + } | null; + downstreamHeaderTransform?: { + [key: string]: ((string) | null); + } | null; + addClaimsToRequest?: { + [key: string]: ((string) | null); + } | null; + routeClaimsRequirement?: { + [key: string]: ((string) | null); + } | null; + addQueriesToRequest?: { + [key: string]: ((string) | null); + } | null; + changeDownstreamPathTemplate?: { + [key: string]: ((string) | null); + } | null; + requestIdKey?: (string) | null; + fileCacheOptions?: FileCacheOptions; + routeIsCaseSensitive?: boolean; + serviceName?: (string) | null; + serviceNamespace?: (string) | null; + downstreamScheme?: (string) | null; + qoSOptions?: FileQoSOptions; + loadBalancerOptions?: FileLoadBalancerOptions; + rateLimitOptions?: FileRateLimitRule; + authenticationOptions?: FileAuthenticationOptions; + httpHandlerOptions?: FileHttpHandlerOptions; + downstreamHostAndPorts?: Array | null; + upstreamHost?: (string) | null; + key?: (string) | null; + delegatingHandlers?: Array<(string)> | null; + priority?: number; + timeout?: number; + dangerousAcceptAnyServerCertificateValidator?: boolean; + securityOptions?: FileSecurityOptions; + downstreamHttpVersion?: (string) | null; +}; + +export type FileSecurityOptions = { + ipAllowedList?: Array<(string)> | null; + ipBlockedList?: Array<(string)> | null; +}; + +export type FileServiceDiscoveryProvider = { + scheme?: (string) | null; + host?: (string) | null; + port?: number; + type?: (string) | null; + token?: (string) | null; + configurationKey?: (string) | null; + pollingInterval?: number; + namespace?: (string) | null; +}; + export type FindByUserNameInput = { userName?: (string) | null; }; @@ -1453,6 +1708,35 @@ export type GetUnAddUserOutputPagedResultDto = { totalCount?: number; }; +/** + * HTTP 请求返回结果 + */ +export type HttpDataResult = { + code?: ResponeResultEnum; + /** + * 详细描述 + */ + msg?: (string) | null; + /** + * 是否获取到数据或者逻辑处理成功 + * 服务内部判断状态采用此属性 + */ + success?: boolean; + /** + * 时间戳(毫秒) + */ + readonly timestamp?: number; + /** + * 位置编码,主要用于接口请求逻辑定位 + * 使用时必须保证每个请求中不重复出现 + */ + locationCode?: number; + /** + * 扩展信息 + */ + extras?: (string) | null; +}; + export type HttpStatusCode = 100 | 101 | 102 | 103 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 226 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 400 | 401 | 402 | 403 | 404 | 405 | 406 | 407 | 408 | 409 | 410 | 411 | 412 | 413 | 414 | 415 | 416 | 417 | 421 | 422 | 423 | 424 | 426 | 428 | 429 | 431 | 451 | 500 | 501 | 502 | 503 | 504 | 505 | 506 | 507 | 508 | 510 | 511; export type IanaTimeZone = { @@ -2504,6 +2788,111 @@ export type OneNetProductInfoModifyInput = { deviceThingModelFileName?: (string) | null; }; +/** + * 生产车间获取OneNET产品列表 + */ +export type OneNetWorkshopProductListOutput = { + /** + * 用于计算签名字符的随机串 + */ + nonce?: (string) | null; + /** + * 加密签名,用以校验推送客户端身份合法性,校验方法见实例验证 + */ + signature?: (string) | null; + /** + * 签名有效期(毫秒) + */ + timestamp?: number; + /** + * 消息内容,JSON字符串,具体的设备相关信息 + */ + msg?: (string) | null; + /** + * OneNET账户Id + */ + oneNETAccountId?: (string) | null; + /** + * 物联网平台对应的产品Id + */ + ioTPlatformProductId?: (string) | null; + /** + * 产品名称 + */ + productName?: (string) | null; + /** + * 产品访问密钥 + */ + productAccesskey?: (string) | null; + /** + * 通讯服务地址 + */ + communicationAddress?: (string) | null; + /** + * TLS通讯服务地址 + */ + communicationAddressTLS?: (string) | null; +}; + +/** + * HTTP 请求返回结果 + */ +export type OneNetWorkshopProductListOutputListHttpDataResult = { + code?: ResponeResultEnum; + /** + * 详细描述 + */ + msg?: (string) | null; + /** + * 是否获取到数据或者逻辑处理成功 + * 服务内部判断状态采用此属性 + */ + success?: boolean; + /** + * 时间戳(毫秒) + */ + readonly timestamp?: number; + /** + * 位置编码,主要用于接口请求逻辑定位 + * 使用时必须保证每个请求中不重复出现 + */ + locationCode?: number; + /** + * 扩展信息 + */ + extras?: (string) | null; + /** + * 扩展字段 + */ + data?: Array | null; + /** + * 总数 + */ + total?: number; +}; + +/** + * 开放接口请求入参,所有外部接口请求参数 + */ +export type OpenApiRequest = { + /** + * 用于计算签名字符的随机串 + */ + nonce?: (string) | null; + /** + * 加密签名,用以校验推送客户端身份合法性,校验方法见实例验证 + */ + signature?: (string) | null; + /** + * 签名有效期(毫秒) + */ + timestamp?: number; + /** + * 消息内容,JSON字符串,具体的设备相关信息 + */ + msg?: (string) | null; +}; + /** * 打开类型 */ @@ -3993,11 +4382,52 @@ export type ResetTwoFactorInput = { userId?: string; }; +/** + * 响应结果枚举 + */ +export type ResponeResultEnum = 0 | 1 | 2 | 3 | 4 | 5 | 6 | 200 | 201 | 400 | 401 | 403 | 404 | 500 | 503 | 504 | -102 | -101; + export type ReturnValueApiDescriptionModel = { type?: (string) | null; typeSimple?: (string) | null; }; +/** + * 下拉框选项元素 + */ +export type SelectResult = { + /** + * 下拉框 键 + */ + key?: (string) | null; + /** + * 下拉框 值 + */ + value?: (string) | null; + /** + * 下拉框 值2 + */ + secondValue?: (string) | null; + /** + * 下拉框 值3 + */ + thirdValue?: unknown; +}; + +/** + * 获取下拉框数据 + */ +export type SelectResultListInput = { + /** + * 类型名称 + */ + typeName: string; + /** + * 第三级类型 + */ + thirdAttributeTypeName?: (string) | null; +}; + export type SendBroadCastMessageInput = { /** * 消息标题 @@ -4425,6 +4855,29 @@ export type PostAuditLogsPageResponse = (PagingAuditLogOutputPagedResultDto); export type PostAuditLogsPageError = (RemoteServiceErrorResponse); +export type PostAggregationBusinessReceiveCommandInfoAsyncData = { + query?: { + /** + * 开放接口请求入参,所有外部接口请求参数 + */ + input?: OpenApiRequest; + }; +}; + +export type PostAggregationBusinessReceiveCommandInfoAsyncResponse = (HttpDataResult); + +export type PostAggregationBusinessReceiveCommandInfoAsyncError = unknown; + +export type GetCommonGetSelectListData = { + query?: { + input?: SelectResultListInput; + }; +}; + +export type GetCommonGetSelectListResponse = (Array); + +export type GetCommonGetSelectListError = unknown; + export type PostCtWingAccountInsertAsyncData = { query?: { input?: CTWingAccountInsertInput; @@ -4465,6 +4918,29 @@ export type PostCtWingAccountListAsyncResponse = (CTWingAccountInfoDtoPagedResul export type PostCtWingAccountListAsyncError = unknown; +export type PostAggregationCtWingReceiveWorkshopProductionInfoAsyncData = { + query?: { + input?: OpenApiRequest; + }; +}; + +export type PostAggregationCtWingReceiveWorkshopProductionInfoAsyncResponse = (unknown); + +export type PostAggregationCtWingReceiveWorkshopProductionInfoAsyncError = unknown; + +export type PostAggregationCtWingGetProductListAsyncData = { + query?: { + /** + * 开放接口请求入参,所有外部接口请求参数 + */ + input?: OpenApiRequest; + }; +}; + +export type PostAggregationCtWingGetProductListAsyncResponse = (CTWingWorkshopProductListOutputListHttpDataResult); + +export type PostAggregationCtWingGetProductListAsyncError = unknown; + export type PostCtWingProductInsertAsyncData = { query?: { input?: CTWingPrivateProductInfoInsertInput; @@ -4617,6 +5093,46 @@ export type PostDataDictionaryUpdateResponse = (unknown); export type PostDataDictionaryUpdateError = (RemoteServiceErrorResponse); +export type PostAggregationDeviceCreateAsyncData = { + query?: { + input?: CreateDeviceAggregationInput; + }; +}; + +export type PostAggregationDeviceCreateAsyncResponse = (boolean); + +export type PostAggregationDeviceCreateAsyncError = unknown; + +export type PostAggregationDeviceDeleteAsyncData = { + query?: { + input?: IdInput; + }; +}; + +export type PostAggregationDeviceDeleteAsyncResponse = (boolean); + +export type PostAggregationDeviceDeleteAsyncError = unknown; + +export type PostAggregationDeviceFindByIdAsyncData = { + query?: { + input?: IdInput; + }; +}; + +export type PostAggregationDeviceFindByIdAsyncResponse = (DeviceManagementInfoDto); + +export type PostAggregationDeviceFindByIdAsyncError = unknown; + +export type PostAggregationDeviceRepushDeviceInfoToIoTplatformData = { + query?: { + input?: IdInput; + }; +}; + +export type PostAggregationDeviceRepushDeviceInfoToIoTplatformResponse = (DeviceManagementInfoDto); + +export type PostAggregationDeviceRepushDeviceInfoToIoTplatformError = unknown; + export type PostDeviceInfoFindByDeviceAddressData = { query?: { deviceAddress?: string; @@ -4957,6 +5473,29 @@ export type PostOneNetAccountListAsyncResponse = (OneNETAccountInfoDtoPagedResul export type PostOneNetAccountListAsyncError = unknown; +export type PostAggregationOneNetReceiveWorkshopProductionInfoAsyncData = { + query?: { + input?: OpenApiRequest; + }; +}; + +export type PostAggregationOneNetReceiveWorkshopProductionInfoAsyncResponse = (unknown); + +export type PostAggregationOneNetReceiveWorkshopProductionInfoAsyncError = unknown; + +export type PostAggregationOneNetGetProductListAsyncData = { + query?: { + /** + * 开放接口请求入参,所有外部接口请求参数 + */ + input?: OpenApiRequest; + }; +}; + +export type PostAggregationOneNetGetProductListAsyncResponse = (OneNetWorkshopProductListOutputListHttpDataResult); + +export type PostAggregationOneNetGetProductListAsyncError = unknown; + export type PostOneNetProductInsertAsyncData = { query?: { input?: OneNetProductInfoInsertInput;