@djvlc/openapi-user-client 1.7.13 → 1.7.15
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 +255 -104
- package/dist/index.d.ts +255 -104
- package/dist/index.js +192 -98
- package/dist/index.mjs +175 -86
- package/openapi/dist/user-api.yaml +136 -34
- package/openapi/src/components/responses/_index.yaml +3 -3
- package/openapi/src/components/schemas/_index.yaml +105 -31
- package/openapi/src/paths/actions.yaml +15 -0
- package/openapi/src/paths/pages.yaml +6 -0
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -147,67 +147,67 @@ interface ApiResponse<T> {
|
|
|
147
147
|
/**
|
|
148
148
|
* 动作执行上下文(ActionClientContext,问题追溯必须字段)
|
|
149
149
|
* @export
|
|
150
|
-
* @interface
|
|
150
|
+
* @interface ActionClientContext
|
|
151
151
|
*/
|
|
152
|
-
interface
|
|
152
|
+
interface ActionClientContext {
|
|
153
153
|
/**
|
|
154
154
|
* 页面版本 ID(不可变,UniqueId)
|
|
155
155
|
* @type {string}
|
|
156
|
-
* @memberof
|
|
156
|
+
* @memberof ActionClientContext
|
|
157
157
|
*/
|
|
158
158
|
pageVersionId: string;
|
|
159
159
|
/**
|
|
160
160
|
* 组件版本 ID(UniqueId)
|
|
161
161
|
* @type {string}
|
|
162
|
-
* @memberof
|
|
162
|
+
* @memberof ActionClientContext
|
|
163
163
|
*/
|
|
164
164
|
componentVersionId?: string;
|
|
165
165
|
/**
|
|
166
166
|
* 组件实例 ID(UniqueId)
|
|
167
167
|
* @type {string}
|
|
168
|
-
* @memberof
|
|
168
|
+
* @memberof ActionClientContext
|
|
169
169
|
*/
|
|
170
170
|
componentInstanceId?: string;
|
|
171
171
|
/**
|
|
172
172
|
* 触发事件名
|
|
173
173
|
* @type {string}
|
|
174
|
-
* @memberof
|
|
174
|
+
* @memberof ActionClientContext
|
|
175
175
|
*/
|
|
176
176
|
triggerEvent?: string;
|
|
177
177
|
/**
|
|
178
178
|
* 设备 ID
|
|
179
179
|
* @type {string}
|
|
180
|
-
* @memberof
|
|
180
|
+
* @memberof ActionClientContext
|
|
181
181
|
*/
|
|
182
182
|
deviceId?: string;
|
|
183
183
|
/**
|
|
184
184
|
* 渠道标识
|
|
185
185
|
* @type {string}
|
|
186
|
-
* @memberof
|
|
186
|
+
* @memberof ActionClientContext
|
|
187
187
|
*/
|
|
188
188
|
channel?: string;
|
|
189
189
|
/**
|
|
190
190
|
* 客户端时间戳(ISODateTime)
|
|
191
191
|
* @type {Date}
|
|
192
|
-
* @memberof
|
|
192
|
+
* @memberof ActionClientContext
|
|
193
193
|
*/
|
|
194
194
|
clientTimestamp?: Date;
|
|
195
195
|
/**
|
|
196
196
|
* 扩展数据(Record<string, JsonValue>)
|
|
197
197
|
* @type {{ [key: string]: any; }}
|
|
198
|
-
* @memberof
|
|
198
|
+
* @memberof ActionClientContext
|
|
199
199
|
*/
|
|
200
200
|
extra?: {
|
|
201
201
|
[key: string]: any;
|
|
202
202
|
};
|
|
203
203
|
}
|
|
204
204
|
/**
|
|
205
|
-
* Check if a given object implements the
|
|
205
|
+
* Check if a given object implements the ActionClientContext interface.
|
|
206
206
|
*/
|
|
207
|
-
declare function
|
|
208
|
-
declare function
|
|
209
|
-
declare function
|
|
210
|
-
declare function
|
|
207
|
+
declare function instanceOfActionClientContext(value: object): boolean;
|
|
208
|
+
declare function ActionClientContextFromJSON(json: any): ActionClientContext;
|
|
209
|
+
declare function ActionClientContextFromJSONTyped(json: any, ignoreDiscriminator: boolean): ActionClientContext;
|
|
210
|
+
declare function ActionClientContextToJSON(value?: ActionClientContext | null): any;
|
|
211
211
|
|
|
212
212
|
/**
|
|
213
213
|
* DJVLC User API
|
|
@@ -666,6 +666,74 @@ declare function BatchQueryResponseFromJSON(json: any): BatchQueryResponse;
|
|
|
666
666
|
declare function BatchQueryResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): BatchQueryResponse;
|
|
667
667
|
declare function BatchQueryResponseToJSON(value?: BatchQueryResponse | null): any;
|
|
668
668
|
|
|
669
|
+
/**
|
|
670
|
+
* DJVLC User API
|
|
671
|
+
* DJVLC 低代码平台用户端 API(数据面) 提供以下功能: - 页面解析(Page Resolve) - 动作执行(Action Gateway - 统一入口) - 数据查询(Data Proxy - 统一入口) - 活动状态查询 - 埋点上报(Track) - 租户解析(Tenant Resolver) - 健康检查(Health) 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
672
|
+
*
|
|
673
|
+
* The version of the OpenAPI document: 1.0.0
|
|
674
|
+
* Contact: dev@djvlc.com
|
|
675
|
+
*
|
|
676
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
677
|
+
* https://openapi-generator.tech
|
|
678
|
+
* Do not edit the class manually.
|
|
679
|
+
*/
|
|
680
|
+
/**
|
|
681
|
+
* 被阻断的组件条目
|
|
682
|
+
* @export
|
|
683
|
+
* @interface BlockedComponentItem
|
|
684
|
+
*/
|
|
685
|
+
interface BlockedComponentItem {
|
|
686
|
+
/**
|
|
687
|
+
* 组件名称
|
|
688
|
+
* @type {string}
|
|
689
|
+
* @memberof BlockedComponentItem
|
|
690
|
+
*/
|
|
691
|
+
name: string;
|
|
692
|
+
/**
|
|
693
|
+
* 组件版本(可选,不指定则阻断所有版本)
|
|
694
|
+
* @type {string}
|
|
695
|
+
* @memberof BlockedComponentItem
|
|
696
|
+
*/
|
|
697
|
+
version?: string;
|
|
698
|
+
/**
|
|
699
|
+
* 阻断原因
|
|
700
|
+
* @type {string}
|
|
701
|
+
* @memberof BlockedComponentItem
|
|
702
|
+
*/
|
|
703
|
+
reason: string;
|
|
704
|
+
/**
|
|
705
|
+
* 阻断时间(ISO8601)
|
|
706
|
+
* @type {Date}
|
|
707
|
+
* @memberof BlockedComponentItem
|
|
708
|
+
*/
|
|
709
|
+
blockedAt?: Date;
|
|
710
|
+
/**
|
|
711
|
+
* 阻断操作者
|
|
712
|
+
* @type {string}
|
|
713
|
+
* @memberof BlockedComponentItem
|
|
714
|
+
*/
|
|
715
|
+
blockedBy?: string;
|
|
716
|
+
/**
|
|
717
|
+
* 降级版本(可选)
|
|
718
|
+
* @type {string}
|
|
719
|
+
* @memberof BlockedComponentItem
|
|
720
|
+
*/
|
|
721
|
+
fallbackVersion?: string;
|
|
722
|
+
/**
|
|
723
|
+
* 是否紧急阻断
|
|
724
|
+
* @type {boolean}
|
|
725
|
+
* @memberof BlockedComponentItem
|
|
726
|
+
*/
|
|
727
|
+
urgent?: boolean;
|
|
728
|
+
}
|
|
729
|
+
/**
|
|
730
|
+
* Check if a given object implements the BlockedComponentItem interface.
|
|
731
|
+
*/
|
|
732
|
+
declare function instanceOfBlockedComponentItem(value: object): boolean;
|
|
733
|
+
declare function BlockedComponentItemFromJSON(json: any): BlockedComponentItem;
|
|
734
|
+
declare function BlockedComponentItemFromJSONTyped(json: any, ignoreDiscriminator: boolean): BlockedComponentItem;
|
|
735
|
+
declare function BlockedComponentItemToJSON(value?: BlockedComponentItem | null): any;
|
|
736
|
+
|
|
669
737
|
/**
|
|
670
738
|
* DJVLC User API
|
|
671
739
|
* DJVLC 低代码平台用户端 API(数据面) 提供以下功能: - 页面解析(Page Resolve) - 动作执行(Action Gateway - 统一入口) - 数据查询(Data Proxy - 统一入口) - 活动状态查询 - 埋点上报(Track) - 租户解析(Tenant Resolver) - 健康检查(Health) 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
@@ -823,50 +891,6 @@ declare function ComponentManifestFromJSON(json: any): ComponentManifest;
|
|
|
823
891
|
declare function ComponentManifestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ComponentManifest;
|
|
824
892
|
declare function ComponentManifestToJSON(value?: ComponentManifest | null): any;
|
|
825
893
|
|
|
826
|
-
/**
|
|
827
|
-
* DJVLC User API
|
|
828
|
-
* DJVLC 低代码平台用户端 API(数据面) 提供以下功能: - 页面解析(Page Resolve) - 动作执行(Action Gateway - 统一入口) - 数据查询(Data Proxy - 统一入口) - 活动状态查询 - 埋点上报(Track) - 租户解析(Tenant Resolver) - 健康检查(Health) 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
829
|
-
*
|
|
830
|
-
* The version of the OpenAPI document: 1.0.0
|
|
831
|
-
* Contact: dev@djvlc.com
|
|
832
|
-
*
|
|
833
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
834
|
-
* https://openapi-generator.tech
|
|
835
|
-
* Do not edit the class manually.
|
|
836
|
-
*/
|
|
837
|
-
/**
|
|
838
|
-
* 错误详情(ApiErrorDetail,与 types/src/common/api.ts 保持一致)
|
|
839
|
-
* @export
|
|
840
|
-
* @interface ErrorDetail
|
|
841
|
-
*/
|
|
842
|
-
interface ErrorDetail {
|
|
843
|
-
/**
|
|
844
|
-
* 字段路径(可选)
|
|
845
|
-
* @type {string}
|
|
846
|
-
* @memberof ErrorDetail
|
|
847
|
-
*/
|
|
848
|
-
field?: string;
|
|
849
|
-
/**
|
|
850
|
-
* 错误消息(必填)
|
|
851
|
-
* @type {string}
|
|
852
|
-
* @memberof ErrorDetail
|
|
853
|
-
*/
|
|
854
|
-
message: string;
|
|
855
|
-
/**
|
|
856
|
-
* 错误码(可选)
|
|
857
|
-
* @type {string}
|
|
858
|
-
* @memberof ErrorDetail
|
|
859
|
-
*/
|
|
860
|
-
code?: string;
|
|
861
|
-
}
|
|
862
|
-
/**
|
|
863
|
-
* Check if a given object implements the ErrorDetail interface.
|
|
864
|
-
*/
|
|
865
|
-
declare function instanceOfErrorDetail(value: object): boolean;
|
|
866
|
-
declare function ErrorDetailFromJSON(json: any): ErrorDetail;
|
|
867
|
-
declare function ErrorDetailFromJSONTyped(json: any, ignoreDiscriminator: boolean): ErrorDetail;
|
|
868
|
-
declare function ErrorDetailToJSON(value?: ErrorDetail | null): any;
|
|
869
|
-
|
|
870
894
|
/**
|
|
871
895
|
* DJVLC User API
|
|
872
896
|
* DJVLC 低代码平台用户端 API(数据面) 提供以下功能: - 页面解析(Page Resolve) - 动作执行(Action Gateway - 统一入口) - 数据查询(Data Proxy - 统一入口) - 活动状态查询 - 埋点上报(Track) - 租户解析(Tenant Resolver) - 健康检查(Health) 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
@@ -903,7 +927,7 @@ interface ErrorResponse {
|
|
|
903
927
|
*/
|
|
904
928
|
message: string;
|
|
905
929
|
/**
|
|
906
|
-
*
|
|
930
|
+
* 错误详情(Record<string, unknown>,与 types ApiErrorResponse.data 一致)
|
|
907
931
|
* @type {{ [key: string]: any; }}
|
|
908
932
|
* @memberof ErrorResponse
|
|
909
933
|
*/
|
|
@@ -983,10 +1007,10 @@ interface ExecuteActionRequest {
|
|
|
983
1007
|
};
|
|
984
1008
|
/**
|
|
985
1009
|
*
|
|
986
|
-
* @type {
|
|
1010
|
+
* @type {ActionClientContext}
|
|
987
1011
|
* @memberof ExecuteActionRequest
|
|
988
1012
|
*/
|
|
989
|
-
context:
|
|
1013
|
+
context: ActionClientContext;
|
|
990
1014
|
/**
|
|
991
1015
|
* 幂等键(部分策略需要客户端提供,防重复提交)
|
|
992
1016
|
* @type {string}
|
|
@@ -1022,6 +1046,50 @@ declare function ExecuteActionRequestFromJSON(json: any): ExecuteActionRequest;
|
|
|
1022
1046
|
declare function ExecuteActionRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExecuteActionRequest;
|
|
1023
1047
|
declare function ExecuteActionRequestToJSON(value?: ExecuteActionRequest | null): any;
|
|
1024
1048
|
|
|
1049
|
+
/**
|
|
1050
|
+
* DJVLC User API
|
|
1051
|
+
* DJVLC 低代码平台用户端 API(数据面) 提供以下功能: - 页面解析(Page Resolve) - 动作执行(Action Gateway - 统一入口) - 数据查询(Data Proxy - 统一入口) - 活动状态查询 - 埋点上报(Track) - 租户解析(Tenant Resolver) - 健康检查(Health) 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
1052
|
+
*
|
|
1053
|
+
* The version of the OpenAPI document: 1.0.0
|
|
1054
|
+
* Contact: dev@djvlc.com
|
|
1055
|
+
*
|
|
1056
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1057
|
+
* https://openapi-generator.tech
|
|
1058
|
+
* Do not edit the class manually.
|
|
1059
|
+
*/
|
|
1060
|
+
/**
|
|
1061
|
+
* 风控决策(可选,风控拒绝时返回)
|
|
1062
|
+
* @export
|
|
1063
|
+
* @interface ExecuteActionResponseAllOfDataRiskDecision
|
|
1064
|
+
*/
|
|
1065
|
+
interface ExecuteActionResponseAllOfDataRiskDecision {
|
|
1066
|
+
/**
|
|
1067
|
+
* 是否放行
|
|
1068
|
+
* @type {boolean}
|
|
1069
|
+
* @memberof ExecuteActionResponseAllOfDataRiskDecision
|
|
1070
|
+
*/
|
|
1071
|
+
allowed?: boolean;
|
|
1072
|
+
/**
|
|
1073
|
+
* 拒绝原因(如 RISK_BLOCKED)
|
|
1074
|
+
* @type {string}
|
|
1075
|
+
* @memberof ExecuteActionResponseAllOfDataRiskDecision
|
|
1076
|
+
*/
|
|
1077
|
+
reason?: string;
|
|
1078
|
+
/**
|
|
1079
|
+
* 风控错误码
|
|
1080
|
+
* @type {string}
|
|
1081
|
+
* @memberof ExecuteActionResponseAllOfDataRiskDecision
|
|
1082
|
+
*/
|
|
1083
|
+
code?: string;
|
|
1084
|
+
}
|
|
1085
|
+
/**
|
|
1086
|
+
* Check if a given object implements the ExecuteActionResponseAllOfDataRiskDecision interface.
|
|
1087
|
+
*/
|
|
1088
|
+
declare function instanceOfExecuteActionResponseAllOfDataRiskDecision(value: object): boolean;
|
|
1089
|
+
declare function ExecuteActionResponseAllOfDataRiskDecisionFromJSON(json: any): ExecuteActionResponseAllOfDataRiskDecision;
|
|
1090
|
+
declare function ExecuteActionResponseAllOfDataRiskDecisionFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExecuteActionResponseAllOfDataRiskDecision;
|
|
1091
|
+
declare function ExecuteActionResponseAllOfDataRiskDecisionToJSON(value?: ExecuteActionResponseAllOfDataRiskDecision | null): any;
|
|
1092
|
+
|
|
1025
1093
|
/**
|
|
1026
1094
|
* DJVLC User API
|
|
1027
1095
|
* DJVLC 低代码平台用户端 API(数据面) 提供以下功能: - 页面解析(Page Resolve) - 动作执行(Action Gateway - 统一入口) - 数据查询(Data Proxy - 统一入口) - 活动状态查询 - 埋点上报(Track) - 租户解析(Tenant Resolver) - 健康检查(Health) 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
@@ -1108,6 +1176,12 @@ interface ExecuteActionResponseAllOfData {
|
|
|
1108
1176
|
* @memberof ExecuteActionResponseAllOfData
|
|
1109
1177
|
*/
|
|
1110
1178
|
retryAfter?: number;
|
|
1179
|
+
/**
|
|
1180
|
+
*
|
|
1181
|
+
* @type {ExecuteActionResponseAllOfDataRiskDecision}
|
|
1182
|
+
* @memberof ExecuteActionResponseAllOfData
|
|
1183
|
+
*/
|
|
1184
|
+
riskDecision?: ExecuteActionResponseAllOfDataRiskDecision;
|
|
1111
1185
|
}
|
|
1112
1186
|
/**
|
|
1113
1187
|
* Check if a given object implements the ExecuteActionResponseAllOfData interface.
|
|
@@ -1966,7 +2040,7 @@ declare function GetActivityState200ResponseToJSON(value?: GetActivityState200Re
|
|
|
1966
2040
|
* Do not edit the class manually.
|
|
1967
2041
|
*/
|
|
1968
2042
|
/**
|
|
1969
|
-
*
|
|
2043
|
+
* 分页元数据(PaginationMeta)
|
|
1970
2044
|
* @export
|
|
1971
2045
|
* @interface PaginationMeta
|
|
1972
2046
|
*/
|
|
@@ -1982,7 +2056,7 @@ interface PaginationMeta {
|
|
|
1982
2056
|
* @type {number}
|
|
1983
2057
|
* @memberof PaginationMeta
|
|
1984
2058
|
*/
|
|
1985
|
-
|
|
2059
|
+
pageSize: number;
|
|
1986
2060
|
/**
|
|
1987
2061
|
* 总记录数
|
|
1988
2062
|
* @type {number}
|
|
@@ -1995,6 +2069,18 @@ interface PaginationMeta {
|
|
|
1995
2069
|
* @memberof PaginationMeta
|
|
1996
2070
|
*/
|
|
1997
2071
|
totalPages: number;
|
|
2072
|
+
/**
|
|
2073
|
+
* 是否有下一页
|
|
2074
|
+
* @type {boolean}
|
|
2075
|
+
* @memberof PaginationMeta
|
|
2076
|
+
*/
|
|
2077
|
+
hasNext: boolean;
|
|
2078
|
+
/**
|
|
2079
|
+
* 是否有上一页
|
|
2080
|
+
* @type {boolean}
|
|
2081
|
+
* @memberof PaginationMeta
|
|
2082
|
+
*/
|
|
2083
|
+
hasPrev: boolean;
|
|
1998
2084
|
}
|
|
1999
2085
|
/**
|
|
2000
2086
|
* Check if a given object implements the PaginationMeta interface.
|
|
@@ -2784,25 +2870,72 @@ declare function IdempotencyConflictResponseToJSON(value?: IdempotencyConflictRe
|
|
|
2784
2870
|
* Do not edit the class manually.
|
|
2785
2871
|
*/
|
|
2786
2872
|
/**
|
|
2787
|
-
*
|
|
2873
|
+
* Kill-Switch 条目
|
|
2788
2874
|
* @export
|
|
2789
|
-
* @interface
|
|
2875
|
+
* @interface KillSwitchItem
|
|
2790
2876
|
*/
|
|
2791
|
-
interface
|
|
2877
|
+
interface KillSwitchItem {
|
|
2792
2878
|
/**
|
|
2793
|
-
*
|
|
2879
|
+
* 目标类型
|
|
2880
|
+
* @type {string}
|
|
2881
|
+
* @memberof KillSwitchItem
|
|
2882
|
+
*/
|
|
2883
|
+
targetType: KillSwitchItemTargetTypeEnum;
|
|
2884
|
+
/**
|
|
2885
|
+
* 目标 ID(actionType/componentName/featureKey/pageId/queryId)
|
|
2886
|
+
* @type {string}
|
|
2887
|
+
* @memberof KillSwitchItem
|
|
2888
|
+
*/
|
|
2889
|
+
targetId: string;
|
|
2890
|
+
/**
|
|
2891
|
+
* 是否启用(true = 被关闭)
|
|
2794
2892
|
* @type {boolean}
|
|
2795
|
-
* @memberof
|
|
2893
|
+
* @memberof KillSwitchItem
|
|
2796
2894
|
*/
|
|
2797
|
-
|
|
2895
|
+
enabled: boolean;
|
|
2896
|
+
/**
|
|
2897
|
+
* 关闭原因
|
|
2898
|
+
* @type {string}
|
|
2899
|
+
* @memberof KillSwitchItem
|
|
2900
|
+
*/
|
|
2901
|
+
reason?: string;
|
|
2902
|
+
/**
|
|
2903
|
+
* 关闭时间(ISO8601)
|
|
2904
|
+
* @type {Date}
|
|
2905
|
+
* @memberof KillSwitchItem
|
|
2906
|
+
*/
|
|
2907
|
+
enabledAt?: Date;
|
|
2908
|
+
/**
|
|
2909
|
+
* 关闭操作者
|
|
2910
|
+
* @type {string}
|
|
2911
|
+
* @memberof KillSwitchItem
|
|
2912
|
+
*/
|
|
2913
|
+
enabledBy?: string;
|
|
2914
|
+
/**
|
|
2915
|
+
* 用户提示消息
|
|
2916
|
+
* @type {string}
|
|
2917
|
+
* @memberof KillSwitchItem
|
|
2918
|
+
*/
|
|
2919
|
+
userMessage?: string;
|
|
2798
2920
|
}
|
|
2799
2921
|
/**
|
|
2800
|
-
*
|
|
2922
|
+
* @export
|
|
2801
2923
|
*/
|
|
2802
|
-
declare
|
|
2803
|
-
|
|
2804
|
-
|
|
2805
|
-
|
|
2924
|
+
declare const KillSwitchItemTargetTypeEnum: {
|
|
2925
|
+
readonly ACTION: "action";
|
|
2926
|
+
readonly COMPONENT: "component";
|
|
2927
|
+
readonly FEATURE: "feature";
|
|
2928
|
+
readonly PAGE: "page";
|
|
2929
|
+
readonly QUERY: "query";
|
|
2930
|
+
};
|
|
2931
|
+
type KillSwitchItemTargetTypeEnum = typeof KillSwitchItemTargetTypeEnum[keyof typeof KillSwitchItemTargetTypeEnum];
|
|
2932
|
+
/**
|
|
2933
|
+
* Check if a given object implements the KillSwitchItem interface.
|
|
2934
|
+
*/
|
|
2935
|
+
declare function instanceOfKillSwitchItem(value: object): boolean;
|
|
2936
|
+
declare function KillSwitchItemFromJSON(json: any): KillSwitchItem;
|
|
2937
|
+
declare function KillSwitchItemFromJSONTyped(json: any, ignoreDiscriminator: boolean): KillSwitchItem;
|
|
2938
|
+
declare function KillSwitchItemToJSON(value?: KillSwitchItem | null): any;
|
|
2806
2939
|
|
|
2807
2940
|
/**
|
|
2808
2941
|
* DJVLC User API
|
|
@@ -2818,35 +2951,23 @@ declare function LivenessCheck200ResponseToJSON(value?: LivenessCheck200Response
|
|
|
2818
2951
|
/**
|
|
2819
2952
|
*
|
|
2820
2953
|
* @export
|
|
2821
|
-
* @interface
|
|
2954
|
+
* @interface LivenessCheck200Response
|
|
2822
2955
|
*/
|
|
2823
|
-
interface
|
|
2824
|
-
/**
|
|
2825
|
-
*
|
|
2826
|
-
* @type {string}
|
|
2827
|
-
* @memberof OpsConfigBlockedComponentsInner
|
|
2828
|
-
*/
|
|
2829
|
-
componentName?: string;
|
|
2830
|
-
/**
|
|
2831
|
-
*
|
|
2832
|
-
* @type {string}
|
|
2833
|
-
* @memberof OpsConfigBlockedComponentsInner
|
|
2834
|
-
*/
|
|
2835
|
-
componentVersion?: string;
|
|
2956
|
+
interface LivenessCheck200Response {
|
|
2836
2957
|
/**
|
|
2837
2958
|
*
|
|
2838
|
-
* @type {
|
|
2839
|
-
* @memberof
|
|
2959
|
+
* @type {boolean}
|
|
2960
|
+
* @memberof LivenessCheck200Response
|
|
2840
2961
|
*/
|
|
2841
|
-
|
|
2962
|
+
alive?: boolean;
|
|
2842
2963
|
}
|
|
2843
2964
|
/**
|
|
2844
|
-
* Check if a given object implements the
|
|
2965
|
+
* Check if a given object implements the LivenessCheck200Response interface.
|
|
2845
2966
|
*/
|
|
2846
|
-
declare function
|
|
2847
|
-
declare function
|
|
2848
|
-
declare function
|
|
2849
|
-
declare function
|
|
2967
|
+
declare function instanceOfLivenessCheck200Response(value: object): boolean;
|
|
2968
|
+
declare function LivenessCheck200ResponseFromJSON(json: any): LivenessCheck200Response;
|
|
2969
|
+
declare function LivenessCheck200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): LivenessCheck200Response;
|
|
2970
|
+
declare function LivenessCheck200ResponseToJSON(value?: LivenessCheck200Response | null): any;
|
|
2850
2971
|
|
|
2851
2972
|
/**
|
|
2852
2973
|
* DJVLC User API
|
|
@@ -2861,23 +2982,29 @@ declare function OpsConfigBlockedComponentsInnerToJSON(value?: OpsConfigBlockedC
|
|
|
2861
2982
|
*/
|
|
2862
2983
|
|
|
2863
2984
|
/**
|
|
2864
|
-
*
|
|
2985
|
+
* 运维配置(运行时下发,与 types/page/snapshot.ts OpsConfig 对齐)
|
|
2865
2986
|
* @export
|
|
2866
2987
|
* @interface OpsConfig
|
|
2867
2988
|
*/
|
|
2868
2989
|
interface OpsConfig {
|
|
2869
2990
|
/**
|
|
2870
|
-
*
|
|
2871
|
-
* @type {
|
|
2991
|
+
* 配置版本 ID(用于缓存失效)
|
|
2992
|
+
* @type {string}
|
|
2993
|
+
* @memberof OpsConfig
|
|
2994
|
+
*/
|
|
2995
|
+
configVersionId?: string;
|
|
2996
|
+
/**
|
|
2997
|
+
* Kill-Switch 列表(被紧急关闭的功能/动作)
|
|
2998
|
+
* @type {Array<KillSwitchItem>}
|
|
2872
2999
|
* @memberof OpsConfig
|
|
2873
3000
|
*/
|
|
2874
|
-
killSwitch: Array<
|
|
3001
|
+
killSwitch: Array<KillSwitchItem>;
|
|
2875
3002
|
/**
|
|
2876
3003
|
* 被阻断的组件列表
|
|
2877
|
-
* @type {Array<
|
|
3004
|
+
* @type {Array<BlockedComponentItem>}
|
|
2878
3005
|
* @memberof OpsConfig
|
|
2879
3006
|
*/
|
|
2880
|
-
blockedComponents: Array<
|
|
3007
|
+
blockedComponents: Array<BlockedComponentItem>;
|
|
2881
3008
|
/**
|
|
2882
3009
|
* 功能开关(Feature Flags)
|
|
2883
3010
|
* @type {{ [key: string]: boolean; }}
|
|
@@ -2886,6 +3013,12 @@ interface OpsConfig {
|
|
|
2886
3013
|
flags: {
|
|
2887
3014
|
[key: string]: boolean;
|
|
2888
3015
|
};
|
|
3016
|
+
/**
|
|
3017
|
+
* 配置过期时间(ISO8601)
|
|
3018
|
+
* @type {Date}
|
|
3019
|
+
* @memberof OpsConfig
|
|
3020
|
+
*/
|
|
3021
|
+
expiresAt?: Date;
|
|
2889
3022
|
}
|
|
2890
3023
|
/**
|
|
2891
3024
|
* Check if a given object implements the OpsConfig interface.
|
|
@@ -4107,6 +4240,18 @@ interface ResolvePageResponseAllOfData {
|
|
|
4107
4240
|
* @memberof ResolvePageResponseAllOfData
|
|
4108
4241
|
*/
|
|
4109
4242
|
cacheTtlSeconds: number;
|
|
4243
|
+
/**
|
|
4244
|
+
* 链路追踪 ID(全链路透传,与 types 可观测原则一致)
|
|
4245
|
+
* @type {string}
|
|
4246
|
+
* @memberof ResolvePageResponseAllOfData
|
|
4247
|
+
*/
|
|
4248
|
+
traceId?: string;
|
|
4249
|
+
/**
|
|
4250
|
+
* 运行时版本(SemVer,与 manifest.runtime.version 一致)
|
|
4251
|
+
* @type {string}
|
|
4252
|
+
* @memberof ResolvePageResponseAllOfData
|
|
4253
|
+
*/
|
|
4254
|
+
runtimeVersion?: string;
|
|
4110
4255
|
/**
|
|
4111
4256
|
*
|
|
4112
4257
|
* @type {ResolvePageResponseAllOfDataRolloutMatch}
|
|
@@ -4991,6 +5136,8 @@ declare function ValidateActionResponseToJSON(value?: ValidateActionResponse | n
|
|
|
4991
5136
|
|
|
4992
5137
|
interface ExecuteActionOperationRequest {
|
|
4993
5138
|
executeActionRequest: ExecuteActionRequest;
|
|
5139
|
+
idempotencyKey?: string;
|
|
5140
|
+
xTraceId?: string;
|
|
4994
5141
|
}
|
|
4995
5142
|
interface GetActionDefinitionRequest {
|
|
4996
5143
|
actionDefinitionVersionId: string;
|
|
@@ -5009,6 +5156,8 @@ interface ActionsApiInterface {
|
|
|
5009
5156
|
* Action Gateway 唯一入口,所有业务动作都通过此接口执行。 执行流程(Pipeline): 1. Auth(登录态/票据/签名) 2. Risk(限流、黑名单、设备指纹、验证码开关) 3. Idempotency(幂等键检查) 4. Execute(执行器:Claim/Signin/Lottery...) 5. Audit(审计落库 + outbox) 6. Normalize(统一错误码/返回) 支持的动作类型: - claim: 领取 - signin: 签到 - lottery: 抽奖 - reserve: 预约 - bind: 绑定 - task_complete: 任务完成 - vote: 投票 - share: 分享 - form_submit: 表单提交 - navigate: 页面跳转(内置) - setState: 状态更新(内置) - showToast: 提示消息(内置) - custom: 自定义动作
|
|
5010
5157
|
* @summary 执行动作(统一入口)
|
|
5011
5158
|
* @param {ExecuteActionRequest} executeActionRequest
|
|
5159
|
+
* @param {string} [idempotencyKey] 幂等键(与 body.idempotencyKey 二选一,推荐 header 传递)
|
|
5160
|
+
* @param {string} [xTraceId] 链路追踪 ID(OTel,全链路透传)
|
|
5012
5161
|
* @param {*} [options] Override http request option.
|
|
5013
5162
|
* @throws {RequiredError}
|
|
5014
5163
|
* @memberof ActionsApiInterface
|
|
@@ -5364,6 +5513,7 @@ declare class HealthApi extends BaseAPI implements HealthApiInterface {
|
|
|
5364
5513
|
|
|
5365
5514
|
interface ResolvePageRequest {
|
|
5366
5515
|
pageId: string;
|
|
5516
|
+
xTraceId?: string;
|
|
5367
5517
|
env?: ResolvePageEnvEnum;
|
|
5368
5518
|
uid?: string;
|
|
5369
5519
|
deviceId?: string;
|
|
@@ -5381,6 +5531,7 @@ interface PagesApiInterface {
|
|
|
5381
5531
|
* Runtime 的核心接口,返回渲染所需的完整数据。 支持两种模式: 1. 稳定入口(推荐):支持灰度/回滚/ops,返回 resolvedVersionId 和 CDN 地址 2. 保底模式:当 includeSnapshot=1 时,返回完整 snapshot(CDN 失败时使用) 响应包含: - resolvedVersionId: 解析后的页面版本 ID(考虑灰度/回滚) - cdnBase: CDN 基础地址 - snapshotUrl: snapshot.json 的完整 URL - manifestUrl: manifest.json 的完整 URL - ops: 运维配置(killSwitch、blockedComponents、flags) - etag: 内容哈希(用于缓存) - cacheTtlSeconds: 缓存 TTL(建议 10~30 秒) - snapshot: 完整快照(仅当 includeSnapshot=1 时返回)
|
|
5382
5532
|
* @summary 解析页面(Runtime 核心接口)
|
|
5383
5533
|
* @param {string} pageId 页面 ID
|
|
5534
|
+
* @param {string} [xTraceId] 链路追踪 ID(OTel,全链路透传)
|
|
5384
5535
|
* @param {'prod' | 'preview' | 'staging'} [env] 环境(prod/preview/staging)
|
|
5385
5536
|
* @param {string} [uid] 用户 ID(用于灰度路由)
|
|
5386
5537
|
* @param {string} [deviceId] 设备 ID
|
|
@@ -5791,4 +5942,4 @@ declare function createUserConfiguration(config?: UserClientConfig): Configurati
|
|
|
5791
5942
|
/** 客户端版本 */
|
|
5792
5943
|
declare const VERSION = "1.0.0";
|
|
5793
5944
|
|
|
5794
|
-
export { type ActionContext, ActionContextFromJSON, ActionContextFromJSONTyped, ActionContextToJSON, type ActionDefinitionResponse, type ActionDefinitionResponseData, ActionDefinitionResponseDataFromJSON, ActionDefinitionResponseDataFromJSONTyped, ActionDefinitionResponseDataToJSON, ActionDefinitionResponseFromJSON, ActionDefinitionResponseFromJSONTyped, ActionDefinitionResponseToJSON, type ActionEffect, ActionEffectFromJSON, ActionEffectFromJSONTyped, ActionEffectToJSON, ActionEffectTypeEnum, type ActionManifest, ActionManifestActionTypeEnum, ActionManifestFromJSON, ActionManifestFromJSONTyped, ActionManifestToJSON, ActionsApi, ActivitiesApi, BaseAPI, type BatchQueryRequest, BatchQueryRequestFromJSON, BatchQueryRequestFromJSONTyped, type BatchQueryRequestQueriesInner, BatchQueryRequestQueriesInnerFromJSON, BatchQueryRequestQueriesInnerFromJSONTyped, BatchQueryRequestQueriesInnerToJSON, BatchQueryRequestToJSON, type BatchQueryResponse, type BatchQueryResponseDataValue, type BatchQueryResponseDataValueError, BatchQueryResponseDataValueErrorFromJSON, BatchQueryResponseDataValueErrorFromJSONTyped, BatchQueryResponseDataValueErrorToJSON, BatchQueryResponseDataValueFromJSON, BatchQueryResponseDataValueFromJSONTyped, BatchQueryResponseDataValueToJSON, BatchQueryResponseFromJSON, BatchQueryResponseFromJSONTyped, BatchQueryResponseToJSON, type ClaimRecordInfo, ClaimRecordInfoFromJSON, ClaimRecordInfoFromJSONTyped, ClaimRecordInfoStatusEnum, ClaimRecordInfoToJSON, type ComponentManifest, ComponentManifestFromJSON, ComponentManifestFromJSONTyped, ComponentManifestToJSON, Configuration, type ConfigurationParameters, type ErrorDetail, ErrorDetailFromJSON, ErrorDetailFromJSONTyped, ErrorDetailToJSON, type ErrorResponse, ErrorResponseFromJSON, ErrorResponseFromJSONTyped, ErrorResponseToJSON, type ExecuteActionRequest, ExecuteActionRequestActionTypeEnum, ExecuteActionRequestFromJSON, ExecuteActionRequestFromJSONTyped, ExecuteActionRequestToJSON, type ExecuteActionResponse, type ExecuteActionResponseAllOfData, ExecuteActionResponseAllOfDataFromJSON, ExecuteActionResponseAllOfDataFromJSONTyped, ExecuteActionResponseAllOfDataToJSON, ExecuteActionResponseFromJSON, ExecuteActionResponseFromJSONTyped, ExecuteActionResponseToJSON, type FetchAPI, FetchError, type GetActivityInfo200Response, GetActivityInfo200ResponseFromJSON, GetActivityInfo200ResponseFromJSONTyped, GetActivityInfo200ResponseToJSON, type GetActivityState200Response, GetActivityState200ResponseFromJSON, GetActivityState200ResponseFromJSONTyped, GetActivityState200ResponseToJSON, type GetClaimRecords200Response, GetClaimRecords200ResponseFromJSON, GetClaimRecords200ResponseFromJSONTyped, GetClaimRecords200ResponseToJSON, type GetLotteryRecords200Response, GetLotteryRecords200ResponseFromJSON, GetLotteryRecords200ResponseFromJSONTyped, GetLotteryRecords200ResponseToJSON, type GetSigninCalendar200Response, GetSigninCalendar200ResponseFromJSON, GetSigninCalendar200ResponseFromJSONTyped, GetSigninCalendar200ResponseToJSON, type GetTenantConfig200Response, GetTenantConfig200ResponseFromJSON, GetTenantConfig200ResponseFromJSONTyped, GetTenantConfig200ResponseToJSON, HealthApi, type HealthResponse, type HealthResponseDependenciesValue, HealthResponseDependenciesValueFromJSON, HealthResponseDependenciesValueFromJSONTyped, HealthResponseDependenciesValueStatusEnum, HealthResponseDependenciesValueToJSON, HealthResponseFromJSON, HealthResponseFromJSONTyped, HealthResponseStatusEnum, HealthResponseToJSON, type IdempotencyConflictResponse, type IdempotencyConflictResponseData, IdempotencyConflictResponseDataFromJSON, IdempotencyConflictResponseDataFromJSONTyped, IdempotencyConflictResponseDataToJSON, IdempotencyConflictResponseFromJSON, IdempotencyConflictResponseFromJSONTyped, IdempotencyConflictResponseToJSON, type LivenessCheck200Response, LivenessCheck200ResponseFromJSON, LivenessCheck200ResponseFromJSONTyped, LivenessCheck200ResponseToJSON, type LotteryRecordInfo, LotteryRecordInfoFromJSON, LotteryRecordInfoFromJSONTyped, LotteryRecordInfoPrizeTypeEnum, LotteryRecordInfoStatusEnum, LotteryRecordInfoToJSON, type Middleware, type OpsConfig, type OpsConfigBlockedComponentsInner, OpsConfigBlockedComponentsInnerFromJSON, OpsConfigBlockedComponentsInnerFromJSONTyped, OpsConfigBlockedComponentsInnerToJSON, OpsConfigFromJSON, OpsConfigFromJSONTyped, OpsConfigToJSON, type PageResponse, type PageResponseAllOfData, PageResponseAllOfDataFromJSON, PageResponseAllOfDataFromJSONTyped, type PageResponseAllOfDataMeta, PageResponseAllOfDataMetaFromJSON, PageResponseAllOfDataMetaFromJSONTyped, PageResponseAllOfDataMetaToJSON, PageResponseAllOfDataToJSON, PageResponseFromJSON, PageResponseFromJSONTyped, PageResponseToJSON, PagesApi, type PaginationMeta, PaginationMetaFromJSON, PaginationMetaFromJSONTyped, PaginationMetaToJSON, type PublicActivityInfo, PublicActivityInfoFromJSON, PublicActivityInfoFromJSONTyped, type PublicActivityInfoRewardsInner, PublicActivityInfoRewardsInnerFromJSON, PublicActivityInfoRewardsInnerFromJSONTyped, PublicActivityInfoRewardsInnerToJSON, PublicActivityInfoStatusEnum, PublicActivityInfoToJSON, PublicActivityInfoTypeEnum, QueriesApi, type QueryContext, QueryContextFromJSON, QueryContextFromJSONTyped, QueryContextToJSON, type QueryDataRequest, type QueryDataRequestCacheControl, QueryDataRequestCacheControlFromJSON, QueryDataRequestCacheControlFromJSONTyped, QueryDataRequestCacheControlToJSON, QueryDataRequestFromJSON, QueryDataRequestFromJSONTyped, QueryDataRequestToJSON, type QueryDataResponse, QueryDataResponseFromJSON, QueryDataResponseFromJSONTyped, QueryDataResponseToJSON, type QueryDefinitionResponse, type QueryDefinitionResponseData, QueryDefinitionResponseDataFromJSON, QueryDefinitionResponseDataFromJSONTyped, QueryDefinitionResponseDataToJSON, QueryDefinitionResponseFromJSON, QueryDefinitionResponseFromJSONTyped, QueryDefinitionResponseToJSON, type QueryManifest, QueryManifestFromJSON, QueryManifestFromJSONTyped, QueryManifestToJSON, type ReadinessCheck200Response, ReadinessCheck200ResponseFromJSON, ReadinessCheck200ResponseFromJSONTyped, ReadinessCheck200ResponseToJSON, type ReadinessCheck503Response, ReadinessCheck503ResponseFromJSON, ReadinessCheck503ResponseFromJSONTyped, ReadinessCheck503ResponseToJSON, RequiredError, type ResolvePageResponse, type ResolvePageResponseAllOfData, ResolvePageResponseAllOfDataFromJSON, ResolvePageResponseAllOfDataFromJSONTyped, type ResolvePageResponseAllOfDataRolloutMatch, ResolvePageResponseAllOfDataRolloutMatchFromJSON, ResolvePageResponseAllOfDataRolloutMatchFromJSONTyped, ResolvePageResponseAllOfDataRolloutMatchToJSON, type ResolvePageResponseAllOfDataSnapshot, type ResolvePageResponseAllOfDataSnapshotDefinitionsDigest, type ResolvePageResponseAllOfDataSnapshotDefinitionsDigestActions, ResolvePageResponseAllOfDataSnapshotDefinitionsDigestActionsFromJSON, ResolvePageResponseAllOfDataSnapshotDefinitionsDigestActionsFromJSONTyped, ResolvePageResponseAllOfDataSnapshotDefinitionsDigestActionsToJSON, ResolvePageResponseAllOfDataSnapshotDefinitionsDigestFromJSON, ResolvePageResponseAllOfDataSnapshotDefinitionsDigestFromJSONTyped, ResolvePageResponseAllOfDataSnapshotDefinitionsDigestToJSON, ResolvePageResponseAllOfDataSnapshotFromJSON, ResolvePageResponseAllOfDataSnapshotFromJSONTyped, type ResolvePageResponseAllOfDataSnapshotManifest, type ResolvePageResponseAllOfDataSnapshotManifestComponents, ResolvePageResponseAllOfDataSnapshotManifestComponentsFromJSON, ResolvePageResponseAllOfDataSnapshotManifestComponentsFromJSONTyped, ResolvePageResponseAllOfDataSnapshotManifestComponentsToJSON, type ResolvePageResponseAllOfDataSnapshotManifestEntrypoints, ResolvePageResponseAllOfDataSnapshotManifestEntrypointsFromJSON, ResolvePageResponseAllOfDataSnapshotManifestEntrypointsFromJSONTyped, ResolvePageResponseAllOfDataSnapshotManifestEntrypointsToJSON, ResolvePageResponseAllOfDataSnapshotManifestFromJSON, ResolvePageResponseAllOfDataSnapshotManifestFromJSONTyped, type ResolvePageResponseAllOfDataSnapshotManifestRuntime, ResolvePageResponseAllOfDataSnapshotManifestRuntimeFromJSON, ResolvePageResponseAllOfDataSnapshotManifestRuntimeFromJSONTyped, ResolvePageResponseAllOfDataSnapshotManifestRuntimeToJSON, ResolvePageResponseAllOfDataSnapshotManifestToJSON, type ResolvePageResponseAllOfDataSnapshotMeta, type ResolvePageResponseAllOfDataSnapshotMetaBindings, ResolvePageResponseAllOfDataSnapshotMetaBindingsFromJSON, ResolvePageResponseAllOfDataSnapshotMetaBindingsFromJSONTyped, ResolvePageResponseAllOfDataSnapshotMetaBindingsToJSON, ResolvePageResponseAllOfDataSnapshotMetaEnvEnum, ResolvePageResponseAllOfDataSnapshotMetaFromJSON, ResolvePageResponseAllOfDataSnapshotMetaFromJSONTyped, ResolvePageResponseAllOfDataSnapshotMetaToJSON, type ResolvePageResponseAllOfDataSnapshotPage, ResolvePageResponseAllOfDataSnapshotPageFromJSON, ResolvePageResponseAllOfDataSnapshotPageFromJSONTyped, ResolvePageResponseAllOfDataSnapshotPageToJSON, ResolvePageResponseAllOfDataSnapshotToJSON, ResolvePageResponseAllOfDataToJSON, ResolvePageResponseFromJSON, ResolvePageResponseFromJSONTyped, ResolvePageResponseToJSON, type ResolveTenant200Response, ResolveTenant200ResponseFromJSON, ResolveTenant200ResponseFromJSONTyped, ResolveTenant200ResponseToJSON, type ResolveTenantRequest, ResolveTenantRequestFromJSON, ResolveTenantRequestFromJSONTyped, ResolveTenantRequestToJSON, type ResourceManifests, ResourceManifestsFromJSON, ResourceManifestsFromJSONTyped, ResourceManifestsToJSON, ResponseError, type SigninCalendar, SigninCalendarFromJSON, SigninCalendarFromJSONTyped, type SigninCalendarRecordsInner, SigninCalendarRecordsInnerFromJSON, SigninCalendarRecordsInnerFromJSONTyped, type SigninCalendarRecordsInnerReward, SigninCalendarRecordsInnerRewardFromJSON, SigninCalendarRecordsInnerRewardFromJSONTyped, SigninCalendarRecordsInnerRewardToJSON, SigninCalendarRecordsInnerToJSON, SigninCalendarToJSON, type SuccessResponse, SuccessResponseFromJSON, SuccessResponseFromJSONTyped, SuccessResponseToJSON, TenantApi, type TenantConfig, type TenantConfigBlockedComponentsInner, TenantConfigBlockedComponentsInnerFromJSON, TenantConfigBlockedComponentsInnerFromJSONTyped, TenantConfigBlockedComponentsInnerToJSON, TenantConfigFromJSON, TenantConfigFromJSONTyped, type TenantConfigKillSwitch, TenantConfigKillSwitchFromJSON, TenantConfigKillSwitchFromJSONTyped, TenantConfigKillSwitchToJSON, TenantConfigToJSON, type TenantInfo, TenantInfoFromJSON, TenantInfoFromJSONTyped, TenantInfoStatusEnum, TenantInfoToJSON, type Track202Response, type Track202ResponseData, Track202ResponseDataFromJSON, Track202ResponseDataFromJSONTyped, Track202ResponseDataToJSON, Track202ResponseFromJSON, Track202ResponseFromJSONTyped, Track202ResponseToJSON, TrackApi, type TrackBatch202Response, type TrackBatch202ResponseData, type TrackBatch202ResponseDataErrorsInner, TrackBatch202ResponseDataErrorsInnerFromJSON, TrackBatch202ResponseDataErrorsInnerFromJSONTyped, TrackBatch202ResponseDataErrorsInnerToJSON, TrackBatch202ResponseDataFromJSON, TrackBatch202ResponseDataFromJSONTyped, TrackBatch202ResponseDataToJSON, TrackBatch202ResponseFromJSON, TrackBatch202ResponseFromJSONTyped, TrackBatch202ResponseToJSON, type TrackBatchRequest, TrackBatchRequestFromJSON, TrackBatchRequestFromJSONTyped, TrackBatchRequestToJSON, type TrackRequest, type TrackRequestContext, TrackRequestContextFromJSON, TrackRequestContextFromJSONTyped, TrackRequestContextToJSON, TrackRequestEventTypeEnum, TrackRequestFromJSON, TrackRequestFromJSONTyped, TrackRequestToJSON, type UserActivityState, UserActivityStateActivityTypeEnum, UserActivityStateFromJSON, UserActivityStateFromJSONTyped, UserActivityStateToJSON, type UserActivityStateTypeState, UserActivityStateTypeStateFromJSON, UserActivityStateTypeStateFromJSONTyped, type UserActivityStateTypeStateOneOf, type UserActivityStateTypeStateOneOf1, type UserActivityStateTypeStateOneOf1CycleRecordsInner, UserActivityStateTypeStateOneOf1CycleRecordsInnerFromJSON, UserActivityStateTypeStateOneOf1CycleRecordsInnerFromJSONTyped, UserActivityStateTypeStateOneOf1CycleRecordsInnerToJSON, UserActivityStateTypeStateOneOf1FromJSON, UserActivityStateTypeStateOneOf1FromJSONTyped, type UserActivityStateTypeStateOneOf1NextReward, UserActivityStateTypeStateOneOf1NextRewardFromJSON, UserActivityStateTypeStateOneOf1NextRewardFromJSONTyped, UserActivityStateTypeStateOneOf1NextRewardToJSON, UserActivityStateTypeStateOneOf1NextRewardTypeEnum, UserActivityStateTypeStateOneOf1ToJSON, UserActivityStateTypeStateOneOf1TypeEnum, type UserActivityStateTypeStateOneOf2, UserActivityStateTypeStateOneOf2FromJSON, UserActivityStateTypeStateOneOf2FromJSONTyped, type UserActivityStateTypeStateOneOf2PityProgress, UserActivityStateTypeStateOneOf2PityProgressFromJSON, UserActivityStateTypeStateOneOf2PityProgressFromJSONTyped, UserActivityStateTypeStateOneOf2PityProgressToJSON, type UserActivityStateTypeStateOneOf2ResourcesInner, UserActivityStateTypeStateOneOf2ResourcesInnerFromJSON, UserActivityStateTypeStateOneOf2ResourcesInnerFromJSONTyped, UserActivityStateTypeStateOneOf2ResourcesInnerToJSON, UserActivityStateTypeStateOneOf2ToJSON, UserActivityStateTypeStateOneOf2TypeEnum, type UserActivityStateTypeStateOneOfAvailablePrizesInner, UserActivityStateTypeStateOneOfAvailablePrizesInnerFromJSON, UserActivityStateTypeStateOneOfAvailablePrizesInnerFromJSONTyped, UserActivityStateTypeStateOneOfAvailablePrizesInnerToJSON, UserActivityStateTypeStateOneOfFromJSON, UserActivityStateTypeStateOneOfFromJSONTyped, UserActivityStateTypeStateOneOfToJSON, UserActivityStateTypeStateOneOfTypeEnum, UserActivityStateTypeStateToJSON, UserClient, type UserClientConfig, VERSION, type ValidateActionRequest, ValidateActionRequestFromJSON, ValidateActionRequestFromJSONTyped, ValidateActionRequestToJSON, type ValidateActionResponse, type ValidateActionResponseData, type ValidateActionResponseDataErrorsInner, ValidateActionResponseDataErrorsInnerFromJSON, ValidateActionResponseDataErrorsInnerFromJSONTyped, ValidateActionResponseDataErrorsInnerToJSON, ValidateActionResponseDataFromJSON, ValidateActionResponseDataFromJSONTyped, ValidateActionResponseDataToJSON, ValidateActionResponseFromJSON, ValidateActionResponseFromJSONTyped, ValidateActionResponseToJSON, createUserClient, createUserConfiguration, instanceOfActionContext, instanceOfActionDefinitionResponse, instanceOfActionDefinitionResponseData, instanceOfActionEffect, instanceOfActionManifest, instanceOfBatchQueryRequest, instanceOfBatchQueryRequestQueriesInner, instanceOfBatchQueryResponse, instanceOfBatchQueryResponseDataValue, instanceOfBatchQueryResponseDataValueError, instanceOfClaimRecordInfo, instanceOfComponentManifest, instanceOfErrorDetail, instanceOfErrorResponse, instanceOfExecuteActionRequest, instanceOfExecuteActionResponse, instanceOfExecuteActionResponseAllOfData, instanceOfGetActivityInfo200Response, instanceOfGetActivityState200Response, instanceOfGetClaimRecords200Response, instanceOfGetLotteryRecords200Response, instanceOfGetSigninCalendar200Response, instanceOfGetTenantConfig200Response, instanceOfHealthResponse, instanceOfHealthResponseDependenciesValue, instanceOfIdempotencyConflictResponse, instanceOfIdempotencyConflictResponseData, instanceOfLivenessCheck200Response, instanceOfLotteryRecordInfo, instanceOfOpsConfig, instanceOfOpsConfigBlockedComponentsInner, instanceOfPageResponse, instanceOfPageResponseAllOfData, instanceOfPageResponseAllOfDataMeta, instanceOfPaginationMeta, instanceOfPublicActivityInfo, instanceOfPublicActivityInfoRewardsInner, instanceOfQueryContext, instanceOfQueryDataRequest, instanceOfQueryDataRequestCacheControl, instanceOfQueryDataResponse, instanceOfQueryDefinitionResponse, instanceOfQueryDefinitionResponseData, instanceOfQueryManifest, instanceOfReadinessCheck200Response, instanceOfReadinessCheck503Response, instanceOfResolvePageResponse, instanceOfResolvePageResponseAllOfData, instanceOfResolvePageResponseAllOfDataRolloutMatch, instanceOfResolvePageResponseAllOfDataSnapshot, instanceOfResolvePageResponseAllOfDataSnapshotDefinitionsDigest, instanceOfResolvePageResponseAllOfDataSnapshotDefinitionsDigestActions, instanceOfResolvePageResponseAllOfDataSnapshotManifest, instanceOfResolvePageResponseAllOfDataSnapshotManifestComponents, instanceOfResolvePageResponseAllOfDataSnapshotManifestEntrypoints, instanceOfResolvePageResponseAllOfDataSnapshotManifestRuntime, instanceOfResolvePageResponseAllOfDataSnapshotMeta, instanceOfResolvePageResponseAllOfDataSnapshotMetaBindings, instanceOfResolvePageResponseAllOfDataSnapshotPage, instanceOfResolveTenant200Response, instanceOfResolveTenantRequest, instanceOfResourceManifests, instanceOfSigninCalendar, instanceOfSigninCalendarRecordsInner, instanceOfSigninCalendarRecordsInnerReward, instanceOfSuccessResponse, instanceOfTenantConfig, instanceOfTenantConfigBlockedComponentsInner, instanceOfTenantConfigKillSwitch, instanceOfTenantInfo, instanceOfTrack202Response, instanceOfTrack202ResponseData, instanceOfTrackBatch202Response, instanceOfTrackBatch202ResponseData, instanceOfTrackBatch202ResponseDataErrorsInner, instanceOfTrackBatchRequest, instanceOfTrackRequest, instanceOfTrackRequestContext, instanceOfUserActivityState, instanceOfUserActivityStateTypeStateOneOf, instanceOfUserActivityStateTypeStateOneOf1, instanceOfUserActivityStateTypeStateOneOf1CycleRecordsInner, instanceOfUserActivityStateTypeStateOneOf1NextReward, instanceOfUserActivityStateTypeStateOneOf2, instanceOfUserActivityStateTypeStateOneOf2PityProgress, instanceOfUserActivityStateTypeStateOneOf2ResourcesInner, instanceOfUserActivityStateTypeStateOneOfAvailablePrizesInner, instanceOfValidateActionRequest, instanceOfValidateActionResponse, instanceOfValidateActionResponseData, instanceOfValidateActionResponseDataErrorsInner };
|
|
5945
|
+
export { type ActionClientContext, ActionClientContextFromJSON, ActionClientContextFromJSONTyped, ActionClientContextToJSON, type ActionDefinitionResponse, type ActionDefinitionResponseData, ActionDefinitionResponseDataFromJSON, ActionDefinitionResponseDataFromJSONTyped, ActionDefinitionResponseDataToJSON, ActionDefinitionResponseFromJSON, ActionDefinitionResponseFromJSONTyped, ActionDefinitionResponseToJSON, type ActionEffect, ActionEffectFromJSON, ActionEffectFromJSONTyped, ActionEffectToJSON, ActionEffectTypeEnum, type ActionManifest, ActionManifestActionTypeEnum, ActionManifestFromJSON, ActionManifestFromJSONTyped, ActionManifestToJSON, ActionsApi, ActivitiesApi, BaseAPI, type BatchQueryRequest, BatchQueryRequestFromJSON, BatchQueryRequestFromJSONTyped, type BatchQueryRequestQueriesInner, BatchQueryRequestQueriesInnerFromJSON, BatchQueryRequestQueriesInnerFromJSONTyped, BatchQueryRequestQueriesInnerToJSON, BatchQueryRequestToJSON, type BatchQueryResponse, type BatchQueryResponseDataValue, type BatchQueryResponseDataValueError, BatchQueryResponseDataValueErrorFromJSON, BatchQueryResponseDataValueErrorFromJSONTyped, BatchQueryResponseDataValueErrorToJSON, BatchQueryResponseDataValueFromJSON, BatchQueryResponseDataValueFromJSONTyped, BatchQueryResponseDataValueToJSON, BatchQueryResponseFromJSON, BatchQueryResponseFromJSONTyped, BatchQueryResponseToJSON, type BlockedComponentItem, BlockedComponentItemFromJSON, BlockedComponentItemFromJSONTyped, BlockedComponentItemToJSON, type ClaimRecordInfo, ClaimRecordInfoFromJSON, ClaimRecordInfoFromJSONTyped, ClaimRecordInfoStatusEnum, ClaimRecordInfoToJSON, type ComponentManifest, ComponentManifestFromJSON, ComponentManifestFromJSONTyped, ComponentManifestToJSON, Configuration, type ConfigurationParameters, type ErrorResponse, ErrorResponseFromJSON, ErrorResponseFromJSONTyped, ErrorResponseToJSON, type ExecuteActionRequest, ExecuteActionRequestActionTypeEnum, ExecuteActionRequestFromJSON, ExecuteActionRequestFromJSONTyped, ExecuteActionRequestToJSON, type ExecuteActionResponse, type ExecuteActionResponseAllOfData, ExecuteActionResponseAllOfDataFromJSON, ExecuteActionResponseAllOfDataFromJSONTyped, type ExecuteActionResponseAllOfDataRiskDecision, ExecuteActionResponseAllOfDataRiskDecisionFromJSON, ExecuteActionResponseAllOfDataRiskDecisionFromJSONTyped, ExecuteActionResponseAllOfDataRiskDecisionToJSON, ExecuteActionResponseAllOfDataToJSON, ExecuteActionResponseFromJSON, ExecuteActionResponseFromJSONTyped, ExecuteActionResponseToJSON, type FetchAPI, FetchError, type FetchParams, type GetActivityInfo200Response, GetActivityInfo200ResponseFromJSON, GetActivityInfo200ResponseFromJSONTyped, GetActivityInfo200ResponseToJSON, type GetActivityState200Response, GetActivityState200ResponseFromJSON, GetActivityState200ResponseFromJSONTyped, GetActivityState200ResponseToJSON, type GetClaimRecords200Response, GetClaimRecords200ResponseFromJSON, GetClaimRecords200ResponseFromJSONTyped, GetClaimRecords200ResponseToJSON, type GetLotteryRecords200Response, GetLotteryRecords200ResponseFromJSON, GetLotteryRecords200ResponseFromJSONTyped, GetLotteryRecords200ResponseToJSON, type GetSigninCalendar200Response, GetSigninCalendar200ResponseFromJSON, GetSigninCalendar200ResponseFromJSONTyped, GetSigninCalendar200ResponseToJSON, type GetTenantConfig200Response, GetTenantConfig200ResponseFromJSON, GetTenantConfig200ResponseFromJSONTyped, GetTenantConfig200ResponseToJSON, HealthApi, type HealthResponse, type HealthResponseDependenciesValue, HealthResponseDependenciesValueFromJSON, HealthResponseDependenciesValueFromJSONTyped, HealthResponseDependenciesValueStatusEnum, HealthResponseDependenciesValueToJSON, HealthResponseFromJSON, HealthResponseFromJSONTyped, HealthResponseStatusEnum, HealthResponseToJSON, type IdempotencyConflictResponse, type IdempotencyConflictResponseData, IdempotencyConflictResponseDataFromJSON, IdempotencyConflictResponseDataFromJSONTyped, IdempotencyConflictResponseDataToJSON, IdempotencyConflictResponseFromJSON, IdempotencyConflictResponseFromJSONTyped, IdempotencyConflictResponseToJSON, type KillSwitchItem, KillSwitchItemFromJSON, KillSwitchItemFromJSONTyped, KillSwitchItemTargetTypeEnum, KillSwitchItemToJSON, type LivenessCheck200Response, LivenessCheck200ResponseFromJSON, LivenessCheck200ResponseFromJSONTyped, LivenessCheck200ResponseToJSON, type LotteryRecordInfo, LotteryRecordInfoFromJSON, LotteryRecordInfoFromJSONTyped, LotteryRecordInfoPrizeTypeEnum, LotteryRecordInfoStatusEnum, LotteryRecordInfoToJSON, type Middleware, type OpsConfig, OpsConfigFromJSON, OpsConfigFromJSONTyped, OpsConfigToJSON, type PageResponse, type PageResponseAllOfData, PageResponseAllOfDataFromJSON, PageResponseAllOfDataFromJSONTyped, type PageResponseAllOfDataMeta, PageResponseAllOfDataMetaFromJSON, PageResponseAllOfDataMetaFromJSONTyped, PageResponseAllOfDataMetaToJSON, PageResponseAllOfDataToJSON, PageResponseFromJSON, PageResponseFromJSONTyped, PageResponseToJSON, PagesApi, type PaginationMeta, PaginationMetaFromJSON, PaginationMetaFromJSONTyped, PaginationMetaToJSON, type PublicActivityInfo, PublicActivityInfoFromJSON, PublicActivityInfoFromJSONTyped, type PublicActivityInfoRewardsInner, PublicActivityInfoRewardsInnerFromJSON, PublicActivityInfoRewardsInnerFromJSONTyped, PublicActivityInfoRewardsInnerToJSON, PublicActivityInfoStatusEnum, PublicActivityInfoToJSON, PublicActivityInfoTypeEnum, QueriesApi, type QueryContext, QueryContextFromJSON, QueryContextFromJSONTyped, QueryContextToJSON, type QueryDataRequest, type QueryDataRequestCacheControl, QueryDataRequestCacheControlFromJSON, QueryDataRequestCacheControlFromJSONTyped, QueryDataRequestCacheControlToJSON, QueryDataRequestFromJSON, QueryDataRequestFromJSONTyped, QueryDataRequestToJSON, type QueryDataResponse, QueryDataResponseFromJSON, QueryDataResponseFromJSONTyped, QueryDataResponseToJSON, type QueryDefinitionResponse, type QueryDefinitionResponseData, QueryDefinitionResponseDataFromJSON, QueryDefinitionResponseDataFromJSONTyped, QueryDefinitionResponseDataToJSON, QueryDefinitionResponseFromJSON, QueryDefinitionResponseFromJSONTyped, QueryDefinitionResponseToJSON, type QueryManifest, QueryManifestFromJSON, QueryManifestFromJSONTyped, QueryManifestToJSON, type ReadinessCheck200Response, ReadinessCheck200ResponseFromJSON, ReadinessCheck200ResponseFromJSONTyped, ReadinessCheck200ResponseToJSON, type ReadinessCheck503Response, ReadinessCheck503ResponseFromJSON, ReadinessCheck503ResponseFromJSONTyped, ReadinessCheck503ResponseToJSON, type RequestContext, RequiredError, type ResolvePageResponse, type ResolvePageResponseAllOfData, ResolvePageResponseAllOfDataFromJSON, ResolvePageResponseAllOfDataFromJSONTyped, type ResolvePageResponseAllOfDataRolloutMatch, ResolvePageResponseAllOfDataRolloutMatchFromJSON, ResolvePageResponseAllOfDataRolloutMatchFromJSONTyped, ResolvePageResponseAllOfDataRolloutMatchToJSON, type ResolvePageResponseAllOfDataSnapshot, type ResolvePageResponseAllOfDataSnapshotDefinitionsDigest, type ResolvePageResponseAllOfDataSnapshotDefinitionsDigestActions, ResolvePageResponseAllOfDataSnapshotDefinitionsDigestActionsFromJSON, ResolvePageResponseAllOfDataSnapshotDefinitionsDigestActionsFromJSONTyped, ResolvePageResponseAllOfDataSnapshotDefinitionsDigestActionsToJSON, ResolvePageResponseAllOfDataSnapshotDefinitionsDigestFromJSON, ResolvePageResponseAllOfDataSnapshotDefinitionsDigestFromJSONTyped, ResolvePageResponseAllOfDataSnapshotDefinitionsDigestToJSON, ResolvePageResponseAllOfDataSnapshotFromJSON, ResolvePageResponseAllOfDataSnapshotFromJSONTyped, type ResolvePageResponseAllOfDataSnapshotManifest, type ResolvePageResponseAllOfDataSnapshotManifestComponents, ResolvePageResponseAllOfDataSnapshotManifestComponentsFromJSON, ResolvePageResponseAllOfDataSnapshotManifestComponentsFromJSONTyped, ResolvePageResponseAllOfDataSnapshotManifestComponentsToJSON, type ResolvePageResponseAllOfDataSnapshotManifestEntrypoints, ResolvePageResponseAllOfDataSnapshotManifestEntrypointsFromJSON, ResolvePageResponseAllOfDataSnapshotManifestEntrypointsFromJSONTyped, ResolvePageResponseAllOfDataSnapshotManifestEntrypointsToJSON, ResolvePageResponseAllOfDataSnapshotManifestFromJSON, ResolvePageResponseAllOfDataSnapshotManifestFromJSONTyped, type ResolvePageResponseAllOfDataSnapshotManifestRuntime, ResolvePageResponseAllOfDataSnapshotManifestRuntimeFromJSON, ResolvePageResponseAllOfDataSnapshotManifestRuntimeFromJSONTyped, ResolvePageResponseAllOfDataSnapshotManifestRuntimeToJSON, ResolvePageResponseAllOfDataSnapshotManifestToJSON, type ResolvePageResponseAllOfDataSnapshotMeta, type ResolvePageResponseAllOfDataSnapshotMetaBindings, ResolvePageResponseAllOfDataSnapshotMetaBindingsFromJSON, ResolvePageResponseAllOfDataSnapshotMetaBindingsFromJSONTyped, ResolvePageResponseAllOfDataSnapshotMetaBindingsToJSON, ResolvePageResponseAllOfDataSnapshotMetaEnvEnum, ResolvePageResponseAllOfDataSnapshotMetaFromJSON, ResolvePageResponseAllOfDataSnapshotMetaFromJSONTyped, ResolvePageResponseAllOfDataSnapshotMetaToJSON, type ResolvePageResponseAllOfDataSnapshotPage, ResolvePageResponseAllOfDataSnapshotPageFromJSON, ResolvePageResponseAllOfDataSnapshotPageFromJSONTyped, ResolvePageResponseAllOfDataSnapshotPageToJSON, ResolvePageResponseAllOfDataSnapshotToJSON, ResolvePageResponseAllOfDataToJSON, ResolvePageResponseFromJSON, ResolvePageResponseFromJSONTyped, ResolvePageResponseToJSON, type ResolveTenant200Response, ResolveTenant200ResponseFromJSON, ResolveTenant200ResponseFromJSONTyped, ResolveTenant200ResponseToJSON, type ResolveTenantRequest, ResolveTenantRequestFromJSON, ResolveTenantRequestFromJSONTyped, ResolveTenantRequestToJSON, type ResourceManifests, ResourceManifestsFromJSON, ResourceManifestsFromJSONTyped, ResourceManifestsToJSON, ResponseError, type SigninCalendar, SigninCalendarFromJSON, SigninCalendarFromJSONTyped, type SigninCalendarRecordsInner, SigninCalendarRecordsInnerFromJSON, SigninCalendarRecordsInnerFromJSONTyped, type SigninCalendarRecordsInnerReward, SigninCalendarRecordsInnerRewardFromJSON, SigninCalendarRecordsInnerRewardFromJSONTyped, SigninCalendarRecordsInnerRewardToJSON, SigninCalendarRecordsInnerToJSON, SigninCalendarToJSON, type SuccessResponse, SuccessResponseFromJSON, SuccessResponseFromJSONTyped, SuccessResponseToJSON, TenantApi, type TenantConfig, type TenantConfigBlockedComponentsInner, TenantConfigBlockedComponentsInnerFromJSON, TenantConfigBlockedComponentsInnerFromJSONTyped, TenantConfigBlockedComponentsInnerToJSON, TenantConfigFromJSON, TenantConfigFromJSONTyped, type TenantConfigKillSwitch, TenantConfigKillSwitchFromJSON, TenantConfigKillSwitchFromJSONTyped, TenantConfigKillSwitchToJSON, TenantConfigToJSON, type TenantInfo, TenantInfoFromJSON, TenantInfoFromJSONTyped, TenantInfoStatusEnum, TenantInfoToJSON, type Track202Response, type Track202ResponseData, Track202ResponseDataFromJSON, Track202ResponseDataFromJSONTyped, Track202ResponseDataToJSON, Track202ResponseFromJSON, Track202ResponseFromJSONTyped, Track202ResponseToJSON, TrackApi, type TrackBatch202Response, type TrackBatch202ResponseData, type TrackBatch202ResponseDataErrorsInner, TrackBatch202ResponseDataErrorsInnerFromJSON, TrackBatch202ResponseDataErrorsInnerFromJSONTyped, TrackBatch202ResponseDataErrorsInnerToJSON, TrackBatch202ResponseDataFromJSON, TrackBatch202ResponseDataFromJSONTyped, TrackBatch202ResponseDataToJSON, TrackBatch202ResponseFromJSON, TrackBatch202ResponseFromJSONTyped, TrackBatch202ResponseToJSON, type TrackBatchRequest, TrackBatchRequestFromJSON, TrackBatchRequestFromJSONTyped, TrackBatchRequestToJSON, type TrackRequest, type TrackRequestContext, TrackRequestContextFromJSON, TrackRequestContextFromJSONTyped, TrackRequestContextToJSON, TrackRequestEventTypeEnum, TrackRequestFromJSON, TrackRequestFromJSONTyped, TrackRequestToJSON, type UserActivityState, UserActivityStateActivityTypeEnum, UserActivityStateFromJSON, UserActivityStateFromJSONTyped, UserActivityStateToJSON, type UserActivityStateTypeState, UserActivityStateTypeStateFromJSON, UserActivityStateTypeStateFromJSONTyped, type UserActivityStateTypeStateOneOf, type UserActivityStateTypeStateOneOf1, type UserActivityStateTypeStateOneOf1CycleRecordsInner, UserActivityStateTypeStateOneOf1CycleRecordsInnerFromJSON, UserActivityStateTypeStateOneOf1CycleRecordsInnerFromJSONTyped, UserActivityStateTypeStateOneOf1CycleRecordsInnerToJSON, UserActivityStateTypeStateOneOf1FromJSON, UserActivityStateTypeStateOneOf1FromJSONTyped, type UserActivityStateTypeStateOneOf1NextReward, UserActivityStateTypeStateOneOf1NextRewardFromJSON, UserActivityStateTypeStateOneOf1NextRewardFromJSONTyped, UserActivityStateTypeStateOneOf1NextRewardToJSON, UserActivityStateTypeStateOneOf1NextRewardTypeEnum, UserActivityStateTypeStateOneOf1ToJSON, UserActivityStateTypeStateOneOf1TypeEnum, type UserActivityStateTypeStateOneOf2, UserActivityStateTypeStateOneOf2FromJSON, UserActivityStateTypeStateOneOf2FromJSONTyped, type UserActivityStateTypeStateOneOf2PityProgress, UserActivityStateTypeStateOneOf2PityProgressFromJSON, UserActivityStateTypeStateOneOf2PityProgressFromJSONTyped, UserActivityStateTypeStateOneOf2PityProgressToJSON, type UserActivityStateTypeStateOneOf2ResourcesInner, UserActivityStateTypeStateOneOf2ResourcesInnerFromJSON, UserActivityStateTypeStateOneOf2ResourcesInnerFromJSONTyped, UserActivityStateTypeStateOneOf2ResourcesInnerToJSON, UserActivityStateTypeStateOneOf2ToJSON, UserActivityStateTypeStateOneOf2TypeEnum, type UserActivityStateTypeStateOneOfAvailablePrizesInner, UserActivityStateTypeStateOneOfAvailablePrizesInnerFromJSON, UserActivityStateTypeStateOneOfAvailablePrizesInnerFromJSONTyped, UserActivityStateTypeStateOneOfAvailablePrizesInnerToJSON, UserActivityStateTypeStateOneOfFromJSON, UserActivityStateTypeStateOneOfFromJSONTyped, UserActivityStateTypeStateOneOfToJSON, UserActivityStateTypeStateOneOfTypeEnum, UserActivityStateTypeStateToJSON, UserClient, type UserClientConfig, VERSION, type ValidateActionRequest, ValidateActionRequestFromJSON, ValidateActionRequestFromJSONTyped, ValidateActionRequestToJSON, type ValidateActionResponse, type ValidateActionResponseData, type ValidateActionResponseDataErrorsInner, ValidateActionResponseDataErrorsInnerFromJSON, ValidateActionResponseDataErrorsInnerFromJSONTyped, ValidateActionResponseDataErrorsInnerToJSON, ValidateActionResponseDataFromJSON, ValidateActionResponseDataFromJSONTyped, ValidateActionResponseDataToJSON, ValidateActionResponseFromJSON, ValidateActionResponseFromJSONTyped, ValidateActionResponseToJSON, createUserClient, createUserConfiguration, instanceOfActionClientContext, instanceOfActionDefinitionResponse, instanceOfActionDefinitionResponseData, instanceOfActionEffect, instanceOfActionManifest, instanceOfBatchQueryRequest, instanceOfBatchQueryRequestQueriesInner, instanceOfBatchQueryResponse, instanceOfBatchQueryResponseDataValue, instanceOfBatchQueryResponseDataValueError, instanceOfBlockedComponentItem, instanceOfClaimRecordInfo, instanceOfComponentManifest, instanceOfErrorResponse, instanceOfExecuteActionRequest, instanceOfExecuteActionResponse, instanceOfExecuteActionResponseAllOfData, instanceOfExecuteActionResponseAllOfDataRiskDecision, instanceOfGetActivityInfo200Response, instanceOfGetActivityState200Response, instanceOfGetClaimRecords200Response, instanceOfGetLotteryRecords200Response, instanceOfGetSigninCalendar200Response, instanceOfGetTenantConfig200Response, instanceOfHealthResponse, instanceOfHealthResponseDependenciesValue, instanceOfIdempotencyConflictResponse, instanceOfIdempotencyConflictResponseData, instanceOfKillSwitchItem, instanceOfLivenessCheck200Response, instanceOfLotteryRecordInfo, instanceOfOpsConfig, instanceOfPageResponse, instanceOfPageResponseAllOfData, instanceOfPageResponseAllOfDataMeta, instanceOfPaginationMeta, instanceOfPublicActivityInfo, instanceOfPublicActivityInfoRewardsInner, instanceOfQueryContext, instanceOfQueryDataRequest, instanceOfQueryDataRequestCacheControl, instanceOfQueryDataResponse, instanceOfQueryDefinitionResponse, instanceOfQueryDefinitionResponseData, instanceOfQueryManifest, instanceOfReadinessCheck200Response, instanceOfReadinessCheck503Response, instanceOfResolvePageResponse, instanceOfResolvePageResponseAllOfData, instanceOfResolvePageResponseAllOfDataRolloutMatch, instanceOfResolvePageResponseAllOfDataSnapshot, instanceOfResolvePageResponseAllOfDataSnapshotDefinitionsDigest, instanceOfResolvePageResponseAllOfDataSnapshotDefinitionsDigestActions, instanceOfResolvePageResponseAllOfDataSnapshotManifest, instanceOfResolvePageResponseAllOfDataSnapshotManifestComponents, instanceOfResolvePageResponseAllOfDataSnapshotManifestEntrypoints, instanceOfResolvePageResponseAllOfDataSnapshotManifestRuntime, instanceOfResolvePageResponseAllOfDataSnapshotMeta, instanceOfResolvePageResponseAllOfDataSnapshotMetaBindings, instanceOfResolvePageResponseAllOfDataSnapshotPage, instanceOfResolveTenant200Response, instanceOfResolveTenantRequest, instanceOfResourceManifests, instanceOfSigninCalendar, instanceOfSigninCalendarRecordsInner, instanceOfSigninCalendarRecordsInnerReward, instanceOfSuccessResponse, instanceOfTenantConfig, instanceOfTenantConfigBlockedComponentsInner, instanceOfTenantConfigKillSwitch, instanceOfTenantInfo, instanceOfTrack202Response, instanceOfTrack202ResponseData, instanceOfTrackBatch202Response, instanceOfTrackBatch202ResponseData, instanceOfTrackBatch202ResponseDataErrorsInner, instanceOfTrackBatchRequest, instanceOfTrackRequest, instanceOfTrackRequestContext, instanceOfUserActivityState, instanceOfUserActivityStateTypeStateOneOf, instanceOfUserActivityStateTypeStateOneOf1, instanceOfUserActivityStateTypeStateOneOf1CycleRecordsInner, instanceOfUserActivityStateTypeStateOneOf1NextReward, instanceOfUserActivityStateTypeStateOneOf2, instanceOfUserActivityStateTypeStateOneOf2PityProgress, instanceOfUserActivityStateTypeStateOneOf2ResourcesInner, instanceOfUserActivityStateTypeStateOneOfAvailablePrizesInner, instanceOfValidateActionRequest, instanceOfValidateActionResponse, instanceOfValidateActionResponseData, instanceOfValidateActionResponseDataErrorsInner };
|