@djvlc/openapi-user-client 1.7.0 → 1.7.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.mts +1374 -493
- package/dist/index.d.ts +1374 -493
- package/dist/index.js +3558 -15611
- package/dist/index.mjs +3246 -15610
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -1,87 +1,44 @@
|
|
|
1
|
-
import
|
|
2
|
-
|
|
3
|
-
import { AuthConfig, RetryConfig } from '@djvlc/openapi-client-core';
|
|
4
|
-
export { AuthConfig, RetryConfig } from '@djvlc/openapi-client-core';
|
|
1
|
+
import { AuthConfig, RetryConfig, Logger } from '@djvlc/openapi-client-core';
|
|
2
|
+
export { AbortError, ApiError, AuthConfig, ErrorInterceptor, Logger, NetworkError, RequestInterceptor, ResponseInterceptor, RetryConfig, TimeoutError, createConsoleLogger, createMetricsCollector, createMetricsInterceptors, createSilentLogger, isRetryableError } from '@djvlc/openapi-client-core';
|
|
5
3
|
|
|
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
|
-
*/
|
|
17
4
|
interface ConfigurationParameters {
|
|
18
|
-
|
|
5
|
+
basePath?: string;
|
|
6
|
+
fetchApi?: FetchAPI;
|
|
7
|
+
middleware?: Middleware[];
|
|
8
|
+
queryParamsStringify?: (params: HTTPQuery) => string;
|
|
19
9
|
username?: string;
|
|
20
10
|
password?: string;
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
formDataCtor?: new () => any;
|
|
11
|
+
apiKey?: string | ((name: string) => string);
|
|
12
|
+
accessToken?: string | Promise<string> | ((name?: string, scopes?: string[]) => string | Promise<string>);
|
|
13
|
+
headers?: HTTPHeaders;
|
|
14
|
+
credentials?: RequestCredentials;
|
|
26
15
|
}
|
|
27
16
|
declare class Configuration {
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
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);
|
|
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) | 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;
|
|
85
42
|
/**
|
|
86
43
|
* Check if the given MIME is a JSON MIME.
|
|
87
44
|
* JSON MIME examples:
|
|
@@ -92,31 +49,88 @@ declare class Configuration {
|
|
|
92
49
|
* @param mime - MIME (Multipurpose Internet Mail Extensions)
|
|
93
50
|
* @return True if the given MIME is JSON, false otherwise.
|
|
94
51
|
*/
|
|
95
|
-
isJsonMime(mime: string): boolean;
|
|
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;
|
|
96
61
|
}
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
62
|
+
declare class ResponseError extends Error {
|
|
63
|
+
response: Response;
|
|
64
|
+
name: "ResponseError";
|
|
65
|
+
constructor(response: Response, msg?: string);
|
|
66
|
+
}
|
|
67
|
+
declare class FetchError extends Error {
|
|
68
|
+
cause: Error;
|
|
69
|
+
name: "FetchError";
|
|
70
|
+
constructor(cause: Error, msg?: string);
|
|
71
|
+
}
|
|
72
|
+
declare class RequiredError extends Error {
|
|
73
|
+
field: string;
|
|
74
|
+
name: "RequiredError";
|
|
75
|
+
constructor(field: string, msg?: string);
|
|
76
|
+
}
|
|
77
|
+
type FetchAPI = WindowOrWorkerGlobalScope['fetch'];
|
|
78
|
+
type Json = any;
|
|
79
|
+
type HTTPMethod = 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE' | 'OPTIONS' | 'HEAD';
|
|
80
|
+
type HTTPHeaders = {
|
|
81
|
+
[key: string]: string;
|
|
82
|
+
};
|
|
83
|
+
type HTTPQuery = {
|
|
84
|
+
[key: string]: string | number | null | boolean | Array<string | number | null | boolean> | Set<string | number | null | boolean> | HTTPQuery;
|
|
85
|
+
};
|
|
86
|
+
type HTTPBody = Json | FormData | URLSearchParams;
|
|
87
|
+
type HTTPRequestInit = {
|
|
88
|
+
headers?: HTTPHeaders;
|
|
89
|
+
method: HTTPMethod;
|
|
90
|
+
credentials?: RequestCredentials;
|
|
91
|
+
body?: HTTPBody;
|
|
92
|
+
};
|
|
93
|
+
type InitOverrideFunction = (requestContext: {
|
|
94
|
+
init: HTTPRequestInit;
|
|
95
|
+
context: RequestOpts;
|
|
96
|
+
}) => Promise<RequestInit>;
|
|
97
|
+
interface FetchParams {
|
|
98
|
+
url: string;
|
|
99
|
+
init: RequestInit;
|
|
100
|
+
}
|
|
101
|
+
interface RequestOpts {
|
|
102
|
+
path: string;
|
|
103
|
+
method: HTTPMethod;
|
|
104
|
+
headers: HTTPHeaders;
|
|
105
|
+
query?: HTTPQuery;
|
|
106
|
+
body?: HTTPBody;
|
|
107
|
+
}
|
|
108
|
+
interface RequestContext {
|
|
109
|
+
fetch: FetchAPI;
|
|
110
|
+
url: string;
|
|
111
|
+
init: RequestInit;
|
|
112
|
+
}
|
|
113
|
+
interface ResponseContext {
|
|
114
|
+
fetch: FetchAPI;
|
|
115
|
+
url: string;
|
|
116
|
+
init: RequestInit;
|
|
117
|
+
response: Response;
|
|
118
|
+
}
|
|
119
|
+
interface ErrorContext {
|
|
120
|
+
fetch: FetchAPI;
|
|
121
|
+
url: string;
|
|
122
|
+
init: RequestInit;
|
|
123
|
+
error: unknown;
|
|
124
|
+
response?: Response;
|
|
125
|
+
}
|
|
126
|
+
interface Middleware {
|
|
127
|
+
pre?(context: RequestContext): Promise<FetchParams | void>;
|
|
128
|
+
post?(context: ResponseContext): Promise<Response | void>;
|
|
129
|
+
onError?(context: ErrorContext): Promise<Response | void>;
|
|
130
|
+
}
|
|
131
|
+
interface ApiResponse<T> {
|
|
132
|
+
raw: Response;
|
|
133
|
+
value(): Promise<T>;
|
|
120
134
|
}
|
|
121
135
|
|
|
122
136
|
/**
|
|
@@ -141,28 +155,35 @@ interface ActionContext {
|
|
|
141
155
|
* @type {string}
|
|
142
156
|
* @memberof ActionContext
|
|
143
157
|
*/
|
|
144
|
-
|
|
158
|
+
pageId?: string;
|
|
145
159
|
/**
|
|
146
160
|
* 触发组件 ID
|
|
147
161
|
* @type {string}
|
|
148
162
|
* @memberof ActionContext
|
|
149
163
|
*/
|
|
150
|
-
|
|
164
|
+
componentId?: string;
|
|
151
165
|
/**
|
|
152
166
|
* 触发事件名
|
|
153
167
|
* @type {string}
|
|
154
168
|
* @memberof ActionContext
|
|
155
169
|
*/
|
|
156
|
-
|
|
170
|
+
eventName?: string;
|
|
157
171
|
/**
|
|
158
172
|
* 当前页面状态
|
|
159
173
|
* @type {{ [key: string]: any; }}
|
|
160
174
|
* @memberof ActionContext
|
|
161
175
|
*/
|
|
162
|
-
|
|
176
|
+
state?: {
|
|
163
177
|
[key: string]: any;
|
|
164
178
|
};
|
|
165
179
|
}
|
|
180
|
+
/**
|
|
181
|
+
* Check if a given object implements the ActionContext interface.
|
|
182
|
+
*/
|
|
183
|
+
declare function instanceOfActionContext(value: object): boolean;
|
|
184
|
+
declare function ActionContextFromJSON(json: any): ActionContext;
|
|
185
|
+
declare function ActionContextFromJSONTyped(json: any, ignoreDiscriminator: boolean): ActionContext;
|
|
186
|
+
declare function ActionContextToJSON(value?: ActionContext | null): any;
|
|
166
187
|
|
|
167
188
|
/**
|
|
168
189
|
* DJVLC User API
|
|
@@ -186,16 +207,19 @@ interface ActionEffect {
|
|
|
186
207
|
* @type {string}
|
|
187
208
|
* @memberof ActionEffect
|
|
188
209
|
*/
|
|
189
|
-
|
|
210
|
+
type: ActionEffectTypeEnum;
|
|
190
211
|
/**
|
|
191
212
|
* 副作用参数
|
|
192
213
|
* @type {{ [key: string]: any; }}
|
|
193
214
|
* @memberof ActionEffect
|
|
194
215
|
*/
|
|
195
|
-
|
|
216
|
+
payload?: {
|
|
196
217
|
[key: string]: any;
|
|
197
218
|
};
|
|
198
219
|
}
|
|
220
|
+
/**
|
|
221
|
+
* @export
|
|
222
|
+
*/
|
|
199
223
|
declare const ActionEffectTypeEnum: {
|
|
200
224
|
readonly SET_STATE: "setState";
|
|
201
225
|
readonly NAVIGATE: "navigate";
|
|
@@ -204,6 +228,13 @@ declare const ActionEffectTypeEnum: {
|
|
|
204
228
|
readonly CUSTOM: "custom";
|
|
205
229
|
};
|
|
206
230
|
type ActionEffectTypeEnum = typeof ActionEffectTypeEnum[keyof typeof ActionEffectTypeEnum];
|
|
231
|
+
/**
|
|
232
|
+
* Check if a given object implements the ActionEffect interface.
|
|
233
|
+
*/
|
|
234
|
+
declare function instanceOfActionEffect(value: object): boolean;
|
|
235
|
+
declare function ActionEffectFromJSON(json: any): ActionEffect;
|
|
236
|
+
declare function ActionEffectFromJSONTyped(json: any, ignoreDiscriminator: boolean): ActionEffect;
|
|
237
|
+
declare function ActionEffectToJSON(value?: ActionEffect | null): any;
|
|
207
238
|
|
|
208
239
|
/**
|
|
209
240
|
* DJVLC User API
|
|
@@ -227,25 +258,35 @@ interface ActionManifest {
|
|
|
227
258
|
* @type {string}
|
|
228
259
|
* @memberof ActionManifest
|
|
229
260
|
*/
|
|
230
|
-
|
|
261
|
+
actionId: string;
|
|
231
262
|
/**
|
|
232
263
|
* 动作版本
|
|
233
264
|
* @type {string}
|
|
234
265
|
* @memberof ActionManifest
|
|
235
266
|
*/
|
|
236
|
-
|
|
267
|
+
version: string;
|
|
237
268
|
/**
|
|
238
269
|
* 动作类型
|
|
239
270
|
* @type {string}
|
|
240
271
|
* @memberof ActionManifest
|
|
241
272
|
*/
|
|
242
|
-
|
|
273
|
+
type?: ActionManifestTypeEnum;
|
|
243
274
|
}
|
|
275
|
+
/**
|
|
276
|
+
* @export
|
|
277
|
+
*/
|
|
244
278
|
declare const ActionManifestTypeEnum: {
|
|
245
279
|
readonly BUILTIN: "builtin";
|
|
246
280
|
readonly CUSTOM: "custom";
|
|
247
281
|
};
|
|
248
282
|
type ActionManifestTypeEnum = typeof ActionManifestTypeEnum[keyof typeof ActionManifestTypeEnum];
|
|
283
|
+
/**
|
|
284
|
+
* Check if a given object implements the ActionManifest interface.
|
|
285
|
+
*/
|
|
286
|
+
declare function instanceOfActionManifest(value: object): boolean;
|
|
287
|
+
declare function ActionManifestFromJSON(json: any): ActionManifest;
|
|
288
|
+
declare function ActionManifestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ActionManifest;
|
|
289
|
+
declare function ActionManifestToJSON(value?: ActionManifest | null): any;
|
|
249
290
|
|
|
250
291
|
/**
|
|
251
292
|
* DJVLC User API
|
|
@@ -269,62 +310,72 @@ interface ClaimRecordInfo {
|
|
|
269
310
|
* @type {string}
|
|
270
311
|
* @memberof ClaimRecordInfo
|
|
271
312
|
*/
|
|
272
|
-
|
|
313
|
+
id: string;
|
|
273
314
|
/**
|
|
274
315
|
* 活动 ID
|
|
275
316
|
* @type {string}
|
|
276
317
|
* @memberof ClaimRecordInfo
|
|
277
318
|
*/
|
|
278
|
-
|
|
319
|
+
activityId?: string;
|
|
279
320
|
/**
|
|
280
321
|
* 奖励类型
|
|
281
322
|
* @type {string}
|
|
282
323
|
* @memberof ClaimRecordInfo
|
|
283
324
|
*/
|
|
284
|
-
|
|
325
|
+
rewardType: string;
|
|
285
326
|
/**
|
|
286
327
|
* 奖励名称
|
|
287
328
|
* @type {string}
|
|
288
329
|
* @memberof ClaimRecordInfo
|
|
289
330
|
*/
|
|
290
|
-
|
|
331
|
+
rewardName?: string;
|
|
291
332
|
/**
|
|
292
333
|
* 奖励值
|
|
293
334
|
* @type {number}
|
|
294
335
|
* @memberof ClaimRecordInfo
|
|
295
336
|
*/
|
|
296
|
-
|
|
337
|
+
rewardValue?: number;
|
|
297
338
|
/**
|
|
298
339
|
* 领取状态
|
|
299
340
|
* @type {string}
|
|
300
341
|
* @memberof ClaimRecordInfo
|
|
301
342
|
*/
|
|
302
|
-
|
|
343
|
+
status: ClaimRecordInfoStatusEnum;
|
|
303
344
|
/**
|
|
304
345
|
* 创建时间
|
|
305
|
-
* @type {
|
|
346
|
+
* @type {Date}
|
|
306
347
|
* @memberof ClaimRecordInfo
|
|
307
348
|
*/
|
|
308
|
-
|
|
349
|
+
createdAt: Date;
|
|
309
350
|
/**
|
|
310
351
|
* 领取时间
|
|
311
|
-
* @type {
|
|
352
|
+
* @type {Date}
|
|
312
353
|
* @memberof ClaimRecordInfo
|
|
313
354
|
*/
|
|
314
|
-
|
|
355
|
+
claimedAt?: Date;
|
|
315
356
|
/**
|
|
316
357
|
* 过期时间
|
|
317
|
-
* @type {
|
|
358
|
+
* @type {Date}
|
|
318
359
|
* @memberof ClaimRecordInfo
|
|
319
360
|
*/
|
|
320
|
-
|
|
361
|
+
expiresAt?: Date;
|
|
321
362
|
}
|
|
363
|
+
/**
|
|
364
|
+
* @export
|
|
365
|
+
*/
|
|
322
366
|
declare const ClaimRecordInfoStatusEnum: {
|
|
323
367
|
readonly PENDING: "pending";
|
|
324
368
|
readonly CLAIMED: "claimed";
|
|
325
369
|
readonly EXPIRED: "expired";
|
|
326
370
|
};
|
|
327
371
|
type ClaimRecordInfoStatusEnum = typeof ClaimRecordInfoStatusEnum[keyof typeof ClaimRecordInfoStatusEnum];
|
|
372
|
+
/**
|
|
373
|
+
* Check if a given object implements the ClaimRecordInfo interface.
|
|
374
|
+
*/
|
|
375
|
+
declare function instanceOfClaimRecordInfo(value: object): boolean;
|
|
376
|
+
declare function ClaimRecordInfoFromJSON(json: any): ClaimRecordInfo;
|
|
377
|
+
declare function ClaimRecordInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): ClaimRecordInfo;
|
|
378
|
+
declare function ClaimRecordInfoToJSON(value?: ClaimRecordInfo | null): any;
|
|
328
379
|
|
|
329
380
|
/**
|
|
330
381
|
* DJVLC User API
|
|
@@ -348,26 +399,33 @@ interface ComponentManifest {
|
|
|
348
399
|
* @type {string}
|
|
349
400
|
* @memberof ComponentManifest
|
|
350
401
|
*/
|
|
351
|
-
|
|
402
|
+
componentType: string;
|
|
352
403
|
/**
|
|
353
404
|
* 组件版本
|
|
354
405
|
* @type {string}
|
|
355
406
|
* @memberof ComponentManifest
|
|
356
407
|
*/
|
|
357
|
-
|
|
408
|
+
version: string;
|
|
358
409
|
/**
|
|
359
410
|
* 组件入口 URL
|
|
360
411
|
* @type {string}
|
|
361
412
|
* @memberof ComponentManifest
|
|
362
413
|
*/
|
|
363
|
-
|
|
414
|
+
entryUrl: string;
|
|
364
415
|
/**
|
|
365
416
|
* 完整性哈希
|
|
366
417
|
* @type {string}
|
|
367
418
|
* @memberof ComponentManifest
|
|
368
419
|
*/
|
|
369
|
-
|
|
420
|
+
integrity?: string;
|
|
370
421
|
}
|
|
422
|
+
/**
|
|
423
|
+
* Check if a given object implements the ComponentManifest interface.
|
|
424
|
+
*/
|
|
425
|
+
declare function instanceOfComponentManifest(value: object): boolean;
|
|
426
|
+
declare function ComponentManifestFromJSON(json: any): ComponentManifest;
|
|
427
|
+
declare function ComponentManifestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ComponentManifest;
|
|
428
|
+
declare function ComponentManifestToJSON(value?: ComponentManifest | null): any;
|
|
371
429
|
|
|
372
430
|
/**
|
|
373
431
|
* DJVLC User API
|
|
@@ -391,14 +449,21 @@ interface GetPage404ResponseDetailsInner {
|
|
|
391
449
|
* @type {string}
|
|
392
450
|
* @memberof GetPage404ResponseDetailsInner
|
|
393
451
|
*/
|
|
394
|
-
|
|
452
|
+
field?: string;
|
|
395
453
|
/**
|
|
396
454
|
*
|
|
397
455
|
* @type {string}
|
|
398
456
|
* @memberof GetPage404ResponseDetailsInner
|
|
399
457
|
*/
|
|
400
|
-
|
|
458
|
+
message?: string;
|
|
401
459
|
}
|
|
460
|
+
/**
|
|
461
|
+
* Check if a given object implements the GetPage404ResponseDetailsInner interface.
|
|
462
|
+
*/
|
|
463
|
+
declare function instanceOfGetPage404ResponseDetailsInner(value: object): boolean;
|
|
464
|
+
declare function GetPage404ResponseDetailsInnerFromJSON(json: any): GetPage404ResponseDetailsInner;
|
|
465
|
+
declare function GetPage404ResponseDetailsInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetPage404ResponseDetailsInner;
|
|
466
|
+
declare function GetPage404ResponseDetailsInnerToJSON(value?: GetPage404ResponseDetailsInner | null): any;
|
|
402
467
|
|
|
403
468
|
/**
|
|
404
469
|
* DJVLC User API
|
|
@@ -423,20 +488,27 @@ interface ErrorResponse {
|
|
|
423
488
|
* @type {string}
|
|
424
489
|
* @memberof ErrorResponse
|
|
425
490
|
*/
|
|
426
|
-
|
|
491
|
+
code: string;
|
|
427
492
|
/**
|
|
428
493
|
* 错误消息
|
|
429
494
|
* @type {string}
|
|
430
495
|
* @memberof ErrorResponse
|
|
431
496
|
*/
|
|
432
|
-
|
|
497
|
+
message: string;
|
|
433
498
|
/**
|
|
434
499
|
* 错误详情
|
|
435
500
|
* @type {Array<GetPage404ResponseDetailsInner>}
|
|
436
501
|
* @memberof ErrorResponse
|
|
437
502
|
*/
|
|
438
|
-
|
|
503
|
+
details?: Array<GetPage404ResponseDetailsInner>;
|
|
439
504
|
}
|
|
505
|
+
/**
|
|
506
|
+
* Check if a given object implements the ErrorResponse interface.
|
|
507
|
+
*/
|
|
508
|
+
declare function instanceOfErrorResponse(value: object): boolean;
|
|
509
|
+
declare function ErrorResponseFromJSON(json: any): ErrorResponse;
|
|
510
|
+
declare function ErrorResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ErrorResponse;
|
|
511
|
+
declare function ErrorResponseToJSON(value?: ErrorResponse | null): any;
|
|
440
512
|
|
|
441
513
|
/**
|
|
442
514
|
* DJVLC User API
|
|
@@ -460,16 +532,19 @@ interface ExecuteAction200ResponseDataEffectsInner {
|
|
|
460
532
|
* @type {string}
|
|
461
533
|
* @memberof ExecuteAction200ResponseDataEffectsInner
|
|
462
534
|
*/
|
|
463
|
-
|
|
535
|
+
type: ExecuteAction200ResponseDataEffectsInnerTypeEnum;
|
|
464
536
|
/**
|
|
465
537
|
* 副作用参数
|
|
466
538
|
* @type {{ [key: string]: any; }}
|
|
467
539
|
* @memberof ExecuteAction200ResponseDataEffectsInner
|
|
468
540
|
*/
|
|
469
|
-
|
|
541
|
+
payload?: {
|
|
470
542
|
[key: string]: any;
|
|
471
543
|
};
|
|
472
544
|
}
|
|
545
|
+
/**
|
|
546
|
+
* @export
|
|
547
|
+
*/
|
|
473
548
|
declare const ExecuteAction200ResponseDataEffectsInnerTypeEnum: {
|
|
474
549
|
readonly SET_STATE: "setState";
|
|
475
550
|
readonly NAVIGATE: "navigate";
|
|
@@ -478,6 +553,13 @@ declare const ExecuteAction200ResponseDataEffectsInnerTypeEnum: {
|
|
|
478
553
|
readonly CUSTOM: "custom";
|
|
479
554
|
};
|
|
480
555
|
type ExecuteAction200ResponseDataEffectsInnerTypeEnum = typeof ExecuteAction200ResponseDataEffectsInnerTypeEnum[keyof typeof ExecuteAction200ResponseDataEffectsInnerTypeEnum];
|
|
556
|
+
/**
|
|
557
|
+
* Check if a given object implements the ExecuteAction200ResponseDataEffectsInner interface.
|
|
558
|
+
*/
|
|
559
|
+
declare function instanceOfExecuteAction200ResponseDataEffectsInner(value: object): boolean;
|
|
560
|
+
declare function ExecuteAction200ResponseDataEffectsInnerFromJSON(json: any): ExecuteAction200ResponseDataEffectsInner;
|
|
561
|
+
declare function ExecuteAction200ResponseDataEffectsInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExecuteAction200ResponseDataEffectsInner;
|
|
562
|
+
declare function ExecuteAction200ResponseDataEffectsInnerToJSON(value?: ExecuteAction200ResponseDataEffectsInner | null): any;
|
|
481
563
|
|
|
482
564
|
/**
|
|
483
565
|
* DJVLC User API
|
|
@@ -502,20 +584,27 @@ interface ExecuteAction200ResponseData {
|
|
|
502
584
|
* @type {boolean}
|
|
503
585
|
* @memberof ExecuteAction200ResponseData
|
|
504
586
|
*/
|
|
505
|
-
|
|
587
|
+
success?: boolean;
|
|
506
588
|
/**
|
|
507
589
|
* 执行结果
|
|
508
590
|
* @type {any}
|
|
509
591
|
* @memberof ExecuteAction200ResponseData
|
|
510
592
|
*/
|
|
511
|
-
|
|
593
|
+
result?: any | null;
|
|
512
594
|
/**
|
|
513
595
|
* 副作用列表
|
|
514
596
|
* @type {Array<ExecuteAction200ResponseDataEffectsInner>}
|
|
515
597
|
* @memberof ExecuteAction200ResponseData
|
|
516
598
|
*/
|
|
517
|
-
|
|
599
|
+
effects?: Array<ExecuteAction200ResponseDataEffectsInner>;
|
|
518
600
|
}
|
|
601
|
+
/**
|
|
602
|
+
* Check if a given object implements the ExecuteAction200ResponseData interface.
|
|
603
|
+
*/
|
|
604
|
+
declare function instanceOfExecuteAction200ResponseData(value: object): boolean;
|
|
605
|
+
declare function ExecuteAction200ResponseDataFromJSON(json: any): ExecuteAction200ResponseData;
|
|
606
|
+
declare function ExecuteAction200ResponseDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExecuteAction200ResponseData;
|
|
607
|
+
declare function ExecuteAction200ResponseDataToJSON(value?: ExecuteAction200ResponseData | null): any;
|
|
519
608
|
|
|
520
609
|
/**
|
|
521
610
|
* DJVLC User API
|
|
@@ -540,8 +629,15 @@ interface ExecuteAction200Response {
|
|
|
540
629
|
* @type {ExecuteAction200ResponseData}
|
|
541
630
|
* @memberof ExecuteAction200Response
|
|
542
631
|
*/
|
|
543
|
-
|
|
632
|
+
data: ExecuteAction200ResponseData;
|
|
544
633
|
}
|
|
634
|
+
/**
|
|
635
|
+
* Check if a given object implements the ExecuteAction200Response interface.
|
|
636
|
+
*/
|
|
637
|
+
declare function instanceOfExecuteAction200Response(value: object): boolean;
|
|
638
|
+
declare function ExecuteAction200ResponseFromJSON(json: any): ExecuteAction200Response;
|
|
639
|
+
declare function ExecuteAction200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExecuteAction200Response;
|
|
640
|
+
declare function ExecuteAction200ResponseToJSON(value?: ExecuteAction200Response | null): any;
|
|
545
641
|
|
|
546
642
|
/**
|
|
547
643
|
* DJVLC User API
|
|
@@ -565,28 +661,35 @@ interface ExecuteActionRequestContext {
|
|
|
565
661
|
* @type {string}
|
|
566
662
|
* @memberof ExecuteActionRequestContext
|
|
567
663
|
*/
|
|
568
|
-
|
|
664
|
+
pageId?: string;
|
|
569
665
|
/**
|
|
570
666
|
* 触发组件 ID
|
|
571
667
|
* @type {string}
|
|
572
668
|
* @memberof ExecuteActionRequestContext
|
|
573
669
|
*/
|
|
574
|
-
|
|
670
|
+
componentId?: string;
|
|
575
671
|
/**
|
|
576
672
|
* 触发事件名
|
|
577
673
|
* @type {string}
|
|
578
674
|
* @memberof ExecuteActionRequestContext
|
|
579
675
|
*/
|
|
580
|
-
|
|
676
|
+
eventName?: string;
|
|
581
677
|
/**
|
|
582
678
|
* 当前页面状态
|
|
583
679
|
* @type {{ [key: string]: any; }}
|
|
584
680
|
* @memberof ExecuteActionRequestContext
|
|
585
681
|
*/
|
|
586
|
-
|
|
682
|
+
state?: {
|
|
587
683
|
[key: string]: any;
|
|
588
684
|
};
|
|
589
685
|
}
|
|
686
|
+
/**
|
|
687
|
+
* Check if a given object implements the ExecuteActionRequestContext interface.
|
|
688
|
+
*/
|
|
689
|
+
declare function instanceOfExecuteActionRequestContext(value: object): boolean;
|
|
690
|
+
declare function ExecuteActionRequestContextFromJSON(json: any): ExecuteActionRequestContext;
|
|
691
|
+
declare function ExecuteActionRequestContextFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExecuteActionRequestContext;
|
|
692
|
+
declare function ExecuteActionRequestContextToJSON(value?: ExecuteActionRequestContext | null): any;
|
|
590
693
|
|
|
591
694
|
/**
|
|
592
695
|
* DJVLC User API
|
|
@@ -610,14 +713,21 @@ interface ExecuteActionRequestOptions {
|
|
|
610
713
|
* @type {number}
|
|
611
714
|
* @memberof ExecuteActionRequestOptions
|
|
612
715
|
*/
|
|
613
|
-
|
|
716
|
+
timeout?: number;
|
|
614
717
|
/**
|
|
615
718
|
* 幂等键
|
|
616
719
|
* @type {string}
|
|
617
720
|
* @memberof ExecuteActionRequestOptions
|
|
618
721
|
*/
|
|
619
|
-
|
|
722
|
+
idempotencyKey?: string;
|
|
620
723
|
}
|
|
724
|
+
/**
|
|
725
|
+
* Check if a given object implements the ExecuteActionRequestOptions interface.
|
|
726
|
+
*/
|
|
727
|
+
declare function instanceOfExecuteActionRequestOptions(value: object): boolean;
|
|
728
|
+
declare function ExecuteActionRequestOptionsFromJSON(json: any): ExecuteActionRequestOptions;
|
|
729
|
+
declare function ExecuteActionRequestOptionsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExecuteActionRequestOptions;
|
|
730
|
+
declare function ExecuteActionRequestOptionsToJSON(value?: ExecuteActionRequestOptions | null): any;
|
|
621
731
|
|
|
622
732
|
/**
|
|
623
733
|
* DJVLC User API
|
|
@@ -642,7 +752,7 @@ interface ExecuteActionRequest {
|
|
|
642
752
|
* @type {{ [key: string]: any; }}
|
|
643
753
|
* @memberof ExecuteActionRequest
|
|
644
754
|
*/
|
|
645
|
-
|
|
755
|
+
params: {
|
|
646
756
|
[key: string]: any;
|
|
647
757
|
};
|
|
648
758
|
/**
|
|
@@ -650,14 +760,21 @@ interface ExecuteActionRequest {
|
|
|
650
760
|
* @type {ExecuteActionRequestContext}
|
|
651
761
|
* @memberof ExecuteActionRequest
|
|
652
762
|
*/
|
|
653
|
-
|
|
763
|
+
context?: ExecuteActionRequestContext;
|
|
654
764
|
/**
|
|
655
765
|
*
|
|
656
766
|
* @type {ExecuteActionRequestOptions}
|
|
657
767
|
* @memberof ExecuteActionRequest
|
|
658
768
|
*/
|
|
659
|
-
|
|
769
|
+
options?: ExecuteActionRequestOptions;
|
|
660
770
|
}
|
|
771
|
+
/**
|
|
772
|
+
* Check if a given object implements the ExecuteActionRequest interface.
|
|
773
|
+
*/
|
|
774
|
+
declare function instanceOfExecuteActionRequest(value: object): boolean;
|
|
775
|
+
declare function ExecuteActionRequestFromJSON(json: any): ExecuteActionRequest;
|
|
776
|
+
declare function ExecuteActionRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExecuteActionRequest;
|
|
777
|
+
declare function ExecuteActionRequestToJSON(value?: ExecuteActionRequest | null): any;
|
|
661
778
|
|
|
662
779
|
/**
|
|
663
780
|
* DJVLC User API
|
|
@@ -682,8 +799,15 @@ interface ExecuteActionResponse {
|
|
|
682
799
|
* @type {ExecuteAction200ResponseData}
|
|
683
800
|
* @memberof ExecuteActionResponse
|
|
684
801
|
*/
|
|
685
|
-
|
|
802
|
+
data: ExecuteAction200ResponseData;
|
|
686
803
|
}
|
|
804
|
+
/**
|
|
805
|
+
* Check if a given object implements the ExecuteActionResponse interface.
|
|
806
|
+
*/
|
|
807
|
+
declare function instanceOfExecuteActionResponse(value: object): boolean;
|
|
808
|
+
declare function ExecuteActionResponseFromJSON(json: any): ExecuteActionResponse;
|
|
809
|
+
declare function ExecuteActionResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExecuteActionResponse;
|
|
810
|
+
declare function ExecuteActionResponseToJSON(value?: ExecuteActionResponse | null): any;
|
|
687
811
|
|
|
688
812
|
/**
|
|
689
813
|
* DJVLC User API
|
|
@@ -707,26 +831,33 @@ interface ExecuteQuery200ResponseMetaPagination {
|
|
|
707
831
|
* @type {number}
|
|
708
832
|
* @memberof ExecuteQuery200ResponseMetaPagination
|
|
709
833
|
*/
|
|
710
|
-
|
|
834
|
+
page?: number;
|
|
711
835
|
/**
|
|
712
836
|
*
|
|
713
837
|
* @type {number}
|
|
714
838
|
* @memberof ExecuteQuery200ResponseMetaPagination
|
|
715
839
|
*/
|
|
716
|
-
|
|
840
|
+
limit?: number;
|
|
717
841
|
/**
|
|
718
842
|
*
|
|
719
843
|
* @type {number}
|
|
720
844
|
* @memberof ExecuteQuery200ResponseMetaPagination
|
|
721
845
|
*/
|
|
722
|
-
|
|
846
|
+
total?: number;
|
|
723
847
|
/**
|
|
724
848
|
*
|
|
725
849
|
* @type {boolean}
|
|
726
850
|
* @memberof ExecuteQuery200ResponseMetaPagination
|
|
727
851
|
*/
|
|
728
|
-
|
|
852
|
+
hasMore?: boolean;
|
|
729
853
|
}
|
|
854
|
+
/**
|
|
855
|
+
* Check if a given object implements the ExecuteQuery200ResponseMetaPagination interface.
|
|
856
|
+
*/
|
|
857
|
+
declare function instanceOfExecuteQuery200ResponseMetaPagination(value: object): boolean;
|
|
858
|
+
declare function ExecuteQuery200ResponseMetaPaginationFromJSON(json: any): ExecuteQuery200ResponseMetaPagination;
|
|
859
|
+
declare function ExecuteQuery200ResponseMetaPaginationFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExecuteQuery200ResponseMetaPagination;
|
|
860
|
+
declare function ExecuteQuery200ResponseMetaPaginationToJSON(value?: ExecuteQuery200ResponseMetaPagination | null): any;
|
|
730
861
|
|
|
731
862
|
/**
|
|
732
863
|
* DJVLC User API
|
|
@@ -751,26 +882,33 @@ interface ExecuteQuery200ResponseMeta {
|
|
|
751
882
|
* @type {boolean}
|
|
752
883
|
* @memberof ExecuteQuery200ResponseMeta
|
|
753
884
|
*/
|
|
754
|
-
|
|
885
|
+
cached?: boolean;
|
|
755
886
|
/**
|
|
756
887
|
* 缓存时间
|
|
757
|
-
* @type {
|
|
888
|
+
* @type {Date}
|
|
758
889
|
* @memberof ExecuteQuery200ResponseMeta
|
|
759
890
|
*/
|
|
760
|
-
|
|
891
|
+
cachedAt?: Date;
|
|
761
892
|
/**
|
|
762
893
|
* 执行时间(毫秒)
|
|
763
894
|
* @type {number}
|
|
764
895
|
* @memberof ExecuteQuery200ResponseMeta
|
|
765
896
|
*/
|
|
766
|
-
|
|
897
|
+
executionTime?: number;
|
|
767
898
|
/**
|
|
768
899
|
*
|
|
769
900
|
* @type {ExecuteQuery200ResponseMetaPagination}
|
|
770
901
|
* @memberof ExecuteQuery200ResponseMeta
|
|
771
902
|
*/
|
|
772
|
-
|
|
903
|
+
pagination?: ExecuteQuery200ResponseMetaPagination;
|
|
773
904
|
}
|
|
905
|
+
/**
|
|
906
|
+
* Check if a given object implements the ExecuteQuery200ResponseMeta interface.
|
|
907
|
+
*/
|
|
908
|
+
declare function instanceOfExecuteQuery200ResponseMeta(value: object): boolean;
|
|
909
|
+
declare function ExecuteQuery200ResponseMetaFromJSON(json: any): ExecuteQuery200ResponseMeta;
|
|
910
|
+
declare function ExecuteQuery200ResponseMetaFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExecuteQuery200ResponseMeta;
|
|
911
|
+
declare function ExecuteQuery200ResponseMetaToJSON(value?: ExecuteQuery200ResponseMeta | null): any;
|
|
774
912
|
|
|
775
913
|
/**
|
|
776
914
|
* DJVLC User API
|
|
@@ -795,14 +933,21 @@ interface ExecuteQuery200Response {
|
|
|
795
933
|
* @type {any}
|
|
796
934
|
* @memberof ExecuteQuery200Response
|
|
797
935
|
*/
|
|
798
|
-
|
|
936
|
+
data: any | null;
|
|
799
937
|
/**
|
|
800
938
|
*
|
|
801
939
|
* @type {ExecuteQuery200ResponseMeta}
|
|
802
940
|
* @memberof ExecuteQuery200Response
|
|
803
941
|
*/
|
|
804
|
-
|
|
942
|
+
meta?: ExecuteQuery200ResponseMeta;
|
|
805
943
|
}
|
|
944
|
+
/**
|
|
945
|
+
* Check if a given object implements the ExecuteQuery200Response interface.
|
|
946
|
+
*/
|
|
947
|
+
declare function instanceOfExecuteQuery200Response(value: object): boolean;
|
|
948
|
+
declare function ExecuteQuery200ResponseFromJSON(json: any): ExecuteQuery200Response;
|
|
949
|
+
declare function ExecuteQuery200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExecuteQuery200Response;
|
|
950
|
+
declare function ExecuteQuery200ResponseToJSON(value?: ExecuteQuery200Response | null): any;
|
|
806
951
|
|
|
807
952
|
/**
|
|
808
953
|
* DJVLC User API
|
|
@@ -826,20 +971,27 @@ interface ExecuteQueryRequestOptions {
|
|
|
826
971
|
* @type {number}
|
|
827
972
|
* @memberof ExecuteQueryRequestOptions
|
|
828
973
|
*/
|
|
829
|
-
|
|
974
|
+
timeout?: number;
|
|
830
975
|
/**
|
|
831
976
|
* 是否使用缓存
|
|
832
977
|
* @type {boolean}
|
|
833
978
|
* @memberof ExecuteQueryRequestOptions
|
|
834
979
|
*/
|
|
835
|
-
|
|
980
|
+
cache?: boolean;
|
|
836
981
|
/**
|
|
837
982
|
* 自定义缓存键
|
|
838
983
|
* @type {string}
|
|
839
984
|
* @memberof ExecuteQueryRequestOptions
|
|
840
985
|
*/
|
|
841
|
-
|
|
986
|
+
cacheKey?: string;
|
|
842
987
|
}
|
|
988
|
+
/**
|
|
989
|
+
* Check if a given object implements the ExecuteQueryRequestOptions interface.
|
|
990
|
+
*/
|
|
991
|
+
declare function instanceOfExecuteQueryRequestOptions(value: object): boolean;
|
|
992
|
+
declare function ExecuteQueryRequestOptionsFromJSON(json: any): ExecuteQueryRequestOptions;
|
|
993
|
+
declare function ExecuteQueryRequestOptionsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExecuteQueryRequestOptions;
|
|
994
|
+
declare function ExecuteQueryRequestOptionsToJSON(value?: ExecuteQueryRequestOptions | null): any;
|
|
843
995
|
|
|
844
996
|
/**
|
|
845
997
|
* DJVLC User API
|
|
@@ -863,25 +1015,25 @@ interface ResolvePageRequestContext {
|
|
|
863
1015
|
* @type {string}
|
|
864
1016
|
* @memberof ResolvePageRequestContext
|
|
865
1017
|
*/
|
|
866
|
-
|
|
1018
|
+
userId?: string;
|
|
867
1019
|
/**
|
|
868
1020
|
* 会话 ID
|
|
869
1021
|
* @type {string}
|
|
870
1022
|
* @memberof ResolvePageRequestContext
|
|
871
1023
|
*/
|
|
872
|
-
|
|
1024
|
+
sessionId?: string;
|
|
873
1025
|
/**
|
|
874
1026
|
* 设备类型
|
|
875
1027
|
* @type {string}
|
|
876
1028
|
* @memberof ResolvePageRequestContext
|
|
877
1029
|
*/
|
|
878
|
-
|
|
1030
|
+
deviceType?: ResolvePageRequestContextDeviceTypeEnum;
|
|
879
1031
|
/**
|
|
880
1032
|
* URL 参数
|
|
881
1033
|
* @type {{ [key: string]: string; }}
|
|
882
1034
|
* @memberof ResolvePageRequestContext
|
|
883
1035
|
*/
|
|
884
|
-
|
|
1036
|
+
urlParams?: {
|
|
885
1037
|
[key: string]: string;
|
|
886
1038
|
};
|
|
887
1039
|
/**
|
|
@@ -889,7 +1041,7 @@ interface ResolvePageRequestContext {
|
|
|
889
1041
|
* @type {{ [key: string]: string; }}
|
|
890
1042
|
* @memberof ResolvePageRequestContext
|
|
891
1043
|
*/
|
|
892
|
-
|
|
1044
|
+
routeParams?: {
|
|
893
1045
|
[key: string]: string;
|
|
894
1046
|
};
|
|
895
1047
|
/**
|
|
@@ -897,16 +1049,26 @@ interface ResolvePageRequestContext {
|
|
|
897
1049
|
* @type {{ [key: string]: any; }}
|
|
898
1050
|
* @memberof ResolvePageRequestContext
|
|
899
1051
|
*/
|
|
900
|
-
|
|
1052
|
+
customData?: {
|
|
901
1053
|
[key: string]: any;
|
|
902
1054
|
};
|
|
903
1055
|
}
|
|
1056
|
+
/**
|
|
1057
|
+
* @export
|
|
1058
|
+
*/
|
|
904
1059
|
declare const ResolvePageRequestContextDeviceTypeEnum: {
|
|
905
1060
|
readonly MOBILE: "mobile";
|
|
906
1061
|
readonly TABLET: "tablet";
|
|
907
1062
|
readonly DESKTOP: "desktop";
|
|
908
1063
|
};
|
|
909
1064
|
type ResolvePageRequestContextDeviceTypeEnum = typeof ResolvePageRequestContextDeviceTypeEnum[keyof typeof ResolvePageRequestContextDeviceTypeEnum];
|
|
1065
|
+
/**
|
|
1066
|
+
* Check if a given object implements the ResolvePageRequestContext interface.
|
|
1067
|
+
*/
|
|
1068
|
+
declare function instanceOfResolvePageRequestContext(value: object): boolean;
|
|
1069
|
+
declare function ResolvePageRequestContextFromJSON(json: any): ResolvePageRequestContext;
|
|
1070
|
+
declare function ResolvePageRequestContextFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResolvePageRequestContext;
|
|
1071
|
+
declare function ResolvePageRequestContextToJSON(value?: ResolvePageRequestContext | null): any;
|
|
910
1072
|
|
|
911
1073
|
/**
|
|
912
1074
|
* DJVLC User API
|
|
@@ -931,7 +1093,7 @@ interface ExecuteQueryRequest {
|
|
|
931
1093
|
* @type {{ [key: string]: any; }}
|
|
932
1094
|
* @memberof ExecuteQueryRequest
|
|
933
1095
|
*/
|
|
934
|
-
|
|
1096
|
+
params?: {
|
|
935
1097
|
[key: string]: any;
|
|
936
1098
|
};
|
|
937
1099
|
/**
|
|
@@ -939,14 +1101,21 @@ interface ExecuteQueryRequest {
|
|
|
939
1101
|
* @type {ResolvePageRequestContext}
|
|
940
1102
|
* @memberof ExecuteQueryRequest
|
|
941
1103
|
*/
|
|
942
|
-
|
|
1104
|
+
context?: ResolvePageRequestContext;
|
|
943
1105
|
/**
|
|
944
1106
|
*
|
|
945
1107
|
* @type {ExecuteQueryRequestOptions}
|
|
946
1108
|
* @memberof ExecuteQueryRequest
|
|
947
1109
|
*/
|
|
948
|
-
|
|
1110
|
+
options?: ExecuteQueryRequestOptions;
|
|
949
1111
|
}
|
|
1112
|
+
/**
|
|
1113
|
+
* Check if a given object implements the ExecuteQueryRequest interface.
|
|
1114
|
+
*/
|
|
1115
|
+
declare function instanceOfExecuteQueryRequest(value: object): boolean;
|
|
1116
|
+
declare function ExecuteQueryRequestFromJSON(json: any): ExecuteQueryRequest;
|
|
1117
|
+
declare function ExecuteQueryRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExecuteQueryRequest;
|
|
1118
|
+
declare function ExecuteQueryRequestToJSON(value?: ExecuteQueryRequest | null): any;
|
|
950
1119
|
|
|
951
1120
|
/**
|
|
952
1121
|
* DJVLC User API
|
|
@@ -971,14 +1140,21 @@ interface ExecuteQueryResponse {
|
|
|
971
1140
|
* @type {any}
|
|
972
1141
|
* @memberof ExecuteQueryResponse
|
|
973
1142
|
*/
|
|
974
|
-
|
|
1143
|
+
data: any | null;
|
|
975
1144
|
/**
|
|
976
1145
|
*
|
|
977
1146
|
* @type {ExecuteQuery200ResponseMeta}
|
|
978
1147
|
* @memberof ExecuteQueryResponse
|
|
979
1148
|
*/
|
|
980
|
-
|
|
1149
|
+
meta?: ExecuteQuery200ResponseMeta;
|
|
981
1150
|
}
|
|
1151
|
+
/**
|
|
1152
|
+
* Check if a given object implements the ExecuteQueryResponse interface.
|
|
1153
|
+
*/
|
|
1154
|
+
declare function instanceOfExecuteQueryResponse(value: object): boolean;
|
|
1155
|
+
declare function ExecuteQueryResponseFromJSON(json: any): ExecuteQueryResponse;
|
|
1156
|
+
declare function ExecuteQueryResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExecuteQueryResponse;
|
|
1157
|
+
declare function ExecuteQueryResponseToJSON(value?: ExecuteQueryResponse | null): any;
|
|
982
1158
|
|
|
983
1159
|
/**
|
|
984
1160
|
* DJVLC User API
|
|
@@ -1002,20 +1178,27 @@ interface GetActivityInfo200ResponseDataRewardsInner {
|
|
|
1002
1178
|
* @type {string}
|
|
1003
1179
|
* @memberof GetActivityInfo200ResponseDataRewardsInner
|
|
1004
1180
|
*/
|
|
1005
|
-
|
|
1181
|
+
name?: string;
|
|
1006
1182
|
/**
|
|
1007
1183
|
*
|
|
1008
1184
|
* @type {string}
|
|
1009
1185
|
* @memberof GetActivityInfo200ResponseDataRewardsInner
|
|
1010
1186
|
*/
|
|
1011
|
-
|
|
1187
|
+
description?: string;
|
|
1012
1188
|
/**
|
|
1013
1189
|
*
|
|
1014
1190
|
* @type {string}
|
|
1015
1191
|
* @memberof GetActivityInfo200ResponseDataRewardsInner
|
|
1016
1192
|
*/
|
|
1017
|
-
|
|
1193
|
+
icon?: string;
|
|
1018
1194
|
}
|
|
1195
|
+
/**
|
|
1196
|
+
* Check if a given object implements the GetActivityInfo200ResponseDataRewardsInner interface.
|
|
1197
|
+
*/
|
|
1198
|
+
declare function instanceOfGetActivityInfo200ResponseDataRewardsInner(value: object): boolean;
|
|
1199
|
+
declare function GetActivityInfo200ResponseDataRewardsInnerFromJSON(json: any): GetActivityInfo200ResponseDataRewardsInner;
|
|
1200
|
+
declare function GetActivityInfo200ResponseDataRewardsInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetActivityInfo200ResponseDataRewardsInner;
|
|
1201
|
+
declare function GetActivityInfo200ResponseDataRewardsInnerToJSON(value?: GetActivityInfo200ResponseDataRewardsInner | null): any;
|
|
1019
1202
|
|
|
1020
1203
|
/**
|
|
1021
1204
|
* DJVLC User API
|
|
@@ -1040,49 +1223,49 @@ interface GetActivityInfo200ResponseData {
|
|
|
1040
1223
|
* @type {string}
|
|
1041
1224
|
* @memberof GetActivityInfo200ResponseData
|
|
1042
1225
|
*/
|
|
1043
|
-
|
|
1226
|
+
id: string;
|
|
1044
1227
|
/**
|
|
1045
1228
|
* 活动名称
|
|
1046
1229
|
* @type {string}
|
|
1047
1230
|
* @memberof GetActivityInfo200ResponseData
|
|
1048
1231
|
*/
|
|
1049
|
-
|
|
1232
|
+
name: string;
|
|
1050
1233
|
/**
|
|
1051
1234
|
* 活动类型
|
|
1052
1235
|
* @type {string}
|
|
1053
1236
|
* @memberof GetActivityInfo200ResponseData
|
|
1054
1237
|
*/
|
|
1055
|
-
|
|
1238
|
+
type: GetActivityInfo200ResponseDataTypeEnum;
|
|
1056
1239
|
/**
|
|
1057
1240
|
* 活动状态
|
|
1058
1241
|
* @type {string}
|
|
1059
1242
|
* @memberof GetActivityInfo200ResponseData
|
|
1060
1243
|
*/
|
|
1061
|
-
|
|
1244
|
+
status: GetActivityInfo200ResponseDataStatusEnum;
|
|
1062
1245
|
/**
|
|
1063
1246
|
* 活动描述
|
|
1064
1247
|
* @type {string}
|
|
1065
1248
|
* @memberof GetActivityInfo200ResponseData
|
|
1066
1249
|
*/
|
|
1067
|
-
|
|
1250
|
+
description?: string;
|
|
1068
1251
|
/**
|
|
1069
1252
|
* 开始时间
|
|
1070
|
-
* @type {
|
|
1253
|
+
* @type {Date}
|
|
1071
1254
|
* @memberof GetActivityInfo200ResponseData
|
|
1072
1255
|
*/
|
|
1073
|
-
|
|
1256
|
+
startTime?: Date;
|
|
1074
1257
|
/**
|
|
1075
1258
|
* 结束时间
|
|
1076
|
-
* @type {
|
|
1259
|
+
* @type {Date}
|
|
1077
1260
|
* @memberof GetActivityInfo200ResponseData
|
|
1078
1261
|
*/
|
|
1079
|
-
|
|
1262
|
+
endTime?: Date;
|
|
1080
1263
|
/**
|
|
1081
1264
|
* 活动规则(公开部分)
|
|
1082
1265
|
* @type {{ [key: string]: any; }}
|
|
1083
1266
|
* @memberof GetActivityInfo200ResponseData
|
|
1084
1267
|
*/
|
|
1085
|
-
|
|
1268
|
+
rules?: {
|
|
1086
1269
|
[key: string]: any;
|
|
1087
1270
|
};
|
|
1088
1271
|
/**
|
|
@@ -1090,8 +1273,11 @@ interface GetActivityInfo200ResponseData {
|
|
|
1090
1273
|
* @type {Array<GetActivityInfo200ResponseDataRewardsInner>}
|
|
1091
1274
|
* @memberof GetActivityInfo200ResponseData
|
|
1092
1275
|
*/
|
|
1093
|
-
|
|
1276
|
+
rewards?: Array<GetActivityInfo200ResponseDataRewardsInner>;
|
|
1094
1277
|
}
|
|
1278
|
+
/**
|
|
1279
|
+
* @export
|
|
1280
|
+
*/
|
|
1095
1281
|
declare const GetActivityInfo200ResponseDataTypeEnum: {
|
|
1096
1282
|
readonly SIGNIN: "signin";
|
|
1097
1283
|
readonly LOTTERY: "lottery";
|
|
@@ -1100,11 +1286,21 @@ declare const GetActivityInfo200ResponseDataTypeEnum: {
|
|
|
1100
1286
|
readonly CUSTOM: "custom";
|
|
1101
1287
|
};
|
|
1102
1288
|
type GetActivityInfo200ResponseDataTypeEnum = typeof GetActivityInfo200ResponseDataTypeEnum[keyof typeof GetActivityInfo200ResponseDataTypeEnum];
|
|
1289
|
+
/**
|
|
1290
|
+
* @export
|
|
1291
|
+
*/
|
|
1103
1292
|
declare const GetActivityInfo200ResponseDataStatusEnum: {
|
|
1104
1293
|
readonly ACTIVE: "active";
|
|
1105
1294
|
readonly ENDED: "ended";
|
|
1106
1295
|
};
|
|
1107
1296
|
type GetActivityInfo200ResponseDataStatusEnum = typeof GetActivityInfo200ResponseDataStatusEnum[keyof typeof GetActivityInfo200ResponseDataStatusEnum];
|
|
1297
|
+
/**
|
|
1298
|
+
* Check if a given object implements the GetActivityInfo200ResponseData interface.
|
|
1299
|
+
*/
|
|
1300
|
+
declare function instanceOfGetActivityInfo200ResponseData(value: object): boolean;
|
|
1301
|
+
declare function GetActivityInfo200ResponseDataFromJSON(json: any): GetActivityInfo200ResponseData;
|
|
1302
|
+
declare function GetActivityInfo200ResponseDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetActivityInfo200ResponseData;
|
|
1303
|
+
declare function GetActivityInfo200ResponseDataToJSON(value?: GetActivityInfo200ResponseData | null): any;
|
|
1108
1304
|
|
|
1109
1305
|
/**
|
|
1110
1306
|
* DJVLC User API
|
|
@@ -1129,14 +1325,21 @@ interface GetActivityInfo200Response {
|
|
|
1129
1325
|
* @type {boolean}
|
|
1130
1326
|
* @memberof GetActivityInfo200Response
|
|
1131
1327
|
*/
|
|
1132
|
-
|
|
1328
|
+
success?: boolean;
|
|
1133
1329
|
/**
|
|
1134
1330
|
*
|
|
1135
1331
|
* @type {GetActivityInfo200ResponseData}
|
|
1136
1332
|
* @memberof GetActivityInfo200Response
|
|
1137
1333
|
*/
|
|
1138
|
-
|
|
1334
|
+
data?: GetActivityInfo200ResponseData;
|
|
1139
1335
|
}
|
|
1336
|
+
/**
|
|
1337
|
+
* Check if a given object implements the GetActivityInfo200Response interface.
|
|
1338
|
+
*/
|
|
1339
|
+
declare function instanceOfGetActivityInfo200Response(value: object): boolean;
|
|
1340
|
+
declare function GetActivityInfo200ResponseFromJSON(json: any): GetActivityInfo200Response;
|
|
1341
|
+
declare function GetActivityInfo200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetActivityInfo200Response;
|
|
1342
|
+
declare function GetActivityInfo200ResponseToJSON(value?: GetActivityInfo200Response | null): any;
|
|
1140
1343
|
|
|
1141
1344
|
/**
|
|
1142
1345
|
* DJVLC User API
|
|
@@ -1160,43 +1363,43 @@ interface GetActivityState200ResponseData {
|
|
|
1160
1363
|
* @type {string}
|
|
1161
1364
|
* @memberof GetActivityState200ResponseData
|
|
1162
1365
|
*/
|
|
1163
|
-
|
|
1366
|
+
activityId: string;
|
|
1164
1367
|
/**
|
|
1165
1368
|
* 用户 ID
|
|
1166
1369
|
* @type {string}
|
|
1167
1370
|
* @memberof GetActivityState200ResponseData
|
|
1168
1371
|
*/
|
|
1169
|
-
|
|
1372
|
+
userId: string;
|
|
1170
1373
|
/**
|
|
1171
1374
|
* 是否已参与
|
|
1172
1375
|
* @type {boolean}
|
|
1173
1376
|
* @memberof GetActivityState200ResponseData
|
|
1174
1377
|
*/
|
|
1175
|
-
|
|
1378
|
+
participated?: boolean;
|
|
1176
1379
|
/**
|
|
1177
1380
|
* 参与时间
|
|
1178
|
-
* @type {
|
|
1381
|
+
* @type {Date}
|
|
1179
1382
|
* @memberof GetActivityState200ResponseData
|
|
1180
1383
|
*/
|
|
1181
|
-
|
|
1384
|
+
participatedAt?: Date;
|
|
1182
1385
|
/**
|
|
1183
1386
|
* 剩余抽奖次数
|
|
1184
1387
|
* @type {number}
|
|
1185
1388
|
* @memberof GetActivityState200ResponseData
|
|
1186
1389
|
*/
|
|
1187
|
-
|
|
1390
|
+
remainingChances?: number;
|
|
1188
1391
|
/**
|
|
1189
1392
|
* 已获得奖励数
|
|
1190
1393
|
* @type {number}
|
|
1191
1394
|
* @memberof GetActivityState200ResponseData
|
|
1192
1395
|
*/
|
|
1193
|
-
|
|
1396
|
+
totalRewards?: number;
|
|
1194
1397
|
/**
|
|
1195
1398
|
* 活动进度
|
|
1196
1399
|
* @type {{ [key: string]: any; }}
|
|
1197
1400
|
* @memberof GetActivityState200ResponseData
|
|
1198
1401
|
*/
|
|
1199
|
-
|
|
1402
|
+
progress?: {
|
|
1200
1403
|
[key: string]: any;
|
|
1201
1404
|
};
|
|
1202
1405
|
/**
|
|
@@ -1204,10 +1407,17 @@ interface GetActivityState200ResponseData {
|
|
|
1204
1407
|
* @type {{ [key: string]: any; }}
|
|
1205
1408
|
* @memberof GetActivityState200ResponseData
|
|
1206
1409
|
*/
|
|
1207
|
-
|
|
1410
|
+
customData?: {
|
|
1208
1411
|
[key: string]: any;
|
|
1209
1412
|
};
|
|
1210
1413
|
}
|
|
1414
|
+
/**
|
|
1415
|
+
* Check if a given object implements the GetActivityState200ResponseData interface.
|
|
1416
|
+
*/
|
|
1417
|
+
declare function instanceOfGetActivityState200ResponseData(value: object): boolean;
|
|
1418
|
+
declare function GetActivityState200ResponseDataFromJSON(json: any): GetActivityState200ResponseData;
|
|
1419
|
+
declare function GetActivityState200ResponseDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetActivityState200ResponseData;
|
|
1420
|
+
declare function GetActivityState200ResponseDataToJSON(value?: GetActivityState200ResponseData | null): any;
|
|
1211
1421
|
|
|
1212
1422
|
/**
|
|
1213
1423
|
* DJVLC User API
|
|
@@ -1232,14 +1442,21 @@ interface GetActivityState200Response {
|
|
|
1232
1442
|
* @type {boolean}
|
|
1233
1443
|
* @memberof GetActivityState200Response
|
|
1234
1444
|
*/
|
|
1235
|
-
|
|
1445
|
+
success?: boolean;
|
|
1236
1446
|
/**
|
|
1237
1447
|
*
|
|
1238
1448
|
* @type {GetActivityState200ResponseData}
|
|
1239
1449
|
* @memberof GetActivityState200Response
|
|
1240
1450
|
*/
|
|
1241
|
-
|
|
1451
|
+
data?: GetActivityState200ResponseData;
|
|
1242
1452
|
}
|
|
1453
|
+
/**
|
|
1454
|
+
* Check if a given object implements the GetActivityState200Response interface.
|
|
1455
|
+
*/
|
|
1456
|
+
declare function instanceOfGetActivityState200Response(value: object): boolean;
|
|
1457
|
+
declare function GetActivityState200ResponseFromJSON(json: any): GetActivityState200Response;
|
|
1458
|
+
declare function GetActivityState200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetActivityState200Response;
|
|
1459
|
+
declare function GetActivityState200ResponseToJSON(value?: GetActivityState200Response | null): any;
|
|
1243
1460
|
|
|
1244
1461
|
/**
|
|
1245
1462
|
* DJVLC User API
|
|
@@ -1263,62 +1480,72 @@ interface GetClaimRecords200ResponseDataInner {
|
|
|
1263
1480
|
* @type {string}
|
|
1264
1481
|
* @memberof GetClaimRecords200ResponseDataInner
|
|
1265
1482
|
*/
|
|
1266
|
-
|
|
1483
|
+
id: string;
|
|
1267
1484
|
/**
|
|
1268
1485
|
* 活动 ID
|
|
1269
1486
|
* @type {string}
|
|
1270
1487
|
* @memberof GetClaimRecords200ResponseDataInner
|
|
1271
1488
|
*/
|
|
1272
|
-
|
|
1489
|
+
activityId?: string;
|
|
1273
1490
|
/**
|
|
1274
1491
|
* 奖励类型
|
|
1275
1492
|
* @type {string}
|
|
1276
1493
|
* @memberof GetClaimRecords200ResponseDataInner
|
|
1277
1494
|
*/
|
|
1278
|
-
|
|
1495
|
+
rewardType: string;
|
|
1279
1496
|
/**
|
|
1280
1497
|
* 奖励名称
|
|
1281
1498
|
* @type {string}
|
|
1282
1499
|
* @memberof GetClaimRecords200ResponseDataInner
|
|
1283
1500
|
*/
|
|
1284
|
-
|
|
1501
|
+
rewardName?: string;
|
|
1285
1502
|
/**
|
|
1286
1503
|
* 奖励值
|
|
1287
1504
|
* @type {number}
|
|
1288
1505
|
* @memberof GetClaimRecords200ResponseDataInner
|
|
1289
1506
|
*/
|
|
1290
|
-
|
|
1507
|
+
rewardValue?: number;
|
|
1291
1508
|
/**
|
|
1292
1509
|
* 领取状态
|
|
1293
1510
|
* @type {string}
|
|
1294
1511
|
* @memberof GetClaimRecords200ResponseDataInner
|
|
1295
1512
|
*/
|
|
1296
|
-
|
|
1513
|
+
status: GetClaimRecords200ResponseDataInnerStatusEnum;
|
|
1297
1514
|
/**
|
|
1298
1515
|
* 创建时间
|
|
1299
|
-
* @type {
|
|
1516
|
+
* @type {Date}
|
|
1300
1517
|
* @memberof GetClaimRecords200ResponseDataInner
|
|
1301
1518
|
*/
|
|
1302
|
-
|
|
1519
|
+
createdAt: Date;
|
|
1303
1520
|
/**
|
|
1304
1521
|
* 领取时间
|
|
1305
|
-
* @type {
|
|
1522
|
+
* @type {Date}
|
|
1306
1523
|
* @memberof GetClaimRecords200ResponseDataInner
|
|
1307
1524
|
*/
|
|
1308
|
-
|
|
1525
|
+
claimedAt?: Date;
|
|
1309
1526
|
/**
|
|
1310
1527
|
* 过期时间
|
|
1311
|
-
* @type {
|
|
1528
|
+
* @type {Date}
|
|
1312
1529
|
* @memberof GetClaimRecords200ResponseDataInner
|
|
1313
1530
|
*/
|
|
1314
|
-
|
|
1531
|
+
expiresAt?: Date;
|
|
1315
1532
|
}
|
|
1533
|
+
/**
|
|
1534
|
+
* @export
|
|
1535
|
+
*/
|
|
1316
1536
|
declare const GetClaimRecords200ResponseDataInnerStatusEnum: {
|
|
1317
1537
|
readonly PENDING: "pending";
|
|
1318
1538
|
readonly CLAIMED: "claimed";
|
|
1319
1539
|
readonly EXPIRED: "expired";
|
|
1320
1540
|
};
|
|
1321
1541
|
type GetClaimRecords200ResponseDataInnerStatusEnum = typeof GetClaimRecords200ResponseDataInnerStatusEnum[keyof typeof GetClaimRecords200ResponseDataInnerStatusEnum];
|
|
1542
|
+
/**
|
|
1543
|
+
* Check if a given object implements the GetClaimRecords200ResponseDataInner interface.
|
|
1544
|
+
*/
|
|
1545
|
+
declare function instanceOfGetClaimRecords200ResponseDataInner(value: object): boolean;
|
|
1546
|
+
declare function GetClaimRecords200ResponseDataInnerFromJSON(json: any): GetClaimRecords200ResponseDataInner;
|
|
1547
|
+
declare function GetClaimRecords200ResponseDataInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetClaimRecords200ResponseDataInner;
|
|
1548
|
+
declare function GetClaimRecords200ResponseDataInnerToJSON(value?: GetClaimRecords200ResponseDataInner | null): any;
|
|
1322
1549
|
|
|
1323
1550
|
/**
|
|
1324
1551
|
* DJVLC User API
|
|
@@ -1342,26 +1569,33 @@ interface GetClaimRecords200ResponseMeta {
|
|
|
1342
1569
|
* @type {number}
|
|
1343
1570
|
* @memberof GetClaimRecords200ResponseMeta
|
|
1344
1571
|
*/
|
|
1345
|
-
|
|
1572
|
+
page: number;
|
|
1346
1573
|
/**
|
|
1347
1574
|
* 每页数量
|
|
1348
1575
|
* @type {number}
|
|
1349
1576
|
* @memberof GetClaimRecords200ResponseMeta
|
|
1350
1577
|
*/
|
|
1351
|
-
|
|
1578
|
+
limit: number;
|
|
1352
1579
|
/**
|
|
1353
1580
|
* 总记录数
|
|
1354
1581
|
* @type {number}
|
|
1355
1582
|
* @memberof GetClaimRecords200ResponseMeta
|
|
1356
1583
|
*/
|
|
1357
|
-
|
|
1584
|
+
total: number;
|
|
1358
1585
|
/**
|
|
1359
1586
|
* 总页数
|
|
1360
1587
|
* @type {number}
|
|
1361
1588
|
* @memberof GetClaimRecords200ResponseMeta
|
|
1362
1589
|
*/
|
|
1363
|
-
|
|
1590
|
+
totalPages: number;
|
|
1364
1591
|
}
|
|
1592
|
+
/**
|
|
1593
|
+
* Check if a given object implements the GetClaimRecords200ResponseMeta interface.
|
|
1594
|
+
*/
|
|
1595
|
+
declare function instanceOfGetClaimRecords200ResponseMeta(value: object): boolean;
|
|
1596
|
+
declare function GetClaimRecords200ResponseMetaFromJSON(json: any): GetClaimRecords200ResponseMeta;
|
|
1597
|
+
declare function GetClaimRecords200ResponseMetaFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetClaimRecords200ResponseMeta;
|
|
1598
|
+
declare function GetClaimRecords200ResponseMetaToJSON(value?: GetClaimRecords200ResponseMeta | null): any;
|
|
1365
1599
|
|
|
1366
1600
|
/**
|
|
1367
1601
|
* DJVLC User API
|
|
@@ -1386,20 +1620,27 @@ interface GetClaimRecords200Response {
|
|
|
1386
1620
|
* @type {boolean}
|
|
1387
1621
|
* @memberof GetClaimRecords200Response
|
|
1388
1622
|
*/
|
|
1389
|
-
|
|
1623
|
+
success?: boolean;
|
|
1390
1624
|
/**
|
|
1391
1625
|
*
|
|
1392
1626
|
* @type {Array<GetClaimRecords200ResponseDataInner>}
|
|
1393
1627
|
* @memberof GetClaimRecords200Response
|
|
1394
1628
|
*/
|
|
1395
|
-
|
|
1629
|
+
data?: Array<GetClaimRecords200ResponseDataInner>;
|
|
1396
1630
|
/**
|
|
1397
1631
|
*
|
|
1398
1632
|
* @type {GetClaimRecords200ResponseMeta}
|
|
1399
1633
|
* @memberof GetClaimRecords200Response
|
|
1400
1634
|
*/
|
|
1401
|
-
|
|
1635
|
+
meta?: GetClaimRecords200ResponseMeta;
|
|
1402
1636
|
}
|
|
1637
|
+
/**
|
|
1638
|
+
* Check if a given object implements the GetClaimRecords200Response interface.
|
|
1639
|
+
*/
|
|
1640
|
+
declare function instanceOfGetClaimRecords200Response(value: object): boolean;
|
|
1641
|
+
declare function GetClaimRecords200ResponseFromJSON(json: any): GetClaimRecords200Response;
|
|
1642
|
+
declare function GetClaimRecords200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetClaimRecords200Response;
|
|
1643
|
+
declare function GetClaimRecords200ResponseToJSON(value?: GetClaimRecords200Response | null): any;
|
|
1403
1644
|
|
|
1404
1645
|
/**
|
|
1405
1646
|
* DJVLC User API
|
|
@@ -1423,50 +1664,53 @@ interface GetLotteryRecords200ResponseDataInner {
|
|
|
1423
1664
|
* @type {string}
|
|
1424
1665
|
* @memberof GetLotteryRecords200ResponseDataInner
|
|
1425
1666
|
*/
|
|
1426
|
-
|
|
1667
|
+
id: string;
|
|
1427
1668
|
/**
|
|
1428
1669
|
* 活动 ID
|
|
1429
1670
|
* @type {string}
|
|
1430
1671
|
* @memberof GetLotteryRecords200ResponseDataInner
|
|
1431
1672
|
*/
|
|
1432
|
-
|
|
1673
|
+
activityId?: string;
|
|
1433
1674
|
/**
|
|
1434
1675
|
* 奖品 ID
|
|
1435
1676
|
* @type {string}
|
|
1436
1677
|
* @memberof GetLotteryRecords200ResponseDataInner
|
|
1437
1678
|
*/
|
|
1438
|
-
|
|
1679
|
+
prizeId: string;
|
|
1439
1680
|
/**
|
|
1440
1681
|
* 奖品名称
|
|
1441
1682
|
* @type {string}
|
|
1442
1683
|
* @memberof GetLotteryRecords200ResponseDataInner
|
|
1443
1684
|
*/
|
|
1444
|
-
|
|
1685
|
+
prizeName?: string;
|
|
1445
1686
|
/**
|
|
1446
1687
|
* 奖品类型
|
|
1447
1688
|
* @type {string}
|
|
1448
1689
|
* @memberof GetLotteryRecords200ResponseDataInner
|
|
1449
1690
|
*/
|
|
1450
|
-
|
|
1691
|
+
prizeType?: GetLotteryRecords200ResponseDataInnerPrizeTypeEnum;
|
|
1451
1692
|
/**
|
|
1452
1693
|
* 状态
|
|
1453
1694
|
* @type {string}
|
|
1454
1695
|
* @memberof GetLotteryRecords200ResponseDataInner
|
|
1455
1696
|
*/
|
|
1456
|
-
|
|
1697
|
+
status: GetLotteryRecords200ResponseDataInnerStatusEnum;
|
|
1457
1698
|
/**
|
|
1458
1699
|
* 抽奖时间
|
|
1459
|
-
* @type {
|
|
1700
|
+
* @type {Date}
|
|
1460
1701
|
* @memberof GetLotteryRecords200ResponseDataInner
|
|
1461
1702
|
*/
|
|
1462
|
-
|
|
1703
|
+
createdAt: Date;
|
|
1463
1704
|
/**
|
|
1464
1705
|
* 领取时间
|
|
1465
|
-
* @type {
|
|
1706
|
+
* @type {Date}
|
|
1466
1707
|
* @memberof GetLotteryRecords200ResponseDataInner
|
|
1467
1708
|
*/
|
|
1468
|
-
|
|
1709
|
+
claimedAt?: Date;
|
|
1469
1710
|
}
|
|
1711
|
+
/**
|
|
1712
|
+
* @export
|
|
1713
|
+
*/
|
|
1470
1714
|
declare const GetLotteryRecords200ResponseDataInnerPrizeTypeEnum: {
|
|
1471
1715
|
readonly PHYSICAL: "physical";
|
|
1472
1716
|
readonly VIRTUAL: "virtual";
|
|
@@ -1475,6 +1719,9 @@ declare const GetLotteryRecords200ResponseDataInnerPrizeTypeEnum: {
|
|
|
1475
1719
|
readonly NONE: "none";
|
|
1476
1720
|
};
|
|
1477
1721
|
type GetLotteryRecords200ResponseDataInnerPrizeTypeEnum = typeof GetLotteryRecords200ResponseDataInnerPrizeTypeEnum[keyof typeof GetLotteryRecords200ResponseDataInnerPrizeTypeEnum];
|
|
1722
|
+
/**
|
|
1723
|
+
* @export
|
|
1724
|
+
*/
|
|
1478
1725
|
declare const GetLotteryRecords200ResponseDataInnerStatusEnum: {
|
|
1479
1726
|
readonly WON: "won";
|
|
1480
1727
|
readonly NOT_WON: "notWon";
|
|
@@ -1482,6 +1729,13 @@ declare const GetLotteryRecords200ResponseDataInnerStatusEnum: {
|
|
|
1482
1729
|
readonly SHIPPED: "shipped";
|
|
1483
1730
|
};
|
|
1484
1731
|
type GetLotteryRecords200ResponseDataInnerStatusEnum = typeof GetLotteryRecords200ResponseDataInnerStatusEnum[keyof typeof GetLotteryRecords200ResponseDataInnerStatusEnum];
|
|
1732
|
+
/**
|
|
1733
|
+
* Check if a given object implements the GetLotteryRecords200ResponseDataInner interface.
|
|
1734
|
+
*/
|
|
1735
|
+
declare function instanceOfGetLotteryRecords200ResponseDataInner(value: object): boolean;
|
|
1736
|
+
declare function GetLotteryRecords200ResponseDataInnerFromJSON(json: any): GetLotteryRecords200ResponseDataInner;
|
|
1737
|
+
declare function GetLotteryRecords200ResponseDataInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetLotteryRecords200ResponseDataInner;
|
|
1738
|
+
declare function GetLotteryRecords200ResponseDataInnerToJSON(value?: GetLotteryRecords200ResponseDataInner | null): any;
|
|
1485
1739
|
|
|
1486
1740
|
/**
|
|
1487
1741
|
* DJVLC User API
|
|
@@ -1506,20 +1760,27 @@ interface GetLotteryRecords200Response {
|
|
|
1506
1760
|
* @type {boolean}
|
|
1507
1761
|
* @memberof GetLotteryRecords200Response
|
|
1508
1762
|
*/
|
|
1509
|
-
|
|
1763
|
+
success?: boolean;
|
|
1510
1764
|
/**
|
|
1511
1765
|
*
|
|
1512
1766
|
* @type {Array<GetLotteryRecords200ResponseDataInner>}
|
|
1513
1767
|
* @memberof GetLotteryRecords200Response
|
|
1514
1768
|
*/
|
|
1515
|
-
|
|
1769
|
+
data?: Array<GetLotteryRecords200ResponseDataInner>;
|
|
1516
1770
|
/**
|
|
1517
1771
|
*
|
|
1518
1772
|
* @type {GetClaimRecords200ResponseMeta}
|
|
1519
1773
|
* @memberof GetLotteryRecords200Response
|
|
1520
1774
|
*/
|
|
1521
|
-
|
|
1775
|
+
meta?: GetClaimRecords200ResponseMeta;
|
|
1522
1776
|
}
|
|
1777
|
+
/**
|
|
1778
|
+
* Check if a given object implements the GetLotteryRecords200Response interface.
|
|
1779
|
+
*/
|
|
1780
|
+
declare function instanceOfGetLotteryRecords200Response(value: object): boolean;
|
|
1781
|
+
declare function GetLotteryRecords200ResponseFromJSON(json: any): GetLotteryRecords200Response;
|
|
1782
|
+
declare function GetLotteryRecords200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetLotteryRecords200Response;
|
|
1783
|
+
declare function GetLotteryRecords200ResponseToJSON(value?: GetLotteryRecords200Response | null): any;
|
|
1523
1784
|
|
|
1524
1785
|
/**
|
|
1525
1786
|
* DJVLC User API
|
|
@@ -1543,14 +1804,21 @@ interface GetPage200ResponseDataMeta {
|
|
|
1543
1804
|
* @type {string}
|
|
1544
1805
|
* @memberof GetPage200ResponseDataMeta
|
|
1545
1806
|
*/
|
|
1546
|
-
|
|
1807
|
+
title?: string;
|
|
1547
1808
|
/**
|
|
1548
1809
|
* 页面描述
|
|
1549
1810
|
* @type {string}
|
|
1550
1811
|
* @memberof GetPage200ResponseDataMeta
|
|
1551
1812
|
*/
|
|
1552
|
-
|
|
1813
|
+
description?: string;
|
|
1553
1814
|
}
|
|
1815
|
+
/**
|
|
1816
|
+
* Check if a given object implements the GetPage200ResponseDataMeta interface.
|
|
1817
|
+
*/
|
|
1818
|
+
declare function instanceOfGetPage200ResponseDataMeta(value: object): boolean;
|
|
1819
|
+
declare function GetPage200ResponseDataMetaFromJSON(json: any): GetPage200ResponseDataMeta;
|
|
1820
|
+
declare function GetPage200ResponseDataMetaFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetPage200ResponseDataMeta;
|
|
1821
|
+
declare function GetPage200ResponseDataMetaToJSON(value?: GetPage200ResponseDataMeta | null): any;
|
|
1554
1822
|
|
|
1555
1823
|
/**
|
|
1556
1824
|
* DJVLC User API
|
|
@@ -1575,26 +1843,33 @@ interface GetPage200ResponseData {
|
|
|
1575
1843
|
* @type {string}
|
|
1576
1844
|
* @memberof GetPage200ResponseData
|
|
1577
1845
|
*/
|
|
1578
|
-
|
|
1846
|
+
pageId: string;
|
|
1579
1847
|
/**
|
|
1580
1848
|
* 页面版本
|
|
1581
1849
|
* @type {string}
|
|
1582
1850
|
* @memberof GetPage200ResponseData
|
|
1583
1851
|
*/
|
|
1584
|
-
|
|
1852
|
+
version: string;
|
|
1585
1853
|
/**
|
|
1586
1854
|
*
|
|
1587
1855
|
* @type {GetPage200ResponseDataMeta}
|
|
1588
1856
|
* @memberof GetPage200ResponseData
|
|
1589
1857
|
*/
|
|
1590
|
-
|
|
1858
|
+
meta: GetPage200ResponseDataMeta;
|
|
1591
1859
|
/**
|
|
1592
1860
|
* 完整性哈希
|
|
1593
1861
|
* @type {string}
|
|
1594
1862
|
* @memberof GetPage200ResponseData
|
|
1595
1863
|
*/
|
|
1596
|
-
|
|
1864
|
+
integrity?: string;
|
|
1597
1865
|
}
|
|
1866
|
+
/**
|
|
1867
|
+
* Check if a given object implements the GetPage200ResponseData interface.
|
|
1868
|
+
*/
|
|
1869
|
+
declare function instanceOfGetPage200ResponseData(value: object): boolean;
|
|
1870
|
+
declare function GetPage200ResponseDataFromJSON(json: any): GetPage200ResponseData;
|
|
1871
|
+
declare function GetPage200ResponseDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetPage200ResponseData;
|
|
1872
|
+
declare function GetPage200ResponseDataToJSON(value?: GetPage200ResponseData | null): any;
|
|
1598
1873
|
|
|
1599
1874
|
/**
|
|
1600
1875
|
* DJVLC User API
|
|
@@ -1619,8 +1894,15 @@ interface GetPage200Response {
|
|
|
1619
1894
|
* @type {GetPage200ResponseData}
|
|
1620
1895
|
* @memberof GetPage200Response
|
|
1621
1896
|
*/
|
|
1622
|
-
|
|
1897
|
+
data: GetPage200ResponseData;
|
|
1623
1898
|
}
|
|
1899
|
+
/**
|
|
1900
|
+
* Check if a given object implements the GetPage200Response interface.
|
|
1901
|
+
*/
|
|
1902
|
+
declare function instanceOfGetPage200Response(value: object): boolean;
|
|
1903
|
+
declare function GetPage200ResponseFromJSON(json: any): GetPage200Response;
|
|
1904
|
+
declare function GetPage200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetPage200Response;
|
|
1905
|
+
declare function GetPage200ResponseToJSON(value?: GetPage200Response | null): any;
|
|
1624
1906
|
|
|
1625
1907
|
/**
|
|
1626
1908
|
* DJVLC User API
|
|
@@ -1645,20 +1927,27 @@ interface GetPage404Response {
|
|
|
1645
1927
|
* @type {string}
|
|
1646
1928
|
* @memberof GetPage404Response
|
|
1647
1929
|
*/
|
|
1648
|
-
|
|
1930
|
+
code: string;
|
|
1649
1931
|
/**
|
|
1650
1932
|
* 错误消息
|
|
1651
1933
|
* @type {string}
|
|
1652
1934
|
* @memberof GetPage404Response
|
|
1653
1935
|
*/
|
|
1654
|
-
|
|
1936
|
+
message: string;
|
|
1655
1937
|
/**
|
|
1656
1938
|
* 错误详情
|
|
1657
1939
|
* @type {Array<GetPage404ResponseDetailsInner>}
|
|
1658
1940
|
* @memberof GetPage404Response
|
|
1659
1941
|
*/
|
|
1660
|
-
|
|
1942
|
+
details?: Array<GetPage404ResponseDetailsInner>;
|
|
1661
1943
|
}
|
|
1944
|
+
/**
|
|
1945
|
+
* Check if a given object implements the GetPage404Response interface.
|
|
1946
|
+
*/
|
|
1947
|
+
declare function instanceOfGetPage404Response(value: object): boolean;
|
|
1948
|
+
declare function GetPage404ResponseFromJSON(json: any): GetPage404Response;
|
|
1949
|
+
declare function GetPage404ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetPage404Response;
|
|
1950
|
+
declare function GetPage404ResponseToJSON(value?: GetPage404Response | null): any;
|
|
1662
1951
|
|
|
1663
1952
|
/**
|
|
1664
1953
|
* DJVLC User API
|
|
@@ -1682,14 +1971,21 @@ interface GetSigninCalendar200ResponseDataRecordsInnerReward {
|
|
|
1682
1971
|
* @type {string}
|
|
1683
1972
|
* @memberof GetSigninCalendar200ResponseDataRecordsInnerReward
|
|
1684
1973
|
*/
|
|
1685
|
-
|
|
1974
|
+
name?: string;
|
|
1686
1975
|
/**
|
|
1687
1976
|
*
|
|
1688
1977
|
* @type {number}
|
|
1689
1978
|
* @memberof GetSigninCalendar200ResponseDataRecordsInnerReward
|
|
1690
1979
|
*/
|
|
1691
|
-
|
|
1980
|
+
amount?: number;
|
|
1692
1981
|
}
|
|
1982
|
+
/**
|
|
1983
|
+
* Check if a given object implements the GetSigninCalendar200ResponseDataRecordsInnerReward interface.
|
|
1984
|
+
*/
|
|
1985
|
+
declare function instanceOfGetSigninCalendar200ResponseDataRecordsInnerReward(value: object): boolean;
|
|
1986
|
+
declare function GetSigninCalendar200ResponseDataRecordsInnerRewardFromJSON(json: any): GetSigninCalendar200ResponseDataRecordsInnerReward;
|
|
1987
|
+
declare function GetSigninCalendar200ResponseDataRecordsInnerRewardFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetSigninCalendar200ResponseDataRecordsInnerReward;
|
|
1988
|
+
declare function GetSigninCalendar200ResponseDataRecordsInnerRewardToJSON(value?: GetSigninCalendar200ResponseDataRecordsInnerReward | null): any;
|
|
1693
1989
|
|
|
1694
1990
|
/**
|
|
1695
1991
|
* DJVLC User API
|
|
@@ -1714,20 +2010,27 @@ interface GetSigninCalendar200ResponseDataRecordsInner {
|
|
|
1714
2010
|
* @type {number}
|
|
1715
2011
|
* @memberof GetSigninCalendar200ResponseDataRecordsInner
|
|
1716
2012
|
*/
|
|
1717
|
-
|
|
2013
|
+
day?: number;
|
|
1718
2014
|
/**
|
|
1719
2015
|
*
|
|
1720
2016
|
* @type {boolean}
|
|
1721
2017
|
* @memberof GetSigninCalendar200ResponseDataRecordsInner
|
|
1722
2018
|
*/
|
|
1723
|
-
|
|
2019
|
+
signedIn?: boolean;
|
|
1724
2020
|
/**
|
|
1725
2021
|
*
|
|
1726
2022
|
* @type {GetSigninCalendar200ResponseDataRecordsInnerReward}
|
|
1727
2023
|
* @memberof GetSigninCalendar200ResponseDataRecordsInner
|
|
1728
2024
|
*/
|
|
1729
|
-
|
|
2025
|
+
reward?: GetSigninCalendar200ResponseDataRecordsInnerReward;
|
|
1730
2026
|
}
|
|
2027
|
+
/**
|
|
2028
|
+
* Check if a given object implements the GetSigninCalendar200ResponseDataRecordsInner interface.
|
|
2029
|
+
*/
|
|
2030
|
+
declare function instanceOfGetSigninCalendar200ResponseDataRecordsInner(value: object): boolean;
|
|
2031
|
+
declare function GetSigninCalendar200ResponseDataRecordsInnerFromJSON(json: any): GetSigninCalendar200ResponseDataRecordsInner;
|
|
2032
|
+
declare function GetSigninCalendar200ResponseDataRecordsInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetSigninCalendar200ResponseDataRecordsInner;
|
|
2033
|
+
declare function GetSigninCalendar200ResponseDataRecordsInnerToJSON(value?: GetSigninCalendar200ResponseDataRecordsInner | null): any;
|
|
1731
2034
|
|
|
1732
2035
|
/**
|
|
1733
2036
|
* DJVLC User API
|
|
@@ -1752,32 +2055,39 @@ interface GetSigninCalendar200ResponseData {
|
|
|
1752
2055
|
* @type {number}
|
|
1753
2056
|
* @memberof GetSigninCalendar200ResponseData
|
|
1754
2057
|
*/
|
|
1755
|
-
|
|
2058
|
+
year: number;
|
|
1756
2059
|
/**
|
|
1757
2060
|
* 月份
|
|
1758
2061
|
* @type {number}
|
|
1759
2062
|
* @memberof GetSigninCalendar200ResponseData
|
|
1760
2063
|
*/
|
|
1761
|
-
|
|
2064
|
+
month: number;
|
|
1762
2065
|
/**
|
|
1763
2066
|
* 签到记录
|
|
1764
2067
|
* @type {Array<GetSigninCalendar200ResponseDataRecordsInner>}
|
|
1765
2068
|
* @memberof GetSigninCalendar200ResponseData
|
|
1766
2069
|
*/
|
|
1767
|
-
|
|
2070
|
+
records: Array<GetSigninCalendar200ResponseDataRecordsInner>;
|
|
1768
2071
|
/**
|
|
1769
2072
|
* 连续签到天数
|
|
1770
2073
|
* @type {number}
|
|
1771
2074
|
* @memberof GetSigninCalendar200ResponseData
|
|
1772
2075
|
*/
|
|
1773
|
-
|
|
2076
|
+
consecutiveDays?: number;
|
|
1774
2077
|
/**
|
|
1775
2078
|
* 本月签到总天数
|
|
1776
2079
|
* @type {number}
|
|
1777
2080
|
* @memberof GetSigninCalendar200ResponseData
|
|
1778
2081
|
*/
|
|
1779
|
-
|
|
2082
|
+
totalDays?: number;
|
|
1780
2083
|
}
|
|
2084
|
+
/**
|
|
2085
|
+
* Check if a given object implements the GetSigninCalendar200ResponseData interface.
|
|
2086
|
+
*/
|
|
2087
|
+
declare function instanceOfGetSigninCalendar200ResponseData(value: object): boolean;
|
|
2088
|
+
declare function GetSigninCalendar200ResponseDataFromJSON(json: any): GetSigninCalendar200ResponseData;
|
|
2089
|
+
declare function GetSigninCalendar200ResponseDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetSigninCalendar200ResponseData;
|
|
2090
|
+
declare function GetSigninCalendar200ResponseDataToJSON(value?: GetSigninCalendar200ResponseData | null): any;
|
|
1781
2091
|
|
|
1782
2092
|
/**
|
|
1783
2093
|
* DJVLC User API
|
|
@@ -1802,14 +2112,21 @@ interface GetSigninCalendar200Response {
|
|
|
1802
2112
|
* @type {boolean}
|
|
1803
2113
|
* @memberof GetSigninCalendar200Response
|
|
1804
2114
|
*/
|
|
1805
|
-
|
|
2115
|
+
success?: boolean;
|
|
1806
2116
|
/**
|
|
1807
2117
|
*
|
|
1808
2118
|
* @type {GetSigninCalendar200ResponseData}
|
|
1809
2119
|
* @memberof GetSigninCalendar200Response
|
|
1810
2120
|
*/
|
|
1811
|
-
|
|
2121
|
+
data?: GetSigninCalendar200ResponseData;
|
|
1812
2122
|
}
|
|
2123
|
+
/**
|
|
2124
|
+
* Check if a given object implements the GetSigninCalendar200Response interface.
|
|
2125
|
+
*/
|
|
2126
|
+
declare function instanceOfGetSigninCalendar200Response(value: object): boolean;
|
|
2127
|
+
declare function GetSigninCalendar200ResponseFromJSON(json: any): GetSigninCalendar200Response;
|
|
2128
|
+
declare function GetSigninCalendar200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetSigninCalendar200Response;
|
|
2129
|
+
declare function GetSigninCalendar200ResponseToJSON(value?: GetSigninCalendar200Response | null): any;
|
|
1813
2130
|
|
|
1814
2131
|
/**
|
|
1815
2132
|
* DJVLC User API
|
|
@@ -1833,50 +2150,53 @@ interface LotteryRecordInfo {
|
|
|
1833
2150
|
* @type {string}
|
|
1834
2151
|
* @memberof LotteryRecordInfo
|
|
1835
2152
|
*/
|
|
1836
|
-
|
|
2153
|
+
id: string;
|
|
1837
2154
|
/**
|
|
1838
2155
|
* 活动 ID
|
|
1839
2156
|
* @type {string}
|
|
1840
2157
|
* @memberof LotteryRecordInfo
|
|
1841
2158
|
*/
|
|
1842
|
-
|
|
2159
|
+
activityId?: string;
|
|
1843
2160
|
/**
|
|
1844
2161
|
* 奖品 ID
|
|
1845
2162
|
* @type {string}
|
|
1846
2163
|
* @memberof LotteryRecordInfo
|
|
1847
2164
|
*/
|
|
1848
|
-
|
|
2165
|
+
prizeId: string;
|
|
1849
2166
|
/**
|
|
1850
2167
|
* 奖品名称
|
|
1851
2168
|
* @type {string}
|
|
1852
2169
|
* @memberof LotteryRecordInfo
|
|
1853
2170
|
*/
|
|
1854
|
-
|
|
2171
|
+
prizeName?: string;
|
|
1855
2172
|
/**
|
|
1856
2173
|
* 奖品类型
|
|
1857
2174
|
* @type {string}
|
|
1858
2175
|
* @memberof LotteryRecordInfo
|
|
1859
2176
|
*/
|
|
1860
|
-
|
|
2177
|
+
prizeType?: LotteryRecordInfoPrizeTypeEnum;
|
|
1861
2178
|
/**
|
|
1862
2179
|
* 状态
|
|
1863
2180
|
* @type {string}
|
|
1864
2181
|
* @memberof LotteryRecordInfo
|
|
1865
2182
|
*/
|
|
1866
|
-
|
|
2183
|
+
status: LotteryRecordInfoStatusEnum;
|
|
1867
2184
|
/**
|
|
1868
2185
|
* 抽奖时间
|
|
1869
|
-
* @type {
|
|
2186
|
+
* @type {Date}
|
|
1870
2187
|
* @memberof LotteryRecordInfo
|
|
1871
2188
|
*/
|
|
1872
|
-
|
|
2189
|
+
createdAt: Date;
|
|
1873
2190
|
/**
|
|
1874
2191
|
* 领取时间
|
|
1875
|
-
* @type {
|
|
2192
|
+
* @type {Date}
|
|
1876
2193
|
* @memberof LotteryRecordInfo
|
|
1877
2194
|
*/
|
|
1878
|
-
|
|
2195
|
+
claimedAt?: Date;
|
|
1879
2196
|
}
|
|
2197
|
+
/**
|
|
2198
|
+
* @export
|
|
2199
|
+
*/
|
|
1880
2200
|
declare const LotteryRecordInfoPrizeTypeEnum: {
|
|
1881
2201
|
readonly PHYSICAL: "physical";
|
|
1882
2202
|
readonly VIRTUAL: "virtual";
|
|
@@ -1885,6 +2205,9 @@ declare const LotteryRecordInfoPrizeTypeEnum: {
|
|
|
1885
2205
|
readonly NONE: "none";
|
|
1886
2206
|
};
|
|
1887
2207
|
type LotteryRecordInfoPrizeTypeEnum = typeof LotteryRecordInfoPrizeTypeEnum[keyof typeof LotteryRecordInfoPrizeTypeEnum];
|
|
2208
|
+
/**
|
|
2209
|
+
* @export
|
|
2210
|
+
*/
|
|
1888
2211
|
declare const LotteryRecordInfoStatusEnum: {
|
|
1889
2212
|
readonly WON: "won";
|
|
1890
2213
|
readonly NOT_WON: "notWon";
|
|
@@ -1892,6 +2215,13 @@ declare const LotteryRecordInfoStatusEnum: {
|
|
|
1892
2215
|
readonly SHIPPED: "shipped";
|
|
1893
2216
|
};
|
|
1894
2217
|
type LotteryRecordInfoStatusEnum = typeof LotteryRecordInfoStatusEnum[keyof typeof LotteryRecordInfoStatusEnum];
|
|
2218
|
+
/**
|
|
2219
|
+
* Check if a given object implements the LotteryRecordInfo interface.
|
|
2220
|
+
*/
|
|
2221
|
+
declare function instanceOfLotteryRecordInfo(value: object): boolean;
|
|
2222
|
+
declare function LotteryRecordInfoFromJSON(json: any): LotteryRecordInfo;
|
|
2223
|
+
declare function LotteryRecordInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): LotteryRecordInfo;
|
|
2224
|
+
declare function LotteryRecordInfoToJSON(value?: LotteryRecordInfo | null): any;
|
|
1895
2225
|
|
|
1896
2226
|
/**
|
|
1897
2227
|
* DJVLC User API
|
|
@@ -1916,8 +2246,15 @@ interface PageResponse {
|
|
|
1916
2246
|
* @type {GetPage200ResponseData}
|
|
1917
2247
|
* @memberof PageResponse
|
|
1918
2248
|
*/
|
|
1919
|
-
|
|
2249
|
+
data: GetPage200ResponseData;
|
|
1920
2250
|
}
|
|
2251
|
+
/**
|
|
2252
|
+
* Check if a given object implements the PageResponse interface.
|
|
2253
|
+
*/
|
|
2254
|
+
declare function instanceOfPageResponse(value: object): boolean;
|
|
2255
|
+
declare function PageResponseFromJSON(json: any): PageResponse;
|
|
2256
|
+
declare function PageResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PageResponse;
|
|
2257
|
+
declare function PageResponseToJSON(value?: PageResponse | null): any;
|
|
1921
2258
|
|
|
1922
2259
|
/**
|
|
1923
2260
|
* DJVLC User API
|
|
@@ -1941,26 +2278,33 @@ interface PaginationMeta {
|
|
|
1941
2278
|
* @type {number}
|
|
1942
2279
|
* @memberof PaginationMeta
|
|
1943
2280
|
*/
|
|
1944
|
-
|
|
2281
|
+
page: number;
|
|
1945
2282
|
/**
|
|
1946
2283
|
* 每页数量
|
|
1947
2284
|
* @type {number}
|
|
1948
2285
|
* @memberof PaginationMeta
|
|
1949
2286
|
*/
|
|
1950
|
-
|
|
2287
|
+
limit: number;
|
|
1951
2288
|
/**
|
|
1952
2289
|
* 总记录数
|
|
1953
2290
|
* @type {number}
|
|
1954
2291
|
* @memberof PaginationMeta
|
|
1955
2292
|
*/
|
|
1956
|
-
|
|
2293
|
+
total: number;
|
|
1957
2294
|
/**
|
|
1958
2295
|
* 总页数
|
|
1959
2296
|
* @type {number}
|
|
1960
2297
|
* @memberof PaginationMeta
|
|
1961
2298
|
*/
|
|
1962
|
-
|
|
2299
|
+
totalPages: number;
|
|
1963
2300
|
}
|
|
2301
|
+
/**
|
|
2302
|
+
* Check if a given object implements the PaginationMeta interface.
|
|
2303
|
+
*/
|
|
2304
|
+
declare function instanceOfPaginationMeta(value: object): boolean;
|
|
2305
|
+
declare function PaginationMetaFromJSON(json: any): PaginationMeta;
|
|
2306
|
+
declare function PaginationMetaFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginationMeta;
|
|
2307
|
+
declare function PaginationMetaToJSON(value?: PaginationMeta | null): any;
|
|
1964
2308
|
|
|
1965
2309
|
/**
|
|
1966
2310
|
* DJVLC User API
|
|
@@ -1985,49 +2329,49 @@ interface PublicActivityInfo {
|
|
|
1985
2329
|
* @type {string}
|
|
1986
2330
|
* @memberof PublicActivityInfo
|
|
1987
2331
|
*/
|
|
1988
|
-
|
|
2332
|
+
id: string;
|
|
1989
2333
|
/**
|
|
1990
2334
|
* 活动名称
|
|
1991
2335
|
* @type {string}
|
|
1992
2336
|
* @memberof PublicActivityInfo
|
|
1993
2337
|
*/
|
|
1994
|
-
|
|
2338
|
+
name: string;
|
|
1995
2339
|
/**
|
|
1996
2340
|
* 活动类型
|
|
1997
2341
|
* @type {string}
|
|
1998
2342
|
* @memberof PublicActivityInfo
|
|
1999
2343
|
*/
|
|
2000
|
-
|
|
2344
|
+
type: PublicActivityInfoTypeEnum;
|
|
2001
2345
|
/**
|
|
2002
2346
|
* 活动状态
|
|
2003
2347
|
* @type {string}
|
|
2004
2348
|
* @memberof PublicActivityInfo
|
|
2005
2349
|
*/
|
|
2006
|
-
|
|
2350
|
+
status: PublicActivityInfoStatusEnum;
|
|
2007
2351
|
/**
|
|
2008
2352
|
* 活动描述
|
|
2009
2353
|
* @type {string}
|
|
2010
2354
|
* @memberof PublicActivityInfo
|
|
2011
2355
|
*/
|
|
2012
|
-
|
|
2356
|
+
description?: string;
|
|
2013
2357
|
/**
|
|
2014
2358
|
* 开始时间
|
|
2015
|
-
* @type {
|
|
2359
|
+
* @type {Date}
|
|
2016
2360
|
* @memberof PublicActivityInfo
|
|
2017
2361
|
*/
|
|
2018
|
-
|
|
2362
|
+
startTime?: Date;
|
|
2019
2363
|
/**
|
|
2020
2364
|
* 结束时间
|
|
2021
|
-
* @type {
|
|
2365
|
+
* @type {Date}
|
|
2022
2366
|
* @memberof PublicActivityInfo
|
|
2023
2367
|
*/
|
|
2024
|
-
|
|
2368
|
+
endTime?: Date;
|
|
2025
2369
|
/**
|
|
2026
2370
|
* 活动规则(公开部分)
|
|
2027
2371
|
* @type {{ [key: string]: any; }}
|
|
2028
2372
|
* @memberof PublicActivityInfo
|
|
2029
2373
|
*/
|
|
2030
|
-
|
|
2374
|
+
rules?: {
|
|
2031
2375
|
[key: string]: any;
|
|
2032
2376
|
};
|
|
2033
2377
|
/**
|
|
@@ -2035,8 +2379,11 @@ interface PublicActivityInfo {
|
|
|
2035
2379
|
* @type {Array<GetActivityInfo200ResponseDataRewardsInner>}
|
|
2036
2380
|
* @memberof PublicActivityInfo
|
|
2037
2381
|
*/
|
|
2038
|
-
|
|
2382
|
+
rewards?: Array<GetActivityInfo200ResponseDataRewardsInner>;
|
|
2039
2383
|
}
|
|
2384
|
+
/**
|
|
2385
|
+
* @export
|
|
2386
|
+
*/
|
|
2040
2387
|
declare const PublicActivityInfoTypeEnum: {
|
|
2041
2388
|
readonly SIGNIN: "signin";
|
|
2042
2389
|
readonly LOTTERY: "lottery";
|
|
@@ -2045,11 +2392,21 @@ declare const PublicActivityInfoTypeEnum: {
|
|
|
2045
2392
|
readonly CUSTOM: "custom";
|
|
2046
2393
|
};
|
|
2047
2394
|
type PublicActivityInfoTypeEnum = typeof PublicActivityInfoTypeEnum[keyof typeof PublicActivityInfoTypeEnum];
|
|
2395
|
+
/**
|
|
2396
|
+
* @export
|
|
2397
|
+
*/
|
|
2048
2398
|
declare const PublicActivityInfoStatusEnum: {
|
|
2049
2399
|
readonly ACTIVE: "active";
|
|
2050
2400
|
readonly ENDED: "ended";
|
|
2051
2401
|
};
|
|
2052
2402
|
type PublicActivityInfoStatusEnum = typeof PublicActivityInfoStatusEnum[keyof typeof PublicActivityInfoStatusEnum];
|
|
2403
|
+
/**
|
|
2404
|
+
* Check if a given object implements the PublicActivityInfo interface.
|
|
2405
|
+
*/
|
|
2406
|
+
declare function instanceOfPublicActivityInfo(value: object): boolean;
|
|
2407
|
+
declare function PublicActivityInfoFromJSON(json: any): PublicActivityInfo;
|
|
2408
|
+
declare function PublicActivityInfoFromJSONTyped(json: any, ignoreDiscriminator: boolean): PublicActivityInfo;
|
|
2409
|
+
declare function PublicActivityInfoToJSON(value?: PublicActivityInfo | null): any;
|
|
2053
2410
|
|
|
2054
2411
|
/**
|
|
2055
2412
|
* DJVLC User API
|
|
@@ -2073,20 +2430,27 @@ interface QueryManifest {
|
|
|
2073
2430
|
* @type {string}
|
|
2074
2431
|
* @memberof QueryManifest
|
|
2075
2432
|
*/
|
|
2076
|
-
|
|
2433
|
+
queryId: string;
|
|
2077
2434
|
/**
|
|
2078
2435
|
* 查询版本
|
|
2079
2436
|
* @type {string}
|
|
2080
2437
|
* @memberof QueryManifest
|
|
2081
2438
|
*/
|
|
2082
|
-
|
|
2439
|
+
version: string;
|
|
2083
2440
|
/**
|
|
2084
2441
|
* 缓存 TTL(秒)
|
|
2085
2442
|
* @type {number}
|
|
2086
2443
|
* @memberof QueryManifest
|
|
2087
2444
|
*/
|
|
2088
|
-
|
|
2445
|
+
cacheTtl?: number;
|
|
2089
2446
|
}
|
|
2447
|
+
/**
|
|
2448
|
+
* Check if a given object implements the QueryManifest interface.
|
|
2449
|
+
*/
|
|
2450
|
+
declare function instanceOfQueryManifest(value: object): boolean;
|
|
2451
|
+
declare function QueryManifestFromJSON(json: any): QueryManifest;
|
|
2452
|
+
declare function QueryManifestFromJSONTyped(json: any, ignoreDiscriminator: boolean): QueryManifest;
|
|
2453
|
+
declare function QueryManifestToJSON(value?: QueryManifest | null): any;
|
|
2090
2454
|
|
|
2091
2455
|
/**
|
|
2092
2456
|
* DJVLC User API
|
|
@@ -2110,25 +2474,25 @@ interface ResolveContext {
|
|
|
2110
2474
|
* @type {string}
|
|
2111
2475
|
* @memberof ResolveContext
|
|
2112
2476
|
*/
|
|
2113
|
-
|
|
2477
|
+
userId?: string;
|
|
2114
2478
|
/**
|
|
2115
2479
|
* 会话 ID
|
|
2116
2480
|
* @type {string}
|
|
2117
2481
|
* @memberof ResolveContext
|
|
2118
2482
|
*/
|
|
2119
|
-
|
|
2483
|
+
sessionId?: string;
|
|
2120
2484
|
/**
|
|
2121
2485
|
* 设备类型
|
|
2122
2486
|
* @type {string}
|
|
2123
2487
|
* @memberof ResolveContext
|
|
2124
2488
|
*/
|
|
2125
|
-
|
|
2489
|
+
deviceType?: ResolveContextDeviceTypeEnum;
|
|
2126
2490
|
/**
|
|
2127
2491
|
* URL 参数
|
|
2128
2492
|
* @type {{ [key: string]: string; }}
|
|
2129
2493
|
* @memberof ResolveContext
|
|
2130
2494
|
*/
|
|
2131
|
-
|
|
2495
|
+
urlParams?: {
|
|
2132
2496
|
[key: string]: string;
|
|
2133
2497
|
};
|
|
2134
2498
|
/**
|
|
@@ -2136,7 +2500,7 @@ interface ResolveContext {
|
|
|
2136
2500
|
* @type {{ [key: string]: string; }}
|
|
2137
2501
|
* @memberof ResolveContext
|
|
2138
2502
|
*/
|
|
2139
|
-
|
|
2503
|
+
routeParams?: {
|
|
2140
2504
|
[key: string]: string;
|
|
2141
2505
|
};
|
|
2142
2506
|
/**
|
|
@@ -2144,16 +2508,26 @@ interface ResolveContext {
|
|
|
2144
2508
|
* @type {{ [key: string]: any; }}
|
|
2145
2509
|
* @memberof ResolveContext
|
|
2146
2510
|
*/
|
|
2147
|
-
|
|
2511
|
+
customData?: {
|
|
2148
2512
|
[key: string]: any;
|
|
2149
2513
|
};
|
|
2150
2514
|
}
|
|
2515
|
+
/**
|
|
2516
|
+
* @export
|
|
2517
|
+
*/
|
|
2151
2518
|
declare const ResolveContextDeviceTypeEnum: {
|
|
2152
2519
|
readonly MOBILE: "mobile";
|
|
2153
2520
|
readonly TABLET: "tablet";
|
|
2154
2521
|
readonly DESKTOP: "desktop";
|
|
2155
2522
|
};
|
|
2156
2523
|
type ResolveContextDeviceTypeEnum = typeof ResolveContextDeviceTypeEnum[keyof typeof ResolveContextDeviceTypeEnum];
|
|
2524
|
+
/**
|
|
2525
|
+
* Check if a given object implements the ResolveContext interface.
|
|
2526
|
+
*/
|
|
2527
|
+
declare function instanceOfResolveContext(value: object): boolean;
|
|
2528
|
+
declare function ResolveContextFromJSON(json: any): ResolveContext;
|
|
2529
|
+
declare function ResolveContextFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResolveContext;
|
|
2530
|
+
declare function ResolveContextToJSON(value?: ResolveContext | null): any;
|
|
2157
2531
|
|
|
2158
2532
|
/**
|
|
2159
2533
|
* DJVLC User API
|
|
@@ -2177,25 +2551,35 @@ interface ResolvePage200ResponseDataManifestsActionsInner {
|
|
|
2177
2551
|
* @type {string}
|
|
2178
2552
|
* @memberof ResolvePage200ResponseDataManifestsActionsInner
|
|
2179
2553
|
*/
|
|
2180
|
-
|
|
2554
|
+
actionId: string;
|
|
2181
2555
|
/**
|
|
2182
2556
|
* 动作版本
|
|
2183
2557
|
* @type {string}
|
|
2184
2558
|
* @memberof ResolvePage200ResponseDataManifestsActionsInner
|
|
2185
2559
|
*/
|
|
2186
|
-
|
|
2560
|
+
version: string;
|
|
2187
2561
|
/**
|
|
2188
2562
|
* 动作类型
|
|
2189
2563
|
* @type {string}
|
|
2190
2564
|
* @memberof ResolvePage200ResponseDataManifestsActionsInner
|
|
2191
2565
|
*/
|
|
2192
|
-
|
|
2566
|
+
type?: ResolvePage200ResponseDataManifestsActionsInnerTypeEnum;
|
|
2193
2567
|
}
|
|
2568
|
+
/**
|
|
2569
|
+
* @export
|
|
2570
|
+
*/
|
|
2194
2571
|
declare const ResolvePage200ResponseDataManifestsActionsInnerTypeEnum: {
|
|
2195
2572
|
readonly BUILTIN: "builtin";
|
|
2196
2573
|
readonly CUSTOM: "custom";
|
|
2197
2574
|
};
|
|
2198
2575
|
type ResolvePage200ResponseDataManifestsActionsInnerTypeEnum = typeof ResolvePage200ResponseDataManifestsActionsInnerTypeEnum[keyof typeof ResolvePage200ResponseDataManifestsActionsInnerTypeEnum];
|
|
2576
|
+
/**
|
|
2577
|
+
* Check if a given object implements the ResolvePage200ResponseDataManifestsActionsInner interface.
|
|
2578
|
+
*/
|
|
2579
|
+
declare function instanceOfResolvePage200ResponseDataManifestsActionsInner(value: object): boolean;
|
|
2580
|
+
declare function ResolvePage200ResponseDataManifestsActionsInnerFromJSON(json: any): ResolvePage200ResponseDataManifestsActionsInner;
|
|
2581
|
+
declare function ResolvePage200ResponseDataManifestsActionsInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResolvePage200ResponseDataManifestsActionsInner;
|
|
2582
|
+
declare function ResolvePage200ResponseDataManifestsActionsInnerToJSON(value?: ResolvePage200ResponseDataManifestsActionsInner | null): any;
|
|
2199
2583
|
|
|
2200
2584
|
/**
|
|
2201
2585
|
* DJVLC User API
|
|
@@ -2219,26 +2603,33 @@ interface ResolvePage200ResponseDataManifestsComponentsInner {
|
|
|
2219
2603
|
* @type {string}
|
|
2220
2604
|
* @memberof ResolvePage200ResponseDataManifestsComponentsInner
|
|
2221
2605
|
*/
|
|
2222
|
-
|
|
2606
|
+
componentType: string;
|
|
2223
2607
|
/**
|
|
2224
2608
|
* 组件版本
|
|
2225
2609
|
* @type {string}
|
|
2226
2610
|
* @memberof ResolvePage200ResponseDataManifestsComponentsInner
|
|
2227
2611
|
*/
|
|
2228
|
-
|
|
2612
|
+
version: string;
|
|
2229
2613
|
/**
|
|
2230
2614
|
* 组件入口 URL
|
|
2231
2615
|
* @type {string}
|
|
2232
2616
|
* @memberof ResolvePage200ResponseDataManifestsComponentsInner
|
|
2233
2617
|
*/
|
|
2234
|
-
|
|
2618
|
+
entryUrl: string;
|
|
2235
2619
|
/**
|
|
2236
2620
|
* 完整性哈希
|
|
2237
2621
|
* @type {string}
|
|
2238
2622
|
* @memberof ResolvePage200ResponseDataManifestsComponentsInner
|
|
2239
2623
|
*/
|
|
2240
|
-
|
|
2624
|
+
integrity?: string;
|
|
2241
2625
|
}
|
|
2626
|
+
/**
|
|
2627
|
+
* Check if a given object implements the ResolvePage200ResponseDataManifestsComponentsInner interface.
|
|
2628
|
+
*/
|
|
2629
|
+
declare function instanceOfResolvePage200ResponseDataManifestsComponentsInner(value: object): boolean;
|
|
2630
|
+
declare function ResolvePage200ResponseDataManifestsComponentsInnerFromJSON(json: any): ResolvePage200ResponseDataManifestsComponentsInner;
|
|
2631
|
+
declare function ResolvePage200ResponseDataManifestsComponentsInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResolvePage200ResponseDataManifestsComponentsInner;
|
|
2632
|
+
declare function ResolvePage200ResponseDataManifestsComponentsInnerToJSON(value?: ResolvePage200ResponseDataManifestsComponentsInner | null): any;
|
|
2242
2633
|
|
|
2243
2634
|
/**
|
|
2244
2635
|
* DJVLC User API
|
|
@@ -2262,20 +2653,27 @@ interface ResolvePage200ResponseDataManifestsQueriesInner {
|
|
|
2262
2653
|
* @type {string}
|
|
2263
2654
|
* @memberof ResolvePage200ResponseDataManifestsQueriesInner
|
|
2264
2655
|
*/
|
|
2265
|
-
|
|
2656
|
+
queryId: string;
|
|
2266
2657
|
/**
|
|
2267
2658
|
* 查询版本
|
|
2268
2659
|
* @type {string}
|
|
2269
2660
|
* @memberof ResolvePage200ResponseDataManifestsQueriesInner
|
|
2270
2661
|
*/
|
|
2271
|
-
|
|
2662
|
+
version: string;
|
|
2272
2663
|
/**
|
|
2273
2664
|
* 缓存 TTL(秒)
|
|
2274
2665
|
* @type {number}
|
|
2275
2666
|
* @memberof ResolvePage200ResponseDataManifestsQueriesInner
|
|
2276
2667
|
*/
|
|
2277
|
-
|
|
2668
|
+
cacheTtl?: number;
|
|
2278
2669
|
}
|
|
2670
|
+
/**
|
|
2671
|
+
* Check if a given object implements the ResolvePage200ResponseDataManifestsQueriesInner interface.
|
|
2672
|
+
*/
|
|
2673
|
+
declare function instanceOfResolvePage200ResponseDataManifestsQueriesInner(value: object): boolean;
|
|
2674
|
+
declare function ResolvePage200ResponseDataManifestsQueriesInnerFromJSON(json: any): ResolvePage200ResponseDataManifestsQueriesInner;
|
|
2675
|
+
declare function ResolvePage200ResponseDataManifestsQueriesInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResolvePage200ResponseDataManifestsQueriesInner;
|
|
2676
|
+
declare function ResolvePage200ResponseDataManifestsQueriesInnerToJSON(value?: ResolvePage200ResponseDataManifestsQueriesInner | null): any;
|
|
2279
2677
|
|
|
2280
2678
|
/**
|
|
2281
2679
|
* DJVLC User API
|
|
@@ -2300,20 +2698,27 @@ interface ResolvePage200ResponseDataManifests {
|
|
|
2300
2698
|
* @type {Array<ResolvePage200ResponseDataManifestsComponentsInner>}
|
|
2301
2699
|
* @memberof ResolvePage200ResponseDataManifests
|
|
2302
2700
|
*/
|
|
2303
|
-
|
|
2701
|
+
components?: Array<ResolvePage200ResponseDataManifestsComponentsInner>;
|
|
2304
2702
|
/**
|
|
2305
2703
|
* 动作资源清单
|
|
2306
2704
|
* @type {Array<ResolvePage200ResponseDataManifestsActionsInner>}
|
|
2307
2705
|
* @memberof ResolvePage200ResponseDataManifests
|
|
2308
2706
|
*/
|
|
2309
|
-
|
|
2707
|
+
actions?: Array<ResolvePage200ResponseDataManifestsActionsInner>;
|
|
2310
2708
|
/**
|
|
2311
2709
|
* 查询资源清单
|
|
2312
2710
|
* @type {Array<ResolvePage200ResponseDataManifestsQueriesInner>}
|
|
2313
2711
|
* @memberof ResolvePage200ResponseDataManifests
|
|
2314
2712
|
*/
|
|
2315
|
-
|
|
2713
|
+
queries?: Array<ResolvePage200ResponseDataManifestsQueriesInner>;
|
|
2316
2714
|
}
|
|
2715
|
+
/**
|
|
2716
|
+
* Check if a given object implements the ResolvePage200ResponseDataManifests interface.
|
|
2717
|
+
*/
|
|
2718
|
+
declare function instanceOfResolvePage200ResponseDataManifests(value: object): boolean;
|
|
2719
|
+
declare function ResolvePage200ResponseDataManifestsFromJSON(json: any): ResolvePage200ResponseDataManifests;
|
|
2720
|
+
declare function ResolvePage200ResponseDataManifestsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResolvePage200ResponseDataManifests;
|
|
2721
|
+
declare function ResolvePage200ResponseDataManifestsToJSON(value?: ResolvePage200ResponseDataManifests | null): any;
|
|
2317
2722
|
|
|
2318
2723
|
/**
|
|
2319
2724
|
* DJVLC User API
|
|
@@ -2338,34 +2743,41 @@ interface ResolvePage200ResponseData {
|
|
|
2338
2743
|
* @type {string}
|
|
2339
2744
|
* @memberof ResolvePage200ResponseData
|
|
2340
2745
|
*/
|
|
2341
|
-
|
|
2746
|
+
pageId: string;
|
|
2342
2747
|
/**
|
|
2343
2748
|
* 页面版本
|
|
2344
2749
|
* @type {string}
|
|
2345
2750
|
* @memberof ResolvePage200ResponseData
|
|
2346
2751
|
*/
|
|
2347
|
-
|
|
2752
|
+
version: string;
|
|
2348
2753
|
/**
|
|
2349
2754
|
* 解析后的页面 Schema
|
|
2350
2755
|
* @type {object}
|
|
2351
2756
|
* @memberof ResolvePage200ResponseData
|
|
2352
2757
|
*/
|
|
2353
|
-
|
|
2758
|
+
schema: object;
|
|
2354
2759
|
/**
|
|
2355
2760
|
*
|
|
2356
2761
|
* @type {ResolvePage200ResponseDataManifests}
|
|
2357
2762
|
* @memberof ResolvePage200ResponseData
|
|
2358
2763
|
*/
|
|
2359
|
-
|
|
2764
|
+
manifests?: ResolvePage200ResponseDataManifests;
|
|
2360
2765
|
/**
|
|
2361
2766
|
* 预取的数据
|
|
2362
2767
|
* @type {{ [key: string]: any; }}
|
|
2363
2768
|
* @memberof ResolvePage200ResponseData
|
|
2364
2769
|
*/
|
|
2365
|
-
|
|
2770
|
+
prefetchedData?: {
|
|
2366
2771
|
[key: string]: any;
|
|
2367
2772
|
};
|
|
2368
2773
|
}
|
|
2774
|
+
/**
|
|
2775
|
+
* Check if a given object implements the ResolvePage200ResponseData interface.
|
|
2776
|
+
*/
|
|
2777
|
+
declare function instanceOfResolvePage200ResponseData(value: object): boolean;
|
|
2778
|
+
declare function ResolvePage200ResponseDataFromJSON(json: any): ResolvePage200ResponseData;
|
|
2779
|
+
declare function ResolvePage200ResponseDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResolvePage200ResponseData;
|
|
2780
|
+
declare function ResolvePage200ResponseDataToJSON(value?: ResolvePage200ResponseData | null): any;
|
|
2369
2781
|
|
|
2370
2782
|
/**
|
|
2371
2783
|
* DJVLC User API
|
|
@@ -2390,8 +2802,15 @@ interface ResolvePage200Response {
|
|
|
2390
2802
|
* @type {ResolvePage200ResponseData}
|
|
2391
2803
|
* @memberof ResolvePage200Response
|
|
2392
2804
|
*/
|
|
2393
|
-
|
|
2805
|
+
data: ResolvePage200ResponseData;
|
|
2394
2806
|
}
|
|
2807
|
+
/**
|
|
2808
|
+
* Check if a given object implements the ResolvePage200Response interface.
|
|
2809
|
+
*/
|
|
2810
|
+
declare function instanceOfResolvePage200Response(value: object): boolean;
|
|
2811
|
+
declare function ResolvePage200ResponseFromJSON(json: any): ResolvePage200Response;
|
|
2812
|
+
declare function ResolvePage200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResolvePage200Response;
|
|
2813
|
+
declare function ResolvePage200ResponseToJSON(value?: ResolvePage200Response | null): any;
|
|
2395
2814
|
|
|
2396
2815
|
/**
|
|
2397
2816
|
* DJVLC User API
|
|
@@ -2415,20 +2834,27 @@ interface ResolvePageRequestOptions {
|
|
|
2415
2834
|
* @type {boolean}
|
|
2416
2835
|
* @memberof ResolvePageRequestOptions
|
|
2417
2836
|
*/
|
|
2418
|
-
|
|
2837
|
+
prefetchData?: boolean;
|
|
2419
2838
|
/**
|
|
2420
2839
|
* 是否包含资源清单
|
|
2421
2840
|
* @type {boolean}
|
|
2422
2841
|
* @memberof ResolvePageRequestOptions
|
|
2423
2842
|
*/
|
|
2424
|
-
|
|
2843
|
+
includeManifests?: boolean;
|
|
2425
2844
|
/**
|
|
2426
2845
|
* 语言环境
|
|
2427
2846
|
* @type {string}
|
|
2428
2847
|
* @memberof ResolvePageRequestOptions
|
|
2429
2848
|
*/
|
|
2430
|
-
|
|
2849
|
+
locale?: string;
|
|
2431
2850
|
}
|
|
2851
|
+
/**
|
|
2852
|
+
* Check if a given object implements the ResolvePageRequestOptions interface.
|
|
2853
|
+
*/
|
|
2854
|
+
declare function instanceOfResolvePageRequestOptions(value: object): boolean;
|
|
2855
|
+
declare function ResolvePageRequestOptionsFromJSON(json: any): ResolvePageRequestOptions;
|
|
2856
|
+
declare function ResolvePageRequestOptionsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResolvePageRequestOptions;
|
|
2857
|
+
declare function ResolvePageRequestOptionsToJSON(value?: ResolvePageRequestOptions | null): any;
|
|
2432
2858
|
|
|
2433
2859
|
/**
|
|
2434
2860
|
* DJVLC User API
|
|
@@ -2453,14 +2879,21 @@ interface ResolvePageRequest {
|
|
|
2453
2879
|
* @type {ResolvePageRequestContext}
|
|
2454
2880
|
* @memberof ResolvePageRequest
|
|
2455
2881
|
*/
|
|
2456
|
-
|
|
2882
|
+
context?: ResolvePageRequestContext;
|
|
2457
2883
|
/**
|
|
2458
2884
|
*
|
|
2459
2885
|
* @type {ResolvePageRequestOptions}
|
|
2460
2886
|
* @memberof ResolvePageRequest
|
|
2461
2887
|
*/
|
|
2462
|
-
|
|
2888
|
+
options?: ResolvePageRequestOptions;
|
|
2463
2889
|
}
|
|
2890
|
+
/**
|
|
2891
|
+
* Check if a given object implements the ResolvePageRequest interface.
|
|
2892
|
+
*/
|
|
2893
|
+
declare function instanceOfResolvePageRequest(value: object): boolean;
|
|
2894
|
+
declare function ResolvePageRequestFromJSON(json: any): ResolvePageRequest;
|
|
2895
|
+
declare function ResolvePageRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResolvePageRequest;
|
|
2896
|
+
declare function ResolvePageRequestToJSON(value?: ResolvePageRequest | null): any;
|
|
2464
2897
|
|
|
2465
2898
|
/**
|
|
2466
2899
|
* DJVLC User API
|
|
@@ -2485,8 +2918,15 @@ interface ResolvePageResponse {
|
|
|
2485
2918
|
* @type {ResolvePage200ResponseData}
|
|
2486
2919
|
* @memberof ResolvePageResponse
|
|
2487
2920
|
*/
|
|
2488
|
-
|
|
2921
|
+
data: ResolvePage200ResponseData;
|
|
2489
2922
|
}
|
|
2923
|
+
/**
|
|
2924
|
+
* Check if a given object implements the ResolvePageResponse interface.
|
|
2925
|
+
*/
|
|
2926
|
+
declare function instanceOfResolvePageResponse(value: object): boolean;
|
|
2927
|
+
declare function ResolvePageResponseFromJSON(json: any): ResolvePageResponse;
|
|
2928
|
+
declare function ResolvePageResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResolvePageResponse;
|
|
2929
|
+
declare function ResolvePageResponseToJSON(value?: ResolvePageResponse | null): any;
|
|
2490
2930
|
|
|
2491
2931
|
/**
|
|
2492
2932
|
* DJVLC User API
|
|
@@ -2511,20 +2951,27 @@ interface ResourceManifests {
|
|
|
2511
2951
|
* @type {Array<ResolvePage200ResponseDataManifestsComponentsInner>}
|
|
2512
2952
|
* @memberof ResourceManifests
|
|
2513
2953
|
*/
|
|
2514
|
-
|
|
2954
|
+
components?: Array<ResolvePage200ResponseDataManifestsComponentsInner>;
|
|
2515
2955
|
/**
|
|
2516
2956
|
* 动作资源清单
|
|
2517
2957
|
* @type {Array<ResolvePage200ResponseDataManifestsActionsInner>}
|
|
2518
2958
|
* @memberof ResourceManifests
|
|
2519
2959
|
*/
|
|
2520
|
-
|
|
2960
|
+
actions?: Array<ResolvePage200ResponseDataManifestsActionsInner>;
|
|
2521
2961
|
/**
|
|
2522
2962
|
* 查询资源清单
|
|
2523
2963
|
* @type {Array<ResolvePage200ResponseDataManifestsQueriesInner>}
|
|
2524
2964
|
* @memberof ResourceManifests
|
|
2525
2965
|
*/
|
|
2526
|
-
|
|
2966
|
+
queries?: Array<ResolvePage200ResponseDataManifestsQueriesInner>;
|
|
2527
2967
|
}
|
|
2968
|
+
/**
|
|
2969
|
+
* Check if a given object implements the ResourceManifests interface.
|
|
2970
|
+
*/
|
|
2971
|
+
declare function instanceOfResourceManifests(value: object): boolean;
|
|
2972
|
+
declare function ResourceManifestsFromJSON(json: any): ResourceManifests;
|
|
2973
|
+
declare function ResourceManifestsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ResourceManifests;
|
|
2974
|
+
declare function ResourceManifestsToJSON(value?: ResourceManifests | null): any;
|
|
2528
2975
|
|
|
2529
2976
|
/**
|
|
2530
2977
|
* DJVLC User API
|
|
@@ -2549,33 +2996,40 @@ interface SigninCalendar {
|
|
|
2549
2996
|
* @type {number}
|
|
2550
2997
|
* @memberof SigninCalendar
|
|
2551
2998
|
*/
|
|
2552
|
-
|
|
2999
|
+
year: number;
|
|
2553
3000
|
/**
|
|
2554
3001
|
* 月份
|
|
2555
3002
|
* @type {number}
|
|
2556
3003
|
* @memberof SigninCalendar
|
|
2557
3004
|
*/
|
|
2558
|
-
|
|
3005
|
+
month: number;
|
|
2559
3006
|
/**
|
|
2560
3007
|
* 签到记录
|
|
2561
3008
|
* @type {Array<GetSigninCalendar200ResponseDataRecordsInner>}
|
|
2562
3009
|
* @memberof SigninCalendar
|
|
2563
3010
|
*/
|
|
2564
|
-
|
|
3011
|
+
records: Array<GetSigninCalendar200ResponseDataRecordsInner>;
|
|
2565
3012
|
/**
|
|
2566
3013
|
* 连续签到天数
|
|
2567
3014
|
* @type {number}
|
|
2568
3015
|
* @memberof SigninCalendar
|
|
2569
3016
|
*/
|
|
2570
|
-
|
|
3017
|
+
consecutiveDays?: number;
|
|
2571
3018
|
/**
|
|
2572
3019
|
* 本月签到总天数
|
|
2573
3020
|
* @type {number}
|
|
2574
3021
|
* @memberof SigninCalendar
|
|
2575
3022
|
*/
|
|
2576
|
-
|
|
3023
|
+
totalDays?: number;
|
|
2577
3024
|
}
|
|
2578
|
-
|
|
3025
|
+
/**
|
|
3026
|
+
* Check if a given object implements the SigninCalendar interface.
|
|
3027
|
+
*/
|
|
3028
|
+
declare function instanceOfSigninCalendar(value: object): boolean;
|
|
3029
|
+
declare function SigninCalendarFromJSON(json: any): SigninCalendar;
|
|
3030
|
+
declare function SigninCalendarFromJSONTyped(json: any, ignoreDiscriminator: boolean): SigninCalendar;
|
|
3031
|
+
declare function SigninCalendarToJSON(value?: SigninCalendar | null): any;
|
|
3032
|
+
|
|
2579
3033
|
/**
|
|
2580
3034
|
* DJVLC User API
|
|
2581
3035
|
* DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
|
|
@@ -2598,8 +3052,15 @@ interface Track202ResponseData {
|
|
|
2598
3052
|
* @type {string}
|
|
2599
3053
|
* @memberof Track202ResponseData
|
|
2600
3054
|
*/
|
|
2601
|
-
|
|
3055
|
+
eventId?: string;
|
|
2602
3056
|
}
|
|
3057
|
+
/**
|
|
3058
|
+
* Check if a given object implements the Track202ResponseData interface.
|
|
3059
|
+
*/
|
|
3060
|
+
declare function instanceOfTrack202ResponseData(value: object): boolean;
|
|
3061
|
+
declare function Track202ResponseDataFromJSON(json: any): Track202ResponseData;
|
|
3062
|
+
declare function Track202ResponseDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): Track202ResponseData;
|
|
3063
|
+
declare function Track202ResponseDataToJSON(value?: Track202ResponseData | null): any;
|
|
2603
3064
|
|
|
2604
3065
|
/**
|
|
2605
3066
|
* DJVLC User API
|
|
@@ -2624,14 +3085,21 @@ interface Track202Response {
|
|
|
2624
3085
|
* @type {boolean}
|
|
2625
3086
|
* @memberof Track202Response
|
|
2626
3087
|
*/
|
|
2627
|
-
|
|
3088
|
+
success?: boolean;
|
|
2628
3089
|
/**
|
|
2629
3090
|
*
|
|
2630
3091
|
* @type {Track202ResponseData}
|
|
2631
3092
|
* @memberof Track202Response
|
|
2632
3093
|
*/
|
|
2633
|
-
|
|
3094
|
+
data?: Track202ResponseData;
|
|
2634
3095
|
}
|
|
3096
|
+
/**
|
|
3097
|
+
* Check if a given object implements the Track202Response interface.
|
|
3098
|
+
*/
|
|
3099
|
+
declare function instanceOfTrack202Response(value: object): boolean;
|
|
3100
|
+
declare function Track202ResponseFromJSON(json: any): Track202Response;
|
|
3101
|
+
declare function Track202ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): Track202Response;
|
|
3102
|
+
declare function Track202ResponseToJSON(value?: Track202Response | null): any;
|
|
2635
3103
|
|
|
2636
3104
|
/**
|
|
2637
3105
|
* DJVLC User API
|
|
@@ -2655,14 +3123,21 @@ interface TrackBatch202ResponseDataErrorsInner {
|
|
|
2655
3123
|
* @type {number}
|
|
2656
3124
|
* @memberof TrackBatch202ResponseDataErrorsInner
|
|
2657
3125
|
*/
|
|
2658
|
-
|
|
3126
|
+
index?: number;
|
|
2659
3127
|
/**
|
|
2660
3128
|
*
|
|
2661
3129
|
* @type {string}
|
|
2662
3130
|
* @memberof TrackBatch202ResponseDataErrorsInner
|
|
2663
3131
|
*/
|
|
2664
|
-
|
|
3132
|
+
reason?: string;
|
|
2665
3133
|
}
|
|
3134
|
+
/**
|
|
3135
|
+
* Check if a given object implements the TrackBatch202ResponseDataErrorsInner interface.
|
|
3136
|
+
*/
|
|
3137
|
+
declare function instanceOfTrackBatch202ResponseDataErrorsInner(value: object): boolean;
|
|
3138
|
+
declare function TrackBatch202ResponseDataErrorsInnerFromJSON(json: any): TrackBatch202ResponseDataErrorsInner;
|
|
3139
|
+
declare function TrackBatch202ResponseDataErrorsInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): TrackBatch202ResponseDataErrorsInner;
|
|
3140
|
+
declare function TrackBatch202ResponseDataErrorsInnerToJSON(value?: TrackBatch202ResponseDataErrorsInner | null): any;
|
|
2666
3141
|
|
|
2667
3142
|
/**
|
|
2668
3143
|
* DJVLC User API
|
|
@@ -2687,20 +3162,27 @@ interface TrackBatch202ResponseData {
|
|
|
2687
3162
|
* @type {number}
|
|
2688
3163
|
* @memberof TrackBatch202ResponseData
|
|
2689
3164
|
*/
|
|
2690
|
-
|
|
3165
|
+
accepted?: number;
|
|
2691
3166
|
/**
|
|
2692
3167
|
* 拒绝的事件数量
|
|
2693
3168
|
* @type {number}
|
|
2694
3169
|
* @memberof TrackBatch202ResponseData
|
|
2695
3170
|
*/
|
|
2696
|
-
|
|
3171
|
+
rejected?: number;
|
|
2697
3172
|
/**
|
|
2698
3173
|
*
|
|
2699
3174
|
* @type {Array<TrackBatch202ResponseDataErrorsInner>}
|
|
2700
3175
|
* @memberof TrackBatch202ResponseData
|
|
2701
3176
|
*/
|
|
2702
|
-
|
|
3177
|
+
errors?: Array<TrackBatch202ResponseDataErrorsInner>;
|
|
2703
3178
|
}
|
|
3179
|
+
/**
|
|
3180
|
+
* Check if a given object implements the TrackBatch202ResponseData interface.
|
|
3181
|
+
*/
|
|
3182
|
+
declare function instanceOfTrackBatch202ResponseData(value: object): boolean;
|
|
3183
|
+
declare function TrackBatch202ResponseDataFromJSON(json: any): TrackBatch202ResponseData;
|
|
3184
|
+
declare function TrackBatch202ResponseDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): TrackBatch202ResponseData;
|
|
3185
|
+
declare function TrackBatch202ResponseDataToJSON(value?: TrackBatch202ResponseData | null): any;
|
|
2704
3186
|
|
|
2705
3187
|
/**
|
|
2706
3188
|
* DJVLC User API
|
|
@@ -2725,14 +3207,21 @@ interface TrackBatch202Response {
|
|
|
2725
3207
|
* @type {boolean}
|
|
2726
3208
|
* @memberof TrackBatch202Response
|
|
2727
3209
|
*/
|
|
2728
|
-
|
|
3210
|
+
success?: boolean;
|
|
2729
3211
|
/**
|
|
2730
3212
|
*
|
|
2731
3213
|
* @type {TrackBatch202ResponseData}
|
|
2732
3214
|
* @memberof TrackBatch202Response
|
|
2733
3215
|
*/
|
|
2734
|
-
|
|
3216
|
+
data?: TrackBatch202ResponseData;
|
|
2735
3217
|
}
|
|
3218
|
+
/**
|
|
3219
|
+
* Check if a given object implements the TrackBatch202Response interface.
|
|
3220
|
+
*/
|
|
3221
|
+
declare function instanceOfTrackBatch202Response(value: object): boolean;
|
|
3222
|
+
declare function TrackBatch202ResponseFromJSON(json: any): TrackBatch202Response;
|
|
3223
|
+
declare function TrackBatch202ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): TrackBatch202Response;
|
|
3224
|
+
declare function TrackBatch202ResponseToJSON(value?: TrackBatch202Response | null): any;
|
|
2736
3225
|
|
|
2737
3226
|
/**
|
|
2738
3227
|
* DJVLC User API
|
|
@@ -2756,26 +3245,33 @@ interface TrackRequestContext {
|
|
|
2756
3245
|
* @type {string}
|
|
2757
3246
|
* @memberof TrackRequestContext
|
|
2758
3247
|
*/
|
|
2759
|
-
|
|
3248
|
+
pageId?: string;
|
|
2760
3249
|
/**
|
|
2761
3250
|
*
|
|
2762
3251
|
* @type {string}
|
|
2763
3252
|
* @memberof TrackRequestContext
|
|
2764
3253
|
*/
|
|
2765
|
-
|
|
3254
|
+
componentId?: string;
|
|
2766
3255
|
/**
|
|
2767
3256
|
*
|
|
2768
3257
|
* @type {string}
|
|
2769
3258
|
* @memberof TrackRequestContext
|
|
2770
3259
|
*/
|
|
2771
|
-
|
|
3260
|
+
sessionId?: string;
|
|
2772
3261
|
/**
|
|
2773
3262
|
*
|
|
2774
3263
|
* @type {string}
|
|
2775
3264
|
* @memberof TrackRequestContext
|
|
2776
3265
|
*/
|
|
2777
|
-
|
|
3266
|
+
deviceType?: string;
|
|
2778
3267
|
}
|
|
3268
|
+
/**
|
|
3269
|
+
* Check if a given object implements the TrackRequestContext interface.
|
|
3270
|
+
*/
|
|
3271
|
+
declare function instanceOfTrackRequestContext(value: object): boolean;
|
|
3272
|
+
declare function TrackRequestContextFromJSON(json: any): TrackRequestContext;
|
|
3273
|
+
declare function TrackRequestContextFromJSONTyped(json: any, ignoreDiscriminator: boolean): TrackRequestContext;
|
|
3274
|
+
declare function TrackRequestContextToJSON(value?: TrackRequestContext | null): any;
|
|
2779
3275
|
|
|
2780
3276
|
/**
|
|
2781
3277
|
* DJVLC User API
|
|
@@ -2800,34 +3296,37 @@ interface TrackRequest {
|
|
|
2800
3296
|
* @type {string}
|
|
2801
3297
|
* @memberof TrackRequest
|
|
2802
3298
|
*/
|
|
2803
|
-
|
|
3299
|
+
eventName: string;
|
|
2804
3300
|
/**
|
|
2805
3301
|
* 事件类型
|
|
2806
3302
|
* @type {string}
|
|
2807
3303
|
* @memberof TrackRequest
|
|
2808
3304
|
*/
|
|
2809
|
-
|
|
3305
|
+
eventType?: TrackRequestEventTypeEnum;
|
|
2810
3306
|
/**
|
|
2811
3307
|
* 事件属性
|
|
2812
3308
|
* @type {{ [key: string]: any; }}
|
|
2813
3309
|
* @memberof TrackRequest
|
|
2814
3310
|
*/
|
|
2815
|
-
|
|
3311
|
+
properties?: {
|
|
2816
3312
|
[key: string]: any;
|
|
2817
3313
|
};
|
|
2818
3314
|
/**
|
|
2819
3315
|
* 事件时间(默认为服务器接收时间)
|
|
2820
|
-
* @type {
|
|
3316
|
+
* @type {Date}
|
|
2821
3317
|
* @memberof TrackRequest
|
|
2822
3318
|
*/
|
|
2823
|
-
|
|
3319
|
+
timestamp?: Date;
|
|
2824
3320
|
/**
|
|
2825
3321
|
*
|
|
2826
3322
|
* @type {TrackRequestContext}
|
|
2827
3323
|
* @memberof TrackRequest
|
|
2828
3324
|
*/
|
|
2829
|
-
|
|
3325
|
+
context?: TrackRequestContext;
|
|
2830
3326
|
}
|
|
3327
|
+
/**
|
|
3328
|
+
* @export
|
|
3329
|
+
*/
|
|
2831
3330
|
declare const TrackRequestEventTypeEnum: {
|
|
2832
3331
|
readonly PAGE_VIEW: "page_view";
|
|
2833
3332
|
readonly CLICK: "click";
|
|
@@ -2835,6 +3334,13 @@ declare const TrackRequestEventTypeEnum: {
|
|
|
2835
3334
|
readonly CUSTOM: "custom";
|
|
2836
3335
|
};
|
|
2837
3336
|
type TrackRequestEventTypeEnum = typeof TrackRequestEventTypeEnum[keyof typeof TrackRequestEventTypeEnum];
|
|
3337
|
+
/**
|
|
3338
|
+
* Check if a given object implements the TrackRequest interface.
|
|
3339
|
+
*/
|
|
3340
|
+
declare function instanceOfTrackRequest(value: object): boolean;
|
|
3341
|
+
declare function TrackRequestFromJSON(json: any): TrackRequest;
|
|
3342
|
+
declare function TrackRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): TrackRequest;
|
|
3343
|
+
declare function TrackRequestToJSON(value?: TrackRequest | null): any;
|
|
2838
3344
|
|
|
2839
3345
|
/**
|
|
2840
3346
|
* DJVLC User API
|
|
@@ -2859,8 +3365,15 @@ interface TrackBatchRequest {
|
|
|
2859
3365
|
* @type {Array<TrackRequest>}
|
|
2860
3366
|
* @memberof TrackBatchRequest
|
|
2861
3367
|
*/
|
|
2862
|
-
|
|
3368
|
+
events: Array<TrackRequest>;
|
|
2863
3369
|
}
|
|
3370
|
+
/**
|
|
3371
|
+
* Check if a given object implements the TrackBatchRequest interface.
|
|
3372
|
+
*/
|
|
3373
|
+
declare function instanceOfTrackBatchRequest(value: object): boolean;
|
|
3374
|
+
declare function TrackBatchRequestFromJSON(json: any): TrackBatchRequest;
|
|
3375
|
+
declare function TrackBatchRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): TrackBatchRequest;
|
|
3376
|
+
declare function TrackBatchRequestToJSON(value?: TrackBatchRequest | null): any;
|
|
2864
3377
|
|
|
2865
3378
|
/**
|
|
2866
3379
|
* DJVLC User API
|
|
@@ -2884,43 +3397,43 @@ interface UserActivityState {
|
|
|
2884
3397
|
* @type {string}
|
|
2885
3398
|
* @memberof UserActivityState
|
|
2886
3399
|
*/
|
|
2887
|
-
|
|
3400
|
+
activityId: string;
|
|
2888
3401
|
/**
|
|
2889
3402
|
* 用户 ID
|
|
2890
3403
|
* @type {string}
|
|
2891
3404
|
* @memberof UserActivityState
|
|
2892
3405
|
*/
|
|
2893
|
-
|
|
3406
|
+
userId: string;
|
|
2894
3407
|
/**
|
|
2895
3408
|
* 是否已参与
|
|
2896
3409
|
* @type {boolean}
|
|
2897
3410
|
* @memberof UserActivityState
|
|
2898
3411
|
*/
|
|
2899
|
-
|
|
3412
|
+
participated?: boolean;
|
|
2900
3413
|
/**
|
|
2901
3414
|
* 参与时间
|
|
2902
|
-
* @type {
|
|
3415
|
+
* @type {Date}
|
|
2903
3416
|
* @memberof UserActivityState
|
|
2904
3417
|
*/
|
|
2905
|
-
|
|
3418
|
+
participatedAt?: Date;
|
|
2906
3419
|
/**
|
|
2907
3420
|
* 剩余抽奖次数
|
|
2908
3421
|
* @type {number}
|
|
2909
3422
|
* @memberof UserActivityState
|
|
2910
3423
|
*/
|
|
2911
|
-
|
|
3424
|
+
remainingChances?: number;
|
|
2912
3425
|
/**
|
|
2913
3426
|
* 已获得奖励数
|
|
2914
3427
|
* @type {number}
|
|
2915
3428
|
* @memberof UserActivityState
|
|
2916
3429
|
*/
|
|
2917
|
-
|
|
3430
|
+
totalRewards?: number;
|
|
2918
3431
|
/**
|
|
2919
3432
|
* 活动进度
|
|
2920
3433
|
* @type {{ [key: string]: any; }}
|
|
2921
3434
|
* @memberof UserActivityState
|
|
2922
3435
|
*/
|
|
2923
|
-
|
|
3436
|
+
progress?: {
|
|
2924
3437
|
[key: string]: any;
|
|
2925
3438
|
};
|
|
2926
3439
|
/**
|
|
@@ -2928,10 +3441,17 @@ interface UserActivityState {
|
|
|
2928
3441
|
* @type {{ [key: string]: any; }}
|
|
2929
3442
|
* @memberof UserActivityState
|
|
2930
3443
|
*/
|
|
2931
|
-
|
|
3444
|
+
customData?: {
|
|
2932
3445
|
[key: string]: any;
|
|
2933
3446
|
};
|
|
2934
3447
|
}
|
|
3448
|
+
/**
|
|
3449
|
+
* Check if a given object implements the UserActivityState interface.
|
|
3450
|
+
*/
|
|
3451
|
+
declare function instanceOfUserActivityState(value: object): boolean;
|
|
3452
|
+
declare function UserActivityStateFromJSON(json: any): UserActivityState;
|
|
3453
|
+
declare function UserActivityStateFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserActivityState;
|
|
3454
|
+
declare function UserActivityStateToJSON(value?: UserActivityState | null): any;
|
|
2935
3455
|
|
|
2936
3456
|
/**
|
|
2937
3457
|
* DJVLC User API
|
|
@@ -2955,14 +3475,21 @@ interface ValidateActionParams200ResponseDataErrorsInner {
|
|
|
2955
3475
|
* @type {string}
|
|
2956
3476
|
* @memberof ValidateActionParams200ResponseDataErrorsInner
|
|
2957
3477
|
*/
|
|
2958
|
-
|
|
3478
|
+
path?: string;
|
|
2959
3479
|
/**
|
|
2960
3480
|
* 错误消息
|
|
2961
3481
|
* @type {string}
|
|
2962
3482
|
* @memberof ValidateActionParams200ResponseDataErrorsInner
|
|
2963
3483
|
*/
|
|
2964
|
-
|
|
3484
|
+
message?: string;
|
|
2965
3485
|
}
|
|
3486
|
+
/**
|
|
3487
|
+
* Check if a given object implements the ValidateActionParams200ResponseDataErrorsInner interface.
|
|
3488
|
+
*/
|
|
3489
|
+
declare function instanceOfValidateActionParams200ResponseDataErrorsInner(value: object): boolean;
|
|
3490
|
+
declare function ValidateActionParams200ResponseDataErrorsInnerFromJSON(json: any): ValidateActionParams200ResponseDataErrorsInner;
|
|
3491
|
+
declare function ValidateActionParams200ResponseDataErrorsInnerFromJSONTyped(json: any, ignoreDiscriminator: boolean): ValidateActionParams200ResponseDataErrorsInner;
|
|
3492
|
+
declare function ValidateActionParams200ResponseDataErrorsInnerToJSON(value?: ValidateActionParams200ResponseDataErrorsInner | null): any;
|
|
2966
3493
|
|
|
2967
3494
|
/**
|
|
2968
3495
|
* DJVLC User API
|
|
@@ -2987,14 +3514,21 @@ interface ValidateActionParams200ResponseData {
|
|
|
2987
3514
|
* @type {boolean}
|
|
2988
3515
|
* @memberof ValidateActionParams200ResponseData
|
|
2989
3516
|
*/
|
|
2990
|
-
|
|
3517
|
+
valid: boolean;
|
|
2991
3518
|
/**
|
|
2992
3519
|
* 验证错误
|
|
2993
3520
|
* @type {Array<ValidateActionParams200ResponseDataErrorsInner>}
|
|
2994
3521
|
* @memberof ValidateActionParams200ResponseData
|
|
2995
3522
|
*/
|
|
2996
|
-
|
|
3523
|
+
errors?: Array<ValidateActionParams200ResponseDataErrorsInner>;
|
|
2997
3524
|
}
|
|
3525
|
+
/**
|
|
3526
|
+
* Check if a given object implements the ValidateActionParams200ResponseData interface.
|
|
3527
|
+
*/
|
|
3528
|
+
declare function instanceOfValidateActionParams200ResponseData(value: object): boolean;
|
|
3529
|
+
declare function ValidateActionParams200ResponseDataFromJSON(json: any): ValidateActionParams200ResponseData;
|
|
3530
|
+
declare function ValidateActionParams200ResponseDataFromJSONTyped(json: any, ignoreDiscriminator: boolean): ValidateActionParams200ResponseData;
|
|
3531
|
+
declare function ValidateActionParams200ResponseDataToJSON(value?: ValidateActionParams200ResponseData | null): any;
|
|
2998
3532
|
|
|
2999
3533
|
/**
|
|
3000
3534
|
* DJVLC User API
|
|
@@ -3019,8 +3553,15 @@ interface ValidateActionParams200Response {
|
|
|
3019
3553
|
* @type {ValidateActionParams200ResponseData}
|
|
3020
3554
|
* @memberof ValidateActionParams200Response
|
|
3021
3555
|
*/
|
|
3022
|
-
|
|
3556
|
+
data: ValidateActionParams200ResponseData;
|
|
3023
3557
|
}
|
|
3558
|
+
/**
|
|
3559
|
+
* Check if a given object implements the ValidateActionParams200Response interface.
|
|
3560
|
+
*/
|
|
3561
|
+
declare function instanceOfValidateActionParams200Response(value: object): boolean;
|
|
3562
|
+
declare function ValidateActionParams200ResponseFromJSON(json: any): ValidateActionParams200Response;
|
|
3563
|
+
declare function ValidateActionParams200ResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ValidateActionParams200Response;
|
|
3564
|
+
declare function ValidateActionParams200ResponseToJSON(value?: ValidateActionParams200Response | null): any;
|
|
3024
3565
|
|
|
3025
3566
|
/**
|
|
3026
3567
|
* DJVLC User API
|
|
@@ -3044,10 +3585,17 @@ interface ValidateActionParamsRequest {
|
|
|
3044
3585
|
* @type {{ [key: string]: any; }}
|
|
3045
3586
|
* @memberof ValidateActionParamsRequest
|
|
3046
3587
|
*/
|
|
3047
|
-
|
|
3588
|
+
params: {
|
|
3048
3589
|
[key: string]: any;
|
|
3049
3590
|
};
|
|
3050
3591
|
}
|
|
3592
|
+
/**
|
|
3593
|
+
* Check if a given object implements the ValidateActionParamsRequest interface.
|
|
3594
|
+
*/
|
|
3595
|
+
declare function instanceOfValidateActionParamsRequest(value: object): boolean;
|
|
3596
|
+
declare function ValidateActionParamsRequestFromJSON(json: any): ValidateActionParamsRequest;
|
|
3597
|
+
declare function ValidateActionParamsRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ValidateActionParamsRequest;
|
|
3598
|
+
declare function ValidateActionParamsRequestToJSON(value?: ValidateActionParamsRequest | null): any;
|
|
3051
3599
|
|
|
3052
3600
|
/**
|
|
3053
3601
|
* DJVLC User API
|
|
@@ -3071,10 +3619,17 @@ interface ValidateActionRequest {
|
|
|
3071
3619
|
* @type {{ [key: string]: any; }}
|
|
3072
3620
|
* @memberof ValidateActionRequest
|
|
3073
3621
|
*/
|
|
3074
|
-
|
|
3622
|
+
params: {
|
|
3075
3623
|
[key: string]: any;
|
|
3076
3624
|
};
|
|
3077
3625
|
}
|
|
3626
|
+
/**
|
|
3627
|
+
* Check if a given object implements the ValidateActionRequest interface.
|
|
3628
|
+
*/
|
|
3629
|
+
declare function instanceOfValidateActionRequest(value: object): boolean;
|
|
3630
|
+
declare function ValidateActionRequestFromJSON(json: any): ValidateActionRequest;
|
|
3631
|
+
declare function ValidateActionRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): ValidateActionRequest;
|
|
3632
|
+
declare function ValidateActionRequestToJSON(value?: ValidateActionRequest | null): any;
|
|
3078
3633
|
|
|
3079
3634
|
/**
|
|
3080
3635
|
* DJVLC User API
|
|
@@ -3099,248 +3654,574 @@ interface ValidateActionResponse {
|
|
|
3099
3654
|
* @type {ValidateActionParams200ResponseData}
|
|
3100
3655
|
* @memberof ValidateActionResponse
|
|
3101
3656
|
*/
|
|
3102
|
-
|
|
3657
|
+
data: ValidateActionParams200ResponseData;
|
|
3103
3658
|
}
|
|
3659
|
+
/**
|
|
3660
|
+
* Check if a given object implements the ValidateActionResponse interface.
|
|
3661
|
+
*/
|
|
3662
|
+
declare function instanceOfValidateActionResponse(value: object): boolean;
|
|
3663
|
+
declare function ValidateActionResponseFromJSON(json: any): ValidateActionResponse;
|
|
3664
|
+
declare function ValidateActionResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ValidateActionResponse;
|
|
3665
|
+
declare function ValidateActionResponseToJSON(value?: ValidateActionResponse | null): any;
|
|
3666
|
+
|
|
3667
|
+
/**
|
|
3668
|
+
* DJVLC User API
|
|
3669
|
+
* DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
|
|
3670
|
+
*
|
|
3671
|
+
* The version of the OpenAPI document: 1.0.0
|
|
3672
|
+
* Contact: dev@djvlc.com
|
|
3673
|
+
*
|
|
3674
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3675
|
+
* https://openapi-generator.tech
|
|
3676
|
+
* Do not edit the class manually.
|
|
3677
|
+
*/
|
|
3104
3678
|
|
|
3679
|
+
interface ExecuteActionOperationRequest {
|
|
3680
|
+
actionId: string;
|
|
3681
|
+
executeActionRequest: ExecuteActionRequest;
|
|
3682
|
+
}
|
|
3683
|
+
interface ValidateActionParamsOperationRequest {
|
|
3684
|
+
actionId: string;
|
|
3685
|
+
validateActionParamsRequest: ValidateActionParamsRequest;
|
|
3686
|
+
}
|
|
3105
3687
|
/**
|
|
3106
|
-
*
|
|
3688
|
+
* ActionsApi - interface
|
|
3689
|
+
*
|
|
3107
3690
|
* @export
|
|
3108
|
-
* @interface
|
|
3691
|
+
* @interface ActionsApiInterface
|
|
3109
3692
|
*/
|
|
3110
|
-
interface
|
|
3693
|
+
interface ActionsApiInterface {
|
|
3111
3694
|
/**
|
|
3112
|
-
*
|
|
3113
|
-
* @
|
|
3114
|
-
* @
|
|
3695
|
+
* 执行指定的动作,返回执行结果。 支持: - 自定义动作(通过 actionDefinitionVersionId) - 内置动作(setState, navigate, etc.)
|
|
3696
|
+
* @summary 执行动作
|
|
3697
|
+
* @param {string} actionId 动作 ID 或动作定义版本 ID
|
|
3698
|
+
* @param {ExecuteActionRequest} executeActionRequest
|
|
3699
|
+
* @param {*} [options] Override http request option.
|
|
3700
|
+
* @throws {RequiredError}
|
|
3701
|
+
* @memberof ActionsApiInterface
|
|
3115
3702
|
*/
|
|
3116
|
-
|
|
3703
|
+
executeActionRaw(requestParameters: ExecuteActionOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ExecuteAction200Response>>;
|
|
3117
3704
|
/**
|
|
3118
|
-
*
|
|
3119
|
-
*
|
|
3120
|
-
|
|
3705
|
+
* 执行指定的动作,返回执行结果。 支持: - 自定义动作(通过 actionDefinitionVersionId) - 内置动作(setState, navigate, etc.)
|
|
3706
|
+
* 执行动作
|
|
3707
|
+
*/
|
|
3708
|
+
executeAction(requestParameters: ExecuteActionOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ExecuteAction200Response>;
|
|
3709
|
+
/**
|
|
3710
|
+
* 验证动作参数是否符合 Schema 定义(不执行动作)
|
|
3711
|
+
* @summary 验证动作参数
|
|
3712
|
+
* @param {string} actionId 动作 ID 或动作定义版本 ID
|
|
3713
|
+
* @param {ValidateActionParamsRequest} validateActionParamsRequest
|
|
3714
|
+
* @param {*} [options] Override http request option.
|
|
3715
|
+
* @throws {RequiredError}
|
|
3716
|
+
* @memberof ActionsApiInterface
|
|
3121
3717
|
*/
|
|
3122
|
-
|
|
3718
|
+
validateActionParamsRaw(requestParameters: ValidateActionParamsOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ValidateActionParams200Response>>;
|
|
3719
|
+
/**
|
|
3720
|
+
* 验证动作参数是否符合 Schema 定义(不执行动作)
|
|
3721
|
+
* 验证动作参数
|
|
3722
|
+
*/
|
|
3723
|
+
validateActionParams(requestParameters: ValidateActionParamsOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ValidateActionParams200Response>;
|
|
3123
3724
|
}
|
|
3124
3725
|
/**
|
|
3125
|
-
*
|
|
3126
|
-
* @export
|
|
3127
|
-
* @interface ActionsApiValidateActionParamsRequest
|
|
3726
|
+
*
|
|
3128
3727
|
*/
|
|
3129
|
-
|
|
3728
|
+
declare class ActionsApi extends BaseAPI implements ActionsApiInterface {
|
|
3130
3729
|
/**
|
|
3131
|
-
*
|
|
3132
|
-
*
|
|
3133
|
-
* @memberof ActionsApiValidateActionParams
|
|
3730
|
+
* 执行指定的动作,返回执行结果。 支持: - 自定义动作(通过 actionDefinitionVersionId) - 内置动作(setState, navigate, etc.)
|
|
3731
|
+
* 执行动作
|
|
3134
3732
|
*/
|
|
3135
|
-
|
|
3733
|
+
executeActionRaw(requestParameters: ExecuteActionOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ExecuteAction200Response>>;
|
|
3136
3734
|
/**
|
|
3137
|
-
*
|
|
3138
|
-
*
|
|
3139
|
-
|
|
3735
|
+
* 执行指定的动作,返回执行结果。 支持: - 自定义动作(通过 actionDefinitionVersionId) - 内置动作(setState, navigate, etc.)
|
|
3736
|
+
* 执行动作
|
|
3737
|
+
*/
|
|
3738
|
+
executeAction(requestParameters: ExecuteActionOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ExecuteAction200Response>;
|
|
3739
|
+
/**
|
|
3740
|
+
* 验证动作参数是否符合 Schema 定义(不执行动作)
|
|
3741
|
+
* 验证动作参数
|
|
3742
|
+
*/
|
|
3743
|
+
validateActionParamsRaw(requestParameters: ValidateActionParamsOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ValidateActionParams200Response>>;
|
|
3744
|
+
/**
|
|
3745
|
+
* 验证动作参数是否符合 Schema 定义(不执行动作)
|
|
3746
|
+
* 验证动作参数
|
|
3140
3747
|
*/
|
|
3141
|
-
|
|
3748
|
+
validateActionParams(requestParameters: ValidateActionParamsOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ValidateActionParams200Response>;
|
|
3749
|
+
}
|
|
3750
|
+
|
|
3751
|
+
/**
|
|
3752
|
+
* DJVLC User API
|
|
3753
|
+
* DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
|
|
3754
|
+
*
|
|
3755
|
+
* The version of the OpenAPI document: 1.0.0
|
|
3756
|
+
* Contact: dev@djvlc.com
|
|
3757
|
+
*
|
|
3758
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3759
|
+
* https://openapi-generator.tech
|
|
3760
|
+
* Do not edit the class manually.
|
|
3761
|
+
*/
|
|
3762
|
+
|
|
3763
|
+
interface GetActivityInfoRequest {
|
|
3764
|
+
activityId: string;
|
|
3765
|
+
}
|
|
3766
|
+
interface GetActivityStateRequest {
|
|
3767
|
+
activityId: string;
|
|
3768
|
+
}
|
|
3769
|
+
interface GetClaimRecordsRequest {
|
|
3770
|
+
activityId: string;
|
|
3771
|
+
pageSize?: number;
|
|
3772
|
+
pageToken?: string;
|
|
3773
|
+
}
|
|
3774
|
+
interface GetLotteryRecordsRequest {
|
|
3775
|
+
activityId: string;
|
|
3776
|
+
pageSize?: number;
|
|
3777
|
+
pageToken?: string;
|
|
3778
|
+
}
|
|
3779
|
+
interface GetSigninCalendarRequest {
|
|
3780
|
+
activityId: string;
|
|
3781
|
+
month?: string;
|
|
3142
3782
|
}
|
|
3143
3783
|
/**
|
|
3144
|
-
*
|
|
3784
|
+
* ActivitiesApi - interface
|
|
3785
|
+
*
|
|
3145
3786
|
* @export
|
|
3146
|
-
* @
|
|
3147
|
-
* @extends {BaseAPI}
|
|
3787
|
+
* @interface ActivitiesApiInterface
|
|
3148
3788
|
*/
|
|
3149
|
-
|
|
3789
|
+
interface ActivitiesApiInterface {
|
|
3150
3790
|
/**
|
|
3151
|
-
*
|
|
3152
|
-
* @summary
|
|
3153
|
-
* @param {
|
|
3791
|
+
* 获取活动的公开信息,不需要登录。 返回内容包括: - 活动基本信息 - 时间范围 - 奖品列表(脱敏)
|
|
3792
|
+
* @summary 获取活动信息(公开)
|
|
3793
|
+
* @param {string} activityId
|
|
3154
3794
|
* @param {*} [options] Override http request option.
|
|
3155
3795
|
* @throws {RequiredError}
|
|
3156
|
-
* @memberof
|
|
3796
|
+
* @memberof ActivitiesApiInterface
|
|
3157
3797
|
*/
|
|
3158
|
-
|
|
3798
|
+
getActivityInfoRaw(requestParameters: GetActivityInfoRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetActivityInfo200Response>>;
|
|
3159
3799
|
/**
|
|
3160
|
-
*
|
|
3161
|
-
*
|
|
3162
|
-
|
|
3800
|
+
* 获取活动的公开信息,不需要登录。 返回内容包括: - 活动基本信息 - 时间范围 - 奖品列表(脱敏)
|
|
3801
|
+
* 获取活动信息(公开)
|
|
3802
|
+
*/
|
|
3803
|
+
getActivityInfo(requestParameters: GetActivityInfoRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetActivityInfo200Response>;
|
|
3804
|
+
/**
|
|
3805
|
+
* 查询用户在指定活动中的参与状态。 返回内容包括: - 是否可参与 - 剩余次数 - 类型特定状态(领取/签到/抽奖等)
|
|
3806
|
+
* @summary 获取用户活动状态
|
|
3807
|
+
* @param {string} activityId
|
|
3163
3808
|
* @param {*} [options] Override http request option.
|
|
3164
3809
|
* @throws {RequiredError}
|
|
3165
|
-
* @memberof
|
|
3810
|
+
* @memberof ActivitiesApiInterface
|
|
3166
3811
|
*/
|
|
3167
|
-
|
|
3168
|
-
}
|
|
3169
|
-
|
|
3170
|
-
/**
|
|
3171
|
-
* Request parameters for getPage operation in PagesApi.
|
|
3172
|
-
* @export
|
|
3173
|
-
* @interface PagesApiGetPageRequest
|
|
3174
|
-
*/
|
|
3175
|
-
interface PagesApiGetPageRequest {
|
|
3812
|
+
getActivityStateRaw(requestParameters: GetActivityStateRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetActivityState200Response>>;
|
|
3176
3813
|
/**
|
|
3177
|
-
*
|
|
3178
|
-
*
|
|
3179
|
-
* @memberof PagesApiGetPage
|
|
3814
|
+
* 查询用户在指定活动中的参与状态。 返回内容包括: - 是否可参与 - 剩余次数 - 类型特定状态(领取/签到/抽奖等)
|
|
3815
|
+
* 获取用户活动状态
|
|
3180
3816
|
*/
|
|
3181
|
-
|
|
3817
|
+
getActivityState(requestParameters: GetActivityStateRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetActivityState200Response>;
|
|
3182
3818
|
/**
|
|
3183
|
-
*
|
|
3184
|
-
* @
|
|
3185
|
-
* @
|
|
3819
|
+
* 获取用户在指定活动中的领取记录
|
|
3820
|
+
* @summary 获取领取记录
|
|
3821
|
+
* @param {string} activityId
|
|
3822
|
+
* @param {number} [pageSize]
|
|
3823
|
+
* @param {string} [pageToken]
|
|
3824
|
+
* @param {*} [options] Override http request option.
|
|
3825
|
+
* @throws {RequiredError}
|
|
3826
|
+
* @memberof ActivitiesApiInterface
|
|
3827
|
+
*/
|
|
3828
|
+
getClaimRecordsRaw(requestParameters: GetClaimRecordsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetClaimRecords200Response>>;
|
|
3829
|
+
/**
|
|
3830
|
+
* 获取用户在指定活动中的领取记录
|
|
3831
|
+
* 获取领取记录
|
|
3832
|
+
*/
|
|
3833
|
+
getClaimRecords(requestParameters: GetClaimRecordsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetClaimRecords200Response>;
|
|
3834
|
+
/**
|
|
3835
|
+
* 获取用户在指定活动中的抽奖记录
|
|
3836
|
+
* @summary 获取抽奖记录
|
|
3837
|
+
* @param {string} activityId
|
|
3838
|
+
* @param {number} [pageSize]
|
|
3839
|
+
* @param {string} [pageToken]
|
|
3840
|
+
* @param {*} [options] Override http request option.
|
|
3841
|
+
* @throws {RequiredError}
|
|
3842
|
+
* @memberof ActivitiesApiInterface
|
|
3843
|
+
*/
|
|
3844
|
+
getLotteryRecordsRaw(requestParameters: GetLotteryRecordsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetLotteryRecords200Response>>;
|
|
3845
|
+
/**
|
|
3846
|
+
* 获取用户在指定活动中的抽奖记录
|
|
3847
|
+
* 获取抽奖记录
|
|
3848
|
+
*/
|
|
3849
|
+
getLotteryRecords(requestParameters: GetLotteryRecordsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetLotteryRecords200Response>;
|
|
3850
|
+
/**
|
|
3851
|
+
* 获取用户的签到日历数据。 返回内容包括: - 当前周期的签到记录 - 连续签到天数 - 累计签到天数 - 奖励进度
|
|
3852
|
+
* @summary 获取签到日历
|
|
3853
|
+
* @param {string} activityId
|
|
3854
|
+
* @param {string} [month] 月份(YYYY-MM),默认当前月
|
|
3855
|
+
* @param {*} [options] Override http request option.
|
|
3856
|
+
* @throws {RequiredError}
|
|
3857
|
+
* @memberof ActivitiesApiInterface
|
|
3186
3858
|
*/
|
|
3187
|
-
|
|
3859
|
+
getSigninCalendarRaw(requestParameters: GetSigninCalendarRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetSigninCalendar200Response>>;
|
|
3860
|
+
/**
|
|
3861
|
+
* 获取用户的签到日历数据。 返回内容包括: - 当前周期的签到记录 - 连续签到天数 - 累计签到天数 - 奖励进度
|
|
3862
|
+
* 获取签到日历
|
|
3863
|
+
*/
|
|
3864
|
+
getSigninCalendar(requestParameters: GetSigninCalendarRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetSigninCalendar200Response>;
|
|
3188
3865
|
}
|
|
3189
3866
|
/**
|
|
3190
|
-
*
|
|
3191
|
-
* @export
|
|
3192
|
-
* @interface PagesApiResolvePageRequest
|
|
3867
|
+
*
|
|
3193
3868
|
*/
|
|
3194
|
-
|
|
3869
|
+
declare class ActivitiesApi extends BaseAPI implements ActivitiesApiInterface {
|
|
3195
3870
|
/**
|
|
3196
|
-
*
|
|
3197
|
-
*
|
|
3198
|
-
* @memberof PagesApiResolvePage
|
|
3871
|
+
* 获取活动的公开信息,不需要登录。 返回内容包括: - 活动基本信息 - 时间范围 - 奖品列表(脱敏)
|
|
3872
|
+
* 获取活动信息(公开)
|
|
3199
3873
|
*/
|
|
3200
|
-
|
|
3874
|
+
getActivityInfoRaw(requestParameters: GetActivityInfoRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetActivityInfo200Response>>;
|
|
3201
3875
|
/**
|
|
3202
|
-
*
|
|
3203
|
-
*
|
|
3204
|
-
* @memberof PagesApiResolvePage
|
|
3876
|
+
* 获取活动的公开信息,不需要登录。 返回内容包括: - 活动基本信息 - 时间范围 - 奖品列表(脱敏)
|
|
3877
|
+
* 获取活动信息(公开)
|
|
3205
3878
|
*/
|
|
3206
|
-
|
|
3879
|
+
getActivityInfo(requestParameters: GetActivityInfoRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetActivityInfo200Response>;
|
|
3880
|
+
/**
|
|
3881
|
+
* 查询用户在指定活动中的参与状态。 返回内容包括: - 是否可参与 - 剩余次数 - 类型特定状态(领取/签到/抽奖等)
|
|
3882
|
+
* 获取用户活动状态
|
|
3883
|
+
*/
|
|
3884
|
+
getActivityStateRaw(requestParameters: GetActivityStateRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetActivityState200Response>>;
|
|
3885
|
+
/**
|
|
3886
|
+
* 查询用户在指定活动中的参与状态。 返回内容包括: - 是否可参与 - 剩余次数 - 类型特定状态(领取/签到/抽奖等)
|
|
3887
|
+
* 获取用户活动状态
|
|
3888
|
+
*/
|
|
3889
|
+
getActivityState(requestParameters: GetActivityStateRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetActivityState200Response>;
|
|
3890
|
+
/**
|
|
3891
|
+
* 获取用户在指定活动中的领取记录
|
|
3892
|
+
* 获取领取记录
|
|
3893
|
+
*/
|
|
3894
|
+
getClaimRecordsRaw(requestParameters: GetClaimRecordsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetClaimRecords200Response>>;
|
|
3895
|
+
/**
|
|
3896
|
+
* 获取用户在指定活动中的领取记录
|
|
3897
|
+
* 获取领取记录
|
|
3898
|
+
*/
|
|
3899
|
+
getClaimRecords(requestParameters: GetClaimRecordsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetClaimRecords200Response>;
|
|
3900
|
+
/**
|
|
3901
|
+
* 获取用户在指定活动中的抽奖记录
|
|
3902
|
+
* 获取抽奖记录
|
|
3903
|
+
*/
|
|
3904
|
+
getLotteryRecordsRaw(requestParameters: GetLotteryRecordsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetLotteryRecords200Response>>;
|
|
3905
|
+
/**
|
|
3906
|
+
* 获取用户在指定活动中的抽奖记录
|
|
3907
|
+
* 获取抽奖记录
|
|
3908
|
+
*/
|
|
3909
|
+
getLotteryRecords(requestParameters: GetLotteryRecordsRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetLotteryRecords200Response>;
|
|
3910
|
+
/**
|
|
3911
|
+
* 获取用户的签到日历数据。 返回内容包括: - 当前周期的签到记录 - 连续签到天数 - 累计签到天数 - 奖励进度
|
|
3912
|
+
* 获取签到日历
|
|
3913
|
+
*/
|
|
3914
|
+
getSigninCalendarRaw(requestParameters: GetSigninCalendarRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetSigninCalendar200Response>>;
|
|
3915
|
+
/**
|
|
3916
|
+
* 获取用户的签到日历数据。 返回内容包括: - 当前周期的签到记录 - 连续签到天数 - 累计签到天数 - 奖励进度
|
|
3917
|
+
* 获取签到日历
|
|
3918
|
+
*/
|
|
3919
|
+
getSigninCalendar(requestParameters: GetSigninCalendarRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetSigninCalendar200Response>;
|
|
3920
|
+
}
|
|
3921
|
+
|
|
3922
|
+
/**
|
|
3923
|
+
* DJVLC User API
|
|
3924
|
+
* DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
|
|
3925
|
+
*
|
|
3926
|
+
* The version of the OpenAPI document: 1.0.0
|
|
3927
|
+
* Contact: dev@djvlc.com
|
|
3928
|
+
*
|
|
3929
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
3930
|
+
* https://openapi-generator.tech
|
|
3931
|
+
* Do not edit the class manually.
|
|
3932
|
+
*/
|
|
3933
|
+
|
|
3934
|
+
interface GetPageRequest {
|
|
3935
|
+
pageId: string;
|
|
3936
|
+
version?: string;
|
|
3937
|
+
}
|
|
3938
|
+
interface ResolvePageOperationRequest {
|
|
3939
|
+
pageId: string;
|
|
3940
|
+
resolvePageRequest: ResolvePageRequest;
|
|
3207
3941
|
}
|
|
3208
3942
|
/**
|
|
3209
|
-
* PagesApi -
|
|
3943
|
+
* PagesApi - interface
|
|
3944
|
+
*
|
|
3210
3945
|
* @export
|
|
3211
|
-
* @
|
|
3212
|
-
* @extends {BaseAPI}
|
|
3946
|
+
* @interface PagesApiInterface
|
|
3213
3947
|
*/
|
|
3214
|
-
|
|
3948
|
+
interface PagesApiInterface {
|
|
3215
3949
|
/**
|
|
3216
3950
|
* 获取指定页面的基本信息和元数据
|
|
3217
3951
|
* @summary 获取页面
|
|
3218
|
-
* @param {
|
|
3952
|
+
* @param {string} pageId 页面 ID
|
|
3953
|
+
* @param {string} [version] 指定版本号(可选,默认最新版本)
|
|
3219
3954
|
* @param {*} [options] Override http request option.
|
|
3220
3955
|
* @throws {RequiredError}
|
|
3221
|
-
* @memberof
|
|
3956
|
+
* @memberof PagesApiInterface
|
|
3222
3957
|
*/
|
|
3223
|
-
|
|
3958
|
+
getPageRaw(requestParameters: GetPageRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetPage200Response>>;
|
|
3959
|
+
/**
|
|
3960
|
+
* 获取指定页面的基本信息和元数据
|
|
3961
|
+
* 获取页面
|
|
3962
|
+
*/
|
|
3963
|
+
getPage(requestParameters: GetPageRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetPage200Response>;
|
|
3224
3964
|
/**
|
|
3225
3965
|
* 解析页面 Schema,返回完整的渲染数据。 包括: - 解析后的页面 Schema - 组件资源清单 - 预取的数据查询结果 - 动作资源清单
|
|
3226
3966
|
* @summary 解析页面
|
|
3227
|
-
* @param {
|
|
3967
|
+
* @param {string} pageId 页面 ID
|
|
3968
|
+
* @param {ResolvePageRequest} resolvePageRequest
|
|
3228
3969
|
* @param {*} [options] Override http request option.
|
|
3229
3970
|
* @throws {RequiredError}
|
|
3230
|
-
* @memberof
|
|
3971
|
+
* @memberof PagesApiInterface
|
|
3972
|
+
*/
|
|
3973
|
+
resolvePageRaw(requestParameters: ResolvePageOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ResolvePage200Response>>;
|
|
3974
|
+
/**
|
|
3975
|
+
* 解析页面 Schema,返回完整的渲染数据。 包括: - 解析后的页面 Schema - 组件资源清单 - 预取的数据查询结果 - 动作资源清单
|
|
3976
|
+
* 解析页面
|
|
3231
3977
|
*/
|
|
3232
|
-
resolvePage(requestParameters:
|
|
3978
|
+
resolvePage(requestParameters: ResolvePageOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ResolvePage200Response>;
|
|
3233
3979
|
}
|
|
3234
|
-
|
|
3235
3980
|
/**
|
|
3236
|
-
*
|
|
3237
|
-
* @export
|
|
3238
|
-
* @interface QueriesApiExecuteQueryRequest
|
|
3981
|
+
*
|
|
3239
3982
|
*/
|
|
3240
|
-
|
|
3983
|
+
declare class PagesApi extends BaseAPI implements PagesApiInterface {
|
|
3241
3984
|
/**
|
|
3242
|
-
*
|
|
3243
|
-
*
|
|
3244
|
-
* @memberof QueriesApiExecuteQuery
|
|
3985
|
+
* 获取指定页面的基本信息和元数据
|
|
3986
|
+
* 获取页面
|
|
3245
3987
|
*/
|
|
3246
|
-
|
|
3988
|
+
getPageRaw(requestParameters: GetPageRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<GetPage200Response>>;
|
|
3247
3989
|
/**
|
|
3248
|
-
*
|
|
3249
|
-
*
|
|
3250
|
-
* @memberof QueriesApiExecuteQuery
|
|
3990
|
+
* 获取指定页面的基本信息和元数据
|
|
3991
|
+
* 获取页面
|
|
3251
3992
|
*/
|
|
3252
|
-
|
|
3993
|
+
getPage(requestParameters: GetPageRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<GetPage200Response>;
|
|
3994
|
+
/**
|
|
3995
|
+
* 解析页面 Schema,返回完整的渲染数据。 包括: - 解析后的页面 Schema - 组件资源清单 - 预取的数据查询结果 - 动作资源清单
|
|
3996
|
+
* 解析页面
|
|
3997
|
+
*/
|
|
3998
|
+
resolvePageRaw(requestParameters: ResolvePageOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ResolvePage200Response>>;
|
|
3999
|
+
/**
|
|
4000
|
+
* 解析页面 Schema,返回完整的渲染数据。 包括: - 解析后的页面 Schema - 组件资源清单 - 预取的数据查询结果 - 动作资源清单
|
|
4001
|
+
* 解析页面
|
|
4002
|
+
*/
|
|
4003
|
+
resolvePage(requestParameters: ResolvePageOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ResolvePage200Response>;
|
|
4004
|
+
}
|
|
4005
|
+
|
|
4006
|
+
/**
|
|
4007
|
+
* DJVLC User API
|
|
4008
|
+
* DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
|
|
4009
|
+
*
|
|
4010
|
+
* The version of the OpenAPI document: 1.0.0
|
|
4011
|
+
* Contact: dev@djvlc.com
|
|
4012
|
+
*
|
|
4013
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4014
|
+
* https://openapi-generator.tech
|
|
4015
|
+
* Do not edit the class manually.
|
|
4016
|
+
*/
|
|
4017
|
+
|
|
4018
|
+
interface ExecuteQueryOperationRequest {
|
|
4019
|
+
queryId: string;
|
|
4020
|
+
executeQueryRequest: ExecuteQueryRequest;
|
|
3253
4021
|
}
|
|
3254
4022
|
/**
|
|
3255
|
-
* QueriesApi -
|
|
4023
|
+
* QueriesApi - interface
|
|
4024
|
+
*
|
|
3256
4025
|
* @export
|
|
3257
|
-
* @
|
|
3258
|
-
* @extends {BaseAPI}
|
|
4026
|
+
* @interface QueriesApiInterface
|
|
3259
4027
|
*/
|
|
3260
|
-
|
|
4028
|
+
interface QueriesApiInterface {
|
|
3261
4029
|
/**
|
|
3262
4030
|
* 执行指定的数据查询,返回查询结果。 支持: - 参数化查询 - 结果缓存 - 分页
|
|
3263
4031
|
* @summary 执行数据查询
|
|
3264
|
-
* @param {
|
|
4032
|
+
* @param {string} queryId 查询 ID 或查询定义版本 ID
|
|
4033
|
+
* @param {ExecuteQueryRequest} executeQueryRequest
|
|
3265
4034
|
* @param {*} [options] Override http request option.
|
|
3266
4035
|
* @throws {RequiredError}
|
|
3267
|
-
* @memberof
|
|
4036
|
+
* @memberof QueriesApiInterface
|
|
4037
|
+
*/
|
|
4038
|
+
executeQueryRaw(requestParameters: ExecuteQueryOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ExecuteQuery200Response>>;
|
|
4039
|
+
/**
|
|
4040
|
+
* 执行指定的数据查询,返回查询结果。 支持: - 参数化查询 - 结果缓存 - 分页
|
|
4041
|
+
* 执行数据查询
|
|
4042
|
+
*/
|
|
4043
|
+
executeQuery(requestParameters: ExecuteQueryOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ExecuteQuery200Response>;
|
|
4044
|
+
}
|
|
4045
|
+
/**
|
|
4046
|
+
*
|
|
4047
|
+
*/
|
|
4048
|
+
declare class QueriesApi extends BaseAPI implements QueriesApiInterface {
|
|
4049
|
+
/**
|
|
4050
|
+
* 执行指定的数据查询,返回查询结果。 支持: - 参数化查询 - 结果缓存 - 分页
|
|
4051
|
+
* 执行数据查询
|
|
3268
4052
|
*/
|
|
3269
|
-
|
|
4053
|
+
executeQueryRaw(requestParameters: ExecuteQueryOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<ExecuteQuery200Response>>;
|
|
4054
|
+
/**
|
|
4055
|
+
* 执行指定的数据查询,返回查询结果。 支持: - 参数化查询 - 结果缓存 - 分页
|
|
4056
|
+
* 执行数据查询
|
|
4057
|
+
*/
|
|
4058
|
+
executeQuery(requestParameters: ExecuteQueryOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ExecuteQuery200Response>;
|
|
3270
4059
|
}
|
|
3271
4060
|
|
|
4061
|
+
/**
|
|
4062
|
+
* DJVLC User API
|
|
4063
|
+
* DJVLC 低代码平台用户端 API 提供以下功能: - 页面获取(解析页面 Schema) - 动作执行(调用业务逻辑) - 数据查询(获取数据源)
|
|
4064
|
+
*
|
|
4065
|
+
* The version of the OpenAPI document: 1.0.0
|
|
4066
|
+
* Contact: dev@djvlc.com
|
|
4067
|
+
*
|
|
4068
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
4069
|
+
* https://openapi-generator.tech
|
|
4070
|
+
* Do not edit the class manually.
|
|
4071
|
+
*/
|
|
4072
|
+
|
|
4073
|
+
interface TrackOperationRequest {
|
|
4074
|
+
trackRequest: TrackRequest;
|
|
4075
|
+
}
|
|
4076
|
+
interface TrackBatchOperationRequest {
|
|
4077
|
+
trackBatchRequest: TrackBatchRequest;
|
|
4078
|
+
}
|
|
4079
|
+
/**
|
|
4080
|
+
* TrackApi - interface
|
|
4081
|
+
*
|
|
4082
|
+
* @export
|
|
4083
|
+
* @interface TrackApiInterface
|
|
4084
|
+
*/
|
|
4085
|
+
interface TrackApiInterface {
|
|
4086
|
+
/**
|
|
4087
|
+
* 接收客户端埋点数据,异步写入 Outbox。 特点: - 高性能:不阻塞主链路 - 可靠:通过 Outbox 异步持久化 - 可追溯:自动关联 pageVersionId/componentVersionId/traceId
|
|
4088
|
+
* @summary 埋点上报
|
|
4089
|
+
* @param {TrackRequest} trackRequest
|
|
4090
|
+
* @param {*} [options] Override http request option.
|
|
4091
|
+
* @throws {RequiredError}
|
|
4092
|
+
* @memberof TrackApiInterface
|
|
4093
|
+
*/
|
|
4094
|
+
trackRaw(requestParameters: TrackOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<Track202Response>>;
|
|
4095
|
+
/**
|
|
4096
|
+
* 接收客户端埋点数据,异步写入 Outbox。 特点: - 高性能:不阻塞主链路 - 可靠:通过 Outbox 异步持久化 - 可追溯:自动关联 pageVersionId/componentVersionId/traceId
|
|
4097
|
+
* 埋点上报
|
|
4098
|
+
*/
|
|
4099
|
+
track(requestParameters: TrackOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<Track202Response>;
|
|
4100
|
+
/**
|
|
4101
|
+
* 批量接收客户端埋点数据,提高上报效率。 限制: - 单次最多 100 条 - 单条事件不超过 10KB
|
|
4102
|
+
* @summary 批量埋点上报
|
|
4103
|
+
* @param {TrackBatchRequest} trackBatchRequest
|
|
4104
|
+
* @param {*} [options] Override http request option.
|
|
4105
|
+
* @throws {RequiredError}
|
|
4106
|
+
* @memberof TrackApiInterface
|
|
4107
|
+
*/
|
|
4108
|
+
trackBatchRaw(requestParameters: TrackBatchOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<TrackBatch202Response>>;
|
|
4109
|
+
/**
|
|
4110
|
+
* 批量接收客户端埋点数据,提高上报效率。 限制: - 单次最多 100 条 - 单条事件不超过 10KB
|
|
4111
|
+
* 批量埋点上报
|
|
4112
|
+
*/
|
|
4113
|
+
trackBatch(requestParameters: TrackBatchOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<TrackBatch202Response>;
|
|
4114
|
+
}
|
|
4115
|
+
/**
|
|
4116
|
+
*
|
|
4117
|
+
*/
|
|
4118
|
+
declare class TrackApi extends BaseAPI implements TrackApiInterface {
|
|
4119
|
+
/**
|
|
4120
|
+
* 接收客户端埋点数据,异步写入 Outbox。 特点: - 高性能:不阻塞主链路 - 可靠:通过 Outbox 异步持久化 - 可追溯:自动关联 pageVersionId/componentVersionId/traceId
|
|
4121
|
+
* 埋点上报
|
|
4122
|
+
*/
|
|
4123
|
+
trackRaw(requestParameters: TrackOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<Track202Response>>;
|
|
4124
|
+
/**
|
|
4125
|
+
* 接收客户端埋点数据,异步写入 Outbox。 特点: - 高性能:不阻塞主链路 - 可靠:通过 Outbox 异步持久化 - 可追溯:自动关联 pageVersionId/componentVersionId/traceId
|
|
4126
|
+
* 埋点上报
|
|
4127
|
+
*/
|
|
4128
|
+
track(requestParameters: TrackOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<Track202Response>;
|
|
4129
|
+
/**
|
|
4130
|
+
* 批量接收客户端埋点数据,提高上报效率。 限制: - 单次最多 100 条 - 单条事件不超过 10KB
|
|
4131
|
+
* 批量埋点上报
|
|
4132
|
+
*/
|
|
4133
|
+
trackBatchRaw(requestParameters: TrackBatchOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<ApiResponse<TrackBatch202Response>>;
|
|
4134
|
+
/**
|
|
4135
|
+
* 批量接收客户端埋点数据,提高上报效率。 限制: - 单次最多 100 条 - 单条事件不超过 10KB
|
|
4136
|
+
* 批量埋点上报
|
|
4137
|
+
*/
|
|
4138
|
+
trackBatch(requestParameters: TrackBatchOperationRequest, initOverrides?: RequestInit | InitOverrideFunction): Promise<TrackBatch202Response>;
|
|
4139
|
+
}
|
|
4140
|
+
|
|
4141
|
+
/**
|
|
4142
|
+
* DJVLC User API 客户端
|
|
4143
|
+
*
|
|
4144
|
+
* 用户端(C端)API 客户端,用于获取渲染数据、执行动作等
|
|
4145
|
+
*
|
|
4146
|
+
* 基于 openapi-generator (typescript-fetch) 生成的代码封装
|
|
4147
|
+
*
|
|
4148
|
+
* @example
|
|
4149
|
+
* ```typescript
|
|
4150
|
+
* import { createUserClient } from '@djvlc/openapi-user-client';
|
|
4151
|
+
*
|
|
4152
|
+
* const client = createUserClient({
|
|
4153
|
+
* baseUrl: 'https://api.example.com',
|
|
4154
|
+
* auth: { type: 'bearer', getToken: () => localStorage.getItem('token') },
|
|
4155
|
+
* });
|
|
4156
|
+
*
|
|
4157
|
+
* // 获取页面数据
|
|
4158
|
+
* const pageData = await client.pages.getPage({ pageId: 'xxx' });
|
|
4159
|
+
* ```
|
|
4160
|
+
*/
|
|
4161
|
+
|
|
3272
4162
|
/**
|
|
3273
4163
|
* User API 客户端配置
|
|
3274
4164
|
*/
|
|
3275
4165
|
interface UserClientConfig {
|
|
3276
|
-
/** API 基础 URL,默认 /api
|
|
4166
|
+
/** API 基础 URL,默认 /api */
|
|
3277
4167
|
baseUrl?: string;
|
|
3278
4168
|
/** 超时时间(毫秒),默认 30000 */
|
|
3279
4169
|
timeout?: number;
|
|
3280
|
-
/**
|
|
4170
|
+
/** 认证配置 */
|
|
3281
4171
|
auth?: AuthConfig;
|
|
3282
4172
|
/** 重试配置 */
|
|
3283
4173
|
retry?: RetryConfig;
|
|
4174
|
+
/** 是否启用自动重试,默认 true */
|
|
4175
|
+
enableRetry?: boolean;
|
|
3284
4176
|
/** 额外的请求头 */
|
|
3285
4177
|
headers?: Record<string, string>;
|
|
4178
|
+
/** 日志器 */
|
|
4179
|
+
logger?: Logger;
|
|
4180
|
+
/** 是否开启调试模式 */
|
|
4181
|
+
debug?: boolean;
|
|
4182
|
+
/** 自定义 pre 中间件 */
|
|
4183
|
+
preMiddlewares?: Array<(context: RequestContext) => Promise<FetchParams | void>>;
|
|
4184
|
+
/** 自定义 post 中间件 */
|
|
4185
|
+
postMiddlewares?: Array<(context: ResponseContext) => Promise<Response | void>>;
|
|
4186
|
+
/** 自定义 onError 中间件 */
|
|
4187
|
+
errorMiddlewares?: Array<(context: ErrorContext) => Promise<Response | void>>;
|
|
4188
|
+
/** 额外的 Middleware */
|
|
4189
|
+
middlewares?: Middleware[];
|
|
3286
4190
|
}
|
|
3287
4191
|
/**
|
|
3288
4192
|
* User API 客户端
|
|
3289
4193
|
*
|
|
3290
|
-
* 封装了所有用户端 API
|
|
4194
|
+
* 封装了所有用户端 API
|
|
3291
4195
|
*/
|
|
3292
4196
|
declare class UserClient {
|
|
3293
|
-
/**
|
|
4197
|
+
/** 页面数据 API */
|
|
3294
4198
|
readonly pages: PagesApi;
|
|
3295
4199
|
/** 动作执行 API */
|
|
3296
4200
|
readonly actions: ActionsApi;
|
|
4201
|
+
/** 活动参与 API */
|
|
4202
|
+
readonly activities: ActivitiesApi;
|
|
3297
4203
|
/** 数据查询 API */
|
|
3298
4204
|
readonly queries: QueriesApi;
|
|
4205
|
+
/** 埋点上报 API */
|
|
4206
|
+
readonly track: TrackApi;
|
|
4207
|
+
/** Configuration 实例(用于高级用法) */
|
|
4208
|
+
readonly configuration: Configuration;
|
|
3299
4209
|
constructor(config?: UserClientConfig);
|
|
3300
|
-
/**
|
|
3301
|
-
* 快速解析页面(简化版)
|
|
3302
|
-
*
|
|
3303
|
-
* @param pageId - 页面 ID
|
|
3304
|
-
*/
|
|
3305
|
-
resolvePage(pageId: string): Promise<axios.AxiosResponse<ResolvePage200Response, any, {}>>;
|
|
3306
|
-
/**
|
|
3307
|
-
* 快速执行动作(简化版)
|
|
3308
|
-
*
|
|
3309
|
-
* @param actionId - 动作 ID
|
|
3310
|
-
* @param params - 动作参数
|
|
3311
|
-
*/
|
|
3312
|
-
executeAction(actionId: string, params: Record<string, unknown>): Promise<axios.AxiosResponse<ExecuteAction200Response, any, {}>>;
|
|
3313
|
-
/**
|
|
3314
|
-
* 快速执行数据查询(简化版)
|
|
3315
|
-
*
|
|
3316
|
-
* @param queryId - 查询 ID
|
|
3317
|
-
* @param params - 查询参数(可选)
|
|
3318
|
-
*/
|
|
3319
|
-
executeQuery(queryId: string, params?: Record<string, unknown>): Promise<axios.AxiosResponse<ExecuteQuery200Response, any, {}>>;
|
|
3320
4210
|
}
|
|
3321
4211
|
/**
|
|
3322
4212
|
* 创建 User API 客户端
|
|
3323
4213
|
*
|
|
3324
4214
|
* @param config - 客户端配置
|
|
3325
4215
|
* @returns User API 客户端实例
|
|
3326
|
-
*
|
|
3327
|
-
* @example
|
|
3328
|
-
* ```typescript
|
|
3329
|
-
* const client = createUserClient({
|
|
3330
|
-
* baseUrl: 'https://api.example.com/user',
|
|
3331
|
-
* });
|
|
3332
|
-
* ```
|
|
3333
4216
|
*/
|
|
3334
4217
|
declare function createUserClient(config?: UserClientConfig): UserClient;
|
|
3335
4218
|
/**
|
|
3336
|
-
*
|
|
3337
|
-
*
|
|
3338
|
-
* 用于需要直接使用 axios 实例的场景
|
|
4219
|
+
* 创建 User API Configuration
|
|
3339
4220
|
*
|
|
3340
4221
|
* @param config - 客户端配置
|
|
3341
|
-
* @returns
|
|
4222
|
+
* @returns Configuration 实例
|
|
3342
4223
|
*/
|
|
3343
|
-
declare function
|
|
4224
|
+
declare function createUserConfiguration(config?: UserClientConfig): Configuration;
|
|
3344
4225
|
|
|
3345
4226
|
/**
|
|
3346
4227
|
* @djvlc/openapi-user-client
|
|
@@ -3355,4 +4236,4 @@ declare function createUserAxiosInstance(config?: UserClientConfig): axios.Axios
|
|
|
3355
4236
|
/** 客户端版本 */
|
|
3356
4237
|
declare const VERSION = "2.0.0";
|
|
3357
4238
|
|
|
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 };
|
|
4239
|
+
export { type ActionContext, ActionContextFromJSON, ActionContextFromJSONTyped, ActionContextToJSON, type ActionEffect, ActionEffectFromJSON, ActionEffectFromJSONTyped, ActionEffectToJSON, ActionEffectTypeEnum, type ActionManifest, ActionManifestFromJSON, ActionManifestFromJSONTyped, ActionManifestToJSON, ActionManifestTypeEnum, ActionsApi, ActivitiesApi, BaseAPI, type ClaimRecordInfo, ClaimRecordInfoFromJSON, ClaimRecordInfoFromJSONTyped, ClaimRecordInfoStatusEnum, ClaimRecordInfoToJSON, type ComponentManifest, ComponentManifestFromJSON, ComponentManifestFromJSONTyped, ComponentManifestToJSON, Configuration, type ConfigurationParameters, type ErrorResponse, ErrorResponseFromJSON, ErrorResponseFromJSONTyped, ErrorResponseToJSON, type ExecuteAction200Response, type ExecuteAction200ResponseData, type ExecuteAction200ResponseDataEffectsInner, ExecuteAction200ResponseDataEffectsInnerFromJSON, ExecuteAction200ResponseDataEffectsInnerFromJSONTyped, ExecuteAction200ResponseDataEffectsInnerToJSON, ExecuteAction200ResponseDataEffectsInnerTypeEnum, ExecuteAction200ResponseDataFromJSON, ExecuteAction200ResponseDataFromJSONTyped, ExecuteAction200ResponseDataToJSON, ExecuteAction200ResponseFromJSON, ExecuteAction200ResponseFromJSONTyped, ExecuteAction200ResponseToJSON, type ExecuteActionRequest, type ExecuteActionRequestContext, ExecuteActionRequestContextFromJSON, ExecuteActionRequestContextFromJSONTyped, ExecuteActionRequestContextToJSON, ExecuteActionRequestFromJSON, ExecuteActionRequestFromJSONTyped, type ExecuteActionRequestOptions, ExecuteActionRequestOptionsFromJSON, ExecuteActionRequestOptionsFromJSONTyped, ExecuteActionRequestOptionsToJSON, ExecuteActionRequestToJSON, type ExecuteActionResponse, ExecuteActionResponseFromJSON, ExecuteActionResponseFromJSONTyped, ExecuteActionResponseToJSON, type ExecuteQuery200Response, ExecuteQuery200ResponseFromJSON, ExecuteQuery200ResponseFromJSONTyped, type ExecuteQuery200ResponseMeta, ExecuteQuery200ResponseMetaFromJSON, ExecuteQuery200ResponseMetaFromJSONTyped, type ExecuteQuery200ResponseMetaPagination, ExecuteQuery200ResponseMetaPaginationFromJSON, ExecuteQuery200ResponseMetaPaginationFromJSONTyped, ExecuteQuery200ResponseMetaPaginationToJSON, ExecuteQuery200ResponseMetaToJSON, ExecuteQuery200ResponseToJSON, type ExecuteQueryRequest, ExecuteQueryRequestFromJSON, ExecuteQueryRequestFromJSONTyped, type ExecuteQueryRequestOptions, ExecuteQueryRequestOptionsFromJSON, ExecuteQueryRequestOptionsFromJSONTyped, ExecuteQueryRequestOptionsToJSON, ExecuteQueryRequestToJSON, type ExecuteQueryResponse, ExecuteQueryResponseFromJSON, ExecuteQueryResponseFromJSONTyped, ExecuteQueryResponseToJSON, type FetchAPI, FetchError, type GetActivityInfo200Response, type GetActivityInfo200ResponseData, GetActivityInfo200ResponseDataFromJSON, GetActivityInfo200ResponseDataFromJSONTyped, type GetActivityInfo200ResponseDataRewardsInner, GetActivityInfo200ResponseDataRewardsInnerFromJSON, GetActivityInfo200ResponseDataRewardsInnerFromJSONTyped, GetActivityInfo200ResponseDataRewardsInnerToJSON, GetActivityInfo200ResponseDataStatusEnum, GetActivityInfo200ResponseDataToJSON, GetActivityInfo200ResponseDataTypeEnum, GetActivityInfo200ResponseFromJSON, GetActivityInfo200ResponseFromJSONTyped, GetActivityInfo200ResponseToJSON, type GetActivityState200Response, type GetActivityState200ResponseData, GetActivityState200ResponseDataFromJSON, GetActivityState200ResponseDataFromJSONTyped, GetActivityState200ResponseDataToJSON, GetActivityState200ResponseFromJSON, GetActivityState200ResponseFromJSONTyped, GetActivityState200ResponseToJSON, type GetClaimRecords200Response, type GetClaimRecords200ResponseDataInner, GetClaimRecords200ResponseDataInnerFromJSON, GetClaimRecords200ResponseDataInnerFromJSONTyped, GetClaimRecords200ResponseDataInnerStatusEnum, GetClaimRecords200ResponseDataInnerToJSON, GetClaimRecords200ResponseFromJSON, GetClaimRecords200ResponseFromJSONTyped, type GetClaimRecords200ResponseMeta, GetClaimRecords200ResponseMetaFromJSON, GetClaimRecords200ResponseMetaFromJSONTyped, GetClaimRecords200ResponseMetaToJSON, GetClaimRecords200ResponseToJSON, type GetLotteryRecords200Response, type GetLotteryRecords200ResponseDataInner, GetLotteryRecords200ResponseDataInnerFromJSON, GetLotteryRecords200ResponseDataInnerFromJSONTyped, GetLotteryRecords200ResponseDataInnerPrizeTypeEnum, GetLotteryRecords200ResponseDataInnerStatusEnum, GetLotteryRecords200ResponseDataInnerToJSON, GetLotteryRecords200ResponseFromJSON, GetLotteryRecords200ResponseFromJSONTyped, GetLotteryRecords200ResponseToJSON, type GetPage200Response, type GetPage200ResponseData, GetPage200ResponseDataFromJSON, GetPage200ResponseDataFromJSONTyped, type GetPage200ResponseDataMeta, GetPage200ResponseDataMetaFromJSON, GetPage200ResponseDataMetaFromJSONTyped, GetPage200ResponseDataMetaToJSON, GetPage200ResponseDataToJSON, GetPage200ResponseFromJSON, GetPage200ResponseFromJSONTyped, GetPage200ResponseToJSON, type GetPage404Response, type GetPage404ResponseDetailsInner, GetPage404ResponseDetailsInnerFromJSON, GetPage404ResponseDetailsInnerFromJSONTyped, GetPage404ResponseDetailsInnerToJSON, GetPage404ResponseFromJSON, GetPage404ResponseFromJSONTyped, GetPage404ResponseToJSON, type GetSigninCalendar200Response, type GetSigninCalendar200ResponseData, GetSigninCalendar200ResponseDataFromJSON, GetSigninCalendar200ResponseDataFromJSONTyped, type GetSigninCalendar200ResponseDataRecordsInner, GetSigninCalendar200ResponseDataRecordsInnerFromJSON, GetSigninCalendar200ResponseDataRecordsInnerFromJSONTyped, type GetSigninCalendar200ResponseDataRecordsInnerReward, GetSigninCalendar200ResponseDataRecordsInnerRewardFromJSON, GetSigninCalendar200ResponseDataRecordsInnerRewardFromJSONTyped, GetSigninCalendar200ResponseDataRecordsInnerRewardToJSON, GetSigninCalendar200ResponseDataRecordsInnerToJSON, GetSigninCalendar200ResponseDataToJSON, GetSigninCalendar200ResponseFromJSON, GetSigninCalendar200ResponseFromJSONTyped, GetSigninCalendar200ResponseToJSON, type LotteryRecordInfo, LotteryRecordInfoFromJSON, LotteryRecordInfoFromJSONTyped, LotteryRecordInfoPrizeTypeEnum, LotteryRecordInfoStatusEnum, LotteryRecordInfoToJSON, type Middleware, type PageResponse, PageResponseFromJSON, PageResponseFromJSONTyped, PageResponseToJSON, PagesApi, type PaginationMeta, PaginationMetaFromJSON, PaginationMetaFromJSONTyped, PaginationMetaToJSON, type PublicActivityInfo, PublicActivityInfoFromJSON, PublicActivityInfoFromJSONTyped, PublicActivityInfoStatusEnum, PublicActivityInfoToJSON, PublicActivityInfoTypeEnum, QueriesApi, type QueryManifest, QueryManifestFromJSON, QueryManifestFromJSONTyped, QueryManifestToJSON, RequiredError, type ResolveContext, ResolveContextDeviceTypeEnum, ResolveContextFromJSON, ResolveContextFromJSONTyped, ResolveContextToJSON, type ResolvePage200Response, type ResolvePage200ResponseData, ResolvePage200ResponseDataFromJSON, ResolvePage200ResponseDataFromJSONTyped, type ResolvePage200ResponseDataManifests, type ResolvePage200ResponseDataManifestsActionsInner, ResolvePage200ResponseDataManifestsActionsInnerFromJSON, ResolvePage200ResponseDataManifestsActionsInnerFromJSONTyped, ResolvePage200ResponseDataManifestsActionsInnerToJSON, ResolvePage200ResponseDataManifestsActionsInnerTypeEnum, type ResolvePage200ResponseDataManifestsComponentsInner, ResolvePage200ResponseDataManifestsComponentsInnerFromJSON, ResolvePage200ResponseDataManifestsComponentsInnerFromJSONTyped, ResolvePage200ResponseDataManifestsComponentsInnerToJSON, ResolvePage200ResponseDataManifestsFromJSON, ResolvePage200ResponseDataManifestsFromJSONTyped, type ResolvePage200ResponseDataManifestsQueriesInner, ResolvePage200ResponseDataManifestsQueriesInnerFromJSON, ResolvePage200ResponseDataManifestsQueriesInnerFromJSONTyped, ResolvePage200ResponseDataManifestsQueriesInnerToJSON, ResolvePage200ResponseDataManifestsToJSON, ResolvePage200ResponseDataToJSON, ResolvePage200ResponseFromJSON, ResolvePage200ResponseFromJSONTyped, ResolvePage200ResponseToJSON, type ResolvePageRequest, type ResolvePageRequestContext, ResolvePageRequestContextDeviceTypeEnum, ResolvePageRequestContextFromJSON, ResolvePageRequestContextFromJSONTyped, ResolvePageRequestContextToJSON, ResolvePageRequestFromJSON, ResolvePageRequestFromJSONTyped, type ResolvePageRequestOptions, ResolvePageRequestOptionsFromJSON, ResolvePageRequestOptionsFromJSONTyped, ResolvePageRequestOptionsToJSON, ResolvePageRequestToJSON, type ResolvePageResponse, ResolvePageResponseFromJSON, ResolvePageResponseFromJSONTyped, ResolvePageResponseToJSON, type ResourceManifests, ResourceManifestsFromJSON, ResourceManifestsFromJSONTyped, ResourceManifestsToJSON, ResponseError, type SigninCalendar, SigninCalendarFromJSON, SigninCalendarFromJSONTyped, SigninCalendarToJSON, type Track202Response, type Track202ResponseData, Track202ResponseDataFromJSON, Track202ResponseDataFromJSONTyped, Track202ResponseDataToJSON, Track202ResponseFromJSON, Track202ResponseFromJSONTyped, Track202ResponseToJSON, TrackApi, type TrackBatch202Response, type TrackBatch202ResponseData, type TrackBatch202ResponseDataErrorsInner, TrackBatch202ResponseDataErrorsInnerFromJSON, TrackBatch202ResponseDataErrorsInnerFromJSONTyped, TrackBatch202ResponseDataErrorsInnerToJSON, TrackBatch202ResponseDataFromJSON, TrackBatch202ResponseDataFromJSONTyped, TrackBatch202ResponseDataToJSON, TrackBatch202ResponseFromJSON, TrackBatch202ResponseFromJSONTyped, TrackBatch202ResponseToJSON, type TrackBatchRequest, TrackBatchRequestFromJSON, TrackBatchRequestFromJSONTyped, TrackBatchRequestToJSON, type TrackRequest, type TrackRequestContext, TrackRequestContextFromJSON, TrackRequestContextFromJSONTyped, TrackRequestContextToJSON, TrackRequestEventTypeEnum, TrackRequestFromJSON, TrackRequestFromJSONTyped, TrackRequestToJSON, type UserActivityState, UserActivityStateFromJSON, UserActivityStateFromJSONTyped, UserActivityStateToJSON, UserClient, type UserClientConfig, VERSION, type ValidateActionParams200Response, type ValidateActionParams200ResponseData, type ValidateActionParams200ResponseDataErrorsInner, ValidateActionParams200ResponseDataErrorsInnerFromJSON, ValidateActionParams200ResponseDataErrorsInnerFromJSONTyped, ValidateActionParams200ResponseDataErrorsInnerToJSON, ValidateActionParams200ResponseDataFromJSON, ValidateActionParams200ResponseDataFromJSONTyped, ValidateActionParams200ResponseDataToJSON, ValidateActionParams200ResponseFromJSON, ValidateActionParams200ResponseFromJSONTyped, ValidateActionParams200ResponseToJSON, type ValidateActionParamsRequest, ValidateActionParamsRequestFromJSON, ValidateActionParamsRequestFromJSONTyped, ValidateActionParamsRequestToJSON, type ValidateActionRequest, ValidateActionRequestFromJSON, ValidateActionRequestFromJSONTyped, ValidateActionRequestToJSON, type ValidateActionResponse, ValidateActionResponseFromJSON, ValidateActionResponseFromJSONTyped, ValidateActionResponseToJSON, createUserClient, createUserConfiguration, instanceOfActionContext, instanceOfActionEffect, instanceOfActionManifest, instanceOfClaimRecordInfo, instanceOfComponentManifest, instanceOfErrorResponse, instanceOfExecuteAction200Response, instanceOfExecuteAction200ResponseData, instanceOfExecuteAction200ResponseDataEffectsInner, instanceOfExecuteActionRequest, instanceOfExecuteActionRequestContext, instanceOfExecuteActionRequestOptions, instanceOfExecuteActionResponse, instanceOfExecuteQuery200Response, instanceOfExecuteQuery200ResponseMeta, instanceOfExecuteQuery200ResponseMetaPagination, instanceOfExecuteQueryRequest, instanceOfExecuteQueryRequestOptions, instanceOfExecuteQueryResponse, instanceOfGetActivityInfo200Response, instanceOfGetActivityInfo200ResponseData, instanceOfGetActivityInfo200ResponseDataRewardsInner, instanceOfGetActivityState200Response, instanceOfGetActivityState200ResponseData, instanceOfGetClaimRecords200Response, instanceOfGetClaimRecords200ResponseDataInner, instanceOfGetClaimRecords200ResponseMeta, instanceOfGetLotteryRecords200Response, instanceOfGetLotteryRecords200ResponseDataInner, instanceOfGetPage200Response, instanceOfGetPage200ResponseData, instanceOfGetPage200ResponseDataMeta, instanceOfGetPage404Response, instanceOfGetPage404ResponseDetailsInner, instanceOfGetSigninCalendar200Response, instanceOfGetSigninCalendar200ResponseData, instanceOfGetSigninCalendar200ResponseDataRecordsInner, instanceOfGetSigninCalendar200ResponseDataRecordsInnerReward, instanceOfLotteryRecordInfo, instanceOfPageResponse, instanceOfPaginationMeta, instanceOfPublicActivityInfo, instanceOfQueryManifest, instanceOfResolveContext, instanceOfResolvePage200Response, instanceOfResolvePage200ResponseData, instanceOfResolvePage200ResponseDataManifests, instanceOfResolvePage200ResponseDataManifestsActionsInner, instanceOfResolvePage200ResponseDataManifestsComponentsInner, instanceOfResolvePage200ResponseDataManifestsQueriesInner, instanceOfResolvePageRequest, instanceOfResolvePageRequestContext, instanceOfResolvePageRequestOptions, instanceOfResolvePageResponse, instanceOfResourceManifests, instanceOfSigninCalendar, instanceOfTrack202Response, instanceOfTrack202ResponseData, instanceOfTrackBatch202Response, instanceOfTrackBatch202ResponseData, instanceOfTrackBatch202ResponseDataErrorsInner, instanceOfTrackBatchRequest, instanceOfTrackRequest, instanceOfTrackRequestContext, instanceOfUserActivityState, instanceOfValidateActionParams200Response, instanceOfValidateActionParams200ResponseData, instanceOfValidateActionParams200ResponseDataErrorsInner, instanceOfValidateActionParamsRequest, instanceOfValidateActionRequest, instanceOfValidateActionResponse };
|