@djvlc/openapi-user-client 1.7.14 → 1.8.0
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 +903 -298
- package/dist/index.d.ts +903 -298
- package/dist/index.js +753 -207
- package/dist/index.mjs +709 -195
- package/openapi/dist/user-api.yaml +474 -130
- package/openapi/src/components/responses/_index.yaml +3 -3
- package/openapi/src/components/schemas/_index.yaml +144 -33
- package/openapi/src/openapi.yaml +10 -0
- package/openapi/src/paths/actions.yaml +15 -0
- package/openapi/src/paths/activities.yaml +101 -0
- package/openapi/src/paths/pages.yaml +96 -0
- package/package.json +2 -2
package/dist/index.d.ts
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
|
|
@@ -421,6 +421,76 @@ declare function ActionManifestFromJSON(json: any): ActionManifest;
|
|
|
421
421
|
declare function ActionManifestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ActionManifest;
|
|
422
422
|
declare function ActionManifestToJSON(value?: ActionManifest | null): any;
|
|
423
423
|
|
|
424
|
+
/**
|
|
425
|
+
* DJVLC User API
|
|
426
|
+
* DJVLC 低代码平台用户端 API(数据面) 提供以下功能: - 页面解析(Page Resolve) - 动作执行(Action Gateway - 统一入口) - 数据查询(Data Proxy - 统一入口) - 活动状态查询 - 埋点上报(Track) - 租户解析(Tenant Resolver) - 健康检查(Health) 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
427
|
+
*
|
|
428
|
+
* The version of the OpenAPI document: 1.0.0
|
|
429
|
+
* Contact: dev@djvlc.com
|
|
430
|
+
*
|
|
431
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
432
|
+
* https://openapi-generator.tech
|
|
433
|
+
* Do not edit the class manually.
|
|
434
|
+
*/
|
|
435
|
+
/**
|
|
436
|
+
* 活动状态信息(与 docs ActivityStatusVo 对齐)
|
|
437
|
+
* @export
|
|
438
|
+
* @interface ActivityStatus
|
|
439
|
+
*/
|
|
440
|
+
interface ActivityStatus {
|
|
441
|
+
/**
|
|
442
|
+
* 活动 UID
|
|
443
|
+
* @type {string}
|
|
444
|
+
* @memberof ActivityStatus
|
|
445
|
+
*/
|
|
446
|
+
activityUid: string;
|
|
447
|
+
/**
|
|
448
|
+
* 活动名称
|
|
449
|
+
* @type {string}
|
|
450
|
+
* @memberof ActivityStatus
|
|
451
|
+
*/
|
|
452
|
+
name: string;
|
|
453
|
+
/**
|
|
454
|
+
* 活动类型
|
|
455
|
+
* @type {string}
|
|
456
|
+
* @memberof ActivityStatus
|
|
457
|
+
*/
|
|
458
|
+
type: ActivityStatusTypeEnum;
|
|
459
|
+
/**
|
|
460
|
+
* 是否进行中
|
|
461
|
+
* @type {boolean}
|
|
462
|
+
* @memberof ActivityStatus
|
|
463
|
+
*/
|
|
464
|
+
isInProgress: boolean;
|
|
465
|
+
/**
|
|
466
|
+
* 开始时间(ISODateTime)
|
|
467
|
+
* @type {Date}
|
|
468
|
+
* @memberof ActivityStatus
|
|
469
|
+
*/
|
|
470
|
+
startAt: Date;
|
|
471
|
+
/**
|
|
472
|
+
* 结束时间(ISODateTime)
|
|
473
|
+
* @type {Date}
|
|
474
|
+
* @memberof ActivityStatus
|
|
475
|
+
*/
|
|
476
|
+
endAt: Date;
|
|
477
|
+
}
|
|
478
|
+
/**
|
|
479
|
+
* @export
|
|
480
|
+
*/
|
|
481
|
+
declare const ActivityStatusTypeEnum: {
|
|
482
|
+
readonly CLAIM: "claim";
|
|
483
|
+
readonly SIGNIN: "signin";
|
|
484
|
+
};
|
|
485
|
+
type ActivityStatusTypeEnum = typeof ActivityStatusTypeEnum[keyof typeof ActivityStatusTypeEnum];
|
|
486
|
+
/**
|
|
487
|
+
* Check if a given object implements the ActivityStatus interface.
|
|
488
|
+
*/
|
|
489
|
+
declare function instanceOfActivityStatus(value: object): boolean;
|
|
490
|
+
declare function ActivityStatusFromJSON(json: any): ActivityStatus;
|
|
491
|
+
declare function ActivityStatusFromJSONTyped(json: any, ignoreDiscriminator: boolean): ActivityStatus;
|
|
492
|
+
declare function ActivityStatusToJSON(value?: ActivityStatus | null): any;
|
|
493
|
+
|
|
424
494
|
/**
|
|
425
495
|
* DJVLC User API
|
|
426
496
|
* DJVLC 低代码平台用户端 API(数据面) 提供以下功能: - 页面解析(Page Resolve) - 动作执行(Action Gateway - 统一入口) - 数据查询(Data Proxy - 统一入口) - 活动状态查询 - 埋点上报(Track) - 租户解析(Tenant Resolver) - 健康检查(Health) 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
@@ -666,6 +736,74 @@ declare function BatchQueryResponseFromJSON(json: any): BatchQueryResponse;
|
|
|
666
736
|
declare function BatchQueryResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): BatchQueryResponse;
|
|
667
737
|
declare function BatchQueryResponseToJSON(value?: BatchQueryResponse | null): any;
|
|
668
738
|
|
|
739
|
+
/**
|
|
740
|
+
* DJVLC User API
|
|
741
|
+
* DJVLC 低代码平台用户端 API(数据面) 提供以下功能: - 页面解析(Page Resolve) - 动作执行(Action Gateway - 统一入口) - 数据查询(Data Proxy - 统一入口) - 活动状态查询 - 埋点上报(Track) - 租户解析(Tenant Resolver) - 健康检查(Health) 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
742
|
+
*
|
|
743
|
+
* The version of the OpenAPI document: 1.0.0
|
|
744
|
+
* Contact: dev@djvlc.com
|
|
745
|
+
*
|
|
746
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
747
|
+
* https://openapi-generator.tech
|
|
748
|
+
* Do not edit the class manually.
|
|
749
|
+
*/
|
|
750
|
+
/**
|
|
751
|
+
* 被阻断的组件条目
|
|
752
|
+
* @export
|
|
753
|
+
* @interface BlockedComponentItem
|
|
754
|
+
*/
|
|
755
|
+
interface BlockedComponentItem {
|
|
756
|
+
/**
|
|
757
|
+
* 组件名称
|
|
758
|
+
* @type {string}
|
|
759
|
+
* @memberof BlockedComponentItem
|
|
760
|
+
*/
|
|
761
|
+
name: string;
|
|
762
|
+
/**
|
|
763
|
+
* 组件版本(可选,不指定则阻断所有版本)
|
|
764
|
+
* @type {string}
|
|
765
|
+
* @memberof BlockedComponentItem
|
|
766
|
+
*/
|
|
767
|
+
version?: string;
|
|
768
|
+
/**
|
|
769
|
+
* 阻断原因
|
|
770
|
+
* @type {string}
|
|
771
|
+
* @memberof BlockedComponentItem
|
|
772
|
+
*/
|
|
773
|
+
reason: string;
|
|
774
|
+
/**
|
|
775
|
+
* 阻断时间(ISO8601)
|
|
776
|
+
* @type {Date}
|
|
777
|
+
* @memberof BlockedComponentItem
|
|
778
|
+
*/
|
|
779
|
+
blockedAt?: Date;
|
|
780
|
+
/**
|
|
781
|
+
* 阻断操作者
|
|
782
|
+
* @type {string}
|
|
783
|
+
* @memberof BlockedComponentItem
|
|
784
|
+
*/
|
|
785
|
+
blockedBy?: string;
|
|
786
|
+
/**
|
|
787
|
+
* 降级版本(可选)
|
|
788
|
+
* @type {string}
|
|
789
|
+
* @memberof BlockedComponentItem
|
|
790
|
+
*/
|
|
791
|
+
fallbackVersion?: string;
|
|
792
|
+
/**
|
|
793
|
+
* 是否紧急阻断
|
|
794
|
+
* @type {boolean}
|
|
795
|
+
* @memberof BlockedComponentItem
|
|
796
|
+
*/
|
|
797
|
+
urgent?: boolean;
|
|
798
|
+
}
|
|
799
|
+
/**
|
|
800
|
+
* Check if a given object implements the BlockedComponentItem interface.
|
|
801
|
+
*/
|
|
802
|
+
declare function instanceOfBlockedComponentItem(value: object): boolean;
|
|
803
|
+
declare function BlockedComponentItemFromJSON(json: any): BlockedComponentItem;
|
|
804
|
+
declare function BlockedComponentItemFromJSONTyped(json: any, ignoreDiscriminator: boolean): BlockedComponentItem;
|
|
805
|
+
declare function BlockedComponentItemToJSON(value?: BlockedComponentItem | null): any;
|
|
806
|
+
|
|
669
807
|
/**
|
|
670
808
|
* DJVLC User API
|
|
671
809
|
* DJVLC 低代码平台用户端 API(数据面) 提供以下功能: - 页面解析(Page Resolve) - 动作执行(Action Gateway - 统一入口) - 数据查询(Data Proxy - 统一入口) - 活动状态查询 - 埋点上报(Track) - 租户解析(Tenant Resolver) - 健康检查(Health) 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
@@ -785,11 +923,17 @@ interface ComponentManifest {
|
|
|
785
923
|
*/
|
|
786
924
|
version: string;
|
|
787
925
|
/**
|
|
788
|
-
*
|
|
926
|
+
* 组件来源:bundled = 内置组件(随 Runtime 打包),remote = 远程组件(从 CDN 加载)
|
|
927
|
+
* @type {string}
|
|
928
|
+
* @memberof ComponentManifest
|
|
929
|
+
*/
|
|
930
|
+
source: ComponentManifestSourceEnum;
|
|
931
|
+
/**
|
|
932
|
+
* 组件入口 URL(source 为 remote 时必填)
|
|
789
933
|
* @type {string}
|
|
790
934
|
* @memberof ComponentManifest
|
|
791
935
|
*/
|
|
792
|
-
entryUrl
|
|
936
|
+
entryUrl?: string;
|
|
793
937
|
/**
|
|
794
938
|
* 样式文件 URL
|
|
795
939
|
* @type {string}
|
|
@@ -815,6 +959,14 @@ interface ComponentManifest {
|
|
|
815
959
|
*/
|
|
816
960
|
fallback?: string;
|
|
817
961
|
}
|
|
962
|
+
/**
|
|
963
|
+
* @export
|
|
964
|
+
*/
|
|
965
|
+
declare const ComponentManifestSourceEnum: {
|
|
966
|
+
readonly BUNDLED: "bundled";
|
|
967
|
+
readonly REMOTE: "remote";
|
|
968
|
+
};
|
|
969
|
+
type ComponentManifestSourceEnum = typeof ComponentManifestSourceEnum[keyof typeof ComponentManifestSourceEnum];
|
|
818
970
|
/**
|
|
819
971
|
* Check if a given object implements the ComponentManifest interface.
|
|
820
972
|
*/
|
|
@@ -823,50 +975,6 @@ declare function ComponentManifestFromJSON(json: any): ComponentManifest;
|
|
|
823
975
|
declare function ComponentManifestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ComponentManifest;
|
|
824
976
|
declare function ComponentManifestToJSON(value?: ComponentManifest | null): any;
|
|
825
977
|
|
|
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
978
|
/**
|
|
871
979
|
* DJVLC User API
|
|
872
980
|
* DJVLC 低代码平台用户端 API(数据面) 提供以下功能: - 页面解析(Page Resolve) - 动作执行(Action Gateway - 统一入口) - 数据查询(Data Proxy - 统一入口) - 活动状态查询 - 埋点上报(Track) - 租户解析(Tenant Resolver) - 健康检查(Health) 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
@@ -903,7 +1011,7 @@ interface ErrorResponse {
|
|
|
903
1011
|
*/
|
|
904
1012
|
message: string;
|
|
905
1013
|
/**
|
|
906
|
-
*
|
|
1014
|
+
* 错误详情(Record<string, unknown>,与 types ApiErrorResponse.data 一致)
|
|
907
1015
|
* @type {{ [key: string]: any; }}
|
|
908
1016
|
* @memberof ErrorResponse
|
|
909
1017
|
*/
|
|
@@ -983,10 +1091,10 @@ interface ExecuteActionRequest {
|
|
|
983
1091
|
};
|
|
984
1092
|
/**
|
|
985
1093
|
*
|
|
986
|
-
* @type {
|
|
1094
|
+
* @type {ActionClientContext}
|
|
987
1095
|
* @memberof ExecuteActionRequest
|
|
988
1096
|
*/
|
|
989
|
-
context:
|
|
1097
|
+
context: ActionClientContext;
|
|
990
1098
|
/**
|
|
991
1099
|
* 幂等键(部分策略需要客户端提供,防重复提交)
|
|
992
1100
|
* @type {string}
|
|
@@ -1022,6 +1130,50 @@ declare function ExecuteActionRequestFromJSON(json: any): ExecuteActionRequest;
|
|
|
1022
1130
|
declare function ExecuteActionRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExecuteActionRequest;
|
|
1023
1131
|
declare function ExecuteActionRequestToJSON(value?: ExecuteActionRequest | null): any;
|
|
1024
1132
|
|
|
1133
|
+
/**
|
|
1134
|
+
* DJVLC User API
|
|
1135
|
+
* DJVLC 低代码平台用户端 API(数据面) 提供以下功能: - 页面解析(Page Resolve) - 动作执行(Action Gateway - 统一入口) - 数据查询(Data Proxy - 统一入口) - 活动状态查询 - 埋点上报(Track) - 租户解析(Tenant Resolver) - 健康检查(Health) 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
1136
|
+
*
|
|
1137
|
+
* The version of the OpenAPI document: 1.0.0
|
|
1138
|
+
* Contact: dev@djvlc.com
|
|
1139
|
+
*
|
|
1140
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
1141
|
+
* https://openapi-generator.tech
|
|
1142
|
+
* Do not edit the class manually.
|
|
1143
|
+
*/
|
|
1144
|
+
/**
|
|
1145
|
+
* 风控决策(可选,风控拒绝时返回)
|
|
1146
|
+
* @export
|
|
1147
|
+
* @interface ExecuteActionResponseAllOfDataRiskDecision
|
|
1148
|
+
*/
|
|
1149
|
+
interface ExecuteActionResponseAllOfDataRiskDecision {
|
|
1150
|
+
/**
|
|
1151
|
+
* 是否放行
|
|
1152
|
+
* @type {boolean}
|
|
1153
|
+
* @memberof ExecuteActionResponseAllOfDataRiskDecision
|
|
1154
|
+
*/
|
|
1155
|
+
allowed?: boolean;
|
|
1156
|
+
/**
|
|
1157
|
+
* 拒绝原因(如 RISK_BLOCKED)
|
|
1158
|
+
* @type {string}
|
|
1159
|
+
* @memberof ExecuteActionResponseAllOfDataRiskDecision
|
|
1160
|
+
*/
|
|
1161
|
+
reason?: string;
|
|
1162
|
+
/**
|
|
1163
|
+
* 风控错误码
|
|
1164
|
+
* @type {string}
|
|
1165
|
+
* @memberof ExecuteActionResponseAllOfDataRiskDecision
|
|
1166
|
+
*/
|
|
1167
|
+
code?: string;
|
|
1168
|
+
}
|
|
1169
|
+
/**
|
|
1170
|
+
* Check if a given object implements the ExecuteActionResponseAllOfDataRiskDecision interface.
|
|
1171
|
+
*/
|
|
1172
|
+
declare function instanceOfExecuteActionResponseAllOfDataRiskDecision(value: object): boolean;
|
|
1173
|
+
declare function ExecuteActionResponseAllOfDataRiskDecisionFromJSON(json: any): ExecuteActionResponseAllOfDataRiskDecision;
|
|
1174
|
+
declare function ExecuteActionResponseAllOfDataRiskDecisionFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExecuteActionResponseAllOfDataRiskDecision;
|
|
1175
|
+
declare function ExecuteActionResponseAllOfDataRiskDecisionToJSON(value?: ExecuteActionResponseAllOfDataRiskDecision | null): any;
|
|
1176
|
+
|
|
1025
1177
|
/**
|
|
1026
1178
|
* DJVLC User API
|
|
1027
1179
|
* DJVLC 低代码平台用户端 API(数据面) 提供以下功能: - 页面解析(Page Resolve) - 动作执行(Action Gateway - 统一入口) - 数据查询(Data Proxy - 统一入口) - 活动状态查询 - 埋点上报(Track) - 租户解析(Tenant Resolver) - 健康检查(Health) 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
@@ -1108,6 +1260,12 @@ interface ExecuteActionResponseAllOfData {
|
|
|
1108
1260
|
* @memberof ExecuteActionResponseAllOfData
|
|
1109
1261
|
*/
|
|
1110
1262
|
retryAfter?: number;
|
|
1263
|
+
/**
|
|
1264
|
+
*
|
|
1265
|
+
* @type {ExecuteActionResponseAllOfDataRiskDecision}
|
|
1266
|
+
* @memberof ExecuteActionResponseAllOfData
|
|
1267
|
+
*/
|
|
1268
|
+
riskDecision?: ExecuteActionResponseAllOfDataRiskDecision;
|
|
1111
1269
|
}
|
|
1112
1270
|
/**
|
|
1113
1271
|
* Check if a given object implements the ExecuteActionResponseAllOfData interface.
|
|
@@ -1965,8 +2123,47 @@ declare function GetActivityState200ResponseToJSON(value?: GetActivityState200Re
|
|
|
1965
2123
|
* https://openapi-generator.tech
|
|
1966
2124
|
* Do not edit the class manually.
|
|
1967
2125
|
*/
|
|
2126
|
+
|
|
2127
|
+
/**
|
|
2128
|
+
*
|
|
2129
|
+
* @export
|
|
2130
|
+
* @interface GetActivityStatus200Response
|
|
2131
|
+
*/
|
|
2132
|
+
interface GetActivityStatus200Response {
|
|
2133
|
+
/**
|
|
2134
|
+
*
|
|
2135
|
+
* @type {boolean}
|
|
2136
|
+
* @memberof GetActivityStatus200Response
|
|
2137
|
+
*/
|
|
2138
|
+
success?: boolean;
|
|
2139
|
+
/**
|
|
2140
|
+
*
|
|
2141
|
+
* @type {ActivityStatus}
|
|
2142
|
+
* @memberof GetActivityStatus200Response
|
|
2143
|
+
*/
|
|
2144
|
+
data?: ActivityStatus;
|
|
2145
|
+
}
|
|
2146
|
+
/**
|
|
2147
|
+
* Check if a given object implements the GetActivityStatus200Response interface.
|
|
2148
|
+
*/
|
|
2149
|
+
declare function instanceOfGetActivityStatus200Response(value: object): boolean;
|
|
2150
|
+
declare function GetActivityStatus200ResponseFromJSON(json: any): GetActivityStatus200Response;
|
|
2151
|
+
declare function GetActivityStatus200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetActivityStatus200Response;
|
|
2152
|
+
declare function GetActivityStatus200ResponseToJSON(value?: GetActivityStatus200Response | null): any;
|
|
2153
|
+
|
|
1968
2154
|
/**
|
|
2155
|
+
* DJVLC User API
|
|
2156
|
+
* DJVLC 低代码平台用户端 API(数据面) 提供以下功能: - 页面解析(Page Resolve) - 动作执行(Action Gateway - 统一入口) - 数据查询(Data Proxy - 统一入口) - 活动状态查询 - 埋点上报(Track) - 租户解析(Tenant Resolver) - 健康检查(Health) 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
2157
|
+
*
|
|
2158
|
+
* The version of the OpenAPI document: 1.0.0
|
|
2159
|
+
* Contact: dev@djvlc.com
|
|
1969
2160
|
*
|
|
2161
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2162
|
+
* https://openapi-generator.tech
|
|
2163
|
+
* Do not edit the class manually.
|
|
2164
|
+
*/
|
|
2165
|
+
/**
|
|
2166
|
+
* 分页元数据(PaginationMeta)
|
|
1970
2167
|
* @export
|
|
1971
2168
|
* @interface PaginationMeta
|
|
1972
2169
|
*/
|
|
@@ -1982,7 +2179,7 @@ interface PaginationMeta {
|
|
|
1982
2179
|
* @type {number}
|
|
1983
2180
|
* @memberof PaginationMeta
|
|
1984
2181
|
*/
|
|
1985
|
-
|
|
2182
|
+
pageSize: number;
|
|
1986
2183
|
/**
|
|
1987
2184
|
* 总记录数
|
|
1988
2185
|
* @type {number}
|
|
@@ -1995,6 +2192,18 @@ interface PaginationMeta {
|
|
|
1995
2192
|
* @memberof PaginationMeta
|
|
1996
2193
|
*/
|
|
1997
2194
|
totalPages: number;
|
|
2195
|
+
/**
|
|
2196
|
+
* 是否有下一页
|
|
2197
|
+
* @type {boolean}
|
|
2198
|
+
* @memberof PaginationMeta
|
|
2199
|
+
*/
|
|
2200
|
+
hasNext: boolean;
|
|
2201
|
+
/**
|
|
2202
|
+
* 是否有上一页
|
|
2203
|
+
* @type {boolean}
|
|
2204
|
+
* @memberof PaginationMeta
|
|
2205
|
+
*/
|
|
2206
|
+
hasPrev: boolean;
|
|
1998
2207
|
}
|
|
1999
2208
|
/**
|
|
2000
2209
|
* Check if a given object implements the PaginationMeta interface.
|
|
@@ -2049,6 +2258,44 @@ declare function GetClaimRecords200ResponseFromJSON(json: any): GetClaimRecords2
|
|
|
2049
2258
|
declare function GetClaimRecords200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetClaimRecords200Response;
|
|
2050
2259
|
declare function GetClaimRecords200ResponseToJSON(value?: GetClaimRecords200Response | null): any;
|
|
2051
2260
|
|
|
2261
|
+
/**
|
|
2262
|
+
* DJVLC User API
|
|
2263
|
+
* DJVLC 低代码平台用户端 API(数据面) 提供以下功能: - 页面解析(Page Resolve) - 动作执行(Action Gateway - 统一入口) - 数据查询(Data Proxy - 统一入口) - 活动状态查询 - 埋点上报(Track) - 租户解析(Tenant Resolver) - 健康检查(Health) 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
2264
|
+
*
|
|
2265
|
+
* The version of the OpenAPI document: 1.0.0
|
|
2266
|
+
* Contact: dev@djvlc.com
|
|
2267
|
+
*
|
|
2268
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2269
|
+
* https://openapi-generator.tech
|
|
2270
|
+
* Do not edit the class manually.
|
|
2271
|
+
*/
|
|
2272
|
+
/**
|
|
2273
|
+
*
|
|
2274
|
+
* @export
|
|
2275
|
+
* @interface GetClaimStatus200Response
|
|
2276
|
+
*/
|
|
2277
|
+
interface GetClaimStatus200Response {
|
|
2278
|
+
/**
|
|
2279
|
+
*
|
|
2280
|
+
* @type {boolean}
|
|
2281
|
+
* @memberof GetClaimStatus200Response
|
|
2282
|
+
*/
|
|
2283
|
+
success?: boolean;
|
|
2284
|
+
/**
|
|
2285
|
+
* 领取状态数据
|
|
2286
|
+
* @type {object}
|
|
2287
|
+
* @memberof GetClaimStatus200Response
|
|
2288
|
+
*/
|
|
2289
|
+
data?: object;
|
|
2290
|
+
}
|
|
2291
|
+
/**
|
|
2292
|
+
* Check if a given object implements the GetClaimStatus200Response interface.
|
|
2293
|
+
*/
|
|
2294
|
+
declare function instanceOfGetClaimStatus200Response(value: object): boolean;
|
|
2295
|
+
declare function GetClaimStatus200ResponseFromJSON(json: any): GetClaimStatus200Response;
|
|
2296
|
+
declare function GetClaimStatus200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetClaimStatus200Response;
|
|
2297
|
+
declare function GetClaimStatus200ResponseToJSON(value?: GetClaimStatus200Response | null): any;
|
|
2298
|
+
|
|
2052
2299
|
/**
|
|
2053
2300
|
* DJVLC User API
|
|
2054
2301
|
* DJVLC 低代码平台用户端 API(数据面) 提供以下功能: - 页面解析(Page Resolve) - 动作执行(Action Gateway - 统一入口) - 数据查询(Data Proxy - 统一入口) - 活动状态查询 - 埋点上报(Track) - 租户解析(Tenant Resolver) - 健康检查(Health) 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
@@ -2201,31 +2448,72 @@ declare function GetLotteryRecords200ResponseToJSON(value?: GetLotteryRecords200
|
|
|
2201
2448
|
* Do not edit the class manually.
|
|
2202
2449
|
*/
|
|
2203
2450
|
/**
|
|
2204
|
-
*
|
|
2451
|
+
* Kill-Switch 条目
|
|
2205
2452
|
* @export
|
|
2206
|
-
* @interface
|
|
2453
|
+
* @interface KillSwitchItem
|
|
2207
2454
|
*/
|
|
2208
|
-
interface
|
|
2455
|
+
interface KillSwitchItem {
|
|
2209
2456
|
/**
|
|
2210
|
-
*
|
|
2457
|
+
* 目标类型
|
|
2211
2458
|
* @type {string}
|
|
2212
|
-
* @memberof
|
|
2459
|
+
* @memberof KillSwitchItem
|
|
2213
2460
|
*/
|
|
2214
|
-
|
|
2461
|
+
targetType: KillSwitchItemTargetTypeEnum;
|
|
2215
2462
|
/**
|
|
2216
|
-
*
|
|
2217
|
-
* @type {
|
|
2218
|
-
* @memberof
|
|
2463
|
+
* 目标 ID(actionType/componentName/featureKey/pageId/queryId)
|
|
2464
|
+
* @type {string}
|
|
2465
|
+
* @memberof KillSwitchItem
|
|
2219
2466
|
*/
|
|
2220
|
-
|
|
2467
|
+
targetId: string;
|
|
2468
|
+
/**
|
|
2469
|
+
* 是否启用(true = 被关闭)
|
|
2470
|
+
* @type {boolean}
|
|
2471
|
+
* @memberof KillSwitchItem
|
|
2472
|
+
*/
|
|
2473
|
+
enabled: boolean;
|
|
2474
|
+
/**
|
|
2475
|
+
* 关闭原因
|
|
2476
|
+
* @type {string}
|
|
2477
|
+
* @memberof KillSwitchItem
|
|
2478
|
+
*/
|
|
2479
|
+
reason?: string;
|
|
2480
|
+
/**
|
|
2481
|
+
* 关闭时间(ISO8601)
|
|
2482
|
+
* @type {Date}
|
|
2483
|
+
* @memberof KillSwitchItem
|
|
2484
|
+
*/
|
|
2485
|
+
enabledAt?: Date;
|
|
2486
|
+
/**
|
|
2487
|
+
* 关闭操作者
|
|
2488
|
+
* @type {string}
|
|
2489
|
+
* @memberof KillSwitchItem
|
|
2490
|
+
*/
|
|
2491
|
+
enabledBy?: string;
|
|
2492
|
+
/**
|
|
2493
|
+
* 用户提示消息
|
|
2494
|
+
* @type {string}
|
|
2495
|
+
* @memberof KillSwitchItem
|
|
2496
|
+
*/
|
|
2497
|
+
userMessage?: string;
|
|
2221
2498
|
}
|
|
2222
2499
|
/**
|
|
2223
|
-
*
|
|
2500
|
+
* @export
|
|
2224
2501
|
*/
|
|
2225
|
-
declare
|
|
2226
|
-
|
|
2227
|
-
|
|
2228
|
-
|
|
2502
|
+
declare const KillSwitchItemTargetTypeEnum: {
|
|
2503
|
+
readonly ACTION: "action";
|
|
2504
|
+
readonly COMPONENT: "component";
|
|
2505
|
+
readonly FEATURE: "feature";
|
|
2506
|
+
readonly PAGE: "page";
|
|
2507
|
+
readonly QUERY: "query";
|
|
2508
|
+
};
|
|
2509
|
+
type KillSwitchItemTargetTypeEnum = typeof KillSwitchItemTargetTypeEnum[keyof typeof KillSwitchItemTargetTypeEnum];
|
|
2510
|
+
/**
|
|
2511
|
+
* Check if a given object implements the KillSwitchItem interface.
|
|
2512
|
+
*/
|
|
2513
|
+
declare function instanceOfKillSwitchItem(value: object): boolean;
|
|
2514
|
+
declare function KillSwitchItemFromJSON(json: any): KillSwitchItem;
|
|
2515
|
+
declare function KillSwitchItemFromJSONTyped(json: any, ignoreDiscriminator: boolean): KillSwitchItem;
|
|
2516
|
+
declare function KillSwitchItemToJSON(value?: KillSwitchItem | null): any;
|
|
2229
2517
|
|
|
2230
2518
|
/**
|
|
2231
2519
|
* DJVLC User API
|
|
@@ -2240,9 +2528,273 @@ declare function SigninCalendarRecordsInnerRewardToJSON(value?: SigninCalendarRe
|
|
|
2240
2528
|
*/
|
|
2241
2529
|
|
|
2242
2530
|
/**
|
|
2243
|
-
*
|
|
2531
|
+
* 运维配置(运行时下发,与 types/page/snapshot.ts OpsConfig 对齐)
|
|
2244
2532
|
* @export
|
|
2245
|
-
* @interface
|
|
2533
|
+
* @interface OpsConfig
|
|
2534
|
+
*/
|
|
2535
|
+
interface OpsConfig {
|
|
2536
|
+
/**
|
|
2537
|
+
* 配置版本 ID(用于缓存失效)
|
|
2538
|
+
* @type {string}
|
|
2539
|
+
* @memberof OpsConfig
|
|
2540
|
+
*/
|
|
2541
|
+
configVersionId?: string;
|
|
2542
|
+
/**
|
|
2543
|
+
* Kill-Switch 列表(被紧急关闭的功能/动作)
|
|
2544
|
+
* @type {Array<KillSwitchItem>}
|
|
2545
|
+
* @memberof OpsConfig
|
|
2546
|
+
*/
|
|
2547
|
+
killSwitch: Array<KillSwitchItem>;
|
|
2548
|
+
/**
|
|
2549
|
+
* 被阻断的组件列表
|
|
2550
|
+
* @type {Array<BlockedComponentItem>}
|
|
2551
|
+
* @memberof OpsConfig
|
|
2552
|
+
*/
|
|
2553
|
+
blockedComponents: Array<BlockedComponentItem>;
|
|
2554
|
+
/**
|
|
2555
|
+
* 功能开关(Feature Flags)
|
|
2556
|
+
* @type {{ [key: string]: boolean; }}
|
|
2557
|
+
* @memberof OpsConfig
|
|
2558
|
+
*/
|
|
2559
|
+
flags: {
|
|
2560
|
+
[key: string]: boolean;
|
|
2561
|
+
};
|
|
2562
|
+
/**
|
|
2563
|
+
* 配置过期时间(ISO8601)
|
|
2564
|
+
* @type {Date}
|
|
2565
|
+
* @memberof OpsConfig
|
|
2566
|
+
*/
|
|
2567
|
+
expiresAt?: Date;
|
|
2568
|
+
}
|
|
2569
|
+
/**
|
|
2570
|
+
* Check if a given object implements the OpsConfig interface.
|
|
2571
|
+
*/
|
|
2572
|
+
declare function instanceOfOpsConfig(value: object): boolean;
|
|
2573
|
+
declare function OpsConfigFromJSON(json: any): OpsConfig;
|
|
2574
|
+
declare function OpsConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): OpsConfig;
|
|
2575
|
+
declare function OpsConfigToJSON(value?: OpsConfig | null): any;
|
|
2576
|
+
|
|
2577
|
+
/**
|
|
2578
|
+
* DJVLC User API
|
|
2579
|
+
* DJVLC 低代码平台用户端 API(数据面) 提供以下功能: - 页面解析(Page Resolve) - 动作执行(Action Gateway - 统一入口) - 数据查询(Data Proxy - 统一入口) - 活动状态查询 - 埋点上报(Track) - 租户解析(Tenant Resolver) - 健康检查(Health) 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
2580
|
+
*
|
|
2581
|
+
* The version of the OpenAPI document: 1.0.0
|
|
2582
|
+
* Contact: dev@djvlc.com
|
|
2583
|
+
*
|
|
2584
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2585
|
+
* https://openapi-generator.tech
|
|
2586
|
+
* Do not edit the class manually.
|
|
2587
|
+
*/
|
|
2588
|
+
|
|
2589
|
+
/**
|
|
2590
|
+
*
|
|
2591
|
+
* @export
|
|
2592
|
+
* @interface GetPageConfig200Response
|
|
2593
|
+
*/
|
|
2594
|
+
interface GetPageConfig200Response {
|
|
2595
|
+
/**
|
|
2596
|
+
*
|
|
2597
|
+
* @type {boolean}
|
|
2598
|
+
* @memberof GetPageConfig200Response
|
|
2599
|
+
*/
|
|
2600
|
+
success?: boolean;
|
|
2601
|
+
/**
|
|
2602
|
+
*
|
|
2603
|
+
* @type {OpsConfig}
|
|
2604
|
+
* @memberof GetPageConfig200Response
|
|
2605
|
+
*/
|
|
2606
|
+
data?: OpsConfig;
|
|
2607
|
+
}
|
|
2608
|
+
/**
|
|
2609
|
+
* Check if a given object implements the GetPageConfig200Response interface.
|
|
2610
|
+
*/
|
|
2611
|
+
declare function instanceOfGetPageConfig200Response(value: object): boolean;
|
|
2612
|
+
declare function GetPageConfig200ResponseFromJSON(json: any): GetPageConfig200Response;
|
|
2613
|
+
declare function GetPageConfig200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetPageConfig200Response;
|
|
2614
|
+
declare function GetPageConfig200ResponseToJSON(value?: GetPageConfig200Response | null): any;
|
|
2615
|
+
|
|
2616
|
+
/**
|
|
2617
|
+
* DJVLC User API
|
|
2618
|
+
* DJVLC 低代码平台用户端 API(数据面) 提供以下功能: - 页面解析(Page Resolve) - 动作执行(Action Gateway - 统一入口) - 数据查询(Data Proxy - 统一入口) - 活动状态查询 - 埋点上报(Track) - 租户解析(Tenant Resolver) - 健康检查(Health) 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
2619
|
+
*
|
|
2620
|
+
* The version of the OpenAPI document: 1.0.0
|
|
2621
|
+
* Contact: dev@djvlc.com
|
|
2622
|
+
*
|
|
2623
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2624
|
+
* https://openapi-generator.tech
|
|
2625
|
+
* Do not edit the class manually.
|
|
2626
|
+
*/
|
|
2627
|
+
/**
|
|
2628
|
+
*
|
|
2629
|
+
* @export
|
|
2630
|
+
* @interface QueryManifest
|
|
2631
|
+
*/
|
|
2632
|
+
interface QueryManifest {
|
|
2633
|
+
/**
|
|
2634
|
+
* 查询 ID
|
|
2635
|
+
* @type {string}
|
|
2636
|
+
* @memberof QueryManifest
|
|
2637
|
+
*/
|
|
2638
|
+
queryId: string;
|
|
2639
|
+
/**
|
|
2640
|
+
* 查询定义版本 ID
|
|
2641
|
+
* @type {string}
|
|
2642
|
+
* @memberof QueryManifest
|
|
2643
|
+
*/
|
|
2644
|
+
queryVersionId: string;
|
|
2645
|
+
/**
|
|
2646
|
+
* 缓存 TTL(秒)
|
|
2647
|
+
* @type {number}
|
|
2648
|
+
* @memberof QueryManifest
|
|
2649
|
+
*/
|
|
2650
|
+
cacheTtl?: number;
|
|
2651
|
+
}
|
|
2652
|
+
/**
|
|
2653
|
+
* Check if a given object implements the QueryManifest interface.
|
|
2654
|
+
*/
|
|
2655
|
+
declare function instanceOfQueryManifest(value: object): boolean;
|
|
2656
|
+
declare function QueryManifestFromJSON(json: any): QueryManifest;
|
|
2657
|
+
declare function QueryManifestFromJSONTyped(json: any, ignoreDiscriminator: boolean): QueryManifest;
|
|
2658
|
+
declare function QueryManifestToJSON(value?: QueryManifest | null): any;
|
|
2659
|
+
|
|
2660
|
+
/**
|
|
2661
|
+
* DJVLC User API
|
|
2662
|
+
* DJVLC 低代码平台用户端 API(数据面) 提供以下功能: - 页面解析(Page Resolve) - 动作执行(Action Gateway - 统一入口) - 数据查询(Data Proxy - 统一入口) - 活动状态查询 - 埋点上报(Track) - 租户解析(Tenant Resolver) - 健康检查(Health) 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
2663
|
+
*
|
|
2664
|
+
* The version of the OpenAPI document: 1.0.0
|
|
2665
|
+
* Contact: dev@djvlc.com
|
|
2666
|
+
*
|
|
2667
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2668
|
+
* https://openapi-generator.tech
|
|
2669
|
+
* Do not edit the class manually.
|
|
2670
|
+
*/
|
|
2671
|
+
|
|
2672
|
+
/**
|
|
2673
|
+
*
|
|
2674
|
+
* @export
|
|
2675
|
+
* @interface ResourceManifests
|
|
2676
|
+
*/
|
|
2677
|
+
interface ResourceManifests {
|
|
2678
|
+
/**
|
|
2679
|
+
* 组件资源清单
|
|
2680
|
+
* @type {Array<ComponentManifest>}
|
|
2681
|
+
* @memberof ResourceManifests
|
|
2682
|
+
*/
|
|
2683
|
+
components?: Array<ComponentManifest>;
|
|
2684
|
+
/**
|
|
2685
|
+
* 动作资源清单
|
|
2686
|
+
* @type {Array<ActionManifest>}
|
|
2687
|
+
* @memberof ResourceManifests
|
|
2688
|
+
*/
|
|
2689
|
+
actions?: Array<ActionManifest>;
|
|
2690
|
+
/**
|
|
2691
|
+
* 查询资源清单
|
|
2692
|
+
* @type {Array<QueryManifest>}
|
|
2693
|
+
* @memberof ResourceManifests
|
|
2694
|
+
*/
|
|
2695
|
+
queries?: Array<QueryManifest>;
|
|
2696
|
+
}
|
|
2697
|
+
/**
|
|
2698
|
+
* Check if a given object implements the ResourceManifests interface.
|
|
2699
|
+
*/
|
|
2700
|
+
declare function instanceOfResourceManifests(value: object): boolean;
|
|
2701
|
+
declare function ResourceManifestsFromJSON(json: any): ResourceManifests;
|
|
2702
|
+
declare function ResourceManifestsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResourceManifests;
|
|
2703
|
+
declare function ResourceManifestsToJSON(value?: ResourceManifests | null): any;
|
|
2704
|
+
|
|
2705
|
+
/**
|
|
2706
|
+
* DJVLC User API
|
|
2707
|
+
* DJVLC 低代码平台用户端 API(数据面) 提供以下功能: - 页面解析(Page Resolve) - 动作执行(Action Gateway - 统一入口) - 数据查询(Data Proxy - 统一入口) - 活动状态查询 - 埋点上报(Track) - 租户解析(Tenant Resolver) - 健康检查(Health) 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
2708
|
+
*
|
|
2709
|
+
* The version of the OpenAPI document: 1.0.0
|
|
2710
|
+
* Contact: dev@djvlc.com
|
|
2711
|
+
*
|
|
2712
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2713
|
+
* https://openapi-generator.tech
|
|
2714
|
+
* Do not edit the class manually.
|
|
2715
|
+
*/
|
|
2716
|
+
|
|
2717
|
+
/**
|
|
2718
|
+
*
|
|
2719
|
+
* @export
|
|
2720
|
+
* @interface GetPageManifest200Response
|
|
2721
|
+
*/
|
|
2722
|
+
interface GetPageManifest200Response {
|
|
2723
|
+
/**
|
|
2724
|
+
*
|
|
2725
|
+
* @type {boolean}
|
|
2726
|
+
* @memberof GetPageManifest200Response
|
|
2727
|
+
*/
|
|
2728
|
+
success?: boolean;
|
|
2729
|
+
/**
|
|
2730
|
+
*
|
|
2731
|
+
* @type {ResourceManifests}
|
|
2732
|
+
* @memberof GetPageManifest200Response
|
|
2733
|
+
*/
|
|
2734
|
+
data?: ResourceManifests;
|
|
2735
|
+
}
|
|
2736
|
+
/**
|
|
2737
|
+
* Check if a given object implements the GetPageManifest200Response interface.
|
|
2738
|
+
*/
|
|
2739
|
+
declare function instanceOfGetPageManifest200Response(value: object): boolean;
|
|
2740
|
+
declare function GetPageManifest200ResponseFromJSON(json: any): GetPageManifest200Response;
|
|
2741
|
+
declare function GetPageManifest200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetPageManifest200Response;
|
|
2742
|
+
declare function GetPageManifest200ResponseToJSON(value?: GetPageManifest200Response | null): any;
|
|
2743
|
+
|
|
2744
|
+
/**
|
|
2745
|
+
* DJVLC User API
|
|
2746
|
+
* DJVLC 低代码平台用户端 API(数据面) 提供以下功能: - 页面解析(Page Resolve) - 动作执行(Action Gateway - 统一入口) - 数据查询(Data Proxy - 统一入口) - 活动状态查询 - 埋点上报(Track) - 租户解析(Tenant Resolver) - 健康检查(Health) 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
2747
|
+
*
|
|
2748
|
+
* The version of the OpenAPI document: 1.0.0
|
|
2749
|
+
* Contact: dev@djvlc.com
|
|
2750
|
+
*
|
|
2751
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2752
|
+
* https://openapi-generator.tech
|
|
2753
|
+
* Do not edit the class manually.
|
|
2754
|
+
*/
|
|
2755
|
+
/**
|
|
2756
|
+
*
|
|
2757
|
+
* @export
|
|
2758
|
+
* @interface SigninCalendarRecordsInnerReward
|
|
2759
|
+
*/
|
|
2760
|
+
interface SigninCalendarRecordsInnerReward {
|
|
2761
|
+
/**
|
|
2762
|
+
*
|
|
2763
|
+
* @type {string}
|
|
2764
|
+
* @memberof SigninCalendarRecordsInnerReward
|
|
2765
|
+
*/
|
|
2766
|
+
name?: string;
|
|
2767
|
+
/**
|
|
2768
|
+
*
|
|
2769
|
+
* @type {number}
|
|
2770
|
+
* @memberof SigninCalendarRecordsInnerReward
|
|
2771
|
+
*/
|
|
2772
|
+
amount?: number;
|
|
2773
|
+
}
|
|
2774
|
+
/**
|
|
2775
|
+
* Check if a given object implements the SigninCalendarRecordsInnerReward interface.
|
|
2776
|
+
*/
|
|
2777
|
+
declare function instanceOfSigninCalendarRecordsInnerReward(value: object): boolean;
|
|
2778
|
+
declare function SigninCalendarRecordsInnerRewardFromJSON(json: any): SigninCalendarRecordsInnerReward;
|
|
2779
|
+
declare function SigninCalendarRecordsInnerRewardFromJSONTyped(json: any, ignoreDiscriminator: boolean): SigninCalendarRecordsInnerReward;
|
|
2780
|
+
declare function SigninCalendarRecordsInnerRewardToJSON(value?: SigninCalendarRecordsInnerReward | null): any;
|
|
2781
|
+
|
|
2782
|
+
/**
|
|
2783
|
+
* DJVLC User API
|
|
2784
|
+
* DJVLC 低代码平台用户端 API(数据面) 提供以下功能: - 页面解析(Page Resolve) - 动作执行(Action Gateway - 统一入口) - 数据查询(Data Proxy - 统一入口) - 活动状态查询 - 埋点上报(Track) - 租户解析(Tenant Resolver) - 健康检查(Health) 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
2785
|
+
*
|
|
2786
|
+
* The version of the OpenAPI document: 1.0.0
|
|
2787
|
+
* Contact: dev@djvlc.com
|
|
2788
|
+
*
|
|
2789
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2790
|
+
* https://openapi-generator.tech
|
|
2791
|
+
* Do not edit the class manually.
|
|
2792
|
+
*/
|
|
2793
|
+
|
|
2794
|
+
/**
|
|
2795
|
+
*
|
|
2796
|
+
* @export
|
|
2797
|
+
* @interface SigninCalendarRecordsInner
|
|
2246
2798
|
*/
|
|
2247
2799
|
interface SigninCalendarRecordsInner {
|
|
2248
2800
|
/**
|
|
@@ -2368,6 +2920,44 @@ declare function GetSigninCalendar200ResponseFromJSON(json: any): GetSigninCalen
|
|
|
2368
2920
|
declare function GetSigninCalendar200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetSigninCalendar200Response;
|
|
2369
2921
|
declare function GetSigninCalendar200ResponseToJSON(value?: GetSigninCalendar200Response | null): any;
|
|
2370
2922
|
|
|
2923
|
+
/**
|
|
2924
|
+
* DJVLC User API
|
|
2925
|
+
* DJVLC 低代码平台用户端 API(数据面) 提供以下功能: - 页面解析(Page Resolve) - 动作执行(Action Gateway - 统一入口) - 数据查询(Data Proxy - 统一入口) - 活动状态查询 - 埋点上报(Track) - 租户解析(Tenant Resolver) - 健康检查(Health) 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
2926
|
+
*
|
|
2927
|
+
* The version of the OpenAPI document: 1.0.0
|
|
2928
|
+
* Contact: dev@djvlc.com
|
|
2929
|
+
*
|
|
2930
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2931
|
+
* https://openapi-generator.tech
|
|
2932
|
+
* Do not edit the class manually.
|
|
2933
|
+
*/
|
|
2934
|
+
/**
|
|
2935
|
+
*
|
|
2936
|
+
* @export
|
|
2937
|
+
* @interface GetSigninStatus200Response
|
|
2938
|
+
*/
|
|
2939
|
+
interface GetSigninStatus200Response {
|
|
2940
|
+
/**
|
|
2941
|
+
*
|
|
2942
|
+
* @type {boolean}
|
|
2943
|
+
* @memberof GetSigninStatus200Response
|
|
2944
|
+
*/
|
|
2945
|
+
success?: boolean;
|
|
2946
|
+
/**
|
|
2947
|
+
* 签到状态数据
|
|
2948
|
+
* @type {object}
|
|
2949
|
+
* @memberof GetSigninStatus200Response
|
|
2950
|
+
*/
|
|
2951
|
+
data?: object;
|
|
2952
|
+
}
|
|
2953
|
+
/**
|
|
2954
|
+
* Check if a given object implements the GetSigninStatus200Response interface.
|
|
2955
|
+
*/
|
|
2956
|
+
declare function instanceOfGetSigninStatus200Response(value: object): boolean;
|
|
2957
|
+
declare function GetSigninStatus200ResponseFromJSON(json: any): GetSigninStatus200Response;
|
|
2958
|
+
declare function GetSigninStatus200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetSigninStatus200Response;
|
|
2959
|
+
declare function GetSigninStatus200ResponseToJSON(value?: GetSigninStatus200Response | null): any;
|
|
2960
|
+
|
|
2371
2961
|
/**
|
|
2372
2962
|
* DJVLC User API
|
|
2373
2963
|
* DJVLC 低代码平台用户端 API(数据面) 提供以下功能: - 页面解析(Page Resolve) - 动作执行(Action Gateway - 统一入口) - 数据查询(Data Proxy - 统一入口) - 活动状态查询 - 埋点上报(Track) - 租户解析(Tenant Resolver) - 健康检查(Health) 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
@@ -2725,84 +3315,13 @@ interface IdempotencyConflictResponseData {
|
|
|
2725
3315
|
*/
|
|
2726
3316
|
originalExecutedAt?: Date;
|
|
2727
3317
|
}
|
|
2728
|
-
/**
|
|
2729
|
-
* Check if a given object implements the IdempotencyConflictResponseData interface.
|
|
2730
|
-
*/
|
|
2731
|
-
declare function instanceOfIdempotencyConflictResponseData(value: object): boolean;
|
|
2732
|
-
declare function IdempotencyConflictResponseDataFromJSON(json: any): IdempotencyConflictResponseData;
|
|
2733
|
-
declare function IdempotencyConflictResponseDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): IdempotencyConflictResponseData;
|
|
2734
|
-
declare function IdempotencyConflictResponseDataToJSON(value?: IdempotencyConflictResponseData | null): any;
|
|
2735
|
-
|
|
2736
|
-
/**
|
|
2737
|
-
* DJVLC User API
|
|
2738
|
-
* DJVLC 低代码平台用户端 API(数据面) 提供以下功能: - 页面解析(Page Resolve) - 动作执行(Action Gateway - 统一入口) - 数据查询(Data Proxy - 统一入口) - 活动状态查询 - 埋点上报(Track) - 租户解析(Tenant Resolver) - 健康检查(Health) 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
2739
|
-
*
|
|
2740
|
-
* The version of the OpenAPI document: 1.0.0
|
|
2741
|
-
* Contact: dev@djvlc.com
|
|
2742
|
-
*
|
|
2743
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2744
|
-
* https://openapi-generator.tech
|
|
2745
|
-
* Do not edit the class manually.
|
|
2746
|
-
*/
|
|
2747
|
-
|
|
2748
|
-
/**
|
|
2749
|
-
*
|
|
2750
|
-
* @export
|
|
2751
|
-
* @interface IdempotencyConflictResponse
|
|
2752
|
-
*/
|
|
2753
|
-
interface IdempotencyConflictResponse {
|
|
2754
|
-
/**
|
|
2755
|
-
*
|
|
2756
|
-
* @type {boolean}
|
|
2757
|
-
* @memberof IdempotencyConflictResponse
|
|
2758
|
-
*/
|
|
2759
|
-
success: boolean;
|
|
2760
|
-
/**
|
|
2761
|
-
*
|
|
2762
|
-
* @type {IdempotencyConflictResponseData}
|
|
2763
|
-
* @memberof IdempotencyConflictResponse
|
|
2764
|
-
*/
|
|
2765
|
-
data: IdempotencyConflictResponseData;
|
|
2766
|
-
}
|
|
2767
|
-
/**
|
|
2768
|
-
* Check if a given object implements the IdempotencyConflictResponse interface.
|
|
2769
|
-
*/
|
|
2770
|
-
declare function instanceOfIdempotencyConflictResponse(value: object): boolean;
|
|
2771
|
-
declare function IdempotencyConflictResponseFromJSON(json: any): IdempotencyConflictResponse;
|
|
2772
|
-
declare function IdempotencyConflictResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): IdempotencyConflictResponse;
|
|
2773
|
-
declare function IdempotencyConflictResponseToJSON(value?: IdempotencyConflictResponse | null): any;
|
|
2774
|
-
|
|
2775
|
-
/**
|
|
2776
|
-
* DJVLC User API
|
|
2777
|
-
* DJVLC 低代码平台用户端 API(数据面) 提供以下功能: - 页面解析(Page Resolve) - 动作执行(Action Gateway - 统一入口) - 数据查询(Data Proxy - 统一入口) - 活动状态查询 - 埋点上报(Track) - 租户解析(Tenant Resolver) - 健康检查(Health) 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
2778
|
-
*
|
|
2779
|
-
* The version of the OpenAPI document: 1.0.0
|
|
2780
|
-
* Contact: dev@djvlc.com
|
|
2781
|
-
*
|
|
2782
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
2783
|
-
* https://openapi-generator.tech
|
|
2784
|
-
* Do not edit the class manually.
|
|
2785
|
-
*/
|
|
2786
|
-
/**
|
|
2787
|
-
*
|
|
2788
|
-
* @export
|
|
2789
|
-
* @interface LivenessCheck200Response
|
|
2790
|
-
*/
|
|
2791
|
-
interface LivenessCheck200Response {
|
|
2792
|
-
/**
|
|
2793
|
-
*
|
|
2794
|
-
* @type {boolean}
|
|
2795
|
-
* @memberof LivenessCheck200Response
|
|
2796
|
-
*/
|
|
2797
|
-
alive?: boolean;
|
|
2798
|
-
}
|
|
2799
|
-
/**
|
|
2800
|
-
* Check if a given object implements the LivenessCheck200Response interface.
|
|
2801
|
-
*/
|
|
2802
|
-
declare function instanceOfLivenessCheck200Response(value: object): boolean;
|
|
2803
|
-
declare function LivenessCheck200ResponseFromJSON(json: any): LivenessCheck200Response;
|
|
2804
|
-
declare function LivenessCheck200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): LivenessCheck200Response;
|
|
2805
|
-
declare function LivenessCheck200ResponseToJSON(value?: LivenessCheck200Response | null): any;
|
|
3318
|
+
/**
|
|
3319
|
+
* Check if a given object implements the IdempotencyConflictResponseData interface.
|
|
3320
|
+
*/
|
|
3321
|
+
declare function instanceOfIdempotencyConflictResponseData(value: object): boolean;
|
|
3322
|
+
declare function IdempotencyConflictResponseDataFromJSON(json: any): IdempotencyConflictResponseData;
|
|
3323
|
+
declare function IdempotencyConflictResponseDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): IdempotencyConflictResponseData;
|
|
3324
|
+
declare function IdempotencyConflictResponseDataToJSON(value?: IdempotencyConflictResponseData | null): any;
|
|
2806
3325
|
|
|
2807
3326
|
/**
|
|
2808
3327
|
* DJVLC User API
|
|
@@ -2815,38 +3334,33 @@ declare function LivenessCheck200ResponseToJSON(value?: LivenessCheck200Response
|
|
|
2815
3334
|
* https://openapi-generator.tech
|
|
2816
3335
|
* Do not edit the class manually.
|
|
2817
3336
|
*/
|
|
3337
|
+
|
|
2818
3338
|
/**
|
|
2819
3339
|
*
|
|
2820
3340
|
* @export
|
|
2821
|
-
* @interface
|
|
3341
|
+
* @interface IdempotencyConflictResponse
|
|
2822
3342
|
*/
|
|
2823
|
-
interface
|
|
2824
|
-
/**
|
|
2825
|
-
*
|
|
2826
|
-
* @type {string}
|
|
2827
|
-
* @memberof OpsConfigBlockedComponentsInner
|
|
2828
|
-
*/
|
|
2829
|
-
componentName?: string;
|
|
3343
|
+
interface IdempotencyConflictResponse {
|
|
2830
3344
|
/**
|
|
2831
3345
|
*
|
|
2832
|
-
* @type {
|
|
2833
|
-
* @memberof
|
|
3346
|
+
* @type {boolean}
|
|
3347
|
+
* @memberof IdempotencyConflictResponse
|
|
2834
3348
|
*/
|
|
2835
|
-
|
|
3349
|
+
success: boolean;
|
|
2836
3350
|
/**
|
|
2837
3351
|
*
|
|
2838
|
-
* @type {
|
|
2839
|
-
* @memberof
|
|
3352
|
+
* @type {IdempotencyConflictResponseData}
|
|
3353
|
+
* @memberof IdempotencyConflictResponse
|
|
2840
3354
|
*/
|
|
2841
|
-
|
|
3355
|
+
data: IdempotencyConflictResponseData;
|
|
2842
3356
|
}
|
|
2843
3357
|
/**
|
|
2844
|
-
* Check if a given object implements the
|
|
3358
|
+
* Check if a given object implements the IdempotencyConflictResponse interface.
|
|
2845
3359
|
*/
|
|
2846
|
-
declare function
|
|
2847
|
-
declare function
|
|
2848
|
-
declare function
|
|
2849
|
-
declare function
|
|
3360
|
+
declare function instanceOfIdempotencyConflictResponse(value: object): boolean;
|
|
3361
|
+
declare function IdempotencyConflictResponseFromJSON(json: any): IdempotencyConflictResponse;
|
|
3362
|
+
declare function IdempotencyConflictResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): IdempotencyConflictResponse;
|
|
3363
|
+
declare function IdempotencyConflictResponseToJSON(value?: IdempotencyConflictResponse | null): any;
|
|
2850
3364
|
|
|
2851
3365
|
/**
|
|
2852
3366
|
* DJVLC User API
|
|
@@ -2859,41 +3373,26 @@ declare function OpsConfigBlockedComponentsInnerToJSON(value?: OpsConfigBlockedC
|
|
|
2859
3373
|
* https://openapi-generator.tech
|
|
2860
3374
|
* Do not edit the class manually.
|
|
2861
3375
|
*/
|
|
2862
|
-
|
|
2863
3376
|
/**
|
|
2864
|
-
*
|
|
3377
|
+
*
|
|
2865
3378
|
* @export
|
|
2866
|
-
* @interface
|
|
3379
|
+
* @interface LivenessCheck200Response
|
|
2867
3380
|
*/
|
|
2868
|
-
interface
|
|
2869
|
-
/**
|
|
2870
|
-
* Kill Switch 列表(被阻断的 actionType/componentType)
|
|
2871
|
-
* @type {Array<string>}
|
|
2872
|
-
* @memberof OpsConfig
|
|
2873
|
-
*/
|
|
2874
|
-
killSwitch: Array<string>;
|
|
2875
|
-
/**
|
|
2876
|
-
* 被阻断的组件列表
|
|
2877
|
-
* @type {Array<OpsConfigBlockedComponentsInner>}
|
|
2878
|
-
* @memberof OpsConfig
|
|
2879
|
-
*/
|
|
2880
|
-
blockedComponents: Array<OpsConfigBlockedComponentsInner>;
|
|
3381
|
+
interface LivenessCheck200Response {
|
|
2881
3382
|
/**
|
|
2882
|
-
*
|
|
2883
|
-
* @type {
|
|
2884
|
-
* @memberof
|
|
3383
|
+
*
|
|
3384
|
+
* @type {boolean}
|
|
3385
|
+
* @memberof LivenessCheck200Response
|
|
2885
3386
|
*/
|
|
2886
|
-
|
|
2887
|
-
[key: string]: boolean;
|
|
2888
|
-
};
|
|
3387
|
+
alive?: boolean;
|
|
2889
3388
|
}
|
|
2890
3389
|
/**
|
|
2891
|
-
* Check if a given object implements the
|
|
3390
|
+
* Check if a given object implements the LivenessCheck200Response interface.
|
|
2892
3391
|
*/
|
|
2893
|
-
declare function
|
|
2894
|
-
declare function
|
|
2895
|
-
declare function
|
|
2896
|
-
declare function
|
|
3392
|
+
declare function instanceOfLivenessCheck200Response(value: object): boolean;
|
|
3393
|
+
declare function LivenessCheck200ResponseFromJSON(json: any): LivenessCheck200Response;
|
|
3394
|
+
declare function LivenessCheck200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): LivenessCheck200Response;
|
|
3395
|
+
declare function LivenessCheck200ResponseToJSON(value?: LivenessCheck200Response | null): any;
|
|
2897
3396
|
|
|
2898
3397
|
/**
|
|
2899
3398
|
* DJVLC User API
|
|
@@ -3355,50 +3854,6 @@ declare function QueryDefinitionResponseFromJSON(json: any): QueryDefinitionResp
|
|
|
3355
3854
|
declare function QueryDefinitionResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): QueryDefinitionResponse;
|
|
3356
3855
|
declare function QueryDefinitionResponseToJSON(value?: QueryDefinitionResponse | null): any;
|
|
3357
3856
|
|
|
3358
|
-
/**
|
|
3359
|
-
* DJVLC User API
|
|
3360
|
-
* DJVLC 低代码平台用户端 API(数据面) 提供以下功能: - 页面解析(Page Resolve) - 动作执行(Action Gateway - 统一入口) - 数据查询(Data Proxy - 统一入口) - 活动状态查询 - 埋点上报(Track) - 租户解析(Tenant Resolver) - 健康检查(Health) 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
3361
|
-
*
|
|
3362
|
-
* The version of the OpenAPI document: 1.0.0
|
|
3363
|
-
* Contact: dev@djvlc.com
|
|
3364
|
-
*
|
|
3365
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3366
|
-
* https://openapi-generator.tech
|
|
3367
|
-
* Do not edit the class manually.
|
|
3368
|
-
*/
|
|
3369
|
-
/**
|
|
3370
|
-
*
|
|
3371
|
-
* @export
|
|
3372
|
-
* @interface QueryManifest
|
|
3373
|
-
*/
|
|
3374
|
-
interface QueryManifest {
|
|
3375
|
-
/**
|
|
3376
|
-
* 查询 ID
|
|
3377
|
-
* @type {string}
|
|
3378
|
-
* @memberof QueryManifest
|
|
3379
|
-
*/
|
|
3380
|
-
queryId: string;
|
|
3381
|
-
/**
|
|
3382
|
-
* 查询定义版本 ID
|
|
3383
|
-
* @type {string}
|
|
3384
|
-
* @memberof QueryManifest
|
|
3385
|
-
*/
|
|
3386
|
-
queryVersionId: string;
|
|
3387
|
-
/**
|
|
3388
|
-
* 缓存 TTL(秒)
|
|
3389
|
-
* @type {number}
|
|
3390
|
-
* @memberof QueryManifest
|
|
3391
|
-
*/
|
|
3392
|
-
cacheTtl?: number;
|
|
3393
|
-
}
|
|
3394
|
-
/**
|
|
3395
|
-
* Check if a given object implements the QueryManifest interface.
|
|
3396
|
-
*/
|
|
3397
|
-
declare function instanceOfQueryManifest(value: object): boolean;
|
|
3398
|
-
declare function QueryManifestFromJSON(json: any): QueryManifest;
|
|
3399
|
-
declare function QueryManifestFromJSONTyped(json: any, ignoreDiscriminator: boolean): QueryManifest;
|
|
3400
|
-
declare function QueryManifestToJSON(value?: QueryManifest | null): any;
|
|
3401
|
-
|
|
3402
3857
|
/**
|
|
3403
3858
|
* DJVLC User API
|
|
3404
3859
|
* DJVLC 低代码平台用户端 API(数据面) 提供以下功能: - 页面解析(Page Resolve) - 动作执行(Action Gateway - 统一入口) - 数据查询(Data Proxy - 统一入口) - 活动状态查询 - 埋点上报(Track) - 租户解析(Tenant Resolver) - 健康检查(Health) 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
@@ -3614,7 +4069,7 @@ declare function ResolvePageResponseAllOfDataSnapshotDefinitionsDigestToJSON(val
|
|
|
3614
4069
|
* Do not edit the class manually.
|
|
3615
4070
|
*/
|
|
3616
4071
|
/**
|
|
3617
|
-
*
|
|
4072
|
+
* 入口点(source 为 remote 时必填)
|
|
3618
4073
|
* @export
|
|
3619
4074
|
* @interface ResolvePageResponseAllOfDataSnapshotManifestEntrypoints
|
|
3620
4075
|
*/
|
|
@@ -3676,6 +4131,12 @@ interface ResolvePageResponseAllOfDataSnapshotManifestComponents {
|
|
|
3676
4131
|
* @memberof ResolvePageResponseAllOfDataSnapshotManifestComponents
|
|
3677
4132
|
*/
|
|
3678
4133
|
version?: string;
|
|
4134
|
+
/**
|
|
4135
|
+
* 组件来源:bundled = 内置组件,remote = 远程组件
|
|
4136
|
+
* @type {string}
|
|
4137
|
+
* @memberof ResolvePageResponseAllOfDataSnapshotManifestComponents
|
|
4138
|
+
*/
|
|
4139
|
+
source?: ResolvePageResponseAllOfDataSnapshotManifestComponentsSourceEnum;
|
|
3679
4140
|
/**
|
|
3680
4141
|
*
|
|
3681
4142
|
* @type {string}
|
|
@@ -3683,7 +4144,7 @@ interface ResolvePageResponseAllOfDataSnapshotManifestComponents {
|
|
|
3683
4144
|
*/
|
|
3684
4145
|
integrity?: string;
|
|
3685
4146
|
/**
|
|
3686
|
-
*
|
|
4147
|
+
* CDN 资源基础 URL(source 为 remote 时必填)
|
|
3687
4148
|
* @type {string}
|
|
3688
4149
|
* @memberof ResolvePageResponseAllOfDataSnapshotManifestComponents
|
|
3689
4150
|
*/
|
|
@@ -3695,6 +4156,14 @@ interface ResolvePageResponseAllOfDataSnapshotManifestComponents {
|
|
|
3695
4156
|
*/
|
|
3696
4157
|
entrypoints?: ResolvePageResponseAllOfDataSnapshotManifestEntrypoints;
|
|
3697
4158
|
}
|
|
4159
|
+
/**
|
|
4160
|
+
* @export
|
|
4161
|
+
*/
|
|
4162
|
+
declare const ResolvePageResponseAllOfDataSnapshotManifestComponentsSourceEnum: {
|
|
4163
|
+
readonly BUNDLED: "bundled";
|
|
4164
|
+
readonly REMOTE: "remote";
|
|
4165
|
+
};
|
|
4166
|
+
type ResolvePageResponseAllOfDataSnapshotManifestComponentsSourceEnum = typeof ResolvePageResponseAllOfDataSnapshotManifestComponentsSourceEnum[keyof typeof ResolvePageResponseAllOfDataSnapshotManifestComponentsSourceEnum];
|
|
3698
4167
|
/**
|
|
3699
4168
|
* Check if a given object implements the ResolvePageResponseAllOfDataSnapshotManifestComponents interface.
|
|
3700
4169
|
*/
|
|
@@ -4107,6 +4576,18 @@ interface ResolvePageResponseAllOfData {
|
|
|
4107
4576
|
* @memberof ResolvePageResponseAllOfData
|
|
4108
4577
|
*/
|
|
4109
4578
|
cacheTtlSeconds: number;
|
|
4579
|
+
/**
|
|
4580
|
+
* 链路追踪 ID(全链路透传,与 types 可观测原则一致)
|
|
4581
|
+
* @type {string}
|
|
4582
|
+
* @memberof ResolvePageResponseAllOfData
|
|
4583
|
+
*/
|
|
4584
|
+
traceId?: string;
|
|
4585
|
+
/**
|
|
4586
|
+
* 运行时版本(SemVer,与 manifest.runtime.version 一致)
|
|
4587
|
+
* @type {string}
|
|
4588
|
+
* @memberof ResolvePageResponseAllOfData
|
|
4589
|
+
*/
|
|
4590
|
+
runtimeVersion?: string;
|
|
4110
4591
|
/**
|
|
4111
4592
|
*
|
|
4112
4593
|
* @type {ResolvePageResponseAllOfDataRolloutMatch}
|
|
@@ -4351,51 +4832,6 @@ declare function ResolveTenantRequestFromJSON(json: any): ResolveTenantRequest;
|
|
|
4351
4832
|
declare function ResolveTenantRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResolveTenantRequest;
|
|
4352
4833
|
declare function ResolveTenantRequestToJSON(value?: ResolveTenantRequest | null): any;
|
|
4353
4834
|
|
|
4354
|
-
/**
|
|
4355
|
-
* DJVLC User API
|
|
4356
|
-
* DJVLC 低代码平台用户端 API(数据面) 提供以下功能: - 页面解析(Page Resolve) - 动作执行(Action Gateway - 统一入口) - 数据查询(Data Proxy - 统一入口) - 活动状态查询 - 埋点上报(Track) - 租户解析(Tenant Resolver) - 健康检查(Health) 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
4357
|
-
*
|
|
4358
|
-
* The version of the OpenAPI document: 1.0.0
|
|
4359
|
-
* Contact: dev@djvlc.com
|
|
4360
|
-
*
|
|
4361
|
-
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4362
|
-
* https://openapi-generator.tech
|
|
4363
|
-
* Do not edit the class manually.
|
|
4364
|
-
*/
|
|
4365
|
-
|
|
4366
|
-
/**
|
|
4367
|
-
*
|
|
4368
|
-
* @export
|
|
4369
|
-
* @interface ResourceManifests
|
|
4370
|
-
*/
|
|
4371
|
-
interface ResourceManifests {
|
|
4372
|
-
/**
|
|
4373
|
-
* 组件资源清单
|
|
4374
|
-
* @type {Array<ComponentManifest>}
|
|
4375
|
-
* @memberof ResourceManifests
|
|
4376
|
-
*/
|
|
4377
|
-
components?: Array<ComponentManifest>;
|
|
4378
|
-
/**
|
|
4379
|
-
* 动作资源清单
|
|
4380
|
-
* @type {Array<ActionManifest>}
|
|
4381
|
-
* @memberof ResourceManifests
|
|
4382
|
-
*/
|
|
4383
|
-
actions?: Array<ActionManifest>;
|
|
4384
|
-
/**
|
|
4385
|
-
* 查询资源清单
|
|
4386
|
-
* @type {Array<QueryManifest>}
|
|
4387
|
-
* @memberof ResourceManifests
|
|
4388
|
-
*/
|
|
4389
|
-
queries?: Array<QueryManifest>;
|
|
4390
|
-
}
|
|
4391
|
-
/**
|
|
4392
|
-
* Check if a given object implements the ResourceManifests interface.
|
|
4393
|
-
*/
|
|
4394
|
-
declare function instanceOfResourceManifests(value: object): boolean;
|
|
4395
|
-
declare function ResourceManifestsFromJSON(json: any): ResourceManifests;
|
|
4396
|
-
declare function ResourceManifestsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResourceManifests;
|
|
4397
|
-
declare function ResourceManifestsToJSON(value?: ResourceManifests | null): any;
|
|
4398
|
-
|
|
4399
4835
|
/**
|
|
4400
4836
|
* DJVLC User API
|
|
4401
4837
|
* DJVLC 低代码平台用户端 API(数据面) 提供以下功能: - 页面解析(Page Resolve) - 动作执行(Action Gateway - 统一入口) - 数据查询(Data Proxy - 统一入口) - 活动状态查询 - 埋点上报(Track) - 租户解析(Tenant Resolver) - 健康检查(Health) 核心原则: - 所有业务动作只走 Action Gateway(鉴权/风控/幂等/审计/签名) - 所有数据访问只走 Data Proxy(白名单/裁剪/脱敏/缓存) - 全链路可追溯:pageVersionId + componentVersionId + actionId + traceId
|
|
@@ -4991,6 +5427,8 @@ declare function ValidateActionResponseToJSON(value?: ValidateActionResponse | n
|
|
|
4991
5427
|
|
|
4992
5428
|
interface ExecuteActionOperationRequest {
|
|
4993
5429
|
executeActionRequest: ExecuteActionRequest;
|
|
5430
|
+
idempotencyKey?: string;
|
|
5431
|
+
xTraceId?: string;
|
|
4994
5432
|
}
|
|
4995
5433
|
interface GetActionDefinitionRequest {
|
|
4996
5434
|
actionDefinitionVersionId: string;
|
|
@@ -5009,6 +5447,8 @@ interface ActionsApiInterface {
|
|
|
5009
5447
|
* 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
5448
|
* @summary 执行动作(统一入口)
|
|
5011
5449
|
* @param {ExecuteActionRequest} executeActionRequest
|
|
5450
|
+
* @param {string} [idempotencyKey] 幂等键(与 body.idempotencyKey 二选一,推荐 header 传递)
|
|
5451
|
+
* @param {string} [xTraceId] 链路追踪 ID(OTel,全链路透传)
|
|
5012
5452
|
* @param {*} [options] Override http request option.
|
|
5013
5453
|
* @throws {RequiredError}
|
|
5014
5454
|
* @memberof ActionsApiInterface
|
|
@@ -5102,11 +5542,18 @@ interface GetActivityInfoRequest {
|
|
|
5102
5542
|
interface GetActivityStateRequest {
|
|
5103
5543
|
activityId: string;
|
|
5104
5544
|
}
|
|
5545
|
+
interface GetActivityStatusRequest {
|
|
5546
|
+
activityId: string;
|
|
5547
|
+
}
|
|
5105
5548
|
interface GetClaimRecordsRequest {
|
|
5106
5549
|
activityId: string;
|
|
5107
5550
|
pageSize?: number;
|
|
5108
5551
|
pageToken?: string;
|
|
5109
5552
|
}
|
|
5553
|
+
interface GetClaimStatusRequest {
|
|
5554
|
+
activityId: string;
|
|
5555
|
+
uid: string;
|
|
5556
|
+
}
|
|
5110
5557
|
interface GetLotteryRecordsRequest {
|
|
5111
5558
|
activityId: string;
|
|
5112
5559
|
pageSize?: number;
|
|
@@ -5116,6 +5563,10 @@ interface GetSigninCalendarRequest {
|
|
|
5116
5563
|
activityId: string;
|
|
5117
5564
|
month?: string;
|
|
5118
5565
|
}
|
|
5566
|
+
interface GetSigninStatusRequest {
|
|
5567
|
+
activityId: string;
|
|
5568
|
+
uid: string;
|
|
5569
|
+
}
|
|
5119
5570
|
/**
|
|
5120
5571
|
* ActivitiesApi - interface
|
|
5121
5572
|
*
|
|
@@ -5151,6 +5602,20 @@ interface ActivitiesApiInterface {
|
|
|
5151
5602
|
* 获取用户活动状态
|
|
5152
5603
|
*/
|
|
5153
5604
|
getActivityState(requestParameters: GetActivityStateRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetActivityState200Response>;
|
|
5605
|
+
/**
|
|
5606
|
+
* 获取活动的当前状态信息,包括是否进行中、时间范围等。 不需要登录,可用于前端判断活动是否在有效期内。
|
|
5607
|
+
* @summary 获取活动状态(兼容)
|
|
5608
|
+
* @param {string} activityId
|
|
5609
|
+
* @param {*} [options] Override http request option.
|
|
5610
|
+
* @throws {RequiredError}
|
|
5611
|
+
* @memberof ActivitiesApiInterface
|
|
5612
|
+
*/
|
|
5613
|
+
getActivityStatusRaw(requestParameters: GetActivityStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetActivityStatus200Response>>;
|
|
5614
|
+
/**
|
|
5615
|
+
* 获取活动的当前状态信息,包括是否进行中、时间范围等。 不需要登录,可用于前端判断活动是否在有效期内。
|
|
5616
|
+
* 获取活动状态(兼容)
|
|
5617
|
+
*/
|
|
5618
|
+
getActivityStatus(requestParameters: GetActivityStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetActivityStatus200Response>;
|
|
5154
5619
|
/**
|
|
5155
5620
|
* 获取用户在指定活动中的领取记录
|
|
5156
5621
|
* @summary 获取领取记录
|
|
@@ -5167,6 +5632,21 @@ interface ActivitiesApiInterface {
|
|
|
5167
5632
|
* 获取领取记录
|
|
5168
5633
|
*/
|
|
5169
5634
|
getClaimRecords(requestParameters: GetClaimRecordsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetClaimRecords200Response>;
|
|
5635
|
+
/**
|
|
5636
|
+
* 获取用户在指定活动中的领取状态
|
|
5637
|
+
* @summary 获取领取状态
|
|
5638
|
+
* @param {string} activityId
|
|
5639
|
+
* @param {string} uid 用户 UID
|
|
5640
|
+
* @param {*} [options] Override http request option.
|
|
5641
|
+
* @throws {RequiredError}
|
|
5642
|
+
* @memberof ActivitiesApiInterface
|
|
5643
|
+
*/
|
|
5644
|
+
getClaimStatusRaw(requestParameters: GetClaimStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetClaimStatus200Response>>;
|
|
5645
|
+
/**
|
|
5646
|
+
* 获取用户在指定活动中的领取状态
|
|
5647
|
+
* 获取领取状态
|
|
5648
|
+
*/
|
|
5649
|
+
getClaimStatus(requestParameters: GetClaimStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetClaimStatus200Response>;
|
|
5170
5650
|
/**
|
|
5171
5651
|
* 获取用户在指定活动中的抽奖记录
|
|
5172
5652
|
* @summary 获取抽奖记录
|
|
@@ -5198,6 +5678,21 @@ interface ActivitiesApiInterface {
|
|
|
5198
5678
|
* 获取签到日历
|
|
5199
5679
|
*/
|
|
5200
5680
|
getSigninCalendar(requestParameters: GetSigninCalendarRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetSigninCalendar200Response>;
|
|
5681
|
+
/**
|
|
5682
|
+
* 获取用户在指定活动中的签到状态
|
|
5683
|
+
* @summary 获取签到状态
|
|
5684
|
+
* @param {string} activityId
|
|
5685
|
+
* @param {string} uid 用户 UID
|
|
5686
|
+
* @param {*} [options] Override http request option.
|
|
5687
|
+
* @throws {RequiredError}
|
|
5688
|
+
* @memberof ActivitiesApiInterface
|
|
5689
|
+
*/
|
|
5690
|
+
getSigninStatusRaw(requestParameters: GetSigninStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetSigninStatus200Response>>;
|
|
5691
|
+
/**
|
|
5692
|
+
* 获取用户在指定活动中的签到状态
|
|
5693
|
+
* 获取签到状态
|
|
5694
|
+
*/
|
|
5695
|
+
getSigninStatus(requestParameters: GetSigninStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetSigninStatus200Response>;
|
|
5201
5696
|
}
|
|
5202
5697
|
/**
|
|
5203
5698
|
*
|
|
@@ -5223,6 +5718,16 @@ declare class ActivitiesApi extends BaseAPI implements ActivitiesApiInterface {
|
|
|
5223
5718
|
* 获取用户活动状态
|
|
5224
5719
|
*/
|
|
5225
5720
|
getActivityState(requestParameters: GetActivityStateRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetActivityState200Response>;
|
|
5721
|
+
/**
|
|
5722
|
+
* 获取活动的当前状态信息,包括是否进行中、时间范围等。 不需要登录,可用于前端判断活动是否在有效期内。
|
|
5723
|
+
* 获取活动状态(兼容)
|
|
5724
|
+
*/
|
|
5725
|
+
getActivityStatusRaw(requestParameters: GetActivityStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetActivityStatus200Response>>;
|
|
5726
|
+
/**
|
|
5727
|
+
* 获取活动的当前状态信息,包括是否进行中、时间范围等。 不需要登录,可用于前端判断活动是否在有效期内。
|
|
5728
|
+
* 获取活动状态(兼容)
|
|
5729
|
+
*/
|
|
5730
|
+
getActivityStatus(requestParameters: GetActivityStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetActivityStatus200Response>;
|
|
5226
5731
|
/**
|
|
5227
5732
|
* 获取用户在指定活动中的领取记录
|
|
5228
5733
|
* 获取领取记录
|
|
@@ -5233,6 +5738,16 @@ declare class ActivitiesApi extends BaseAPI implements ActivitiesApiInterface {
|
|
|
5233
5738
|
* 获取领取记录
|
|
5234
5739
|
*/
|
|
5235
5740
|
getClaimRecords(requestParameters: GetClaimRecordsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetClaimRecords200Response>;
|
|
5741
|
+
/**
|
|
5742
|
+
* 获取用户在指定活动中的领取状态
|
|
5743
|
+
* 获取领取状态
|
|
5744
|
+
*/
|
|
5745
|
+
getClaimStatusRaw(requestParameters: GetClaimStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetClaimStatus200Response>>;
|
|
5746
|
+
/**
|
|
5747
|
+
* 获取用户在指定活动中的领取状态
|
|
5748
|
+
* 获取领取状态
|
|
5749
|
+
*/
|
|
5750
|
+
getClaimStatus(requestParameters: GetClaimStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetClaimStatus200Response>;
|
|
5236
5751
|
/**
|
|
5237
5752
|
* 获取用户在指定活动中的抽奖记录
|
|
5238
5753
|
* 获取抽奖记录
|
|
@@ -5253,6 +5768,16 @@ declare class ActivitiesApi extends BaseAPI implements ActivitiesApiInterface {
|
|
|
5253
5768
|
* 获取签到日历
|
|
5254
5769
|
*/
|
|
5255
5770
|
getSigninCalendar(requestParameters: GetSigninCalendarRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetSigninCalendar200Response>;
|
|
5771
|
+
/**
|
|
5772
|
+
* 获取用户在指定活动中的签到状态
|
|
5773
|
+
* 获取签到状态
|
|
5774
|
+
*/
|
|
5775
|
+
getSigninStatusRaw(requestParameters: GetSigninStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetSigninStatus200Response>>;
|
|
5776
|
+
/**
|
|
5777
|
+
* 获取用户在指定活动中的签到状态
|
|
5778
|
+
* 获取签到状态
|
|
5779
|
+
*/
|
|
5780
|
+
getSigninStatus(requestParameters: GetSigninStatusRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetSigninStatus200Response>;
|
|
5256
5781
|
}
|
|
5257
5782
|
|
|
5258
5783
|
/**
|
|
@@ -5362,8 +5887,18 @@ declare class HealthApi extends BaseAPI implements HealthApiInterface {
|
|
|
5362
5887
|
* Do not edit the class manually.
|
|
5363
5888
|
*/
|
|
5364
5889
|
|
|
5890
|
+
interface GetPageConfigRequest {
|
|
5891
|
+
xTraceId?: string;
|
|
5892
|
+
env?: GetPageConfigEnvEnum;
|
|
5893
|
+
}
|
|
5894
|
+
interface GetPageManifestRequest {
|
|
5895
|
+
pageId: string;
|
|
5896
|
+
xTraceId?: string;
|
|
5897
|
+
env?: GetPageManifestEnvEnum;
|
|
5898
|
+
}
|
|
5365
5899
|
interface ResolvePageRequest {
|
|
5366
5900
|
pageId: string;
|
|
5901
|
+
xTraceId?: string;
|
|
5367
5902
|
env?: ResolvePageEnvEnum;
|
|
5368
5903
|
uid?: string;
|
|
5369
5904
|
deviceId?: string;
|
|
@@ -5377,10 +5912,42 @@ interface ResolvePageRequest {
|
|
|
5377
5912
|
* @interface PagesApiInterface
|
|
5378
5913
|
*/
|
|
5379
5914
|
interface PagesApiInterface {
|
|
5915
|
+
/**
|
|
5916
|
+
* 返回当前运维配置(killSwitch、blockedComponents、featureFlags 等)。 用途: - Runtime 启动时获取全局运维配置 - 判断是否有组件被阻断或功能被关闭
|
|
5917
|
+
* @summary 获取运维配置
|
|
5918
|
+
* @param {string} [xTraceId] 链路追踪 ID(OTel,全链路透传)
|
|
5919
|
+
* @param {'prod' | 'preview' | 'staging'} [env] 环境(prod/preview/staging)
|
|
5920
|
+
* @param {*} [options] Override http request option.
|
|
5921
|
+
* @throws {RequiredError}
|
|
5922
|
+
* @memberof PagesApiInterface
|
|
5923
|
+
*/
|
|
5924
|
+
getPageConfigRaw(requestParameters: GetPageConfigRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetPageConfig200Response>>;
|
|
5925
|
+
/**
|
|
5926
|
+
* 返回当前运维配置(killSwitch、blockedComponents、featureFlags 等)。 用途: - Runtime 启动时获取全局运维配置 - 判断是否有组件被阻断或功能被关闭
|
|
5927
|
+
* 获取运维配置
|
|
5928
|
+
*/
|
|
5929
|
+
getPageConfig(requestParameters: GetPageConfigRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetPageConfig200Response>;
|
|
5930
|
+
/**
|
|
5931
|
+
* 返回页面的组件锁定清单(manifest),包含所有引用的组件版本和资源信息。 用途: - Runtime 根据 manifest 预加载组件资源 - Editor 根据 manifest 展示组件依赖
|
|
5932
|
+
* @summary 获取组件清单
|
|
5933
|
+
* @param {string} pageId 页面 ID
|
|
5934
|
+
* @param {string} [xTraceId] 链路追踪 ID(OTel,全链路透传)
|
|
5935
|
+
* @param {'prod' | 'preview' | 'staging'} [env] 环境(prod/preview/staging)
|
|
5936
|
+
* @param {*} [options] Override http request option.
|
|
5937
|
+
* @throws {RequiredError}
|
|
5938
|
+
* @memberof PagesApiInterface
|
|
5939
|
+
*/
|
|
5940
|
+
getPageManifestRaw(requestParameters: GetPageManifestRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetPageManifest200Response>>;
|
|
5941
|
+
/**
|
|
5942
|
+
* 返回页面的组件锁定清单(manifest),包含所有引用的组件版本和资源信息。 用途: - Runtime 根据 manifest 预加载组件资源 - Editor 根据 manifest 展示组件依赖
|
|
5943
|
+
* 获取组件清单
|
|
5944
|
+
*/
|
|
5945
|
+
getPageManifest(requestParameters: GetPageManifestRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetPageManifest200Response>;
|
|
5380
5946
|
/**
|
|
5381
5947
|
* 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
5948
|
* @summary 解析页面(Runtime 核心接口)
|
|
5383
5949
|
* @param {string} pageId 页面 ID
|
|
5950
|
+
* @param {string} [xTraceId] 链路追踪 ID(OTel,全链路透传)
|
|
5384
5951
|
* @param {'prod' | 'preview' | 'staging'} [env] 环境(prod/preview/staging)
|
|
5385
5952
|
* @param {string} [uid] 用户 ID(用于灰度路由)
|
|
5386
5953
|
* @param {string} [deviceId] 设备 ID
|
|
@@ -5401,6 +5968,26 @@ interface PagesApiInterface {
|
|
|
5401
5968
|
*
|
|
5402
5969
|
*/
|
|
5403
5970
|
declare class PagesApi extends BaseAPI implements PagesApiInterface {
|
|
5971
|
+
/**
|
|
5972
|
+
* 返回当前运维配置(killSwitch、blockedComponents、featureFlags 等)。 用途: - Runtime 启动时获取全局运维配置 - 判断是否有组件被阻断或功能被关闭
|
|
5973
|
+
* 获取运维配置
|
|
5974
|
+
*/
|
|
5975
|
+
getPageConfigRaw(requestParameters: GetPageConfigRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetPageConfig200Response>>;
|
|
5976
|
+
/**
|
|
5977
|
+
* 返回当前运维配置(killSwitch、blockedComponents、featureFlags 等)。 用途: - Runtime 启动时获取全局运维配置 - 判断是否有组件被阻断或功能被关闭
|
|
5978
|
+
* 获取运维配置
|
|
5979
|
+
*/
|
|
5980
|
+
getPageConfig(requestParameters?: GetPageConfigRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetPageConfig200Response>;
|
|
5981
|
+
/**
|
|
5982
|
+
* 返回页面的组件锁定清单(manifest),包含所有引用的组件版本和资源信息。 用途: - Runtime 根据 manifest 预加载组件资源 - Editor 根据 manifest 展示组件依赖
|
|
5983
|
+
* 获取组件清单
|
|
5984
|
+
*/
|
|
5985
|
+
getPageManifestRaw(requestParameters: GetPageManifestRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetPageManifest200Response>>;
|
|
5986
|
+
/**
|
|
5987
|
+
* 返回页面的组件锁定清单(manifest),包含所有引用的组件版本和资源信息。 用途: - Runtime 根据 manifest 预加载组件资源 - Editor 根据 manifest 展示组件依赖
|
|
5988
|
+
* 获取组件清单
|
|
5989
|
+
*/
|
|
5990
|
+
getPageManifest(requestParameters: GetPageManifestRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetPageManifest200Response>;
|
|
5404
5991
|
/**
|
|
5405
5992
|
* 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 时返回)
|
|
5406
5993
|
* 解析页面(Runtime 核心接口)
|
|
@@ -5412,6 +5999,24 @@ declare class PagesApi extends BaseAPI implements PagesApiInterface {
|
|
|
5412
5999
|
*/
|
|
5413
6000
|
resolvePage(requestParameters: ResolvePageRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ResolvePageResponse>;
|
|
5414
6001
|
}
|
|
6002
|
+
/**
|
|
6003
|
+
* @export
|
|
6004
|
+
*/
|
|
6005
|
+
declare const GetPageConfigEnvEnum: {
|
|
6006
|
+
readonly PROD: "prod";
|
|
6007
|
+
readonly PREVIEW: "preview";
|
|
6008
|
+
readonly STAGING: "staging";
|
|
6009
|
+
};
|
|
6010
|
+
type GetPageConfigEnvEnum = typeof GetPageConfigEnvEnum[keyof typeof GetPageConfigEnvEnum];
|
|
6011
|
+
/**
|
|
6012
|
+
* @export
|
|
6013
|
+
*/
|
|
6014
|
+
declare const GetPageManifestEnvEnum: {
|
|
6015
|
+
readonly PROD: "prod";
|
|
6016
|
+
readonly PREVIEW: "preview";
|
|
6017
|
+
readonly STAGING: "staging";
|
|
6018
|
+
};
|
|
6019
|
+
type GetPageManifestEnvEnum = typeof GetPageManifestEnvEnum[keyof typeof GetPageManifestEnvEnum];
|
|
5415
6020
|
/**
|
|
5416
6021
|
* @export
|
|
5417
6022
|
*/
|
|
@@ -5791,4 +6396,4 @@ declare function createUserConfiguration(config?: UserClientConfig): Configurati
|
|
|
5791
6396
|
/** 客户端版本 */
|
|
5792
6397
|
declare const VERSION = "1.0.0";
|
|
5793
6398
|
|
|
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 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 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, 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, 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 };
|
|
6399
|
+
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, type ActivityStatus, ActivityStatusFromJSON, ActivityStatusFromJSONTyped, ActivityStatusToJSON, ActivityStatusTypeEnum, 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, ComponentManifestSourceEnum, 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 GetActivityStatus200Response, GetActivityStatus200ResponseFromJSON, GetActivityStatus200ResponseFromJSONTyped, GetActivityStatus200ResponseToJSON, type GetClaimRecords200Response, GetClaimRecords200ResponseFromJSON, GetClaimRecords200ResponseFromJSONTyped, GetClaimRecords200ResponseToJSON, type GetClaimStatus200Response, GetClaimStatus200ResponseFromJSON, GetClaimStatus200ResponseFromJSONTyped, GetClaimStatus200ResponseToJSON, type GetLotteryRecords200Response, GetLotteryRecords200ResponseFromJSON, GetLotteryRecords200ResponseFromJSONTyped, GetLotteryRecords200ResponseToJSON, type GetPageConfig200Response, GetPageConfig200ResponseFromJSON, GetPageConfig200ResponseFromJSONTyped, GetPageConfig200ResponseToJSON, type GetPageManifest200Response, GetPageManifest200ResponseFromJSON, GetPageManifest200ResponseFromJSONTyped, GetPageManifest200ResponseToJSON, type GetSigninCalendar200Response, GetSigninCalendar200ResponseFromJSON, GetSigninCalendar200ResponseFromJSONTyped, GetSigninCalendar200ResponseToJSON, type GetSigninStatus200Response, GetSigninStatus200ResponseFromJSON, GetSigninStatus200ResponseFromJSONTyped, GetSigninStatus200ResponseToJSON, 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, ResolvePageResponseAllOfDataSnapshotManifestComponentsSourceEnum, 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, instanceOfActivityStatus, instanceOfBatchQueryRequest, instanceOfBatchQueryRequestQueriesInner, instanceOfBatchQueryResponse, instanceOfBatchQueryResponseDataValue, instanceOfBatchQueryResponseDataValueError, instanceOfBlockedComponentItem, instanceOfClaimRecordInfo, instanceOfComponentManifest, instanceOfErrorResponse, instanceOfExecuteActionRequest, instanceOfExecuteActionResponse, instanceOfExecuteActionResponseAllOfData, instanceOfExecuteActionResponseAllOfDataRiskDecision, instanceOfGetActivityInfo200Response, instanceOfGetActivityState200Response, instanceOfGetActivityStatus200Response, instanceOfGetClaimRecords200Response, instanceOfGetClaimStatus200Response, instanceOfGetLotteryRecords200Response, instanceOfGetPageConfig200Response, instanceOfGetPageManifest200Response, instanceOfGetSigninCalendar200Response, instanceOfGetSigninStatus200Response, 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 };
|