@djvlc/openapi-user-client 1.5.0 → 1.6.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.ts CHANGED
@@ -1,44 +1,87 @@
1
- import { BaseClientOptions, Configuration as Configuration$1 } from '@djvlc/openapi-client-core';
2
- export { AbortError, Configuration, DjvApiError, Interceptors, Logger, Middleware, NetworkError, RequestOptions, RetryOptions, TimeoutError, createConsoleLogger, createSilentLogger, isRetryableError } from '@djvlc/openapi-client-core';
1
+ import * as axios from 'axios';
2
+ import { AxiosInstance, RawAxiosRequestConfig } from 'axios';
3
+ import { AuthConfig, RetryConfig } from '@djvlc/openapi-client-core';
4
+ export { AuthConfig, RetryConfig } from '@djvlc/openapi-client-core';
3
5
 
6
+ /**
7
+ * DJVLC User API
8
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
9
+ *
10
+ * The version of the OpenAPI document: 1.0.0
11
+ * Contact: dev@djvlc.com
12
+ *
13
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
14
+ * https://openapi-generator.tech
15
+ * Do not edit the class manually.
16
+ */
4
17
  interface ConfigurationParameters {
5
- basePath?: string;
6
- fetchApi?: FetchAPI;
7
- middleware?: Middleware[];
8
- queryParamsStringify?: (params: HTTPQuery) => string;
18
+ apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
9
19
  username?: string;
10
20
  password?: string;
11
- apiKey?: string | Promise<string> | ((name: string) => string | Promise<string>);
12
- accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string | Promise<string>);
13
- headers?: HTTPHeaders;
14
- credentials?: RequestCredentials;
21
+ accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
22
+ basePath?: string;
23
+ serverIndex?: number;
24
+ baseOptions?: any;
25
+ formDataCtor?: new () => any;
15
26
  }
16
27
  declare class Configuration {
17
- private configuration;
18
- constructor(configuration?: ConfigurationParameters);
19
- set config(configuration: Configuration);
20
- get basePath(): string;
21
- get fetchApi(): FetchAPI | undefined;
22
- get middleware(): Middleware[];
23
- get queryParamsStringify(): (params: HTTPQuery) => string;
24
- get username(): string | undefined;
25
- get password(): string | undefined;
26
- get apiKey(): ((name: string) => string | Promise<string>) | undefined;
27
- get accessToken(): ((name?: string, scopes?: string[]) => string | Promise<string>) | undefined;
28
- get headers(): HTTPHeaders | undefined;
29
- get credentials(): RequestCredentials | undefined;
30
- }
31
- /**
32
- * This is the base class for all generated API classes.
33
- */
34
- declare class BaseAPI {
35
- protected configuration: Configuration;
36
- private static readonly jsonRegex;
37
- private middleware;
38
- constructor(configuration?: Configuration);
39
- withMiddleware<T extends BaseAPI>(this: T, ...middlewares: Middleware[]): T;
40
- withPreMiddleware<T extends BaseAPI>(this: T, ...preMiddlewares: Array<Middleware['pre']>): T;
41
- withPostMiddleware<T extends BaseAPI>(this: T, ...postMiddlewares: Array<Middleware['post']>): T;
28
+ /**
29
+ * parameter for apiKey security
30
+ * @param name security name
31
+ * @memberof Configuration
32
+ */
33
+ apiKey?: string | Promise<string> | ((name: string) => string) | ((name: string) => Promise<string>);
34
+ /**
35
+ * parameter for basic security
36
+ *
37
+ * @type {string}
38
+ * @memberof Configuration
39
+ */
40
+ username?: string;
41
+ /**
42
+ * parameter for basic security
43
+ *
44
+ * @type {string}
45
+ * @memberof Configuration
46
+ */
47
+ password?: string;
48
+ /**
49
+ * parameter for oauth2 security
50
+ * @param name security name
51
+ * @param scopes oauth2 scope
52
+ * @memberof Configuration
53
+ */
54
+ accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string) | ((name?: string, scopes?: string[]) => Promise<string>);
55
+ /**
56
+ * override base path
57
+ *
58
+ * @type {string}
59
+ * @memberof Configuration
60
+ */
61
+ basePath?: string;
62
+ /**
63
+ * override server index
64
+ *
65
+ * @type {number}
66
+ * @memberof Configuration
67
+ */
68
+ serverIndex?: number;
69
+ /**
70
+ * base options for axios calls
71
+ *
72
+ * @type {any}
73
+ * @memberof Configuration
74
+ */
75
+ baseOptions?: any;
76
+ /**
77
+ * The FormData constructor that will be used to create multipart form data
78
+ * requests. You can inject this here so that execution environments that
79
+ * do not support the FormData class can still run the generated client.
80
+ *
81
+ * @type {new () => FormData}
82
+ */
83
+ formDataCtor?: new () => any;
84
+ constructor(param?: ConfigurationParameters);
42
85
  /**
43
86
  * Check if the given MIME is a JSON MIME.
44
87
  * JSON MIME examples:
@@ -49,417 +92,320 @@ declare class BaseAPI {
49
92
  * @param mime - MIME (Multipurpose Internet Mail Extensions)
50
93
  * @return True if the given MIME is JSON, false otherwise.
51
94
  */
52
- protected isJsonMime(mime: string | null | undefined): boolean;
53
- protected request(context: RequestOpts, initOverrides?: RequestInit | InitOverrideFunction): Promise<Response>;
54
- private createFetchParams;
55
- private fetchApi;
56
- /**
57
- * Create a shallow clone of `this` by constructing a new instance
58
- * and then shallow cloning data members.
59
- */
60
- private clone;
61
- }
62
- type FetchAPI = WindowOrWorkerGlobalScope['fetch'];
63
- type Json = any;
64
- type HTTPMethod = 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE' | 'OPTIONS' | 'HEAD';
65
- type HTTPHeaders = {
66
- [key: string]: string;
67
- };
68
- type HTTPQuery = {
69
- [key: string]: string | number | null | boolean | Array<string | number | null | boolean> | Set<string | number | null | boolean> | HTTPQuery;
70
- };
71
- type HTTPBody = Json | FormData | URLSearchParams;
72
- type HTTPRequestInit = {
73
- headers?: HTTPHeaders;
74
- method: HTTPMethod;
75
- credentials?: RequestCredentials;
76
- body?: HTTPBody;
77
- };
78
- type InitOverrideFunction = (requestContext: {
79
- init: HTTPRequestInit;
80
- context: RequestOpts;
81
- }) => Promise<RequestInit>;
82
- interface FetchParams {
83
- url: string;
84
- init: RequestInit;
95
+ isJsonMime(mime: string): boolean;
85
96
  }
86
- interface RequestOpts {
87
- path: string;
88
- method: HTTPMethod;
89
- headers: HTTPHeaders;
90
- query?: HTTPQuery;
91
- body?: HTTPBody;
92
- }
93
- interface RequestContext {
94
- fetch: FetchAPI;
95
- url: string;
96
- init: RequestInit;
97
- }
98
- interface ResponseContext {
99
- fetch: FetchAPI;
100
- url: string;
101
- init: RequestInit;
102
- response: Response;
103
- }
104
- interface ErrorContext {
105
- fetch: FetchAPI;
106
- url: string;
107
- init: RequestInit;
108
- error: unknown;
109
- response?: Response;
110
- }
111
- interface Middleware {
112
- pre?(context: RequestContext): Promise<FetchParams | void>;
113
- post?(context: ResponseContext): Promise<Response | void>;
114
- onError?(context: ErrorContext): Promise<Response | void>;
115
- }
116
- interface ApiResponse<T> {
117
- raw: Response;
118
- value(): Promise<T>;
97
+
98
+ /**
99
+ * DJVLC User API
100
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
101
+ *
102
+ * The version of the OpenAPI document: 1.0.0
103
+ * Contact: dev@djvlc.com
104
+ *
105
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
106
+ * https://openapi-generator.tech
107
+ * Do not edit the class manually.
108
+ */
109
+
110
+ /**
111
+ *
112
+ * @export
113
+ * @class BaseAPI
114
+ */
115
+ declare class BaseAPI {
116
+ protected basePath: string;
117
+ protected axios: AxiosInstance;
118
+ protected configuration: Configuration | undefined;
119
+ constructor(configuration?: Configuration, basePath?: string, axios?: AxiosInstance);
119
120
  }
120
121
 
121
122
  /**
122
- * DJV Low-code Platform - User API
123
- * DJV 低代码平台用户端 API(数据面),用于: - 页面解析(Page Resolve) - 动作执行(Action Gateway) - 数据查询(Data Proxy) - 埋点上报(Track) - 活动状态查询
123
+ * DJVLC User API
124
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
124
125
  *
125
126
  * The version of the OpenAPI document: 1.0.0
126
- * Contact: djv@example.com
127
+ * Contact: dev@djvlc.com
127
128
  *
128
129
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
129
130
  * https://openapi-generator.tech
130
131
  * Do not edit the class manually.
131
132
  */
132
133
  /**
133
- * Action 执行上下文
134
+ * 动作执行上下文
134
135
  * @export
135
136
  * @interface ActionContext
136
137
  */
137
138
  interface ActionContext {
138
139
  /**
139
- * 页面版本 ID
140
- * @type {string}
141
- * @memberof ActionContext
142
- */
143
- pageVersionId?: string;
144
- /**
145
- * 触发组件版本
146
- * @type {string}
147
- * @memberof ActionContext
148
- */
149
- componentVersion?: string;
150
- /**
151
- * 用户 ID
152
- * @type {string}
153
- * @memberof ActionContext
154
- */
155
- uid?: string;
156
- /**
157
- * 设备 ID
140
+ * 页面 ID
158
141
  * @type {string}
159
142
  * @memberof ActionContext
160
143
  */
161
- deviceId?: string;
144
+ 'pageId'?: string;
162
145
  /**
163
- * 渠道
146
+ * 触发组件 ID
164
147
  * @type {string}
165
148
  * @memberof ActionContext
166
149
  */
167
- channel?: string;
150
+ 'componentId'?: string;
168
151
  /**
169
- * 追踪 ID
152
+ * 触发事件名
170
153
  * @type {string}
171
154
  * @memberof ActionContext
172
155
  */
173
- traceId?: string;
156
+ 'eventName'?: string;
174
157
  /**
175
- * 扩展字段
158
+ * 当前页面状态
176
159
  * @type {{ [key: string]: any; }}
177
160
  * @memberof ActionContext
178
161
  */
179
- extra?: {
162
+ 'state'?: {
180
163
  [key: string]: any;
181
164
  };
182
165
  }
183
- /**
184
- * Check if a given object implements the ActionContext interface.
185
- */
186
- declare function instanceOfActionContext(value: object): value is ActionContext;
187
- declare function ActionContextFromJSON(json: any): ActionContext;
188
- declare function ActionContextFromJSONTyped(json: any, ignoreDiscriminator: boolean): ActionContext;
189
- declare function ActionContextToJSON(json: any): ActionContext;
190
- declare function ActionContextToJSONTyped(value?: ActionContext | null, ignoreDiscriminator?: boolean): any;
191
166
 
192
167
  /**
193
- * DJV Low-code Platform - User API
194
- * DJV 低代码平台用户端 API(数据面),用于: - 页面解析(Page Resolve) - 动作执行(Action Gateway) - 数据查询(Data Proxy) - 埋点上报(Track) - 活动状态查询
168
+ * DJVLC User API
169
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
195
170
  *
196
171
  * The version of the OpenAPI document: 1.0.0
197
- * Contact: djv@example.com
172
+ * Contact: dev@djvlc.com
198
173
  *
199
174
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
200
175
  * https://openapi-generator.tech
201
176
  * Do not edit the class manually.
202
177
  */
203
-
204
178
  /**
205
- * Action 执行请求
179
+ *
206
180
  * @export
207
- * @interface ActionExecuteRequest
181
+ * @interface ActionEffect
208
182
  */
209
- interface ActionExecuteRequest {
183
+ interface ActionEffect {
210
184
  /**
211
- * 动作类型
185
+ * 副作用类型
212
186
  * @type {string}
213
- * @memberof ActionExecuteRequest
187
+ * @memberof ActionEffect
214
188
  */
215
- actionType: string;
189
+ 'type': ActionEffectTypeEnum;
216
190
  /**
217
- * 动作参数
191
+ * 副作用参数
218
192
  * @type {{ [key: string]: any; }}
219
- * @memberof ActionExecuteRequest
193
+ * @memberof ActionEffect
220
194
  */
221
- params: {
195
+ 'payload'?: {
222
196
  [key: string]: any;
223
197
  };
224
- /**
225
- *
226
- * @type {ActionContext}
227
- * @memberof ActionExecuteRequest
228
- */
229
- context: ActionContext;
230
- /**
231
- * 幂等键(防重复提交)
232
- * @type {string}
233
- * @memberof ActionExecuteRequest
234
- */
235
- idempotencyKey?: string;
236
198
  }
237
- /**
238
- * Check if a given object implements the ActionExecuteRequest interface.
239
- */
240
- declare function instanceOfActionExecuteRequest(value: object): value is ActionExecuteRequest;
241
- declare function ActionExecuteRequestFromJSON(json: any): ActionExecuteRequest;
242
- declare function ActionExecuteRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ActionExecuteRequest;
243
- declare function ActionExecuteRequestToJSON(json: any): ActionExecuteRequest;
244
- declare function ActionExecuteRequestToJSONTyped(value?: ActionExecuteRequest | null, ignoreDiscriminator?: boolean): any;
199
+ declare const ActionEffectTypeEnum: {
200
+ readonly SET_STATE: "setState";
201
+ readonly NAVIGATE: "navigate";
202
+ readonly SHOW_TOAST: "showToast";
203
+ readonly REFRESH_DATA: "refreshData";
204
+ readonly CUSTOM: "custom";
205
+ };
206
+ type ActionEffectTypeEnum = typeof ActionEffectTypeEnum[keyof typeof ActionEffectTypeEnum];
245
207
 
246
208
  /**
247
- * DJV Low-code Platform - User API
248
- * DJV 低代码平台用户端 API(数据面),用于: - 页面解析(Page Resolve) - 动作执行(Action Gateway) - 数据查询(Data Proxy) - 埋点上报(Track) - 活动状态查询
209
+ * DJVLC User API
210
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
249
211
  *
250
212
  * The version of the OpenAPI document: 1.0.0
251
- * Contact: djv@example.com
213
+ * Contact: dev@djvlc.com
252
214
  *
253
215
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
254
216
  * https://openapi-generator.tech
255
217
  * Do not edit the class manually.
256
218
  */
257
219
  /**
258
- * Action 执行响应
220
+ *
259
221
  * @export
260
- * @interface ActionExecuteResponse
222
+ * @interface ActionManifest
261
223
  */
262
- interface ActionExecuteResponse {
263
- /**
264
- * 是否成功
265
- * @type {boolean}
266
- * @memberof ActionExecuteResponse
267
- */
268
- success: boolean;
269
- /**
270
- * 响应数据(类型由 actionType 决定)
271
- * @type {any}
272
- * @memberof ActionExecuteResponse
273
- */
274
- data?: any | null;
224
+ interface ActionManifest {
275
225
  /**
276
- * 业务错误码
277
- * @type {number}
278
- * @memberof ActionExecuteResponse
226
+ * 动作 ID
227
+ * @type {string}
228
+ * @memberof ActionManifest
279
229
  */
280
- code?: number;
230
+ 'actionId': string;
281
231
  /**
282
- * 错误信息
232
+ * 动作版本
283
233
  * @type {string}
284
- * @memberof ActionExecuteResponse
234
+ * @memberof ActionManifest
285
235
  */
286
- message?: string;
236
+ 'version': string;
287
237
  /**
288
- * 追踪 ID
238
+ * 动作类型
289
239
  * @type {string}
290
- * @memberof ActionExecuteResponse
240
+ * @memberof ActionManifest
291
241
  */
292
- traceId?: string;
242
+ 'type'?: ActionManifestTypeEnum;
293
243
  }
294
- /**
295
- * Check if a given object implements the ActionExecuteResponse interface.
296
- */
297
- declare function instanceOfActionExecuteResponse(value: object): value is ActionExecuteResponse;
298
- declare function ActionExecuteResponseFromJSON(json: any): ActionExecuteResponse;
299
- declare function ActionExecuteResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ActionExecuteResponse;
300
- declare function ActionExecuteResponseToJSON(json: any): ActionExecuteResponse;
301
- declare function ActionExecuteResponseToJSONTyped(value?: ActionExecuteResponse | null, ignoreDiscriminator?: boolean): any;
244
+ declare const ActionManifestTypeEnum: {
245
+ readonly BUILTIN: "builtin";
246
+ readonly CUSTOM: "custom";
247
+ };
248
+ type ActionManifestTypeEnum = typeof ActionManifestTypeEnum[keyof typeof ActionManifestTypeEnum];
302
249
 
303
250
  /**
304
- * DJV Low-code Platform - User API
305
- * DJV 低代码平台用户端 API(数据面),用于: - 页面解析(Page Resolve) - 动作执行(Action Gateway) - 数据查询(Data Proxy) - 埋点上报(Track) - 活动状态查询
251
+ * DJVLC User API
252
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
306
253
  *
307
254
  * The version of the OpenAPI document: 1.0.0
308
- * Contact: djv@example.com
255
+ * Contact: dev@djvlc.com
309
256
  *
310
257
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
311
258
  * https://openapi-generator.tech
312
259
  * Do not edit the class manually.
313
260
  */
314
261
  /**
315
- * 任务进度(任务类活动)
262
+ *
316
263
  * @export
317
- * @interface UserActivityStateProgress
264
+ * @interface ClaimRecordInfo
318
265
  */
319
- interface UserActivityStateProgress {
266
+ interface ClaimRecordInfo {
320
267
  /**
321
- *
322
- * @type {number}
323
- * @memberof UserActivityStateProgress
268
+ * 记录 ID
269
+ * @type {string}
270
+ * @memberof ClaimRecordInfo
324
271
  */
325
- current?: number;
272
+ 'id': string;
326
273
  /**
327
- *
328
- * @type {number}
329
- * @memberof UserActivityStateProgress
274
+ * 活动 ID
275
+ * @type {string}
276
+ * @memberof ClaimRecordInfo
330
277
  */
331
- target?: number;
278
+ 'activityId'?: string;
332
279
  /**
333
- *
280
+ * 奖励类型
281
+ * @type {string}
282
+ * @memberof ClaimRecordInfo
283
+ */
284
+ 'rewardType': string;
285
+ /**
286
+ * 奖励名称
287
+ * @type {string}
288
+ * @memberof ClaimRecordInfo
289
+ */
290
+ 'rewardName'?: string;
291
+ /**
292
+ * 奖励值
334
293
  * @type {number}
335
- * @memberof UserActivityStateProgress
294
+ * @memberof ClaimRecordInfo
295
+ */
296
+ 'rewardValue'?: number;
297
+ /**
298
+ * 领取状态
299
+ * @type {string}
300
+ * @memberof ClaimRecordInfo
301
+ */
302
+ 'status': ClaimRecordInfoStatusEnum;
303
+ /**
304
+ * 创建时间
305
+ * @type {string}
306
+ * @memberof ClaimRecordInfo
307
+ */
308
+ 'createdAt': string;
309
+ /**
310
+ * 领取时间
311
+ * @type {string}
312
+ * @memberof ClaimRecordInfo
313
+ */
314
+ 'claimedAt'?: string;
315
+ /**
316
+ * 过期时间
317
+ * @type {string}
318
+ * @memberof ClaimRecordInfo
336
319
  */
337
- percentage?: number;
320
+ 'expiresAt'?: string;
338
321
  }
339
- /**
340
- * Check if a given object implements the UserActivityStateProgress interface.
341
- */
342
- declare function instanceOfUserActivityStateProgress(value: object): value is UserActivityStateProgress;
343
- declare function UserActivityStateProgressFromJSON(json: any): UserActivityStateProgress;
344
- declare function UserActivityStateProgressFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserActivityStateProgress;
345
- declare function UserActivityStateProgressToJSON(json: any): UserActivityStateProgress;
346
- declare function UserActivityStateProgressToJSONTyped(value?: UserActivityStateProgress | null, ignoreDiscriminator?: boolean): any;
322
+ declare const ClaimRecordInfoStatusEnum: {
323
+ readonly PENDING: "pending";
324
+ readonly CLAIMED: "claimed";
325
+ readonly EXPIRED: "expired";
326
+ };
327
+ type ClaimRecordInfoStatusEnum = typeof ClaimRecordInfoStatusEnum[keyof typeof ClaimRecordInfoStatusEnum];
347
328
 
348
329
  /**
349
- * DJV Low-code Platform - User API
350
- * DJV 低代码平台用户端 API(数据面),用于: - 页面解析(Page Resolve) - 动作执行(Action Gateway) - 数据查询(Data Proxy) - 埋点上报(Track) - 活动状态查询
330
+ * DJVLC User API
331
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
351
332
  *
352
333
  * The version of the OpenAPI document: 1.0.0
353
- * Contact: djv@example.com
334
+ * Contact: dev@djvlc.com
354
335
  *
355
336
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
356
337
  * https://openapi-generator.tech
357
338
  * Do not edit the class manually.
358
339
  */
359
-
360
340
  /**
361
- * 用户活动状态
341
+ *
362
342
  * @export
363
- * @interface UserActivityState
343
+ * @interface ComponentManifest
364
344
  */
365
- interface UserActivityState {
366
- /**
367
- * 是否已参与
368
- * @type {boolean}
369
- * @memberof UserActivityState
370
- */
371
- participated?: boolean;
372
- /**
373
- * 已领取次数
374
- * @type {number}
375
- * @memberof UserActivityState
376
- */
377
- claimedCount?: number;
345
+ interface ComponentManifest {
378
346
  /**
379
- * 剩余可领取次数
380
- * @type {number}
381
- * @memberof UserActivityState
347
+ * 组件类型
348
+ * @type {string}
349
+ * @memberof ComponentManifest
382
350
  */
383
- remainingCount?: number;
351
+ 'componentType': string;
384
352
  /**
385
- * 最后领取时间
353
+ * 组件版本
386
354
  * @type {string}
387
- * @memberof UserActivityState
355
+ * @memberof ComponentManifest
388
356
  */
389
- lastClaimedAt?: string;
357
+ 'version': string;
390
358
  /**
391
- * 连续签到天数(签到类活动)
392
- * @type {number}
393
- * @memberof UserActivityState
359
+ * 组件入口 URL
360
+ * @type {string}
361
+ * @memberof ComponentManifest
394
362
  */
395
- consecutiveDays?: number;
363
+ 'entryUrl': string;
396
364
  /**
397
- *
398
- * @type {UserActivityStateProgress}
399
- * @memberof UserActivityState
365
+ * 完整性哈希
366
+ * @type {string}
367
+ * @memberof ComponentManifest
400
368
  */
401
- progress?: UserActivityStateProgress;
369
+ 'integrity'?: string;
402
370
  }
403
- /**
404
- * Check if a given object implements the UserActivityState interface.
405
- */
406
- declare function instanceOfUserActivityState(value: object): value is UserActivityState;
407
- declare function UserActivityStateFromJSON(json: any): UserActivityState;
408
- declare function UserActivityStateFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserActivityState;
409
- declare function UserActivityStateToJSON(json: any): UserActivityState;
410
- declare function UserActivityStateToJSONTyped(value?: UserActivityState | null, ignoreDiscriminator?: boolean): any;
411
371
 
412
372
  /**
413
- * DJV Low-code Platform - User API
414
- * DJV 低代码平台用户端 API(数据面),用于: - 页面解析(Page Resolve) - 动作执行(Action Gateway) - 数据查询(Data Proxy) - 埋点上报(Track) - 活动状态查询
373
+ * DJVLC User API
374
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
415
375
  *
416
376
  * The version of the OpenAPI document: 1.0.0
417
- * Contact: djv@example.com
377
+ * Contact: dev@djvlc.com
418
378
  *
419
379
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
420
380
  * https://openapi-generator.tech
421
381
  * Do not edit the class manually.
422
382
  */
423
383
  /**
424
- * 活动基本信息
384
+ *
425
385
  * @export
426
- * @interface ActivityStateActivityInfo
386
+ * @interface GetPage404ResponseDetailsInner
427
387
  */
428
- interface ActivityStateActivityInfo {
388
+ interface GetPage404ResponseDetailsInner {
429
389
  /**
430
390
  *
431
391
  * @type {string}
432
- * @memberof ActivityStateActivityInfo
392
+ * @memberof GetPage404ResponseDetailsInner
433
393
  */
434
- name?: string;
394
+ 'field'?: string;
435
395
  /**
436
396
  *
437
397
  * @type {string}
438
- * @memberof ActivityStateActivityInfo
398
+ * @memberof GetPage404ResponseDetailsInner
439
399
  */
440
- startTime?: string;
441
- /**
442
- *
443
- * @type {string}
444
- * @memberof ActivityStateActivityInfo
445
- */
446
- endTime?: string;
400
+ 'message'?: string;
447
401
  }
448
- /**
449
- * Check if a given object implements the ActivityStateActivityInfo interface.
450
- */
451
- declare function instanceOfActivityStateActivityInfo(value: object): value is ActivityStateActivityInfo;
452
- declare function ActivityStateActivityInfoFromJSON(json: any): ActivityStateActivityInfo;
453
- declare function ActivityStateActivityInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): ActivityStateActivityInfo;
454
- declare function ActivityStateActivityInfoToJSON(json: any): ActivityStateActivityInfo;
455
- declare function ActivityStateActivityInfoToJSONTyped(value?: ActivityStateActivityInfo | null, ignoreDiscriminator?: boolean): any;
456
402
 
457
403
  /**
458
- * DJV Low-code Platform - User API
459
- * DJV 低代码平台用户端 API(数据面),用于: - 页面解析(Page Resolve) - 动作执行(Action Gateway) - 数据查询(Data Proxy) - 埋点上报(Track) - 活动状态查询
404
+ * DJVLC User API
405
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
460
406
  *
461
407
  * The version of the OpenAPI document: 1.0.0
462
- * Contact: djv@example.com
408
+ * Contact: dev@djvlc.com
463
409
  *
464
410
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
465
411
  * https://openapi-generator.tech
@@ -467,290 +413,218 @@ declare function ActivityStateActivityInfoToJSONTyped(value?: ActivityStateActiv
467
413
  */
468
414
 
469
415
  /**
470
- * 活动状态
416
+ *
471
417
  * @export
472
- * @interface ActivityState
418
+ * @interface ErrorResponse
473
419
  */
474
- interface ActivityState {
420
+ interface ErrorResponse {
475
421
  /**
476
- * 活动 ID
422
+ * 错误码
477
423
  * @type {string}
478
- * @memberof ActivityState
424
+ * @memberof ErrorResponse
479
425
  */
480
- activityId?: string;
426
+ 'code': string;
481
427
  /**
482
- * 活动状态
428
+ * 错误消息
483
429
  * @type {string}
484
- * @memberof ActivityState
485
- */
486
- status?: ActivityStateStatusEnum;
487
- /**
488
- *
489
- * @type {UserActivityState}
490
- * @memberof ActivityState
430
+ * @memberof ErrorResponse
491
431
  */
492
- userState?: UserActivityState;
432
+ 'message': string;
493
433
  /**
494
- *
495
- * @type {ActivityStateActivityInfo}
496
- * @memberof ActivityState
434
+ * 错误详情
435
+ * @type {Array<GetPage404ResponseDetailsInner>}
436
+ * @memberof ErrorResponse
497
437
  */
498
- activityInfo?: ActivityStateActivityInfo;
438
+ 'details'?: Array<GetPage404ResponseDetailsInner>;
499
439
  }
500
- /**
501
- * @export
502
- */
503
- declare const ActivityStateStatusEnum: {
504
- readonly not_started: "not_started";
505
- readonly active: "active";
506
- readonly paused: "paused";
507
- readonly ended: "ended";
508
- };
509
- type ActivityStateStatusEnum = typeof ActivityStateStatusEnum[keyof typeof ActivityStateStatusEnum];
510
- /**
511
- * Check if a given object implements the ActivityState interface.
512
- */
513
- declare function instanceOfActivityState(value: object): value is ActivityState;
514
- declare function ActivityStateFromJSON(json: any): ActivityState;
515
- declare function ActivityStateFromJSONTyped(json: any, ignoreDiscriminator: boolean): ActivityState;
516
- declare function ActivityStateToJSON(json: any): ActivityState;
517
- declare function ActivityStateToJSONTyped(value?: ActivityState | null, ignoreDiscriminator?: boolean): any;
518
440
 
519
441
  /**
520
- * DJV Low-code Platform - User API
521
- * DJV 低代码平台用户端 API(数据面),用于: - 页面解析(Page Resolve) - 动作执行(Action Gateway) - 数据查询(Data Proxy) - 埋点上报(Track) - 活动状态查询
442
+ * DJVLC User API
443
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
522
444
  *
523
445
  * The version of the OpenAPI document: 1.0.0
524
- * Contact: djv@example.com
446
+ * Contact: dev@djvlc.com
525
447
  *
526
448
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
527
449
  * https://openapi-generator.tech
528
450
  * Do not edit the class manually.
529
451
  */
530
-
531
452
  /**
532
- * 活动状态响应
453
+ *
533
454
  * @export
534
- * @interface ActivityStateResponse
455
+ * @interface ExecuteAction200ResponseDataEffectsInner
535
456
  */
536
- interface ActivityStateResponse {
537
- /**
538
- *
539
- * @type {boolean}
540
- * @memberof ActivityStateResponse
541
- */
542
- success: boolean;
543
- /**
544
- *
545
- * @type {ActivityState}
546
- * @memberof ActivityStateResponse
547
- */
548
- data?: ActivityState;
549
- /**
550
- *
551
- * @type {number}
552
- * @memberof ActivityStateResponse
553
- */
554
- code?: number;
457
+ interface ExecuteAction200ResponseDataEffectsInner {
555
458
  /**
556
- *
459
+ * 副作用类型
557
460
  * @type {string}
558
- * @memberof ActivityStateResponse
461
+ * @memberof ExecuteAction200ResponseDataEffectsInner
559
462
  */
560
- message?: string;
463
+ 'type': ExecuteAction200ResponseDataEffectsInnerTypeEnum;
561
464
  /**
562
- *
563
- * @type {string}
564
- * @memberof ActivityStateResponse
465
+ * 副作用参数
466
+ * @type {{ [key: string]: any; }}
467
+ * @memberof ExecuteAction200ResponseDataEffectsInner
565
468
  */
566
- traceId?: string;
469
+ 'payload'?: {
470
+ [key: string]: any;
471
+ };
567
472
  }
568
- /**
569
- * Check if a given object implements the ActivityStateResponse interface.
570
- */
571
- declare function instanceOfActivityStateResponse(value: object): value is ActivityStateResponse;
572
- declare function ActivityStateResponseFromJSON(json: any): ActivityStateResponse;
573
- declare function ActivityStateResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ActivityStateResponse;
574
- declare function ActivityStateResponseToJSON(json: any): ActivityStateResponse;
575
- declare function ActivityStateResponseToJSONTyped(value?: ActivityStateResponse | null, ignoreDiscriminator?: boolean): any;
473
+ declare const ExecuteAction200ResponseDataEffectsInnerTypeEnum: {
474
+ readonly SET_STATE: "setState";
475
+ readonly NAVIGATE: "navigate";
476
+ readonly SHOW_TOAST: "showToast";
477
+ readonly REFRESH_DATA: "refreshData";
478
+ readonly CUSTOM: "custom";
479
+ };
480
+ type ExecuteAction200ResponseDataEffectsInnerTypeEnum = typeof ExecuteAction200ResponseDataEffectsInnerTypeEnum[keyof typeof ExecuteAction200ResponseDataEffectsInnerTypeEnum];
576
481
 
577
482
  /**
578
- * DJV Low-code Platform - User API
579
- * DJV 低代码平台用户端 API(数据面),用于: - 页面解析(Page Resolve) - 动作执行(Action Gateway) - 数据查询(Data Proxy) - 埋点上报(Track) - 活动状态查询
483
+ * DJVLC User API
484
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
580
485
  *
581
486
  * The version of the OpenAPI document: 1.0.0
582
- * Contact: djv@example.com
487
+ * Contact: dev@djvlc.com
583
488
  *
584
489
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
585
490
  * https://openapi-generator.tech
586
491
  * Do not edit the class manually.
587
492
  */
493
+
588
494
  /**
589
495
  *
590
496
  * @export
591
- * @interface BaseResponseVo
497
+ * @interface ExecuteAction200ResponseData
592
498
  */
593
- interface BaseResponseVo {
499
+ interface ExecuteAction200ResponseData {
594
500
  /**
595
- * 请求是否成功
501
+ * 是否成功
596
502
  * @type {boolean}
597
- * @memberof BaseResponseVo
598
- */
599
- success: boolean;
600
- /**
601
- * 业务状态码
602
- * @type {string}
603
- * @memberof BaseResponseVo
604
- */
605
- code: string;
606
- /**
607
- * 响应消息
608
- * @type {string}
609
- * @memberof BaseResponseVo
610
- */
611
- message: string;
612
- /**
613
- * 响应数据
614
- * @type {object}
615
- * @memberof BaseResponseVo
616
- */
617
- data: object;
618
- /**
619
- * 响应时间戳(毫秒)
620
- * @type {number}
621
- * @memberof BaseResponseVo
503
+ * @memberof ExecuteAction200ResponseData
622
504
  */
623
- timestamp: number;
505
+ 'success'?: boolean;
624
506
  /**
625
- * 请求路径
626
- * @type {string}
627
- * @memberof BaseResponseVo
507
+ * 执行结果
508
+ * @type {any}
509
+ * @memberof ExecuteAction200ResponseData
628
510
  */
629
- path: string;
511
+ 'result'?: any;
630
512
  /**
631
- * 请求ID(用于追踪)
632
- * @type {string}
633
- * @memberof BaseResponseVo
513
+ * 副作用列表
514
+ * @type {Array<ExecuteAction200ResponseDataEffectsInner>}
515
+ * @memberof ExecuteAction200ResponseData
634
516
  */
635
- requestId?: string;
517
+ 'effects'?: Array<ExecuteAction200ResponseDataEffectsInner>;
636
518
  }
637
- /**
638
- * Check if a given object implements the BaseResponseVo interface.
639
- */
640
- declare function instanceOfBaseResponseVo(value: object): value is BaseResponseVo;
641
- declare function BaseResponseVoFromJSON(json: any): BaseResponseVo;
642
- declare function BaseResponseVoFromJSONTyped(json: any, ignoreDiscriminator: boolean): BaseResponseVo;
643
- declare function BaseResponseVoToJSON(json: any): BaseResponseVo;
644
- declare function BaseResponseVoToJSONTyped(value?: BaseResponseVo | null, ignoreDiscriminator?: boolean): any;
645
519
 
646
520
  /**
647
- * DJV Low-code Platform - User API
648
- * DJV 低代码平台用户端 API(数据面),用于: - 页面解析(Page Resolve) - 动作执行(Action Gateway) - 数据查询(Data Proxy) - 埋点上报(Track) - 活动状态查询
521
+ * DJVLC User API
522
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
649
523
  *
650
524
  * The version of the OpenAPI document: 1.0.0
651
- * Contact: djv@example.com
525
+ * Contact: dev@djvlc.com
652
526
  *
653
527
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
654
528
  * https://openapi-generator.tech
655
529
  * Do not edit the class manually.
656
530
  */
531
+
657
532
  /**
658
- * 被阻断的组件
533
+ *
659
534
  * @export
660
- * @interface BlockedComponent
535
+ * @interface ExecuteAction200Response
661
536
  */
662
- interface BlockedComponent {
537
+ interface ExecuteAction200Response {
663
538
  /**
664
- * 组件名称
665
- * @type {string}
666
- * @memberof BlockedComponent
539
+ *
540
+ * @type {ExecuteAction200ResponseData}
541
+ * @memberof ExecuteAction200Response
667
542
  */
668
- name: string;
543
+ 'data': ExecuteAction200ResponseData;
544
+ }
545
+
546
+ /**
547
+ * DJVLC User API
548
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
549
+ *
550
+ * The version of the OpenAPI document: 1.0.0
551
+ * Contact: dev@djvlc.com
552
+ *
553
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
554
+ * https://openapi-generator.tech
555
+ * Do not edit the class manually.
556
+ */
557
+ /**
558
+ * 动作执行上下文
559
+ * @export
560
+ * @interface ExecuteActionRequestContext
561
+ */
562
+ interface ExecuteActionRequestContext {
669
563
  /**
670
- * 组件版本
564
+ * 页面 ID
671
565
  * @type {string}
672
- * @memberof BlockedComponent
566
+ * @memberof ExecuteActionRequestContext
673
567
  */
674
- version: string;
568
+ 'pageId'?: string;
675
569
  /**
676
- * 阻断原因
570
+ * 触发组件 ID
677
571
  * @type {string}
678
- * @memberof BlockedComponent
572
+ * @memberof ExecuteActionRequestContext
679
573
  */
680
- reason: string;
574
+ 'componentId'?: string;
681
575
  /**
682
- * 阻断时间
576
+ * 触发事件名
683
577
  * @type {string}
684
- * @memberof BlockedComponent
578
+ * @memberof ExecuteActionRequestContext
685
579
  */
686
- blockedAt: string;
580
+ 'eventName'?: string;
687
581
  /**
688
- * 降级组件名称
689
- * @type {string}
690
- * @memberof BlockedComponent
582
+ * 当前页面状态
583
+ * @type {{ [key: string]: any; }}
584
+ * @memberof ExecuteActionRequestContext
691
585
  */
692
- fallbackComponent?: string;
586
+ 'state'?: {
587
+ [key: string]: any;
588
+ };
693
589
  }
694
- /**
695
- * Check if a given object implements the BlockedComponent interface.
696
- */
697
- declare function instanceOfBlockedComponent(value: object): value is BlockedComponent;
698
- declare function BlockedComponentFromJSON(json: any): BlockedComponent;
699
- declare function BlockedComponentFromJSONTyped(json: any, ignoreDiscriminator: boolean): BlockedComponent;
700
- declare function BlockedComponentToJSON(json: any): BlockedComponent;
701
- declare function BlockedComponentToJSONTyped(value?: BlockedComponent | null, ignoreDiscriminator?: boolean): any;
702
590
 
703
591
  /**
704
- * DJV Low-code Platform - User API
705
- * DJV 低代码平台用户端 API(数据面),用于: - 页面解析(Page Resolve) - 动作执行(Action Gateway) - 数据查询(Data Proxy) - 埋点上报(Track) - 活动状态查询
592
+ * DJVLC User API
593
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
706
594
  *
707
595
  * The version of the OpenAPI document: 1.0.0
708
- * Contact: djv@example.com
596
+ * Contact: dev@djvlc.com
709
597
  *
710
598
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
711
599
  * https://openapi-generator.tech
712
600
  * Do not edit the class manually.
713
601
  */
714
602
  /**
715
- * 数据查询上下文
603
+ *
716
604
  * @export
717
- * @interface DataQueryContext
605
+ * @interface ExecuteActionRequestOptions
718
606
  */
719
- interface DataQueryContext {
607
+ interface ExecuteActionRequestOptions {
720
608
  /**
721
- * 页面版本 ID
722
- * @type {string}
723
- * @memberof DataQueryContext
724
- */
725
- pageVersionId?: string;
726
- /**
727
- * 用户 ID
728
- * @type {string}
729
- * @memberof DataQueryContext
609
+ * 执行超时(毫秒)
610
+ * @type {number}
611
+ * @memberof ExecuteActionRequestOptions
730
612
  */
731
- uid?: string;
613
+ 'timeout'?: number;
732
614
  /**
733
- * 追踪 ID
615
+ * 幂等键
734
616
  * @type {string}
735
- * @memberof DataQueryContext
617
+ * @memberof ExecuteActionRequestOptions
736
618
  */
737
- traceId?: string;
619
+ 'idempotencyKey'?: string;
738
620
  }
739
- /**
740
- * Check if a given object implements the DataQueryContext interface.
741
- */
742
- declare function instanceOfDataQueryContext(value: object): value is DataQueryContext;
743
- declare function DataQueryContextFromJSON(json: any): DataQueryContext;
744
- declare function DataQueryContextFromJSONTyped(json: any, ignoreDiscriminator: boolean): DataQueryContext;
745
- declare function DataQueryContextToJSON(json: any): DataQueryContext;
746
- declare function DataQueryContextToJSONTyped(value?: DataQueryContext | null, ignoreDiscriminator?: boolean): any;
747
621
 
748
622
  /**
749
- * DJV Low-code Platform - User API
750
- * DJV 低代码平台用户端 API(数据面),用于: - 页面解析(Page Resolve) - 动作执行(Action Gateway) - 数据查询(Data Proxy) - 埋点上报(Track) - 活动状态查询
623
+ * DJVLC User API
624
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
751
625
  *
752
626
  * The version of the OpenAPI document: 1.0.0
753
- * Contact: djv@example.com
627
+ * Contact: dev@djvlc.com
754
628
  *
755
629
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
756
630
  * https://openapi-generator.tech
@@ -758,116 +632,65 @@ declare function DataQueryContextToJSONTyped(value?: DataQueryContext | null, ig
758
632
  */
759
633
 
760
634
  /**
761
- * 数据查询请求
635
+ *
762
636
  * @export
763
- * @interface DataQueryRequest
637
+ * @interface ExecuteActionRequest
764
638
  */
765
- interface DataQueryRequest {
639
+ interface ExecuteActionRequest {
766
640
  /**
767
- * Query 版本 ID
768
- * @type {string}
769
- * @memberof DataQueryRequest
770
- */
771
- queryVersionId: string;
772
- /**
773
- * 查询参数
641
+ * 动作参数
774
642
  * @type {{ [key: string]: any; }}
775
- * @memberof DataQueryRequest
643
+ * @memberof ExecuteActionRequest
776
644
  */
777
- params: {
645
+ 'params': {
778
646
  [key: string]: any;
779
647
  };
780
648
  /**
781
649
  *
782
- * @type {DataQueryContext}
783
- * @memberof DataQueryRequest
650
+ * @type {ExecuteActionRequestContext}
651
+ * @memberof ExecuteActionRequest
652
+ */
653
+ 'context'?: ExecuteActionRequestContext;
654
+ /**
655
+ *
656
+ * @type {ExecuteActionRequestOptions}
657
+ * @memberof ExecuteActionRequest
784
658
  */
785
- context?: DataQueryContext;
659
+ 'options'?: ExecuteActionRequestOptions;
786
660
  }
787
- /**
788
- * Check if a given object implements the DataQueryRequest interface.
789
- */
790
- declare function instanceOfDataQueryRequest(value: object): value is DataQueryRequest;
791
- declare function DataQueryRequestFromJSON(json: any): DataQueryRequest;
792
- declare function DataQueryRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): DataQueryRequest;
793
- declare function DataQueryRequestToJSON(json: any): DataQueryRequest;
794
- declare function DataQueryRequestToJSONTyped(value?: DataQueryRequest | null, ignoreDiscriminator?: boolean): any;
795
661
 
796
662
  /**
797
- * DJV Low-code Platform - User API
798
- * DJV 低代码平台用户端 API(数据面),用于: - 页面解析(Page Resolve) - 动作执行(Action Gateway) - 数据查询(Data Proxy) - 埋点上报(Track) - 活动状态查询
663
+ * DJVLC User API
664
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
799
665
  *
800
666
  * The version of the OpenAPI document: 1.0.0
801
- * Contact: djv@example.com
667
+ * Contact: dev@djvlc.com
802
668
  *
803
669
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
804
670
  * https://openapi-generator.tech
805
671
  * Do not edit the class manually.
806
672
  */
673
+
807
674
  /**
808
- * 数据查询响应
675
+ *
809
676
  * @export
810
- * @interface DataQueryResponse
677
+ * @interface ExecuteActionResponse
811
678
  */
812
- interface DataQueryResponse {
813
- /**
814
- * 是否成功
815
- * @type {boolean}
816
- * @memberof DataQueryResponse
817
- */
818
- success: boolean;
819
- /**
820
- * 查询结果数据
821
- * @type {any}
822
- * @memberof DataQueryResponse
823
- */
824
- data?: any | null;
825
- /**
826
- * 是否来自缓存
827
- * @type {boolean}
828
- * @memberof DataQueryResponse
829
- */
830
- fromCache?: boolean;
679
+ interface ExecuteActionResponse {
831
680
  /**
832
- * 缓存时间(秒)
833
- * @type {number}
834
- * @memberof DataQueryResponse
835
- */
836
- cacheTime?: number;
837
- /**
838
- * 业务错误码
839
- * @type {number}
840
- * @memberof DataQueryResponse
841
- */
842
- code?: number;
843
- /**
844
- * 错误信息
845
- * @type {string}
846
- * @memberof DataQueryResponse
847
- */
848
- message?: string;
849
- /**
850
- * 追踪 ID
851
- * @type {string}
852
- * @memberof DataQueryResponse
681
+ *
682
+ * @type {ExecuteAction200ResponseData}
683
+ * @memberof ExecuteActionResponse
853
684
  */
854
- traceId?: string;
685
+ 'data': ExecuteAction200ResponseData;
855
686
  }
856
- /**
857
- * Check if a given object implements the DataQueryResponse interface.
858
- */
859
- declare function instanceOfDataQueryResponse(value: object): value is DataQueryResponse;
860
- declare function DataQueryResponseFromJSON(json: any): DataQueryResponse;
861
- declare function DataQueryResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DataQueryResponse;
862
- declare function DataQueryResponseToJSON(json: any): DataQueryResponse;
863
- declare function DataQueryResponseToJSONTyped(value?: DataQueryResponse | null, ignoreDiscriminator?: boolean): any;
864
687
 
865
688
  /**
866
- * DJV Low-code Platform - User API
867
- * DJV 低代码平台用户端 API(数据面),用于: - 页面解析(Page Resolve) - 动作执行(Action Gateway) - 数据查询(Data Proxy) - 埋点上报(Track) - 活动状态查询
689
+ * DJVLC User API
690
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
868
691
  *
869
692
  * The version of the OpenAPI document: 1.0.0
870
- * Contact: djv@example.com
693
+ * Contact: dev@djvlc.com
871
694
  *
872
695
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
873
696
  * https://openapi-generator.tech
@@ -876,43 +699,41 @@ declare function DataQueryResponseToJSONTyped(value?: DataQueryResponse | null,
876
699
  /**
877
700
  *
878
701
  * @export
879
- * @interface ErrorDetail
702
+ * @interface ExecuteQuery200ResponseMetaPagination
880
703
  */
881
- interface ErrorDetail {
704
+ interface ExecuteQuery200ResponseMetaPagination {
882
705
  /**
883
- * 出错字段
884
- * @type {string}
885
- * @memberof ErrorDetail
706
+ *
707
+ * @type {number}
708
+ * @memberof ExecuteQuery200ResponseMetaPagination
886
709
  */
887
- field?: string;
710
+ 'page'?: number;
888
711
  /**
889
- * 字段级错误码
890
- * @type {string}
891
- * @memberof ErrorDetail
712
+ *
713
+ * @type {number}
714
+ * @memberof ExecuteQuery200ResponseMetaPagination
892
715
  */
893
- code?: string;
716
+ 'limit'?: number;
894
717
  /**
895
- * 字段级错误信息
896
- * @type {string}
897
- * @memberof ErrorDetail
718
+ *
719
+ * @type {number}
720
+ * @memberof ExecuteQuery200ResponseMetaPagination
721
+ */
722
+ 'total'?: number;
723
+ /**
724
+ *
725
+ * @type {boolean}
726
+ * @memberof ExecuteQuery200ResponseMetaPagination
898
727
  */
899
- message?: string;
728
+ 'hasMore'?: boolean;
900
729
  }
901
- /**
902
- * Check if a given object implements the ErrorDetail interface.
903
- */
904
- declare function instanceOfErrorDetail(value: object): value is ErrorDetail;
905
- declare function ErrorDetailFromJSON(json: any): ErrorDetail;
906
- declare function ErrorDetailFromJSONTyped(json: any, ignoreDiscriminator: boolean): ErrorDetail;
907
- declare function ErrorDetailToJSON(json: any): ErrorDetail;
908
- declare function ErrorDetailToJSONTyped(value?: ErrorDetail | null, ignoreDiscriminator?: boolean): any;
909
730
 
910
731
  /**
911
- * DJV Low-code Platform - User API
912
- * DJV 低代码平台用户端 API(数据面),用于: - 页面解析(Page Resolve) - 动作执行(Action Gateway) - 数据查询(Data Proxy) - 埋点上报(Track) - 活动状态查询
732
+ * DJVLC User API
733
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
913
734
  *
914
735
  * The version of the OpenAPI document: 1.0.0
915
- * Contact: djv@example.com
736
+ * Contact: dev@djvlc.com
916
737
  *
917
738
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
918
739
  * https://openapi-generator.tech
@@ -922,67 +743,41 @@ declare function ErrorDetailToJSONTyped(value?: ErrorDetail | null, ignoreDiscri
922
743
  /**
923
744
  *
924
745
  * @export
925
- * @interface ErrorResponseVo
746
+ * @interface ExecuteQuery200ResponseMeta
926
747
  */
927
- interface ErrorResponseVo {
748
+ interface ExecuteQuery200ResponseMeta {
928
749
  /**
929
- * 请求是否成功
750
+ * 是否来自缓存
930
751
  * @type {boolean}
931
- * @memberof ErrorResponseVo
932
- */
933
- success: boolean;
934
- /**
935
- * 错误码
936
- * @type {string}
937
- * @memberof ErrorResponseVo
752
+ * @memberof ExecuteQuery200ResponseMeta
938
753
  */
939
- code: string;
754
+ 'cached'?: boolean;
940
755
  /**
941
- * 错误消息
756
+ * 缓存时间
942
757
  * @type {string}
943
- * @memberof ErrorResponseVo
758
+ * @memberof ExecuteQuery200ResponseMeta
944
759
  */
945
- message: string;
760
+ 'cachedAt'?: string;
946
761
  /**
947
- * 响应时间戳(毫秒)
762
+ * 执行时间(毫秒)
948
763
  * @type {number}
949
- * @memberof ErrorResponseVo
950
- */
951
- timestamp: number;
952
- /**
953
- * 请求路径
954
- * @type {string}
955
- * @memberof ErrorResponseVo
956
- */
957
- path: string;
958
- /**
959
- * 请求ID(用于追踪)
960
- * @type {string}
961
- * @memberof ErrorResponseVo
764
+ * @memberof ExecuteQuery200ResponseMeta
962
765
  */
963
- requestId?: string;
766
+ 'executionTime'?: number;
964
767
  /**
965
- * 详细错误信息(可选,用于字段级错误)
966
- * @type {Array<ErrorDetail>}
967
- * @memberof ErrorResponseVo
768
+ *
769
+ * @type {ExecuteQuery200ResponseMetaPagination}
770
+ * @memberof ExecuteQuery200ResponseMeta
968
771
  */
969
- details?: Array<ErrorDetail>;
772
+ 'pagination'?: ExecuteQuery200ResponseMetaPagination;
970
773
  }
971
- /**
972
- * Check if a given object implements the ErrorResponseVo interface.
973
- */
974
- declare function instanceOfErrorResponseVo(value: object): value is ErrorResponseVo;
975
- declare function ErrorResponseVoFromJSON(json: any): ErrorResponseVo;
976
- declare function ErrorResponseVoFromJSONTyped(json: any, ignoreDiscriminator: boolean): ErrorResponseVo;
977
- declare function ErrorResponseVoToJSON(json: any): ErrorResponseVo;
978
- declare function ErrorResponseVoToJSONTyped(value?: ErrorResponseVo | null, ignoreDiscriminator?: boolean): any;
979
774
 
980
775
  /**
981
- * DJV Low-code Platform - User API
982
- * DJV 低代码平台用户端 API(数据面),用于: - 页面解析(Page Resolve) - 动作执行(Action Gateway) - 数据查询(Data Proxy) - 埋点上报(Track) - 活动状态查询
776
+ * DJVLC User API
777
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
983
778
  *
984
779
  * The version of the OpenAPI document: 1.0.0
985
- * Contact: djv@example.com
780
+ * Contact: dev@djvlc.com
986
781
  *
987
782
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
988
783
  * https://openapi-generator.tech
@@ -992,339 +787,331 @@ declare function ErrorResponseVoToJSONTyped(value?: ErrorResponseVo | null, igno
992
787
  /**
993
788
  *
994
789
  * @export
995
- * @interface ExecuteActionBatch200Response
790
+ * @interface ExecuteQuery200Response
996
791
  */
997
- interface ExecuteActionBatch200Response {
998
- /**
999
- *
1000
- * @type {boolean}
1001
- * @memberof ExecuteActionBatch200Response
1002
- */
1003
- success: boolean;
792
+ interface ExecuteQuery200Response {
1004
793
  /**
1005
- *
1006
- * @type {Array<ActionExecuteResponse>}
1007
- * @memberof ExecuteActionBatch200Response
794
+ * 查询结果数据
795
+ * @type {any}
796
+ * @memberof ExecuteQuery200Response
1008
797
  */
1009
- data?: Array<ActionExecuteResponse>;
798
+ 'data': any;
1010
799
  /**
1011
800
  *
1012
- * @type {string}
1013
- * @memberof ExecuteActionBatch200Response
801
+ * @type {ExecuteQuery200ResponseMeta}
802
+ * @memberof ExecuteQuery200Response
1014
803
  */
1015
- traceId?: string;
804
+ 'meta'?: ExecuteQuery200ResponseMeta;
1016
805
  }
1017
- /**
1018
- * Check if a given object implements the ExecuteActionBatch200Response interface.
1019
- */
1020
- declare function instanceOfExecuteActionBatch200Response(value: object): value is ExecuteActionBatch200Response;
1021
- declare function ExecuteActionBatch200ResponseFromJSON(json: any): ExecuteActionBatch200Response;
1022
- declare function ExecuteActionBatch200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExecuteActionBatch200Response;
1023
- declare function ExecuteActionBatch200ResponseToJSON(json: any): ExecuteActionBatch200Response;
1024
- declare function ExecuteActionBatch200ResponseToJSONTyped(value?: ExecuteActionBatch200Response | null, ignoreDiscriminator?: boolean): any;
1025
806
 
1026
807
  /**
1027
- * DJV Low-code Platform - User API
1028
- * DJV 低代码平台用户端 API(数据面),用于: - 页面解析(Page Resolve) - 动作执行(Action Gateway) - 数据查询(Data Proxy) - 埋点上报(Track) - 活动状态查询
808
+ * DJVLC User API
809
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
1029
810
  *
1030
811
  * The version of the OpenAPI document: 1.0.0
1031
- * Contact: djv@example.com
812
+ * Contact: dev@djvlc.com
1032
813
  *
1033
814
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1034
815
  * https://openapi-generator.tech
1035
816
  * Do not edit the class manually.
1036
817
  */
1037
-
1038
818
  /**
1039
819
  *
1040
820
  * @export
1041
- * @interface ExecuteActionBatchRequest
821
+ * @interface ExecuteQueryRequestOptions
1042
822
  */
1043
- interface ExecuteActionBatchRequest {
823
+ interface ExecuteQueryRequestOptions {
1044
824
  /**
1045
- * 动作列表
1046
- * @type {Array<ActionExecuteRequest>}
1047
- * @memberof ExecuteActionBatchRequest
825
+ * 查询超时(毫秒)
826
+ * @type {number}
827
+ * @memberof ExecuteQueryRequestOptions
1048
828
  */
1049
- actions: Array<ActionExecuteRequest>;
829
+ 'timeout'?: number;
1050
830
  /**
1051
- * 遇到错误是否停止
831
+ * 是否使用缓存
1052
832
  * @type {boolean}
1053
- * @memberof ExecuteActionBatchRequest
833
+ * @memberof ExecuteQueryRequestOptions
834
+ */
835
+ 'cache'?: boolean;
836
+ /**
837
+ * 自定义缓存键
838
+ * @type {string}
839
+ * @memberof ExecuteQueryRequestOptions
1054
840
  */
1055
- stopOnError?: boolean;
841
+ 'cacheKey'?: string;
1056
842
  }
1057
- /**
1058
- * Check if a given object implements the ExecuteActionBatchRequest interface.
1059
- */
1060
- declare function instanceOfExecuteActionBatchRequest(value: object): value is ExecuteActionBatchRequest;
1061
- declare function ExecuteActionBatchRequestFromJSON(json: any): ExecuteActionBatchRequest;
1062
- declare function ExecuteActionBatchRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExecuteActionBatchRequest;
1063
- declare function ExecuteActionBatchRequestToJSON(json: any): ExecuteActionBatchRequest;
1064
- declare function ExecuteActionBatchRequestToJSONTyped(value?: ExecuteActionBatchRequest | null, ignoreDiscriminator?: boolean): any;
1065
843
 
1066
844
  /**
1067
- * DJV Low-code Platform - User API
1068
- * DJV 低代码平台用户端 API(数据面),用于: - 页面解析(Page Resolve) - 动作执行(Action Gateway) - 数据查询(Data Proxy) - 埋点上报(Track) - 活动状态查询
845
+ * DJVLC User API
846
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
1069
847
  *
1070
848
  * The version of the OpenAPI document: 1.0.0
1071
- * Contact: djv@example.com
849
+ * Contact: dev@djvlc.com
1072
850
  *
1073
851
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1074
852
  * https://openapi-generator.tech
1075
853
  * Do not edit the class manually.
1076
854
  */
1077
-
1078
855
  /**
1079
- *
856
+ * 页面解析上下文
1080
857
  * @export
1081
- * @interface GetActivityStateBatch200Response
858
+ * @interface ResolvePageRequestContext
1082
859
  */
1083
- interface GetActivityStateBatch200Response {
860
+ interface ResolvePageRequestContext {
1084
861
  /**
1085
- *
1086
- * @type {boolean}
1087
- * @memberof GetActivityStateBatch200Response
862
+ * 用户 ID
863
+ * @type {string}
864
+ * @memberof ResolvePageRequestContext
1088
865
  */
1089
- success: boolean;
866
+ 'userId'?: string;
1090
867
  /**
1091
- *
1092
- * @type {Array<ActivityState>}
1093
- * @memberof GetActivityStateBatch200Response
868
+ * 会话 ID
869
+ * @type {string}
870
+ * @memberof ResolvePageRequestContext
1094
871
  */
1095
- data?: Array<ActivityState>;
872
+ 'sessionId'?: string;
1096
873
  /**
1097
- *
874
+ * 设备类型
1098
875
  * @type {string}
1099
- * @memberof GetActivityStateBatch200Response
876
+ * @memberof ResolvePageRequestContext
877
+ */
878
+ 'deviceType'?: ResolvePageRequestContextDeviceTypeEnum;
879
+ /**
880
+ * URL 参数
881
+ * @type {{ [key: string]: string; }}
882
+ * @memberof ResolvePageRequestContext
1100
883
  */
1101
- traceId?: string;
884
+ 'urlParams'?: {
885
+ [key: string]: string;
886
+ };
887
+ /**
888
+ * 路由参数
889
+ * @type {{ [key: string]: string; }}
890
+ * @memberof ResolvePageRequestContext
891
+ */
892
+ 'routeParams'?: {
893
+ [key: string]: string;
894
+ };
895
+ /**
896
+ * 自定义上下文数据
897
+ * @type {{ [key: string]: any; }}
898
+ * @memberof ResolvePageRequestContext
899
+ */
900
+ 'customData'?: {
901
+ [key: string]: any;
902
+ };
1102
903
  }
1103
- /**
1104
- * Check if a given object implements the GetActivityStateBatch200Response interface.
1105
- */
1106
- declare function instanceOfGetActivityStateBatch200Response(value: object): value is GetActivityStateBatch200Response;
1107
- declare function GetActivityStateBatch200ResponseFromJSON(json: any): GetActivityStateBatch200Response;
1108
- declare function GetActivityStateBatch200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetActivityStateBatch200Response;
1109
- declare function GetActivityStateBatch200ResponseToJSON(json: any): GetActivityStateBatch200Response;
1110
- declare function GetActivityStateBatch200ResponseToJSONTyped(value?: GetActivityStateBatch200Response | null, ignoreDiscriminator?: boolean): any;
904
+ declare const ResolvePageRequestContextDeviceTypeEnum: {
905
+ readonly MOBILE: "mobile";
906
+ readonly TABLET: "tablet";
907
+ readonly DESKTOP: "desktop";
908
+ };
909
+ type ResolvePageRequestContextDeviceTypeEnum = typeof ResolvePageRequestContextDeviceTypeEnum[keyof typeof ResolvePageRequestContextDeviceTypeEnum];
1111
910
 
1112
911
  /**
1113
- * DJV Low-code Platform - User API
1114
- * DJV 低代码平台用户端 API(数据面),用于: - 页面解析(Page Resolve) - 动作执行(Action Gateway) - 数据查询(Data Proxy) - 埋点上报(Track) - 活动状态查询
912
+ * DJVLC User API
913
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
1115
914
  *
1116
915
  * The version of the OpenAPI document: 1.0.0
1117
- * Contact: djv@example.com
916
+ * Contact: dev@djvlc.com
1118
917
  *
1119
918
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1120
919
  * https://openapi-generator.tech
1121
920
  * Do not edit the class manually.
1122
921
  */
922
+
1123
923
  /**
1124
924
  *
1125
925
  * @export
1126
- * @interface GetActivityStateBatchRequest
926
+ * @interface ExecuteQueryRequest
1127
927
  */
1128
- interface GetActivityStateBatchRequest {
928
+ interface ExecuteQueryRequest {
929
+ /**
930
+ * 查询参数
931
+ * @type {{ [key: string]: any; }}
932
+ * @memberof ExecuteQueryRequest
933
+ */
934
+ 'params'?: {
935
+ [key: string]: any;
936
+ };
1129
937
  /**
1130
- * 活动 ID 列表
1131
- * @type {Array<string>}
1132
- * @memberof GetActivityStateBatchRequest
938
+ *
939
+ * @type {ResolvePageRequestContext}
940
+ * @memberof ExecuteQueryRequest
1133
941
  */
1134
- activityIds: Array<string>;
942
+ 'context'?: ResolvePageRequestContext;
1135
943
  /**
1136
- * 用户 ID
1137
- * @type {string}
1138
- * @memberof GetActivityStateBatchRequest
944
+ *
945
+ * @type {ExecuteQueryRequestOptions}
946
+ * @memberof ExecuteQueryRequest
1139
947
  */
1140
- uid?: string;
948
+ 'options'?: ExecuteQueryRequestOptions;
1141
949
  }
1142
- /**
1143
- * Check if a given object implements the GetActivityStateBatchRequest interface.
1144
- */
1145
- declare function instanceOfGetActivityStateBatchRequest(value: object): value is GetActivityStateBatchRequest;
1146
- declare function GetActivityStateBatchRequestFromJSON(json: any): GetActivityStateBatchRequest;
1147
- declare function GetActivityStateBatchRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetActivityStateBatchRequest;
1148
- declare function GetActivityStateBatchRequestToJSON(json: any): GetActivityStateBatchRequest;
1149
- declare function GetActivityStateBatchRequestToJSONTyped(value?: GetActivityStateBatchRequest | null, ignoreDiscriminator?: boolean): any;
1150
950
 
1151
951
  /**
1152
- * DJV Low-code Platform - User API
1153
- * DJV 低代码平台用户端 API(数据面),用于: - 页面解析(Page Resolve) - 动作执行(Action Gateway) - 数据查询(Data Proxy) - 埋点上报(Track) - 活动状态查询
952
+ * DJVLC User API
953
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
1154
954
  *
1155
955
  * The version of the OpenAPI document: 1.0.0
1156
- * Contact: djv@example.com
956
+ * Contact: dev@djvlc.com
1157
957
  *
1158
958
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1159
959
  * https://openapi-generator.tech
1160
960
  * Do not edit the class manually.
1161
961
  */
962
+
1162
963
  /**
1163
964
  *
1164
965
  * @export
1165
- * @interface HealthResponseChecksValue
966
+ * @interface ExecuteQueryResponse
1166
967
  */
1167
- interface HealthResponseChecksValue {
968
+ interface ExecuteQueryResponse {
1168
969
  /**
1169
- *
1170
- * @type {string}
1171
- * @memberof HealthResponseChecksValue
970
+ * 查询结果数据
971
+ * @type {any}
972
+ * @memberof ExecuteQueryResponse
1172
973
  */
1173
- status?: string;
974
+ 'data': any;
1174
975
  /**
1175
976
  *
1176
- * @type {number}
1177
- * @memberof HealthResponseChecksValue
977
+ * @type {ExecuteQuery200ResponseMeta}
978
+ * @memberof ExecuteQueryResponse
1178
979
  */
1179
- latency?: number;
980
+ 'meta'?: ExecuteQuery200ResponseMeta;
1180
981
  }
1181
- /**
1182
- * Check if a given object implements the HealthResponseChecksValue interface.
1183
- */
1184
- declare function instanceOfHealthResponseChecksValue(value: object): value is HealthResponseChecksValue;
1185
- declare function HealthResponseChecksValueFromJSON(json: any): HealthResponseChecksValue;
1186
- declare function HealthResponseChecksValueFromJSONTyped(json: any, ignoreDiscriminator: boolean): HealthResponseChecksValue;
1187
- declare function HealthResponseChecksValueToJSON(json: any): HealthResponseChecksValue;
1188
- declare function HealthResponseChecksValueToJSONTyped(value?: HealthResponseChecksValue | null, ignoreDiscriminator?: boolean): any;
1189
982
 
1190
983
  /**
1191
- * DJV Low-code Platform - User API
1192
- * DJV 低代码平台用户端 API(数据面),用于: - 页面解析(Page Resolve) - 动作执行(Action Gateway) - 数据查询(Data Proxy) - 埋点上报(Track) - 活动状态查询
984
+ * DJVLC User API
985
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
1193
986
  *
1194
987
  * The version of the OpenAPI document: 1.0.0
1195
- * Contact: djv@example.com
988
+ * Contact: dev@djvlc.com
1196
989
  *
1197
990
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1198
991
  * https://openapi-generator.tech
1199
992
  * Do not edit the class manually.
1200
993
  */
1201
-
1202
994
  /**
1203
995
  *
1204
996
  * @export
1205
- * @interface HealthResponse
997
+ * @interface GetActivityInfo200ResponseDataRewardsInner
1206
998
  */
1207
- interface HealthResponse {
999
+ interface GetActivityInfo200ResponseDataRewardsInner {
1208
1000
  /**
1209
- * 健康状态
1001
+ *
1210
1002
  * @type {string}
1211
- * @memberof HealthResponse
1003
+ * @memberof GetActivityInfo200ResponseDataRewardsInner
1212
1004
  */
1213
- status: HealthResponseStatusEnum;
1005
+ 'name'?: string;
1214
1006
  /**
1215
- * 服务版本
1007
+ *
1216
1008
  * @type {string}
1217
- * @memberof HealthResponse
1009
+ * @memberof GetActivityInfo200ResponseDataRewardsInner
1218
1010
  */
1219
- version: string;
1011
+ 'description'?: string;
1220
1012
  /**
1221
- * 服务名称
1013
+ *
1222
1014
  * @type {string}
1223
- * @memberof HealthResponse
1224
- */
1225
- service?: string;
1226
- /**
1227
- * 时间戳
1228
- * @type {number}
1229
- * @memberof HealthResponse
1015
+ * @memberof GetActivityInfo200ResponseDataRewardsInner
1230
1016
  */
1231
- timestamp?: number;
1232
- /**
1233
- * 各依赖健康状态
1234
- * @type {{ [key: string]: HealthResponseChecksValue; }}
1235
- * @memberof HealthResponse
1236
- */
1237
- checks?: {
1238
- [key: string]: HealthResponseChecksValue;
1239
- };
1017
+ 'icon'?: string;
1240
1018
  }
1241
- /**
1242
- * @export
1243
- */
1244
- declare const HealthResponseStatusEnum: {
1245
- readonly healthy: "healthy";
1246
- readonly degraded: "degraded";
1247
- readonly unhealthy: "unhealthy";
1248
- };
1249
- type HealthResponseStatusEnum = typeof HealthResponseStatusEnum[keyof typeof HealthResponseStatusEnum];
1250
- /**
1251
- * Check if a given object implements the HealthResponse interface.
1252
- */
1253
- declare function instanceOfHealthResponse(value: object): value is HealthResponse;
1254
- declare function HealthResponseFromJSON(json: any): HealthResponse;
1255
- declare function HealthResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): HealthResponse;
1256
- declare function HealthResponseToJSON(json: any): HealthResponse;
1257
- declare function HealthResponseToJSONTyped(value?: HealthResponse | null, ignoreDiscriminator?: boolean): any;
1258
1019
 
1259
1020
  /**
1260
- * DJV Low-code Platform - User API
1261
- * DJV 低代码平台用户端 API(数据面),用于: - 页面解析(Page Resolve) - 动作执行(Action Gateway) - 数据查询(Data Proxy) - 埋点上报(Track) - 活动状态查询
1021
+ * DJVLC User API
1022
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
1262
1023
  *
1263
1024
  * The version of the OpenAPI document: 1.0.0
1264
- * Contact: djv@example.com
1025
+ * Contact: dev@djvlc.com
1265
1026
  *
1266
1027
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1267
1028
  * https://openapi-generator.tech
1268
1029
  * Do not edit the class manually.
1269
1030
  */
1031
+
1270
1032
  /**
1271
- * Manifest 组件项
1033
+ *
1272
1034
  * @export
1273
- * @interface ManifestItem
1035
+ * @interface GetActivityInfo200ResponseData
1274
1036
  */
1275
- interface ManifestItem {
1037
+ interface GetActivityInfo200ResponseData {
1276
1038
  /**
1277
- * 组件名称
1039
+ * 活动 ID
1278
1040
  * @type {string}
1279
- * @memberof ManifestItem
1041
+ * @memberof GetActivityInfo200ResponseData
1280
1042
  */
1281
- name: string;
1043
+ 'id': string;
1282
1044
  /**
1283
- * 组件版本
1045
+ * 活动名称
1284
1046
  * @type {string}
1285
- * @memberof ManifestItem
1047
+ * @memberof GetActivityInfo200ResponseData
1286
1048
  */
1287
- version: string;
1049
+ 'name': string;
1288
1050
  /**
1289
- * 入口 URL
1051
+ * 活动类型
1290
1052
  * @type {string}
1291
- * @memberof ManifestItem
1053
+ * @memberof GetActivityInfo200ResponseData
1292
1054
  */
1293
- entryUrl: string;
1055
+ 'type': GetActivityInfo200ResponseDataTypeEnum;
1294
1056
  /**
1295
- * SRI 完整性校验值
1057
+ * 活动状态
1296
1058
  * @type {string}
1297
- * @memberof ManifestItem
1059
+ * @memberof GetActivityInfo200ResponseData
1298
1060
  */
1299
- integrity: string;
1061
+ 'status': GetActivityInfo200ResponseDataStatusEnum;
1300
1062
  /**
1301
- * 是否为关键组件
1302
- * @type {boolean}
1303
- * @memberof ManifestItem
1063
+ * 活动描述
1064
+ * @type {string}
1065
+ * @memberof GetActivityInfo200ResponseData
1304
1066
  */
1305
- critical?: boolean;
1067
+ 'description'?: string;
1306
1068
  /**
1307
- * 降级 URL
1069
+ * 开始时间
1308
1070
  * @type {string}
1309
- * @memberof ManifestItem
1071
+ * @memberof GetActivityInfo200ResponseData
1310
1072
  */
1311
- fallbackUrl?: string;
1073
+ 'startTime'?: string;
1074
+ /**
1075
+ * 结束时间
1076
+ * @type {string}
1077
+ * @memberof GetActivityInfo200ResponseData
1078
+ */
1079
+ 'endTime'?: string;
1080
+ /**
1081
+ * 活动规则(公开部分)
1082
+ * @type {{ [key: string]: any; }}
1083
+ * @memberof GetActivityInfo200ResponseData
1084
+ */
1085
+ 'rules'?: {
1086
+ [key: string]: any;
1087
+ };
1088
+ /**
1089
+ * 奖励列表
1090
+ * @type {Array<GetActivityInfo200ResponseDataRewardsInner>}
1091
+ * @memberof GetActivityInfo200ResponseData
1092
+ */
1093
+ 'rewards'?: Array<GetActivityInfo200ResponseDataRewardsInner>;
1312
1094
  }
1313
- /**
1314
- * Check if a given object implements the ManifestItem interface.
1315
- */
1316
- declare function instanceOfManifestItem(value: object): value is ManifestItem;
1317
- declare function ManifestItemFromJSON(json: any): ManifestItem;
1318
- declare function ManifestItemFromJSONTyped(json: any, ignoreDiscriminator: boolean): ManifestItem;
1319
- declare function ManifestItemToJSON(json: any): ManifestItem;
1320
- declare function ManifestItemToJSONTyped(value?: ManifestItem | null, ignoreDiscriminator?: boolean): any;
1095
+ declare const GetActivityInfo200ResponseDataTypeEnum: {
1096
+ readonly SIGNIN: "signin";
1097
+ readonly LOTTERY: "lottery";
1098
+ readonly REDPACK: "redpack";
1099
+ readonly COUPON: "coupon";
1100
+ readonly CUSTOM: "custom";
1101
+ };
1102
+ type GetActivityInfo200ResponseDataTypeEnum = typeof GetActivityInfo200ResponseDataTypeEnum[keyof typeof GetActivityInfo200ResponseDataTypeEnum];
1103
+ declare const GetActivityInfo200ResponseDataStatusEnum: {
1104
+ readonly ACTIVE: "active";
1105
+ readonly ENDED: "ended";
1106
+ };
1107
+ type GetActivityInfo200ResponseDataStatusEnum = typeof GetActivityInfo200ResponseDataStatusEnum[keyof typeof GetActivityInfo200ResponseDataStatusEnum];
1321
1108
 
1322
1109
  /**
1323
- * DJV Low-code Platform - User API
1324
- * DJV 低代码平台用户端 API(数据面),用于: - 页面解析(Page Resolve) - 动作执行(Action Gateway) - 数据查询(Data Proxy) - 埋点上报(Track) - 活动状态查询
1110
+ * DJVLC User API
1111
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
1325
1112
  *
1326
1113
  * The version of the OpenAPI document: 1.0.0
1327
- * Contact: djv@example.com
1114
+ * Contact: dev@djvlc.com
1328
1115
  *
1329
1116
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1330
1117
  * https://openapi-generator.tech
@@ -1332,102 +1119,102 @@ declare function ManifestItemToJSONTyped(value?: ManifestItem | null, ignoreDisc
1332
1119
  */
1333
1120
 
1334
1121
  /**
1335
- * 页面 Manifest(组件版本清单)
1122
+ *
1336
1123
  * @export
1337
- * @interface PageManifest
1124
+ * @interface GetActivityInfo200Response
1338
1125
  */
1339
- interface PageManifest {
1340
- /**
1341
- * Manifest 版本
1342
- * @type {string}
1343
- * @memberof PageManifest
1344
- */
1345
- manifestVersion: string;
1346
- /**
1347
- * 内容哈希
1348
- * @type {string}
1349
- * @memberof PageManifest
1350
- */
1351
- contentHash: string;
1352
- /**
1353
- * 运行时版本
1354
- * @type {string}
1355
- * @memberof PageManifest
1356
- */
1357
- runtimeVersion: string;
1126
+ interface GetActivityInfo200Response {
1358
1127
  /**
1359
- * 组件清单
1360
- * @type {Array<ManifestItem>}
1361
- * @memberof PageManifest
1128
+ *
1129
+ * @type {boolean}
1130
+ * @memberof GetActivityInfo200Response
1362
1131
  */
1363
- components: Array<ManifestItem>;
1132
+ 'success'?: boolean;
1364
1133
  /**
1365
- * 生成时间
1366
- * @type {string}
1367
- * @memberof PageManifest
1134
+ *
1135
+ * @type {GetActivityInfo200ResponseData}
1136
+ * @memberof GetActivityInfo200Response
1368
1137
  */
1369
- generatedAt: string;
1138
+ 'data'?: GetActivityInfo200ResponseData;
1370
1139
  }
1371
- /**
1372
- * Check if a given object implements the PageManifest interface.
1373
- */
1374
- declare function instanceOfPageManifest(value: object): value is PageManifest;
1375
- declare function PageManifestFromJSON(json: any): PageManifest;
1376
- declare function PageManifestFromJSONTyped(json: any, ignoreDiscriminator: boolean): PageManifest;
1377
- declare function PageManifestToJSON(json: any): PageManifest;
1378
- declare function PageManifestToJSONTyped(value?: PageManifest | null, ignoreDiscriminator?: boolean): any;
1379
1140
 
1380
1141
  /**
1381
- * DJV Low-code Platform - User API
1382
- * DJV 低代码平台用户端 API(数据面),用于: - 页面解析(Page Resolve) - 动作执行(Action Gateway) - 数据查询(Data Proxy) - 埋点上报(Track) - 活动状态查询
1142
+ * DJVLC User API
1143
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
1383
1144
  *
1384
1145
  * The version of the OpenAPI document: 1.0.0
1385
- * Contact: djv@example.com
1146
+ * Contact: dev@djvlc.com
1386
1147
  *
1387
1148
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1388
1149
  * https://openapi-generator.tech
1389
1150
  * Do not edit the class manually.
1390
1151
  */
1391
1152
  /**
1392
- * 上报配置
1153
+ *
1393
1154
  * @export
1394
- * @interface RuntimeConfigReportConfig
1155
+ * @interface GetActivityState200ResponseData
1395
1156
  */
1396
- interface RuntimeConfigReportConfig {
1157
+ interface GetActivityState200ResponseData {
1397
1158
  /**
1398
- *
1159
+ * 活动 ID
1160
+ * @type {string}
1161
+ * @memberof GetActivityState200ResponseData
1162
+ */
1163
+ 'activityId': string;
1164
+ /**
1165
+ * 用户 ID
1166
+ * @type {string}
1167
+ * @memberof GetActivityState200ResponseData
1168
+ */
1169
+ 'userId': string;
1170
+ /**
1171
+ * 是否已参与
1399
1172
  * @type {boolean}
1400
- * @memberof RuntimeConfigReportConfig
1173
+ * @memberof GetActivityState200ResponseData
1401
1174
  */
1402
- enabled?: boolean;
1175
+ 'participated'?: boolean;
1403
1176
  /**
1404
- *
1177
+ * 参与时间
1178
+ * @type {string}
1179
+ * @memberof GetActivityState200ResponseData
1180
+ */
1181
+ 'participatedAt'?: string;
1182
+ /**
1183
+ * 剩余抽奖次数
1405
1184
  * @type {number}
1406
- * @memberof RuntimeConfigReportConfig
1185
+ * @memberof GetActivityState200ResponseData
1407
1186
  */
1408
- sampleRate?: number;
1187
+ 'remainingChances'?: number;
1409
1188
  /**
1410
- *
1411
- * @type {string}
1412
- * @memberof RuntimeConfigReportConfig
1189
+ * 已获得奖励数
1190
+ * @type {number}
1191
+ * @memberof GetActivityState200ResponseData
1413
1192
  */
1414
- endpoint?: string;
1193
+ 'totalRewards'?: number;
1194
+ /**
1195
+ * 活动进度
1196
+ * @type {{ [key: string]: any; }}
1197
+ * @memberof GetActivityState200ResponseData
1198
+ */
1199
+ 'progress'?: {
1200
+ [key: string]: any;
1201
+ };
1202
+ /**
1203
+ * 自定义数据
1204
+ * @type {{ [key: string]: any; }}
1205
+ * @memberof GetActivityState200ResponseData
1206
+ */
1207
+ 'customData'?: {
1208
+ [key: string]: any;
1209
+ };
1415
1210
  }
1416
- /**
1417
- * Check if a given object implements the RuntimeConfigReportConfig interface.
1418
- */
1419
- declare function instanceOfRuntimeConfigReportConfig(value: object): value is RuntimeConfigReportConfig;
1420
- declare function RuntimeConfigReportConfigFromJSON(json: any): RuntimeConfigReportConfig;
1421
- declare function RuntimeConfigReportConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): RuntimeConfigReportConfig;
1422
- declare function RuntimeConfigReportConfigToJSON(json: any): RuntimeConfigReportConfig;
1423
- declare function RuntimeConfigReportConfigToJSONTyped(value?: RuntimeConfigReportConfig | null, ignoreDiscriminator?: boolean): any;
1424
1211
 
1425
1212
  /**
1426
- * DJV Low-code Platform - User API
1427
- * DJV 低代码平台用户端 API(数据面),用于: - 页面解析(Page Resolve) - 动作执行(Action Gateway) - 数据查询(Data Proxy) - 埋点上报(Track) - 活动状态查询
1213
+ * DJVLC User API
1214
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
1428
1215
  *
1429
1216
  * The version of the OpenAPI document: 1.0.0
1430
- * Contact: djv@example.com
1217
+ * Contact: dev@djvlc.com
1431
1218
  *
1432
1219
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1433
1220
  * https://openapi-generator.tech
@@ -1435,187 +1222,153 @@ declare function RuntimeConfigReportConfigToJSONTyped(value?: RuntimeConfigRepor
1435
1222
  */
1436
1223
 
1437
1224
  /**
1438
- * 运行时配置
1225
+ *
1439
1226
  * @export
1440
- * @interface RuntimeConfig
1227
+ * @interface GetActivityState200Response
1441
1228
  */
1442
- interface RuntimeConfig {
1443
- /**
1444
- * Kill Switch 列表(被关闭的 actionType)
1445
- * @type {Array<string>}
1446
- * @memberof RuntimeConfig
1447
- */
1448
- killSwitches?: Array<string>;
1449
- /**
1450
- * 被阻断的组件列表
1451
- * @type {Array<BlockedComponent>}
1452
- * @memberof RuntimeConfig
1453
- */
1454
- blockedComponents?: Array<BlockedComponent>;
1455
- /**
1456
- * 特性开关
1457
- * @type {{ [key: string]: boolean; }}
1458
- * @memberof RuntimeConfig
1459
- */
1460
- features?: {
1461
- [key: string]: boolean;
1462
- };
1229
+ interface GetActivityState200Response {
1463
1230
  /**
1464
- * 是否开启调试模式
1231
+ *
1465
1232
  * @type {boolean}
1466
- * @memberof RuntimeConfig
1233
+ * @memberof GetActivityState200Response
1467
1234
  */
1468
- debug?: boolean;
1235
+ 'success'?: boolean;
1469
1236
  /**
1470
1237
  *
1471
- * @type {RuntimeConfigReportConfig}
1472
- * @memberof RuntimeConfig
1238
+ * @type {GetActivityState200ResponseData}
1239
+ * @memberof GetActivityState200Response
1473
1240
  */
1474
- reportConfig?: RuntimeConfigReportConfig;
1241
+ 'data'?: GetActivityState200ResponseData;
1475
1242
  }
1476
- /**
1477
- * Check if a given object implements the RuntimeConfig interface.
1478
- */
1479
- declare function instanceOfRuntimeConfig(value: object): value is RuntimeConfig;
1480
- declare function RuntimeConfigFromJSON(json: any): RuntimeConfig;
1481
- declare function RuntimeConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): RuntimeConfig;
1482
- declare function RuntimeConfigToJSON(json: any): RuntimeConfig;
1483
- declare function RuntimeConfigToJSONTyped(value?: RuntimeConfig | null, ignoreDiscriminator?: boolean): any;
1484
1243
 
1485
1244
  /**
1486
- * DJV Low-code Platform - User API
1487
- * DJV 低代码平台用户端 API(数据面),用于: - 页面解析(Page Resolve) - 动作执行(Action Gateway) - 数据查询(Data Proxy) - 埋点上报(Track) - 活动状态查询
1245
+ * DJVLC User API
1246
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
1488
1247
  *
1489
1248
  * The version of the OpenAPI document: 1.0.0
1490
- * Contact: djv@example.com
1249
+ * Contact: dev@djvlc.com
1491
1250
  *
1492
1251
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1493
1252
  * https://openapi-generator.tech
1494
1253
  * Do not edit the class manually.
1495
1254
  */
1496
-
1497
1255
  /**
1498
- * 页面解析结果
1256
+ *
1499
1257
  * @export
1500
- * @interface PageResolveResult
1258
+ * @interface GetClaimRecords200ResponseDataInner
1501
1259
  */
1502
- interface PageResolveResult {
1260
+ interface GetClaimRecords200ResponseDataInner {
1503
1261
  /**
1504
- * 页面 UID
1262
+ * 记录 ID
1505
1263
  * @type {string}
1506
- * @memberof PageResolveResult
1264
+ * @memberof GetClaimRecords200ResponseDataInner
1507
1265
  */
1508
- pageUid: string;
1266
+ 'id': string;
1509
1267
  /**
1510
- * 页面版本 ID
1268
+ * 活动 ID
1511
1269
  * @type {string}
1512
- * @memberof PageResolveResult
1270
+ * @memberof GetClaimRecords200ResponseDataInner
1513
1271
  */
1514
- pageVersionId: string;
1272
+ 'activityId'?: string;
1515
1273
  /**
1516
- * 页面 Schema(完整 JSON)
1517
- * @type {object}
1518
- * @memberof PageResolveResult
1274
+ * 奖励类型
1275
+ * @type {string}
1276
+ * @memberof GetClaimRecords200ResponseDataInner
1519
1277
  */
1520
- pageJson: object;
1278
+ 'rewardType': string;
1521
1279
  /**
1522
- *
1523
- * @type {PageManifest}
1524
- * @memberof PageResolveResult
1280
+ * 奖励名称
1281
+ * @type {string}
1282
+ * @memberof GetClaimRecords200ResponseDataInner
1525
1283
  */
1526
- manifest: PageManifest;
1284
+ 'rewardName'?: string;
1527
1285
  /**
1528
- *
1529
- * @type {RuntimeConfig}
1530
- * @memberof PageResolveResult
1286
+ * 奖励值
1287
+ * @type {number}
1288
+ * @memberof GetClaimRecords200ResponseDataInner
1531
1289
  */
1532
- runtimeConfig: RuntimeConfig;
1290
+ 'rewardValue'?: number;
1533
1291
  /**
1534
- * 运行时版本
1292
+ * 领取状态
1535
1293
  * @type {string}
1536
- * @memberof PageResolveResult
1294
+ * @memberof GetClaimRecords200ResponseDataInner
1537
1295
  */
1538
- runtimeVersion: string;
1296
+ 'status': GetClaimRecords200ResponseDataInnerStatusEnum;
1539
1297
  /**
1540
- * 是否为预览模式
1541
- * @type {boolean}
1542
- * @memberof PageResolveResult
1298
+ * 创建时间
1299
+ * @type {string}
1300
+ * @memberof GetClaimRecords200ResponseDataInner
1301
+ */
1302
+ 'createdAt': string;
1303
+ /**
1304
+ * 领取时间
1305
+ * @type {string}
1306
+ * @memberof GetClaimRecords200ResponseDataInner
1307
+ */
1308
+ 'claimedAt'?: string;
1309
+ /**
1310
+ * 过期时间
1311
+ * @type {string}
1312
+ * @memberof GetClaimRecords200ResponseDataInner
1543
1313
  */
1544
- isPreview?: boolean;
1314
+ 'expiresAt'?: string;
1545
1315
  }
1546
- /**
1547
- * Check if a given object implements the PageResolveResult interface.
1548
- */
1549
- declare function instanceOfPageResolveResult(value: object): value is PageResolveResult;
1550
- declare function PageResolveResultFromJSON(json: any): PageResolveResult;
1551
- declare function PageResolveResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): PageResolveResult;
1552
- declare function PageResolveResultToJSON(json: any): PageResolveResult;
1553
- declare function PageResolveResultToJSONTyped(value?: PageResolveResult | null, ignoreDiscriminator?: boolean): any;
1316
+ declare const GetClaimRecords200ResponseDataInnerStatusEnum: {
1317
+ readonly PENDING: "pending";
1318
+ readonly CLAIMED: "claimed";
1319
+ readonly EXPIRED: "expired";
1320
+ };
1321
+ type GetClaimRecords200ResponseDataInnerStatusEnum = typeof GetClaimRecords200ResponseDataInnerStatusEnum[keyof typeof GetClaimRecords200ResponseDataInnerStatusEnum];
1554
1322
 
1555
1323
  /**
1556
- * DJV Low-code Platform - User API
1557
- * DJV 低代码平台用户端 API(数据面),用于: - 页面解析(Page Resolve) - 动作执行(Action Gateway) - 数据查询(Data Proxy) - 埋点上报(Track) - 活动状态查询
1324
+ * DJVLC User API
1325
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
1558
1326
  *
1559
1327
  * The version of the OpenAPI document: 1.0.0
1560
- * Contact: djv@example.com
1328
+ * Contact: dev@djvlc.com
1561
1329
  *
1562
1330
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1563
1331
  * https://openapi-generator.tech
1564
1332
  * Do not edit the class manually.
1565
1333
  */
1566
-
1567
1334
  /**
1568
- * 页面解析响应
1335
+ *
1569
1336
  * @export
1570
- * @interface PageResolveResponse
1337
+ * @interface GetClaimRecords200ResponseMeta
1571
1338
  */
1572
- interface PageResolveResponse {
1339
+ interface GetClaimRecords200ResponseMeta {
1573
1340
  /**
1574
- *
1575
- * @type {boolean}
1576
- * @memberof PageResolveResponse
1341
+ * 当前页码
1342
+ * @type {number}
1343
+ * @memberof GetClaimRecords200ResponseMeta
1577
1344
  */
1578
- success: boolean;
1345
+ 'page': number;
1579
1346
  /**
1580
- *
1581
- * @type {PageResolveResult}
1582
- * @memberof PageResolveResponse
1583
- */
1584
- data?: PageResolveResult;
1585
- /**
1586
- *
1347
+ * 每页数量
1587
1348
  * @type {number}
1588
- * @memberof PageResolveResponse
1349
+ * @memberof GetClaimRecords200ResponseMeta
1589
1350
  */
1590
- code?: number;
1351
+ 'limit': number;
1591
1352
  /**
1592
- *
1593
- * @type {string}
1594
- * @memberof PageResolveResponse
1353
+ * 总记录数
1354
+ * @type {number}
1355
+ * @memberof GetClaimRecords200ResponseMeta
1595
1356
  */
1596
- message?: string;
1357
+ 'total': number;
1597
1358
  /**
1598
- *
1599
- * @type {string}
1600
- * @memberof PageResolveResponse
1359
+ * 总页数
1360
+ * @type {number}
1361
+ * @memberof GetClaimRecords200ResponseMeta
1601
1362
  */
1602
- traceId?: string;
1363
+ 'totalPages': number;
1603
1364
  }
1604
- /**
1605
- * Check if a given object implements the PageResolveResponse interface.
1606
- */
1607
- declare function instanceOfPageResolveResponse(value: object): value is PageResolveResponse;
1608
- declare function PageResolveResponseFromJSON(json: any): PageResolveResponse;
1609
- declare function PageResolveResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PageResolveResponse;
1610
- declare function PageResolveResponseToJSON(json: any): PageResolveResponse;
1611
- declare function PageResolveResponseToJSONTyped(value?: PageResolveResponse | null, ignoreDiscriminator?: boolean): any;
1612
1365
 
1613
1366
  /**
1614
- * DJV Low-code Platform - User API
1615
- * DJV 低代码平台用户端 API(数据面),用于: - 页面解析(Page Resolve) - 动作执行(Action Gateway) - 数据查询(Data Proxy) - 埋点上报(Track) - 活动状态查询
1367
+ * DJVLC User API
1368
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
1616
1369
  *
1617
1370
  * The version of the OpenAPI document: 1.0.0
1618
- * Contact: djv@example.com
1371
+ * Contact: dev@djvlc.com
1619
1372
  *
1620
1373
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1621
1374
  * https://openapi-generator.tech
@@ -1625,77 +1378,117 @@ declare function PageResolveResponseToJSONTyped(value?: PageResolveResponse | nu
1625
1378
  /**
1626
1379
  *
1627
1380
  * @export
1628
- * @interface QueryDataBatch200Response
1381
+ * @interface GetClaimRecords200Response
1629
1382
  */
1630
- interface QueryDataBatch200Response {
1383
+ interface GetClaimRecords200Response {
1631
1384
  /**
1632
1385
  *
1633
1386
  * @type {boolean}
1634
- * @memberof QueryDataBatch200Response
1387
+ * @memberof GetClaimRecords200Response
1635
1388
  */
1636
- success: boolean;
1389
+ 'success'?: boolean;
1637
1390
  /**
1638
1391
  *
1639
- * @type {Array<DataQueryResponse>}
1640
- * @memberof QueryDataBatch200Response
1392
+ * @type {Array<GetClaimRecords200ResponseDataInner>}
1393
+ * @memberof GetClaimRecords200Response
1641
1394
  */
1642
- data?: Array<DataQueryResponse>;
1395
+ 'data'?: Array<GetClaimRecords200ResponseDataInner>;
1643
1396
  /**
1644
1397
  *
1645
- * @type {string}
1646
- * @memberof QueryDataBatch200Response
1398
+ * @type {GetClaimRecords200ResponseMeta}
1399
+ * @memberof GetClaimRecords200Response
1647
1400
  */
1648
- traceId?: string;
1401
+ 'meta'?: GetClaimRecords200ResponseMeta;
1649
1402
  }
1650
- /**
1651
- * Check if a given object implements the QueryDataBatch200Response interface.
1652
- */
1653
- declare function instanceOfQueryDataBatch200Response(value: object): value is QueryDataBatch200Response;
1654
- declare function QueryDataBatch200ResponseFromJSON(json: any): QueryDataBatch200Response;
1655
- declare function QueryDataBatch200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): QueryDataBatch200Response;
1656
- declare function QueryDataBatch200ResponseToJSON(json: any): QueryDataBatch200Response;
1657
- declare function QueryDataBatch200ResponseToJSONTyped(value?: QueryDataBatch200Response | null, ignoreDiscriminator?: boolean): any;
1658
1403
 
1659
1404
  /**
1660
- * DJV Low-code Platform - User API
1661
- * DJV 低代码平台用户端 API(数据面),用于: - 页面解析(Page Resolve) - 动作执行(Action Gateway) - 数据查询(Data Proxy) - 埋点上报(Track) - 活动状态查询
1405
+ * DJVLC User API
1406
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
1662
1407
  *
1663
1408
  * The version of the OpenAPI document: 1.0.0
1664
- * Contact: djv@example.com
1409
+ * Contact: dev@djvlc.com
1665
1410
  *
1666
1411
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1667
1412
  * https://openapi-generator.tech
1668
1413
  * Do not edit the class manually.
1669
1414
  */
1670
-
1671
1415
  /**
1672
1416
  *
1673
1417
  * @export
1674
- * @interface QueryDataBatchRequest
1418
+ * @interface GetLotteryRecords200ResponseDataInner
1675
1419
  */
1676
- interface QueryDataBatchRequest {
1420
+ interface GetLotteryRecords200ResponseDataInner {
1421
+ /**
1422
+ * 记录 ID
1423
+ * @type {string}
1424
+ * @memberof GetLotteryRecords200ResponseDataInner
1425
+ */
1426
+ 'id': string;
1427
+ /**
1428
+ * 活动 ID
1429
+ * @type {string}
1430
+ * @memberof GetLotteryRecords200ResponseDataInner
1431
+ */
1432
+ 'activityId'?: string;
1433
+ /**
1434
+ * 奖品 ID
1435
+ * @type {string}
1436
+ * @memberof GetLotteryRecords200ResponseDataInner
1437
+ */
1438
+ 'prizeId': string;
1439
+ /**
1440
+ * 奖品名称
1441
+ * @type {string}
1442
+ * @memberof GetLotteryRecords200ResponseDataInner
1443
+ */
1444
+ 'prizeName'?: string;
1445
+ /**
1446
+ * 奖品类型
1447
+ * @type {string}
1448
+ * @memberof GetLotteryRecords200ResponseDataInner
1449
+ */
1450
+ 'prizeType'?: GetLotteryRecords200ResponseDataInnerPrizeTypeEnum;
1677
1451
  /**
1678
- * 查询列表
1679
- * @type {Array<DataQueryRequest>}
1680
- * @memberof QueryDataBatchRequest
1452
+ * 状态
1453
+ * @type {string}
1454
+ * @memberof GetLotteryRecords200ResponseDataInner
1455
+ */
1456
+ 'status': GetLotteryRecords200ResponseDataInnerStatusEnum;
1457
+ /**
1458
+ * 抽奖时间
1459
+ * @type {string}
1460
+ * @memberof GetLotteryRecords200ResponseDataInner
1681
1461
  */
1682
- queries: Array<DataQueryRequest>;
1462
+ 'createdAt': string;
1463
+ /**
1464
+ * 领取时间
1465
+ * @type {string}
1466
+ * @memberof GetLotteryRecords200ResponseDataInner
1467
+ */
1468
+ 'claimedAt'?: string;
1683
1469
  }
1684
- /**
1685
- * Check if a given object implements the QueryDataBatchRequest interface.
1686
- */
1687
- declare function instanceOfQueryDataBatchRequest(value: object): value is QueryDataBatchRequest;
1688
- declare function QueryDataBatchRequestFromJSON(json: any): QueryDataBatchRequest;
1689
- declare function QueryDataBatchRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): QueryDataBatchRequest;
1690
- declare function QueryDataBatchRequestToJSON(json: any): QueryDataBatchRequest;
1691
- declare function QueryDataBatchRequestToJSONTyped(value?: QueryDataBatchRequest | null, ignoreDiscriminator?: boolean): any;
1470
+ declare const GetLotteryRecords200ResponseDataInnerPrizeTypeEnum: {
1471
+ readonly PHYSICAL: "physical";
1472
+ readonly VIRTUAL: "virtual";
1473
+ readonly COUPON: "coupon";
1474
+ readonly POINTS: "points";
1475
+ readonly NONE: "none";
1476
+ };
1477
+ type GetLotteryRecords200ResponseDataInnerPrizeTypeEnum = typeof GetLotteryRecords200ResponseDataInnerPrizeTypeEnum[keyof typeof GetLotteryRecords200ResponseDataInnerPrizeTypeEnum];
1478
+ declare const GetLotteryRecords200ResponseDataInnerStatusEnum: {
1479
+ readonly WON: "won";
1480
+ readonly NOT_WON: "notWon";
1481
+ readonly CLAIMED: "claimed";
1482
+ readonly SHIPPED: "shipped";
1483
+ };
1484
+ type GetLotteryRecords200ResponseDataInnerStatusEnum = typeof GetLotteryRecords200ResponseDataInnerStatusEnum[keyof typeof GetLotteryRecords200ResponseDataInnerStatusEnum];
1692
1485
 
1693
1486
  /**
1694
- * DJV Low-code Platform - User API
1695
- * DJV 低代码平台用户端 API(数据面),用于: - 页面解析(Page Resolve) - 动作执行(Action Gateway) - 数据查询(Data Proxy) - 埋点上报(Track) - 活动状态查询
1487
+ * DJVLC User API
1488
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
1696
1489
  *
1697
1490
  * The version of the OpenAPI document: 1.0.0
1698
- * Contact: djv@example.com
1491
+ * Contact: dev@djvlc.com
1699
1492
  *
1700
1493
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1701
1494
  * https://openapi-generator.tech
@@ -1705,43 +1498,35 @@ declare function QueryDataBatchRequestToJSONTyped(value?: QueryDataBatchRequest
1705
1498
  /**
1706
1499
  *
1707
1500
  * @export
1708
- * @interface ResolvePageBatch200Response
1501
+ * @interface GetLotteryRecords200Response
1709
1502
  */
1710
- interface ResolvePageBatch200Response {
1503
+ interface GetLotteryRecords200Response {
1711
1504
  /**
1712
1505
  *
1713
1506
  * @type {boolean}
1714
- * @memberof ResolvePageBatch200Response
1507
+ * @memberof GetLotteryRecords200Response
1715
1508
  */
1716
- success: boolean;
1509
+ 'success'?: boolean;
1717
1510
  /**
1718
1511
  *
1719
- * @type {Array<PageResolveResult>}
1720
- * @memberof ResolvePageBatch200Response
1512
+ * @type {Array<GetLotteryRecords200ResponseDataInner>}
1513
+ * @memberof GetLotteryRecords200Response
1721
1514
  */
1722
- data?: Array<PageResolveResult>;
1515
+ 'data'?: Array<GetLotteryRecords200ResponseDataInner>;
1723
1516
  /**
1724
1517
  *
1725
- * @type {string}
1726
- * @memberof ResolvePageBatch200Response
1518
+ * @type {GetClaimRecords200ResponseMeta}
1519
+ * @memberof GetLotteryRecords200Response
1727
1520
  */
1728
- traceId?: string;
1521
+ 'meta'?: GetClaimRecords200ResponseMeta;
1729
1522
  }
1730
- /**
1731
- * Check if a given object implements the ResolvePageBatch200Response interface.
1732
- */
1733
- declare function instanceOfResolvePageBatch200Response(value: object): value is ResolvePageBatch200Response;
1734
- declare function ResolvePageBatch200ResponseFromJSON(json: any): ResolvePageBatch200Response;
1735
- declare function ResolvePageBatch200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResolvePageBatch200Response;
1736
- declare function ResolvePageBatch200ResponseToJSON(json: any): ResolvePageBatch200Response;
1737
- declare function ResolvePageBatch200ResponseToJSONTyped(value?: ResolvePageBatch200Response | null, ignoreDiscriminator?: boolean): any;
1738
1523
 
1739
1524
  /**
1740
- * DJV Low-code Platform - User API
1741
- * DJV 低代码平台用户端 API(数据面),用于: - 页面解析(Page Resolve) - 动作执行(Action Gateway) - 数据查询(Data Proxy) - 埋点上报(Track) - 活动状态查询
1525
+ * DJVLC User API
1526
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
1742
1527
  *
1743
1528
  * The version of the OpenAPI document: 1.0.0
1744
- * Contact: djv@example.com
1529
+ * Contact: dev@djvlc.com
1745
1530
  *
1746
1531
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1747
1532
  * https://openapi-generator.tech
@@ -1750,172 +1535,99 @@ declare function ResolvePageBatch200ResponseToJSONTyped(value?: ResolvePageBatch
1750
1535
  /**
1751
1536
  *
1752
1537
  * @export
1753
- * @interface ResolvePageBatchRequest
1538
+ * @interface GetPage200ResponseDataMeta
1754
1539
  */
1755
- interface ResolvePageBatchRequest {
1540
+ interface GetPage200ResponseDataMeta {
1756
1541
  /**
1757
- * 页面 UID 列表
1758
- * @type {Array<string>}
1759
- * @memberof ResolvePageBatchRequest
1542
+ * 页面标题
1543
+ * @type {string}
1544
+ * @memberof GetPage200ResponseDataMeta
1760
1545
  */
1761
- pageUids: Array<string>;
1546
+ 'title'?: string;
1762
1547
  /**
1763
- *
1548
+ * 页面描述
1764
1549
  * @type {string}
1765
- * @memberof ResolvePageBatchRequest
1550
+ * @memberof GetPage200ResponseDataMeta
1766
1551
  */
1767
- channel?: ResolvePageBatchRequestChannelEnum;
1552
+ 'description'?: string;
1768
1553
  }
1769
- /**
1770
- * @export
1771
- */
1772
- declare const ResolvePageBatchRequestChannelEnum: {
1773
- readonly preview: "preview";
1774
- readonly prod: "prod";
1775
- readonly gray: "gray";
1776
- };
1777
- type ResolvePageBatchRequestChannelEnum = typeof ResolvePageBatchRequestChannelEnum[keyof typeof ResolvePageBatchRequestChannelEnum];
1778
- /**
1779
- * Check if a given object implements the ResolvePageBatchRequest interface.
1780
- */
1781
- declare function instanceOfResolvePageBatchRequest(value: object): value is ResolvePageBatchRequest;
1782
- declare function ResolvePageBatchRequestFromJSON(json: any): ResolvePageBatchRequest;
1783
- declare function ResolvePageBatchRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResolvePageBatchRequest;
1784
- declare function ResolvePageBatchRequestToJSON(json: any): ResolvePageBatchRequest;
1785
- declare function ResolvePageBatchRequestToJSONTyped(value?: ResolvePageBatchRequest | null, ignoreDiscriminator?: boolean): any;
1786
1554
 
1787
1555
  /**
1788
- * DJV Low-code Platform - User API
1789
- * DJV 低代码平台用户端 API(数据面),用于: - 页面解析(Page Resolve) - 动作执行(Action Gateway) - 数据查询(Data Proxy) - 埋点上报(Track) - 活动状态查询
1556
+ * DJVLC User API
1557
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
1790
1558
  *
1791
1559
  * The version of the OpenAPI document: 1.0.0
1792
- * Contact: djv@example.com
1560
+ * Contact: dev@djvlc.com
1793
1561
  *
1794
1562
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1795
1563
  * https://openapi-generator.tech
1796
1564
  * Do not edit the class manually.
1797
1565
  */
1566
+
1798
1567
  /**
1799
- * 追踪上下文,贯穿全链路
1568
+ *
1800
1569
  * @export
1801
- * @interface TraceContext
1570
+ * @interface GetPage200ResponseData
1802
1571
  */
1803
- interface TraceContext {
1572
+ interface GetPage200ResponseData {
1804
1573
  /**
1805
- * 追踪 ID(OpenTelemetry traceparent)
1574
+ * 页面 ID
1806
1575
  * @type {string}
1807
- * @memberof TraceContext
1576
+ * @memberof GetPage200ResponseData
1808
1577
  */
1809
- traceId?: string;
1578
+ 'pageId': string;
1810
1579
  /**
1811
- * Span ID
1580
+ * 页面版本
1812
1581
  * @type {string}
1813
- * @memberof TraceContext
1582
+ * @memberof GetPage200ResponseData
1814
1583
  */
1815
- spanId?: string;
1584
+ 'version': string;
1816
1585
  /**
1817
- * 页面版本 ID
1818
- * @type {string}
1819
- * @memberof TraceContext
1820
- */
1821
- pageVersionId?: string;
1822
- /**
1823
- * 组件版本
1824
- * @type {string}
1825
- * @memberof TraceContext
1586
+ *
1587
+ * @type {GetPage200ResponseDataMeta}
1588
+ * @memberof GetPage200ResponseData
1826
1589
  */
1827
- componentVersion?: string;
1590
+ 'meta': GetPage200ResponseDataMeta;
1828
1591
  /**
1829
- * 动作实例 ID
1592
+ * 完整性哈希
1830
1593
  * @type {string}
1831
- * @memberof TraceContext
1594
+ * @memberof GetPage200ResponseData
1832
1595
  */
1833
- actionId?: string;
1596
+ 'integrity'?: string;
1834
1597
  }
1835
- /**
1836
- * Check if a given object implements the TraceContext interface.
1837
- */
1838
- declare function instanceOfTraceContext(value: object): value is TraceContext;
1839
- declare function TraceContextFromJSON(json: any): TraceContext;
1840
- declare function TraceContextFromJSONTyped(json: any, ignoreDiscriminator: boolean): TraceContext;
1841
- declare function TraceContextToJSON(json: any): TraceContext;
1842
- declare function TraceContextToJSONTyped(value?: TraceContext | null, ignoreDiscriminator?: boolean): any;
1843
1598
 
1844
1599
  /**
1845
- * DJV Low-code Platform - User API
1846
- * DJV 低代码平台用户端 API(数据面),用于: - 页面解析(Page Resolve) - 动作执行(Action Gateway) - 数据查询(Data Proxy) - 埋点上报(Track) - 活动状态查询
1600
+ * DJVLC User API
1601
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
1847
1602
  *
1848
1603
  * The version of the OpenAPI document: 1.0.0
1849
- * Contact: djv@example.com
1604
+ * Contact: dev@djvlc.com
1850
1605
  *
1851
1606
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1852
1607
  * https://openapi-generator.tech
1853
1608
  * Do not edit the class manually.
1854
1609
  */
1610
+
1855
1611
  /**
1856
- * 埋点上下文
1612
+ *
1857
1613
  * @export
1858
- * @interface TrackContext
1614
+ * @interface GetPage200Response
1859
1615
  */
1860
- interface TrackContext {
1861
- /**
1862
- * 页面版本 ID
1863
- * @type {string}
1864
- * @memberof TrackContext
1865
- */
1866
- pageVersionId?: string;
1867
- /**
1868
- * 组件版本
1869
- * @type {string}
1870
- * @memberof TrackContext
1871
- */
1872
- componentVersion?: string;
1873
- /**
1874
- * 动作 ID
1875
- * @type {string}
1876
- * @memberof TrackContext
1877
- */
1878
- actionId?: string;
1879
- /**
1880
- * 会话 ID
1881
- * @type {string}
1882
- * @memberof TrackContext
1883
- */
1884
- sessionId?: string;
1885
- /**
1886
- * 设备 ID
1887
- * @type {string}
1888
- * @memberof TrackContext
1889
- */
1890
- deviceId?: string;
1891
- /**
1892
- * 用户 ID
1893
- * @type {string}
1894
- * @memberof TrackContext
1895
- */
1896
- uid?: string;
1616
+ interface GetPage200Response {
1897
1617
  /**
1898
- * 渠道
1899
- * @type {string}
1900
- * @memberof TrackContext
1618
+ *
1619
+ * @type {GetPage200ResponseData}
1620
+ * @memberof GetPage200Response
1901
1621
  */
1902
- channel?: string;
1622
+ 'data': GetPage200ResponseData;
1903
1623
  }
1904
- /**
1905
- * Check if a given object implements the TrackContext interface.
1906
- */
1907
- declare function instanceOfTrackContext(value: object): value is TrackContext;
1908
- declare function TrackContextFromJSON(json: any): TrackContext;
1909
- declare function TrackContextFromJSONTyped(json: any, ignoreDiscriminator: boolean): TrackContext;
1910
- declare function TrackContextToJSON(json: any): TrackContext;
1911
- declare function TrackContextToJSONTyped(value?: TrackContext | null, ignoreDiscriminator?: boolean): any;
1912
1624
 
1913
1625
  /**
1914
- * DJV Low-code Platform - User API
1915
- * DJV 低代码平台用户端 API(数据面),用于: - 页面解析(Page Resolve) - 动作执行(Action Gateway) - 数据查询(Data Proxy) - 埋点上报(Track) - 活动状态查询
1626
+ * DJVLC User API
1627
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
1916
1628
  *
1917
1629
  * The version of the OpenAPI document: 1.0.0
1918
- * Contact: djv@example.com
1630
+ * Contact: dev@djvlc.com
1919
1631
  *
1920
1632
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1921
1633
  * https://openapi-generator.tech
@@ -1923,73 +1635,68 @@ declare function TrackContextToJSONTyped(value?: TrackContext | null, ignoreDisc
1923
1635
  */
1924
1636
 
1925
1637
  /**
1926
- * 埋点事件
1638
+ *
1927
1639
  * @export
1928
- * @interface TrackEvent
1640
+ * @interface GetPage404Response
1929
1641
  */
1930
- interface TrackEvent {
1642
+ interface GetPage404Response {
1931
1643
  /**
1932
- * 事件名称
1644
+ * 错误码
1933
1645
  * @type {string}
1934
- * @memberof TrackEvent
1646
+ * @memberof GetPage404Response
1935
1647
  */
1936
- eventName: string;
1648
+ 'code': string;
1937
1649
  /**
1938
- * 事件类型
1650
+ * 错误消息
1939
1651
  * @type {string}
1940
- * @memberof TrackEvent
1652
+ * @memberof GetPage404Response
1941
1653
  */
1942
- eventType?: TrackEventEventTypeEnum;
1654
+ 'message': string;
1943
1655
  /**
1944
- * 事件参数
1945
- * @type {{ [key: string]: any; }}
1946
- * @memberof TrackEvent
1656
+ * 错误详情
1657
+ * @type {Array<GetPage404ResponseDetailsInner>}
1658
+ * @memberof GetPage404Response
1947
1659
  */
1948
- params?: {
1949
- [key: string]: any;
1950
- };
1660
+ 'details'?: Array<GetPage404ResponseDetailsInner>;
1661
+ }
1662
+
1663
+ /**
1664
+ * DJVLC User API
1665
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
1666
+ *
1667
+ * The version of the OpenAPI document: 1.0.0
1668
+ * Contact: dev@djvlc.com
1669
+ *
1670
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1671
+ * https://openapi-generator.tech
1672
+ * Do not edit the class manually.
1673
+ */
1674
+ /**
1675
+ *
1676
+ * @export
1677
+ * @interface GetSigninCalendar200ResponseDataRecordsInnerReward
1678
+ */
1679
+ interface GetSigninCalendar200ResponseDataRecordsInnerReward {
1951
1680
  /**
1952
- * 事件时间戳(毫秒)
1953
- * @type {number}
1954
- * @memberof TrackEvent
1681
+ *
1682
+ * @type {string}
1683
+ * @memberof GetSigninCalendar200ResponseDataRecordsInnerReward
1955
1684
  */
1956
- timestamp?: number;
1685
+ 'name'?: string;
1957
1686
  /**
1958
1687
  *
1959
- * @type {TrackContext}
1960
- * @memberof TrackEvent
1688
+ * @type {number}
1689
+ * @memberof GetSigninCalendar200ResponseDataRecordsInnerReward
1961
1690
  */
1962
- context?: TrackContext;
1691
+ 'amount'?: number;
1963
1692
  }
1964
- /**
1965
- * @export
1966
- */
1967
- declare const TrackEventEventTypeEnum: {
1968
- readonly page_view: "page_view";
1969
- readonly component_view: "component_view";
1970
- readonly component_click: "component_click";
1971
- readonly action_trigger: "action_trigger";
1972
- readonly action_result: "action_result";
1973
- readonly error: "error";
1974
- readonly performance: "performance";
1975
- readonly custom: "custom";
1976
- };
1977
- type TrackEventEventTypeEnum = typeof TrackEventEventTypeEnum[keyof typeof TrackEventEventTypeEnum];
1978
- /**
1979
- * Check if a given object implements the TrackEvent interface.
1980
- */
1981
- declare function instanceOfTrackEvent(value: object): value is TrackEvent;
1982
- declare function TrackEventFromJSON(json: any): TrackEvent;
1983
- declare function TrackEventFromJSONTyped(json: any, ignoreDiscriminator: boolean): TrackEvent;
1984
- declare function TrackEventToJSON(json: any): TrackEvent;
1985
- declare function TrackEventToJSONTyped(value?: TrackEvent | null, ignoreDiscriminator?: boolean): any;
1986
1693
 
1987
1694
  /**
1988
- * DJV Low-code Platform - User API
1989
- * DJV 低代码平台用户端 API(数据面),用于: - 页面解析(Page Resolve) - 动作执行(Action Gateway) - 数据查询(Data Proxy) - 埋点上报(Track) - 活动状态查询
1695
+ * DJVLC User API
1696
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
1990
1697
  *
1991
1698
  * The version of the OpenAPI document: 1.0.0
1992
- * Contact: djv@example.com
1699
+ * Contact: dev@djvlc.com
1993
1700
  *
1994
1701
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1995
1702
  * https://openapi-generator.tech
@@ -1997,275 +1704,270 @@ declare function TrackEventToJSONTyped(value?: TrackEvent | null, ignoreDiscrimi
1997
1704
  */
1998
1705
 
1999
1706
  /**
2000
- * 埋点上报请求
1707
+ *
2001
1708
  * @export
2002
- * @interface TrackRequest
1709
+ * @interface GetSigninCalendar200ResponseDataRecordsInner
2003
1710
  */
2004
- interface TrackRequest {
1711
+ interface GetSigninCalendar200ResponseDataRecordsInner {
2005
1712
  /**
2006
- * 事件列表
2007
- * @type {Array<TrackEvent>}
2008
- * @memberof TrackRequest
1713
+ *
1714
+ * @type {number}
1715
+ * @memberof GetSigninCalendar200ResponseDataRecordsInner
1716
+ */
1717
+ 'day'?: number;
1718
+ /**
1719
+ *
1720
+ * @type {boolean}
1721
+ * @memberof GetSigninCalendar200ResponseDataRecordsInner
1722
+ */
1723
+ 'signedIn'?: boolean;
1724
+ /**
1725
+ *
1726
+ * @type {GetSigninCalendar200ResponseDataRecordsInnerReward}
1727
+ * @memberof GetSigninCalendar200ResponseDataRecordsInner
2009
1728
  */
2010
- events: Array<TrackEvent>;
1729
+ 'reward'?: GetSigninCalendar200ResponseDataRecordsInnerReward;
2011
1730
  }
2012
- /**
2013
- * Check if a given object implements the TrackRequest interface.
2014
- */
2015
- declare function instanceOfTrackRequest(value: object): value is TrackRequest;
2016
- declare function TrackRequestFromJSON(json: any): TrackRequest;
2017
- declare function TrackRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): TrackRequest;
2018
- declare function TrackRequestToJSON(json: any): TrackRequest;
2019
- declare function TrackRequestToJSONTyped(value?: TrackRequest | null, ignoreDiscriminator?: boolean): any;
2020
1731
 
2021
1732
  /**
2022
- * DJV Low-code Platform - User API
2023
- * DJV 低代码平台用户端 API(数据面),用于: - 页面解析(Page Resolve) - 动作执行(Action Gateway) - 数据查询(Data Proxy) - 埋点上报(Track) - 活动状态查询
1733
+ * DJVLC User API
1734
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
2024
1735
  *
2025
1736
  * The version of the OpenAPI document: 1.0.0
2026
- * Contact: djv@example.com
1737
+ * Contact: dev@djvlc.com
2027
1738
  *
2028
1739
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2029
1740
  * https://openapi-generator.tech
2030
1741
  * Do not edit the class manually.
2031
1742
  */
2032
1743
 
2033
- interface ActionApiExecuteActionRequest {
2034
- actionExecuteRequest: ActionExecuteRequest;
2035
- }
2036
- interface ActionApiExecuteActionBatchOperationRequest {
2037
- executeActionBatchRequest: ExecuteActionBatchRequest;
2038
- }
2039
1744
  /**
2040
- * ActionApi - interface
2041
1745
  *
2042
1746
  * @export
2043
- * @interface ActionApiInterface
1747
+ * @interface GetSigninCalendar200ResponseData
2044
1748
  */
2045
- interface ActionApiInterface {
1749
+ interface GetSigninCalendar200ResponseData {
2046
1750
  /**
2047
- * 所有业务动作的统一入口,包含: - 认证/鉴权 - 风控检查(限流、黑名单) - 幂等处理 - 审计记录
2048
- * @summary 执行动作
2049
- * @param {ActionExecuteRequest} actionExecuteRequest
2050
- * @param {*} [options] Override http request option.
2051
- * @throws {RequiredError}
2052
- * @memberof ActionApiInterface
1751
+ * 年份
1752
+ * @type {number}
1753
+ * @memberof GetSigninCalendar200ResponseData
2053
1754
  */
2054
- executeActionRaw(requestParameters: ActionApiExecuteActionRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ActionExecuteResponse>>;
1755
+ 'year': number;
2055
1756
  /**
2056
- * 所有业务动作的统一入口,包含: - 认证/鉴权 - 风控检查(限流、黑名单) - 幂等处理 - 审计记录
2057
- * 执行动作
1757
+ * 月份
1758
+ * @type {number}
1759
+ * @memberof GetSigninCalendar200ResponseData
2058
1760
  */
2059
- executeAction(requestParameters: ActionApiExecuteActionRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ActionExecuteResponse>;
1761
+ 'month': number;
2060
1762
  /**
2061
- * 批量执行多个动作(原子性不保证)
2062
- * @summary 批量执行动作
2063
- * @param {ExecuteActionBatchRequest} executeActionBatchRequest
2064
- * @param {*} [options] Override http request option.
2065
- * @throws {RequiredError}
2066
- * @memberof ActionApiInterface
1763
+ * 签到记录
1764
+ * @type {Array<GetSigninCalendar200ResponseDataRecordsInner>}
1765
+ * @memberof GetSigninCalendar200ResponseData
2067
1766
  */
2068
- executeActionBatchRaw(requestParameters: ActionApiExecuteActionBatchOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ExecuteActionBatch200Response>>;
1767
+ 'records': Array<GetSigninCalendar200ResponseDataRecordsInner>;
2069
1768
  /**
2070
- * 批量执行多个动作(原子性不保证)
2071
- * 批量执行动作
1769
+ * 连续签到天数
1770
+ * @type {number}
1771
+ * @memberof GetSigninCalendar200ResponseData
1772
+ */
1773
+ 'consecutiveDays'?: number;
1774
+ /**
1775
+ * 本月签到总天数
1776
+ * @type {number}
1777
+ * @memberof GetSigninCalendar200ResponseData
2072
1778
  */
2073
- executeActionBatch(requestParameters: ActionApiExecuteActionBatchOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ExecuteActionBatch200Response>;
1779
+ 'totalDays'?: number;
2074
1780
  }
1781
+
2075
1782
  /**
1783
+ * DJVLC User API
1784
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
1785
+ *
1786
+ * The version of the OpenAPI document: 1.0.0
1787
+ * Contact: dev@djvlc.com
2076
1788
  *
1789
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1790
+ * https://openapi-generator.tech
1791
+ * Do not edit the class manually.
2077
1792
  */
2078
- declare class ActionApi extends BaseAPI implements ActionApiInterface {
2079
- /**
2080
- * 所有业务动作的统一入口,包含: - 认证/鉴权 - 风控检查(限流、黑名单) - 幂等处理 - 审计记录
2081
- * 执行动作
2082
- */
2083
- executeActionRaw(requestParameters: ActionApiExecuteActionRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ActionExecuteResponse>>;
2084
- /**
2085
- * 所有业务动作的统一入口,包含: - 认证/鉴权 - 风控检查(限流、黑名单) - 幂等处理 - 审计记录
2086
- * 执行动作
2087
- */
2088
- executeAction(requestParameters: ActionApiExecuteActionRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ActionExecuteResponse>;
1793
+
1794
+ /**
1795
+ *
1796
+ * @export
1797
+ * @interface GetSigninCalendar200Response
1798
+ */
1799
+ interface GetSigninCalendar200Response {
2089
1800
  /**
2090
- * 批量执行多个动作(原子性不保证)
2091
- * 批量执行动作
1801
+ *
1802
+ * @type {boolean}
1803
+ * @memberof GetSigninCalendar200Response
2092
1804
  */
2093
- executeActionBatchRaw(requestParameters: ActionApiExecuteActionBatchOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ExecuteActionBatch200Response>>;
1805
+ 'success'?: boolean;
2094
1806
  /**
2095
- * 批量执行多个动作(原子性不保证)
2096
- * 批量执行动作
1807
+ *
1808
+ * @type {GetSigninCalendar200ResponseData}
1809
+ * @memberof GetSigninCalendar200Response
2097
1810
  */
2098
- executeActionBatch(requestParameters: ActionApiExecuteActionBatchOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ExecuteActionBatch200Response>;
1811
+ 'data'?: GetSigninCalendar200ResponseData;
2099
1812
  }
2100
1813
 
2101
1814
  /**
2102
- * DJV Low-code Platform - User API
2103
- * DJV 低代码平台用户端 API(数据面),用于: - 页面解析(Page Resolve) - 动作执行(Action Gateway) - 数据查询(Data Proxy) - 埋点上报(Track) - 活动状态查询
1815
+ * DJVLC User API
1816
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
2104
1817
  *
2105
1818
  * The version of the OpenAPI document: 1.0.0
2106
- * Contact: djv@example.com
1819
+ * Contact: dev@djvlc.com
2107
1820
  *
2108
1821
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2109
1822
  * https://openapi-generator.tech
2110
1823
  * Do not edit the class manually.
2111
1824
  */
2112
-
2113
- interface ActivityApiGetActivityStateRequest {
2114
- activityId: string;
2115
- uid?: string;
2116
- }
2117
- interface ActivityApiGetActivityStateBatchOperationRequest {
2118
- getActivityStateBatchRequest: GetActivityStateBatchRequest;
2119
- }
2120
1825
  /**
2121
- * ActivityApi - interface
2122
1826
  *
2123
1827
  * @export
2124
- * @interface ActivityApiInterface
1828
+ * @interface LotteryRecordInfo
2125
1829
  */
2126
- interface ActivityApiInterface {
1830
+ interface LotteryRecordInfo {
2127
1831
  /**
2128
- * 获取用户在指定活动中的状态
2129
- * @summary 查询活动状态
2130
- * @param {string} activityId 活动 ID
2131
- * @param {string} [uid] 用户 ID(未登录时可不传)
2132
- * @param {*} [options] Override http request option.
2133
- * @throws {RequiredError}
2134
- * @memberof ActivityApiInterface
1832
+ * 记录 ID
1833
+ * @type {string}
1834
+ * @memberof LotteryRecordInfo
2135
1835
  */
2136
- getActivityStateRaw(requestParameters: ActivityApiGetActivityStateRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ActivityStateResponse>>;
1836
+ 'id': string;
2137
1837
  /**
2138
- * 获取用户在指定活动中的状态
2139
- * 查询活动状态
1838
+ * 活动 ID
1839
+ * @type {string}
1840
+ * @memberof LotteryRecordInfo
2140
1841
  */
2141
- getActivityState(requestParameters: ActivityApiGetActivityStateRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ActivityStateResponse>;
1842
+ 'activityId'?: string;
2142
1843
  /**
2143
- * 批量获取用户在多个活动中的状态
2144
- * @summary 批量查询活动状态
2145
- * @param {GetActivityStateBatchRequest} getActivityStateBatchRequest
2146
- * @param {*} [options] Override http request option.
2147
- * @throws {RequiredError}
2148
- * @memberof ActivityApiInterface
1844
+ * 奖品 ID
1845
+ * @type {string}
1846
+ * @memberof LotteryRecordInfo
2149
1847
  */
2150
- getActivityStateBatchRaw(requestParameters: ActivityApiGetActivityStateBatchOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetActivityStateBatch200Response>>;
1848
+ 'prizeId': string;
2151
1849
  /**
2152
- * 批量获取用户在多个活动中的状态
2153
- * 批量查询活动状态
1850
+ * 奖品名称
1851
+ * @type {string}
1852
+ * @memberof LotteryRecordInfo
2154
1853
  */
2155
- getActivityStateBatch(requestParameters: ActivityApiGetActivityStateBatchOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetActivityStateBatch200Response>;
2156
- }
2157
- /**
2158
- *
2159
- */
2160
- declare class ActivityApi extends BaseAPI implements ActivityApiInterface {
1854
+ 'prizeName'?: string;
2161
1855
  /**
2162
- * 获取用户在指定活动中的状态
2163
- * 查询活动状态
1856
+ * 奖品类型
1857
+ * @type {string}
1858
+ * @memberof LotteryRecordInfo
2164
1859
  */
2165
- getActivityStateRaw(requestParameters: ActivityApiGetActivityStateRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ActivityStateResponse>>;
1860
+ 'prizeType'?: LotteryRecordInfoPrizeTypeEnum;
2166
1861
  /**
2167
- * 获取用户在指定活动中的状态
2168
- * 查询活动状态
1862
+ * 状态
1863
+ * @type {string}
1864
+ * @memberof LotteryRecordInfo
2169
1865
  */
2170
- getActivityState(requestParameters: ActivityApiGetActivityStateRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ActivityStateResponse>;
1866
+ 'status': LotteryRecordInfoStatusEnum;
2171
1867
  /**
2172
- * 批量获取用户在多个活动中的状态
2173
- * 批量查询活动状态
1868
+ * 抽奖时间
1869
+ * @type {string}
1870
+ * @memberof LotteryRecordInfo
2174
1871
  */
2175
- getActivityStateBatchRaw(requestParameters: ActivityApiGetActivityStateBatchOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetActivityStateBatch200Response>>;
1872
+ 'createdAt': string;
2176
1873
  /**
2177
- * 批量获取用户在多个活动中的状态
2178
- * 批量查询活动状态
1874
+ * 领取时间
1875
+ * @type {string}
1876
+ * @memberof LotteryRecordInfo
2179
1877
  */
2180
- getActivityStateBatch(requestParameters: ActivityApiGetActivityStateBatchOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetActivityStateBatch200Response>;
1878
+ 'claimedAt'?: string;
2181
1879
  }
1880
+ declare const LotteryRecordInfoPrizeTypeEnum: {
1881
+ readonly PHYSICAL: "physical";
1882
+ readonly VIRTUAL: "virtual";
1883
+ readonly COUPON: "coupon";
1884
+ readonly POINTS: "points";
1885
+ readonly NONE: "none";
1886
+ };
1887
+ type LotteryRecordInfoPrizeTypeEnum = typeof LotteryRecordInfoPrizeTypeEnum[keyof typeof LotteryRecordInfoPrizeTypeEnum];
1888
+ declare const LotteryRecordInfoStatusEnum: {
1889
+ readonly WON: "won";
1890
+ readonly NOT_WON: "notWon";
1891
+ readonly CLAIMED: "claimed";
1892
+ readonly SHIPPED: "shipped";
1893
+ };
1894
+ type LotteryRecordInfoStatusEnum = typeof LotteryRecordInfoStatusEnum[keyof typeof LotteryRecordInfoStatusEnum];
2182
1895
 
2183
1896
  /**
2184
- * DJV Low-code Platform - User API
2185
- * DJV 低代码平台用户端 API(数据面),用于: - 页面解析(Page Resolve) - 动作执行(Action Gateway) - 数据查询(Data Proxy) - 埋点上报(Track) - 活动状态查询
1897
+ * DJVLC User API
1898
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
2186
1899
  *
2187
1900
  * The version of the OpenAPI document: 1.0.0
2188
- * Contact: djv@example.com
1901
+ * Contact: dev@djvlc.com
2189
1902
  *
2190
1903
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2191
1904
  * https://openapi-generator.tech
2192
1905
  * Do not edit the class manually.
2193
1906
  */
2194
1907
 
2195
- interface DataApiQueryDataRequest {
2196
- dataQueryRequest: DataQueryRequest;
2197
- }
2198
- interface DataApiQueryDataBatchOperationRequest {
2199
- queryDataBatchRequest: QueryDataBatchRequest;
2200
- }
2201
1908
  /**
2202
- * DataApi - interface
2203
1909
  *
2204
1910
  * @export
2205
- * @interface DataApiInterface
1911
+ * @interface PageResponse
2206
1912
  */
2207
- interface DataApiInterface {
2208
- /**
2209
- * 数据查询代理,支持: - 白名单校验 - 字段裁剪/脱敏 - 缓存 - 审计
2210
- * @summary 查询数据
2211
- * @param {DataQueryRequest} dataQueryRequest
2212
- * @param {*} [options] Override http request option.
2213
- * @throws {RequiredError}
2214
- * @memberof DataApiInterface
2215
- */
2216
- queryDataRaw(requestParameters: DataApiQueryDataRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<DataQueryResponse>>;
2217
- /**
2218
- * 数据查询代理,支持: - 白名单校验 - 字段裁剪/脱敏 - 缓存 - 审计
2219
- * 查询数据
2220
- */
2221
- queryData(requestParameters: DataApiQueryDataRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<DataQueryResponse>;
1913
+ interface PageResponse {
2222
1914
  /**
2223
- * 批量执行多个数据查询
2224
- * @summary 批量查询数据
2225
- * @param {QueryDataBatchRequest} queryDataBatchRequest
2226
- * @param {*} [options] Override http request option.
2227
- * @throws {RequiredError}
2228
- * @memberof DataApiInterface
2229
- */
2230
- queryDataBatchRaw(requestParameters: DataApiQueryDataBatchOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<QueryDataBatch200Response>>;
2231
- /**
2232
- * 批量执行多个数据查询
2233
- * 批量查询数据
1915
+ *
1916
+ * @type {GetPage200ResponseData}
1917
+ * @memberof PageResponse
2234
1918
  */
2235
- queryDataBatch(requestParameters: DataApiQueryDataBatchOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<QueryDataBatch200Response>;
1919
+ 'data': GetPage200ResponseData;
2236
1920
  }
1921
+
1922
+ /**
1923
+ * DJVLC User API
1924
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
1925
+ *
1926
+ * The version of the OpenAPI document: 1.0.0
1927
+ * Contact: dev@djvlc.com
1928
+ *
1929
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
1930
+ * https://openapi-generator.tech
1931
+ * Do not edit the class manually.
1932
+ */
2237
1933
  /**
2238
1934
  *
1935
+ * @export
1936
+ * @interface PaginationMeta
2239
1937
  */
2240
- declare class DataApi extends BaseAPI implements DataApiInterface {
1938
+ interface PaginationMeta {
2241
1939
  /**
2242
- * 数据查询代理,支持: - 白名单校验 - 字段裁剪/脱敏 - 缓存 - 审计
2243
- * 查询数据
1940
+ * 当前页码
1941
+ * @type {number}
1942
+ * @memberof PaginationMeta
2244
1943
  */
2245
- queryDataRaw(requestParameters: DataApiQueryDataRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<DataQueryResponse>>;
1944
+ 'page': number;
2246
1945
  /**
2247
- * 数据查询代理,支持: - 白名单校验 - 字段裁剪/脱敏 - 缓存 - 审计
2248
- * 查询数据
1946
+ * 每页数量
1947
+ * @type {number}
1948
+ * @memberof PaginationMeta
2249
1949
  */
2250
- queryData(requestParameters: DataApiQueryDataRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<DataQueryResponse>;
1950
+ 'limit': number;
2251
1951
  /**
2252
- * 批量执行多个数据查询
2253
- * 批量查询数据
1952
+ * 总记录数
1953
+ * @type {number}
1954
+ * @memberof PaginationMeta
2254
1955
  */
2255
- queryDataBatchRaw(requestParameters: DataApiQueryDataBatchOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<QueryDataBatch200Response>>;
1956
+ 'total': number;
2256
1957
  /**
2257
- * 批量执行多个数据查询
2258
- * 批量查询数据
1958
+ * 总页数
1959
+ * @type {number}
1960
+ * @memberof PaginationMeta
2259
1961
  */
2260
- queryDataBatch(requestParameters: DataApiQueryDataBatchOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<QueryDataBatch200Response>;
1962
+ 'totalPages': number;
2261
1963
  }
2262
1964
 
2263
1965
  /**
2264
- * DJV Low-code Platform - User API
2265
- * DJV 低代码平台用户端 API(数据面),用于: - 页面解析(Page Resolve) - 动作执行(Action Gateway) - 数据查询(Data Proxy) - 埋点上报(Track) - 活动状态查询
1966
+ * DJVLC User API
1967
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
2266
1968
  *
2267
1969
  * The version of the OpenAPI document: 1.0.0
2268
- * Contact: djv@example.com
1970
+ * Contact: dev@djvlc.com
2269
1971
  *
2270
1972
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2271
1973
  * https://openapi-generator.tech
@@ -2273,371 +1975,1384 @@ declare class DataApi extends BaseAPI implements DataApiInterface {
2273
1975
  */
2274
1976
 
2275
1977
  /**
2276
- * HealthApi - interface
2277
1978
  *
2278
1979
  * @export
2279
- * @interface HealthApiInterface
1980
+ * @interface PublicActivityInfo
2280
1981
  */
2281
- interface HealthApiInterface {
2282
- /**
2283
- * 检查服务健康状态
2284
- * @summary 健康检查
2285
- * @param {*} [options] Override http request option.
2286
- * @throws {RequiredError}
2287
- * @memberof HealthApiInterface
2288
- */
2289
- healthRaw(initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<HealthResponse>>;
2290
- /**
2291
- * 检查服务健康状态
2292
- * 健康检查
2293
- */
2294
- health(initOverrides?: RequestInit | InitOverrideFunction): Promise<HealthResponse>;
2295
- /**
2296
- * 检查服务是否存活
2297
- * @summary 存活检查
2298
- * @param {*} [options] Override http request option.
2299
- * @throws {RequiredError}
2300
- * @memberof HealthApiInterface
2301
- */
2302
- livenessRaw(initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<HealthResponse>>;
1982
+ interface PublicActivityInfo {
2303
1983
  /**
2304
- * 检查服务是否存活
2305
- * 存活检查
1984
+ * 活动 ID
1985
+ * @type {string}
1986
+ * @memberof PublicActivityInfo
2306
1987
  */
2307
- liveness(initOverrides?: RequestInit | InitOverrideFunction): Promise<HealthResponse>;
1988
+ 'id': string;
2308
1989
  /**
2309
- * 检查服务是否就绪(可接受流量)
2310
- * @summary 就绪检查
2311
- * @param {*} [options] Override http request option.
2312
- * @throws {RequiredError}
2313
- * @memberof HealthApiInterface
1990
+ * 活动名称
1991
+ * @type {string}
1992
+ * @memberof PublicActivityInfo
2314
1993
  */
2315
- readinessRaw(initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<HealthResponse>>;
1994
+ 'name': string;
2316
1995
  /**
2317
- * 检查服务是否就绪(可接受流量)
2318
- * 就绪检查
1996
+ * 活动类型
1997
+ * @type {string}
1998
+ * @memberof PublicActivityInfo
2319
1999
  */
2320
- readiness(initOverrides?: RequestInit | InitOverrideFunction): Promise<HealthResponse>;
2321
- }
2322
- /**
2323
- *
2324
- */
2325
- declare class HealthApi extends BaseAPI implements HealthApiInterface {
2000
+ 'type': PublicActivityInfoTypeEnum;
2326
2001
  /**
2327
- * 检查服务健康状态
2328
- * 健康检查
2002
+ * 活动状态
2003
+ * @type {string}
2004
+ * @memberof PublicActivityInfo
2329
2005
  */
2330
- healthRaw(initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<HealthResponse>>;
2006
+ 'status': PublicActivityInfoStatusEnum;
2331
2007
  /**
2332
- * 检查服务健康状态
2333
- * 健康检查
2008
+ * 活动描述
2009
+ * @type {string}
2010
+ * @memberof PublicActivityInfo
2334
2011
  */
2335
- health(initOverrides?: RequestInit | InitOverrideFunction): Promise<HealthResponse>;
2012
+ 'description'?: string;
2336
2013
  /**
2337
- * 检查服务是否存活
2338
- * 存活检查
2014
+ * 开始时间
2015
+ * @type {string}
2016
+ * @memberof PublicActivityInfo
2339
2017
  */
2340
- livenessRaw(initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<HealthResponse>>;
2018
+ 'startTime'?: string;
2341
2019
  /**
2342
- * 检查服务是否存活
2343
- * 存活检查
2020
+ * 结束时间
2021
+ * @type {string}
2022
+ * @memberof PublicActivityInfo
2344
2023
  */
2345
- liveness(initOverrides?: RequestInit | InitOverrideFunction): Promise<HealthResponse>;
2024
+ 'endTime'?: string;
2346
2025
  /**
2347
- * 检查服务是否就绪(可接受流量)
2348
- * 就绪检查
2026
+ * 活动规则(公开部分)
2027
+ * @type {{ [key: string]: any; }}
2028
+ * @memberof PublicActivityInfo
2349
2029
  */
2350
- readinessRaw(initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<HealthResponse>>;
2030
+ 'rules'?: {
2031
+ [key: string]: any;
2032
+ };
2351
2033
  /**
2352
- * 检查服务是否就绪(可接受流量)
2353
- * 就绪检查
2034
+ * 奖励列表
2035
+ * @type {Array<GetActivityInfo200ResponseDataRewardsInner>}
2036
+ * @memberof PublicActivityInfo
2354
2037
  */
2355
- readiness(initOverrides?: RequestInit | InitOverrideFunction): Promise<HealthResponse>;
2038
+ 'rewards'?: Array<GetActivityInfo200ResponseDataRewardsInner>;
2356
2039
  }
2040
+ declare const PublicActivityInfoTypeEnum: {
2041
+ readonly SIGNIN: "signin";
2042
+ readonly LOTTERY: "lottery";
2043
+ readonly REDPACK: "redpack";
2044
+ readonly COUPON: "coupon";
2045
+ readonly CUSTOM: "custom";
2046
+ };
2047
+ type PublicActivityInfoTypeEnum = typeof PublicActivityInfoTypeEnum[keyof typeof PublicActivityInfoTypeEnum];
2048
+ declare const PublicActivityInfoStatusEnum: {
2049
+ readonly ACTIVE: "active";
2050
+ readonly ENDED: "ended";
2051
+ };
2052
+ type PublicActivityInfoStatusEnum = typeof PublicActivityInfoStatusEnum[keyof typeof PublicActivityInfoStatusEnum];
2357
2053
 
2358
2054
  /**
2359
- * DJV Low-code Platform - User API
2360
- * DJV 低代码平台用户端 API(数据面),用于: - 页面解析(Page Resolve) - 动作执行(Action Gateway) - 数据查询(Data Proxy) - 埋点上报(Track) - 活动状态查询
2055
+ * DJVLC User API
2056
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
2361
2057
  *
2362
2058
  * The version of the OpenAPI document: 1.0.0
2363
- * Contact: djv@example.com
2059
+ * Contact: dev@djvlc.com
2364
2060
  *
2365
2061
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2366
2062
  * https://openapi-generator.tech
2367
2063
  * Do not edit the class manually.
2368
2064
  */
2369
-
2370
- interface PageApiResolvePageRequest {
2371
- pageUid: string;
2372
- channel?: ResolvePageChannelEnum;
2373
- uid?: string;
2374
- deviceId?: string;
2375
- previewToken?: string;
2376
- }
2377
- interface PageApiResolvePageBatchOperationRequest {
2378
- resolvePageBatchRequest: ResolvePageBatchRequest;
2379
- }
2380
2065
  /**
2381
- * PageApi - interface
2382
2066
  *
2383
2067
  * @export
2384
- * @interface PageApiInterface
2068
+ * @interface QueryManifest
2385
2069
  */
2386
- interface PageApiInterface {
2070
+ interface QueryManifest {
2387
2071
  /**
2388
- * 根据页面 UID 解析页面配置,返回: - 页面 JSON Schema - 组件 Manifest(锁定的组件版本清单) - 运行时配置(Kill Switch、Blocked Components 等)
2389
- * @summary 解析页面
2390
- * @param {string} pageUid 页面 UID
2391
- * @param {'preview' | 'prod' | 'gray'} [channel] 发布渠道(preview/prod/gray)
2392
- * @param {string} [uid] 用户 ID(用于灰度)
2393
- * @param {string} [deviceId] 设备 ID
2394
- * @param {string} [previewToken] 预览 Token(访问未发布页面)
2395
- * @param {*} [options] Override http request option.
2396
- * @throws {RequiredError}
2397
- * @memberof PageApiInterface
2072
+ * 查询 ID
2073
+ * @type {string}
2074
+ * @memberof QueryManifest
2398
2075
  */
2399
- resolvePageRaw(requestParameters: PageApiResolvePageRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<PageResolveResponse>>;
2076
+ 'queryId': string;
2400
2077
  /**
2401
- * 根据页面 UID 解析页面配置,返回: - 页面 JSON Schema - 组件 Manifest(锁定的组件版本清单) - 运行时配置(Kill Switch、Blocked Components 等)
2402
- * 解析页面
2078
+ * 查询版本
2079
+ * @type {string}
2080
+ * @memberof QueryManifest
2081
+ */
2082
+ 'version': string;
2083
+ /**
2084
+ * 缓存 TTL(秒)
2085
+ * @type {number}
2086
+ * @memberof QueryManifest
2087
+ */
2088
+ 'cacheTtl'?: number;
2089
+ }
2090
+
2091
+ /**
2092
+ * DJVLC User API
2093
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
2094
+ *
2095
+ * The version of the OpenAPI document: 1.0.0
2096
+ * Contact: dev@djvlc.com
2097
+ *
2098
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2099
+ * https://openapi-generator.tech
2100
+ * Do not edit the class manually.
2101
+ */
2102
+ /**
2103
+ * 页面解析上下文
2104
+ * @export
2105
+ * @interface ResolveContext
2106
+ */
2107
+ interface ResolveContext {
2108
+ /**
2109
+ * 用户 ID
2110
+ * @type {string}
2111
+ * @memberof ResolveContext
2112
+ */
2113
+ 'userId'?: string;
2114
+ /**
2115
+ * 会话 ID
2116
+ * @type {string}
2117
+ * @memberof ResolveContext
2118
+ */
2119
+ 'sessionId'?: string;
2120
+ /**
2121
+ * 设备类型
2122
+ * @type {string}
2123
+ * @memberof ResolveContext
2124
+ */
2125
+ 'deviceType'?: ResolveContextDeviceTypeEnum;
2126
+ /**
2127
+ * URL 参数
2128
+ * @type {{ [key: string]: string; }}
2129
+ * @memberof ResolveContext
2130
+ */
2131
+ 'urlParams'?: {
2132
+ [key: string]: string;
2133
+ };
2134
+ /**
2135
+ * 路由参数
2136
+ * @type {{ [key: string]: string; }}
2137
+ * @memberof ResolveContext
2138
+ */
2139
+ 'routeParams'?: {
2140
+ [key: string]: string;
2141
+ };
2142
+ /**
2143
+ * 自定义上下文数据
2144
+ * @type {{ [key: string]: any; }}
2145
+ * @memberof ResolveContext
2146
+ */
2147
+ 'customData'?: {
2148
+ [key: string]: any;
2149
+ };
2150
+ }
2151
+ declare const ResolveContextDeviceTypeEnum: {
2152
+ readonly MOBILE: "mobile";
2153
+ readonly TABLET: "tablet";
2154
+ readonly DESKTOP: "desktop";
2155
+ };
2156
+ type ResolveContextDeviceTypeEnum = typeof ResolveContextDeviceTypeEnum[keyof typeof ResolveContextDeviceTypeEnum];
2157
+
2158
+ /**
2159
+ * DJVLC User API
2160
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
2161
+ *
2162
+ * The version of the OpenAPI document: 1.0.0
2163
+ * Contact: dev@djvlc.com
2164
+ *
2165
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2166
+ * https://openapi-generator.tech
2167
+ * Do not edit the class manually.
2168
+ */
2169
+ /**
2170
+ *
2171
+ * @export
2172
+ * @interface ResolvePage200ResponseDataManifestsActionsInner
2173
+ */
2174
+ interface ResolvePage200ResponseDataManifestsActionsInner {
2175
+ /**
2176
+ * 动作 ID
2177
+ * @type {string}
2178
+ * @memberof ResolvePage200ResponseDataManifestsActionsInner
2179
+ */
2180
+ 'actionId': string;
2181
+ /**
2182
+ * 动作版本
2183
+ * @type {string}
2184
+ * @memberof ResolvePage200ResponseDataManifestsActionsInner
2185
+ */
2186
+ 'version': string;
2187
+ /**
2188
+ * 动作类型
2189
+ * @type {string}
2190
+ * @memberof ResolvePage200ResponseDataManifestsActionsInner
2191
+ */
2192
+ 'type'?: ResolvePage200ResponseDataManifestsActionsInnerTypeEnum;
2193
+ }
2194
+ declare const ResolvePage200ResponseDataManifestsActionsInnerTypeEnum: {
2195
+ readonly BUILTIN: "builtin";
2196
+ readonly CUSTOM: "custom";
2197
+ };
2198
+ type ResolvePage200ResponseDataManifestsActionsInnerTypeEnum = typeof ResolvePage200ResponseDataManifestsActionsInnerTypeEnum[keyof typeof ResolvePage200ResponseDataManifestsActionsInnerTypeEnum];
2199
+
2200
+ /**
2201
+ * DJVLC User API
2202
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
2203
+ *
2204
+ * The version of the OpenAPI document: 1.0.0
2205
+ * Contact: dev@djvlc.com
2206
+ *
2207
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2208
+ * https://openapi-generator.tech
2209
+ * Do not edit the class manually.
2210
+ */
2211
+ /**
2212
+ *
2213
+ * @export
2214
+ * @interface ResolvePage200ResponseDataManifestsComponentsInner
2215
+ */
2216
+ interface ResolvePage200ResponseDataManifestsComponentsInner {
2217
+ /**
2218
+ * 组件类型
2219
+ * @type {string}
2220
+ * @memberof ResolvePage200ResponseDataManifestsComponentsInner
2221
+ */
2222
+ 'componentType': string;
2223
+ /**
2224
+ * 组件版本
2225
+ * @type {string}
2226
+ * @memberof ResolvePage200ResponseDataManifestsComponentsInner
2227
+ */
2228
+ 'version': string;
2229
+ /**
2230
+ * 组件入口 URL
2231
+ * @type {string}
2232
+ * @memberof ResolvePage200ResponseDataManifestsComponentsInner
2233
+ */
2234
+ 'entryUrl': string;
2235
+ /**
2236
+ * 完整性哈希
2237
+ * @type {string}
2238
+ * @memberof ResolvePage200ResponseDataManifestsComponentsInner
2239
+ */
2240
+ 'integrity'?: string;
2241
+ }
2242
+
2243
+ /**
2244
+ * DJVLC User API
2245
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
2246
+ *
2247
+ * The version of the OpenAPI document: 1.0.0
2248
+ * Contact: dev@djvlc.com
2249
+ *
2250
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2251
+ * https://openapi-generator.tech
2252
+ * Do not edit the class manually.
2253
+ */
2254
+ /**
2255
+ *
2256
+ * @export
2257
+ * @interface ResolvePage200ResponseDataManifestsQueriesInner
2258
+ */
2259
+ interface ResolvePage200ResponseDataManifestsQueriesInner {
2260
+ /**
2261
+ * 查询 ID
2262
+ * @type {string}
2263
+ * @memberof ResolvePage200ResponseDataManifestsQueriesInner
2264
+ */
2265
+ 'queryId': string;
2266
+ /**
2267
+ * 查询版本
2268
+ * @type {string}
2269
+ * @memberof ResolvePage200ResponseDataManifestsQueriesInner
2270
+ */
2271
+ 'version': string;
2272
+ /**
2273
+ * 缓存 TTL(秒)
2274
+ * @type {number}
2275
+ * @memberof ResolvePage200ResponseDataManifestsQueriesInner
2276
+ */
2277
+ 'cacheTtl'?: number;
2278
+ }
2279
+
2280
+ /**
2281
+ * DJVLC User API
2282
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
2283
+ *
2284
+ * The version of the OpenAPI document: 1.0.0
2285
+ * Contact: dev@djvlc.com
2286
+ *
2287
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2288
+ * https://openapi-generator.tech
2289
+ * Do not edit the class manually.
2290
+ */
2291
+
2292
+ /**
2293
+ *
2294
+ * @export
2295
+ * @interface ResolvePage200ResponseDataManifests
2296
+ */
2297
+ interface ResolvePage200ResponseDataManifests {
2298
+ /**
2299
+ * 组件资源清单
2300
+ * @type {Array<ResolvePage200ResponseDataManifestsComponentsInner>}
2301
+ * @memberof ResolvePage200ResponseDataManifests
2302
+ */
2303
+ 'components'?: Array<ResolvePage200ResponseDataManifestsComponentsInner>;
2304
+ /**
2305
+ * 动作资源清单
2306
+ * @type {Array<ResolvePage200ResponseDataManifestsActionsInner>}
2307
+ * @memberof ResolvePage200ResponseDataManifests
2308
+ */
2309
+ 'actions'?: Array<ResolvePage200ResponseDataManifestsActionsInner>;
2310
+ /**
2311
+ * 查询资源清单
2312
+ * @type {Array<ResolvePage200ResponseDataManifestsQueriesInner>}
2313
+ * @memberof ResolvePage200ResponseDataManifests
2314
+ */
2315
+ 'queries'?: Array<ResolvePage200ResponseDataManifestsQueriesInner>;
2316
+ }
2317
+
2318
+ /**
2319
+ * DJVLC User API
2320
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
2321
+ *
2322
+ * The version of the OpenAPI document: 1.0.0
2323
+ * Contact: dev@djvlc.com
2324
+ *
2325
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2326
+ * https://openapi-generator.tech
2327
+ * Do not edit the class manually.
2328
+ */
2329
+
2330
+ /**
2331
+ *
2332
+ * @export
2333
+ * @interface ResolvePage200ResponseData
2334
+ */
2335
+ interface ResolvePage200ResponseData {
2336
+ /**
2337
+ * 页面 ID
2338
+ * @type {string}
2339
+ * @memberof ResolvePage200ResponseData
2340
+ */
2341
+ 'pageId': string;
2342
+ /**
2343
+ * 页面版本
2344
+ * @type {string}
2345
+ * @memberof ResolvePage200ResponseData
2346
+ */
2347
+ 'version': string;
2348
+ /**
2349
+ * 解析后的页面 Schema
2350
+ * @type {object}
2351
+ * @memberof ResolvePage200ResponseData
2352
+ */
2353
+ 'schema': object;
2354
+ /**
2355
+ *
2356
+ * @type {ResolvePage200ResponseDataManifests}
2357
+ * @memberof ResolvePage200ResponseData
2358
+ */
2359
+ 'manifests'?: ResolvePage200ResponseDataManifests;
2360
+ /**
2361
+ * 预取的数据
2362
+ * @type {{ [key: string]: any; }}
2363
+ * @memberof ResolvePage200ResponseData
2364
+ */
2365
+ 'prefetchedData'?: {
2366
+ [key: string]: any;
2367
+ };
2368
+ }
2369
+
2370
+ /**
2371
+ * DJVLC User API
2372
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
2373
+ *
2374
+ * The version of the OpenAPI document: 1.0.0
2375
+ * Contact: dev@djvlc.com
2376
+ *
2377
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2378
+ * https://openapi-generator.tech
2379
+ * Do not edit the class manually.
2380
+ */
2381
+
2382
+ /**
2383
+ *
2384
+ * @export
2385
+ * @interface ResolvePage200Response
2386
+ */
2387
+ interface ResolvePage200Response {
2388
+ /**
2389
+ *
2390
+ * @type {ResolvePage200ResponseData}
2391
+ * @memberof ResolvePage200Response
2392
+ */
2393
+ 'data': ResolvePage200ResponseData;
2394
+ }
2395
+
2396
+ /**
2397
+ * DJVLC User API
2398
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
2399
+ *
2400
+ * The version of the OpenAPI document: 1.0.0
2401
+ * Contact: dev@djvlc.com
2402
+ *
2403
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2404
+ * https://openapi-generator.tech
2405
+ * Do not edit the class manually.
2406
+ */
2407
+ /**
2408
+ *
2409
+ * @export
2410
+ * @interface ResolvePageRequestOptions
2411
+ */
2412
+ interface ResolvePageRequestOptions {
2413
+ /**
2414
+ * 是否预取数据
2415
+ * @type {boolean}
2416
+ * @memberof ResolvePageRequestOptions
2417
+ */
2418
+ 'prefetchData'?: boolean;
2419
+ /**
2420
+ * 是否包含资源清单
2421
+ * @type {boolean}
2422
+ * @memberof ResolvePageRequestOptions
2423
+ */
2424
+ 'includeManifests'?: boolean;
2425
+ /**
2426
+ * 语言环境
2427
+ * @type {string}
2428
+ * @memberof ResolvePageRequestOptions
2429
+ */
2430
+ 'locale'?: string;
2431
+ }
2432
+
2433
+ /**
2434
+ * DJVLC User API
2435
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
2436
+ *
2437
+ * The version of the OpenAPI document: 1.0.0
2438
+ * Contact: dev@djvlc.com
2439
+ *
2440
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2441
+ * https://openapi-generator.tech
2442
+ * Do not edit the class manually.
2443
+ */
2444
+
2445
+ /**
2446
+ *
2447
+ * @export
2448
+ * @interface ResolvePageRequest
2449
+ */
2450
+ interface ResolvePageRequest {
2451
+ /**
2452
+ *
2453
+ * @type {ResolvePageRequestContext}
2454
+ * @memberof ResolvePageRequest
2455
+ */
2456
+ 'context'?: ResolvePageRequestContext;
2457
+ /**
2458
+ *
2459
+ * @type {ResolvePageRequestOptions}
2460
+ * @memberof ResolvePageRequest
2461
+ */
2462
+ 'options'?: ResolvePageRequestOptions;
2463
+ }
2464
+
2465
+ /**
2466
+ * DJVLC User API
2467
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
2468
+ *
2469
+ * The version of the OpenAPI document: 1.0.0
2470
+ * Contact: dev@djvlc.com
2471
+ *
2472
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2473
+ * https://openapi-generator.tech
2474
+ * Do not edit the class manually.
2475
+ */
2476
+
2477
+ /**
2478
+ *
2479
+ * @export
2480
+ * @interface ResolvePageResponse
2481
+ */
2482
+ interface ResolvePageResponse {
2483
+ /**
2484
+ *
2485
+ * @type {ResolvePage200ResponseData}
2486
+ * @memberof ResolvePageResponse
2487
+ */
2488
+ 'data': ResolvePage200ResponseData;
2489
+ }
2490
+
2491
+ /**
2492
+ * DJVLC User API
2493
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
2494
+ *
2495
+ * The version of the OpenAPI document: 1.0.0
2496
+ * Contact: dev@djvlc.com
2497
+ *
2498
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2499
+ * https://openapi-generator.tech
2500
+ * Do not edit the class manually.
2501
+ */
2502
+
2503
+ /**
2504
+ *
2505
+ * @export
2506
+ * @interface ResourceManifests
2507
+ */
2508
+ interface ResourceManifests {
2509
+ /**
2510
+ * 组件资源清单
2511
+ * @type {Array<ResolvePage200ResponseDataManifestsComponentsInner>}
2512
+ * @memberof ResourceManifests
2513
+ */
2514
+ 'components'?: Array<ResolvePage200ResponseDataManifestsComponentsInner>;
2515
+ /**
2516
+ * 动作资源清单
2517
+ * @type {Array<ResolvePage200ResponseDataManifestsActionsInner>}
2518
+ * @memberof ResourceManifests
2519
+ */
2520
+ 'actions'?: Array<ResolvePage200ResponseDataManifestsActionsInner>;
2521
+ /**
2522
+ * 查询资源清单
2523
+ * @type {Array<ResolvePage200ResponseDataManifestsQueriesInner>}
2524
+ * @memberof ResourceManifests
2525
+ */
2526
+ 'queries'?: Array<ResolvePage200ResponseDataManifestsQueriesInner>;
2527
+ }
2528
+
2529
+ /**
2530
+ * DJVLC User API
2531
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
2532
+ *
2533
+ * The version of the OpenAPI document: 1.0.0
2534
+ * Contact: dev@djvlc.com
2535
+ *
2536
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2537
+ * https://openapi-generator.tech
2538
+ * Do not edit the class manually.
2539
+ */
2540
+
2541
+ /**
2542
+ *
2543
+ * @export
2544
+ * @interface SigninCalendar
2545
+ */
2546
+ interface SigninCalendar {
2547
+ /**
2548
+ * 年份
2549
+ * @type {number}
2550
+ * @memberof SigninCalendar
2551
+ */
2552
+ 'year': number;
2553
+ /**
2554
+ * 月份
2555
+ * @type {number}
2556
+ * @memberof SigninCalendar
2557
+ */
2558
+ 'month': number;
2559
+ /**
2560
+ * 签到记录
2561
+ * @type {Array<GetSigninCalendar200ResponseDataRecordsInner>}
2562
+ * @memberof SigninCalendar
2563
+ */
2564
+ 'records': Array<GetSigninCalendar200ResponseDataRecordsInner>;
2565
+ /**
2566
+ * 连续签到天数
2567
+ * @type {number}
2568
+ * @memberof SigninCalendar
2569
+ */
2570
+ 'consecutiveDays'?: number;
2571
+ /**
2572
+ * 本月签到总天数
2573
+ * @type {number}
2574
+ * @memberof SigninCalendar
2575
+ */
2576
+ 'totalDays'?: number;
2577
+ }
2578
+
2579
+ /**
2580
+ * DJVLC User API
2581
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
2582
+ *
2583
+ * The version of the OpenAPI document: 1.0.0
2584
+ * Contact: dev@djvlc.com
2585
+ *
2586
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2587
+ * https://openapi-generator.tech
2588
+ * Do not edit the class manually.
2589
+ */
2590
+ /**
2591
+ *
2592
+ * @export
2593
+ * @interface Track202ResponseData
2594
+ */
2595
+ interface Track202ResponseData {
2596
+ /**
2597
+ * 事件 ID
2598
+ * @type {string}
2599
+ * @memberof Track202ResponseData
2600
+ */
2601
+ 'eventId'?: string;
2602
+ }
2603
+
2604
+ /**
2605
+ * DJVLC User API
2606
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
2607
+ *
2608
+ * The version of the OpenAPI document: 1.0.0
2609
+ * Contact: dev@djvlc.com
2610
+ *
2611
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2612
+ * https://openapi-generator.tech
2613
+ * Do not edit the class manually.
2614
+ */
2615
+
2616
+ /**
2617
+ *
2618
+ * @export
2619
+ * @interface Track202Response
2620
+ */
2621
+ interface Track202Response {
2622
+ /**
2623
+ *
2624
+ * @type {boolean}
2625
+ * @memberof Track202Response
2626
+ */
2627
+ 'success'?: boolean;
2628
+ /**
2629
+ *
2630
+ * @type {Track202ResponseData}
2631
+ * @memberof Track202Response
2632
+ */
2633
+ 'data'?: Track202ResponseData;
2634
+ }
2635
+
2636
+ /**
2637
+ * DJVLC User API
2638
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
2639
+ *
2640
+ * The version of the OpenAPI document: 1.0.0
2641
+ * Contact: dev@djvlc.com
2642
+ *
2643
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2644
+ * https://openapi-generator.tech
2645
+ * Do not edit the class manually.
2646
+ */
2647
+ /**
2648
+ *
2649
+ * @export
2650
+ * @interface TrackBatch202ResponseDataErrorsInner
2651
+ */
2652
+ interface TrackBatch202ResponseDataErrorsInner {
2653
+ /**
2654
+ *
2655
+ * @type {number}
2656
+ * @memberof TrackBatch202ResponseDataErrorsInner
2657
+ */
2658
+ 'index'?: number;
2659
+ /**
2660
+ *
2661
+ * @type {string}
2662
+ * @memberof TrackBatch202ResponseDataErrorsInner
2663
+ */
2664
+ 'reason'?: string;
2665
+ }
2666
+
2667
+ /**
2668
+ * DJVLC User API
2669
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
2670
+ *
2671
+ * The version of the OpenAPI document: 1.0.0
2672
+ * Contact: dev@djvlc.com
2673
+ *
2674
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2675
+ * https://openapi-generator.tech
2676
+ * Do not edit the class manually.
2677
+ */
2678
+
2679
+ /**
2680
+ *
2681
+ * @export
2682
+ * @interface TrackBatch202ResponseData
2683
+ */
2684
+ interface TrackBatch202ResponseData {
2685
+ /**
2686
+ * 接收的事件数量
2687
+ * @type {number}
2688
+ * @memberof TrackBatch202ResponseData
2689
+ */
2690
+ 'accepted'?: number;
2691
+ /**
2692
+ * 拒绝的事件数量
2693
+ * @type {number}
2694
+ * @memberof TrackBatch202ResponseData
2695
+ */
2696
+ 'rejected'?: number;
2697
+ /**
2698
+ *
2699
+ * @type {Array<TrackBatch202ResponseDataErrorsInner>}
2700
+ * @memberof TrackBatch202ResponseData
2701
+ */
2702
+ 'errors'?: Array<TrackBatch202ResponseDataErrorsInner>;
2703
+ }
2704
+
2705
+ /**
2706
+ * DJVLC User API
2707
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
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 TrackBatch202Response
2721
+ */
2722
+ interface TrackBatch202Response {
2723
+ /**
2724
+ *
2725
+ * @type {boolean}
2726
+ * @memberof TrackBatch202Response
2727
+ */
2728
+ 'success'?: boolean;
2729
+ /**
2730
+ *
2731
+ * @type {TrackBatch202ResponseData}
2732
+ * @memberof TrackBatch202Response
2733
+ */
2734
+ 'data'?: TrackBatch202ResponseData;
2735
+ }
2736
+
2737
+ /**
2738
+ * DJVLC User API
2739
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
2740
+ *
2741
+ * The version of the OpenAPI document: 1.0.0
2742
+ * Contact: dev@djvlc.com
2743
+ *
2744
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2745
+ * https://openapi-generator.tech
2746
+ * Do not edit the class manually.
2747
+ */
2748
+ /**
2749
+ * 上下文信息
2750
+ * @export
2751
+ * @interface TrackRequestContext
2752
+ */
2753
+ interface TrackRequestContext {
2754
+ /**
2755
+ *
2756
+ * @type {string}
2757
+ * @memberof TrackRequestContext
2758
+ */
2759
+ 'pageId'?: string;
2760
+ /**
2761
+ *
2762
+ * @type {string}
2763
+ * @memberof TrackRequestContext
2764
+ */
2765
+ 'componentId'?: string;
2766
+ /**
2767
+ *
2768
+ * @type {string}
2769
+ * @memberof TrackRequestContext
2770
+ */
2771
+ 'sessionId'?: string;
2772
+ /**
2773
+ *
2774
+ * @type {string}
2775
+ * @memberof TrackRequestContext
2776
+ */
2777
+ 'deviceType'?: string;
2778
+ }
2779
+
2780
+ /**
2781
+ * DJVLC User API
2782
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
2783
+ *
2784
+ * The version of the OpenAPI document: 1.0.0
2785
+ * Contact: dev@djvlc.com
2786
+ *
2787
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2788
+ * https://openapi-generator.tech
2789
+ * Do not edit the class manually.
2790
+ */
2791
+
2792
+ /**
2793
+ *
2794
+ * @export
2795
+ * @interface TrackRequest
2796
+ */
2797
+ interface TrackRequest {
2798
+ /**
2799
+ * 事件名称
2800
+ * @type {string}
2801
+ * @memberof TrackRequest
2802
+ */
2803
+ 'eventName': string;
2804
+ /**
2805
+ * 事件类型
2806
+ * @type {string}
2807
+ * @memberof TrackRequest
2808
+ */
2809
+ 'eventType'?: TrackRequestEventTypeEnum;
2810
+ /**
2811
+ * 事件属性
2812
+ * @type {{ [key: string]: any; }}
2813
+ * @memberof TrackRequest
2403
2814
  */
2404
- resolvePage(requestParameters: PageApiResolvePageRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<PageResolveResponse>;
2815
+ 'properties'?: {
2816
+ [key: string]: any;
2817
+ };
2405
2818
  /**
2406
- * 批量获取多个页面的解析结果
2407
- * @summary 批量解析页面
2408
- * @param {ResolvePageBatchRequest} resolvePageBatchRequest
2409
- * @param {*} [options] Override http request option.
2410
- * @throws {RequiredError}
2411
- * @memberof PageApiInterface
2819
+ * 事件时间(默认为服务器接收时间)
2820
+ * @type {string}
2821
+ * @memberof TrackRequest
2822
+ */
2823
+ 'timestamp'?: string;
2824
+ /**
2825
+ *
2826
+ * @type {TrackRequestContext}
2827
+ * @memberof TrackRequest
2412
2828
  */
2413
- resolvePageBatchRaw(requestParameters: PageApiResolvePageBatchOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ResolvePageBatch200Response>>;
2829
+ 'context'?: TrackRequestContext;
2830
+ }
2831
+ declare const TrackRequestEventTypeEnum: {
2832
+ readonly PAGE_VIEW: "page_view";
2833
+ readonly CLICK: "click";
2834
+ readonly EXPOSURE: "exposure";
2835
+ readonly CUSTOM: "custom";
2836
+ };
2837
+ type TrackRequestEventTypeEnum = typeof TrackRequestEventTypeEnum[keyof typeof TrackRequestEventTypeEnum];
2838
+
2839
+ /**
2840
+ * DJVLC User API
2841
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
2842
+ *
2843
+ * The version of the OpenAPI document: 1.0.0
2844
+ * Contact: dev@djvlc.com
2845
+ *
2846
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2847
+ * https://openapi-generator.tech
2848
+ * Do not edit the class manually.
2849
+ */
2850
+
2851
+ /**
2852
+ *
2853
+ * @export
2854
+ * @interface TrackBatchRequest
2855
+ */
2856
+ interface TrackBatchRequest {
2414
2857
  /**
2415
- * 批量获取多个页面的解析结果
2416
- * 批量解析页面
2858
+ * 事件列表(最多 100 个)
2859
+ * @type {Array<TrackRequest>}
2860
+ * @memberof TrackBatchRequest
2417
2861
  */
2418
- resolvePageBatch(requestParameters: PageApiResolvePageBatchOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ResolvePageBatch200Response>;
2862
+ 'events': Array<TrackRequest>;
2419
2863
  }
2864
+
2865
+ /**
2866
+ * DJVLC User API
2867
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
2868
+ *
2869
+ * The version of the OpenAPI document: 1.0.0
2870
+ * Contact: dev@djvlc.com
2871
+ *
2872
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2873
+ * https://openapi-generator.tech
2874
+ * Do not edit the class manually.
2875
+ */
2420
2876
  /**
2421
2877
  *
2878
+ * @export
2879
+ * @interface UserActivityState
2422
2880
  */
2423
- declare class PageApi extends BaseAPI implements PageApiInterface {
2881
+ interface UserActivityState {
2882
+ /**
2883
+ * 活动 ID
2884
+ * @type {string}
2885
+ * @memberof UserActivityState
2886
+ */
2887
+ 'activityId': string;
2888
+ /**
2889
+ * 用户 ID
2890
+ * @type {string}
2891
+ * @memberof UserActivityState
2892
+ */
2893
+ 'userId': string;
2424
2894
  /**
2425
- * 根据页面 UID 解析页面配置,返回: - 页面 JSON Schema - 组件 Manifest(锁定的组件版本清单) - 运行时配置(Kill Switch、Blocked Components 等)
2426
- * 解析页面
2895
+ * 是否已参与
2896
+ * @type {boolean}
2897
+ * @memberof UserActivityState
2898
+ */
2899
+ 'participated'?: boolean;
2900
+ /**
2901
+ * 参与时间
2902
+ * @type {string}
2903
+ * @memberof UserActivityState
2904
+ */
2905
+ 'participatedAt'?: string;
2906
+ /**
2907
+ * 剩余抽奖次数
2908
+ * @type {number}
2909
+ * @memberof UserActivityState
2427
2910
  */
2428
- resolvePageRaw(requestParameters: PageApiResolvePageRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<PageResolveResponse>>;
2911
+ 'remainingChances'?: number;
2429
2912
  /**
2430
- * 根据页面 UID 解析页面配置,返回: - 页面 JSON Schema - 组件 Manifest(锁定的组件版本清单) - 运行时配置(Kill Switch、Blocked Components 等)
2431
- * 解析页面
2913
+ * 已获得奖励数
2914
+ * @type {number}
2915
+ * @memberof UserActivityState
2432
2916
  */
2433
- resolvePage(requestParameters: PageApiResolvePageRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<PageResolveResponse>;
2917
+ 'totalRewards'?: number;
2434
2918
  /**
2435
- * 批量获取多个页面的解析结果
2436
- * 批量解析页面
2919
+ * 活动进度
2920
+ * @type {{ [key: string]: any; }}
2921
+ * @memberof UserActivityState
2437
2922
  */
2438
- resolvePageBatchRaw(requestParameters: PageApiResolvePageBatchOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ResolvePageBatch200Response>>;
2923
+ 'progress'?: {
2924
+ [key: string]: any;
2925
+ };
2439
2926
  /**
2440
- * 批量获取多个页面的解析结果
2441
- * 批量解析页面
2927
+ * 自定义数据
2928
+ * @type {{ [key: string]: any; }}
2929
+ * @memberof UserActivityState
2442
2930
  */
2443
- resolvePageBatch(requestParameters: PageApiResolvePageBatchOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ResolvePageBatch200Response>;
2931
+ 'customData'?: {
2932
+ [key: string]: any;
2933
+ };
2444
2934
  }
2935
+
2936
+ /**
2937
+ * DJVLC User API
2938
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
2939
+ *
2940
+ * The version of the OpenAPI document: 1.0.0
2941
+ * Contact: dev@djvlc.com
2942
+ *
2943
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2944
+ * https://openapi-generator.tech
2945
+ * Do not edit the class manually.
2946
+ */
2445
2947
  /**
2948
+ *
2446
2949
  * @export
2950
+ * @interface ValidateActionParams200ResponseDataErrorsInner
2447
2951
  */
2448
- declare const ResolvePageChannelEnum: {
2449
- readonly preview: "preview";
2450
- readonly prod: "prod";
2451
- readonly gray: "gray";
2452
- };
2453
- type ResolvePageChannelEnum = typeof ResolvePageChannelEnum[keyof typeof ResolvePageChannelEnum];
2952
+ interface ValidateActionParams200ResponseDataErrorsInner {
2953
+ /**
2954
+ * 参数路径
2955
+ * @type {string}
2956
+ * @memberof ValidateActionParams200ResponseDataErrorsInner
2957
+ */
2958
+ 'path'?: string;
2959
+ /**
2960
+ * 错误消息
2961
+ * @type {string}
2962
+ * @memberof ValidateActionParams200ResponseDataErrorsInner
2963
+ */
2964
+ 'message'?: string;
2965
+ }
2454
2966
 
2455
2967
  /**
2456
- * DJV Low-code Platform - User API
2457
- * DJV 低代码平台用户端 API(数据面),用于: - 页面解析(Page Resolve) - 动作执行(Action Gateway) - 数据查询(Data Proxy) - 埋点上报(Track) - 活动状态查询
2968
+ * DJVLC User API
2969
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
2458
2970
  *
2459
2971
  * The version of the OpenAPI document: 1.0.0
2460
- * Contact: djv@example.com
2972
+ * Contact: dev@djvlc.com
2461
2973
  *
2462
2974
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
2463
2975
  * https://openapi-generator.tech
2464
2976
  * Do not edit the class manually.
2465
2977
  */
2466
2978
 
2467
- interface TrackApiTrackOperationRequest {
2468
- trackRequest: TrackRequest;
2469
- }
2470
2979
  /**
2471
- * TrackApi - interface
2472
2980
  *
2473
2981
  * @export
2474
- * @interface TrackApiInterface
2982
+ * @interface ValidateActionParams200ResponseData
2475
2983
  */
2476
- interface TrackApiInterface {
2984
+ interface ValidateActionParams200ResponseData {
2477
2985
  /**
2478
- * 批量上报埋点事件
2479
- * @summary 上报埋点
2480
- * @param {TrackRequest} trackRequest
2481
- * @param {*} [options] Override http request option.
2482
- * @throws {RequiredError}
2483
- * @memberof TrackApiInterface
2986
+ * 是否有效
2987
+ * @type {boolean}
2988
+ * @memberof ValidateActionParams200ResponseData
2484
2989
  */
2485
- trackRaw(requestParameters: TrackApiTrackOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<void>>;
2990
+ 'valid': boolean;
2486
2991
  /**
2487
- * 批量上报埋点事件
2488
- * 上报埋点
2992
+ * 验证错误
2993
+ * @type {Array<ValidateActionParams200ResponseDataErrorsInner>}
2994
+ * @memberof ValidateActionParams200ResponseData
2489
2995
  */
2490
- track(requestParameters: TrackApiTrackOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<void>;
2996
+ 'errors'?: Array<ValidateActionParams200ResponseDataErrorsInner>;
2491
2997
  }
2998
+
2999
+ /**
3000
+ * DJVLC User API
3001
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
3002
+ *
3003
+ * The version of the OpenAPI document: 1.0.0
3004
+ * Contact: dev@djvlc.com
3005
+ *
3006
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3007
+ * https://openapi-generator.tech
3008
+ * Do not edit the class manually.
3009
+ */
3010
+
2492
3011
  /**
2493
3012
  *
3013
+ * @export
3014
+ * @interface ValidateActionParams200Response
2494
3015
  */
2495
- declare class TrackApi extends BaseAPI implements TrackApiInterface {
3016
+ interface ValidateActionParams200Response {
2496
3017
  /**
2497
- * 批量上报埋点事件
2498
- * 上报埋点
3018
+ *
3019
+ * @type {ValidateActionParams200ResponseData}
3020
+ * @memberof ValidateActionParams200Response
2499
3021
  */
2500
- trackRaw(requestParameters: TrackApiTrackOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<void>>;
3022
+ 'data': ValidateActionParams200ResponseData;
3023
+ }
3024
+
3025
+ /**
3026
+ * DJVLC User API
3027
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
3028
+ *
3029
+ * The version of the OpenAPI document: 1.0.0
3030
+ * Contact: dev@djvlc.com
3031
+ *
3032
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3033
+ * https://openapi-generator.tech
3034
+ * Do not edit the class manually.
3035
+ */
3036
+ /**
3037
+ *
3038
+ * @export
3039
+ * @interface ValidateActionParamsRequest
3040
+ */
3041
+ interface ValidateActionParamsRequest {
2501
3042
  /**
2502
- * 批量上报埋点事件
2503
- * 上报埋点
3043
+ * 待验证的参数
3044
+ * @type {{ [key: string]: any; }}
3045
+ * @memberof ValidateActionParamsRequest
2504
3046
  */
2505
- track(requestParameters: TrackApiTrackOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<void>;
3047
+ 'params': {
3048
+ [key: string]: any;
3049
+ };
2506
3050
  }
2507
3051
 
2508
- type apis_ActionApi = ActionApi;
2509
- declare const apis_ActionApi: typeof ActionApi;
2510
- type apis_ActionApiExecuteActionBatchOperationRequest = ActionApiExecuteActionBatchOperationRequest;
2511
- type apis_ActionApiExecuteActionRequest = ActionApiExecuteActionRequest;
2512
- type apis_ActionApiInterface = ActionApiInterface;
2513
- type apis_ActivityApi = ActivityApi;
2514
- declare const apis_ActivityApi: typeof ActivityApi;
2515
- type apis_ActivityApiGetActivityStateBatchOperationRequest = ActivityApiGetActivityStateBatchOperationRequest;
2516
- type apis_ActivityApiGetActivityStateRequest = ActivityApiGetActivityStateRequest;
2517
- type apis_ActivityApiInterface = ActivityApiInterface;
2518
- type apis_DataApi = DataApi;
2519
- declare const apis_DataApi: typeof DataApi;
2520
- type apis_DataApiInterface = DataApiInterface;
2521
- type apis_DataApiQueryDataBatchOperationRequest = DataApiQueryDataBatchOperationRequest;
2522
- type apis_DataApiQueryDataRequest = DataApiQueryDataRequest;
2523
- type apis_HealthApi = HealthApi;
2524
- declare const apis_HealthApi: typeof HealthApi;
2525
- type apis_HealthApiInterface = HealthApiInterface;
2526
- type apis_PageApi = PageApi;
2527
- declare const apis_PageApi: typeof PageApi;
2528
- type apis_PageApiInterface = PageApiInterface;
2529
- type apis_PageApiResolvePageBatchOperationRequest = PageApiResolvePageBatchOperationRequest;
2530
- type apis_PageApiResolvePageRequest = PageApiResolvePageRequest;
2531
- type apis_ResolvePageChannelEnum = ResolvePageChannelEnum;
2532
- type apis_TrackApi = TrackApi;
2533
- declare const apis_TrackApi: typeof TrackApi;
2534
- type apis_TrackApiInterface = TrackApiInterface;
2535
- type apis_TrackApiTrackOperationRequest = TrackApiTrackOperationRequest;
2536
- declare namespace apis {
2537
- export { apis_ActionApi as ActionApi, type apis_ActionApiExecuteActionBatchOperationRequest as ActionApiExecuteActionBatchOperationRequest, type apis_ActionApiExecuteActionRequest as ActionApiExecuteActionRequest, type apis_ActionApiInterface as ActionApiInterface, apis_ActivityApi as ActivityApi, type apis_ActivityApiGetActivityStateBatchOperationRequest as ActivityApiGetActivityStateBatchOperationRequest, type apis_ActivityApiGetActivityStateRequest as ActivityApiGetActivityStateRequest, type apis_ActivityApiInterface as ActivityApiInterface, apis_DataApi as DataApi, type apis_DataApiInterface as DataApiInterface, type apis_DataApiQueryDataBatchOperationRequest as DataApiQueryDataBatchOperationRequest, type apis_DataApiQueryDataRequest as DataApiQueryDataRequest, apis_HealthApi as HealthApi, type apis_HealthApiInterface as HealthApiInterface, apis_PageApi as PageApi, type apis_PageApiInterface as PageApiInterface, type apis_PageApiResolvePageBatchOperationRequest as PageApiResolvePageBatchOperationRequest, type apis_PageApiResolvePageRequest as PageApiResolvePageRequest, type apis_ResolvePageChannelEnum as ResolvePageChannelEnum, apis_TrackApi as TrackApi, type apis_TrackApiInterface as TrackApiInterface, type apis_TrackApiTrackOperationRequest as TrackApiTrackOperationRequest };
3052
+ /**
3053
+ * DJVLC User API
3054
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
3055
+ *
3056
+ * The version of the OpenAPI document: 1.0.0
3057
+ * Contact: dev@djvlc.com
3058
+ *
3059
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3060
+ * https://openapi-generator.tech
3061
+ * Do not edit the class manually.
3062
+ */
3063
+ /**
3064
+ *
3065
+ * @export
3066
+ * @interface ValidateActionRequest
3067
+ */
3068
+ interface ValidateActionRequest {
3069
+ /**
3070
+ * 待验证的参数
3071
+ * @type {{ [key: string]: any; }}
3072
+ * @memberof ValidateActionRequest
3073
+ */
3074
+ 'params': {
3075
+ [key: string]: any;
3076
+ };
2538
3077
  }
2539
3078
 
2540
3079
  /**
2541
- * @djvlc/openapi-user-client - User API 客户端
3080
+ * DJVLC User API
3081
+ * DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
2542
3082
  *
2543
- * 用于 Runtime 访问 User API(数据面)。
2544
- *
2545
- * @example
2546
- * ```typescript
2547
- * import { createUserClient, DjvApiError, TimeoutError } from '@djvlc/openapi-user-client';
3083
+ * The version of the OpenAPI document: 1.0.0
3084
+ * Contact: dev@djvlc.com
2548
3085
  *
2549
- * const client = createUserClient({
2550
- * baseUrl: 'https://api.example.com',
2551
- * getAuthToken: () => localStorage.getItem('token') ?? '',
2552
- * getTraceHeaders: () => ({ traceparent: '00-...' }),
2553
- * retry: { maxRetries: 2 },
2554
- * });
3086
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
3087
+ * https://openapi-generator.tech
3088
+ * Do not edit the class manually.
3089
+ */
3090
+
3091
+ /**
2555
3092
  *
2556
- * try {
2557
- * const page = await client.PageApi.resolvePage({ pageUid: 'xxx' });
2558
- * } catch (e) {
2559
- * if (DjvApiError.is(e)) {
2560
- * console.log('业务错误:', e.code, e.traceId);
2561
- * } else if (TimeoutError.is(e)) {
2562
- * console.log('请求超时');
2563
- * }
2564
- * }
2565
- * ```
3093
+ * @export
3094
+ * @interface ValidateActionResponse
3095
+ */
3096
+ interface ValidateActionResponse {
3097
+ /**
3098
+ *
3099
+ * @type {ValidateActionParams200ResponseData}
3100
+ * @memberof ValidateActionResponse
3101
+ */
3102
+ 'data': ValidateActionParams200ResponseData;
3103
+ }
3104
+
3105
+ /**
3106
+ * Request parameters for executeAction operation in ActionsApi.
3107
+ * @export
3108
+ * @interface ActionsApiExecuteActionRequest
2566
3109
  */
3110
+ interface ActionsApiExecuteActionRequest {
3111
+ /**
3112
+ * 动作 ID 或动作定义版本 ID
3113
+ * @type {string}
3114
+ * @memberof ActionsApiExecuteAction
3115
+ */
3116
+ readonly actionId: string;
3117
+ /**
3118
+ *
3119
+ * @type {ExecuteActionRequest}
3120
+ * @memberof ActionsApiExecuteAction
3121
+ */
3122
+ readonly executeActionRequest: ExecuteActionRequest;
3123
+ }
3124
+ /**
3125
+ * Request parameters for validateActionParams operation in ActionsApi.
3126
+ * @export
3127
+ * @interface ActionsApiValidateActionParamsRequest
3128
+ */
3129
+ interface ActionsApiValidateActionParamsRequest {
3130
+ /**
3131
+ * 动作 ID 或动作定义版本 ID
3132
+ * @type {string}
3133
+ * @memberof ActionsApiValidateActionParams
3134
+ */
3135
+ readonly actionId: string;
3136
+ /**
3137
+ *
3138
+ * @type {ValidateActionParamsRequest}
3139
+ * @memberof ActionsApiValidateActionParams
3140
+ */
3141
+ readonly validateActionParamsRequest: ValidateActionParamsRequest;
3142
+ }
3143
+ /**
3144
+ * ActionsApi - object-oriented interface
3145
+ * @export
3146
+ * @class ActionsApi
3147
+ * @extends {BaseAPI}
3148
+ */
3149
+ declare class ActionsApi extends BaseAPI {
3150
+ /**
3151
+ * 执行指定的动作,返回执行结果。 支持: - 自定义动作(通过 actionDefinitionVersionId) - 内置动作(setState, navigate, etc.)
3152
+ * @summary 执行动作
3153
+ * @param {ActionsApiExecuteActionRequest} requestParameters Request parameters.
3154
+ * @param {*} [options] Override http request option.
3155
+ * @throws {RequiredError}
3156
+ * @memberof ActionsApi
3157
+ */
3158
+ executeAction(requestParameters: ActionsApiExecuteActionRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ExecuteAction200Response, any, {}>>;
3159
+ /**
3160
+ * 验证动作参数是否符合 Schema 定义(不执行动作)
3161
+ * @summary 验证动作参数
3162
+ * @param {ActionsApiValidateActionParamsRequest} requestParameters Request parameters.
3163
+ * @param {*} [options] Override http request option.
3164
+ * @throws {RequiredError}
3165
+ * @memberof ActionsApi
3166
+ */
3167
+ validateActionParams(requestParameters: ActionsApiValidateActionParamsRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ValidateActionParams200Response, any, {}>>;
3168
+ }
2567
3169
 
2568
- interface UserClientOptions extends Omit<BaseClientOptions, 'baseUrl'> {
2569
- /** API 基础 URL */
2570
- baseUrl: string;
3170
+ /**
3171
+ * Request parameters for getPage operation in PagesApi.
3172
+ * @export
3173
+ * @interface PagesApiGetPageRequest
3174
+ */
3175
+ interface PagesApiGetPageRequest {
3176
+ /**
3177
+ * 页面 ID
3178
+ * @type {string}
3179
+ * @memberof PagesApiGetPage
3180
+ */
3181
+ readonly pageId: string;
3182
+ /**
3183
+ * 指定版本号(可选,默认最新版本)
3184
+ * @type {string}
3185
+ * @memberof PagesApiGetPage
3186
+ */
3187
+ readonly version?: string;
3188
+ }
3189
+ /**
3190
+ * Request parameters for resolvePage operation in PagesApi.
3191
+ * @export
3192
+ * @interface PagesApiResolvePageRequest
3193
+ */
3194
+ interface PagesApiResolvePageRequest {
3195
+ /**
3196
+ * 页面 ID
3197
+ * @type {string}
3198
+ * @memberof PagesApiResolvePage
3199
+ */
3200
+ readonly pageId: string;
2571
3201
  /**
2572
- * 获取认证 Token
2573
3202
  *
2574
- * User API 可能需要登录态(也可能不需要)
3203
+ * @type {ResolvePageRequest}
3204
+ * @memberof PagesApiResolvePage
3205
+ */
3206
+ readonly resolvePageRequest: ResolvePageRequest;
3207
+ }
3208
+ /**
3209
+ * PagesApi - object-oriented interface
3210
+ * @export
3211
+ * @class PagesApi
3212
+ * @extends {BaseAPI}
3213
+ */
3214
+ declare class PagesApi extends BaseAPI {
3215
+ /**
3216
+ * 获取指定页面的基本信息和元数据
3217
+ * @summary 获取页面
3218
+ * @param {PagesApiGetPageRequest} requestParameters Request parameters.
3219
+ * @param {*} [options] Override http request option.
3220
+ * @throws {RequiredError}
3221
+ * @memberof PagesApi
3222
+ */
3223
+ getPage(requestParameters: PagesApiGetPageRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<GetPage200Response, any, {}>>;
3224
+ /**
3225
+ * 解析页面 Schema,返回完整的渲染数据。 包括: - 解析后的页面 Schema - 组件资源清单 - 预取的数据查询结果 - 动作资源清单
3226
+ * @summary 解析页面
3227
+ * @param {PagesApiResolvePageRequest} requestParameters Request parameters.
3228
+ * @param {*} [options] Override http request option.
3229
+ * @throws {RequiredError}
3230
+ * @memberof PagesApi
3231
+ */
3232
+ resolvePage(requestParameters: PagesApiResolvePageRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ResolvePage200Response, any, {}>>;
3233
+ }
3234
+
3235
+ /**
3236
+ * Request parameters for executeQuery operation in QueriesApi.
3237
+ * @export
3238
+ * @interface QueriesApiExecuteQueryRequest
3239
+ */
3240
+ interface QueriesApiExecuteQueryRequest {
3241
+ /**
3242
+ * 查询 ID 或查询定义版本 ID
3243
+ * @type {string}
3244
+ * @memberof QueriesApiExecuteQuery
2575
3245
  */
2576
- getAuthToken?: () => string | Promise<string>;
3246
+ readonly queryId: string;
2577
3247
  /**
2578
- * 获取追踪头
2579
3248
  *
2580
- * OpenTelemetry: traceparent, baggage 等
3249
+ * @type {ExecuteQueryRequest}
3250
+ * @memberof QueriesApiExecuteQuery
3251
+ */
3252
+ readonly executeQueryRequest: ExecuteQueryRequest;
3253
+ }
3254
+ /**
3255
+ * QueriesApi - object-oriented interface
3256
+ * @export
3257
+ * @class QueriesApi
3258
+ * @extends {BaseAPI}
3259
+ */
3260
+ declare class QueriesApi extends BaseAPI {
3261
+ /**
3262
+ * 执行指定的数据查询,返回查询结果。 支持: - 参数化查询 - 结果缓存 - 分页
3263
+ * @summary 执行数据查询
3264
+ * @param {QueriesApiExecuteQueryRequest} requestParameters Request parameters.
3265
+ * @param {*} [options] Override http request option.
3266
+ * @throws {RequiredError}
3267
+ * @memberof QueriesApi
2581
3268
  */
2582
- getTraceHeaders?: () => Record<string, string>;
3269
+ executeQuery(requestParameters: QueriesApiExecuteQueryRequest, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<ExecuteQuery200Response, any, {}>>;
3270
+ }
3271
+
3272
+ /**
3273
+ * User API 客户端配置
3274
+ */
3275
+ interface UserClientConfig {
3276
+ /** API 基础 URL,默认 /api/user */
3277
+ baseUrl?: string;
3278
+ /** 超时时间(毫秒),默认 30000 */
3279
+ timeout?: number;
3280
+ /** 认证配置(可选,User API 通常不需要认证) */
3281
+ auth?: AuthConfig;
3282
+ /** 重试配置 */
3283
+ retry?: RetryConfig;
3284
+ /** 额外的请求头 */
3285
+ headers?: Record<string, string>;
3286
+ }
3287
+ /**
3288
+ * User API 客户端
3289
+ *
3290
+ * 封装了所有用户端 API 的统一入口
3291
+ */
3292
+ declare class UserClient {
3293
+ /** 页面解析 API */
3294
+ readonly pages: PagesApi;
3295
+ /** 动作执行 API */
3296
+ readonly actions: ActionsApi;
3297
+ /** 数据查询 API */
3298
+ readonly queries: QueriesApi;
3299
+ constructor(config?: UserClientConfig);
2583
3300
  /**
2584
- * 默认请求头
3301
+ * 快速解析页面(简化版)
2585
3302
  *
2586
- * x-device-id, x-channel, x-app-key
3303
+ * @param pageId - 页面 ID
2587
3304
  */
2588
- defaultHeaders?: Record<string, string>;
3305
+ resolvePage(pageId: string): Promise<axios.AxiosResponse<ResolvePage200Response, any, {}>>;
2589
3306
  /**
2590
- * 超时时间(毫秒)
3307
+ * 快速执行动作(简化版)
2591
3308
  *
2592
- * @default 15000 (User API 追求快失败)
3309
+ * @param actionId - 动作 ID
3310
+ * @param params - 动作参数
2593
3311
  */
2594
- timeoutMs?: number;
3312
+ executeAction(actionId: string, params: Record<string, unknown>): Promise<axios.AxiosResponse<ExecuteAction200Response, any, {}>>;
2595
3313
  /**
2596
- * Cookie 策略
3314
+ * 快速执行数据查询(简化版)
2597
3315
  *
2598
- * @default 'omit' (User API 通常不走 Cookie)
3316
+ * @param queryId - 查询 ID
3317
+ * @param params - 查询参数(可选)
2599
3318
  */
2600
- credentials?: RequestCredentials;
3319
+ executeQuery(queryId: string, params?: Record<string, unknown>): Promise<axios.AxiosResponse<ExecuteQuery200Response, any, {}>>;
2601
3320
  }
2602
- type ApiClasses = typeof apis;
2603
- type ApiInstanceMap = {
2604
- [K in keyof ApiClasses as K extends `${string}Api` ? ApiClasses[K] extends new (...args: unknown[]) => unknown ? K : never : never]: ApiClasses[K] extends new (...args: unknown[]) => infer T ? T : never;
2605
- };
2606
3321
  /**
2607
3322
  * 创建 User API 客户端
2608
3323
  *
2609
- * @param opts - 客户端配置
2610
- * @returns 包含所有 API 实例的客户端对象
3324
+ * @param config - 客户端配置
3325
+ * @returns User API 客户端实例
2611
3326
  *
2612
3327
  * @example
2613
3328
  * ```typescript
2614
3329
  * const client = createUserClient({
2615
- * baseUrl: 'https://api.example.com',
2616
- * getAuthToken: () => getToken(),
2617
- * defaultHeaders: {
2618
- * 'x-device-id': deviceId,
2619
- * 'x-channel': 'h5',
2620
- * },
2621
- * retry: { maxRetries: 2 },
3330
+ * baseUrl: 'https://api.example.com/user',
2622
3331
  * });
3332
+ * ```
3333
+ */
3334
+ declare function createUserClient(config?: UserClientConfig): UserClient;
3335
+ /**
3336
+ * 创建独立的 axios 实例
2623
3337
  *
2624
- * // 解析页面
2625
- * const page = await client.PageApi.resolvePage({ pageUid: 'xxx' });
3338
+ * 用于需要直接使用 axios 实例的场景
2626
3339
  *
2627
- * // 执行动作
2628
- * const result = await client.ActionsApi.executeAction({
2629
- * actionExecuteRequest: {
2630
- * actionType: 'claim',
2631
- * params: { activityId: 'xxx' },
2632
- * context: {},
2633
- * },
2634
- * });
2635
- * ```
3340
+ * @param config - 客户端配置
3341
+ * @returns 配置好的 axios 实例
3342
+ */
3343
+ declare function createUserAxiosInstance(config?: UserClientConfig): axios.AxiosInstance;
3344
+
3345
+ /**
3346
+ * @djvlc/openapi-user-client
3347
+ *
3348
+ * DJVLC 低代码平台用户端 API 客户端
3349
+ *
3350
+ * 基于 OpenAPI 规范自动生成,使用 @djvlc/openapi-client-core 提供统一的运行时
3351
+ *
3352
+ * @packageDocumentation
2636
3353
  */
2637
- declare function createUserClient(opts: UserClientOptions): {
2638
- config: Configuration$1;
2639
- apis: ApiInstanceMap;
2640
- } & ApiInstanceMap;
2641
- type UserClient = ReturnType<typeof createUserClient>;
2642
3354
 
2643
- export { ActionApi, type ActionApiExecuteActionBatchOperationRequest, type ActionApiExecuteActionRequest, type ActionApiInterface, type ActionContext, ActionContextFromJSON, ActionContextFromJSONTyped, ActionContextToJSON, ActionContextToJSONTyped, type ActionExecuteRequest, ActionExecuteRequestFromJSON, ActionExecuteRequestFromJSONTyped, ActionExecuteRequestToJSON, ActionExecuteRequestToJSONTyped, type ActionExecuteResponse, ActionExecuteResponseFromJSON, ActionExecuteResponseFromJSONTyped, ActionExecuteResponseToJSON, ActionExecuteResponseToJSONTyped, ActivityApi, type ActivityApiGetActivityStateBatchOperationRequest, type ActivityApiGetActivityStateRequest, type ActivityApiInterface, type ActivityState, type ActivityStateActivityInfo, ActivityStateActivityInfoFromJSON, ActivityStateActivityInfoFromJSONTyped, ActivityStateActivityInfoToJSON, ActivityStateActivityInfoToJSONTyped, ActivityStateFromJSON, ActivityStateFromJSONTyped, type ActivityStateResponse, ActivityStateResponseFromJSON, ActivityStateResponseFromJSONTyped, ActivityStateResponseToJSON, ActivityStateResponseToJSONTyped, ActivityStateStatusEnum, ActivityStateToJSON, ActivityStateToJSONTyped, type BaseResponseVo, BaseResponseVoFromJSON, BaseResponseVoFromJSONTyped, BaseResponseVoToJSON, BaseResponseVoToJSONTyped, type BlockedComponent, BlockedComponentFromJSON, BlockedComponentFromJSONTyped, BlockedComponentToJSON, BlockedComponentToJSONTyped, DataApi, type DataApiInterface, type DataApiQueryDataBatchOperationRequest, type DataApiQueryDataRequest, type DataQueryContext, DataQueryContextFromJSON, DataQueryContextFromJSONTyped, DataQueryContextToJSON, DataQueryContextToJSONTyped, type DataQueryRequest, DataQueryRequestFromJSON, DataQueryRequestFromJSONTyped, DataQueryRequestToJSON, DataQueryRequestToJSONTyped, type DataQueryResponse, DataQueryResponseFromJSON, DataQueryResponseFromJSONTyped, DataQueryResponseToJSON, DataQueryResponseToJSONTyped, type ErrorDetail, ErrorDetailFromJSON, ErrorDetailFromJSONTyped, ErrorDetailToJSON, ErrorDetailToJSONTyped, type ErrorResponseVo, ErrorResponseVoFromJSON, ErrorResponseVoFromJSONTyped, ErrorResponseVoToJSON, ErrorResponseVoToJSONTyped, type ExecuteActionBatch200Response, ExecuteActionBatch200ResponseFromJSON, ExecuteActionBatch200ResponseFromJSONTyped, ExecuteActionBatch200ResponseToJSON, ExecuteActionBatch200ResponseToJSONTyped, type ExecuteActionBatchRequest, ExecuteActionBatchRequestFromJSON, ExecuteActionBatchRequestFromJSONTyped, ExecuteActionBatchRequestToJSON, ExecuteActionBatchRequestToJSONTyped, type GetActivityStateBatch200Response, GetActivityStateBatch200ResponseFromJSON, GetActivityStateBatch200ResponseFromJSONTyped, GetActivityStateBatch200ResponseToJSON, GetActivityStateBatch200ResponseToJSONTyped, type GetActivityStateBatchRequest, GetActivityStateBatchRequestFromJSON, GetActivityStateBatchRequestFromJSONTyped, GetActivityStateBatchRequestToJSON, GetActivityStateBatchRequestToJSONTyped, HealthApi, type HealthApiInterface, type HealthResponse, type HealthResponseChecksValue, HealthResponseChecksValueFromJSON, HealthResponseChecksValueFromJSONTyped, HealthResponseChecksValueToJSON, HealthResponseChecksValueToJSONTyped, HealthResponseFromJSON, HealthResponseFromJSONTyped, HealthResponseStatusEnum, HealthResponseToJSON, HealthResponseToJSONTyped, type ManifestItem, ManifestItemFromJSON, ManifestItemFromJSONTyped, ManifestItemToJSON, ManifestItemToJSONTyped, PageApi, type PageApiInterface, type PageApiResolvePageBatchOperationRequest, type PageApiResolvePageRequest, type PageManifest, PageManifestFromJSON, PageManifestFromJSONTyped, PageManifestToJSON, PageManifestToJSONTyped, type PageResolveResponse, PageResolveResponseFromJSON, PageResolveResponseFromJSONTyped, PageResolveResponseToJSON, PageResolveResponseToJSONTyped, type PageResolveResult, PageResolveResultFromJSON, PageResolveResultFromJSONTyped, PageResolveResultToJSON, PageResolveResultToJSONTyped, type QueryDataBatch200Response, QueryDataBatch200ResponseFromJSON, QueryDataBatch200ResponseFromJSONTyped, QueryDataBatch200ResponseToJSON, QueryDataBatch200ResponseToJSONTyped, type QueryDataBatchRequest, QueryDataBatchRequestFromJSON, QueryDataBatchRequestFromJSONTyped, QueryDataBatchRequestToJSON, QueryDataBatchRequestToJSONTyped, type ResolvePageBatch200Response, ResolvePageBatch200ResponseFromJSON, ResolvePageBatch200ResponseFromJSONTyped, ResolvePageBatch200ResponseToJSON, ResolvePageBatch200ResponseToJSONTyped, type ResolvePageBatchRequest, ResolvePageBatchRequestChannelEnum, ResolvePageBatchRequestFromJSON, ResolvePageBatchRequestFromJSONTyped, ResolvePageBatchRequestToJSON, ResolvePageBatchRequestToJSONTyped, ResolvePageChannelEnum, type RuntimeConfig, RuntimeConfigFromJSON, RuntimeConfigFromJSONTyped, type RuntimeConfigReportConfig, RuntimeConfigReportConfigFromJSON, RuntimeConfigReportConfigFromJSONTyped, RuntimeConfigReportConfigToJSON, RuntimeConfigReportConfigToJSONTyped, RuntimeConfigToJSON, RuntimeConfigToJSONTyped, type TraceContext, TraceContextFromJSON, TraceContextFromJSONTyped, TraceContextToJSON, TraceContextToJSONTyped, TrackApi, type TrackApiInterface, type TrackApiTrackOperationRequest, type TrackContext, TrackContextFromJSON, TrackContextFromJSONTyped, TrackContextToJSON, TrackContextToJSONTyped, type TrackEvent, TrackEventEventTypeEnum, TrackEventFromJSON, TrackEventFromJSONTyped, TrackEventToJSON, TrackEventToJSONTyped, type TrackRequest, TrackRequestFromJSON, TrackRequestFromJSONTyped, TrackRequestToJSON, TrackRequestToJSONTyped, type UserActivityState, UserActivityStateFromJSON, UserActivityStateFromJSONTyped, type UserActivityStateProgress, UserActivityStateProgressFromJSON, UserActivityStateProgressFromJSONTyped, UserActivityStateProgressToJSON, UserActivityStateProgressToJSONTyped, UserActivityStateToJSON, UserActivityStateToJSONTyped, type UserClient, type UserClientOptions, createUserClient, instanceOfActionContext, instanceOfActionExecuteRequest, instanceOfActionExecuteResponse, instanceOfActivityState, instanceOfActivityStateActivityInfo, instanceOfActivityStateResponse, instanceOfBaseResponseVo, instanceOfBlockedComponent, instanceOfDataQueryContext, instanceOfDataQueryRequest, instanceOfDataQueryResponse, instanceOfErrorDetail, instanceOfErrorResponseVo, instanceOfExecuteActionBatch200Response, instanceOfExecuteActionBatchRequest, instanceOfGetActivityStateBatch200Response, instanceOfGetActivityStateBatchRequest, instanceOfHealthResponse, instanceOfHealthResponseChecksValue, instanceOfManifestItem, instanceOfPageManifest, instanceOfPageResolveResponse, instanceOfPageResolveResult, instanceOfQueryDataBatch200Response, instanceOfQueryDataBatchRequest, instanceOfResolvePageBatch200Response, instanceOfResolvePageBatchRequest, instanceOfRuntimeConfig, instanceOfRuntimeConfigReportConfig, instanceOfTraceContext, instanceOfTrackContext, instanceOfTrackEvent, instanceOfTrackRequest, instanceOfUserActivityState, instanceOfUserActivityStateProgress };
3355
+ /** 客户端版本 */
3356
+ declare const VERSION = "2.0.0";
3357
+
3358
+ export { type ActionContext, type ActionEffect, ActionEffectTypeEnum, type ActionManifest, ActionManifestTypeEnum, ActionsApi, type ClaimRecordInfo, ClaimRecordInfoStatusEnum, type ComponentManifest, Configuration, type ConfigurationParameters, type ErrorResponse, type ExecuteAction200Response, type ExecuteAction200ResponseData, type ExecuteAction200ResponseDataEffectsInner, ExecuteAction200ResponseDataEffectsInnerTypeEnum, type ExecuteActionRequest, type ExecuteActionRequestContext, type ExecuteActionRequestOptions, type ExecuteActionResponse, type ExecuteQuery200Response, type ExecuteQuery200ResponseMeta, type ExecuteQuery200ResponseMetaPagination, type ExecuteQueryRequest, type ExecuteQueryRequestOptions, type ExecuteQueryResponse, type GetActivityInfo200Response, type GetActivityInfo200ResponseData, type GetActivityInfo200ResponseDataRewardsInner, GetActivityInfo200ResponseDataStatusEnum, GetActivityInfo200ResponseDataTypeEnum, type GetActivityState200Response, type GetActivityState200ResponseData, type GetClaimRecords200Response, type GetClaimRecords200ResponseDataInner, GetClaimRecords200ResponseDataInnerStatusEnum, type GetClaimRecords200ResponseMeta, type GetLotteryRecords200Response, type GetLotteryRecords200ResponseDataInner, GetLotteryRecords200ResponseDataInnerPrizeTypeEnum, GetLotteryRecords200ResponseDataInnerStatusEnum, type GetPage200Response, type GetPage200ResponseData, type GetPage200ResponseDataMeta, type GetPage404Response, type GetPage404ResponseDetailsInner, type GetSigninCalendar200Response, type GetSigninCalendar200ResponseData, type GetSigninCalendar200ResponseDataRecordsInner, type GetSigninCalendar200ResponseDataRecordsInnerReward, type LotteryRecordInfo, LotteryRecordInfoPrizeTypeEnum, LotteryRecordInfoStatusEnum, type PageResponse, PagesApi, type PaginationMeta, type PublicActivityInfo, PublicActivityInfoStatusEnum, PublicActivityInfoTypeEnum, QueriesApi, type QueryManifest, type ResolveContext, ResolveContextDeviceTypeEnum, type ResolvePage200Response, type ResolvePage200ResponseData, type ResolvePage200ResponseDataManifests, type ResolvePage200ResponseDataManifestsActionsInner, ResolvePage200ResponseDataManifestsActionsInnerTypeEnum, type ResolvePage200ResponseDataManifestsComponentsInner, type ResolvePage200ResponseDataManifestsQueriesInner, type ResolvePageRequest, type ResolvePageRequestContext, ResolvePageRequestContextDeviceTypeEnum, type ResolvePageRequestOptions, type ResolvePageResponse, type ResourceManifests, type SigninCalendar, type Track202Response, type Track202ResponseData, type TrackBatch202Response, type TrackBatch202ResponseData, type TrackBatch202ResponseDataErrorsInner, type TrackBatchRequest, type TrackRequest, type TrackRequestContext, TrackRequestEventTypeEnum, type UserActivityState, UserClient, type UserClientConfig, VERSION, type ValidateActionParams200Response, type ValidateActionParams200ResponseData, type ValidateActionParams200ResponseDataErrorsInner, type ValidateActionParamsRequest, type ValidateActionRequest, type ValidateActionResponse, createUserAxiosInstance, createUserClient };