@xuda.io/runtime-bundle 1.0.340 → 1.0.341

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.
@@ -1,264 +1,257 @@
1
1
  export const system_globals = {
2
2
  SYS_GLOBAL_STR_APP_ID: {
3
- type: "string",
4
- attr: "RO",
5
- category: ["system"],
3
+ type: 'string',
4
+ attr: 'RO',
5
+ category: ['system'],
6
6
  },
7
7
  SYS_GLOBAL_STR_SESSION_ID: {
8
- type: "string",
9
- attr: "RO",
10
- category: ["system"],
8
+ type: 'string',
9
+ attr: 'RO',
10
+ category: ['system'],
11
11
  },
12
12
  SYS_GLOBAL_STR_FIREBASE_TOKEN_ID: {
13
- type: "string",
14
- attr: "RO",
15
- category: ["system"],
13
+ type: 'string',
14
+ attr: 'RO',
15
+ category: ['system'],
16
16
  },
17
17
  SYS_GLOBAL_BOL_PUSH_NOTIFICATION_GRANTED: {
18
- type: "bool",
19
- attr: "RO",
20
- category: ["system"],
18
+ type: 'bool',
19
+ attr: 'RO',
20
+ category: ['system'],
21
21
  },
22
22
  SYS_GLOBAL_OBJ_APP_INFO: {
23
- type: "object",
24
- attr: "RO",
25
- category: ["system"],
26
- properties: ["build", "author", "date", "name"],
23
+ type: 'object',
24
+ attr: 'RO',
25
+ category: ['system'],
26
+ properties: ['build', 'author', 'date', 'name'],
27
27
  },
28
28
  SYS_GLOBAL_STR_LOGIN_USER_ID: {
29
- type: "string",
30
- attr: "RO",
31
- category: ["system"],
29
+ type: 'string',
30
+ attr: 'RO',
31
+ category: ['system'],
32
32
  },
33
33
  SYS_GLOBAL_OBJ_LOGIN_USER_INFO: {
34
- type: "object",
35
- attr: "RO",
36
- category: ["system"],
37
- properties: [
38
- "id",
39
- "user_name",
40
- "first_name",
41
- "last_name",
42
- "email",
43
- "profile_picture",
44
- ],
34
+ type: 'object',
35
+ attr: 'RO',
36
+ category: ['system'],
37
+ properties: ['id', 'user_name', 'first_name', 'last_name', 'email', 'profile_picture'],
45
38
  },
46
39
 
47
40
  SYS_GLOBAL_OBJ_CLIENT_INFO: {
48
- type: "object",
49
- attr: "RO",
50
- category: ["system"],
41
+ type: 'object',
42
+ attr: 'RO',
43
+ category: ['system'],
51
44
  properties: [
52
- "fingerprint",
53
- "device",
54
- "user_agent",
55
- "browser_version",
56
- "browser_name",
57
- "engine_version",
58
- "engine_name",
59
- "client_ip",
60
- "os_name",
61
- "os_version",
62
- "device_model",
63
- "device_vendor",
64
- "device_type",
65
- "screen_current_resolution_x",
66
- "screen_current_resolution_y",
67
- "screen_available_resolution_x",
68
- "screen_available_resolution_y",
69
- "language",
70
- "time_zone",
71
- "cpu_architecture",
72
- "uuid",
73
- "cursor_pos_x",
74
- "cursor_pos_y",
45
+ 'fingerprint',
46
+ 'device',
47
+ 'user_agent',
48
+ 'browser_version',
49
+ 'browser_name',
50
+ 'engine_version',
51
+ 'engine_name',
52
+ 'client_ip',
53
+ 'os_name',
54
+ 'os_version',
55
+ 'device_model',
56
+ 'device_vendor',
57
+ 'device_type',
58
+ 'screen_current_resolution_x',
59
+ 'screen_current_resolution_y',
60
+ 'screen_available_resolution_x',
61
+ 'screen_available_resolution_y',
62
+ 'language',
63
+ 'time_zone',
64
+ 'cpu_architecture',
65
+ 'uuid',
66
+ 'cursor_pos_x',
67
+ 'cursor_pos_y',
75
68
  ],
76
69
  },
77
70
 
78
71
  SYS_GLOBAL_STR_ACTIVE_WIN_ID: {
79
- type: "string",
80
- attr: "RO",
81
- category: ["system"],
72
+ type: 'string',
73
+ attr: 'RO',
74
+ category: ['system'],
82
75
  },
83
76
  SYS_GLOBAL_OBJ_ACTIVE_WIN_INFO: {
84
- type: "object",
85
- attr: "RO",
86
- category: ["system"],
77
+ type: 'object',
78
+ attr: 'RO',
79
+ category: ['system'],
87
80
  properties: [],
88
81
  },
89
82
  SYS_GLOBAL_OBJ_WIN_LIST: {
90
- type: "object",
91
- attr: "RO",
92
- category: ["system"],
83
+ type: 'object',
84
+ attr: 'RO',
85
+ category: ['system'],
93
86
  properties: [],
94
- index: "win_id",
87
+ index: 'win_id',
95
88
  },
96
89
  SYS_GLOBAL_STR_ACTIVE_FIELD_ID: {
97
- type: "string",
98
- attr: "RO",
99
- category: ["system"],
90
+ type: 'string',
91
+ attr: 'RO',
92
+ category: ['system'],
100
93
  },
101
94
 
102
95
  SYS_GLOBAL_STR_SITE_CSS: {
103
- type: "string",
104
- attr: "RW",
105
- category: ["system"],
96
+ type: 'string',
97
+ attr: 'RW',
98
+ category: ['system'],
106
99
  },
107
100
  SYS_GLOBAL_UTC: {
108
- type: "number",
109
- attr: "RW",
110
- category: ["system"],
101
+ type: 'number',
102
+ attr: 'RW',
103
+ category: ['system'],
111
104
  },
112
105
  SYS_GLOBAL_OBJ_WIDGET_INFO: {
113
- type: "object",
114
- attr: "RO",
115
- category: ["system"],
106
+ type: 'object',
107
+ attr: 'RO',
108
+ category: ['system'],
116
109
  properties: [
117
- "widget_id",
118
- "name",
119
- "date",
120
- "time",
121
- "from",
122
- "to",
123
- "from_name",
124
- "to_name",
125
- "subject",
126
- "body",
127
- "lastModifiedDate",
128
- "lastModifiedTime",
129
- "server_fileName",
130
- "from_full",
131
- "to_full",
132
- "email_account_id",
133
- "doc_id",
134
- "email_attachment_doc_id",
135
- "ocr",
136
- "ocr_done",
137
- "filename",
138
- "body_plain",
139
- "geo_full_address",
140
- "geo_street_number",
141
- "geo_street_name",
142
- "geo_city",
143
- "geo_county",
144
- "geo_state",
145
- "geo_country",
146
- "geo_postal_code",
147
- "geo_lat",
148
- "geo_lng",
149
- "map_selected_address",
150
- "push_notification_title",
151
- "push_notification_body",
152
- "push_notification_image",
153
- "push_notification_event_id",
154
- "push_notification_color",
155
- "user_defined_1",
156
- "user_defined_2",
157
- "user_defined_3",
158
- "user_defined_4",
159
- "user_defined_5",
160
- "stripe_api_account_id",
161
- "stripe_capture",
162
- "stripe_charge_id",
163
- "stripe_customer_id",
164
- "stripe_charge_status",
165
- "stripe_card_id",
166
- "stripe_card_brand",
167
- "stripe_card_last4",
168
- "stripe_card_exp_month",
169
- "stripe_card_exp_year",
170
- "stripe_portal_return_url",
171
- "stripe_connect_account_id",
172
- "stripe_connect_info_needed",
173
- "stripe_charge_obj",
174
- "stripe_connect_account_balance_pending",
175
- "stripe_connect_account_balance_available",
176
- "stripe_connect_account_obj",
177
- "stripe_charge_connect_account_id",
178
- "stripe_charge_connect_account_status",
179
- "stripe_charge_connect_account_transfer_id",
180
- "stripe_charge_connect_account_transfer_status",
181
- "stripe_payout_id",
182
- "stripe_payout_status",
183
- "stripe_payout_obj",
184
- "stripe_charge_connect_account_obj",
185
- "stripe_balance_id",
186
- "stripe_balance_obj",
187
- "stripe_refund_id",
188
- "stripe_refund_status",
189
- "stripe_refund_obj",
190
- "twilio_api_account_id",
191
- "twilio_phone_number",
192
- "twilio_status",
193
- "twilio_send_info_obj",
194
- "firebase_auth_token",
195
- "firebase_auth_first_name",
196
- "firebase_auth_last_name",
197
- "firebase_auth_email",
198
- "firebase_auth_picture",
199
- "firebase_auth_user_id",
200
- "firebase_auth_obj",
201
- "email_account_id",
202
- "email_account_name",
203
- "email_account_email_address",
204
- "email_account_password",
205
- "email_account_isp",
206
- "qr_text",
207
- "card_io_card_type",
208
- "card_io_redacted_card_number",
209
- "card_io_card_number",
210
- "card_io_expiry_month",
211
- "card_io_expiry_year",
212
- "card_io_cvv",
213
- "card_io_zip",
214
- "fingerprint_aio_code",
215
- "fingerprint_aio_desc",
216
- "keypad_text",
217
- "rating_value",
218
- "uploaded_files",
219
- "wysiwyg_value",
110
+ 'widget_id',
111
+ 'name',
112
+ 'date',
113
+ 'time',
114
+ 'from',
115
+ 'to',
116
+ 'from_name',
117
+ 'to_name',
118
+ 'subject',
119
+ 'body',
120
+ 'lastModifiedDate',
121
+ 'lastModifiedTime',
122
+ 'server_fileName',
123
+ 'from_full',
124
+ 'to_full',
125
+ 'email_account_id',
126
+ 'doc_id',
127
+ 'email_attachment_doc_id',
128
+ 'ocr',
129
+ 'ocr_done',
130
+ 'filename',
131
+ 'body_plain',
132
+ 'geo_full_address',
133
+ 'geo_street_number',
134
+ 'geo_street_name',
135
+ 'geo_city',
136
+ 'geo_county',
137
+ 'geo_state',
138
+ 'geo_country',
139
+ 'geo_postal_code',
140
+ 'geo_lat',
141
+ 'geo_lng',
142
+ 'map_selected_address',
143
+ 'push_notification_title',
144
+ 'push_notification_body',
145
+ 'push_notification_image',
146
+ 'push_notification_event_id',
147
+ 'push_notification_color',
148
+ 'user_defined_1',
149
+ 'user_defined_2',
150
+ 'user_defined_3',
151
+ 'user_defined_4',
152
+ 'user_defined_5',
153
+ 'stripe_api_account_id',
154
+ 'stripe_capture',
155
+ 'stripe_charge_id',
156
+ 'stripe_customer_id',
157
+ 'stripe_charge_status',
158
+ 'stripe_card_id',
159
+ 'stripe_card_brand',
160
+ 'stripe_card_last4',
161
+ 'stripe_card_exp_month',
162
+ 'stripe_card_exp_year',
163
+ 'stripe_portal_return_url',
164
+ 'stripe_connect_account_id',
165
+ 'stripe_connect_info_needed',
166
+ 'stripe_charge_obj',
167
+ 'stripe_connect_account_balance_pending',
168
+ 'stripe_connect_account_balance_available',
169
+ 'stripe_connect_account_obj',
170
+ 'stripe_charge_connect_account_id',
171
+ 'stripe_charge_connect_account_status',
172
+ 'stripe_charge_connect_account_transfer_id',
173
+ 'stripe_charge_connect_account_transfer_status',
174
+ 'stripe_payout_id',
175
+ 'stripe_payout_status',
176
+ 'stripe_payout_obj',
177
+ 'stripe_charge_connect_account_obj',
178
+ 'stripe_balance_id',
179
+ 'stripe_balance_obj',
180
+ 'stripe_refund_id',
181
+ 'stripe_refund_status',
182
+ 'stripe_refund_obj',
183
+ 'twilio_api_account_id',
184
+ 'twilio_phone_number',
185
+ 'twilio_status',
186
+ 'twilio_send_info_obj',
187
+ 'firebase_auth_token',
188
+ 'firebase_auth_first_name',
189
+ 'firebase_auth_last_name',
190
+ 'firebase_auth_email',
191
+ 'firebase_auth_picture',
192
+ 'firebase_auth_user_id',
193
+ 'firebase_auth_obj',
194
+ 'email_account_id',
195
+ 'email_account_name',
196
+ 'email_account_email_address',
197
+ 'email_account_password',
198
+ 'email_account_isp',
199
+ 'qr_text',
200
+ 'card_io_card_type',
201
+ 'card_io_redacted_card_number',
202
+ 'card_io_card_number',
203
+ 'card_io_expiry_month',
204
+ 'card_io_expiry_year',
205
+ 'card_io_cvv',
206
+ 'card_io_zip',
207
+ 'fingerprint_aio_code',
208
+ 'fingerprint_aio_desc',
209
+ 'keypad_text',
210
+ 'rating_value',
211
+ 'uploaded_files',
212
+ 'wysiwyg_value',
220
213
  ],
221
214
  },
222
215
 
223
216
  SYS_DATE: {
224
- type: "date",
225
- attr: "RO",
226
- category: ["system"],
217
+ type: 'date',
218
+ attr: 'RO',
219
+ category: ['system'],
227
220
  },
228
221
  SYS_DATE_TIME: {
229
- type: "date",
230
- attr: "RO",
231
- category: ["system"],
222
+ type: 'date',
223
+ attr: 'RO',
224
+ category: ['system'],
232
225
  },
233
226
  SYS_DATE_VALUE: {
234
- type: "number",
235
- attr: "RO",
236
- category: ["system"],
227
+ type: 'number',
228
+ attr: 'RO',
229
+ category: ['system'],
237
230
  },
238
231
  SYS_DATE_WEEK_YEAR: {
239
- type: "date",
240
- attr: "RO",
241
- category: ["system"],
232
+ type: 'date',
233
+ attr: 'RO',
234
+ category: ['system'],
242
235
  },
243
236
  SYS_DATE_MONTH_YEAR: {
244
- type: "date",
245
- attr: "RO",
246
- category: ["system"],
237
+ type: 'date',
238
+ attr: 'RO',
239
+ category: ['system'],
247
240
  },
248
241
  SYS_TIME: {
249
- type: "time",
250
- attr: "RO",
251
- category: ["system"],
242
+ type: 'time',
243
+ attr: 'RO',
244
+ category: ['system'],
252
245
  },
253
246
  SYS_TIME_SHORT: {
254
- type: "time",
255
- attr: "RO",
256
- category: ["system"],
247
+ type: 'time',
248
+ attr: 'RO',
249
+ category: ['system'],
257
250
  },
258
251
  SYS_STR_WIN_ID: {
259
- type: "string",
260
- attr: "RO",
261
- category: ["component"],
252
+ type: 'string',
253
+ attr: 'RO',
254
+ category: ['component'],
262
255
  },
263
256
  // SYS_OBJ_WIN_INFO: {
264
257
  // type: "object",
@@ -274,28 +267,14 @@ export const system_globals = {
274
267
  // index: "ui_id",
275
268
  // },
276
269
  SYS_STR_ACTIVE_ROW_ID: {
277
- type: "string",
278
- attr: "RO",
279
- category: [
280
- "batch",
281
- "get_data",
282
- "set_data",
283
- "alert",
284
- "javascript",
285
- "component",
286
- ],
270
+ type: 'string',
271
+ attr: 'RO',
272
+ category: ['batch', 'get_data', 'set_data', 'alert', 'javascript', 'component'],
287
273
  },
288
274
  SYS_STR_PROG_DS_SESSION: {
289
- type: "string",
290
- attr: "RO",
291
- category: [
292
- "batch",
293
- "get_data",
294
- "set_data",
295
- "alert",
296
- "javascript",
297
- "component",
298
- ],
275
+ type: 'string',
276
+ attr: 'RO',
277
+ category: ['batch', 'get_data', 'set_data', 'alert', 'javascript', 'component'],
299
278
  },
300
279
  // SYS_OBJ_DS_INFO: {
301
280
  // type: "object",
@@ -337,79 +316,84 @@ export const system_globals = {
337
316
  // index: "row_id",
338
317
  // },
339
318
  SYS_GLOBAL_STR_BROWSER_HASH_ID: {
340
- type: "string",
341
- attr: "RO",
342
- category: ["system"],
319
+ type: 'string',
320
+ attr: 'RO',
321
+ category: ['system'],
343
322
  },
344
323
  SYS_GLOBAL_STR_BROWSER_TITLE: {
345
- type: "string",
346
- attr: "RW",
347
- category: ["system"],
324
+ type: 'string',
325
+ attr: 'RW',
326
+ category: ['system'],
348
327
  },
349
328
  SYS_GLOBAL_BOL_SHIFT_KEY_STATE: {
350
- type: "bool",
351
- attr: "RO",
352
- category: ["system"],
329
+ type: 'bool',
330
+ attr: 'RO',
331
+ category: ['system'],
353
332
  },
354
333
  SYS_GLOBAL_BOL_ONLINE: {
355
- type: "bool",
356
- attr: "RO",
357
- category: ["system"],
334
+ type: 'bool',
335
+ attr: 'RO',
336
+ category: ['system'],
358
337
  },
359
338
  SYS_GLOBAL_BOL_REPLICATION_STAT: {
360
- type: "bool",
361
- attr: "RO",
362
- category: ["system"],
339
+ type: 'bool',
340
+ attr: 'RO',
341
+ category: ['system'],
363
342
  },
364
343
  SYS_GLOBAL_BOL_AJAX_BUSY: {
365
- type: "bool",
366
- attr: "RO",
367
- category: ["system"],
344
+ type: 'bool',
345
+ attr: 'RO',
346
+ category: ['system'],
368
347
  },
369
348
  SYS_GLOBAL_BOL_CONNECTED: {
370
- type: "bool",
371
- attr: "RO",
372
- category: ["system"],
349
+ type: 'bool',
350
+ attr: 'RO',
351
+ category: ['system'],
373
352
  },
374
353
  SYS_GLOBAL_BOL_IDLE: {
375
- type: "bool",
376
- attr: "RO",
377
- category: ["system"],
354
+ type: 'bool',
355
+ attr: 'RO',
356
+ category: ['system'],
378
357
  },
379
358
  SYS_GLOBAL_BOL_COMMAND_KEY_STATE: {
380
- type: "bool",
381
- attr: "RO",
382
- category: ["system"],
359
+ type: 'bool',
360
+ attr: 'RO',
361
+ category: ['system'],
383
362
  },
384
363
  SYS_GLOBAL_BOL_CONTROL_KEY_STATE: {
385
- type: "bool",
386
- attr: "RO",
387
- category: ["system"],
364
+ type: 'bool',
365
+ attr: 'RO',
366
+ category: ['system'],
388
367
  },
389
368
  SYS_GLOBAL_BOL_ALT_KEY_STATE: {
390
- type: "bool",
391
- attr: "RO",
392
- category: ["system"],
369
+ type: 'bool',
370
+ attr: 'RO',
371
+ category: ['system'],
393
372
  },
394
373
 
395
374
  SYS_STR_WIN_ID: {
396
- type: "string",
397
- attr: "RO",
398
- category: ["component"],
375
+ type: 'string',
376
+ attr: 'RO',
377
+ category: ['component'],
399
378
  },
400
379
  SYS_STR_WIN_NAME: {
401
- type: "string",
402
- attr: "RO",
403
- category: ["component"],
380
+ type: 'string',
381
+ attr: 'RO',
382
+ category: ['component'],
404
383
  },
405
384
  SYS_STR_WIN_MODE: {
406
- type: "string",
407
- attr: "RO",
408
- category: ["component"],
385
+ type: 'string',
386
+ attr: 'RO',
387
+ category: ['component'],
409
388
  },
410
389
  SYS_OBJ_WIN_ELEMENT_HOVERED_ATTRIBUTES: {
411
- type: "object",
412
- attr: "RO",
413
- category: ["component"],
390
+ type: 'object',
391
+ attr: 'RO',
392
+ category: ['component'],
393
+ },
394
+ SYS_GLOBAL_OBJ_REFS: {
395
+ type: 'object',
396
+ attr: 'RO',
397
+ category: ['system'],
414
398
  },
415
399
  };