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