@djvlc/openapi-user-client 1.8.1 → 1.8.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +2317 -817
- package/dist/index.d.ts +2317 -817
- package/dist/index.js +1628 -508
- package/dist/index.mjs +1548 -508
- package/openapi/dist/user-api.yaml +185 -75
- package/openapi/src/paths/actions.yaml +18 -3
- package/openapi/src/paths/activities.yaml +56 -16
- package/openapi/src/paths/health.yaml +18 -3
- package/openapi/src/paths/pages.yaml +18 -3
- package/openapi/src/paths/queries.yaml +21 -6
- package/openapi/src/paths/tenant.yaml +12 -2
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -542,79 +542,6 @@ declare function ActivityStatusResponseFromJSON(json: any): ActivityStatusRespon
|
|
|
542
542
|
declare function ActivityStatusResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ActivityStatusResponse;
|
|
543
543
|
declare function ActivityStatusResponseToJSON(value?: ActivityStatusResponse | null): any;
|
|
544
544
|
|
|
545
|
-
/**
|
|
546
|
-
* 平台用户端 API
|
|
547
|
-
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
548
|
-
*
|
|
549
|
-
* The version of the OpenAPI document: 1.0.0
|
|
550
|
-
* Contact: dev@djvlc.com
|
|
551
|
-
*
|
|
552
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
553
|
-
* https://openapi-generator.tech
|
|
554
|
-
* Do not edit the class manually.
|
|
555
|
-
*/
|
|
556
|
-
/**
|
|
557
|
-
* 批量查询项(DataQueryBatchItemDto)
|
|
558
|
-
* @export
|
|
559
|
-
* @interface BatchQueryItemRequest
|
|
560
|
-
*/
|
|
561
|
-
interface BatchQueryItemRequest {
|
|
562
|
-
/**
|
|
563
|
-
* 查询版本 ID
|
|
564
|
-
* @type {string}
|
|
565
|
-
* @memberof BatchQueryItemRequest
|
|
566
|
-
*/
|
|
567
|
-
queryVersionId: string;
|
|
568
|
-
/**
|
|
569
|
-
* 查询参数
|
|
570
|
-
* @type {{ [key: string]: any; }}
|
|
571
|
-
* @memberof BatchQueryItemRequest
|
|
572
|
-
*/
|
|
573
|
-
params?: {
|
|
574
|
-
[key: string]: any;
|
|
575
|
-
};
|
|
576
|
-
}
|
|
577
|
-
/**
|
|
578
|
-
* Check if a given object implements the BatchQueryItemRequest interface.
|
|
579
|
-
*/
|
|
580
|
-
declare function instanceOfBatchQueryItemRequest(value: object): boolean;
|
|
581
|
-
declare function BatchQueryItemRequestFromJSON(json: any): BatchQueryItemRequest;
|
|
582
|
-
declare function BatchQueryItemRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): BatchQueryItemRequest;
|
|
583
|
-
declare function BatchQueryItemRequestToJSON(value?: BatchQueryItemRequest | null): any;
|
|
584
|
-
|
|
585
|
-
/**
|
|
586
|
-
* 平台用户端 API
|
|
587
|
-
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
588
|
-
*
|
|
589
|
-
* The version of the OpenAPI document: 1.0.0
|
|
590
|
-
* Contact: dev@djvlc.com
|
|
591
|
-
*
|
|
592
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
593
|
-
* https://openapi-generator.tech
|
|
594
|
-
* Do not edit the class manually.
|
|
595
|
-
*/
|
|
596
|
-
|
|
597
|
-
/**
|
|
598
|
-
* 批量查询请求(DataQueryBatchDto)
|
|
599
|
-
* @export
|
|
600
|
-
* @interface BatchQueryRequest
|
|
601
|
-
*/
|
|
602
|
-
interface BatchQueryRequest {
|
|
603
|
-
/**
|
|
604
|
-
* 查询列表
|
|
605
|
-
* @type {Array<BatchQueryItemRequest>}
|
|
606
|
-
* @memberof BatchQueryRequest
|
|
607
|
-
*/
|
|
608
|
-
queries: Array<BatchQueryItemRequest>;
|
|
609
|
-
}
|
|
610
|
-
/**
|
|
611
|
-
* Check if a given object implements the BatchQueryRequest interface.
|
|
612
|
-
*/
|
|
613
|
-
declare function instanceOfBatchQueryRequest(value: object): boolean;
|
|
614
|
-
declare function BatchQueryRequestFromJSON(json: any): BatchQueryRequest;
|
|
615
|
-
declare function BatchQueryRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): BatchQueryRequest;
|
|
616
|
-
declare function BatchQueryRequestToJSON(value?: BatchQueryRequest | null): any;
|
|
617
|
-
|
|
618
545
|
/**
|
|
619
546
|
* 平台用户端 API
|
|
620
547
|
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
@@ -745,6 +672,154 @@ declare function BatchQueryResponseFromJSON(json: any): BatchQueryResponse;
|
|
|
745
672
|
declare function BatchQueryResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): BatchQueryResponse;
|
|
746
673
|
declare function BatchQueryResponseToJSON(value?: BatchQueryResponse | null): any;
|
|
747
674
|
|
|
675
|
+
/**
|
|
676
|
+
* 平台用户端 API
|
|
677
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
678
|
+
*
|
|
679
|
+
* The version of the OpenAPI document: 1.0.0
|
|
680
|
+
* Contact: dev@djvlc.com
|
|
681
|
+
*
|
|
682
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
683
|
+
* https://openapi-generator.tech
|
|
684
|
+
* Do not edit the class manually.
|
|
685
|
+
*/
|
|
686
|
+
|
|
687
|
+
/**
|
|
688
|
+
*
|
|
689
|
+
* @export
|
|
690
|
+
* @interface BatchQueryData200Response
|
|
691
|
+
*/
|
|
692
|
+
interface BatchQueryData200Response {
|
|
693
|
+
/**
|
|
694
|
+
* 请求是否成功
|
|
695
|
+
* @type {boolean}
|
|
696
|
+
* @memberof BatchQueryData200Response
|
|
697
|
+
*/
|
|
698
|
+
success: boolean;
|
|
699
|
+
/**
|
|
700
|
+
* 业务状态码
|
|
701
|
+
* @type {string}
|
|
702
|
+
* @memberof BatchQueryData200Response
|
|
703
|
+
*/
|
|
704
|
+
code: string;
|
|
705
|
+
/**
|
|
706
|
+
* 响应消息
|
|
707
|
+
* @type {string}
|
|
708
|
+
* @memberof BatchQueryData200Response
|
|
709
|
+
*/
|
|
710
|
+
message: string;
|
|
711
|
+
/**
|
|
712
|
+
*
|
|
713
|
+
* @type {BatchQueryResponse}
|
|
714
|
+
* @memberof BatchQueryData200Response
|
|
715
|
+
*/
|
|
716
|
+
data: BatchQueryResponse;
|
|
717
|
+
/**
|
|
718
|
+
* 响应时间戳
|
|
719
|
+
* @type {number}
|
|
720
|
+
* @memberof BatchQueryData200Response
|
|
721
|
+
*/
|
|
722
|
+
timestamp: number;
|
|
723
|
+
/**
|
|
724
|
+
* 请求路径
|
|
725
|
+
* @type {string}
|
|
726
|
+
* @memberof BatchQueryData200Response
|
|
727
|
+
*/
|
|
728
|
+
path: string;
|
|
729
|
+
/**
|
|
730
|
+
* 请求ID
|
|
731
|
+
* @type {string}
|
|
732
|
+
* @memberof BatchQueryData200Response
|
|
733
|
+
*/
|
|
734
|
+
requestId?: string;
|
|
735
|
+
/**
|
|
736
|
+
* 链路追踪ID(用于全链路定位问题)
|
|
737
|
+
* @type {string}
|
|
738
|
+
* @memberof BatchQueryData200Response
|
|
739
|
+
*/
|
|
740
|
+
traceId?: string;
|
|
741
|
+
}
|
|
742
|
+
/**
|
|
743
|
+
* Check if a given object implements the BatchQueryData200Response interface.
|
|
744
|
+
*/
|
|
745
|
+
declare function instanceOfBatchQueryData200Response(value: object): boolean;
|
|
746
|
+
declare function BatchQueryData200ResponseFromJSON(json: any): BatchQueryData200Response;
|
|
747
|
+
declare function BatchQueryData200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): BatchQueryData200Response;
|
|
748
|
+
declare function BatchQueryData200ResponseToJSON(value?: BatchQueryData200Response | null): any;
|
|
749
|
+
|
|
750
|
+
/**
|
|
751
|
+
* 平台用户端 API
|
|
752
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
753
|
+
*
|
|
754
|
+
* The version of the OpenAPI document: 1.0.0
|
|
755
|
+
* Contact: dev@djvlc.com
|
|
756
|
+
*
|
|
757
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
758
|
+
* https://openapi-generator.tech
|
|
759
|
+
* Do not edit the class manually.
|
|
760
|
+
*/
|
|
761
|
+
/**
|
|
762
|
+
* 批量查询项(DataQueryBatchItemDto)
|
|
763
|
+
* @export
|
|
764
|
+
* @interface BatchQueryItemRequest
|
|
765
|
+
*/
|
|
766
|
+
interface BatchQueryItemRequest {
|
|
767
|
+
/**
|
|
768
|
+
* 查询版本 ID
|
|
769
|
+
* @type {string}
|
|
770
|
+
* @memberof BatchQueryItemRequest
|
|
771
|
+
*/
|
|
772
|
+
queryVersionId: string;
|
|
773
|
+
/**
|
|
774
|
+
* 查询参数
|
|
775
|
+
* @type {{ [key: string]: any; }}
|
|
776
|
+
* @memberof BatchQueryItemRequest
|
|
777
|
+
*/
|
|
778
|
+
params?: {
|
|
779
|
+
[key: string]: any;
|
|
780
|
+
};
|
|
781
|
+
}
|
|
782
|
+
/**
|
|
783
|
+
* Check if a given object implements the BatchQueryItemRequest interface.
|
|
784
|
+
*/
|
|
785
|
+
declare function instanceOfBatchQueryItemRequest(value: object): boolean;
|
|
786
|
+
declare function BatchQueryItemRequestFromJSON(json: any): BatchQueryItemRequest;
|
|
787
|
+
declare function BatchQueryItemRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): BatchQueryItemRequest;
|
|
788
|
+
declare function BatchQueryItemRequestToJSON(value?: BatchQueryItemRequest | null): any;
|
|
789
|
+
|
|
790
|
+
/**
|
|
791
|
+
* 平台用户端 API
|
|
792
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
793
|
+
*
|
|
794
|
+
* The version of the OpenAPI document: 1.0.0
|
|
795
|
+
* Contact: dev@djvlc.com
|
|
796
|
+
*
|
|
797
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
798
|
+
* https://openapi-generator.tech
|
|
799
|
+
* Do not edit the class manually.
|
|
800
|
+
*/
|
|
801
|
+
|
|
802
|
+
/**
|
|
803
|
+
* 批量查询请求(DataQueryBatchDto)
|
|
804
|
+
* @export
|
|
805
|
+
* @interface BatchQueryRequest
|
|
806
|
+
*/
|
|
807
|
+
interface BatchQueryRequest {
|
|
808
|
+
/**
|
|
809
|
+
* 查询列表
|
|
810
|
+
* @type {Array<BatchQueryItemRequest>}
|
|
811
|
+
* @memberof BatchQueryRequest
|
|
812
|
+
*/
|
|
813
|
+
queries: Array<BatchQueryItemRequest>;
|
|
814
|
+
}
|
|
815
|
+
/**
|
|
816
|
+
* Check if a given object implements the BatchQueryRequest interface.
|
|
817
|
+
*/
|
|
818
|
+
declare function instanceOfBatchQueryRequest(value: object): boolean;
|
|
819
|
+
declare function BatchQueryRequestFromJSON(json: any): BatchQueryRequest;
|
|
820
|
+
declare function BatchQueryRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): BatchQueryRequest;
|
|
821
|
+
declare function BatchQueryRequestToJSON(value?: BatchQueryRequest | null): any;
|
|
822
|
+
|
|
748
823
|
/**
|
|
749
824
|
* 平台用户端 API
|
|
750
825
|
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
@@ -1027,53 +1102,90 @@ declare function ErrorResponseToJSON(value?: ErrorResponse | null): any;
|
|
|
1027
1102
|
* https://openapi-generator.tech
|
|
1028
1103
|
* Do not edit the class manually.
|
|
1029
1104
|
*/
|
|
1030
|
-
|
|
1031
1105
|
/**
|
|
1032
|
-
*
|
|
1106
|
+
* 动作执行响应(ActionExecuteVo)
|
|
1033
1107
|
* @export
|
|
1034
|
-
* @interface
|
|
1108
|
+
* @interface ExecuteActionResponse
|
|
1035
1109
|
*/
|
|
1036
|
-
interface
|
|
1110
|
+
interface ExecuteActionResponse {
|
|
1037
1111
|
/**
|
|
1038
|
-
*
|
|
1112
|
+
* 是否成功
|
|
1113
|
+
* @type {boolean}
|
|
1114
|
+
* @memberof ExecuteActionResponse
|
|
1115
|
+
*/
|
|
1116
|
+
success: boolean;
|
|
1117
|
+
/**
|
|
1118
|
+
* 业务数据
|
|
1119
|
+
* @type {{ [key: string]: any; }}
|
|
1120
|
+
* @memberof ExecuteActionResponse
|
|
1121
|
+
*/
|
|
1122
|
+
data?: {
|
|
1123
|
+
[key: string]: any;
|
|
1124
|
+
};
|
|
1125
|
+
/**
|
|
1126
|
+
* 错误码
|
|
1039
1127
|
* @type {string}
|
|
1040
|
-
* @memberof
|
|
1128
|
+
* @memberof ExecuteActionResponse
|
|
1041
1129
|
*/
|
|
1042
|
-
|
|
1130
|
+
errorCode?: string;
|
|
1043
1131
|
/**
|
|
1044
|
-
*
|
|
1132
|
+
* 错误信息(用户可见)
|
|
1045
1133
|
* @type {string}
|
|
1046
|
-
* @memberof
|
|
1134
|
+
* @memberof ExecuteActionResponse
|
|
1047
1135
|
*/
|
|
1048
|
-
|
|
1136
|
+
errorMessage?: string;
|
|
1049
1137
|
/**
|
|
1050
|
-
*
|
|
1138
|
+
* 错误详情(调试用)
|
|
1051
1139
|
* @type {{ [key: string]: any; }}
|
|
1052
|
-
* @memberof
|
|
1140
|
+
* @memberof ExecuteActionResponse
|
|
1053
1141
|
*/
|
|
1054
|
-
|
|
1142
|
+
errorDetails?: {
|
|
1055
1143
|
[key: string]: any;
|
|
1056
1144
|
};
|
|
1057
1145
|
/**
|
|
1058
|
-
*
|
|
1146
|
+
* 请求 ID
|
|
1059
1147
|
* @type {string}
|
|
1060
|
-
* @memberof
|
|
1148
|
+
* @memberof ExecuteActionResponse
|
|
1061
1149
|
*/
|
|
1062
|
-
|
|
1150
|
+
requestId: string;
|
|
1063
1151
|
/**
|
|
1064
|
-
*
|
|
1065
|
-
* @type {
|
|
1066
|
-
* @memberof
|
|
1152
|
+
* 链路追踪 ID
|
|
1153
|
+
* @type {string}
|
|
1154
|
+
* @memberof ExecuteActionResponse
|
|
1067
1155
|
*/
|
|
1068
|
-
|
|
1156
|
+
traceId: string;
|
|
1157
|
+
/**
|
|
1158
|
+
* 动作 ID(用于审计追溯)
|
|
1159
|
+
* @type {string}
|
|
1160
|
+
* @memberof ExecuteActionResponse
|
|
1161
|
+
*/
|
|
1162
|
+
actionId: string;
|
|
1163
|
+
/**
|
|
1164
|
+
* 执行耗时(毫秒)
|
|
1165
|
+
* @type {number}
|
|
1166
|
+
* @memberof ExecuteActionResponse
|
|
1167
|
+
*/
|
|
1168
|
+
duration: number;
|
|
1169
|
+
/**
|
|
1170
|
+
* 是否可重试
|
|
1171
|
+
* @type {boolean}
|
|
1172
|
+
* @memberof ExecuteActionResponse
|
|
1173
|
+
*/
|
|
1174
|
+
retryable?: boolean;
|
|
1175
|
+
/**
|
|
1176
|
+
* 建议重试延迟(毫秒)
|
|
1177
|
+
* @type {number}
|
|
1178
|
+
* @memberof ExecuteActionResponse
|
|
1179
|
+
*/
|
|
1180
|
+
retryAfter?: number;
|
|
1069
1181
|
}
|
|
1070
1182
|
/**
|
|
1071
|
-
* Check if a given object implements the
|
|
1183
|
+
* Check if a given object implements the ExecuteActionResponse interface.
|
|
1072
1184
|
*/
|
|
1073
|
-
declare function
|
|
1074
|
-
declare function
|
|
1075
|
-
declare function
|
|
1076
|
-
declare function
|
|
1185
|
+
declare function instanceOfExecuteActionResponse(value: object): boolean;
|
|
1186
|
+
declare function ExecuteActionResponseFromJSON(json: any): ExecuteActionResponse;
|
|
1187
|
+
declare function ExecuteActionResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExecuteActionResponse;
|
|
1188
|
+
declare function ExecuteActionResponseToJSON(value?: ExecuteActionResponse | null): any;
|
|
1077
1189
|
|
|
1078
1190
|
/**
|
|
1079
1191
|
* 平台用户端 API
|
|
@@ -1086,90 +1198,203 @@ declare function ExecuteActionRequestToJSON(value?: ExecuteActionRequest | null)
|
|
|
1086
1198
|
* https://openapi-generator.tech
|
|
1087
1199
|
* Do not edit the class manually.
|
|
1088
1200
|
*/
|
|
1201
|
+
|
|
1089
1202
|
/**
|
|
1090
|
-
*
|
|
1203
|
+
*
|
|
1091
1204
|
* @export
|
|
1092
|
-
* @interface
|
|
1205
|
+
* @interface ExecuteAction200Response
|
|
1093
1206
|
*/
|
|
1094
|
-
interface
|
|
1207
|
+
interface ExecuteAction200Response {
|
|
1095
1208
|
/**
|
|
1096
|
-
*
|
|
1209
|
+
* 请求是否成功
|
|
1097
1210
|
* @type {boolean}
|
|
1098
|
-
* @memberof
|
|
1211
|
+
* @memberof ExecuteAction200Response
|
|
1099
1212
|
*/
|
|
1100
1213
|
success: boolean;
|
|
1101
1214
|
/**
|
|
1102
|
-
*
|
|
1103
|
-
* @type {
|
|
1104
|
-
* @memberof
|
|
1215
|
+
* 业务状态码
|
|
1216
|
+
* @type {string}
|
|
1217
|
+
* @memberof ExecuteAction200Response
|
|
1105
1218
|
*/
|
|
1106
|
-
|
|
1107
|
-
[key: string]: any;
|
|
1108
|
-
};
|
|
1219
|
+
code: string;
|
|
1109
1220
|
/**
|
|
1110
|
-
*
|
|
1221
|
+
* 响应消息
|
|
1111
1222
|
* @type {string}
|
|
1112
|
-
* @memberof
|
|
1223
|
+
* @memberof ExecuteAction200Response
|
|
1113
1224
|
*/
|
|
1114
|
-
|
|
1225
|
+
message: string;
|
|
1115
1226
|
/**
|
|
1116
|
-
*
|
|
1227
|
+
*
|
|
1228
|
+
* @type {ExecuteActionResponse}
|
|
1229
|
+
* @memberof ExecuteAction200Response
|
|
1230
|
+
*/
|
|
1231
|
+
data: ExecuteActionResponse;
|
|
1232
|
+
/**
|
|
1233
|
+
* 响应时间戳
|
|
1234
|
+
* @type {number}
|
|
1235
|
+
* @memberof ExecuteAction200Response
|
|
1236
|
+
*/
|
|
1237
|
+
timestamp: number;
|
|
1238
|
+
/**
|
|
1239
|
+
* 请求路径
|
|
1117
1240
|
* @type {string}
|
|
1118
|
-
* @memberof
|
|
1241
|
+
* @memberof ExecuteAction200Response
|
|
1119
1242
|
*/
|
|
1120
|
-
|
|
1243
|
+
path: string;
|
|
1121
1244
|
/**
|
|
1122
|
-
*
|
|
1245
|
+
* 请求ID
|
|
1246
|
+
* @type {string}
|
|
1247
|
+
* @memberof ExecuteAction200Response
|
|
1248
|
+
*/
|
|
1249
|
+
requestId?: string;
|
|
1250
|
+
/**
|
|
1251
|
+
* 链路追踪ID(用于全链路定位问题)
|
|
1252
|
+
* @type {string}
|
|
1253
|
+
* @memberof ExecuteAction200Response
|
|
1254
|
+
*/
|
|
1255
|
+
traceId?: string;
|
|
1256
|
+
}
|
|
1257
|
+
/**
|
|
1258
|
+
* Check if a given object implements the ExecuteAction200Response interface.
|
|
1259
|
+
*/
|
|
1260
|
+
declare function instanceOfExecuteAction200Response(value: object): boolean;
|
|
1261
|
+
declare function ExecuteAction200ResponseFromJSON(json: any): ExecuteAction200Response;
|
|
1262
|
+
declare function ExecuteAction200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExecuteAction200Response;
|
|
1263
|
+
declare function ExecuteAction200ResponseToJSON(value?: ExecuteAction200Response | null): any;
|
|
1264
|
+
|
|
1265
|
+
/**
|
|
1266
|
+
* 平台用户端 API
|
|
1267
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
1268
|
+
*
|
|
1269
|
+
* The version of the OpenAPI document: 1.0.0
|
|
1270
|
+
* Contact: dev@djvlc.com
|
|
1271
|
+
*
|
|
1272
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1273
|
+
* https://openapi-generator.tech
|
|
1274
|
+
* Do not edit the class manually.
|
|
1275
|
+
*/
|
|
1276
|
+
|
|
1277
|
+
/**
|
|
1278
|
+
* 动作执行请求(ActionExecuteDto)
|
|
1279
|
+
* @export
|
|
1280
|
+
* @interface ExecuteActionRequest
|
|
1281
|
+
*/
|
|
1282
|
+
interface ExecuteActionRequest {
|
|
1283
|
+
/**
|
|
1284
|
+
* 动作类型
|
|
1285
|
+
* @type {string}
|
|
1286
|
+
* @memberof ExecuteActionRequest
|
|
1287
|
+
*/
|
|
1288
|
+
actionType: string;
|
|
1289
|
+
/**
|
|
1290
|
+
* 动作定义版本 ID(不提供则使用最新稳定版)
|
|
1291
|
+
* @type {string}
|
|
1292
|
+
* @memberof ExecuteActionRequest
|
|
1293
|
+
*/
|
|
1294
|
+
actionDefinitionVersionId?: string;
|
|
1295
|
+
/**
|
|
1296
|
+
* 动作参数
|
|
1123
1297
|
* @type {{ [key: string]: any; }}
|
|
1124
|
-
* @memberof
|
|
1298
|
+
* @memberof ExecuteActionRequest
|
|
1125
1299
|
*/
|
|
1126
|
-
|
|
1300
|
+
params: {
|
|
1127
1301
|
[key: string]: any;
|
|
1128
1302
|
};
|
|
1129
1303
|
/**
|
|
1130
|
-
*
|
|
1304
|
+
* 幂等键
|
|
1131
1305
|
* @type {string}
|
|
1132
|
-
* @memberof
|
|
1306
|
+
* @memberof ExecuteActionRequest
|
|
1133
1307
|
*/
|
|
1134
|
-
|
|
1308
|
+
idempotencyKey?: string;
|
|
1135
1309
|
/**
|
|
1136
|
-
*
|
|
1310
|
+
*
|
|
1311
|
+
* @type {ActionClientContext}
|
|
1312
|
+
* @memberof ExecuteActionRequest
|
|
1313
|
+
*/
|
|
1314
|
+
context: ActionClientContext;
|
|
1315
|
+
}
|
|
1316
|
+
/**
|
|
1317
|
+
* Check if a given object implements the ExecuteActionRequest interface.
|
|
1318
|
+
*/
|
|
1319
|
+
declare function instanceOfExecuteActionRequest(value: object): boolean;
|
|
1320
|
+
declare function ExecuteActionRequestFromJSON(json: any): ExecuteActionRequest;
|
|
1321
|
+
declare function ExecuteActionRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExecuteActionRequest;
|
|
1322
|
+
declare function ExecuteActionRequestToJSON(value?: ExecuteActionRequest | null): any;
|
|
1323
|
+
|
|
1324
|
+
/**
|
|
1325
|
+
* 平台用户端 API
|
|
1326
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
1327
|
+
*
|
|
1328
|
+
* The version of the OpenAPI document: 1.0.0
|
|
1329
|
+
* Contact: dev@djvlc.com
|
|
1330
|
+
*
|
|
1331
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1332
|
+
* https://openapi-generator.tech
|
|
1333
|
+
* Do not edit the class manually.
|
|
1334
|
+
*/
|
|
1335
|
+
|
|
1336
|
+
/**
|
|
1337
|
+
*
|
|
1338
|
+
* @export
|
|
1339
|
+
* @interface GetActionDefinition200Response
|
|
1340
|
+
*/
|
|
1341
|
+
interface GetActionDefinition200Response {
|
|
1342
|
+
/**
|
|
1343
|
+
* 请求是否成功
|
|
1344
|
+
* @type {boolean}
|
|
1345
|
+
* @memberof GetActionDefinition200Response
|
|
1346
|
+
*/
|
|
1347
|
+
success: boolean;
|
|
1348
|
+
/**
|
|
1349
|
+
* 业务状态码
|
|
1137
1350
|
* @type {string}
|
|
1138
|
-
* @memberof
|
|
1351
|
+
* @memberof GetActionDefinition200Response
|
|
1139
1352
|
*/
|
|
1140
|
-
|
|
1353
|
+
code: string;
|
|
1141
1354
|
/**
|
|
1142
|
-
*
|
|
1355
|
+
* 响应消息
|
|
1143
1356
|
* @type {string}
|
|
1144
|
-
* @memberof
|
|
1357
|
+
* @memberof GetActionDefinition200Response
|
|
1145
1358
|
*/
|
|
1146
|
-
|
|
1359
|
+
message: string;
|
|
1147
1360
|
/**
|
|
1148
|
-
*
|
|
1361
|
+
*
|
|
1362
|
+
* @type {ActionDefinitionVersionResponse}
|
|
1363
|
+
* @memberof GetActionDefinition200Response
|
|
1364
|
+
*/
|
|
1365
|
+
data: ActionDefinitionVersionResponse;
|
|
1366
|
+
/**
|
|
1367
|
+
* 响应时间戳
|
|
1149
1368
|
* @type {number}
|
|
1150
|
-
* @memberof
|
|
1369
|
+
* @memberof GetActionDefinition200Response
|
|
1151
1370
|
*/
|
|
1152
|
-
|
|
1371
|
+
timestamp: number;
|
|
1153
1372
|
/**
|
|
1154
|
-
*
|
|
1155
|
-
* @type {
|
|
1156
|
-
* @memberof
|
|
1373
|
+
* 请求路径
|
|
1374
|
+
* @type {string}
|
|
1375
|
+
* @memberof GetActionDefinition200Response
|
|
1157
1376
|
*/
|
|
1158
|
-
|
|
1377
|
+
path: string;
|
|
1159
1378
|
/**
|
|
1160
|
-
*
|
|
1161
|
-
* @type {
|
|
1162
|
-
* @memberof
|
|
1379
|
+
* 请求ID
|
|
1380
|
+
* @type {string}
|
|
1381
|
+
* @memberof GetActionDefinition200Response
|
|
1163
1382
|
*/
|
|
1164
|
-
|
|
1383
|
+
requestId?: string;
|
|
1384
|
+
/**
|
|
1385
|
+
* 链路追踪ID(用于全链路定位问题)
|
|
1386
|
+
* @type {string}
|
|
1387
|
+
* @memberof GetActionDefinition200Response
|
|
1388
|
+
*/
|
|
1389
|
+
traceId?: string;
|
|
1165
1390
|
}
|
|
1166
1391
|
/**
|
|
1167
|
-
* Check if a given object implements the
|
|
1392
|
+
* Check if a given object implements the GetActionDefinition200Response interface.
|
|
1168
1393
|
*/
|
|
1169
|
-
declare function
|
|
1170
|
-
declare function
|
|
1171
|
-
declare function
|
|
1172
|
-
declare function
|
|
1394
|
+
declare function instanceOfGetActionDefinition200Response(value: object): boolean;
|
|
1395
|
+
declare function GetActionDefinition200ResponseFromJSON(json: any): GetActionDefinition200Response;
|
|
1396
|
+
declare function GetActionDefinition200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetActionDefinition200Response;
|
|
1397
|
+
declare function GetActionDefinition200ResponseToJSON(value?: GetActionDefinition200Response | null): any;
|
|
1173
1398
|
|
|
1174
1399
|
/**
|
|
1175
1400
|
* 平台用户端 API
|
|
@@ -1182,32 +1407,69 @@ declare function ExecuteActionResponseToJSON(value?: ExecuteActionResponse | nul
|
|
|
1182
1407
|
* https://openapi-generator.tech
|
|
1183
1408
|
* Do not edit the class manually.
|
|
1184
1409
|
*/
|
|
1410
|
+
|
|
1185
1411
|
/**
|
|
1186
|
-
*
|
|
1412
|
+
*
|
|
1187
1413
|
* @export
|
|
1188
|
-
* @interface
|
|
1414
|
+
* @interface GetActivityInfo200Response
|
|
1189
1415
|
*/
|
|
1190
|
-
interface
|
|
1416
|
+
interface GetActivityInfo200Response {
|
|
1191
1417
|
/**
|
|
1192
|
-
*
|
|
1418
|
+
* 请求是否成功
|
|
1419
|
+
* @type {boolean}
|
|
1420
|
+
* @memberof GetActivityInfo200Response
|
|
1421
|
+
*/
|
|
1422
|
+
success: boolean;
|
|
1423
|
+
/**
|
|
1424
|
+
* 业务状态码
|
|
1193
1425
|
* @type {string}
|
|
1194
|
-
* @memberof
|
|
1426
|
+
* @memberof GetActivityInfo200Response
|
|
1195
1427
|
*/
|
|
1196
|
-
|
|
1428
|
+
code: string;
|
|
1197
1429
|
/**
|
|
1198
|
-
*
|
|
1430
|
+
* 响应消息
|
|
1199
1431
|
* @type {string}
|
|
1200
|
-
* @memberof
|
|
1432
|
+
* @memberof GetActivityInfo200Response
|
|
1201
1433
|
*/
|
|
1202
|
-
message
|
|
1434
|
+
message: string;
|
|
1435
|
+
/**
|
|
1436
|
+
*
|
|
1437
|
+
* @type {ActivityInfoResponse}
|
|
1438
|
+
* @memberof GetActivityInfo200Response
|
|
1439
|
+
*/
|
|
1440
|
+
data: ActivityInfoResponse;
|
|
1441
|
+
/**
|
|
1442
|
+
* 响应时间戳
|
|
1443
|
+
* @type {number}
|
|
1444
|
+
* @memberof GetActivityInfo200Response
|
|
1445
|
+
*/
|
|
1446
|
+
timestamp: number;
|
|
1447
|
+
/**
|
|
1448
|
+
* 请求路径
|
|
1449
|
+
* @type {string}
|
|
1450
|
+
* @memberof GetActivityInfo200Response
|
|
1451
|
+
*/
|
|
1452
|
+
path: string;
|
|
1453
|
+
/**
|
|
1454
|
+
* 请求ID
|
|
1455
|
+
* @type {string}
|
|
1456
|
+
* @memberof GetActivityInfo200Response
|
|
1457
|
+
*/
|
|
1458
|
+
requestId?: string;
|
|
1459
|
+
/**
|
|
1460
|
+
* 链路追踪ID(用于全链路定位问题)
|
|
1461
|
+
* @type {string}
|
|
1462
|
+
* @memberof GetActivityInfo200Response
|
|
1463
|
+
*/
|
|
1464
|
+
traceId?: string;
|
|
1203
1465
|
}
|
|
1204
1466
|
/**
|
|
1205
|
-
* Check if a given object implements the
|
|
1467
|
+
* Check if a given object implements the GetActivityInfo200Response interface.
|
|
1206
1468
|
*/
|
|
1207
|
-
declare function
|
|
1208
|
-
declare function
|
|
1209
|
-
declare function
|
|
1210
|
-
declare function
|
|
1469
|
+
declare function instanceOfGetActivityInfo200Response(value: object): boolean;
|
|
1470
|
+
declare function GetActivityInfo200ResponseFromJSON(json: any): GetActivityInfo200Response;
|
|
1471
|
+
declare function GetActivityInfo200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetActivityInfo200Response;
|
|
1472
|
+
declare function GetActivityInfo200ResponseToJSON(value?: GetActivityInfo200Response | null): any;
|
|
1211
1473
|
|
|
1212
1474
|
/**
|
|
1213
1475
|
* 平台用户端 API
|
|
@@ -1220,32 +1482,1256 @@ declare function HealthCheckItemToJSON(value?: HealthCheckItem | null): any;
|
|
|
1220
1482
|
* https://openapi-generator.tech
|
|
1221
1483
|
* Do not edit the class manually.
|
|
1222
1484
|
*/
|
|
1485
|
+
|
|
1223
1486
|
/**
|
|
1224
|
-
*
|
|
1487
|
+
*
|
|
1225
1488
|
* @export
|
|
1226
|
-
* @interface
|
|
1489
|
+
* @interface GetActivityState200Response
|
|
1227
1490
|
*/
|
|
1228
|
-
interface
|
|
1491
|
+
interface GetActivityState200Response {
|
|
1492
|
+
/**
|
|
1493
|
+
* 请求是否成功
|
|
1494
|
+
* @type {boolean}
|
|
1495
|
+
* @memberof GetActivityState200Response
|
|
1496
|
+
*/
|
|
1497
|
+
success: boolean;
|
|
1498
|
+
/**
|
|
1499
|
+
* 业务状态码
|
|
1500
|
+
* @type {string}
|
|
1501
|
+
* @memberof GetActivityState200Response
|
|
1502
|
+
*/
|
|
1503
|
+
code: string;
|
|
1504
|
+
/**
|
|
1505
|
+
* 响应消息
|
|
1506
|
+
* @type {string}
|
|
1507
|
+
* @memberof GetActivityState200Response
|
|
1508
|
+
*/
|
|
1509
|
+
message: string;
|
|
1510
|
+
/**
|
|
1511
|
+
*
|
|
1512
|
+
* @type {ActivityStatusResponse}
|
|
1513
|
+
* @memberof GetActivityState200Response
|
|
1514
|
+
*/
|
|
1515
|
+
data: ActivityStatusResponse;
|
|
1516
|
+
/**
|
|
1517
|
+
* 响应时间戳
|
|
1518
|
+
* @type {number}
|
|
1519
|
+
* @memberof GetActivityState200Response
|
|
1520
|
+
*/
|
|
1521
|
+
timestamp: number;
|
|
1522
|
+
/**
|
|
1523
|
+
* 请求路径
|
|
1524
|
+
* @type {string}
|
|
1525
|
+
* @memberof GetActivityState200Response
|
|
1526
|
+
*/
|
|
1527
|
+
path: string;
|
|
1528
|
+
/**
|
|
1529
|
+
* 请求ID
|
|
1530
|
+
* @type {string}
|
|
1531
|
+
* @memberof GetActivityState200Response
|
|
1532
|
+
*/
|
|
1533
|
+
requestId?: string;
|
|
1534
|
+
/**
|
|
1535
|
+
* 链路追踪ID(用于全链路定位问题)
|
|
1536
|
+
* @type {string}
|
|
1537
|
+
* @memberof GetActivityState200Response
|
|
1538
|
+
*/
|
|
1539
|
+
traceId?: string;
|
|
1540
|
+
}
|
|
1541
|
+
/**
|
|
1542
|
+
* Check if a given object implements the GetActivityState200Response interface.
|
|
1543
|
+
*/
|
|
1544
|
+
declare function instanceOfGetActivityState200Response(value: object): boolean;
|
|
1545
|
+
declare function GetActivityState200ResponseFromJSON(json: any): GetActivityState200Response;
|
|
1546
|
+
declare function GetActivityState200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetActivityState200Response;
|
|
1547
|
+
declare function GetActivityState200ResponseToJSON(value?: GetActivityState200Response | null): any;
|
|
1548
|
+
|
|
1549
|
+
/**
|
|
1550
|
+
* 平台用户端 API
|
|
1551
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
1552
|
+
*
|
|
1553
|
+
* The version of the OpenAPI document: 1.0.0
|
|
1554
|
+
* Contact: dev@djvlc.com
|
|
1555
|
+
*
|
|
1556
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1557
|
+
* https://openapi-generator.tech
|
|
1558
|
+
* Do not edit the class manually.
|
|
1559
|
+
*/
|
|
1560
|
+
|
|
1561
|
+
/**
|
|
1562
|
+
* 分页记录响应(PaginatedRecordsVo)
|
|
1563
|
+
* @export
|
|
1564
|
+
* @interface PaginatedRecordsResponse
|
|
1565
|
+
*/
|
|
1566
|
+
interface PaginatedRecordsResponse {
|
|
1567
|
+
/**
|
|
1568
|
+
* 是否成功
|
|
1569
|
+
* @type {boolean}
|
|
1570
|
+
* @memberof PaginatedRecordsResponse
|
|
1571
|
+
*/
|
|
1572
|
+
success: boolean;
|
|
1573
|
+
/**
|
|
1574
|
+
* 记录列表
|
|
1575
|
+
* @type {Array<object>}
|
|
1576
|
+
* @memberof PaginatedRecordsResponse
|
|
1577
|
+
*/
|
|
1578
|
+
data: Array<object>;
|
|
1579
|
+
/**
|
|
1580
|
+
*
|
|
1581
|
+
* @type {CursorPaginationMeta}
|
|
1582
|
+
* @memberof PaginatedRecordsResponse
|
|
1583
|
+
*/
|
|
1584
|
+
meta?: CursorPaginationMeta;
|
|
1585
|
+
}
|
|
1586
|
+
/**
|
|
1587
|
+
* Check if a given object implements the PaginatedRecordsResponse interface.
|
|
1588
|
+
*/
|
|
1589
|
+
declare function instanceOfPaginatedRecordsResponse(value: object): boolean;
|
|
1590
|
+
declare function PaginatedRecordsResponseFromJSON(json: any): PaginatedRecordsResponse;
|
|
1591
|
+
declare function PaginatedRecordsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedRecordsResponse;
|
|
1592
|
+
declare function PaginatedRecordsResponseToJSON(value?: PaginatedRecordsResponse | null): any;
|
|
1593
|
+
|
|
1594
|
+
/**
|
|
1595
|
+
* 平台用户端 API
|
|
1596
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
1597
|
+
*
|
|
1598
|
+
* The version of the OpenAPI document: 1.0.0
|
|
1599
|
+
* Contact: dev@djvlc.com
|
|
1600
|
+
*
|
|
1601
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1602
|
+
* https://openapi-generator.tech
|
|
1603
|
+
* Do not edit the class manually.
|
|
1604
|
+
*/
|
|
1605
|
+
|
|
1606
|
+
/**
|
|
1607
|
+
*
|
|
1608
|
+
* @export
|
|
1609
|
+
* @interface GetClaimRecords200Response
|
|
1610
|
+
*/
|
|
1611
|
+
interface GetClaimRecords200Response {
|
|
1612
|
+
/**
|
|
1613
|
+
* 请求是否成功
|
|
1614
|
+
* @type {boolean}
|
|
1615
|
+
* @memberof GetClaimRecords200Response
|
|
1616
|
+
*/
|
|
1617
|
+
success: boolean;
|
|
1618
|
+
/**
|
|
1619
|
+
* 业务状态码
|
|
1620
|
+
* @type {string}
|
|
1621
|
+
* @memberof GetClaimRecords200Response
|
|
1622
|
+
*/
|
|
1623
|
+
code: string;
|
|
1624
|
+
/**
|
|
1625
|
+
* 响应消息
|
|
1626
|
+
* @type {string}
|
|
1627
|
+
* @memberof GetClaimRecords200Response
|
|
1628
|
+
*/
|
|
1629
|
+
message: string;
|
|
1630
|
+
/**
|
|
1631
|
+
*
|
|
1632
|
+
* @type {PaginatedRecordsResponse}
|
|
1633
|
+
* @memberof GetClaimRecords200Response
|
|
1634
|
+
*/
|
|
1635
|
+
data: PaginatedRecordsResponse;
|
|
1636
|
+
/**
|
|
1637
|
+
* 响应时间戳
|
|
1638
|
+
* @type {number}
|
|
1639
|
+
* @memberof GetClaimRecords200Response
|
|
1640
|
+
*/
|
|
1641
|
+
timestamp: number;
|
|
1642
|
+
/**
|
|
1643
|
+
* 请求路径
|
|
1644
|
+
* @type {string}
|
|
1645
|
+
* @memberof GetClaimRecords200Response
|
|
1646
|
+
*/
|
|
1647
|
+
path: string;
|
|
1648
|
+
/**
|
|
1649
|
+
* 请求ID
|
|
1650
|
+
* @type {string}
|
|
1651
|
+
* @memberof GetClaimRecords200Response
|
|
1652
|
+
*/
|
|
1653
|
+
requestId?: string;
|
|
1654
|
+
/**
|
|
1655
|
+
* 链路追踪ID(用于全链路定位问题)
|
|
1656
|
+
* @type {string}
|
|
1657
|
+
* @memberof GetClaimRecords200Response
|
|
1658
|
+
*/
|
|
1659
|
+
traceId?: string;
|
|
1660
|
+
}
|
|
1661
|
+
/**
|
|
1662
|
+
* Check if a given object implements the GetClaimRecords200Response interface.
|
|
1663
|
+
*/
|
|
1664
|
+
declare function instanceOfGetClaimRecords200Response(value: object): boolean;
|
|
1665
|
+
declare function GetClaimRecords200ResponseFromJSON(json: any): GetClaimRecords200Response;
|
|
1666
|
+
declare function GetClaimRecords200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetClaimRecords200Response;
|
|
1667
|
+
declare function GetClaimRecords200ResponseToJSON(value?: GetClaimRecords200Response | null): any;
|
|
1668
|
+
|
|
1669
|
+
/**
|
|
1670
|
+
* 平台用户端 API
|
|
1671
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
1672
|
+
*
|
|
1673
|
+
* The version of the OpenAPI document: 1.0.0
|
|
1674
|
+
* Contact: dev@djvlc.com
|
|
1675
|
+
*
|
|
1676
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1677
|
+
* https://openapi-generator.tech
|
|
1678
|
+
* Do not edit the class manually.
|
|
1679
|
+
*/
|
|
1680
|
+
|
|
1681
|
+
/**
|
|
1682
|
+
*
|
|
1683
|
+
* @export
|
|
1684
|
+
* @interface GetClaimStatus200Response
|
|
1685
|
+
*/
|
|
1686
|
+
interface GetClaimStatus200Response {
|
|
1687
|
+
/**
|
|
1688
|
+
* 请求是否成功
|
|
1689
|
+
* @type {boolean}
|
|
1690
|
+
* @memberof GetClaimStatus200Response
|
|
1691
|
+
*/
|
|
1692
|
+
success: boolean;
|
|
1693
|
+
/**
|
|
1694
|
+
* 业务状态码
|
|
1695
|
+
* @type {string}
|
|
1696
|
+
* @memberof GetClaimStatus200Response
|
|
1697
|
+
*/
|
|
1698
|
+
code: string;
|
|
1699
|
+
/**
|
|
1700
|
+
* 响应消息
|
|
1701
|
+
* @type {string}
|
|
1702
|
+
* @memberof GetClaimStatus200Response
|
|
1703
|
+
*/
|
|
1704
|
+
message: string;
|
|
1705
|
+
/**
|
|
1706
|
+
*
|
|
1707
|
+
* @type {ClaimStatusResponse}
|
|
1708
|
+
* @memberof GetClaimStatus200Response
|
|
1709
|
+
*/
|
|
1710
|
+
data: ClaimStatusResponse;
|
|
1711
|
+
/**
|
|
1712
|
+
* 响应时间戳
|
|
1713
|
+
* @type {number}
|
|
1714
|
+
* @memberof GetClaimStatus200Response
|
|
1715
|
+
*/
|
|
1716
|
+
timestamp: number;
|
|
1717
|
+
/**
|
|
1718
|
+
* 请求路径
|
|
1719
|
+
* @type {string}
|
|
1720
|
+
* @memberof GetClaimStatus200Response
|
|
1721
|
+
*/
|
|
1722
|
+
path: string;
|
|
1723
|
+
/**
|
|
1724
|
+
* 请求ID
|
|
1725
|
+
* @type {string}
|
|
1726
|
+
* @memberof GetClaimStatus200Response
|
|
1727
|
+
*/
|
|
1728
|
+
requestId?: string;
|
|
1729
|
+
/**
|
|
1730
|
+
* 链路追踪ID(用于全链路定位问题)
|
|
1731
|
+
* @type {string}
|
|
1732
|
+
* @memberof GetClaimStatus200Response
|
|
1733
|
+
*/
|
|
1734
|
+
traceId?: string;
|
|
1735
|
+
}
|
|
1736
|
+
/**
|
|
1737
|
+
* Check if a given object implements the GetClaimStatus200Response interface.
|
|
1738
|
+
*/
|
|
1739
|
+
declare function instanceOfGetClaimStatus200Response(value: object): boolean;
|
|
1740
|
+
declare function GetClaimStatus200ResponseFromJSON(json: any): GetClaimStatus200Response;
|
|
1741
|
+
declare function GetClaimStatus200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetClaimStatus200Response;
|
|
1742
|
+
declare function GetClaimStatus200ResponseToJSON(value?: GetClaimStatus200Response | null): any;
|
|
1743
|
+
|
|
1744
|
+
/**
|
|
1745
|
+
* 平台用户端 API
|
|
1746
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
1747
|
+
*
|
|
1748
|
+
* The version of the OpenAPI document: 1.0.0
|
|
1749
|
+
* Contact: dev@djvlc.com
|
|
1750
|
+
*
|
|
1751
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1752
|
+
* https://openapi-generator.tech
|
|
1753
|
+
* Do not edit the class manually.
|
|
1754
|
+
*/
|
|
1755
|
+
|
|
1756
|
+
/**
|
|
1757
|
+
* 运维配置(OpsConfigVo)
|
|
1758
|
+
* @export
|
|
1759
|
+
* @interface OpsConfig
|
|
1760
|
+
*/
|
|
1761
|
+
interface OpsConfig {
|
|
1762
|
+
/**
|
|
1763
|
+
* 全局 kill-switch
|
|
1764
|
+
* @type {boolean}
|
|
1765
|
+
* @memberof OpsConfig
|
|
1766
|
+
*/
|
|
1767
|
+
killSwitch: boolean;
|
|
1768
|
+
/**
|
|
1769
|
+
* 被阻断的组件列表
|
|
1770
|
+
* @type {Array<BlockedComponent>}
|
|
1771
|
+
* @memberof OpsConfig
|
|
1772
|
+
*/
|
|
1773
|
+
blockedComponents: Array<BlockedComponent>;
|
|
1774
|
+
/**
|
|
1775
|
+
* 被阻断的页面列表
|
|
1776
|
+
* @type {Array<string>}
|
|
1777
|
+
* @memberof OpsConfig
|
|
1778
|
+
*/
|
|
1779
|
+
blockedPages: Array<string>;
|
|
1780
|
+
/**
|
|
1781
|
+
* 功能开关
|
|
1782
|
+
* @type {{ [key: string]: boolean; }}
|
|
1783
|
+
* @memberof OpsConfig
|
|
1784
|
+
*/
|
|
1785
|
+
featureFlags: {
|
|
1786
|
+
[key: string]: boolean;
|
|
1787
|
+
};
|
|
1788
|
+
/**
|
|
1789
|
+
*
|
|
1790
|
+
* @type {DegradeConfig}
|
|
1791
|
+
* @memberof OpsConfig
|
|
1792
|
+
*/
|
|
1793
|
+
degradeConfig: DegradeConfig;
|
|
1794
|
+
}
|
|
1795
|
+
/**
|
|
1796
|
+
* Check if a given object implements the OpsConfig interface.
|
|
1797
|
+
*/
|
|
1798
|
+
declare function instanceOfOpsConfig(value: object): boolean;
|
|
1799
|
+
declare function OpsConfigFromJSON(json: any): OpsConfig;
|
|
1800
|
+
declare function OpsConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): OpsConfig;
|
|
1801
|
+
declare function OpsConfigToJSON(value?: OpsConfig | null): any;
|
|
1802
|
+
|
|
1803
|
+
/**
|
|
1804
|
+
* 平台用户端 API
|
|
1805
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
1806
|
+
*
|
|
1807
|
+
* The version of the OpenAPI document: 1.0.0
|
|
1808
|
+
* Contact: dev@djvlc.com
|
|
1809
|
+
*
|
|
1810
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1811
|
+
* https://openapi-generator.tech
|
|
1812
|
+
* Do not edit the class manually.
|
|
1813
|
+
*/
|
|
1814
|
+
|
|
1815
|
+
/**
|
|
1816
|
+
*
|
|
1817
|
+
* @export
|
|
1818
|
+
* @interface GetPageConfig200Response
|
|
1819
|
+
*/
|
|
1820
|
+
interface GetPageConfig200Response {
|
|
1821
|
+
/**
|
|
1822
|
+
* 请求是否成功
|
|
1823
|
+
* @type {boolean}
|
|
1824
|
+
* @memberof GetPageConfig200Response
|
|
1825
|
+
*/
|
|
1826
|
+
success: boolean;
|
|
1827
|
+
/**
|
|
1828
|
+
* 业务状态码
|
|
1829
|
+
* @type {string}
|
|
1830
|
+
* @memberof GetPageConfig200Response
|
|
1831
|
+
*/
|
|
1832
|
+
code: string;
|
|
1833
|
+
/**
|
|
1834
|
+
* 响应消息
|
|
1835
|
+
* @type {string}
|
|
1836
|
+
* @memberof GetPageConfig200Response
|
|
1837
|
+
*/
|
|
1838
|
+
message: string;
|
|
1839
|
+
/**
|
|
1840
|
+
*
|
|
1841
|
+
* @type {OpsConfig}
|
|
1842
|
+
* @memberof GetPageConfig200Response
|
|
1843
|
+
*/
|
|
1844
|
+
data: OpsConfig;
|
|
1845
|
+
/**
|
|
1846
|
+
* 响应时间戳
|
|
1847
|
+
* @type {number}
|
|
1848
|
+
* @memberof GetPageConfig200Response
|
|
1849
|
+
*/
|
|
1850
|
+
timestamp: number;
|
|
1851
|
+
/**
|
|
1852
|
+
* 请求路径
|
|
1853
|
+
* @type {string}
|
|
1854
|
+
* @memberof GetPageConfig200Response
|
|
1855
|
+
*/
|
|
1856
|
+
path: string;
|
|
1857
|
+
/**
|
|
1858
|
+
* 请求ID
|
|
1859
|
+
* @type {string}
|
|
1860
|
+
* @memberof GetPageConfig200Response
|
|
1861
|
+
*/
|
|
1862
|
+
requestId?: string;
|
|
1863
|
+
/**
|
|
1864
|
+
* 链路追踪ID(用于全链路定位问题)
|
|
1865
|
+
* @type {string}
|
|
1866
|
+
* @memberof GetPageConfig200Response
|
|
1867
|
+
*/
|
|
1868
|
+
traceId?: string;
|
|
1869
|
+
}
|
|
1870
|
+
/**
|
|
1871
|
+
* Check if a given object implements the GetPageConfig200Response interface.
|
|
1872
|
+
*/
|
|
1873
|
+
declare function instanceOfGetPageConfig200Response(value: object): boolean;
|
|
1874
|
+
declare function GetPageConfig200ResponseFromJSON(json: any): GetPageConfig200Response;
|
|
1875
|
+
declare function GetPageConfig200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetPageConfig200Response;
|
|
1876
|
+
declare function GetPageConfig200ResponseToJSON(value?: GetPageConfig200Response | null): any;
|
|
1877
|
+
|
|
1878
|
+
/**
|
|
1879
|
+
* 平台用户端 API
|
|
1880
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
1881
|
+
*
|
|
1882
|
+
* The version of the OpenAPI document: 1.0.0
|
|
1883
|
+
* Contact: dev@djvlc.com
|
|
1884
|
+
*
|
|
1885
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1886
|
+
* https://openapi-generator.tech
|
|
1887
|
+
* Do not edit the class manually.
|
|
1888
|
+
*/
|
|
1889
|
+
/**
|
|
1890
|
+
* 组件清单项(ManifestComponentSwaggerVo)
|
|
1891
|
+
* @export
|
|
1892
|
+
* @interface ManifestComponent
|
|
1893
|
+
*/
|
|
1894
|
+
interface ManifestComponent {
|
|
1895
|
+
/**
|
|
1896
|
+
* 组件名称(Custom Element 标签名)
|
|
1897
|
+
* @type {string}
|
|
1898
|
+
* @memberof ManifestComponent
|
|
1899
|
+
*/
|
|
1900
|
+
name: string;
|
|
1901
|
+
/**
|
|
1902
|
+
* 版本号
|
|
1903
|
+
* @type {string}
|
|
1904
|
+
* @memberof ManifestComponent
|
|
1905
|
+
*/
|
|
1906
|
+
version: string;
|
|
1907
|
+
/**
|
|
1908
|
+
* 组件来源
|
|
1909
|
+
* @type {string}
|
|
1910
|
+
* @memberof ManifestComponent
|
|
1911
|
+
*/
|
|
1912
|
+
source: ManifestComponentSourceEnum;
|
|
1913
|
+
/**
|
|
1914
|
+
* 入口 URL(remote 组件必填)
|
|
1915
|
+
* @type {string}
|
|
1916
|
+
* @memberof ManifestComponent
|
|
1917
|
+
*/
|
|
1918
|
+
entry?: string;
|
|
1919
|
+
/**
|
|
1920
|
+
* 样式入口 URL
|
|
1921
|
+
* @type {string}
|
|
1922
|
+
* @memberof ManifestComponent
|
|
1923
|
+
*/
|
|
1924
|
+
styleEntry?: string;
|
|
1925
|
+
/**
|
|
1926
|
+
* SRI 完整性哈希
|
|
1927
|
+
* @type {string}
|
|
1928
|
+
* @memberof ManifestComponent
|
|
1929
|
+
*/
|
|
1930
|
+
integrity: string;
|
|
1931
|
+
/**
|
|
1932
|
+
* 是否预加载
|
|
1933
|
+
* @type {boolean}
|
|
1934
|
+
* @memberof ManifestComponent
|
|
1935
|
+
*/
|
|
1936
|
+
preload?: boolean;
|
|
1937
|
+
}
|
|
1938
|
+
/**
|
|
1939
|
+
* @export
|
|
1940
|
+
*/
|
|
1941
|
+
declare const ManifestComponentSourceEnum: {
|
|
1942
|
+
readonly BUNDLED: "bundled";
|
|
1943
|
+
readonly REMOTE: "remote";
|
|
1944
|
+
};
|
|
1945
|
+
type ManifestComponentSourceEnum = typeof ManifestComponentSourceEnum[keyof typeof ManifestComponentSourceEnum];
|
|
1946
|
+
/**
|
|
1947
|
+
* Check if a given object implements the ManifestComponent interface.
|
|
1948
|
+
*/
|
|
1949
|
+
declare function instanceOfManifestComponent(value: object): boolean;
|
|
1950
|
+
declare function ManifestComponentFromJSON(json: any): ManifestComponent;
|
|
1951
|
+
declare function ManifestComponentFromJSONTyped(json: any, ignoreDiscriminator: boolean): ManifestComponent;
|
|
1952
|
+
declare function ManifestComponentToJSON(value?: ManifestComponent | null): any;
|
|
1953
|
+
|
|
1954
|
+
/**
|
|
1955
|
+
* 平台用户端 API
|
|
1956
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
1957
|
+
*
|
|
1958
|
+
* The version of the OpenAPI document: 1.0.0
|
|
1959
|
+
* Contact: dev@djvlc.com
|
|
1960
|
+
*
|
|
1961
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1962
|
+
* https://openapi-generator.tech
|
|
1963
|
+
* Do not edit the class manually.
|
|
1964
|
+
*/
|
|
1965
|
+
/**
|
|
1966
|
+
* Runtime 版本信息(ManifestRuntimeVo)
|
|
1967
|
+
* @export
|
|
1968
|
+
* @interface ManifestRuntime
|
|
1969
|
+
*/
|
|
1970
|
+
interface ManifestRuntime {
|
|
1971
|
+
/**
|
|
1972
|
+
* 版本
|
|
1973
|
+
* @type {string}
|
|
1974
|
+
* @memberof ManifestRuntime
|
|
1975
|
+
*/
|
|
1976
|
+
version: string;
|
|
1977
|
+
/**
|
|
1978
|
+
* 最低兼容版本
|
|
1979
|
+
* @type {string}
|
|
1980
|
+
* @memberof ManifestRuntime
|
|
1981
|
+
*/
|
|
1982
|
+
minVersion: string;
|
|
1983
|
+
}
|
|
1984
|
+
/**
|
|
1985
|
+
* Check if a given object implements the ManifestRuntime interface.
|
|
1986
|
+
*/
|
|
1987
|
+
declare function instanceOfManifestRuntime(value: object): boolean;
|
|
1988
|
+
declare function ManifestRuntimeFromJSON(json: any): ManifestRuntime;
|
|
1989
|
+
declare function ManifestRuntimeFromJSONTyped(json: any, ignoreDiscriminator: boolean): ManifestRuntime;
|
|
1990
|
+
declare function ManifestRuntimeToJSON(value?: ManifestRuntime | null): any;
|
|
1991
|
+
|
|
1992
|
+
/**
|
|
1993
|
+
* 平台用户端 API
|
|
1994
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
1995
|
+
*
|
|
1996
|
+
* The version of the OpenAPI document: 1.0.0
|
|
1997
|
+
* Contact: dev@djvlc.com
|
|
1998
|
+
*
|
|
1999
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2000
|
+
* https://openapi-generator.tech
|
|
2001
|
+
* Do not edit the class manually.
|
|
2002
|
+
*/
|
|
2003
|
+
|
|
2004
|
+
/**
|
|
2005
|
+
* 组件清单响应(ManifestSwaggerVo)
|
|
2006
|
+
* @export
|
|
2007
|
+
* @interface ManifestResponse
|
|
2008
|
+
*/
|
|
2009
|
+
interface ManifestResponse {
|
|
2010
|
+
/**
|
|
2011
|
+
* 页面版本 ID
|
|
2012
|
+
* @type {string}
|
|
2013
|
+
* @memberof ManifestResponse
|
|
2014
|
+
*/
|
|
2015
|
+
pageVersionId: string;
|
|
2016
|
+
/**
|
|
2017
|
+
* 清单版本
|
|
2018
|
+
* @type {string}
|
|
2019
|
+
* @memberof ManifestResponse
|
|
2020
|
+
*/
|
|
2021
|
+
manifestVersion: string;
|
|
2022
|
+
/**
|
|
2023
|
+
* 组件列表
|
|
2024
|
+
* @type {Array<ManifestComponent>}
|
|
2025
|
+
* @memberof ManifestResponse
|
|
2026
|
+
*/
|
|
2027
|
+
components: Array<ManifestComponent>;
|
|
2028
|
+
/**
|
|
2029
|
+
*
|
|
2030
|
+
* @type {ManifestRuntime}
|
|
2031
|
+
* @memberof ManifestResponse
|
|
2032
|
+
*/
|
|
2033
|
+
runtime: ManifestRuntime;
|
|
2034
|
+
}
|
|
2035
|
+
/**
|
|
2036
|
+
* Check if a given object implements the ManifestResponse interface.
|
|
2037
|
+
*/
|
|
2038
|
+
declare function instanceOfManifestResponse(value: object): boolean;
|
|
2039
|
+
declare function ManifestResponseFromJSON(json: any): ManifestResponse;
|
|
2040
|
+
declare function ManifestResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ManifestResponse;
|
|
2041
|
+
declare function ManifestResponseToJSON(value?: ManifestResponse | null): any;
|
|
2042
|
+
|
|
2043
|
+
/**
|
|
2044
|
+
* 平台用户端 API
|
|
2045
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
2046
|
+
*
|
|
2047
|
+
* The version of the OpenAPI document: 1.0.0
|
|
2048
|
+
* Contact: dev@djvlc.com
|
|
2049
|
+
*
|
|
2050
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2051
|
+
* https://openapi-generator.tech
|
|
2052
|
+
* Do not edit the class manually.
|
|
2053
|
+
*/
|
|
2054
|
+
|
|
2055
|
+
/**
|
|
2056
|
+
*
|
|
2057
|
+
* @export
|
|
2058
|
+
* @interface GetPageManifest200Response
|
|
2059
|
+
*/
|
|
2060
|
+
interface GetPageManifest200Response {
|
|
2061
|
+
/**
|
|
2062
|
+
* 请求是否成功
|
|
2063
|
+
* @type {boolean}
|
|
2064
|
+
* @memberof GetPageManifest200Response
|
|
2065
|
+
*/
|
|
2066
|
+
success: boolean;
|
|
2067
|
+
/**
|
|
2068
|
+
* 业务状态码
|
|
2069
|
+
* @type {string}
|
|
2070
|
+
* @memberof GetPageManifest200Response
|
|
2071
|
+
*/
|
|
2072
|
+
code: string;
|
|
2073
|
+
/**
|
|
2074
|
+
* 响应消息
|
|
2075
|
+
* @type {string}
|
|
2076
|
+
* @memberof GetPageManifest200Response
|
|
2077
|
+
*/
|
|
2078
|
+
message: string;
|
|
2079
|
+
/**
|
|
2080
|
+
*
|
|
2081
|
+
* @type {ManifestResponse}
|
|
2082
|
+
* @memberof GetPageManifest200Response
|
|
2083
|
+
*/
|
|
2084
|
+
data: ManifestResponse;
|
|
2085
|
+
/**
|
|
2086
|
+
* 响应时间戳
|
|
2087
|
+
* @type {number}
|
|
2088
|
+
* @memberof GetPageManifest200Response
|
|
2089
|
+
*/
|
|
2090
|
+
timestamp: number;
|
|
2091
|
+
/**
|
|
2092
|
+
* 请求路径
|
|
2093
|
+
* @type {string}
|
|
2094
|
+
* @memberof GetPageManifest200Response
|
|
2095
|
+
*/
|
|
2096
|
+
path: string;
|
|
2097
|
+
/**
|
|
2098
|
+
* 请求ID
|
|
2099
|
+
* @type {string}
|
|
2100
|
+
* @memberof GetPageManifest200Response
|
|
2101
|
+
*/
|
|
2102
|
+
requestId?: string;
|
|
2103
|
+
/**
|
|
2104
|
+
* 链路追踪ID(用于全链路定位问题)
|
|
2105
|
+
* @type {string}
|
|
2106
|
+
* @memberof GetPageManifest200Response
|
|
2107
|
+
*/
|
|
2108
|
+
traceId?: string;
|
|
2109
|
+
}
|
|
2110
|
+
/**
|
|
2111
|
+
* Check if a given object implements the GetPageManifest200Response interface.
|
|
2112
|
+
*/
|
|
2113
|
+
declare function instanceOfGetPageManifest200Response(value: object): boolean;
|
|
2114
|
+
declare function GetPageManifest200ResponseFromJSON(json: any): GetPageManifest200Response;
|
|
2115
|
+
declare function GetPageManifest200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetPageManifest200Response;
|
|
2116
|
+
declare function GetPageManifest200ResponseToJSON(value?: GetPageManifest200Response | null): any;
|
|
2117
|
+
|
|
2118
|
+
/**
|
|
2119
|
+
* 平台用户端 API
|
|
2120
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
2121
|
+
*
|
|
2122
|
+
* The version of the OpenAPI document: 1.0.0
|
|
2123
|
+
* Contact: dev@djvlc.com
|
|
2124
|
+
*
|
|
2125
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2126
|
+
* https://openapi-generator.tech
|
|
2127
|
+
* Do not edit the class manually.
|
|
2128
|
+
*/
|
|
2129
|
+
/**
|
|
2130
|
+
* 查询定义响应(DataQueryDefinitionVo)
|
|
2131
|
+
* @export
|
|
2132
|
+
* @interface QueryDefinitionResponse
|
|
2133
|
+
*/
|
|
2134
|
+
interface QueryDefinitionResponse {
|
|
2135
|
+
/**
|
|
2136
|
+
* 版本 UID
|
|
2137
|
+
* @type {string}
|
|
2138
|
+
* @memberof QueryDefinitionResponse
|
|
2139
|
+
*/
|
|
2140
|
+
uid: string;
|
|
2141
|
+
/**
|
|
2142
|
+
* 所属查询 UID
|
|
2143
|
+
* @type {string}
|
|
2144
|
+
* @memberof QueryDefinitionResponse
|
|
2145
|
+
*/
|
|
2146
|
+
queryUid: string;
|
|
2147
|
+
/**
|
|
2148
|
+
* 版本号(递增)
|
|
2149
|
+
* @type {number}
|
|
2150
|
+
* @memberof QueryDefinitionResponse
|
|
2151
|
+
*/
|
|
2152
|
+
versionNumber: number;
|
|
2153
|
+
/**
|
|
2154
|
+
* 版本标签(可选,如 v1.0.0)
|
|
2155
|
+
* @type {string}
|
|
2156
|
+
* @memberof QueryDefinitionResponse
|
|
2157
|
+
*/
|
|
2158
|
+
versionLabel?: string | null;
|
|
2159
|
+
/**
|
|
2160
|
+
* 规格快照(不可变的 DataQuerySpec)
|
|
2161
|
+
* @type {{ [key: string]: any; }}
|
|
2162
|
+
* @memberof QueryDefinitionResponse
|
|
2163
|
+
*/
|
|
2164
|
+
spec: {
|
|
2165
|
+
[key: string]: any;
|
|
2166
|
+
};
|
|
2167
|
+
/**
|
|
2168
|
+
* 版本状态
|
|
2169
|
+
* @type {string}
|
|
2170
|
+
* @memberof QueryDefinitionResponse
|
|
2171
|
+
*/
|
|
2172
|
+
status: QueryDefinitionResponseStatusEnum;
|
|
2173
|
+
}
|
|
2174
|
+
/**
|
|
2175
|
+
* @export
|
|
2176
|
+
*/
|
|
2177
|
+
declare const QueryDefinitionResponseStatusEnum: {
|
|
2178
|
+
readonly DRAFT: "draft";
|
|
2179
|
+
readonly STABLE: "stable";
|
|
2180
|
+
readonly DEPRECATED: "deprecated";
|
|
2181
|
+
readonly BLOCKED: "blocked";
|
|
2182
|
+
};
|
|
2183
|
+
type QueryDefinitionResponseStatusEnum = typeof QueryDefinitionResponseStatusEnum[keyof typeof QueryDefinitionResponseStatusEnum];
|
|
2184
|
+
/**
|
|
2185
|
+
* Check if a given object implements the QueryDefinitionResponse interface.
|
|
2186
|
+
*/
|
|
2187
|
+
declare function instanceOfQueryDefinitionResponse(value: object): boolean;
|
|
2188
|
+
declare function QueryDefinitionResponseFromJSON(json: any): QueryDefinitionResponse;
|
|
2189
|
+
declare function QueryDefinitionResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): QueryDefinitionResponse;
|
|
2190
|
+
declare function QueryDefinitionResponseToJSON(value?: QueryDefinitionResponse | null): any;
|
|
2191
|
+
|
|
2192
|
+
/**
|
|
2193
|
+
* 平台用户端 API
|
|
2194
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
2195
|
+
*
|
|
2196
|
+
* The version of the OpenAPI document: 1.0.0
|
|
2197
|
+
* Contact: dev@djvlc.com
|
|
2198
|
+
*
|
|
2199
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2200
|
+
* https://openapi-generator.tech
|
|
2201
|
+
* Do not edit the class manually.
|
|
2202
|
+
*/
|
|
2203
|
+
|
|
2204
|
+
/**
|
|
2205
|
+
*
|
|
2206
|
+
* @export
|
|
2207
|
+
* @interface GetQueryDefinition200Response
|
|
2208
|
+
*/
|
|
2209
|
+
interface GetQueryDefinition200Response {
|
|
2210
|
+
/**
|
|
2211
|
+
* 请求是否成功
|
|
2212
|
+
* @type {boolean}
|
|
2213
|
+
* @memberof GetQueryDefinition200Response
|
|
2214
|
+
*/
|
|
2215
|
+
success: boolean;
|
|
2216
|
+
/**
|
|
2217
|
+
* 业务状态码
|
|
2218
|
+
* @type {string}
|
|
2219
|
+
* @memberof GetQueryDefinition200Response
|
|
2220
|
+
*/
|
|
2221
|
+
code: string;
|
|
2222
|
+
/**
|
|
2223
|
+
* 响应消息
|
|
2224
|
+
* @type {string}
|
|
2225
|
+
* @memberof GetQueryDefinition200Response
|
|
2226
|
+
*/
|
|
2227
|
+
message: string;
|
|
2228
|
+
/**
|
|
2229
|
+
*
|
|
2230
|
+
* @type {QueryDefinitionResponse}
|
|
2231
|
+
* @memberof GetQueryDefinition200Response
|
|
2232
|
+
*/
|
|
2233
|
+
data: QueryDefinitionResponse;
|
|
2234
|
+
/**
|
|
2235
|
+
* 响应时间戳
|
|
2236
|
+
* @type {number}
|
|
2237
|
+
* @memberof GetQueryDefinition200Response
|
|
2238
|
+
*/
|
|
2239
|
+
timestamp: number;
|
|
2240
|
+
/**
|
|
2241
|
+
* 请求路径
|
|
2242
|
+
* @type {string}
|
|
2243
|
+
* @memberof GetQueryDefinition200Response
|
|
2244
|
+
*/
|
|
2245
|
+
path: string;
|
|
2246
|
+
/**
|
|
2247
|
+
* 请求ID
|
|
2248
|
+
* @type {string}
|
|
2249
|
+
* @memberof GetQueryDefinition200Response
|
|
2250
|
+
*/
|
|
2251
|
+
requestId?: string;
|
|
2252
|
+
/**
|
|
2253
|
+
* 链路追踪ID(用于全链路定位问题)
|
|
2254
|
+
* @type {string}
|
|
2255
|
+
* @memberof GetQueryDefinition200Response
|
|
2256
|
+
*/
|
|
2257
|
+
traceId?: string;
|
|
2258
|
+
}
|
|
2259
|
+
/**
|
|
2260
|
+
* Check if a given object implements the GetQueryDefinition200Response interface.
|
|
2261
|
+
*/
|
|
2262
|
+
declare function instanceOfGetQueryDefinition200Response(value: object): boolean;
|
|
2263
|
+
declare function GetQueryDefinition200ResponseFromJSON(json: any): GetQueryDefinition200Response;
|
|
2264
|
+
declare function GetQueryDefinition200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetQueryDefinition200Response;
|
|
2265
|
+
declare function GetQueryDefinition200ResponseToJSON(value?: GetQueryDefinition200Response | null): any;
|
|
2266
|
+
|
|
2267
|
+
/**
|
|
2268
|
+
* 平台用户端 API
|
|
2269
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
2270
|
+
*
|
|
2271
|
+
* The version of the OpenAPI document: 1.0.0
|
|
2272
|
+
* Contact: dev@djvlc.com
|
|
2273
|
+
*
|
|
2274
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2275
|
+
* https://openapi-generator.tech
|
|
2276
|
+
* Do not edit the class manually.
|
|
2277
|
+
*/
|
|
2278
|
+
/**
|
|
2279
|
+
* 签到日历数据(SigninCalendarDataVo)
|
|
2280
|
+
* @export
|
|
2281
|
+
* @interface SigninCalendarData
|
|
2282
|
+
*/
|
|
2283
|
+
interface SigninCalendarData {
|
|
2284
|
+
/**
|
|
2285
|
+
* 活动 ID
|
|
2286
|
+
* @type {string}
|
|
2287
|
+
* @memberof SigninCalendarData
|
|
2288
|
+
*/
|
|
2289
|
+
activityId: string;
|
|
2290
|
+
/**
|
|
2291
|
+
* 月份(YYYY-MM)
|
|
2292
|
+
* @type {string}
|
|
2293
|
+
* @memberof SigninCalendarData
|
|
2294
|
+
*/
|
|
2295
|
+
month: string;
|
|
2296
|
+
/**
|
|
2297
|
+
* 已签到日期列表
|
|
2298
|
+
* @type {Array<string>}
|
|
2299
|
+
* @memberof SigninCalendarData
|
|
2300
|
+
*/
|
|
2301
|
+
signedDates: Array<string>;
|
|
2302
|
+
/**
|
|
2303
|
+
* 连续签到天数
|
|
2304
|
+
* @type {number}
|
|
2305
|
+
* @memberof SigninCalendarData
|
|
2306
|
+
*/
|
|
2307
|
+
consecutiveDays: number;
|
|
2308
|
+
/**
|
|
2309
|
+
* 累计签到天数
|
|
2310
|
+
* @type {number}
|
|
2311
|
+
* @memberof SigninCalendarData
|
|
2312
|
+
*/
|
|
2313
|
+
totalDays: number;
|
|
2314
|
+
}
|
|
2315
|
+
/**
|
|
2316
|
+
* Check if a given object implements the SigninCalendarData interface.
|
|
2317
|
+
*/
|
|
2318
|
+
declare function instanceOfSigninCalendarData(value: object): boolean;
|
|
2319
|
+
declare function SigninCalendarDataFromJSON(json: any): SigninCalendarData;
|
|
2320
|
+
declare function SigninCalendarDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): SigninCalendarData;
|
|
2321
|
+
declare function SigninCalendarDataToJSON(value?: SigninCalendarData | null): any;
|
|
2322
|
+
|
|
2323
|
+
/**
|
|
2324
|
+
* 平台用户端 API
|
|
2325
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
2326
|
+
*
|
|
2327
|
+
* The version of the OpenAPI document: 1.0.0
|
|
2328
|
+
* Contact: dev@djvlc.com
|
|
2329
|
+
*
|
|
2330
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2331
|
+
* https://openapi-generator.tech
|
|
2332
|
+
* Do not edit the class manually.
|
|
2333
|
+
*/
|
|
2334
|
+
|
|
2335
|
+
/**
|
|
2336
|
+
* 签到日历响应(SigninCalendarVo)
|
|
2337
|
+
* @export
|
|
2338
|
+
* @interface SigninCalendarResponse
|
|
2339
|
+
*/
|
|
2340
|
+
interface SigninCalendarResponse {
|
|
2341
|
+
/**
|
|
2342
|
+
* 是否成功
|
|
2343
|
+
* @type {boolean}
|
|
2344
|
+
* @memberof SigninCalendarResponse
|
|
2345
|
+
*/
|
|
2346
|
+
success: boolean;
|
|
2347
|
+
/**
|
|
2348
|
+
*
|
|
2349
|
+
* @type {SigninCalendarData}
|
|
2350
|
+
* @memberof SigninCalendarResponse
|
|
2351
|
+
*/
|
|
2352
|
+
data: SigninCalendarData;
|
|
2353
|
+
}
|
|
2354
|
+
/**
|
|
2355
|
+
* Check if a given object implements the SigninCalendarResponse interface.
|
|
2356
|
+
*/
|
|
2357
|
+
declare function instanceOfSigninCalendarResponse(value: object): boolean;
|
|
2358
|
+
declare function SigninCalendarResponseFromJSON(json: any): SigninCalendarResponse;
|
|
2359
|
+
declare function SigninCalendarResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SigninCalendarResponse;
|
|
2360
|
+
declare function SigninCalendarResponseToJSON(value?: SigninCalendarResponse | null): any;
|
|
2361
|
+
|
|
2362
|
+
/**
|
|
2363
|
+
* 平台用户端 API
|
|
2364
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
2365
|
+
*
|
|
2366
|
+
* The version of the OpenAPI document: 1.0.0
|
|
2367
|
+
* Contact: dev@djvlc.com
|
|
2368
|
+
*
|
|
2369
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2370
|
+
* https://openapi-generator.tech
|
|
2371
|
+
* Do not edit the class manually.
|
|
2372
|
+
*/
|
|
2373
|
+
|
|
2374
|
+
/**
|
|
2375
|
+
*
|
|
2376
|
+
* @export
|
|
2377
|
+
* @interface GetSigninCalendar200Response
|
|
2378
|
+
*/
|
|
2379
|
+
interface GetSigninCalendar200Response {
|
|
2380
|
+
/**
|
|
2381
|
+
* 请求是否成功
|
|
2382
|
+
* @type {boolean}
|
|
2383
|
+
* @memberof GetSigninCalendar200Response
|
|
2384
|
+
*/
|
|
2385
|
+
success: boolean;
|
|
2386
|
+
/**
|
|
2387
|
+
* 业务状态码
|
|
2388
|
+
* @type {string}
|
|
2389
|
+
* @memberof GetSigninCalendar200Response
|
|
2390
|
+
*/
|
|
2391
|
+
code: string;
|
|
2392
|
+
/**
|
|
2393
|
+
* 响应消息
|
|
2394
|
+
* @type {string}
|
|
2395
|
+
* @memberof GetSigninCalendar200Response
|
|
2396
|
+
*/
|
|
2397
|
+
message: string;
|
|
2398
|
+
/**
|
|
2399
|
+
*
|
|
2400
|
+
* @type {SigninCalendarResponse}
|
|
2401
|
+
* @memberof GetSigninCalendar200Response
|
|
2402
|
+
*/
|
|
2403
|
+
data: SigninCalendarResponse;
|
|
2404
|
+
/**
|
|
2405
|
+
* 响应时间戳
|
|
2406
|
+
* @type {number}
|
|
2407
|
+
* @memberof GetSigninCalendar200Response
|
|
2408
|
+
*/
|
|
2409
|
+
timestamp: number;
|
|
2410
|
+
/**
|
|
2411
|
+
* 请求路径
|
|
2412
|
+
* @type {string}
|
|
2413
|
+
* @memberof GetSigninCalendar200Response
|
|
2414
|
+
*/
|
|
2415
|
+
path: string;
|
|
2416
|
+
/**
|
|
2417
|
+
* 请求ID
|
|
2418
|
+
* @type {string}
|
|
2419
|
+
* @memberof GetSigninCalendar200Response
|
|
2420
|
+
*/
|
|
2421
|
+
requestId?: string;
|
|
2422
|
+
/**
|
|
2423
|
+
* 链路追踪ID(用于全链路定位问题)
|
|
2424
|
+
* @type {string}
|
|
2425
|
+
* @memberof GetSigninCalendar200Response
|
|
2426
|
+
*/
|
|
2427
|
+
traceId?: string;
|
|
2428
|
+
}
|
|
2429
|
+
/**
|
|
2430
|
+
* Check if a given object implements the GetSigninCalendar200Response interface.
|
|
2431
|
+
*/
|
|
2432
|
+
declare function instanceOfGetSigninCalendar200Response(value: object): boolean;
|
|
2433
|
+
declare function GetSigninCalendar200ResponseFromJSON(json: any): GetSigninCalendar200Response;
|
|
2434
|
+
declare function GetSigninCalendar200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetSigninCalendar200Response;
|
|
2435
|
+
declare function GetSigninCalendar200ResponseToJSON(value?: GetSigninCalendar200Response | null): any;
|
|
2436
|
+
|
|
2437
|
+
/**
|
|
2438
|
+
* 平台用户端 API
|
|
2439
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
2440
|
+
*
|
|
2441
|
+
* The version of the OpenAPI document: 1.0.0
|
|
2442
|
+
* Contact: dev@djvlc.com
|
|
2443
|
+
*
|
|
2444
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2445
|
+
* https://openapi-generator.tech
|
|
2446
|
+
* Do not edit the class manually.
|
|
2447
|
+
*/
|
|
2448
|
+
/**
|
|
2449
|
+
* 奖励信息(RewardInfoVo)
|
|
2450
|
+
* @export
|
|
2451
|
+
* @interface RewardInfo
|
|
2452
|
+
*/
|
|
2453
|
+
interface RewardInfo {
|
|
2454
|
+
/**
|
|
2455
|
+
* 奖励类型
|
|
2456
|
+
* @type {string}
|
|
2457
|
+
* @memberof RewardInfo
|
|
2458
|
+
*/
|
|
2459
|
+
type: string;
|
|
2460
|
+
/**
|
|
2461
|
+
* 奖励值
|
|
2462
|
+
* @type {number}
|
|
2463
|
+
* @memberof RewardInfo
|
|
2464
|
+
*/
|
|
2465
|
+
value: number;
|
|
2466
|
+
/**
|
|
2467
|
+
* 奖励描述
|
|
2468
|
+
* @type {string}
|
|
2469
|
+
* @memberof RewardInfo
|
|
2470
|
+
*/
|
|
2471
|
+
description: string;
|
|
2472
|
+
}
|
|
2473
|
+
/**
|
|
2474
|
+
* Check if a given object implements the RewardInfo interface.
|
|
2475
|
+
*/
|
|
2476
|
+
declare function instanceOfRewardInfo(value: object): boolean;
|
|
2477
|
+
declare function RewardInfoFromJSON(json: any): RewardInfo;
|
|
2478
|
+
declare function RewardInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): RewardInfo;
|
|
2479
|
+
declare function RewardInfoToJSON(value?: RewardInfo | null): any;
|
|
2480
|
+
|
|
2481
|
+
/**
|
|
2482
|
+
* 平台用户端 API
|
|
2483
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
2484
|
+
*
|
|
2485
|
+
* The version of the OpenAPI document: 1.0.0
|
|
2486
|
+
* Contact: dev@djvlc.com
|
|
2487
|
+
*
|
|
2488
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2489
|
+
* https://openapi-generator.tech
|
|
2490
|
+
* Do not edit the class manually.
|
|
2491
|
+
*/
|
|
2492
|
+
|
|
2493
|
+
/**
|
|
2494
|
+
* 里程碑信息(MilestoneInfoVo)
|
|
2495
|
+
* @export
|
|
2496
|
+
* @interface MilestoneInfo
|
|
2497
|
+
*/
|
|
2498
|
+
interface MilestoneInfo {
|
|
2499
|
+
/**
|
|
2500
|
+
* 目标天数
|
|
2501
|
+
* @type {number}
|
|
2502
|
+
* @memberof MilestoneInfo
|
|
2503
|
+
*/
|
|
2504
|
+
days: number;
|
|
2505
|
+
/**
|
|
2506
|
+
*
|
|
2507
|
+
* @type {RewardInfo}
|
|
2508
|
+
* @memberof MilestoneInfo
|
|
2509
|
+
*/
|
|
2510
|
+
reward: RewardInfo;
|
|
2511
|
+
}
|
|
2512
|
+
/**
|
|
2513
|
+
* Check if a given object implements the MilestoneInfo interface.
|
|
2514
|
+
*/
|
|
2515
|
+
declare function instanceOfMilestoneInfo(value: object): boolean;
|
|
2516
|
+
declare function MilestoneInfoFromJSON(json: any): MilestoneInfo;
|
|
2517
|
+
declare function MilestoneInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): MilestoneInfo;
|
|
2518
|
+
declare function MilestoneInfoToJSON(value?: MilestoneInfo | null): any;
|
|
2519
|
+
|
|
2520
|
+
/**
|
|
2521
|
+
* 平台用户端 API
|
|
2522
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
2523
|
+
*
|
|
2524
|
+
* The version of the OpenAPI document: 1.0.0
|
|
2525
|
+
* Contact: dev@djvlc.com
|
|
2526
|
+
*
|
|
2527
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2528
|
+
* https://openapi-generator.tech
|
|
2529
|
+
* Do not edit the class manually.
|
|
2530
|
+
*/
|
|
2531
|
+
|
|
2532
|
+
/**
|
|
2533
|
+
* 签到状态响应(SigninStatusVo)
|
|
2534
|
+
* @export
|
|
2535
|
+
* @interface SigninStatusResponse
|
|
2536
|
+
*/
|
|
2537
|
+
interface SigninStatusResponse {
|
|
2538
|
+
/**
|
|
2539
|
+
* 活动 UID
|
|
2540
|
+
* @type {string}
|
|
2541
|
+
* @memberof SigninStatusResponse
|
|
2542
|
+
*/
|
|
2543
|
+
activityUid: string;
|
|
2544
|
+
/**
|
|
2545
|
+
* 今日是否已签到
|
|
2546
|
+
* @type {boolean}
|
|
2547
|
+
* @memberof SigninStatusResponse
|
|
2548
|
+
*/
|
|
2549
|
+
hasSignedToday: boolean;
|
|
2550
|
+
/**
|
|
2551
|
+
* 连续签到天数
|
|
2552
|
+
* @type {number}
|
|
2553
|
+
* @memberof SigninStatusResponse
|
|
2554
|
+
*/
|
|
2555
|
+
consecutiveDays: number;
|
|
2556
|
+
/**
|
|
2557
|
+
* 累计签到天数
|
|
2558
|
+
* @type {number}
|
|
2559
|
+
* @memberof SigninStatusResponse
|
|
2560
|
+
*/
|
|
2561
|
+
totalDays: number;
|
|
2562
|
+
/**
|
|
2563
|
+
* 签到日期列表
|
|
2564
|
+
* @type {Array<string>}
|
|
2565
|
+
* @memberof SigninStatusResponse
|
|
2566
|
+
*/
|
|
2567
|
+
signedDates: Array<string>;
|
|
2568
|
+
/**
|
|
2569
|
+
*
|
|
2570
|
+
* @type {RewardInfo}
|
|
2571
|
+
* @memberof SigninStatusResponse
|
|
2572
|
+
*/
|
|
2573
|
+
todayReward?: RewardInfo;
|
|
2574
|
+
/**
|
|
2575
|
+
*
|
|
2576
|
+
* @type {MilestoneInfo}
|
|
2577
|
+
* @memberof SigninStatusResponse
|
|
2578
|
+
*/
|
|
2579
|
+
nextMilestone?: MilestoneInfo;
|
|
2580
|
+
}
|
|
2581
|
+
/**
|
|
2582
|
+
* Check if a given object implements the SigninStatusResponse interface.
|
|
2583
|
+
*/
|
|
2584
|
+
declare function instanceOfSigninStatusResponse(value: object): boolean;
|
|
2585
|
+
declare function SigninStatusResponseFromJSON(json: any): SigninStatusResponse;
|
|
2586
|
+
declare function SigninStatusResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SigninStatusResponse;
|
|
2587
|
+
declare function SigninStatusResponseToJSON(value?: SigninStatusResponse | null): any;
|
|
2588
|
+
|
|
2589
|
+
/**
|
|
2590
|
+
* 平台用户端 API
|
|
2591
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
2592
|
+
*
|
|
2593
|
+
* The version of the OpenAPI document: 1.0.0
|
|
2594
|
+
* Contact: dev@djvlc.com
|
|
2595
|
+
*
|
|
2596
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2597
|
+
* https://openapi-generator.tech
|
|
2598
|
+
* Do not edit the class manually.
|
|
2599
|
+
*/
|
|
2600
|
+
|
|
2601
|
+
/**
|
|
2602
|
+
*
|
|
2603
|
+
* @export
|
|
2604
|
+
* @interface GetSigninStatus200Response
|
|
2605
|
+
*/
|
|
2606
|
+
interface GetSigninStatus200Response {
|
|
2607
|
+
/**
|
|
2608
|
+
* 请求是否成功
|
|
2609
|
+
* @type {boolean}
|
|
2610
|
+
* @memberof GetSigninStatus200Response
|
|
2611
|
+
*/
|
|
2612
|
+
success: boolean;
|
|
2613
|
+
/**
|
|
2614
|
+
* 业务状态码
|
|
2615
|
+
* @type {string}
|
|
2616
|
+
* @memberof GetSigninStatus200Response
|
|
2617
|
+
*/
|
|
2618
|
+
code: string;
|
|
2619
|
+
/**
|
|
2620
|
+
* 响应消息
|
|
2621
|
+
* @type {string}
|
|
2622
|
+
* @memberof GetSigninStatus200Response
|
|
2623
|
+
*/
|
|
2624
|
+
message: string;
|
|
2625
|
+
/**
|
|
2626
|
+
*
|
|
2627
|
+
* @type {SigninStatusResponse}
|
|
2628
|
+
* @memberof GetSigninStatus200Response
|
|
2629
|
+
*/
|
|
2630
|
+
data: SigninStatusResponse;
|
|
2631
|
+
/**
|
|
2632
|
+
* 响应时间戳
|
|
2633
|
+
* @type {number}
|
|
2634
|
+
* @memberof GetSigninStatus200Response
|
|
2635
|
+
*/
|
|
2636
|
+
timestamp: number;
|
|
2637
|
+
/**
|
|
2638
|
+
* 请求路径
|
|
2639
|
+
* @type {string}
|
|
2640
|
+
* @memberof GetSigninStatus200Response
|
|
2641
|
+
*/
|
|
2642
|
+
path: string;
|
|
2643
|
+
/**
|
|
2644
|
+
* 请求ID
|
|
2645
|
+
* @type {string}
|
|
2646
|
+
* @memberof GetSigninStatus200Response
|
|
2647
|
+
*/
|
|
2648
|
+
requestId?: string;
|
|
2649
|
+
/**
|
|
2650
|
+
* 链路追踪ID(用于全链路定位问题)
|
|
2651
|
+
* @type {string}
|
|
2652
|
+
* @memberof GetSigninStatus200Response
|
|
2653
|
+
*/
|
|
2654
|
+
traceId?: string;
|
|
2655
|
+
}
|
|
2656
|
+
/**
|
|
2657
|
+
* Check if a given object implements the GetSigninStatus200Response interface.
|
|
2658
|
+
*/
|
|
2659
|
+
declare function instanceOfGetSigninStatus200Response(value: object): boolean;
|
|
2660
|
+
declare function GetSigninStatus200ResponseFromJSON(json: any): GetSigninStatus200Response;
|
|
2661
|
+
declare function GetSigninStatus200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetSigninStatus200Response;
|
|
2662
|
+
declare function GetSigninStatus200ResponseToJSON(value?: GetSigninStatus200Response | null): any;
|
|
2663
|
+
|
|
2664
|
+
/**
|
|
2665
|
+
* 平台用户端 API
|
|
2666
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
2667
|
+
*
|
|
2668
|
+
* The version of the OpenAPI document: 1.0.0
|
|
2669
|
+
* Contact: dev@djvlc.com
|
|
2670
|
+
*
|
|
2671
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2672
|
+
* https://openapi-generator.tech
|
|
2673
|
+
* Do not edit the class manually.
|
|
2674
|
+
*/
|
|
2675
|
+
/**
|
|
2676
|
+
* 租户配置数据(TenantConfigDataVo)
|
|
2677
|
+
* @export
|
|
2678
|
+
* @interface TenantConfigData
|
|
2679
|
+
*/
|
|
2680
|
+
interface TenantConfigData {
|
|
2681
|
+
/**
|
|
2682
|
+
* 应用 ID
|
|
2683
|
+
* @type {string}
|
|
2684
|
+
* @memberof TenantConfigData
|
|
2685
|
+
*/
|
|
2686
|
+
appId: string;
|
|
2687
|
+
/**
|
|
2688
|
+
* 租户状态
|
|
2689
|
+
* @type {string}
|
|
2690
|
+
* @memberof TenantConfigData
|
|
2691
|
+
*/
|
|
2692
|
+
status: string;
|
|
2693
|
+
/**
|
|
2694
|
+
* 功能开关
|
|
2695
|
+
* @type {{ [key: string]: boolean; }}
|
|
2696
|
+
* @memberof TenantConfigData
|
|
2697
|
+
*/
|
|
2698
|
+
featureFlags?: {
|
|
2699
|
+
[key: string]: boolean;
|
|
2700
|
+
};
|
|
2701
|
+
/**
|
|
2702
|
+
* 主题配置
|
|
2703
|
+
* @type {{ [key: string]: any; }}
|
|
2704
|
+
* @memberof TenantConfigData
|
|
2705
|
+
*/
|
|
2706
|
+
theme?: {
|
|
2707
|
+
[key: string]: any;
|
|
2708
|
+
};
|
|
1229
2709
|
/**
|
|
1230
|
-
*
|
|
2710
|
+
* CDN 基地址
|
|
1231
2711
|
* @type {string}
|
|
1232
|
-
* @memberof
|
|
2712
|
+
* @memberof TenantConfigData
|
|
1233
2713
|
*/
|
|
1234
|
-
|
|
2714
|
+
cdnBase?: string;
|
|
1235
2715
|
/**
|
|
1236
|
-
*
|
|
1237
|
-
* @type {string}
|
|
1238
|
-
* @memberof
|
|
2716
|
+
* 阻断组件列表
|
|
2717
|
+
* @type {Array<string>}
|
|
2718
|
+
* @memberof TenantConfigData
|
|
1239
2719
|
*/
|
|
1240
|
-
|
|
2720
|
+
blockedComponents?: Array<string>;
|
|
2721
|
+
/**
|
|
2722
|
+
* 全局 killSwitch
|
|
2723
|
+
* @type {boolean}
|
|
2724
|
+
* @memberof TenantConfigData
|
|
2725
|
+
*/
|
|
2726
|
+
killSwitch?: boolean;
|
|
1241
2727
|
}
|
|
1242
2728
|
/**
|
|
1243
|
-
* Check if a given object implements the
|
|
2729
|
+
* Check if a given object implements the TenantConfigData interface.
|
|
1244
2730
|
*/
|
|
1245
|
-
declare function
|
|
1246
|
-
declare function
|
|
1247
|
-
declare function
|
|
1248
|
-
declare function
|
|
2731
|
+
declare function instanceOfTenantConfigData(value: object): boolean;
|
|
2732
|
+
declare function TenantConfigDataFromJSON(json: any): TenantConfigData;
|
|
2733
|
+
declare function TenantConfigDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): TenantConfigData;
|
|
2734
|
+
declare function TenantConfigDataToJSON(value?: TenantConfigData | null): any;
|
|
1249
2735
|
|
|
1250
2736
|
/**
|
|
1251
2737
|
* 平台用户端 API
|
|
@@ -1258,26 +2744,33 @@ declare function HealthCheckResponseToJSON(value?: HealthCheckResponse | null):
|
|
|
1258
2744
|
* https://openapi-generator.tech
|
|
1259
2745
|
* Do not edit the class manually.
|
|
1260
2746
|
*/
|
|
2747
|
+
|
|
1261
2748
|
/**
|
|
1262
|
-
*
|
|
2749
|
+
* 租户配置响应(TenantConfigVo)
|
|
1263
2750
|
* @export
|
|
1264
|
-
* @interface
|
|
2751
|
+
* @interface TenantConfigResponse
|
|
1265
2752
|
*/
|
|
1266
|
-
interface
|
|
2753
|
+
interface TenantConfigResponse {
|
|
1267
2754
|
/**
|
|
1268
|
-
*
|
|
1269
|
-
* @type {
|
|
1270
|
-
* @memberof
|
|
2755
|
+
* 是否成功
|
|
2756
|
+
* @type {boolean}
|
|
2757
|
+
* @memberof TenantConfigResponse
|
|
1271
2758
|
*/
|
|
1272
|
-
|
|
2759
|
+
success: boolean;
|
|
2760
|
+
/**
|
|
2761
|
+
*
|
|
2762
|
+
* @type {TenantConfigData}
|
|
2763
|
+
* @memberof TenantConfigResponse
|
|
2764
|
+
*/
|
|
2765
|
+
data: TenantConfigData;
|
|
1273
2766
|
}
|
|
1274
2767
|
/**
|
|
1275
|
-
* Check if a given object implements the
|
|
2768
|
+
* Check if a given object implements the TenantConfigResponse interface.
|
|
1276
2769
|
*/
|
|
1277
|
-
declare function
|
|
1278
|
-
declare function
|
|
1279
|
-
declare function
|
|
1280
|
-
declare function
|
|
2770
|
+
declare function instanceOfTenantConfigResponse(value: object): boolean;
|
|
2771
|
+
declare function TenantConfigResponseFromJSON(json: any): TenantConfigResponse;
|
|
2772
|
+
declare function TenantConfigResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): TenantConfigResponse;
|
|
2773
|
+
declare function TenantConfigResponseToJSON(value?: TenantConfigResponse | null): any;
|
|
1281
2774
|
|
|
1282
2775
|
/**
|
|
1283
2776
|
* 平台用户端 API
|
|
@@ -1290,70 +2783,69 @@ declare function LivenessResponseToJSON(value?: LivenessResponse | null): any;
|
|
|
1290
2783
|
* https://openapi-generator.tech
|
|
1291
2784
|
* Do not edit the class manually.
|
|
1292
2785
|
*/
|
|
2786
|
+
|
|
1293
2787
|
/**
|
|
1294
|
-
*
|
|
2788
|
+
*
|
|
1295
2789
|
* @export
|
|
1296
|
-
* @interface
|
|
2790
|
+
* @interface GetTenantConfig200Response
|
|
1297
2791
|
*/
|
|
1298
|
-
interface
|
|
2792
|
+
interface GetTenantConfig200Response {
|
|
1299
2793
|
/**
|
|
1300
|
-
*
|
|
1301
|
-
* @type {
|
|
1302
|
-
* @memberof
|
|
2794
|
+
* 请求是否成功
|
|
2795
|
+
* @type {boolean}
|
|
2796
|
+
* @memberof GetTenantConfig200Response
|
|
1303
2797
|
*/
|
|
1304
|
-
|
|
2798
|
+
success: boolean;
|
|
1305
2799
|
/**
|
|
1306
|
-
*
|
|
2800
|
+
* 业务状态码
|
|
1307
2801
|
* @type {string}
|
|
1308
|
-
* @memberof
|
|
2802
|
+
* @memberof GetTenantConfig200Response
|
|
1309
2803
|
*/
|
|
1310
|
-
|
|
2804
|
+
code: string;
|
|
1311
2805
|
/**
|
|
1312
|
-
*
|
|
2806
|
+
* 响应消息
|
|
1313
2807
|
* @type {string}
|
|
1314
|
-
* @memberof
|
|
2808
|
+
* @memberof GetTenantConfig200Response
|
|
1315
2809
|
*/
|
|
1316
|
-
|
|
2810
|
+
message: string;
|
|
1317
2811
|
/**
|
|
1318
|
-
*
|
|
1319
|
-
* @type {
|
|
1320
|
-
* @memberof
|
|
2812
|
+
*
|
|
2813
|
+
* @type {TenantConfigResponse}
|
|
2814
|
+
* @memberof GetTenantConfig200Response
|
|
1321
2815
|
*/
|
|
1322
|
-
|
|
2816
|
+
data: TenantConfigResponse;
|
|
1323
2817
|
/**
|
|
1324
|
-
*
|
|
2818
|
+
* 响应时间戳
|
|
2819
|
+
* @type {number}
|
|
2820
|
+
* @memberof GetTenantConfig200Response
|
|
2821
|
+
*/
|
|
2822
|
+
timestamp: number;
|
|
2823
|
+
/**
|
|
2824
|
+
* 请求路径
|
|
1325
2825
|
* @type {string}
|
|
1326
|
-
* @memberof
|
|
2826
|
+
* @memberof GetTenantConfig200Response
|
|
1327
2827
|
*/
|
|
1328
|
-
|
|
2828
|
+
path: string;
|
|
1329
2829
|
/**
|
|
1330
|
-
*
|
|
2830
|
+
* 请求ID
|
|
1331
2831
|
* @type {string}
|
|
1332
|
-
* @memberof
|
|
2832
|
+
* @memberof GetTenantConfig200Response
|
|
1333
2833
|
*/
|
|
1334
|
-
|
|
2834
|
+
requestId?: string;
|
|
1335
2835
|
/**
|
|
1336
|
-
*
|
|
1337
|
-
* @type {
|
|
1338
|
-
* @memberof
|
|
2836
|
+
* 链路追踪ID(用于全链路定位问题)
|
|
2837
|
+
* @type {string}
|
|
2838
|
+
* @memberof GetTenantConfig200Response
|
|
1339
2839
|
*/
|
|
1340
|
-
|
|
2840
|
+
traceId?: string;
|
|
1341
2841
|
}
|
|
1342
2842
|
/**
|
|
1343
|
-
*
|
|
1344
|
-
*/
|
|
1345
|
-
declare const ManifestComponentSourceEnum: {
|
|
1346
|
-
readonly BUNDLED: "bundled";
|
|
1347
|
-
readonly REMOTE: "remote";
|
|
1348
|
-
};
|
|
1349
|
-
type ManifestComponentSourceEnum = typeof ManifestComponentSourceEnum[keyof typeof ManifestComponentSourceEnum];
|
|
1350
|
-
/**
|
|
1351
|
-
* Check if a given object implements the ManifestComponent interface.
|
|
2843
|
+
* Check if a given object implements the GetTenantConfig200Response interface.
|
|
1352
2844
|
*/
|
|
1353
|
-
declare function
|
|
1354
|
-
declare function
|
|
1355
|
-
declare function
|
|
1356
|
-
declare function
|
|
2845
|
+
declare function instanceOfGetTenantConfig200Response(value: object): boolean;
|
|
2846
|
+
declare function GetTenantConfig200ResponseFromJSON(json: any): GetTenantConfig200Response;
|
|
2847
|
+
declare function GetTenantConfig200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetTenantConfig200Response;
|
|
2848
|
+
declare function GetTenantConfig200ResponseToJSON(value?: GetTenantConfig200Response | null): any;
|
|
1357
2849
|
|
|
1358
2850
|
/**
|
|
1359
2851
|
* 平台用户端 API
|
|
@@ -1367,31 +2859,31 @@ declare function ManifestComponentToJSON(value?: ManifestComponent | null): any;
|
|
|
1367
2859
|
* Do not edit the class manually.
|
|
1368
2860
|
*/
|
|
1369
2861
|
/**
|
|
1370
|
-
*
|
|
2862
|
+
* 健康检查响应(HealthCheckVo)
|
|
1371
2863
|
* @export
|
|
1372
|
-
* @interface
|
|
2864
|
+
* @interface HealthCheckResponse
|
|
1373
2865
|
*/
|
|
1374
|
-
interface
|
|
2866
|
+
interface HealthCheckResponse {
|
|
1375
2867
|
/**
|
|
1376
|
-
*
|
|
2868
|
+
* 服务状态
|
|
1377
2869
|
* @type {string}
|
|
1378
|
-
* @memberof
|
|
2870
|
+
* @memberof HealthCheckResponse
|
|
1379
2871
|
*/
|
|
1380
|
-
|
|
2872
|
+
status: string;
|
|
1381
2873
|
/**
|
|
1382
|
-
*
|
|
2874
|
+
* 响应时间戳
|
|
1383
2875
|
* @type {string}
|
|
1384
|
-
* @memberof
|
|
2876
|
+
* @memberof HealthCheckResponse
|
|
1385
2877
|
*/
|
|
1386
|
-
|
|
2878
|
+
timestamp: string;
|
|
1387
2879
|
}
|
|
1388
2880
|
/**
|
|
1389
|
-
* Check if a given object implements the
|
|
2881
|
+
* Check if a given object implements the HealthCheckResponse interface.
|
|
1390
2882
|
*/
|
|
1391
|
-
declare function
|
|
1392
|
-
declare function
|
|
1393
|
-
declare function
|
|
1394
|
-
declare function
|
|
2883
|
+
declare function instanceOfHealthCheckResponse(value: object): boolean;
|
|
2884
|
+
declare function HealthCheckResponseFromJSON(json: any): HealthCheckResponse;
|
|
2885
|
+
declare function HealthCheckResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): HealthCheckResponse;
|
|
2886
|
+
declare function HealthCheckResponseToJSON(value?: HealthCheckResponse | null): any;
|
|
1395
2887
|
|
|
1396
2888
|
/**
|
|
1397
2889
|
* 平台用户端 API
|
|
@@ -1406,87 +2898,67 @@ declare function ManifestRuntimeToJSON(value?: ManifestRuntime | null): any;
|
|
|
1406
2898
|
*/
|
|
1407
2899
|
|
|
1408
2900
|
/**
|
|
1409
|
-
*
|
|
2901
|
+
*
|
|
1410
2902
|
* @export
|
|
1411
|
-
* @interface
|
|
2903
|
+
* @interface HealthCheck200Response
|
|
1412
2904
|
*/
|
|
1413
|
-
interface
|
|
2905
|
+
interface HealthCheck200Response {
|
|
1414
2906
|
/**
|
|
1415
|
-
*
|
|
1416
|
-
* @type {
|
|
1417
|
-
* @memberof
|
|
2907
|
+
* 请求是否成功
|
|
2908
|
+
* @type {boolean}
|
|
2909
|
+
* @memberof HealthCheck200Response
|
|
1418
2910
|
*/
|
|
1419
|
-
|
|
2911
|
+
success: boolean;
|
|
1420
2912
|
/**
|
|
1421
|
-
*
|
|
2913
|
+
* 业务状态码
|
|
1422
2914
|
* @type {string}
|
|
1423
|
-
* @memberof
|
|
2915
|
+
* @memberof HealthCheck200Response
|
|
1424
2916
|
*/
|
|
1425
|
-
|
|
2917
|
+
code: string;
|
|
1426
2918
|
/**
|
|
1427
|
-
*
|
|
1428
|
-
* @type {
|
|
1429
|
-
* @memberof
|
|
2919
|
+
* 响应消息
|
|
2920
|
+
* @type {string}
|
|
2921
|
+
* @memberof HealthCheck200Response
|
|
1430
2922
|
*/
|
|
1431
|
-
|
|
2923
|
+
message: string;
|
|
1432
2924
|
/**
|
|
1433
2925
|
*
|
|
1434
|
-
* @type {
|
|
1435
|
-
* @memberof
|
|
2926
|
+
* @type {HealthCheckResponse}
|
|
2927
|
+
* @memberof HealthCheck200Response
|
|
1436
2928
|
*/
|
|
1437
|
-
|
|
1438
|
-
}
|
|
1439
|
-
/**
|
|
1440
|
-
* Check if a given object implements the ManifestResponse interface.
|
|
1441
|
-
*/
|
|
1442
|
-
declare function instanceOfManifestResponse(value: object): boolean;
|
|
1443
|
-
declare function ManifestResponseFromJSON(json: any): ManifestResponse;
|
|
1444
|
-
declare function ManifestResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ManifestResponse;
|
|
1445
|
-
declare function ManifestResponseToJSON(value?: ManifestResponse | null): any;
|
|
1446
|
-
|
|
1447
|
-
/**
|
|
1448
|
-
* 平台用户端 API
|
|
1449
|
-
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
1450
|
-
*
|
|
1451
|
-
* The version of the OpenAPI document: 1.0.0
|
|
1452
|
-
* Contact: dev@djvlc.com
|
|
1453
|
-
*
|
|
1454
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1455
|
-
* https://openapi-generator.tech
|
|
1456
|
-
* Do not edit the class manually.
|
|
1457
|
-
*/
|
|
1458
|
-
/**
|
|
1459
|
-
* 奖励信息(RewardInfoVo)
|
|
1460
|
-
* @export
|
|
1461
|
-
* @interface RewardInfo
|
|
1462
|
-
*/
|
|
1463
|
-
interface RewardInfo {
|
|
2929
|
+
data: HealthCheckResponse;
|
|
1464
2930
|
/**
|
|
1465
|
-
*
|
|
2931
|
+
* 响应时间戳
|
|
2932
|
+
* @type {number}
|
|
2933
|
+
* @memberof HealthCheck200Response
|
|
2934
|
+
*/
|
|
2935
|
+
timestamp: number;
|
|
2936
|
+
/**
|
|
2937
|
+
* 请求路径
|
|
1466
2938
|
* @type {string}
|
|
1467
|
-
* @memberof
|
|
2939
|
+
* @memberof HealthCheck200Response
|
|
1468
2940
|
*/
|
|
1469
|
-
|
|
2941
|
+
path: string;
|
|
1470
2942
|
/**
|
|
1471
|
-
*
|
|
1472
|
-
* @type {
|
|
1473
|
-
* @memberof
|
|
2943
|
+
* 请求ID
|
|
2944
|
+
* @type {string}
|
|
2945
|
+
* @memberof HealthCheck200Response
|
|
1474
2946
|
*/
|
|
1475
|
-
|
|
2947
|
+
requestId?: string;
|
|
1476
2948
|
/**
|
|
1477
|
-
*
|
|
2949
|
+
* 链路追踪ID(用于全链路定位问题)
|
|
1478
2950
|
* @type {string}
|
|
1479
|
-
* @memberof
|
|
2951
|
+
* @memberof HealthCheck200Response
|
|
1480
2952
|
*/
|
|
1481
|
-
|
|
2953
|
+
traceId?: string;
|
|
1482
2954
|
}
|
|
1483
2955
|
/**
|
|
1484
|
-
* Check if a given object implements the
|
|
2956
|
+
* Check if a given object implements the HealthCheck200Response interface.
|
|
1485
2957
|
*/
|
|
1486
|
-
declare function
|
|
1487
|
-
declare function
|
|
1488
|
-
declare function
|
|
1489
|
-
declare function
|
|
2958
|
+
declare function instanceOfHealthCheck200Response(value: object): boolean;
|
|
2959
|
+
declare function HealthCheck200ResponseFromJSON(json: any): HealthCheck200Response;
|
|
2960
|
+
declare function HealthCheck200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): HealthCheck200Response;
|
|
2961
|
+
declare function HealthCheck200ResponseToJSON(value?: HealthCheck200Response | null): any;
|
|
1490
2962
|
|
|
1491
2963
|
/**
|
|
1492
2964
|
* 平台用户端 API
|
|
@@ -1499,33 +2971,32 @@ declare function RewardInfoToJSON(value?: RewardInfo | null): any;
|
|
|
1499
2971
|
* https://openapi-generator.tech
|
|
1500
2972
|
* Do not edit the class manually.
|
|
1501
2973
|
*/
|
|
1502
|
-
|
|
1503
2974
|
/**
|
|
1504
|
-
*
|
|
2975
|
+
* 健康检查项
|
|
1505
2976
|
* @export
|
|
1506
|
-
* @interface
|
|
2977
|
+
* @interface HealthCheckItem
|
|
1507
2978
|
*/
|
|
1508
|
-
interface
|
|
2979
|
+
interface HealthCheckItem {
|
|
1509
2980
|
/**
|
|
1510
|
-
*
|
|
1511
|
-
* @type {
|
|
1512
|
-
* @memberof
|
|
2981
|
+
* 检查状态
|
|
2982
|
+
* @type {string}
|
|
2983
|
+
* @memberof HealthCheckItem
|
|
1513
2984
|
*/
|
|
1514
|
-
|
|
2985
|
+
status?: string;
|
|
1515
2986
|
/**
|
|
1516
|
-
*
|
|
1517
|
-
* @type {
|
|
1518
|
-
* @memberof
|
|
2987
|
+
* 检查消息
|
|
2988
|
+
* @type {string}
|
|
2989
|
+
* @memberof HealthCheckItem
|
|
1519
2990
|
*/
|
|
1520
|
-
|
|
2991
|
+
message?: string;
|
|
1521
2992
|
}
|
|
1522
2993
|
/**
|
|
1523
|
-
* Check if a given object implements the
|
|
2994
|
+
* Check if a given object implements the HealthCheckItem interface.
|
|
1524
2995
|
*/
|
|
1525
|
-
declare function
|
|
1526
|
-
declare function
|
|
1527
|
-
declare function
|
|
1528
|
-
declare function
|
|
2996
|
+
declare function instanceOfHealthCheckItem(value: object): boolean;
|
|
2997
|
+
declare function HealthCheckItemFromJSON(json: any): HealthCheckItem;
|
|
2998
|
+
declare function HealthCheckItemFromJSONTyped(json: any, ignoreDiscriminator: boolean): HealthCheckItem;
|
|
2999
|
+
declare function HealthCheckItemToJSON(value?: HealthCheckItem | null): any;
|
|
1529
3000
|
|
|
1530
3001
|
/**
|
|
1531
3002
|
* 平台用户端 API
|
|
@@ -1538,53 +3009,26 @@ declare function MilestoneInfoToJSON(value?: MilestoneInfo | null): any;
|
|
|
1538
3009
|
* https://openapi-generator.tech
|
|
1539
3010
|
* Do not edit the class manually.
|
|
1540
3011
|
*/
|
|
1541
|
-
|
|
1542
3012
|
/**
|
|
1543
|
-
*
|
|
3013
|
+
* 存活检查响应(LivenessVo)
|
|
1544
3014
|
* @export
|
|
1545
|
-
* @interface
|
|
3015
|
+
* @interface LivenessResponse
|
|
1546
3016
|
*/
|
|
1547
|
-
interface
|
|
1548
|
-
/**
|
|
1549
|
-
* 全局 kill-switch
|
|
1550
|
-
* @type {boolean}
|
|
1551
|
-
* @memberof OpsConfig
|
|
1552
|
-
*/
|
|
1553
|
-
killSwitch: boolean;
|
|
1554
|
-
/**
|
|
1555
|
-
* 被阻断的组件列表
|
|
1556
|
-
* @type {Array<BlockedComponent>}
|
|
1557
|
-
* @memberof OpsConfig
|
|
1558
|
-
*/
|
|
1559
|
-
blockedComponents: Array<BlockedComponent>;
|
|
1560
|
-
/**
|
|
1561
|
-
* 被阻断的页面列表
|
|
1562
|
-
* @type {Array<string>}
|
|
1563
|
-
* @memberof OpsConfig
|
|
1564
|
-
*/
|
|
1565
|
-
blockedPages: Array<string>;
|
|
1566
|
-
/**
|
|
1567
|
-
* 功能开关
|
|
1568
|
-
* @type {{ [key: string]: boolean; }}
|
|
1569
|
-
* @memberof OpsConfig
|
|
1570
|
-
*/
|
|
1571
|
-
featureFlags: {
|
|
1572
|
-
[key: string]: boolean;
|
|
1573
|
-
};
|
|
3017
|
+
interface LivenessResponse {
|
|
1574
3018
|
/**
|
|
1575
|
-
*
|
|
1576
|
-
* @type {
|
|
1577
|
-
* @memberof
|
|
3019
|
+
* 服务状态
|
|
3020
|
+
* @type {string}
|
|
3021
|
+
* @memberof LivenessResponse
|
|
1578
3022
|
*/
|
|
1579
|
-
|
|
3023
|
+
status: string;
|
|
1580
3024
|
}
|
|
1581
3025
|
/**
|
|
1582
|
-
* Check if a given object implements the
|
|
3026
|
+
* Check if a given object implements the LivenessResponse interface.
|
|
1583
3027
|
*/
|
|
1584
|
-
declare function
|
|
1585
|
-
declare function
|
|
1586
|
-
declare function
|
|
1587
|
-
declare function
|
|
3028
|
+
declare function instanceOfLivenessResponse(value: object): boolean;
|
|
3029
|
+
declare function LivenessResponseFromJSON(json: any): LivenessResponse;
|
|
3030
|
+
declare function LivenessResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): LivenessResponse;
|
|
3031
|
+
declare function LivenessResponseToJSON(value?: LivenessResponse | null): any;
|
|
1588
3032
|
|
|
1589
3033
|
/**
|
|
1590
3034
|
* 平台用户端 API
|
|
@@ -1599,37 +3043,67 @@ declare function OpsConfigToJSON(value?: OpsConfig | null): any;
|
|
|
1599
3043
|
*/
|
|
1600
3044
|
|
|
1601
3045
|
/**
|
|
1602
|
-
*
|
|
3046
|
+
*
|
|
1603
3047
|
* @export
|
|
1604
|
-
* @interface
|
|
3048
|
+
* @interface LivenessCheck200Response
|
|
1605
3049
|
*/
|
|
1606
|
-
interface
|
|
3050
|
+
interface LivenessCheck200Response {
|
|
1607
3051
|
/**
|
|
1608
|
-
*
|
|
3052
|
+
* 请求是否成功
|
|
1609
3053
|
* @type {boolean}
|
|
1610
|
-
* @memberof
|
|
3054
|
+
* @memberof LivenessCheck200Response
|
|
1611
3055
|
*/
|
|
1612
3056
|
success: boolean;
|
|
1613
3057
|
/**
|
|
1614
|
-
*
|
|
1615
|
-
* @type {
|
|
1616
|
-
* @memberof
|
|
3058
|
+
* 业务状态码
|
|
3059
|
+
* @type {string}
|
|
3060
|
+
* @memberof LivenessCheck200Response
|
|
1617
3061
|
*/
|
|
1618
|
-
|
|
3062
|
+
code: string;
|
|
3063
|
+
/**
|
|
3064
|
+
* 响应消息
|
|
3065
|
+
* @type {string}
|
|
3066
|
+
* @memberof LivenessCheck200Response
|
|
3067
|
+
*/
|
|
3068
|
+
message: string;
|
|
1619
3069
|
/**
|
|
1620
3070
|
*
|
|
1621
|
-
* @type {
|
|
1622
|
-
* @memberof
|
|
3071
|
+
* @type {LivenessResponse}
|
|
3072
|
+
* @memberof LivenessCheck200Response
|
|
1623
3073
|
*/
|
|
1624
|
-
|
|
3074
|
+
data: LivenessResponse;
|
|
3075
|
+
/**
|
|
3076
|
+
* 响应时间戳
|
|
3077
|
+
* @type {number}
|
|
3078
|
+
* @memberof LivenessCheck200Response
|
|
3079
|
+
*/
|
|
3080
|
+
timestamp: number;
|
|
3081
|
+
/**
|
|
3082
|
+
* 请求路径
|
|
3083
|
+
* @type {string}
|
|
3084
|
+
* @memberof LivenessCheck200Response
|
|
3085
|
+
*/
|
|
3086
|
+
path: string;
|
|
3087
|
+
/**
|
|
3088
|
+
* 请求ID
|
|
3089
|
+
* @type {string}
|
|
3090
|
+
* @memberof LivenessCheck200Response
|
|
3091
|
+
*/
|
|
3092
|
+
requestId?: string;
|
|
3093
|
+
/**
|
|
3094
|
+
* 链路追踪ID(用于全链路定位问题)
|
|
3095
|
+
* @type {string}
|
|
3096
|
+
* @memberof LivenessCheck200Response
|
|
3097
|
+
*/
|
|
3098
|
+
traceId?: string;
|
|
1625
3099
|
}
|
|
1626
3100
|
/**
|
|
1627
|
-
* Check if a given object implements the
|
|
3101
|
+
* Check if a given object implements the LivenessCheck200Response interface.
|
|
1628
3102
|
*/
|
|
1629
|
-
declare function
|
|
1630
|
-
declare function
|
|
1631
|
-
declare function
|
|
1632
|
-
declare function
|
|
3103
|
+
declare function instanceOfLivenessCheck200Response(value: object): boolean;
|
|
3104
|
+
declare function LivenessCheck200ResponseFromJSON(json: any): LivenessCheck200Response;
|
|
3105
|
+
declare function LivenessCheck200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): LivenessCheck200Response;
|
|
3106
|
+
declare function LivenessCheck200ResponseToJSON(value?: LivenessCheck200Response | null): any;
|
|
1633
3107
|
|
|
1634
3108
|
/**
|
|
1635
3109
|
* 平台用户端 API
|
|
@@ -1737,6 +3211,81 @@ declare function QueryContextFromJSON(json: any): QueryContext;
|
|
|
1737
3211
|
declare function QueryContextFromJSONTyped(json: any, ignoreDiscriminator: boolean): QueryContext;
|
|
1738
3212
|
declare function QueryContextToJSON(value?: QueryContext | null): any;
|
|
1739
3213
|
|
|
3214
|
+
/**
|
|
3215
|
+
* 平台用户端 API
|
|
3216
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
3217
|
+
*
|
|
3218
|
+
* The version of the OpenAPI document: 1.0.0
|
|
3219
|
+
* Contact: dev@djvlc.com
|
|
3220
|
+
*
|
|
3221
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3222
|
+
* https://openapi-generator.tech
|
|
3223
|
+
* Do not edit the class manually.
|
|
3224
|
+
*/
|
|
3225
|
+
|
|
3226
|
+
/**
|
|
3227
|
+
*
|
|
3228
|
+
* @export
|
|
3229
|
+
* @interface QueryData200Response
|
|
3230
|
+
*/
|
|
3231
|
+
interface QueryData200Response {
|
|
3232
|
+
/**
|
|
3233
|
+
* 请求是否成功
|
|
3234
|
+
* @type {boolean}
|
|
3235
|
+
* @memberof QueryData200Response
|
|
3236
|
+
*/
|
|
3237
|
+
success: boolean;
|
|
3238
|
+
/**
|
|
3239
|
+
* 业务状态码
|
|
3240
|
+
* @type {string}
|
|
3241
|
+
* @memberof QueryData200Response
|
|
3242
|
+
*/
|
|
3243
|
+
code: string;
|
|
3244
|
+
/**
|
|
3245
|
+
* 响应消息
|
|
3246
|
+
* @type {string}
|
|
3247
|
+
* @memberof QueryData200Response
|
|
3248
|
+
*/
|
|
3249
|
+
message: string;
|
|
3250
|
+
/**
|
|
3251
|
+
*
|
|
3252
|
+
* @type {QueryDataResponse}
|
|
3253
|
+
* @memberof QueryData200Response
|
|
3254
|
+
*/
|
|
3255
|
+
data: QueryDataResponse;
|
|
3256
|
+
/**
|
|
3257
|
+
* 响应时间戳
|
|
3258
|
+
* @type {number}
|
|
3259
|
+
* @memberof QueryData200Response
|
|
3260
|
+
*/
|
|
3261
|
+
timestamp: number;
|
|
3262
|
+
/**
|
|
3263
|
+
* 请求路径
|
|
3264
|
+
* @type {string}
|
|
3265
|
+
* @memberof QueryData200Response
|
|
3266
|
+
*/
|
|
3267
|
+
path: string;
|
|
3268
|
+
/**
|
|
3269
|
+
* 请求ID
|
|
3270
|
+
* @type {string}
|
|
3271
|
+
* @memberof QueryData200Response
|
|
3272
|
+
*/
|
|
3273
|
+
requestId?: string;
|
|
3274
|
+
/**
|
|
3275
|
+
* 链路追踪ID(用于全链路定位问题)
|
|
3276
|
+
* @type {string}
|
|
3277
|
+
* @memberof QueryData200Response
|
|
3278
|
+
*/
|
|
3279
|
+
traceId?: string;
|
|
3280
|
+
}
|
|
3281
|
+
/**
|
|
3282
|
+
* Check if a given object implements the QueryData200Response interface.
|
|
3283
|
+
*/
|
|
3284
|
+
declare function instanceOfQueryData200Response(value: object): boolean;
|
|
3285
|
+
declare function QueryData200ResponseFromJSON(json: any): QueryData200Response;
|
|
3286
|
+
declare function QueryData200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): QueryData200Response;
|
|
3287
|
+
declare function QueryData200ResponseToJSON(value?: QueryData200Response | null): any;
|
|
3288
|
+
|
|
1740
3289
|
/**
|
|
1741
3290
|
* 平台用户端 API
|
|
1742
3291
|
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
@@ -1795,68 +3344,35 @@ declare function QueryDataRequestToJSON(value?: QueryDataRequest | null): any;
|
|
|
1795
3344
|
* https://openapi-generator.tech
|
|
1796
3345
|
* Do not edit the class manually.
|
|
1797
3346
|
*/
|
|
3347
|
+
|
|
1798
3348
|
/**
|
|
1799
|
-
*
|
|
3349
|
+
* 就绪检查响应(ReadinessVo)
|
|
1800
3350
|
* @export
|
|
1801
|
-
* @interface
|
|
3351
|
+
* @interface ReadinessResponse
|
|
1802
3352
|
*/
|
|
1803
|
-
interface
|
|
1804
|
-
/**
|
|
1805
|
-
* 版本 UID
|
|
1806
|
-
* @type {string}
|
|
1807
|
-
* @memberof QueryDefinitionResponse
|
|
1808
|
-
*/
|
|
1809
|
-
uid: string;
|
|
1810
|
-
/**
|
|
1811
|
-
* 所属查询 UID
|
|
1812
|
-
* @type {string}
|
|
1813
|
-
* @memberof QueryDefinitionResponse
|
|
1814
|
-
*/
|
|
1815
|
-
queryUid: string;
|
|
1816
|
-
/**
|
|
1817
|
-
* 版本号(递增)
|
|
1818
|
-
* @type {number}
|
|
1819
|
-
* @memberof QueryDefinitionResponse
|
|
1820
|
-
*/
|
|
1821
|
-
versionNumber: number;
|
|
3353
|
+
interface ReadinessResponse {
|
|
1822
3354
|
/**
|
|
1823
|
-
*
|
|
3355
|
+
* 服务状态
|
|
1824
3356
|
* @type {string}
|
|
1825
|
-
* @memberof
|
|
3357
|
+
* @memberof ReadinessResponse
|
|
1826
3358
|
*/
|
|
1827
|
-
|
|
3359
|
+
status: string;
|
|
1828
3360
|
/**
|
|
1829
|
-
*
|
|
1830
|
-
* @type {{ [key: string]:
|
|
1831
|
-
* @memberof
|
|
3361
|
+
* 各检查项状态
|
|
3362
|
+
* @type {{ [key: string]: HealthCheckItem; }}
|
|
3363
|
+
* @memberof ReadinessResponse
|
|
1832
3364
|
*/
|
|
1833
|
-
|
|
1834
|
-
[key: string]:
|
|
3365
|
+
checks: {
|
|
3366
|
+
[key: string]: HealthCheckItem;
|
|
1835
3367
|
};
|
|
1836
|
-
/**
|
|
1837
|
-
* 版本状态
|
|
1838
|
-
* @type {string}
|
|
1839
|
-
* @memberof QueryDefinitionResponse
|
|
1840
|
-
*/
|
|
1841
|
-
status: QueryDefinitionResponseStatusEnum;
|
|
1842
3368
|
}
|
|
1843
3369
|
/**
|
|
1844
|
-
*
|
|
1845
|
-
*/
|
|
1846
|
-
declare const QueryDefinitionResponseStatusEnum: {
|
|
1847
|
-
readonly DRAFT: "draft";
|
|
1848
|
-
readonly STABLE: "stable";
|
|
1849
|
-
readonly DEPRECATED: "deprecated";
|
|
1850
|
-
readonly BLOCKED: "blocked";
|
|
1851
|
-
};
|
|
1852
|
-
type QueryDefinitionResponseStatusEnum = typeof QueryDefinitionResponseStatusEnum[keyof typeof QueryDefinitionResponseStatusEnum];
|
|
1853
|
-
/**
|
|
1854
|
-
* Check if a given object implements the QueryDefinitionResponse interface.
|
|
3370
|
+
* Check if a given object implements the ReadinessResponse interface.
|
|
1855
3371
|
*/
|
|
1856
|
-
declare function
|
|
1857
|
-
declare function
|
|
1858
|
-
declare function
|
|
1859
|
-
declare function
|
|
3372
|
+
declare function instanceOfReadinessResponse(value: object): boolean;
|
|
3373
|
+
declare function ReadinessResponseFromJSON(json: any): ReadinessResponse;
|
|
3374
|
+
declare function ReadinessResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReadinessResponse;
|
|
3375
|
+
declare function ReadinessResponseToJSON(value?: ReadinessResponse | null): any;
|
|
1860
3376
|
|
|
1861
3377
|
/**
|
|
1862
3378
|
* 平台用户端 API
|
|
@@ -1871,33 +3387,67 @@ declare function QueryDefinitionResponseToJSON(value?: QueryDefinitionResponse |
|
|
|
1871
3387
|
*/
|
|
1872
3388
|
|
|
1873
3389
|
/**
|
|
1874
|
-
*
|
|
3390
|
+
*
|
|
1875
3391
|
* @export
|
|
1876
|
-
* @interface
|
|
3392
|
+
* @interface ReadinessCheck200Response
|
|
1877
3393
|
*/
|
|
1878
|
-
interface
|
|
3394
|
+
interface ReadinessCheck200Response {
|
|
3395
|
+
/**
|
|
3396
|
+
* 请求是否成功
|
|
3397
|
+
* @type {boolean}
|
|
3398
|
+
* @memberof ReadinessCheck200Response
|
|
3399
|
+
*/
|
|
3400
|
+
success: boolean;
|
|
3401
|
+
/**
|
|
3402
|
+
* 业务状态码
|
|
3403
|
+
* @type {string}
|
|
3404
|
+
* @memberof ReadinessCheck200Response
|
|
3405
|
+
*/
|
|
3406
|
+
code: string;
|
|
3407
|
+
/**
|
|
3408
|
+
* 响应消息
|
|
3409
|
+
* @type {string}
|
|
3410
|
+
* @memberof ReadinessCheck200Response
|
|
3411
|
+
*/
|
|
3412
|
+
message: string;
|
|
3413
|
+
/**
|
|
3414
|
+
*
|
|
3415
|
+
* @type {ReadinessResponse}
|
|
3416
|
+
* @memberof ReadinessCheck200Response
|
|
3417
|
+
*/
|
|
3418
|
+
data: ReadinessResponse;
|
|
1879
3419
|
/**
|
|
1880
|
-
*
|
|
3420
|
+
* 响应时间戳
|
|
3421
|
+
* @type {number}
|
|
3422
|
+
* @memberof ReadinessCheck200Response
|
|
3423
|
+
*/
|
|
3424
|
+
timestamp: number;
|
|
3425
|
+
/**
|
|
3426
|
+
* 请求路径
|
|
1881
3427
|
* @type {string}
|
|
1882
|
-
* @memberof
|
|
3428
|
+
* @memberof ReadinessCheck200Response
|
|
1883
3429
|
*/
|
|
1884
|
-
|
|
3430
|
+
path: string;
|
|
1885
3431
|
/**
|
|
1886
|
-
*
|
|
1887
|
-
* @type {
|
|
1888
|
-
* @memberof
|
|
3432
|
+
* 请求ID
|
|
3433
|
+
* @type {string}
|
|
3434
|
+
* @memberof ReadinessCheck200Response
|
|
1889
3435
|
*/
|
|
1890
|
-
|
|
1891
|
-
|
|
1892
|
-
|
|
3436
|
+
requestId?: string;
|
|
3437
|
+
/**
|
|
3438
|
+
* 链路追踪ID(用于全链路定位问题)
|
|
3439
|
+
* @type {string}
|
|
3440
|
+
* @memberof ReadinessCheck200Response
|
|
3441
|
+
*/
|
|
3442
|
+
traceId?: string;
|
|
1893
3443
|
}
|
|
1894
3444
|
/**
|
|
1895
|
-
* Check if a given object implements the
|
|
3445
|
+
* Check if a given object implements the ReadinessCheck200Response interface.
|
|
1896
3446
|
*/
|
|
1897
|
-
declare function
|
|
1898
|
-
declare function
|
|
1899
|
-
declare function
|
|
1900
|
-
declare function
|
|
3447
|
+
declare function instanceOfReadinessCheck200Response(value: object): boolean;
|
|
3448
|
+
declare function ReadinessCheck200ResponseFromJSON(json: any): ReadinessCheck200Response;
|
|
3449
|
+
declare function ReadinessCheck200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReadinessCheck200Response;
|
|
3450
|
+
declare function ReadinessCheck200ResponseToJSON(value?: ReadinessCheck200Response | null): any;
|
|
1901
3451
|
|
|
1902
3452
|
/**
|
|
1903
3453
|
* 平台用户端 API
|
|
@@ -1986,6 +3536,81 @@ declare function ResolvePageResponseFromJSON(json: any): ResolvePageResponse;
|
|
|
1986
3536
|
declare function ResolvePageResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResolvePageResponse;
|
|
1987
3537
|
declare function ResolvePageResponseToJSON(value?: ResolvePageResponse | null): any;
|
|
1988
3538
|
|
|
3539
|
+
/**
|
|
3540
|
+
* 平台用户端 API
|
|
3541
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
3542
|
+
*
|
|
3543
|
+
* The version of the OpenAPI document: 1.0.0
|
|
3544
|
+
* Contact: dev@djvlc.com
|
|
3545
|
+
*
|
|
3546
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3547
|
+
* https://openapi-generator.tech
|
|
3548
|
+
* Do not edit the class manually.
|
|
3549
|
+
*/
|
|
3550
|
+
|
|
3551
|
+
/**
|
|
3552
|
+
*
|
|
3553
|
+
* @export
|
|
3554
|
+
* @interface ResolvePage200Response
|
|
3555
|
+
*/
|
|
3556
|
+
interface ResolvePage200Response {
|
|
3557
|
+
/**
|
|
3558
|
+
* 请求是否成功
|
|
3559
|
+
* @type {boolean}
|
|
3560
|
+
* @memberof ResolvePage200Response
|
|
3561
|
+
*/
|
|
3562
|
+
success: boolean;
|
|
3563
|
+
/**
|
|
3564
|
+
* 业务状态码
|
|
3565
|
+
* @type {string}
|
|
3566
|
+
* @memberof ResolvePage200Response
|
|
3567
|
+
*/
|
|
3568
|
+
code: string;
|
|
3569
|
+
/**
|
|
3570
|
+
* 响应消息
|
|
3571
|
+
* @type {string}
|
|
3572
|
+
* @memberof ResolvePage200Response
|
|
3573
|
+
*/
|
|
3574
|
+
message: string;
|
|
3575
|
+
/**
|
|
3576
|
+
*
|
|
3577
|
+
* @type {ResolvePageResponse}
|
|
3578
|
+
* @memberof ResolvePage200Response
|
|
3579
|
+
*/
|
|
3580
|
+
data: ResolvePageResponse;
|
|
3581
|
+
/**
|
|
3582
|
+
* 响应时间戳
|
|
3583
|
+
* @type {number}
|
|
3584
|
+
* @memberof ResolvePage200Response
|
|
3585
|
+
*/
|
|
3586
|
+
timestamp: number;
|
|
3587
|
+
/**
|
|
3588
|
+
* 请求路径
|
|
3589
|
+
* @type {string}
|
|
3590
|
+
* @memberof ResolvePage200Response
|
|
3591
|
+
*/
|
|
3592
|
+
path: string;
|
|
3593
|
+
/**
|
|
3594
|
+
* 请求ID
|
|
3595
|
+
* @type {string}
|
|
3596
|
+
* @memberof ResolvePage200Response
|
|
3597
|
+
*/
|
|
3598
|
+
requestId?: string;
|
|
3599
|
+
/**
|
|
3600
|
+
* 链路追踪ID(用于全链路定位问题)
|
|
3601
|
+
* @type {string}
|
|
3602
|
+
* @memberof ResolvePage200Response
|
|
3603
|
+
*/
|
|
3604
|
+
traceId?: string;
|
|
3605
|
+
}
|
|
3606
|
+
/**
|
|
3607
|
+
* Check if a given object implements the ResolvePage200Response interface.
|
|
3608
|
+
*/
|
|
3609
|
+
declare function instanceOfResolvePage200Response(value: object): boolean;
|
|
3610
|
+
declare function ResolvePage200ResponseFromJSON(json: any): ResolvePage200Response;
|
|
3611
|
+
declare function ResolvePage200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResolvePage200Response;
|
|
3612
|
+
declare function ResolvePage200ResponseToJSON(value?: ResolvePage200Response | null): any;
|
|
3613
|
+
|
|
1989
3614
|
/**
|
|
1990
3615
|
* 平台用户端 API
|
|
1991
3616
|
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
@@ -2062,50 +3687,6 @@ declare function ResolveTenantDataFromJSON(json: any): ResolveTenantData;
|
|
|
2062
3687
|
declare function ResolveTenantDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResolveTenantData;
|
|
2063
3688
|
declare function ResolveTenantDataToJSON(value?: ResolveTenantData | null): any;
|
|
2064
3689
|
|
|
2065
|
-
/**
|
|
2066
|
-
* 平台用户端 API
|
|
2067
|
-
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
2068
|
-
*
|
|
2069
|
-
* The version of the OpenAPI document: 1.0.0
|
|
2070
|
-
* Contact: dev@djvlc.com
|
|
2071
|
-
*
|
|
2072
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2073
|
-
* https://openapi-generator.tech
|
|
2074
|
-
* Do not edit the class manually.
|
|
2075
|
-
*/
|
|
2076
|
-
/**
|
|
2077
|
-
* 租户解析请求(TenantResolveDto)
|
|
2078
|
-
* @export
|
|
2079
|
-
* @interface ResolveTenantRequest
|
|
2080
|
-
*/
|
|
2081
|
-
interface ResolveTenantRequest {
|
|
2082
|
-
/**
|
|
2083
|
-
* 应用 Key
|
|
2084
|
-
* @type {string}
|
|
2085
|
-
* @memberof ResolveTenantRequest
|
|
2086
|
-
*/
|
|
2087
|
-
appKey?: string;
|
|
2088
|
-
/**
|
|
2089
|
-
* 主机/域名
|
|
2090
|
-
* @type {string}
|
|
2091
|
-
* @memberof ResolveTenantRequest
|
|
2092
|
-
*/
|
|
2093
|
-
host?: string;
|
|
2094
|
-
/**
|
|
2095
|
-
* 渠道
|
|
2096
|
-
* @type {string}
|
|
2097
|
-
* @memberof ResolveTenantRequest
|
|
2098
|
-
*/
|
|
2099
|
-
channel?: string;
|
|
2100
|
-
}
|
|
2101
|
-
/**
|
|
2102
|
-
* Check if a given object implements the ResolveTenantRequest interface.
|
|
2103
|
-
*/
|
|
2104
|
-
declare function instanceOfResolveTenantRequest(value: object): boolean;
|
|
2105
|
-
declare function ResolveTenantRequestFromJSON(json: any): ResolveTenantRequest;
|
|
2106
|
-
declare function ResolveTenantRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResolveTenantRequest;
|
|
2107
|
-
declare function ResolveTenantRequestToJSON(value?: ResolveTenantRequest | null): any;
|
|
2108
|
-
|
|
2109
3690
|
/**
|
|
2110
3691
|
* 平台用户端 API
|
|
2111
3692
|
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
@@ -2156,89 +3737,69 @@ declare function ResolveTenantResponseToJSON(value?: ResolveTenantResponse | nul
|
|
|
2156
3737
|
* https://openapi-generator.tech
|
|
2157
3738
|
* Do not edit the class manually.
|
|
2158
3739
|
*/
|
|
3740
|
+
|
|
2159
3741
|
/**
|
|
2160
|
-
*
|
|
3742
|
+
*
|
|
2161
3743
|
* @export
|
|
2162
|
-
* @interface
|
|
3744
|
+
* @interface ResolveTenant200Response
|
|
2163
3745
|
*/
|
|
2164
|
-
interface
|
|
3746
|
+
interface ResolveTenant200Response {
|
|
2165
3747
|
/**
|
|
2166
|
-
*
|
|
3748
|
+
* 请求是否成功
|
|
3749
|
+
* @type {boolean}
|
|
3750
|
+
* @memberof ResolveTenant200Response
|
|
3751
|
+
*/
|
|
3752
|
+
success: boolean;
|
|
3753
|
+
/**
|
|
3754
|
+
* 业务状态码
|
|
2167
3755
|
* @type {string}
|
|
2168
|
-
* @memberof
|
|
3756
|
+
* @memberof ResolveTenant200Response
|
|
2169
3757
|
*/
|
|
2170
|
-
|
|
3758
|
+
code: string;
|
|
2171
3759
|
/**
|
|
2172
|
-
*
|
|
3760
|
+
* 响应消息
|
|
2173
3761
|
* @type {string}
|
|
2174
|
-
* @memberof
|
|
3762
|
+
* @memberof ResolveTenant200Response
|
|
2175
3763
|
*/
|
|
2176
|
-
|
|
3764
|
+
message: string;
|
|
2177
3765
|
/**
|
|
2178
|
-
*
|
|
2179
|
-
* @type {
|
|
2180
|
-
* @memberof
|
|
3766
|
+
*
|
|
3767
|
+
* @type {ResolveTenantResponse}
|
|
3768
|
+
* @memberof ResolveTenant200Response
|
|
2181
3769
|
*/
|
|
2182
|
-
|
|
3770
|
+
data: ResolveTenantResponse;
|
|
2183
3771
|
/**
|
|
2184
|
-
*
|
|
3772
|
+
* 响应时间戳
|
|
2185
3773
|
* @type {number}
|
|
2186
|
-
* @memberof
|
|
3774
|
+
* @memberof ResolveTenant200Response
|
|
2187
3775
|
*/
|
|
2188
|
-
|
|
3776
|
+
timestamp: number;
|
|
2189
3777
|
/**
|
|
2190
|
-
*
|
|
2191
|
-
* @type {
|
|
2192
|
-
* @memberof
|
|
3778
|
+
* 请求路径
|
|
3779
|
+
* @type {string}
|
|
3780
|
+
* @memberof ResolveTenant200Response
|
|
2193
3781
|
*/
|
|
2194
|
-
|
|
2195
|
-
}
|
|
2196
|
-
/**
|
|
2197
|
-
* Check if a given object implements the SigninCalendarData interface.
|
|
2198
|
-
*/
|
|
2199
|
-
declare function instanceOfSigninCalendarData(value: object): boolean;
|
|
2200
|
-
declare function SigninCalendarDataFromJSON(json: any): SigninCalendarData;
|
|
2201
|
-
declare function SigninCalendarDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): SigninCalendarData;
|
|
2202
|
-
declare function SigninCalendarDataToJSON(value?: SigninCalendarData | null): any;
|
|
2203
|
-
|
|
2204
|
-
/**
|
|
2205
|
-
* 平台用户端 API
|
|
2206
|
-
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
2207
|
-
*
|
|
2208
|
-
* The version of the OpenAPI document: 1.0.0
|
|
2209
|
-
* Contact: dev@djvlc.com
|
|
2210
|
-
*
|
|
2211
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2212
|
-
* https://openapi-generator.tech
|
|
2213
|
-
* Do not edit the class manually.
|
|
2214
|
-
*/
|
|
2215
|
-
|
|
2216
|
-
/**
|
|
2217
|
-
* 签到日历响应(SigninCalendarVo)
|
|
2218
|
-
* @export
|
|
2219
|
-
* @interface SigninCalendarResponse
|
|
2220
|
-
*/
|
|
2221
|
-
interface SigninCalendarResponse {
|
|
3782
|
+
path: string;
|
|
2222
3783
|
/**
|
|
2223
|
-
*
|
|
2224
|
-
* @type {
|
|
2225
|
-
* @memberof
|
|
3784
|
+
* 请求ID
|
|
3785
|
+
* @type {string}
|
|
3786
|
+
* @memberof ResolveTenant200Response
|
|
2226
3787
|
*/
|
|
2227
|
-
|
|
3788
|
+
requestId?: string;
|
|
2228
3789
|
/**
|
|
2229
|
-
*
|
|
2230
|
-
* @type {
|
|
2231
|
-
* @memberof
|
|
3790
|
+
* 链路追踪ID(用于全链路定位问题)
|
|
3791
|
+
* @type {string}
|
|
3792
|
+
* @memberof ResolveTenant200Response
|
|
2232
3793
|
*/
|
|
2233
|
-
|
|
3794
|
+
traceId?: string;
|
|
2234
3795
|
}
|
|
2235
3796
|
/**
|
|
2236
|
-
* Check if a given object implements the
|
|
3797
|
+
* Check if a given object implements the ResolveTenant200Response interface.
|
|
2237
3798
|
*/
|
|
2238
|
-
declare function
|
|
2239
|
-
declare function
|
|
2240
|
-
declare function
|
|
2241
|
-
declare function
|
|
3799
|
+
declare function instanceOfResolveTenant200Response(value: object): boolean;
|
|
3800
|
+
declare function ResolveTenant200ResponseFromJSON(json: any): ResolveTenant200Response;
|
|
3801
|
+
declare function ResolveTenant200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResolveTenant200Response;
|
|
3802
|
+
declare function ResolveTenant200ResponseToJSON(value?: ResolveTenant200Response | null): any;
|
|
2242
3803
|
|
|
2243
3804
|
/**
|
|
2244
3805
|
* 平台用户端 API
|
|
@@ -2251,63 +3812,38 @@ declare function SigninCalendarResponseToJSON(value?: SigninCalendarResponse | n
|
|
|
2251
3812
|
* https://openapi-generator.tech
|
|
2252
3813
|
* Do not edit the class manually.
|
|
2253
3814
|
*/
|
|
2254
|
-
|
|
2255
3815
|
/**
|
|
2256
|
-
*
|
|
3816
|
+
* 租户解析请求(TenantResolveDto)
|
|
2257
3817
|
* @export
|
|
2258
|
-
* @interface
|
|
3818
|
+
* @interface ResolveTenantRequest
|
|
2259
3819
|
*/
|
|
2260
|
-
interface
|
|
3820
|
+
interface ResolveTenantRequest {
|
|
2261
3821
|
/**
|
|
2262
|
-
*
|
|
3822
|
+
* 应用 Key
|
|
2263
3823
|
* @type {string}
|
|
2264
|
-
* @memberof
|
|
2265
|
-
*/
|
|
2266
|
-
activityUid: string;
|
|
2267
|
-
/**
|
|
2268
|
-
* 今日是否已签到
|
|
2269
|
-
* @type {boolean}
|
|
2270
|
-
* @memberof SigninStatusResponse
|
|
2271
|
-
*/
|
|
2272
|
-
hasSignedToday: boolean;
|
|
2273
|
-
/**
|
|
2274
|
-
* 连续签到天数
|
|
2275
|
-
* @type {number}
|
|
2276
|
-
* @memberof SigninStatusResponse
|
|
2277
|
-
*/
|
|
2278
|
-
consecutiveDays: number;
|
|
2279
|
-
/**
|
|
2280
|
-
* 累计签到天数
|
|
2281
|
-
* @type {number}
|
|
2282
|
-
* @memberof SigninStatusResponse
|
|
2283
|
-
*/
|
|
2284
|
-
totalDays: number;
|
|
2285
|
-
/**
|
|
2286
|
-
* 签到日期列表
|
|
2287
|
-
* @type {Array<string>}
|
|
2288
|
-
* @memberof SigninStatusResponse
|
|
3824
|
+
* @memberof ResolveTenantRequest
|
|
2289
3825
|
*/
|
|
2290
|
-
|
|
3826
|
+
appKey?: string;
|
|
2291
3827
|
/**
|
|
2292
|
-
*
|
|
2293
|
-
* @type {
|
|
2294
|
-
* @memberof
|
|
3828
|
+
* 主机/域名
|
|
3829
|
+
* @type {string}
|
|
3830
|
+
* @memberof ResolveTenantRequest
|
|
2295
3831
|
*/
|
|
2296
|
-
|
|
3832
|
+
host?: string;
|
|
2297
3833
|
/**
|
|
2298
|
-
*
|
|
2299
|
-
* @type {
|
|
2300
|
-
* @memberof
|
|
3834
|
+
* 渠道
|
|
3835
|
+
* @type {string}
|
|
3836
|
+
* @memberof ResolveTenantRequest
|
|
2301
3837
|
*/
|
|
2302
|
-
|
|
3838
|
+
channel?: string;
|
|
2303
3839
|
}
|
|
2304
3840
|
/**
|
|
2305
|
-
* Check if a given object implements the
|
|
3841
|
+
* Check if a given object implements the ResolveTenantRequest interface.
|
|
2306
3842
|
*/
|
|
2307
|
-
declare function
|
|
2308
|
-
declare function
|
|
2309
|
-
declare function
|
|
2310
|
-
declare function
|
|
3843
|
+
declare function instanceOfResolveTenantRequest(value: object): boolean;
|
|
3844
|
+
declare function ResolveTenantRequestFromJSON(json: any): ResolveTenantRequest;
|
|
3845
|
+
declare function ResolveTenantRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResolveTenantRequest;
|
|
3846
|
+
declare function ResolveTenantRequestToJSON(value?: ResolveTenantRequest | null): any;
|
|
2311
3847
|
|
|
2312
3848
|
/**
|
|
2313
3849
|
* 平台用户端 API
|
|
@@ -2383,117 +3919,6 @@ declare function SuccessResponseFromJSON(json: any): SuccessResponse;
|
|
|
2383
3919
|
declare function SuccessResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SuccessResponse;
|
|
2384
3920
|
declare function SuccessResponseToJSON(value?: SuccessResponse | null): any;
|
|
2385
3921
|
|
|
2386
|
-
/**
|
|
2387
|
-
* 平台用户端 API
|
|
2388
|
-
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
2389
|
-
*
|
|
2390
|
-
* The version of the OpenAPI document: 1.0.0
|
|
2391
|
-
* Contact: dev@djvlc.com
|
|
2392
|
-
*
|
|
2393
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2394
|
-
* https://openapi-generator.tech
|
|
2395
|
-
* Do not edit the class manually.
|
|
2396
|
-
*/
|
|
2397
|
-
/**
|
|
2398
|
-
* 租户配置数据(TenantConfigDataVo)
|
|
2399
|
-
* @export
|
|
2400
|
-
* @interface TenantConfigData
|
|
2401
|
-
*/
|
|
2402
|
-
interface TenantConfigData {
|
|
2403
|
-
/**
|
|
2404
|
-
* 应用 ID
|
|
2405
|
-
* @type {string}
|
|
2406
|
-
* @memberof TenantConfigData
|
|
2407
|
-
*/
|
|
2408
|
-
appId: string;
|
|
2409
|
-
/**
|
|
2410
|
-
* 租户状态
|
|
2411
|
-
* @type {string}
|
|
2412
|
-
* @memberof TenantConfigData
|
|
2413
|
-
*/
|
|
2414
|
-
status: string;
|
|
2415
|
-
/**
|
|
2416
|
-
* 功能开关
|
|
2417
|
-
* @type {{ [key: string]: boolean; }}
|
|
2418
|
-
* @memberof TenantConfigData
|
|
2419
|
-
*/
|
|
2420
|
-
featureFlags?: {
|
|
2421
|
-
[key: string]: boolean;
|
|
2422
|
-
};
|
|
2423
|
-
/**
|
|
2424
|
-
* 主题配置
|
|
2425
|
-
* @type {{ [key: string]: any; }}
|
|
2426
|
-
* @memberof TenantConfigData
|
|
2427
|
-
*/
|
|
2428
|
-
theme?: {
|
|
2429
|
-
[key: string]: any;
|
|
2430
|
-
};
|
|
2431
|
-
/**
|
|
2432
|
-
* CDN 基地址
|
|
2433
|
-
* @type {string}
|
|
2434
|
-
* @memberof TenantConfigData
|
|
2435
|
-
*/
|
|
2436
|
-
cdnBase?: string;
|
|
2437
|
-
/**
|
|
2438
|
-
* 阻断组件列表
|
|
2439
|
-
* @type {Array<string>}
|
|
2440
|
-
* @memberof TenantConfigData
|
|
2441
|
-
*/
|
|
2442
|
-
blockedComponents?: Array<string>;
|
|
2443
|
-
/**
|
|
2444
|
-
* 全局 killSwitch
|
|
2445
|
-
* @type {boolean}
|
|
2446
|
-
* @memberof TenantConfigData
|
|
2447
|
-
*/
|
|
2448
|
-
killSwitch?: boolean;
|
|
2449
|
-
}
|
|
2450
|
-
/**
|
|
2451
|
-
* Check if a given object implements the TenantConfigData interface.
|
|
2452
|
-
*/
|
|
2453
|
-
declare function instanceOfTenantConfigData(value: object): boolean;
|
|
2454
|
-
declare function TenantConfigDataFromJSON(json: any): TenantConfigData;
|
|
2455
|
-
declare function TenantConfigDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): TenantConfigData;
|
|
2456
|
-
declare function TenantConfigDataToJSON(value?: TenantConfigData | null): any;
|
|
2457
|
-
|
|
2458
|
-
/**
|
|
2459
|
-
* 平台用户端 API
|
|
2460
|
-
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
2461
|
-
*
|
|
2462
|
-
* The version of the OpenAPI document: 1.0.0
|
|
2463
|
-
* Contact: dev@djvlc.com
|
|
2464
|
-
*
|
|
2465
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2466
|
-
* https://openapi-generator.tech
|
|
2467
|
-
* Do not edit the class manually.
|
|
2468
|
-
*/
|
|
2469
|
-
|
|
2470
|
-
/**
|
|
2471
|
-
* 租户配置响应(TenantConfigVo)
|
|
2472
|
-
* @export
|
|
2473
|
-
* @interface TenantConfigResponse
|
|
2474
|
-
*/
|
|
2475
|
-
interface TenantConfigResponse {
|
|
2476
|
-
/**
|
|
2477
|
-
* 是否成功
|
|
2478
|
-
* @type {boolean}
|
|
2479
|
-
* @memberof TenantConfigResponse
|
|
2480
|
-
*/
|
|
2481
|
-
success: boolean;
|
|
2482
|
-
/**
|
|
2483
|
-
*
|
|
2484
|
-
* @type {TenantConfigData}
|
|
2485
|
-
* @memberof TenantConfigResponse
|
|
2486
|
-
*/
|
|
2487
|
-
data: TenantConfigData;
|
|
2488
|
-
}
|
|
2489
|
-
/**
|
|
2490
|
-
* Check if a given object implements the TenantConfigResponse interface.
|
|
2491
|
-
*/
|
|
2492
|
-
declare function instanceOfTenantConfigResponse(value: object): boolean;
|
|
2493
|
-
declare function TenantConfigResponseFromJSON(json: any): TenantConfigResponse;
|
|
2494
|
-
declare function TenantConfigResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): TenantConfigResponse;
|
|
2495
|
-
declare function TenantConfigResponseToJSON(value?: TenantConfigResponse | null): any;
|
|
2496
|
-
|
|
2497
3922
|
/**
|
|
2498
3923
|
* 平台用户端 API
|
|
2499
3924
|
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
@@ -2889,33 +4314,31 @@ declare function TrackSingleResponseToJSON(value?: TrackSingleResponse | null):
|
|
|
2889
4314
|
* Do not edit the class manually.
|
|
2890
4315
|
*/
|
|
2891
4316
|
/**
|
|
2892
|
-
*
|
|
4317
|
+
* 动作参数验证响应(ActionValidateVo)
|
|
2893
4318
|
* @export
|
|
2894
|
-
* @interface
|
|
4319
|
+
* @interface ValidateActionResponse
|
|
2895
4320
|
*/
|
|
2896
|
-
interface
|
|
4321
|
+
interface ValidateActionResponse {
|
|
2897
4322
|
/**
|
|
2898
|
-
*
|
|
2899
|
-
* @type {
|
|
2900
|
-
* @memberof
|
|
4323
|
+
* 是否通过校验
|
|
4324
|
+
* @type {boolean}
|
|
4325
|
+
* @memberof ValidateActionResponse
|
|
2901
4326
|
*/
|
|
2902
|
-
|
|
4327
|
+
valid: boolean;
|
|
2903
4328
|
/**
|
|
2904
|
-
*
|
|
2905
|
-
* @type {
|
|
2906
|
-
* @memberof
|
|
4329
|
+
* 校验错误列表
|
|
4330
|
+
* @type {Array<string>}
|
|
4331
|
+
* @memberof ValidateActionResponse
|
|
2907
4332
|
*/
|
|
2908
|
-
|
|
2909
|
-
[key: string]: any;
|
|
2910
|
-
};
|
|
4333
|
+
errors?: Array<string>;
|
|
2911
4334
|
}
|
|
2912
4335
|
/**
|
|
2913
|
-
* Check if a given object implements the
|
|
4336
|
+
* Check if a given object implements the ValidateActionResponse interface.
|
|
2914
4337
|
*/
|
|
2915
|
-
declare function
|
|
2916
|
-
declare function
|
|
2917
|
-
declare function
|
|
2918
|
-
declare function
|
|
4338
|
+
declare function instanceOfValidateActionResponse(value: object): boolean;
|
|
4339
|
+
declare function ValidateActionResponseFromJSON(json: any): ValidateActionResponse;
|
|
4340
|
+
declare function ValidateActionResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ValidateActionResponse;
|
|
4341
|
+
declare function ValidateActionResponseToJSON(value?: ValidateActionResponse | null): any;
|
|
2919
4342
|
|
|
2920
4343
|
/**
|
|
2921
4344
|
* 平台用户端 API
|
|
@@ -2928,32 +4351,109 @@ declare function ValidateActionRequestToJSON(value?: ValidateActionRequest | nul
|
|
|
2928
4351
|
* https://openapi-generator.tech
|
|
2929
4352
|
* Do not edit the class manually.
|
|
2930
4353
|
*/
|
|
4354
|
+
|
|
2931
4355
|
/**
|
|
2932
|
-
*
|
|
4356
|
+
*
|
|
2933
4357
|
* @export
|
|
2934
|
-
* @interface
|
|
4358
|
+
* @interface ValidateActionParams200Response
|
|
2935
4359
|
*/
|
|
2936
|
-
interface
|
|
4360
|
+
interface ValidateActionParams200Response {
|
|
2937
4361
|
/**
|
|
2938
|
-
*
|
|
4362
|
+
* 请求是否成功
|
|
2939
4363
|
* @type {boolean}
|
|
2940
|
-
* @memberof
|
|
4364
|
+
* @memberof ValidateActionParams200Response
|
|
2941
4365
|
*/
|
|
2942
|
-
|
|
4366
|
+
success: boolean;
|
|
2943
4367
|
/**
|
|
2944
|
-
*
|
|
2945
|
-
* @type {
|
|
2946
|
-
* @memberof
|
|
4368
|
+
* 业务状态码
|
|
4369
|
+
* @type {string}
|
|
4370
|
+
* @memberof ValidateActionParams200Response
|
|
2947
4371
|
*/
|
|
2948
|
-
|
|
4372
|
+
code: string;
|
|
4373
|
+
/**
|
|
4374
|
+
* 响应消息
|
|
4375
|
+
* @type {string}
|
|
4376
|
+
* @memberof ValidateActionParams200Response
|
|
4377
|
+
*/
|
|
4378
|
+
message: string;
|
|
4379
|
+
/**
|
|
4380
|
+
*
|
|
4381
|
+
* @type {ValidateActionResponse}
|
|
4382
|
+
* @memberof ValidateActionParams200Response
|
|
4383
|
+
*/
|
|
4384
|
+
data: ValidateActionResponse;
|
|
4385
|
+
/**
|
|
4386
|
+
* 响应时间戳
|
|
4387
|
+
* @type {number}
|
|
4388
|
+
* @memberof ValidateActionParams200Response
|
|
4389
|
+
*/
|
|
4390
|
+
timestamp: number;
|
|
4391
|
+
/**
|
|
4392
|
+
* 请求路径
|
|
4393
|
+
* @type {string}
|
|
4394
|
+
* @memberof ValidateActionParams200Response
|
|
4395
|
+
*/
|
|
4396
|
+
path: string;
|
|
4397
|
+
/**
|
|
4398
|
+
* 请求ID
|
|
4399
|
+
* @type {string}
|
|
4400
|
+
* @memberof ValidateActionParams200Response
|
|
4401
|
+
*/
|
|
4402
|
+
requestId?: string;
|
|
4403
|
+
/**
|
|
4404
|
+
* 链路追踪ID(用于全链路定位问题)
|
|
4405
|
+
* @type {string}
|
|
4406
|
+
* @memberof ValidateActionParams200Response
|
|
4407
|
+
*/
|
|
4408
|
+
traceId?: string;
|
|
2949
4409
|
}
|
|
2950
4410
|
/**
|
|
2951
|
-
* Check if a given object implements the
|
|
4411
|
+
* Check if a given object implements the ValidateActionParams200Response interface.
|
|
2952
4412
|
*/
|
|
2953
|
-
declare function
|
|
2954
|
-
declare function
|
|
2955
|
-
declare function
|
|
2956
|
-
declare function
|
|
4413
|
+
declare function instanceOfValidateActionParams200Response(value: object): boolean;
|
|
4414
|
+
declare function ValidateActionParams200ResponseFromJSON(json: any): ValidateActionParams200Response;
|
|
4415
|
+
declare function ValidateActionParams200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ValidateActionParams200Response;
|
|
4416
|
+
declare function ValidateActionParams200ResponseToJSON(value?: ValidateActionParams200Response | null): any;
|
|
4417
|
+
|
|
4418
|
+
/**
|
|
4419
|
+
* 平台用户端 API
|
|
4420
|
+
* 平台用户端 API 文档 (User API) 提供以下功能: - 页面运行时(Pages)- 页面解析与渲染 - 动作网关(Actions)- 统一动作执行入口 - 数据查询(Queries)- 数据代理查询 - 活动运行时(Activities)- 活动状态查询 - 埋点追踪(Track)- 用户行为追踪 - 租户解析(Tenant)- 多租户解析 - 健康检查(Health)- 服务健康状态 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
4421
|
+
*
|
|
4422
|
+
* The version of the OpenAPI document: 1.0.0
|
|
4423
|
+
* Contact: dev@djvlc.com
|
|
4424
|
+
*
|
|
4425
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4426
|
+
* https://openapi-generator.tech
|
|
4427
|
+
* Do not edit the class manually.
|
|
4428
|
+
*/
|
|
4429
|
+
/**
|
|
4430
|
+
* 动作参数验证请求(ActionValidateDto)
|
|
4431
|
+
* @export
|
|
4432
|
+
* @interface ValidateActionRequest
|
|
4433
|
+
*/
|
|
4434
|
+
interface ValidateActionRequest {
|
|
4435
|
+
/**
|
|
4436
|
+
* 动作定义版本 ID
|
|
4437
|
+
* @type {string}
|
|
4438
|
+
* @memberof ValidateActionRequest
|
|
4439
|
+
*/
|
|
4440
|
+
actionDefinitionVersionId: string;
|
|
4441
|
+
/**
|
|
4442
|
+
* 待验证参数
|
|
4443
|
+
* @type {{ [key: string]: any; }}
|
|
4444
|
+
* @memberof ValidateActionRequest
|
|
4445
|
+
*/
|
|
4446
|
+
params: {
|
|
4447
|
+
[key: string]: any;
|
|
4448
|
+
};
|
|
4449
|
+
}
|
|
4450
|
+
/**
|
|
4451
|
+
* Check if a given object implements the ValidateActionRequest interface.
|
|
4452
|
+
*/
|
|
4453
|
+
declare function instanceOfValidateActionRequest(value: object): boolean;
|
|
4454
|
+
declare function ValidateActionRequestFromJSON(json: any): ValidateActionRequest;
|
|
4455
|
+
declare function ValidateActionRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ValidateActionRequest;
|
|
4456
|
+
declare function ValidateActionRequestToJSON(value?: ValidateActionRequest | null): any;
|
|
2957
4457
|
|
|
2958
4458
|
/**
|
|
2959
4459
|
* 平台用户端 API
|
|
@@ -2991,12 +4491,12 @@ interface ActionsApiInterface {
|
|
|
2991
4491
|
* @throws {RequiredError}
|
|
2992
4492
|
* @memberof ActionsApiInterface
|
|
2993
4493
|
*/
|
|
2994
|
-
executeActionRaw(requestParameters: ExecuteActionOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4494
|
+
executeActionRaw(requestParameters: ExecuteActionOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ExecuteAction200Response>>;
|
|
2995
4495
|
/**
|
|
2996
4496
|
* 统一的动作执行入口,支持领取、签到等业务动作。 执行流程(Pipeline): 1. Auth(登录态/票据/签名) 2. Risk(限流、黑名单、设备指纹、验证码开关) 3. Idempotency(幂等键检查) 4. Execute(执行器:Claim/Signin/Lottery...) 5. Audit(审计落库 + outbox) 6. Normalize(统一错误码/返回)
|
|
2997
4497
|
* 执行动作
|
|
2998
4498
|
*/
|
|
2999
|
-
executeAction(requestParameters: ExecuteActionOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4499
|
+
executeAction(requestParameters: ExecuteActionOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ExecuteAction200Response>;
|
|
3000
4500
|
/**
|
|
3001
4501
|
* 按版本 ID 获取动作定义详情
|
|
3002
4502
|
* @summary 获取动作定义
|
|
@@ -3005,12 +4505,12 @@ interface ActionsApiInterface {
|
|
|
3005
4505
|
* @throws {RequiredError}
|
|
3006
4506
|
* @memberof ActionsApiInterface
|
|
3007
4507
|
*/
|
|
3008
|
-
getActionDefinitionRaw(requestParameters: GetActionDefinitionRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4508
|
+
getActionDefinitionRaw(requestParameters: GetActionDefinitionRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetActionDefinition200Response>>;
|
|
3009
4509
|
/**
|
|
3010
4510
|
* 按版本 ID 获取动作定义详情
|
|
3011
4511
|
* 获取动作定义
|
|
3012
4512
|
*/
|
|
3013
|
-
getActionDefinition(requestParameters: GetActionDefinitionRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4513
|
+
getActionDefinition(requestParameters: GetActionDefinitionRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetActionDefinition200Response>;
|
|
3014
4514
|
/**
|
|
3015
4515
|
* 验证参数是否符合 Schema 定义,不执行动作
|
|
3016
4516
|
* @summary 验证动作参数
|
|
@@ -3019,12 +4519,12 @@ interface ActionsApiInterface {
|
|
|
3019
4519
|
* @throws {RequiredError}
|
|
3020
4520
|
* @memberof ActionsApiInterface
|
|
3021
4521
|
*/
|
|
3022
|
-
validateActionParamsRaw(requestParameters: ValidateActionParamsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4522
|
+
validateActionParamsRaw(requestParameters: ValidateActionParamsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ValidateActionParams200Response>>;
|
|
3023
4523
|
/**
|
|
3024
4524
|
* 验证参数是否符合 Schema 定义,不执行动作
|
|
3025
4525
|
* 验证动作参数
|
|
3026
4526
|
*/
|
|
3027
|
-
validateActionParams(requestParameters: ValidateActionParamsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4527
|
+
validateActionParams(requestParameters: ValidateActionParamsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ValidateActionParams200Response>;
|
|
3028
4528
|
}
|
|
3029
4529
|
/**
|
|
3030
4530
|
*
|
|
@@ -3034,32 +4534,32 @@ declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
|
3034
4534
|
* 统一的动作执行入口,支持领取、签到等业务动作。 执行流程(Pipeline): 1. Auth(登录态/票据/签名) 2. Risk(限流、黑名单、设备指纹、验证码开关) 3. Idempotency(幂等键检查) 4. Execute(执行器:Claim/Signin/Lottery...) 5. Audit(审计落库 + outbox) 6. Normalize(统一错误码/返回)
|
|
3035
4535
|
* 执行动作
|
|
3036
4536
|
*/
|
|
3037
|
-
executeActionRaw(requestParameters: ExecuteActionOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4537
|
+
executeActionRaw(requestParameters: ExecuteActionOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ExecuteAction200Response>>;
|
|
3038
4538
|
/**
|
|
3039
4539
|
* 统一的动作执行入口,支持领取、签到等业务动作。 执行流程(Pipeline): 1. Auth(登录态/票据/签名) 2. Risk(限流、黑名单、设备指纹、验证码开关) 3. Idempotency(幂等键检查) 4. Execute(执行器:Claim/Signin/Lottery...) 5. Audit(审计落库 + outbox) 6. Normalize(统一错误码/返回)
|
|
3040
4540
|
* 执行动作
|
|
3041
4541
|
*/
|
|
3042
|
-
executeAction(requestParameters: ExecuteActionOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4542
|
+
executeAction(requestParameters: ExecuteActionOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ExecuteAction200Response>;
|
|
3043
4543
|
/**
|
|
3044
4544
|
* 按版本 ID 获取动作定义详情
|
|
3045
4545
|
* 获取动作定义
|
|
3046
4546
|
*/
|
|
3047
|
-
getActionDefinitionRaw(requestParameters: GetActionDefinitionRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4547
|
+
getActionDefinitionRaw(requestParameters: GetActionDefinitionRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetActionDefinition200Response>>;
|
|
3048
4548
|
/**
|
|
3049
4549
|
* 按版本 ID 获取动作定义详情
|
|
3050
4550
|
* 获取动作定义
|
|
3051
4551
|
*/
|
|
3052
|
-
getActionDefinition(requestParameters: GetActionDefinitionRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4552
|
+
getActionDefinition(requestParameters: GetActionDefinitionRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetActionDefinition200Response>;
|
|
3053
4553
|
/**
|
|
3054
4554
|
* 验证参数是否符合 Schema 定义,不执行动作
|
|
3055
4555
|
* 验证动作参数
|
|
3056
4556
|
*/
|
|
3057
|
-
validateActionParamsRaw(requestParameters: ValidateActionParamsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4557
|
+
validateActionParamsRaw(requestParameters: ValidateActionParamsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ValidateActionParams200Response>>;
|
|
3058
4558
|
/**
|
|
3059
4559
|
* 验证参数是否符合 Schema 定义,不执行动作
|
|
3060
4560
|
* 验证动作参数
|
|
3061
4561
|
*/
|
|
3062
|
-
validateActionParams(requestParameters: ValidateActionParamsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4562
|
+
validateActionParams(requestParameters: ValidateActionParamsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ValidateActionParams200Response>;
|
|
3063
4563
|
}
|
|
3064
4564
|
|
|
3065
4565
|
/**
|
|
@@ -3123,12 +4623,12 @@ interface ActivitiesApiInterface {
|
|
|
3123
4623
|
* @throws {RequiredError}
|
|
3124
4624
|
* @memberof ActivitiesApiInterface
|
|
3125
4625
|
*/
|
|
3126
|
-
getActivityInfoRaw(requestParameters: GetActivityInfoRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4626
|
+
getActivityInfoRaw(requestParameters: GetActivityInfoRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetActivityInfo200Response>>;
|
|
3127
4627
|
/**
|
|
3128
4628
|
* 获取活动的公开信息,不需要登录
|
|
3129
4629
|
* 获取活动信息(公开)
|
|
3130
4630
|
*/
|
|
3131
|
-
getActivityInfo(requestParameters: GetActivityInfoRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4631
|
+
getActivityInfo(requestParameters: GetActivityInfoRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetActivityInfo200Response>;
|
|
3132
4632
|
/**
|
|
3133
4633
|
* 查询用户在指定活动中的参与状态
|
|
3134
4634
|
* @summary 获取用户活动状态
|
|
@@ -3138,12 +4638,12 @@ interface ActivitiesApiInterface {
|
|
|
3138
4638
|
* @throws {RequiredError}
|
|
3139
4639
|
* @memberof ActivitiesApiInterface
|
|
3140
4640
|
*/
|
|
3141
|
-
getActivityStateRaw(requestParameters: GetActivityStateRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4641
|
+
getActivityStateRaw(requestParameters: GetActivityStateRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetActivityState200Response>>;
|
|
3142
4642
|
/**
|
|
3143
4643
|
* 查询用户在指定活动中的参与状态
|
|
3144
4644
|
* 获取用户活动状态
|
|
3145
4645
|
*/
|
|
3146
|
-
getActivityState(requestParameters: GetActivityStateRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4646
|
+
getActivityState(requestParameters: GetActivityStateRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetActivityState200Response>;
|
|
3147
4647
|
/**
|
|
3148
4648
|
* 获取活动的当前状态信息
|
|
3149
4649
|
* @summary 获取活动状态(兼容)
|
|
@@ -3152,12 +4652,12 @@ interface ActivitiesApiInterface {
|
|
|
3152
4652
|
* @throws {RequiredError}
|
|
3153
4653
|
* @memberof ActivitiesApiInterface
|
|
3154
4654
|
*/
|
|
3155
|
-
getActivityStatusRaw(requestParameters: GetActivityStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4655
|
+
getActivityStatusRaw(requestParameters: GetActivityStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetActivityState200Response>>;
|
|
3156
4656
|
/**
|
|
3157
4657
|
* 获取活动的当前状态信息
|
|
3158
4658
|
* 获取活动状态(兼容)
|
|
3159
4659
|
*/
|
|
3160
|
-
getActivityStatus(requestParameters: GetActivityStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4660
|
+
getActivityStatus(requestParameters: GetActivityStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetActivityState200Response>;
|
|
3161
4661
|
/**
|
|
3162
4662
|
* 获取用户在指定活动中的领取记录
|
|
3163
4663
|
* @summary 获取领取记录
|
|
@@ -3169,12 +4669,12 @@ interface ActivitiesApiInterface {
|
|
|
3169
4669
|
* @throws {RequiredError}
|
|
3170
4670
|
* @memberof ActivitiesApiInterface
|
|
3171
4671
|
*/
|
|
3172
|
-
getClaimRecordsRaw(requestParameters: GetClaimRecordsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4672
|
+
getClaimRecordsRaw(requestParameters: GetClaimRecordsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetClaimRecords200Response>>;
|
|
3173
4673
|
/**
|
|
3174
4674
|
* 获取用户在指定活动中的领取记录
|
|
3175
4675
|
* 获取领取记录
|
|
3176
4676
|
*/
|
|
3177
|
-
getClaimRecords(requestParameters: GetClaimRecordsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4677
|
+
getClaimRecords(requestParameters: GetClaimRecordsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetClaimRecords200Response>;
|
|
3178
4678
|
/**
|
|
3179
4679
|
* 获取用户在指定活动中的领取状态
|
|
3180
4680
|
* @summary 获取领取状态
|
|
@@ -3184,12 +4684,12 @@ interface ActivitiesApiInterface {
|
|
|
3184
4684
|
* @throws {RequiredError}
|
|
3185
4685
|
* @memberof ActivitiesApiInterface
|
|
3186
4686
|
*/
|
|
3187
|
-
getClaimStatusRaw(requestParameters: GetClaimStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4687
|
+
getClaimStatusRaw(requestParameters: GetClaimStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetClaimStatus200Response>>;
|
|
3188
4688
|
/**
|
|
3189
4689
|
* 获取用户在指定活动中的领取状态
|
|
3190
4690
|
* 获取领取状态
|
|
3191
4691
|
*/
|
|
3192
|
-
getClaimStatus(requestParameters: GetClaimStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4692
|
+
getClaimStatus(requestParameters: GetClaimStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetClaimStatus200Response>;
|
|
3193
4693
|
/**
|
|
3194
4694
|
* 获取用户在指定活动中的抽奖记录
|
|
3195
4695
|
* @summary 获取抽奖记录
|
|
@@ -3200,12 +4700,12 @@ interface ActivitiesApiInterface {
|
|
|
3200
4700
|
* @throws {RequiredError}
|
|
3201
4701
|
* @memberof ActivitiesApiInterface
|
|
3202
4702
|
*/
|
|
3203
|
-
getLotteryRecordsRaw(requestParameters: GetLotteryRecordsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4703
|
+
getLotteryRecordsRaw(requestParameters: GetLotteryRecordsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetClaimRecords200Response>>;
|
|
3204
4704
|
/**
|
|
3205
4705
|
* 获取用户在指定活动中的抽奖记录
|
|
3206
4706
|
* 获取抽奖记录
|
|
3207
4707
|
*/
|
|
3208
|
-
getLotteryRecords(requestParameters: GetLotteryRecordsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4708
|
+
getLotteryRecords(requestParameters: GetLotteryRecordsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetClaimRecords200Response>;
|
|
3209
4709
|
/**
|
|
3210
4710
|
* 获取用户的签到日历数据
|
|
3211
4711
|
* @summary 获取签到日历
|
|
@@ -3216,12 +4716,12 @@ interface ActivitiesApiInterface {
|
|
|
3216
4716
|
* @throws {RequiredError}
|
|
3217
4717
|
* @memberof ActivitiesApiInterface
|
|
3218
4718
|
*/
|
|
3219
|
-
getSigninCalendarRaw(requestParameters: GetSigninCalendarRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4719
|
+
getSigninCalendarRaw(requestParameters: GetSigninCalendarRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetSigninCalendar200Response>>;
|
|
3220
4720
|
/**
|
|
3221
4721
|
* 获取用户的签到日历数据
|
|
3222
4722
|
* 获取签到日历
|
|
3223
4723
|
*/
|
|
3224
|
-
getSigninCalendar(requestParameters: GetSigninCalendarRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4724
|
+
getSigninCalendar(requestParameters: GetSigninCalendarRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetSigninCalendar200Response>;
|
|
3225
4725
|
/**
|
|
3226
4726
|
* 获取用户在指定活动中的签到状态
|
|
3227
4727
|
* @summary 获取签到状态
|
|
@@ -3231,12 +4731,12 @@ interface ActivitiesApiInterface {
|
|
|
3231
4731
|
* @throws {RequiredError}
|
|
3232
4732
|
* @memberof ActivitiesApiInterface
|
|
3233
4733
|
*/
|
|
3234
|
-
getSigninStatusRaw(requestParameters: GetSigninStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4734
|
+
getSigninStatusRaw(requestParameters: GetSigninStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetSigninStatus200Response>>;
|
|
3235
4735
|
/**
|
|
3236
4736
|
* 获取用户在指定活动中的签到状态
|
|
3237
4737
|
* 获取签到状态
|
|
3238
4738
|
*/
|
|
3239
|
-
getSigninStatus(requestParameters: GetSigninStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4739
|
+
getSigninStatus(requestParameters: GetSigninStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetSigninStatus200Response>;
|
|
3240
4740
|
}
|
|
3241
4741
|
/**
|
|
3242
4742
|
*
|
|
@@ -3246,82 +4746,82 @@ declare class ActivitiesApi extends BaseAPI implements ActivitiesApiInterface {
|
|
|
3246
4746
|
* 获取活动的公开信息,不需要登录
|
|
3247
4747
|
* 获取活动信息(公开)
|
|
3248
4748
|
*/
|
|
3249
|
-
getActivityInfoRaw(requestParameters: GetActivityInfoRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4749
|
+
getActivityInfoRaw(requestParameters: GetActivityInfoRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetActivityInfo200Response>>;
|
|
3250
4750
|
/**
|
|
3251
4751
|
* 获取活动的公开信息,不需要登录
|
|
3252
4752
|
* 获取活动信息(公开)
|
|
3253
4753
|
*/
|
|
3254
|
-
getActivityInfo(requestParameters: GetActivityInfoRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4754
|
+
getActivityInfo(requestParameters: GetActivityInfoRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetActivityInfo200Response>;
|
|
3255
4755
|
/**
|
|
3256
4756
|
* 查询用户在指定活动中的参与状态
|
|
3257
4757
|
* 获取用户活动状态
|
|
3258
4758
|
*/
|
|
3259
|
-
getActivityStateRaw(requestParameters: GetActivityStateRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4759
|
+
getActivityStateRaw(requestParameters: GetActivityStateRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetActivityState200Response>>;
|
|
3260
4760
|
/**
|
|
3261
4761
|
* 查询用户在指定活动中的参与状态
|
|
3262
4762
|
* 获取用户活动状态
|
|
3263
4763
|
*/
|
|
3264
|
-
getActivityState(requestParameters: GetActivityStateRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4764
|
+
getActivityState(requestParameters: GetActivityStateRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetActivityState200Response>;
|
|
3265
4765
|
/**
|
|
3266
4766
|
* 获取活动的当前状态信息
|
|
3267
4767
|
* 获取活动状态(兼容)
|
|
3268
4768
|
*/
|
|
3269
|
-
getActivityStatusRaw(requestParameters: GetActivityStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4769
|
+
getActivityStatusRaw(requestParameters: GetActivityStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetActivityState200Response>>;
|
|
3270
4770
|
/**
|
|
3271
4771
|
* 获取活动的当前状态信息
|
|
3272
4772
|
* 获取活动状态(兼容)
|
|
3273
4773
|
*/
|
|
3274
|
-
getActivityStatus(requestParameters: GetActivityStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4774
|
+
getActivityStatus(requestParameters: GetActivityStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetActivityState200Response>;
|
|
3275
4775
|
/**
|
|
3276
4776
|
* 获取用户在指定活动中的领取记录
|
|
3277
4777
|
* 获取领取记录
|
|
3278
4778
|
*/
|
|
3279
|
-
getClaimRecordsRaw(requestParameters: GetClaimRecordsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4779
|
+
getClaimRecordsRaw(requestParameters: GetClaimRecordsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetClaimRecords200Response>>;
|
|
3280
4780
|
/**
|
|
3281
4781
|
* 获取用户在指定活动中的领取记录
|
|
3282
4782
|
* 获取领取记录
|
|
3283
4783
|
*/
|
|
3284
|
-
getClaimRecords(requestParameters: GetClaimRecordsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4784
|
+
getClaimRecords(requestParameters: GetClaimRecordsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetClaimRecords200Response>;
|
|
3285
4785
|
/**
|
|
3286
4786
|
* 获取用户在指定活动中的领取状态
|
|
3287
4787
|
* 获取领取状态
|
|
3288
4788
|
*/
|
|
3289
|
-
getClaimStatusRaw(requestParameters: GetClaimStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4789
|
+
getClaimStatusRaw(requestParameters: GetClaimStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetClaimStatus200Response>>;
|
|
3290
4790
|
/**
|
|
3291
4791
|
* 获取用户在指定活动中的领取状态
|
|
3292
4792
|
* 获取领取状态
|
|
3293
4793
|
*/
|
|
3294
|
-
getClaimStatus(requestParameters: GetClaimStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4794
|
+
getClaimStatus(requestParameters: GetClaimStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetClaimStatus200Response>;
|
|
3295
4795
|
/**
|
|
3296
4796
|
* 获取用户在指定活动中的抽奖记录
|
|
3297
4797
|
* 获取抽奖记录
|
|
3298
4798
|
*/
|
|
3299
|
-
getLotteryRecordsRaw(requestParameters: GetLotteryRecordsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4799
|
+
getLotteryRecordsRaw(requestParameters: GetLotteryRecordsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetClaimRecords200Response>>;
|
|
3300
4800
|
/**
|
|
3301
4801
|
* 获取用户在指定活动中的抽奖记录
|
|
3302
4802
|
* 获取抽奖记录
|
|
3303
4803
|
*/
|
|
3304
|
-
getLotteryRecords(requestParameters: GetLotteryRecordsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4804
|
+
getLotteryRecords(requestParameters: GetLotteryRecordsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetClaimRecords200Response>;
|
|
3305
4805
|
/**
|
|
3306
4806
|
* 获取用户的签到日历数据
|
|
3307
4807
|
* 获取签到日历
|
|
3308
4808
|
*/
|
|
3309
|
-
getSigninCalendarRaw(requestParameters: GetSigninCalendarRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4809
|
+
getSigninCalendarRaw(requestParameters: GetSigninCalendarRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetSigninCalendar200Response>>;
|
|
3310
4810
|
/**
|
|
3311
4811
|
* 获取用户的签到日历数据
|
|
3312
4812
|
* 获取签到日历
|
|
3313
4813
|
*/
|
|
3314
|
-
getSigninCalendar(requestParameters: GetSigninCalendarRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4814
|
+
getSigninCalendar(requestParameters: GetSigninCalendarRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetSigninCalendar200Response>;
|
|
3315
4815
|
/**
|
|
3316
4816
|
* 获取用户在指定活动中的签到状态
|
|
3317
4817
|
* 获取签到状态
|
|
3318
4818
|
*/
|
|
3319
|
-
getSigninStatusRaw(requestParameters: GetSigninStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4819
|
+
getSigninStatusRaw(requestParameters: GetSigninStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetSigninStatus200Response>>;
|
|
3320
4820
|
/**
|
|
3321
4821
|
* 获取用户在指定活动中的签到状态
|
|
3322
4822
|
* 获取签到状态
|
|
3323
4823
|
*/
|
|
3324
|
-
getSigninStatus(requestParameters: GetSigninStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4824
|
+
getSigninStatus(requestParameters: GetSigninStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetSigninStatus200Response>;
|
|
3325
4825
|
}
|
|
3326
4826
|
|
|
3327
4827
|
/**
|
|
@@ -3350,12 +4850,12 @@ interface HealthApiInterface {
|
|
|
3350
4850
|
* @throws {RequiredError}
|
|
3351
4851
|
* @memberof HealthApiInterface
|
|
3352
4852
|
*/
|
|
3353
|
-
healthCheckRaw(initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4853
|
+
healthCheckRaw(initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<HealthCheck200Response>>;
|
|
3354
4854
|
/**
|
|
3355
4855
|
* 综合健康检查,返回服务状态和时间戳
|
|
3356
4856
|
* 健康检查
|
|
3357
4857
|
*/
|
|
3358
|
-
healthCheck(initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4858
|
+
healthCheck(initOverrides?: RequestInit | InitOverrideFunction): Promise<HealthCheck200Response>;
|
|
3359
4859
|
/**
|
|
3360
4860
|
* Kubernetes liveness probe
|
|
3361
4861
|
* @summary 存活检查
|
|
@@ -3363,12 +4863,12 @@ interface HealthApiInterface {
|
|
|
3363
4863
|
* @throws {RequiredError}
|
|
3364
4864
|
* @memberof HealthApiInterface
|
|
3365
4865
|
*/
|
|
3366
|
-
livenessCheckRaw(initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4866
|
+
livenessCheckRaw(initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<LivenessCheck200Response>>;
|
|
3367
4867
|
/**
|
|
3368
4868
|
* Kubernetes liveness probe
|
|
3369
4869
|
* 存活检查
|
|
3370
4870
|
*/
|
|
3371
|
-
livenessCheck(initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4871
|
+
livenessCheck(initOverrides?: RequestInit | InitOverrideFunction): Promise<LivenessCheck200Response>;
|
|
3372
4872
|
/**
|
|
3373
4873
|
* Kubernetes readiness probe
|
|
3374
4874
|
* @summary 就绪检查
|
|
@@ -3376,12 +4876,12 @@ interface HealthApiInterface {
|
|
|
3376
4876
|
* @throws {RequiredError}
|
|
3377
4877
|
* @memberof HealthApiInterface
|
|
3378
4878
|
*/
|
|
3379
|
-
readinessCheckRaw(initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4879
|
+
readinessCheckRaw(initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ReadinessCheck200Response>>;
|
|
3380
4880
|
/**
|
|
3381
4881
|
* Kubernetes readiness probe
|
|
3382
4882
|
* 就绪检查
|
|
3383
4883
|
*/
|
|
3384
|
-
readinessCheck(initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4884
|
+
readinessCheck(initOverrides?: RequestInit | InitOverrideFunction): Promise<ReadinessCheck200Response>;
|
|
3385
4885
|
}
|
|
3386
4886
|
/**
|
|
3387
4887
|
*
|
|
@@ -3391,32 +4891,32 @@ declare class HealthApi extends BaseAPI implements HealthApiInterface {
|
|
|
3391
4891
|
* 综合健康检查,返回服务状态和时间戳
|
|
3392
4892
|
* 健康检查
|
|
3393
4893
|
*/
|
|
3394
|
-
healthCheckRaw(initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4894
|
+
healthCheckRaw(initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<HealthCheck200Response>>;
|
|
3395
4895
|
/**
|
|
3396
4896
|
* 综合健康检查,返回服务状态和时间戳
|
|
3397
4897
|
* 健康检查
|
|
3398
4898
|
*/
|
|
3399
|
-
healthCheck(initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4899
|
+
healthCheck(initOverrides?: RequestInit | InitOverrideFunction): Promise<HealthCheck200Response>;
|
|
3400
4900
|
/**
|
|
3401
4901
|
* Kubernetes liveness probe
|
|
3402
4902
|
* 存活检查
|
|
3403
4903
|
*/
|
|
3404
|
-
livenessCheckRaw(initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4904
|
+
livenessCheckRaw(initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<LivenessCheck200Response>>;
|
|
3405
4905
|
/**
|
|
3406
4906
|
* Kubernetes liveness probe
|
|
3407
4907
|
* 存活检查
|
|
3408
4908
|
*/
|
|
3409
|
-
livenessCheck(initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4909
|
+
livenessCheck(initOverrides?: RequestInit | InitOverrideFunction): Promise<LivenessCheck200Response>;
|
|
3410
4910
|
/**
|
|
3411
4911
|
* Kubernetes readiness probe
|
|
3412
4912
|
* 就绪检查
|
|
3413
4913
|
*/
|
|
3414
|
-
readinessCheckRaw(initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4914
|
+
readinessCheckRaw(initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ReadinessCheck200Response>>;
|
|
3415
4915
|
/**
|
|
3416
4916
|
* Kubernetes readiness probe
|
|
3417
4917
|
* 就绪检查
|
|
3418
4918
|
*/
|
|
3419
|
-
readinessCheck(initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4919
|
+
readinessCheck(initOverrides?: RequestInit | InitOverrideFunction): Promise<ReadinessCheck200Response>;
|
|
3420
4920
|
}
|
|
3421
4921
|
|
|
3422
4922
|
/**
|
|
@@ -3464,12 +4964,12 @@ interface PagesApiInterface {
|
|
|
3464
4964
|
* @throws {RequiredError}
|
|
3465
4965
|
* @memberof PagesApiInterface
|
|
3466
4966
|
*/
|
|
3467
|
-
getPageConfigRaw(requestParameters: GetPageConfigRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4967
|
+
getPageConfigRaw(requestParameters: GetPageConfigRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetPageConfig200Response>>;
|
|
3468
4968
|
/**
|
|
3469
4969
|
* 返回当前运维配置(killSwitch、blockedComponents 等)
|
|
3470
4970
|
* 获取运维配置
|
|
3471
4971
|
*/
|
|
3472
|
-
getPageConfig(requestParameters: GetPageConfigRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4972
|
+
getPageConfig(requestParameters: GetPageConfigRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetPageConfig200Response>;
|
|
3473
4973
|
/**
|
|
3474
4974
|
* 返回页面的组件锁定清单
|
|
3475
4975
|
* @summary 获取组件清单
|
|
@@ -3479,12 +4979,12 @@ interface PagesApiInterface {
|
|
|
3479
4979
|
* @throws {RequiredError}
|
|
3480
4980
|
* @memberof PagesApiInterface
|
|
3481
4981
|
*/
|
|
3482
|
-
getPageManifestRaw(requestParameters: GetPageManifestRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
4982
|
+
getPageManifestRaw(requestParameters: GetPageManifestRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetPageManifest200Response>>;
|
|
3483
4983
|
/**
|
|
3484
4984
|
* 返回页面的组件锁定清单
|
|
3485
4985
|
* 获取组件清单
|
|
3486
4986
|
*/
|
|
3487
|
-
getPageManifest(requestParameters: GetPageManifestRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
4987
|
+
getPageManifest(requestParameters: GetPageManifestRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetPageManifest200Response>;
|
|
3488
4988
|
/**
|
|
3489
4989
|
* Runtime 核心接口,返回渲染所需的完整数据。 支持两种模式: 1. 稳定入口(推荐):支持灰度/回滚/ops,返回 resolvedVersionId 和 CDN 地址 2. 保底模式:当 includeSnapshot=true 时,返回完整 snapshot(CDN 失败时使用)
|
|
3490
4990
|
* @summary 解析页面
|
|
@@ -3501,12 +5001,12 @@ interface PagesApiInterface {
|
|
|
3501
5001
|
* @throws {RequiredError}
|
|
3502
5002
|
* @memberof PagesApiInterface
|
|
3503
5003
|
*/
|
|
3504
|
-
resolvePageRaw(requestParameters: ResolvePageRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
5004
|
+
resolvePageRaw(requestParameters: ResolvePageRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ResolvePage200Response>>;
|
|
3505
5005
|
/**
|
|
3506
5006
|
* Runtime 核心接口,返回渲染所需的完整数据。 支持两种模式: 1. 稳定入口(推荐):支持灰度/回滚/ops,返回 resolvedVersionId 和 CDN 地址 2. 保底模式:当 includeSnapshot=true 时,返回完整 snapshot(CDN 失败时使用)
|
|
3507
5007
|
* 解析页面
|
|
3508
5008
|
*/
|
|
3509
|
-
resolvePage(requestParameters: ResolvePageRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
5009
|
+
resolvePage(requestParameters: ResolvePageRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ResolvePage200Response>;
|
|
3510
5010
|
}
|
|
3511
5011
|
/**
|
|
3512
5012
|
*
|
|
@@ -3516,32 +5016,32 @@ declare class PagesApi extends BaseAPI implements PagesApiInterface {
|
|
|
3516
5016
|
* 返回当前运维配置(killSwitch、blockedComponents 等)
|
|
3517
5017
|
* 获取运维配置
|
|
3518
5018
|
*/
|
|
3519
|
-
getPageConfigRaw(requestParameters: GetPageConfigRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
5019
|
+
getPageConfigRaw(requestParameters: GetPageConfigRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetPageConfig200Response>>;
|
|
3520
5020
|
/**
|
|
3521
5021
|
* 返回当前运维配置(killSwitch、blockedComponents 等)
|
|
3522
5022
|
* 获取运维配置
|
|
3523
5023
|
*/
|
|
3524
|
-
getPageConfig(requestParameters?: GetPageConfigRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
5024
|
+
getPageConfig(requestParameters?: GetPageConfigRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetPageConfig200Response>;
|
|
3525
5025
|
/**
|
|
3526
5026
|
* 返回页面的组件锁定清单
|
|
3527
5027
|
* 获取组件清单
|
|
3528
5028
|
*/
|
|
3529
|
-
getPageManifestRaw(requestParameters: GetPageManifestRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
5029
|
+
getPageManifestRaw(requestParameters: GetPageManifestRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetPageManifest200Response>>;
|
|
3530
5030
|
/**
|
|
3531
5031
|
* 返回页面的组件锁定清单
|
|
3532
5032
|
* 获取组件清单
|
|
3533
5033
|
*/
|
|
3534
|
-
getPageManifest(requestParameters: GetPageManifestRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
5034
|
+
getPageManifest(requestParameters: GetPageManifestRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetPageManifest200Response>;
|
|
3535
5035
|
/**
|
|
3536
5036
|
* Runtime 核心接口,返回渲染所需的完整数据。 支持两种模式: 1. 稳定入口(推荐):支持灰度/回滚/ops,返回 resolvedVersionId 和 CDN 地址 2. 保底模式:当 includeSnapshot=true 时,返回完整 snapshot(CDN 失败时使用)
|
|
3537
5037
|
* 解析页面
|
|
3538
5038
|
*/
|
|
3539
|
-
resolvePageRaw(requestParameters: ResolvePageRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
5039
|
+
resolvePageRaw(requestParameters: ResolvePageRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ResolvePage200Response>>;
|
|
3540
5040
|
/**
|
|
3541
5041
|
* Runtime 核心接口,返回渲染所需的完整数据。 支持两种模式: 1. 稳定入口(推荐):支持灰度/回滚/ops,返回 resolvedVersionId 和 CDN 地址 2. 保底模式:当 includeSnapshot=true 时,返回完整 snapshot(CDN 失败时使用)
|
|
3542
5042
|
* 解析页面
|
|
3543
5043
|
*/
|
|
3544
|
-
resolvePage(requestParameters: ResolvePageRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
5044
|
+
resolvePage(requestParameters: ResolvePageRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ResolvePage200Response>;
|
|
3545
5045
|
}
|
|
3546
5046
|
/**
|
|
3547
5047
|
* @export
|
|
@@ -3607,12 +5107,12 @@ interface QueriesApiInterface {
|
|
|
3607
5107
|
* @throws {RequiredError}
|
|
3608
5108
|
* @memberof QueriesApiInterface
|
|
3609
5109
|
*/
|
|
3610
|
-
batchQueryDataRaw(requestParameters: BatchQueryDataRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
5110
|
+
batchQueryDataRaw(requestParameters: BatchQueryDataRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<BatchQueryData200Response>>;
|
|
3611
5111
|
/**
|
|
3612
5112
|
* 批量执行多个数据查询,所有查询并行执行
|
|
3613
5113
|
* 批量执行数据查询
|
|
3614
5114
|
*/
|
|
3615
|
-
batchQueryData(requestParameters: BatchQueryDataRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
5115
|
+
batchQueryData(requestParameters: BatchQueryDataRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<BatchQueryData200Response>;
|
|
3616
5116
|
/**
|
|
3617
5117
|
* 按版本 ID 获取数据查询定义
|
|
3618
5118
|
* @summary 获取查询定义
|
|
@@ -3621,12 +5121,12 @@ interface QueriesApiInterface {
|
|
|
3621
5121
|
* @throws {RequiredError}
|
|
3622
5122
|
* @memberof QueriesApiInterface
|
|
3623
5123
|
*/
|
|
3624
|
-
getQueryDefinitionRaw(requestParameters: GetQueryDefinitionRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
5124
|
+
getQueryDefinitionRaw(requestParameters: GetQueryDefinitionRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetQueryDefinition200Response>>;
|
|
3625
5125
|
/**
|
|
3626
5126
|
* 按版本 ID 获取数据查询定义
|
|
3627
5127
|
* 获取查询定义
|
|
3628
5128
|
*/
|
|
3629
|
-
getQueryDefinition(requestParameters: GetQueryDefinitionRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
5129
|
+
getQueryDefinition(requestParameters: GetQueryDefinitionRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetQueryDefinition200Response>;
|
|
3630
5130
|
/**
|
|
3631
5131
|
* 通过 queryVersionId 查询数据
|
|
3632
5132
|
* @summary 执行数据查询
|
|
@@ -3635,12 +5135,12 @@ interface QueriesApiInterface {
|
|
|
3635
5135
|
* @throws {RequiredError}
|
|
3636
5136
|
* @memberof QueriesApiInterface
|
|
3637
5137
|
*/
|
|
3638
|
-
queryDataRaw(requestParameters: QueryDataOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
5138
|
+
queryDataRaw(requestParameters: QueryDataOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<QueryData200Response>>;
|
|
3639
5139
|
/**
|
|
3640
5140
|
* 通过 queryVersionId 查询数据
|
|
3641
5141
|
* 执行数据查询
|
|
3642
5142
|
*/
|
|
3643
|
-
queryData(requestParameters: QueryDataOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
5143
|
+
queryData(requestParameters: QueryDataOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<QueryData200Response>;
|
|
3644
5144
|
}
|
|
3645
5145
|
/**
|
|
3646
5146
|
*
|
|
@@ -3650,32 +5150,32 @@ declare class QueriesApi extends BaseAPI implements QueriesApiInterface {
|
|
|
3650
5150
|
* 批量执行多个数据查询,所有查询并行执行
|
|
3651
5151
|
* 批量执行数据查询
|
|
3652
5152
|
*/
|
|
3653
|
-
batchQueryDataRaw(requestParameters: BatchQueryDataRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
5153
|
+
batchQueryDataRaw(requestParameters: BatchQueryDataRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<BatchQueryData200Response>>;
|
|
3654
5154
|
/**
|
|
3655
5155
|
* 批量执行多个数据查询,所有查询并行执行
|
|
3656
5156
|
* 批量执行数据查询
|
|
3657
5157
|
*/
|
|
3658
|
-
batchQueryData(requestParameters: BatchQueryDataRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
5158
|
+
batchQueryData(requestParameters: BatchQueryDataRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<BatchQueryData200Response>;
|
|
3659
5159
|
/**
|
|
3660
5160
|
* 按版本 ID 获取数据查询定义
|
|
3661
5161
|
* 获取查询定义
|
|
3662
5162
|
*/
|
|
3663
|
-
getQueryDefinitionRaw(requestParameters: GetQueryDefinitionRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
5163
|
+
getQueryDefinitionRaw(requestParameters: GetQueryDefinitionRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetQueryDefinition200Response>>;
|
|
3664
5164
|
/**
|
|
3665
5165
|
* 按版本 ID 获取数据查询定义
|
|
3666
5166
|
* 获取查询定义
|
|
3667
5167
|
*/
|
|
3668
|
-
getQueryDefinition(requestParameters: GetQueryDefinitionRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
5168
|
+
getQueryDefinition(requestParameters: GetQueryDefinitionRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetQueryDefinition200Response>;
|
|
3669
5169
|
/**
|
|
3670
5170
|
* 通过 queryVersionId 查询数据
|
|
3671
5171
|
* 执行数据查询
|
|
3672
5172
|
*/
|
|
3673
|
-
queryDataRaw(requestParameters: QueryDataOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
5173
|
+
queryDataRaw(requestParameters: QueryDataOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<QueryData200Response>>;
|
|
3674
5174
|
/**
|
|
3675
5175
|
* 通过 queryVersionId 查询数据
|
|
3676
5176
|
* 执行数据查询
|
|
3677
5177
|
*/
|
|
3678
|
-
queryData(requestParameters: QueryDataOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
5178
|
+
queryData(requestParameters: QueryDataOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<QueryData200Response>;
|
|
3679
5179
|
}
|
|
3680
5180
|
|
|
3681
5181
|
/**
|
|
@@ -3713,12 +5213,12 @@ interface TenantApiInterface {
|
|
|
3713
5213
|
* @throws {RequiredError}
|
|
3714
5214
|
* @memberof TenantApiInterface
|
|
3715
5215
|
*/
|
|
3716
|
-
getTenantConfigRaw(requestParameters: GetTenantConfigRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
5216
|
+
getTenantConfigRaw(requestParameters: GetTenantConfigRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetTenantConfig200Response>>;
|
|
3717
5217
|
/**
|
|
3718
5218
|
* 获取当前租户的运行时配置
|
|
3719
5219
|
* 获取租户配置
|
|
3720
5220
|
*/
|
|
3721
|
-
getTenantConfig(requestParameters: GetTenantConfigRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
5221
|
+
getTenantConfig(requestParameters: GetTenantConfigRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetTenantConfig200Response>;
|
|
3722
5222
|
/**
|
|
3723
5223
|
* 根据 appKey 或 host 解析租户/应用信息
|
|
3724
5224
|
* @summary 解析租户信息
|
|
@@ -3727,12 +5227,12 @@ interface TenantApiInterface {
|
|
|
3727
5227
|
* @throws {RequiredError}
|
|
3728
5228
|
* @memberof TenantApiInterface
|
|
3729
5229
|
*/
|
|
3730
|
-
resolveTenantRaw(requestParameters: ResolveTenantOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
5230
|
+
resolveTenantRaw(requestParameters: ResolveTenantOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ResolveTenant200Response>>;
|
|
3731
5231
|
/**
|
|
3732
5232
|
* 根据 appKey 或 host 解析租户/应用信息
|
|
3733
5233
|
* 解析租户信息
|
|
3734
5234
|
*/
|
|
3735
|
-
resolveTenant(requestParameters: ResolveTenantOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
5235
|
+
resolveTenant(requestParameters: ResolveTenantOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ResolveTenant200Response>;
|
|
3736
5236
|
}
|
|
3737
5237
|
/**
|
|
3738
5238
|
*
|
|
@@ -3742,22 +5242,22 @@ declare class TenantApi extends BaseAPI implements TenantApiInterface {
|
|
|
3742
5242
|
* 获取当前租户的运行时配置
|
|
3743
5243
|
* 获取租户配置
|
|
3744
5244
|
*/
|
|
3745
|
-
getTenantConfigRaw(requestParameters: GetTenantConfigRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
5245
|
+
getTenantConfigRaw(requestParameters: GetTenantConfigRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetTenantConfig200Response>>;
|
|
3746
5246
|
/**
|
|
3747
5247
|
* 获取当前租户的运行时配置
|
|
3748
5248
|
* 获取租户配置
|
|
3749
5249
|
*/
|
|
3750
|
-
getTenantConfig(requestParameters: GetTenantConfigRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
5250
|
+
getTenantConfig(requestParameters: GetTenantConfigRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetTenantConfig200Response>;
|
|
3751
5251
|
/**
|
|
3752
5252
|
* 根据 appKey 或 host 解析租户/应用信息
|
|
3753
5253
|
* 解析租户信息
|
|
3754
5254
|
*/
|
|
3755
|
-
resolveTenantRaw(requestParameters: ResolveTenantOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<
|
|
5255
|
+
resolveTenantRaw(requestParameters: ResolveTenantOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ResolveTenant200Response>>;
|
|
3756
5256
|
/**
|
|
3757
5257
|
* 根据 appKey 或 host 解析租户/应用信息
|
|
3758
5258
|
* 解析租户信息
|
|
3759
5259
|
*/
|
|
3760
|
-
resolveTenant(requestParameters: ResolveTenantOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<
|
|
5260
|
+
resolveTenant(requestParameters: ResolveTenantOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ResolveTenant200Response>;
|
|
3761
5261
|
}
|
|
3762
5262
|
|
|
3763
5263
|
/**
|
|
@@ -3942,4 +5442,4 @@ declare function createUserConfiguration(config?: UserClientConfig): Configurati
|
|
|
3942
5442
|
/** 客户端版本 */
|
|
3943
5443
|
declare const VERSION = "1.0.0";
|
|
3944
5444
|
|
|
3945
|
-
export { type ActionClientContext, ActionClientContextFromJSON, ActionClientContextFromJSONTyped, ActionClientContextToJSON, type ActionDefinitionVersionResponse, ActionDefinitionVersionResponseFromJSON, ActionDefinitionVersionResponseFromJSONTyped, ActionDefinitionVersionResponseStatusEnum, ActionDefinitionVersionResponseToJSON, ActionsApi, ActivitiesApi, type ActivityInfoData, ActivityInfoDataFromJSON, ActivityInfoDataFromJSONTyped, ActivityInfoDataToJSON, type ActivityInfoResponse, ActivityInfoResponseFromJSON, ActivityInfoResponseFromJSONTyped, ActivityInfoResponseToJSON, type ActivityStatus, ActivityStatusFromJSON, ActivityStatusFromJSONTyped, type ActivityStatusResponse, ActivityStatusResponseFromJSON, ActivityStatusResponseFromJSONTyped, ActivityStatusResponseToJSON, ActivityStatusResponseTypeEnum, ActivityStatusToJSON, ActivityStatusTypeEnum, BaseAPI, type BatchQueryItemRequest, BatchQueryItemRequestFromJSON, BatchQueryItemRequestFromJSONTyped, BatchQueryItemRequestToJSON, type BatchQueryRequest, BatchQueryRequestFromJSON, BatchQueryRequestFromJSONTyped, BatchQueryRequestToJSON, type BatchQueryResponse, BatchQueryResponseFromJSON, BatchQueryResponseFromJSONTyped, BatchQueryResponseToJSON, type BlockedComponent, BlockedComponentFromJSON, BlockedComponentFromJSONTyped, BlockedComponentToJSON, type ClaimStatusResponse, ClaimStatusResponseFromJSON, ClaimStatusResponseFromJSONTyped, ClaimStatusResponseToJSON, Configuration, type ConfigurationParameters, type CursorPaginationMeta, CursorPaginationMetaFromJSON, CursorPaginationMetaFromJSONTyped, CursorPaginationMetaToJSON, type DegradeConfig, DegradeConfigFromJSON, DegradeConfigFromJSONTyped, DegradeConfigModeEnum, DegradeConfigToJSON, type ErrorResponse, ErrorResponseFromJSON, ErrorResponseFromJSONTyped, ErrorResponseToJSON, type ExecuteActionRequest, ExecuteActionRequestFromJSON, ExecuteActionRequestFromJSONTyped, ExecuteActionRequestToJSON, type ExecuteActionResponse, ExecuteActionResponseFromJSON, ExecuteActionResponseFromJSONTyped, ExecuteActionResponseToJSON, type FetchAPI, FetchError, type FetchParams, HealthApi, type HealthCheckItem, HealthCheckItemFromJSON, HealthCheckItemFromJSONTyped, HealthCheckItemToJSON, type HealthCheckResponse, HealthCheckResponseFromJSON, HealthCheckResponseFromJSONTyped, HealthCheckResponseToJSON, type LivenessResponse, LivenessResponseFromJSON, LivenessResponseFromJSONTyped, LivenessResponseToJSON, type ManifestComponent, ManifestComponentFromJSON, ManifestComponentFromJSONTyped, ManifestComponentSourceEnum, ManifestComponentToJSON, type ManifestResponse, ManifestResponseFromJSON, ManifestResponseFromJSONTyped, ManifestResponseToJSON, type ManifestRuntime, ManifestRuntimeFromJSON, ManifestRuntimeFromJSONTyped, ManifestRuntimeToJSON, type Middleware, type MilestoneInfo, MilestoneInfoFromJSON, MilestoneInfoFromJSONTyped, MilestoneInfoToJSON, type OpsConfig, OpsConfigFromJSON, OpsConfigFromJSONTyped, OpsConfigToJSON, PagesApi, type PaginatedRecordsResponse, PaginatedRecordsResponseFromJSON, PaginatedRecordsResponseFromJSONTyped, PaginatedRecordsResponseToJSON, type PaginationMeta, PaginationMetaFromJSON, PaginationMetaFromJSONTyped, PaginationMetaToJSON, QueriesApi, type QueryContext, QueryContextFromJSON, QueryContextFromJSONTyped, QueryContextToJSON, type QueryDataRequest, QueryDataRequestFromJSON, QueryDataRequestFromJSONTyped, QueryDataRequestToJSON, type QueryDataResponse, QueryDataResponseFromJSON, QueryDataResponseFromJSONTyped, QueryDataResponseToJSON, type QueryDefinitionResponse, QueryDefinitionResponseFromJSON, QueryDefinitionResponseFromJSONTyped, QueryDefinitionResponseStatusEnum, QueryDefinitionResponseToJSON, type QueryMetadata, QueryMetadataFromJSON, QueryMetadataFromJSONTyped, QueryMetadataToJSON, type ReadinessResponse, ReadinessResponseFromJSON, ReadinessResponseFromJSONTyped, ReadinessResponseToJSON, type RequestContext, RequiredError, type ResolvePageResponse, ResolvePageResponseFromJSON, ResolvePageResponseFromJSONTyped, ResolvePageResponseToJSON, type ResolveTenantData, ResolveTenantDataFromJSON, ResolveTenantDataFromJSONTyped, ResolveTenantDataToJSON, type ResolveTenantRequest, ResolveTenantRequestFromJSON, ResolveTenantRequestFromJSONTyped, ResolveTenantRequestToJSON, type ResolveTenantResponse, ResolveTenantResponseFromJSON, ResolveTenantResponseFromJSONTyped, ResolveTenantResponseToJSON, ResponseError, type RewardInfo, RewardInfoFromJSON, RewardInfoFromJSONTyped, RewardInfoToJSON, type SigninCalendarData, SigninCalendarDataFromJSON, SigninCalendarDataFromJSONTyped, SigninCalendarDataToJSON, type SigninCalendarResponse, SigninCalendarResponseFromJSON, SigninCalendarResponseFromJSONTyped, SigninCalendarResponseToJSON, type SigninStatusResponse, SigninStatusResponseFromJSON, SigninStatusResponseFromJSONTyped, SigninStatusResponseToJSON, type SuccessResponse, SuccessResponseFromJSON, SuccessResponseFromJSONTyped, SuccessResponseToJSON, TenantApi, type TenantConfigData, TenantConfigDataFromJSON, TenantConfigDataFromJSONTyped, TenantConfigDataToJSON, type TenantConfigResponse, TenantConfigResponseFromJSON, TenantConfigResponseFromJSONTyped, TenantConfigResponseToJSON, TrackApi, type TrackBatchError, TrackBatchErrorFromJSON, TrackBatchErrorFromJSONTyped, TrackBatchErrorToJSON, type TrackBatchRequest, TrackBatchRequestFromJSON, TrackBatchRequestFromJSONTyped, TrackBatchRequestToJSON, type TrackBatchResponse, type TrackBatchResponseData, TrackBatchResponseDataFromJSON, TrackBatchResponseDataFromJSONTyped, TrackBatchResponseDataToJSON, TrackBatchResponseFromJSON, TrackBatchResponseFromJSONTyped, TrackBatchResponseToJSON, type TrackContext, TrackContextFromJSON, TrackContextFromJSONTyped, TrackContextToJSON, type TrackEvent, TrackEventFromJSON, TrackEventFromJSONTyped, TrackEventToJSON, type TrackSingleRequest, TrackSingleRequestFromJSON, TrackSingleRequestFromJSONTyped, TrackSingleRequestToJSON, type TrackSingleResponse, type TrackSingleResponseData, TrackSingleResponseDataFromJSON, TrackSingleResponseDataFromJSONTyped, TrackSingleResponseDataToJSON, TrackSingleResponseFromJSON, TrackSingleResponseFromJSONTyped, TrackSingleResponseToJSON, UserClient, type UserClientConfig, VERSION, type ValidateActionRequest, ValidateActionRequestFromJSON, ValidateActionRequestFromJSONTyped, ValidateActionRequestToJSON, type ValidateActionResponse, ValidateActionResponseFromJSON, ValidateActionResponseFromJSONTyped, ValidateActionResponseToJSON, createUserClient, createUserConfiguration, instanceOfActionClientContext, instanceOfActionDefinitionVersionResponse, instanceOfActivityInfoData, instanceOfActivityInfoResponse, instanceOfActivityStatus, instanceOfActivityStatusResponse, instanceOfBatchQueryItemRequest, instanceOfBatchQueryRequest, instanceOfBatchQueryResponse, instanceOfBlockedComponent, instanceOfClaimStatusResponse, instanceOfCursorPaginationMeta, instanceOfDegradeConfig, instanceOfErrorResponse, instanceOfExecuteActionRequest, instanceOfExecuteActionResponse, instanceOfHealthCheckItem, instanceOfHealthCheckResponse, instanceOfLivenessResponse, instanceOfManifestComponent, instanceOfManifestResponse, instanceOfManifestRuntime, instanceOfMilestoneInfo, instanceOfOpsConfig, instanceOfPaginatedRecordsResponse, instanceOfPaginationMeta, instanceOfQueryContext, instanceOfQueryDataRequest, instanceOfQueryDataResponse, instanceOfQueryDefinitionResponse, instanceOfQueryMetadata, instanceOfReadinessResponse, instanceOfResolvePageResponse, instanceOfResolveTenantData, instanceOfResolveTenantRequest, instanceOfResolveTenantResponse, instanceOfRewardInfo, instanceOfSigninCalendarData, instanceOfSigninCalendarResponse, instanceOfSigninStatusResponse, instanceOfSuccessResponse, instanceOfTenantConfigData, instanceOfTenantConfigResponse, instanceOfTrackBatchError, instanceOfTrackBatchRequest, instanceOfTrackBatchResponse, instanceOfTrackBatchResponseData, instanceOfTrackContext, instanceOfTrackEvent, instanceOfTrackSingleRequest, instanceOfTrackSingleResponse, instanceOfTrackSingleResponseData, instanceOfValidateActionRequest, instanceOfValidateActionResponse };
|
|
5445
|
+
export { type ActionClientContext, ActionClientContextFromJSON, ActionClientContextFromJSONTyped, ActionClientContextToJSON, type ActionDefinitionVersionResponse, ActionDefinitionVersionResponseFromJSON, ActionDefinitionVersionResponseFromJSONTyped, ActionDefinitionVersionResponseStatusEnum, ActionDefinitionVersionResponseToJSON, ActionsApi, ActivitiesApi, type ActivityInfoData, ActivityInfoDataFromJSON, ActivityInfoDataFromJSONTyped, ActivityInfoDataToJSON, type ActivityInfoResponse, ActivityInfoResponseFromJSON, ActivityInfoResponseFromJSONTyped, ActivityInfoResponseToJSON, type ActivityStatus, ActivityStatusFromJSON, ActivityStatusFromJSONTyped, type ActivityStatusResponse, ActivityStatusResponseFromJSON, ActivityStatusResponseFromJSONTyped, ActivityStatusResponseToJSON, ActivityStatusResponseTypeEnum, ActivityStatusToJSON, ActivityStatusTypeEnum, BaseAPI, type BatchQueryData200Response, BatchQueryData200ResponseFromJSON, BatchQueryData200ResponseFromJSONTyped, BatchQueryData200ResponseToJSON, type BatchQueryItemRequest, BatchQueryItemRequestFromJSON, BatchQueryItemRequestFromJSONTyped, BatchQueryItemRequestToJSON, type BatchQueryRequest, BatchQueryRequestFromJSON, BatchQueryRequestFromJSONTyped, BatchQueryRequestToJSON, type BatchQueryResponse, BatchQueryResponseFromJSON, BatchQueryResponseFromJSONTyped, BatchQueryResponseToJSON, type BlockedComponent, BlockedComponentFromJSON, BlockedComponentFromJSONTyped, BlockedComponentToJSON, type ClaimStatusResponse, ClaimStatusResponseFromJSON, ClaimStatusResponseFromJSONTyped, ClaimStatusResponseToJSON, Configuration, type ConfigurationParameters, type CursorPaginationMeta, CursorPaginationMetaFromJSON, CursorPaginationMetaFromJSONTyped, CursorPaginationMetaToJSON, type DegradeConfig, DegradeConfigFromJSON, DegradeConfigFromJSONTyped, DegradeConfigModeEnum, DegradeConfigToJSON, type ErrorResponse, ErrorResponseFromJSON, ErrorResponseFromJSONTyped, ErrorResponseToJSON, type ExecuteAction200Response, ExecuteAction200ResponseFromJSON, ExecuteAction200ResponseFromJSONTyped, ExecuteAction200ResponseToJSON, type ExecuteActionRequest, ExecuteActionRequestFromJSON, ExecuteActionRequestFromJSONTyped, ExecuteActionRequestToJSON, type ExecuteActionResponse, ExecuteActionResponseFromJSON, ExecuteActionResponseFromJSONTyped, ExecuteActionResponseToJSON, type FetchAPI, FetchError, type FetchParams, type GetActionDefinition200Response, GetActionDefinition200ResponseFromJSON, GetActionDefinition200ResponseFromJSONTyped, GetActionDefinition200ResponseToJSON, type GetActivityInfo200Response, GetActivityInfo200ResponseFromJSON, GetActivityInfo200ResponseFromJSONTyped, GetActivityInfo200ResponseToJSON, type GetActivityState200Response, GetActivityState200ResponseFromJSON, GetActivityState200ResponseFromJSONTyped, GetActivityState200ResponseToJSON, type GetClaimRecords200Response, GetClaimRecords200ResponseFromJSON, GetClaimRecords200ResponseFromJSONTyped, GetClaimRecords200ResponseToJSON, type GetClaimStatus200Response, GetClaimStatus200ResponseFromJSON, GetClaimStatus200ResponseFromJSONTyped, GetClaimStatus200ResponseToJSON, type GetPageConfig200Response, GetPageConfig200ResponseFromJSON, GetPageConfig200ResponseFromJSONTyped, GetPageConfig200ResponseToJSON, type GetPageManifest200Response, GetPageManifest200ResponseFromJSON, GetPageManifest200ResponseFromJSONTyped, GetPageManifest200ResponseToJSON, type GetQueryDefinition200Response, GetQueryDefinition200ResponseFromJSON, GetQueryDefinition200ResponseFromJSONTyped, GetQueryDefinition200ResponseToJSON, type GetSigninCalendar200Response, GetSigninCalendar200ResponseFromJSON, GetSigninCalendar200ResponseFromJSONTyped, GetSigninCalendar200ResponseToJSON, type GetSigninStatus200Response, GetSigninStatus200ResponseFromJSON, GetSigninStatus200ResponseFromJSONTyped, GetSigninStatus200ResponseToJSON, type GetTenantConfig200Response, GetTenantConfig200ResponseFromJSON, GetTenantConfig200ResponseFromJSONTyped, GetTenantConfig200ResponseToJSON, HealthApi, type HealthCheck200Response, HealthCheck200ResponseFromJSON, HealthCheck200ResponseFromJSONTyped, HealthCheck200ResponseToJSON, type HealthCheckItem, HealthCheckItemFromJSON, HealthCheckItemFromJSONTyped, HealthCheckItemToJSON, type HealthCheckResponse, HealthCheckResponseFromJSON, HealthCheckResponseFromJSONTyped, HealthCheckResponseToJSON, type LivenessCheck200Response, LivenessCheck200ResponseFromJSON, LivenessCheck200ResponseFromJSONTyped, LivenessCheck200ResponseToJSON, type LivenessResponse, LivenessResponseFromJSON, LivenessResponseFromJSONTyped, LivenessResponseToJSON, type ManifestComponent, ManifestComponentFromJSON, ManifestComponentFromJSONTyped, ManifestComponentSourceEnum, ManifestComponentToJSON, type ManifestResponse, ManifestResponseFromJSON, ManifestResponseFromJSONTyped, ManifestResponseToJSON, type ManifestRuntime, ManifestRuntimeFromJSON, ManifestRuntimeFromJSONTyped, ManifestRuntimeToJSON, type Middleware, type MilestoneInfo, MilestoneInfoFromJSON, MilestoneInfoFromJSONTyped, MilestoneInfoToJSON, type OpsConfig, OpsConfigFromJSON, OpsConfigFromJSONTyped, OpsConfigToJSON, PagesApi, type PaginatedRecordsResponse, PaginatedRecordsResponseFromJSON, PaginatedRecordsResponseFromJSONTyped, PaginatedRecordsResponseToJSON, type PaginationMeta, PaginationMetaFromJSON, PaginationMetaFromJSONTyped, PaginationMetaToJSON, QueriesApi, type QueryContext, QueryContextFromJSON, QueryContextFromJSONTyped, QueryContextToJSON, type QueryData200Response, QueryData200ResponseFromJSON, QueryData200ResponseFromJSONTyped, QueryData200ResponseToJSON, type QueryDataRequest, QueryDataRequestFromJSON, QueryDataRequestFromJSONTyped, QueryDataRequestToJSON, type QueryDataResponse, QueryDataResponseFromJSON, QueryDataResponseFromJSONTyped, QueryDataResponseToJSON, type QueryDefinitionResponse, QueryDefinitionResponseFromJSON, QueryDefinitionResponseFromJSONTyped, QueryDefinitionResponseStatusEnum, QueryDefinitionResponseToJSON, type QueryMetadata, QueryMetadataFromJSON, QueryMetadataFromJSONTyped, QueryMetadataToJSON, type ReadinessCheck200Response, ReadinessCheck200ResponseFromJSON, ReadinessCheck200ResponseFromJSONTyped, ReadinessCheck200ResponseToJSON, type ReadinessResponse, ReadinessResponseFromJSON, ReadinessResponseFromJSONTyped, ReadinessResponseToJSON, type RequestContext, RequiredError, type ResolvePage200Response, ResolvePage200ResponseFromJSON, ResolvePage200ResponseFromJSONTyped, ResolvePage200ResponseToJSON, type ResolvePageResponse, ResolvePageResponseFromJSON, ResolvePageResponseFromJSONTyped, ResolvePageResponseToJSON, type ResolveTenant200Response, ResolveTenant200ResponseFromJSON, ResolveTenant200ResponseFromJSONTyped, ResolveTenant200ResponseToJSON, type ResolveTenantData, ResolveTenantDataFromJSON, ResolveTenantDataFromJSONTyped, ResolveTenantDataToJSON, type ResolveTenantRequest, ResolveTenantRequestFromJSON, ResolveTenantRequestFromJSONTyped, ResolveTenantRequestToJSON, type ResolveTenantResponse, ResolveTenantResponseFromJSON, ResolveTenantResponseFromJSONTyped, ResolveTenantResponseToJSON, ResponseError, type RewardInfo, RewardInfoFromJSON, RewardInfoFromJSONTyped, RewardInfoToJSON, type SigninCalendarData, SigninCalendarDataFromJSON, SigninCalendarDataFromJSONTyped, SigninCalendarDataToJSON, type SigninCalendarResponse, SigninCalendarResponseFromJSON, SigninCalendarResponseFromJSONTyped, SigninCalendarResponseToJSON, type SigninStatusResponse, SigninStatusResponseFromJSON, SigninStatusResponseFromJSONTyped, SigninStatusResponseToJSON, type SuccessResponse, SuccessResponseFromJSON, SuccessResponseFromJSONTyped, SuccessResponseToJSON, TenantApi, type TenantConfigData, TenantConfigDataFromJSON, TenantConfigDataFromJSONTyped, TenantConfigDataToJSON, type TenantConfigResponse, TenantConfigResponseFromJSON, TenantConfigResponseFromJSONTyped, TenantConfigResponseToJSON, TrackApi, type TrackBatchError, TrackBatchErrorFromJSON, TrackBatchErrorFromJSONTyped, TrackBatchErrorToJSON, type TrackBatchRequest, TrackBatchRequestFromJSON, TrackBatchRequestFromJSONTyped, TrackBatchRequestToJSON, type TrackBatchResponse, type TrackBatchResponseData, TrackBatchResponseDataFromJSON, TrackBatchResponseDataFromJSONTyped, TrackBatchResponseDataToJSON, TrackBatchResponseFromJSON, TrackBatchResponseFromJSONTyped, TrackBatchResponseToJSON, type TrackContext, TrackContextFromJSON, TrackContextFromJSONTyped, TrackContextToJSON, type TrackEvent, TrackEventFromJSON, TrackEventFromJSONTyped, TrackEventToJSON, type TrackSingleRequest, TrackSingleRequestFromJSON, TrackSingleRequestFromJSONTyped, TrackSingleRequestToJSON, type TrackSingleResponse, type TrackSingleResponseData, TrackSingleResponseDataFromJSON, TrackSingleResponseDataFromJSONTyped, TrackSingleResponseDataToJSON, TrackSingleResponseFromJSON, TrackSingleResponseFromJSONTyped, TrackSingleResponseToJSON, UserClient, type UserClientConfig, VERSION, type ValidateActionParams200Response, ValidateActionParams200ResponseFromJSON, ValidateActionParams200ResponseFromJSONTyped, ValidateActionParams200ResponseToJSON, type ValidateActionRequest, ValidateActionRequestFromJSON, ValidateActionRequestFromJSONTyped, ValidateActionRequestToJSON, type ValidateActionResponse, ValidateActionResponseFromJSON, ValidateActionResponseFromJSONTyped, ValidateActionResponseToJSON, createUserClient, createUserConfiguration, instanceOfActionClientContext, instanceOfActionDefinitionVersionResponse, instanceOfActivityInfoData, instanceOfActivityInfoResponse, instanceOfActivityStatus, instanceOfActivityStatusResponse, instanceOfBatchQueryData200Response, instanceOfBatchQueryItemRequest, instanceOfBatchQueryRequest, instanceOfBatchQueryResponse, instanceOfBlockedComponent, instanceOfClaimStatusResponse, instanceOfCursorPaginationMeta, instanceOfDegradeConfig, instanceOfErrorResponse, instanceOfExecuteAction200Response, instanceOfExecuteActionRequest, instanceOfExecuteActionResponse, instanceOfGetActionDefinition200Response, instanceOfGetActivityInfo200Response, instanceOfGetActivityState200Response, instanceOfGetClaimRecords200Response, instanceOfGetClaimStatus200Response, instanceOfGetPageConfig200Response, instanceOfGetPageManifest200Response, instanceOfGetQueryDefinition200Response, instanceOfGetSigninCalendar200Response, instanceOfGetSigninStatus200Response, instanceOfGetTenantConfig200Response, instanceOfHealthCheck200Response, instanceOfHealthCheckItem, instanceOfHealthCheckResponse, instanceOfLivenessCheck200Response, instanceOfLivenessResponse, instanceOfManifestComponent, instanceOfManifestResponse, instanceOfManifestRuntime, instanceOfMilestoneInfo, instanceOfOpsConfig, instanceOfPaginatedRecordsResponse, instanceOfPaginationMeta, instanceOfQueryContext, instanceOfQueryData200Response, instanceOfQueryDataRequest, instanceOfQueryDataResponse, instanceOfQueryDefinitionResponse, instanceOfQueryMetadata, instanceOfReadinessCheck200Response, instanceOfReadinessResponse, instanceOfResolvePage200Response, instanceOfResolvePageResponse, instanceOfResolveTenant200Response, instanceOfResolveTenantData, instanceOfResolveTenantRequest, instanceOfResolveTenantResponse, instanceOfRewardInfo, instanceOfSigninCalendarData, instanceOfSigninCalendarResponse, instanceOfSigninStatusResponse, instanceOfSuccessResponse, instanceOfTenantConfigData, instanceOfTenantConfigResponse, instanceOfTrackBatchError, instanceOfTrackBatchRequest, instanceOfTrackBatchResponse, instanceOfTrackBatchResponseData, instanceOfTrackContext, instanceOfTrackEvent, instanceOfTrackSingleRequest, instanceOfTrackSingleResponse, instanceOfTrackSingleResponseData, instanceOfValidateActionParams200Response, instanceOfValidateActionRequest, instanceOfValidateActionResponse };
|