@tachybase/module-cron 0.23.8

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.
Files changed (50) hide show
  1. package/.turbo/turbo-build.log +14 -0
  2. package/README.md +1 -0
  3. package/client.d.ts +2 -0
  4. package/client.js +1 -0
  5. package/dist/client/components/EndsByField.d.ts +5 -0
  6. package/dist/client/components/FieldsSelect.d.ts +2 -0
  7. package/dist/client/components/OnField.d.ts +5 -0
  8. package/dist/client/components/RepeatField.d.ts +5 -0
  9. package/dist/client/components/locale/Cron.zh-CN.d.ts +34 -0
  10. package/dist/client/cron-jobs-table/CronJobsTable.d.ts +7 -0
  11. package/dist/client/cron-jobs-table/CronJobsTable.schema.d.ts +1241 -0
  12. package/dist/client/index.d.ts +7 -0
  13. package/dist/client/index.js +36 -0
  14. package/dist/client/locale.d.ts +3 -0
  15. package/dist/collections/cronJobs.d.ts +3 -0
  16. package/dist/collections/cronJobs.js +200 -0
  17. package/dist/constants.d.ts +6 -0
  18. package/dist/constants.js +37 -0
  19. package/dist/externalVersion.js +11 -0
  20. package/dist/index.d.ts +2 -0
  21. package/dist/index.js +39 -0
  22. package/dist/locale/en-US.json +36 -0
  23. package/dist/locale/zh-CN.json +36 -0
  24. package/dist/node_modules/cron-parser/LICENSE +21 -0
  25. package/dist/node_modules/cron-parser/lib/date.js +252 -0
  26. package/dist/node_modules/cron-parser/lib/expression.js +1002 -0
  27. package/dist/node_modules/cron-parser/lib/field_compactor.js +70 -0
  28. package/dist/node_modules/cron-parser/lib/field_stringify.js +58 -0
  29. package/dist/node_modules/cron-parser/lib/parser.js +1 -0
  30. package/dist/node_modules/cron-parser/package.json +1 -0
  31. package/dist/node_modules/cron-parser/types/common.d.ts +131 -0
  32. package/dist/node_modules/cron-parser/types/index.d.ts +45 -0
  33. package/dist/node_modules/cron-parser/types/ts3/index.d.ts +28 -0
  34. package/dist/server/actions/cron-jobs-controller.d.ts +4 -0
  35. package/dist/server/actions/cron-jobs-controller.js +94 -0
  36. package/dist/server/collections/cronJobs.d.ts +1 -0
  37. package/dist/server/collections/cronJobs.js +33 -0
  38. package/dist/server/index.d.ts +1 -0
  39. package/dist/server/index.js +33 -0
  40. package/dist/server/model/CronJobModel.d.ts +19 -0
  41. package/dist/server/model/CronJobModel.js +29 -0
  42. package/dist/server/plugin.d.ts +11 -0
  43. package/dist/server/plugin.js +104 -0
  44. package/dist/server/service/StaticScheduleTrigger.d.ts +15 -0
  45. package/dist/server/service/StaticScheduleTrigger.js +298 -0
  46. package/dist/server/utils/index.d.ts +1 -0
  47. package/dist/server/utils/index.js +29 -0
  48. package/package.json +23 -0
  49. package/server.d.ts +2 -0
  50. package/server.js +1 -0
@@ -0,0 +1,1241 @@
1
+ import React from 'react';
2
+ import { ISchema } from '@tachybase/schema';
3
+ export declare const table: {
4
+ type: string;
5
+ 'x-decorator': string;
6
+ 'x-acl-action': string;
7
+ 'x-use-decorator-props': string;
8
+ 'x-decorator-props': {
9
+ collection: string;
10
+ dataSource: string;
11
+ action: string;
12
+ params: {
13
+ pageSize: number;
14
+ };
15
+ rowKey: string;
16
+ showIndex: boolean;
17
+ dragSort: boolean;
18
+ };
19
+ 'x-component': string;
20
+ 'x-filter-targets': any[];
21
+ properties: {
22
+ actions: {
23
+ type: string;
24
+ 'x-component': string;
25
+ 'x-component-props': {
26
+ style: {
27
+ marginBottom: string;
28
+ };
29
+ };
30
+ properties: {
31
+ refresh: {
32
+ type: string;
33
+ title: string;
34
+ 'x-action': string;
35
+ 'x-component': string;
36
+ 'x-settings': string;
37
+ 'x-component-props': {
38
+ icon: string;
39
+ };
40
+ 'x-use-component-props': string;
41
+ };
42
+ create: {
43
+ type: string;
44
+ 'x-action': string;
45
+ 'x-acl-action': string;
46
+ title: string;
47
+ 'x-component': string;
48
+ 'x-decorator': string;
49
+ 'x-component-props': {
50
+ openMode: string;
51
+ type: string;
52
+ component: string;
53
+ icon: string;
54
+ };
55
+ 'x-align': string;
56
+ 'x-acl-action-props': {
57
+ skipScopeCheck: boolean;
58
+ };
59
+ properties: {
60
+ drawer: {
61
+ type: string;
62
+ title: string;
63
+ 'x-component': string;
64
+ 'x-component-props': {
65
+ className: string;
66
+ };
67
+ properties: {
68
+ form: import("@tachybase/schema").Stringify<{
69
+ [key: symbol]: any;
70
+ [key: `x-${string}`]: any;
71
+ [key: `x-${number}`]: any;
72
+ version?: string;
73
+ name?: import("@tachybase/schema").SchemaKey;
74
+ title?: any;
75
+ description?: any;
76
+ default?: any;
77
+ readOnly?: boolean;
78
+ writeOnly?: boolean;
79
+ type?: import("@tachybase/schema").SchemaTypes;
80
+ enum?: import("@tachybase/schema").SchemaEnum<any>;
81
+ const?: any;
82
+ multipleOf?: number;
83
+ maximum?: number;
84
+ exclusiveMaximum?: number;
85
+ minimum?: number;
86
+ exclusiveMinimum?: number;
87
+ maxLength?: number;
88
+ minLength?: number;
89
+ pattern?: string | RegExp;
90
+ maxItems?: number;
91
+ minItems?: number;
92
+ uniqueItems?: boolean;
93
+ maxProperties?: number;
94
+ minProperties?: number;
95
+ required?: string[] | boolean | string;
96
+ format?: string;
97
+ $ref?: string;
98
+ $namespace?: string;
99
+ definitions?: import("@tachybase/schema").SchemaProperties<any, any, any, any, any, any, any, any>;
100
+ properties?: import("@tachybase/schema").SchemaProperties<any, any, any, any, any, any, any, any>;
101
+ items?: import("@tachybase/schema").SchemaItems<any, any, any, any, any, any, any, any>;
102
+ additionalItems?: import("@tachybase/schema").Stringify</*elided*/ any>;
103
+ patternProperties?: import("@tachybase/schema").SchemaProperties<any, any, any, any, any, any, any, any>;
104
+ additionalProperties?: import("@tachybase/schema").Stringify</*elided*/ any>;
105
+ "x-value"?: any;
106
+ "x-index"?: number;
107
+ "x-pattern"?: any;
108
+ "x-display"?: any;
109
+ "x-validator"?: any;
110
+ "x-decorator"?: any;
111
+ "x-decorator-props"?: any;
112
+ "x-component"?: any;
113
+ "x-component-props"?: any;
114
+ "x-reactions"?: import("@tachybase/schema").SchemaReactions<any>;
115
+ "x-content"?: any;
116
+ "x-data"?: any;
117
+ "x-visible"?: boolean;
118
+ "x-hidden"?: boolean;
119
+ "x-disabled"?: boolean;
120
+ "x-editable"?: boolean;
121
+ "x-read-only"?: boolean;
122
+ "x-read-pretty"?: boolean;
123
+ "x-compile-omitted"?: string[];
124
+ }>;
125
+ };
126
+ };
127
+ };
128
+ };
129
+ };
130
+ };
131
+ table: {
132
+ type: string;
133
+ 'x-component': string;
134
+ 'x-use-component-props': string;
135
+ 'x-component-props': {
136
+ rowKey: string;
137
+ rowSelection: {
138
+ type: string;
139
+ };
140
+ };
141
+ properties: {
142
+ name: {
143
+ type: string;
144
+ 'x-decorator': string;
145
+ 'x-component': string;
146
+ properties: {
147
+ name: {
148
+ 'x-collection-field': string;
149
+ 'x-component': string;
150
+ 'x-component-props': {
151
+ ellipsis: boolean;
152
+ };
153
+ 'x-read-pretty': boolean;
154
+ 'x-decorator': any;
155
+ 'x-decorator-props': {
156
+ labelStyle: {
157
+ display: string;
158
+ };
159
+ };
160
+ };
161
+ };
162
+ };
163
+ enabled: {
164
+ type: string;
165
+ 'x-decorator': string;
166
+ 'x-component': string;
167
+ properties: {
168
+ enabled: {
169
+ 'x-collection-field': string;
170
+ 'x-component': string;
171
+ 'x-component-props': {
172
+ ellipsis: boolean;
173
+ };
174
+ 'x-read-pretty': boolean;
175
+ 'x-decorator': any;
176
+ 'x-decorator-props': {
177
+ labelStyle: {
178
+ display: string;
179
+ };
180
+ };
181
+ };
182
+ };
183
+ };
184
+ workflowKeyColumn: {
185
+ type: string;
186
+ 'x-decorator': string;
187
+ 'x-component': string;
188
+ 'x-component-props': {
189
+ width: number;
190
+ };
191
+ properties: {
192
+ workflowKey: {
193
+ 'x-collection-field': string;
194
+ 'x-component': string;
195
+ 'x-read-pretty': boolean;
196
+ 'x-decorator': string;
197
+ 'x-decorator-props': {
198
+ component: ({ children, onClick }: {
199
+ children: any;
200
+ onClick: any;
201
+ }) => React.JSX.Element;
202
+ };
203
+ properties: {
204
+ drawer: {
205
+ type: string;
206
+ name: string;
207
+ title: string;
208
+ 'x-component': string;
209
+ properties: {
210
+ content: {
211
+ type: string;
212
+ "x-decorator": string;
213
+ "x-decorator-props": {
214
+ collection: {
215
+ name: string;
216
+ fields: {
217
+ interface: string;
218
+ type: string;
219
+ name: string;
220
+ uiSchema: ISchema;
221
+ }[];
222
+ };
223
+ dataSource: string;
224
+ action: string;
225
+ params: {
226
+ appends: string[];
227
+ pageSize: number;
228
+ sort: string[];
229
+ };
230
+ };
231
+ properties: {
232
+ actions: {
233
+ type: string;
234
+ "x-component": string;
235
+ "x-component-props": {
236
+ style: {
237
+ marginBottom: number;
238
+ };
239
+ };
240
+ properties: {
241
+ refresher: {
242
+ type: string;
243
+ title: string;
244
+ "x-action": string;
245
+ "x-component": string;
246
+ "x-use-component-props": string;
247
+ "x-designer": string;
248
+ "x-component-props": {
249
+ icon: string;
250
+ };
251
+ "x-align": string;
252
+ };
253
+ clear: {
254
+ type: string;
255
+ title: string;
256
+ "x-component": string;
257
+ "x-component-props": {
258
+ isShow: any;
259
+ useAction(): {
260
+ run(): Promise<void>;
261
+ };
262
+ confirm: {
263
+ title: string;
264
+ content: string;
265
+ };
266
+ };
267
+ };
268
+ };
269
+ };
270
+ table: {
271
+ type: string;
272
+ "x-component": string;
273
+ "x-use-component-props": string;
274
+ "x-component-props": {
275
+ rowKey: string;
276
+ };
277
+ properties: {
278
+ actions: {
279
+ type: string;
280
+ title: string;
281
+ "x-component": string;
282
+ "x-component-props": {
283
+ width: number;
284
+ };
285
+ properties: {
286
+ actions: {
287
+ type: string;
288
+ "x-component": string;
289
+ "x-component-props": {
290
+ split: string;
291
+ };
292
+ properties: {
293
+ link: {
294
+ type: string;
295
+ "x-component": string;
296
+ };
297
+ };
298
+ };
299
+ };
300
+ };
301
+ id: {
302
+ type: string;
303
+ "x-decorator": string;
304
+ "x-component": string;
305
+ "x-component-props": {
306
+ width: number;
307
+ };
308
+ properties: {
309
+ id: {
310
+ type: string;
311
+ "x-component": string;
312
+ "x-read-pretty": boolean;
313
+ };
314
+ };
315
+ };
316
+ createdAt: {
317
+ type: string;
318
+ "x-decorator": string;
319
+ "x-component": string;
320
+ "x-component-props": {
321
+ width: number;
322
+ };
323
+ properties: {
324
+ createdAt: {
325
+ type: string;
326
+ "x-component": string;
327
+ "x-component-props": {
328
+ showTime: boolean;
329
+ };
330
+ "x-read-pretty": boolean;
331
+ };
332
+ };
333
+ };
334
+ executionTime: {
335
+ type: string;
336
+ title: string;
337
+ "x-decorator": string;
338
+ "x-component": string;
339
+ "x-component-props": {
340
+ width: number;
341
+ };
342
+ properties: {
343
+ executionTime: {
344
+ type: string;
345
+ "x-decorator": string;
346
+ "x-component": string;
347
+ "x-read-pretty": boolean;
348
+ };
349
+ };
350
+ };
351
+ workflowId: {
352
+ type: string;
353
+ "x-decorator": string;
354
+ "x-component": string;
355
+ "x-component-props": {
356
+ width: number;
357
+ };
358
+ properties: {
359
+ workflowId: {
360
+ type: string;
361
+ "x-component": string;
362
+ "x-read-pretty": boolean;
363
+ };
364
+ };
365
+ };
366
+ status: {
367
+ type: string;
368
+ title: string;
369
+ "x-decorator": string;
370
+ "x-component": string;
371
+ "x-component-props": {
372
+ width: number;
373
+ };
374
+ properties: {
375
+ status: {
376
+ type: string;
377
+ "x-decorator": string;
378
+ "x-component": string;
379
+ "x-read-pretty": boolean;
380
+ };
381
+ };
382
+ };
383
+ };
384
+ };
385
+ };
386
+ };
387
+ };
388
+ };
389
+ };
390
+ };
391
+ };
392
+ };
393
+ lastTime: {
394
+ type: string;
395
+ 'x-decorator': string;
396
+ 'x-component': string;
397
+ 'x-component-props': {
398
+ width: number;
399
+ };
400
+ properties: {
401
+ lastTime: {
402
+ 'x-collection-field': string;
403
+ 'x-component': string;
404
+ 'x-component-props': {
405
+ ellipsis: boolean;
406
+ };
407
+ 'x-read-pretty': boolean;
408
+ 'x-decorator': any;
409
+ 'x-decorator-props': {
410
+ labelStyle: {
411
+ display: string;
412
+ };
413
+ };
414
+ };
415
+ };
416
+ };
417
+ nextTime: {
418
+ type: string;
419
+ 'x-decorator': string;
420
+ 'x-component': string;
421
+ properties: {
422
+ nextTime: {
423
+ 'x-collection-field': string;
424
+ 'x-component': string;
425
+ 'x-component-props': {
426
+ ellipsis: boolean;
427
+ };
428
+ 'x-read-pretty': boolean;
429
+ 'x-decorator': any;
430
+ 'x-decorator-props': {
431
+ labelStyle: {
432
+ display: string;
433
+ };
434
+ };
435
+ };
436
+ };
437
+ };
438
+ allExecuted: {
439
+ type: string;
440
+ 'x-decorator': string;
441
+ 'x-component': string;
442
+ 'x-component-props': {
443
+ width: number;
444
+ };
445
+ properties: {
446
+ allExecuted: {
447
+ 'x-collection-field': string;
448
+ 'x-component': string;
449
+ 'x-component-props': {
450
+ ellipsis: boolean;
451
+ };
452
+ 'x-read-pretty': boolean;
453
+ 'x-decorator': any;
454
+ 'x-decorator-props': {
455
+ labelStyle: {
456
+ display: string;
457
+ };
458
+ };
459
+ };
460
+ };
461
+ };
462
+ limit: {
463
+ type: string;
464
+ 'x-decorator': string;
465
+ 'x-component': string;
466
+ 'x-component-props': {
467
+ width: number;
468
+ };
469
+ properties: {
470
+ limit: {
471
+ 'x-collection-field': string;
472
+ 'x-component': string;
473
+ 'x-component-props': {
474
+ ellipsis: boolean;
475
+ };
476
+ 'x-read-pretty': boolean;
477
+ 'x-decorator': any;
478
+ 'x-decorator-props': {
479
+ labelStyle: {
480
+ display: string;
481
+ };
482
+ };
483
+ };
484
+ };
485
+ };
486
+ limitExecuted: {
487
+ type: string;
488
+ 'x-decorator': string;
489
+ 'x-component': string;
490
+ 'x-component-props': {
491
+ width: number;
492
+ };
493
+ properties: {
494
+ limitExecuted: {
495
+ 'x-collection-field': string;
496
+ 'x-component': string;
497
+ 'x-component-props': {
498
+ ellipsis: boolean;
499
+ };
500
+ 'x-read-pretty': boolean;
501
+ 'x-decorator': any;
502
+ 'x-decorator-props': {
503
+ labelStyle: {
504
+ display: string;
505
+ };
506
+ };
507
+ };
508
+ };
509
+ };
510
+ actions: {
511
+ type: string;
512
+ title: string;
513
+ 'x-action-column': string;
514
+ 'x-decorator': string;
515
+ 'x-component': string;
516
+ 'x-component-props': {
517
+ width: number;
518
+ fixed: string;
519
+ };
520
+ properties: {
521
+ actions: {
522
+ type: string;
523
+ 'x-component': string;
524
+ properties: {
525
+ editAction: import("@tachybase/schema").Stringify<{
526
+ [key: symbol]: any;
527
+ [key: `x-${string}`]: any;
528
+ [key: `x-${number}`]: any;
529
+ version?: string;
530
+ name?: import("@tachybase/schema").SchemaKey;
531
+ title?: any;
532
+ description?: any;
533
+ default?: any;
534
+ readOnly?: boolean;
535
+ writeOnly?: boolean;
536
+ type?: import("@tachybase/schema").SchemaTypes;
537
+ enum?: import("@tachybase/schema").SchemaEnum<any>;
538
+ const?: any;
539
+ multipleOf?: number;
540
+ maximum?: number;
541
+ exclusiveMaximum?: number;
542
+ minimum?: number;
543
+ exclusiveMinimum?: number;
544
+ maxLength?: number;
545
+ minLength?: number;
546
+ pattern?: string | RegExp;
547
+ maxItems?: number;
548
+ minItems?: number;
549
+ uniqueItems?: boolean;
550
+ maxProperties?: number;
551
+ minProperties?: number;
552
+ required?: string[] | boolean | string;
553
+ format?: string;
554
+ $ref?: string;
555
+ $namespace?: string;
556
+ definitions?: import("@tachybase/schema").SchemaProperties<any, any, any, any, any, any, any, any>;
557
+ properties?: import("@tachybase/schema").SchemaProperties<any, any, any, any, any, any, any, any>;
558
+ items?: import("@tachybase/schema").SchemaItems<any, any, any, any, any, any, any, any>;
559
+ additionalItems?: import("@tachybase/schema").Stringify</*elided*/ any>;
560
+ patternProperties?: import("@tachybase/schema").SchemaProperties<any, any, any, any, any, any, any, any>;
561
+ additionalProperties?: import("@tachybase/schema").Stringify</*elided*/ any>;
562
+ "x-value"?: any;
563
+ "x-index"?: number;
564
+ "x-pattern"?: any;
565
+ "x-display"?: any;
566
+ "x-validator"?: any;
567
+ "x-decorator"?: any;
568
+ "x-decorator-props"?: any;
569
+ "x-component"?: any;
570
+ "x-component-props"?: any;
571
+ "x-reactions"?: import("@tachybase/schema").SchemaReactions<any>;
572
+ "x-content"?: any;
573
+ "x-data"?: any;
574
+ "x-visible"?: boolean;
575
+ "x-hidden"?: boolean;
576
+ "x-disabled"?: boolean;
577
+ "x-editable"?: boolean;
578
+ "x-read-only"?: boolean;
579
+ "x-read-pretty"?: boolean;
580
+ "x-compile-omitted"?: string[];
581
+ }>;
582
+ delete: {
583
+ type: string;
584
+ title: string;
585
+ 'x-action': string;
586
+ 'x-component': string;
587
+ 'x-component-props': {
588
+ confirm: {
589
+ title: string;
590
+ content: string;
591
+ };
592
+ };
593
+ 'x-decorator': string;
594
+ 'x-use-component-props': string;
595
+ };
596
+ clear: {
597
+ type: string;
598
+ title: string;
599
+ 'x-action': string;
600
+ 'x-component': string;
601
+ 'x-component-props': {
602
+ confirm: {
603
+ title: string;
604
+ content: string;
605
+ };
606
+ };
607
+ 'x-decorator': string;
608
+ 'x-use-component-props': () => {
609
+ onClick(): Promise<void>;
610
+ };
611
+ };
612
+ };
613
+ };
614
+ };
615
+ };
616
+ };
617
+ };
618
+ };
619
+ };
620
+ export declare const schema: {
621
+ type: string;
622
+ properties: {
623
+ table: {
624
+ type: string;
625
+ 'x-decorator': string;
626
+ 'x-acl-action': string;
627
+ 'x-use-decorator-props': string;
628
+ 'x-decorator-props': {
629
+ collection: string;
630
+ dataSource: string;
631
+ action: string;
632
+ params: {
633
+ pageSize: number;
634
+ };
635
+ rowKey: string;
636
+ showIndex: boolean;
637
+ dragSort: boolean;
638
+ };
639
+ 'x-component': string;
640
+ 'x-filter-targets': any[];
641
+ properties: {
642
+ actions: {
643
+ type: string;
644
+ 'x-component': string;
645
+ 'x-component-props': {
646
+ style: {
647
+ marginBottom: string;
648
+ };
649
+ };
650
+ properties: {
651
+ refresh: {
652
+ type: string;
653
+ title: string;
654
+ 'x-action': string;
655
+ 'x-component': string;
656
+ 'x-settings': string;
657
+ 'x-component-props': {
658
+ icon: string;
659
+ };
660
+ 'x-use-component-props': string;
661
+ };
662
+ create: {
663
+ type: string;
664
+ 'x-action': string;
665
+ 'x-acl-action': string;
666
+ title: string;
667
+ 'x-component': string;
668
+ 'x-decorator': string;
669
+ 'x-component-props': {
670
+ openMode: string;
671
+ type: string;
672
+ component: string;
673
+ icon: string;
674
+ };
675
+ 'x-align': string;
676
+ 'x-acl-action-props': {
677
+ skipScopeCheck: boolean;
678
+ };
679
+ properties: {
680
+ drawer: {
681
+ type: string;
682
+ title: string;
683
+ 'x-component': string;
684
+ 'x-component-props': {
685
+ className: string;
686
+ };
687
+ properties: {
688
+ form: import("@tachybase/schema").Stringify<{
689
+ [key: symbol]: any;
690
+ [key: `x-${string}`]: any;
691
+ [key: `x-${number}`]: any;
692
+ version?: string;
693
+ name?: import("@tachybase/schema").SchemaKey;
694
+ title?: any;
695
+ description?: any;
696
+ default?: any;
697
+ readOnly?: boolean;
698
+ writeOnly?: boolean;
699
+ type?: import("@tachybase/schema").SchemaTypes;
700
+ enum?: import("@tachybase/schema").SchemaEnum<any>;
701
+ const?: any;
702
+ multipleOf?: number;
703
+ maximum?: number;
704
+ exclusiveMaximum?: number;
705
+ minimum?: number;
706
+ exclusiveMinimum?: number;
707
+ maxLength?: number;
708
+ minLength?: number;
709
+ pattern?: string | RegExp;
710
+ maxItems?: number;
711
+ minItems?: number;
712
+ uniqueItems?: boolean;
713
+ maxProperties?: number;
714
+ minProperties?: number;
715
+ required?: string[] | boolean | string;
716
+ format?: string;
717
+ $ref?: string;
718
+ $namespace?: string;
719
+ definitions?: import("@tachybase/schema").SchemaProperties<any, any, any, any, any, any, any, any>;
720
+ properties?: import("@tachybase/schema").SchemaProperties<any, any, any, any, any, any, any, any>;
721
+ items?: import("@tachybase/schema").SchemaItems<any, any, any, any, any, any, any, any>;
722
+ additionalItems?: import("@tachybase/schema").Stringify</*elided*/ any>;
723
+ patternProperties?: import("@tachybase/schema").SchemaProperties<any, any, any, any, any, any, any, any>;
724
+ additionalProperties?: import("@tachybase/schema").Stringify</*elided*/ any>;
725
+ "x-value"?: any;
726
+ "x-index"?: number;
727
+ "x-pattern"?: any;
728
+ "x-display"?: any;
729
+ "x-validator"?: any;
730
+ "x-decorator"?: any;
731
+ "x-decorator-props"?: any;
732
+ "x-component"?: any;
733
+ "x-component-props"?: any;
734
+ "x-reactions"?: import("@tachybase/schema").SchemaReactions<any>;
735
+ "x-content"?: any;
736
+ "x-data"?: any;
737
+ "x-visible"?: boolean;
738
+ "x-hidden"?: boolean;
739
+ "x-disabled"?: boolean;
740
+ "x-editable"?: boolean;
741
+ "x-read-only"?: boolean;
742
+ "x-read-pretty"?: boolean;
743
+ "x-compile-omitted"?: string[];
744
+ }>;
745
+ };
746
+ };
747
+ };
748
+ };
749
+ };
750
+ };
751
+ table: {
752
+ type: string;
753
+ 'x-component': string;
754
+ 'x-use-component-props': string;
755
+ 'x-component-props': {
756
+ rowKey: string;
757
+ rowSelection: {
758
+ type: string;
759
+ };
760
+ };
761
+ properties: {
762
+ name: {
763
+ type: string;
764
+ 'x-decorator': string;
765
+ 'x-component': string;
766
+ properties: {
767
+ name: {
768
+ 'x-collection-field': string;
769
+ 'x-component': string;
770
+ 'x-component-props': {
771
+ ellipsis: boolean;
772
+ };
773
+ 'x-read-pretty': boolean;
774
+ 'x-decorator': any;
775
+ 'x-decorator-props': {
776
+ labelStyle: {
777
+ display: string;
778
+ };
779
+ };
780
+ };
781
+ };
782
+ };
783
+ enabled: {
784
+ type: string;
785
+ 'x-decorator': string;
786
+ 'x-component': string;
787
+ properties: {
788
+ enabled: {
789
+ 'x-collection-field': string;
790
+ 'x-component': string;
791
+ 'x-component-props': {
792
+ ellipsis: boolean;
793
+ };
794
+ 'x-read-pretty': boolean;
795
+ 'x-decorator': any;
796
+ 'x-decorator-props': {
797
+ labelStyle: {
798
+ display: string;
799
+ };
800
+ };
801
+ };
802
+ };
803
+ };
804
+ workflowKeyColumn: {
805
+ type: string;
806
+ 'x-decorator': string;
807
+ 'x-component': string;
808
+ 'x-component-props': {
809
+ width: number;
810
+ };
811
+ properties: {
812
+ workflowKey: {
813
+ 'x-collection-field': string;
814
+ 'x-component': string;
815
+ 'x-read-pretty': boolean;
816
+ 'x-decorator': string;
817
+ 'x-decorator-props': {
818
+ component: ({ children, onClick }: {
819
+ children: any;
820
+ onClick: any;
821
+ }) => React.JSX.Element;
822
+ };
823
+ properties: {
824
+ drawer: {
825
+ type: string;
826
+ name: string;
827
+ title: string;
828
+ 'x-component': string;
829
+ properties: {
830
+ content: {
831
+ type: string;
832
+ "x-decorator": string;
833
+ "x-decorator-props": {
834
+ collection: {
835
+ name: string;
836
+ fields: {
837
+ interface: string;
838
+ type: string;
839
+ name: string;
840
+ uiSchema: ISchema;
841
+ }[];
842
+ };
843
+ dataSource: string;
844
+ action: string;
845
+ params: {
846
+ appends: string[];
847
+ pageSize: number;
848
+ sort: string[];
849
+ };
850
+ };
851
+ properties: {
852
+ actions: {
853
+ type: string;
854
+ "x-component": string;
855
+ "x-component-props": {
856
+ style: {
857
+ marginBottom: number;
858
+ };
859
+ };
860
+ properties: {
861
+ refresher: {
862
+ type: string;
863
+ title: string;
864
+ "x-action": string;
865
+ "x-component": string;
866
+ "x-use-component-props": string;
867
+ "x-designer": string;
868
+ "x-component-props": {
869
+ icon: string;
870
+ };
871
+ "x-align": string;
872
+ };
873
+ clear: {
874
+ type: string;
875
+ title: string;
876
+ "x-component": string;
877
+ "x-component-props": {
878
+ isShow: any;
879
+ useAction(): {
880
+ run(): Promise<void>;
881
+ };
882
+ confirm: {
883
+ title: string;
884
+ content: string;
885
+ };
886
+ };
887
+ };
888
+ };
889
+ };
890
+ table: {
891
+ type: string;
892
+ "x-component": string;
893
+ "x-use-component-props": string;
894
+ "x-component-props": {
895
+ rowKey: string;
896
+ };
897
+ properties: {
898
+ actions: {
899
+ type: string;
900
+ title: string;
901
+ "x-component": string;
902
+ "x-component-props": {
903
+ width: number;
904
+ };
905
+ properties: {
906
+ actions: {
907
+ type: string;
908
+ "x-component": string;
909
+ "x-component-props": {
910
+ split: string;
911
+ };
912
+ properties: {
913
+ link: {
914
+ type: string;
915
+ "x-component": string;
916
+ };
917
+ };
918
+ };
919
+ };
920
+ };
921
+ id: {
922
+ type: string;
923
+ "x-decorator": string;
924
+ "x-component": string;
925
+ "x-component-props": {
926
+ width: number;
927
+ };
928
+ properties: {
929
+ id: {
930
+ type: string;
931
+ "x-component": string;
932
+ "x-read-pretty": boolean;
933
+ };
934
+ };
935
+ };
936
+ createdAt: {
937
+ type: string;
938
+ "x-decorator": string;
939
+ "x-component": string;
940
+ "x-component-props": {
941
+ width: number;
942
+ };
943
+ properties: {
944
+ createdAt: {
945
+ type: string;
946
+ "x-component": string;
947
+ "x-component-props": {
948
+ showTime: boolean;
949
+ };
950
+ "x-read-pretty": boolean;
951
+ };
952
+ };
953
+ };
954
+ executionTime: {
955
+ type: string;
956
+ title: string;
957
+ "x-decorator": string;
958
+ "x-component": string;
959
+ "x-component-props": {
960
+ width: number;
961
+ };
962
+ properties: {
963
+ executionTime: {
964
+ type: string;
965
+ "x-decorator": string;
966
+ "x-component": string;
967
+ "x-read-pretty": boolean;
968
+ };
969
+ };
970
+ };
971
+ workflowId: {
972
+ type: string;
973
+ "x-decorator": string;
974
+ "x-component": string;
975
+ "x-component-props": {
976
+ width: number;
977
+ };
978
+ properties: {
979
+ workflowId: {
980
+ type: string;
981
+ "x-component": string;
982
+ "x-read-pretty": boolean;
983
+ };
984
+ };
985
+ };
986
+ status: {
987
+ type: string;
988
+ title: string;
989
+ "x-decorator": string;
990
+ "x-component": string;
991
+ "x-component-props": {
992
+ width: number;
993
+ };
994
+ properties: {
995
+ status: {
996
+ type: string;
997
+ "x-decorator": string;
998
+ "x-component": string;
999
+ "x-read-pretty": boolean;
1000
+ };
1001
+ };
1002
+ };
1003
+ };
1004
+ };
1005
+ };
1006
+ };
1007
+ };
1008
+ };
1009
+ };
1010
+ };
1011
+ };
1012
+ };
1013
+ lastTime: {
1014
+ type: string;
1015
+ 'x-decorator': string;
1016
+ 'x-component': string;
1017
+ 'x-component-props': {
1018
+ width: number;
1019
+ };
1020
+ properties: {
1021
+ lastTime: {
1022
+ 'x-collection-field': string;
1023
+ 'x-component': string;
1024
+ 'x-component-props': {
1025
+ ellipsis: boolean;
1026
+ };
1027
+ 'x-read-pretty': boolean;
1028
+ 'x-decorator': any;
1029
+ 'x-decorator-props': {
1030
+ labelStyle: {
1031
+ display: string;
1032
+ };
1033
+ };
1034
+ };
1035
+ };
1036
+ };
1037
+ nextTime: {
1038
+ type: string;
1039
+ 'x-decorator': string;
1040
+ 'x-component': string;
1041
+ properties: {
1042
+ nextTime: {
1043
+ 'x-collection-field': string;
1044
+ 'x-component': string;
1045
+ 'x-component-props': {
1046
+ ellipsis: boolean;
1047
+ };
1048
+ 'x-read-pretty': boolean;
1049
+ 'x-decorator': any;
1050
+ 'x-decorator-props': {
1051
+ labelStyle: {
1052
+ display: string;
1053
+ };
1054
+ };
1055
+ };
1056
+ };
1057
+ };
1058
+ allExecuted: {
1059
+ type: string;
1060
+ 'x-decorator': string;
1061
+ 'x-component': string;
1062
+ 'x-component-props': {
1063
+ width: number;
1064
+ };
1065
+ properties: {
1066
+ allExecuted: {
1067
+ 'x-collection-field': string;
1068
+ 'x-component': string;
1069
+ 'x-component-props': {
1070
+ ellipsis: boolean;
1071
+ };
1072
+ 'x-read-pretty': boolean;
1073
+ 'x-decorator': any;
1074
+ 'x-decorator-props': {
1075
+ labelStyle: {
1076
+ display: string;
1077
+ };
1078
+ };
1079
+ };
1080
+ };
1081
+ };
1082
+ limit: {
1083
+ type: string;
1084
+ 'x-decorator': string;
1085
+ 'x-component': string;
1086
+ 'x-component-props': {
1087
+ width: number;
1088
+ };
1089
+ properties: {
1090
+ limit: {
1091
+ 'x-collection-field': string;
1092
+ 'x-component': string;
1093
+ 'x-component-props': {
1094
+ ellipsis: boolean;
1095
+ };
1096
+ 'x-read-pretty': boolean;
1097
+ 'x-decorator': any;
1098
+ 'x-decorator-props': {
1099
+ labelStyle: {
1100
+ display: string;
1101
+ };
1102
+ };
1103
+ };
1104
+ };
1105
+ };
1106
+ limitExecuted: {
1107
+ type: string;
1108
+ 'x-decorator': string;
1109
+ 'x-component': string;
1110
+ 'x-component-props': {
1111
+ width: number;
1112
+ };
1113
+ properties: {
1114
+ limitExecuted: {
1115
+ 'x-collection-field': string;
1116
+ 'x-component': string;
1117
+ 'x-component-props': {
1118
+ ellipsis: boolean;
1119
+ };
1120
+ 'x-read-pretty': boolean;
1121
+ 'x-decorator': any;
1122
+ 'x-decorator-props': {
1123
+ labelStyle: {
1124
+ display: string;
1125
+ };
1126
+ };
1127
+ };
1128
+ };
1129
+ };
1130
+ actions: {
1131
+ type: string;
1132
+ title: string;
1133
+ 'x-action-column': string;
1134
+ 'x-decorator': string;
1135
+ 'x-component': string;
1136
+ 'x-component-props': {
1137
+ width: number;
1138
+ fixed: string;
1139
+ };
1140
+ properties: {
1141
+ actions: {
1142
+ type: string;
1143
+ 'x-component': string;
1144
+ properties: {
1145
+ editAction: import("@tachybase/schema").Stringify<{
1146
+ [key: symbol]: any;
1147
+ [key: `x-${string}`]: any;
1148
+ [key: `x-${number}`]: any;
1149
+ version?: string;
1150
+ name?: import("@tachybase/schema").SchemaKey;
1151
+ title?: any;
1152
+ description?: any;
1153
+ default?: any;
1154
+ readOnly?: boolean;
1155
+ writeOnly?: boolean;
1156
+ type?: import("@tachybase/schema").SchemaTypes;
1157
+ enum?: import("@tachybase/schema").SchemaEnum<any>;
1158
+ const?: any;
1159
+ multipleOf?: number;
1160
+ maximum?: number;
1161
+ exclusiveMaximum?: number;
1162
+ minimum?: number;
1163
+ exclusiveMinimum?: number;
1164
+ maxLength?: number;
1165
+ minLength?: number;
1166
+ pattern?: string | RegExp;
1167
+ maxItems?: number;
1168
+ minItems?: number;
1169
+ uniqueItems?: boolean;
1170
+ maxProperties?: number;
1171
+ minProperties?: number;
1172
+ required?: string[] | boolean | string;
1173
+ format?: string;
1174
+ $ref?: string;
1175
+ $namespace?: string;
1176
+ definitions?: import("@tachybase/schema").SchemaProperties<any, any, any, any, any, any, any, any>;
1177
+ properties?: import("@tachybase/schema").SchemaProperties<any, any, any, any, any, any, any, any>;
1178
+ items?: import("@tachybase/schema").SchemaItems<any, any, any, any, any, any, any, any>;
1179
+ additionalItems?: import("@tachybase/schema").Stringify</*elided*/ any>;
1180
+ patternProperties?: import("@tachybase/schema").SchemaProperties<any, any, any, any, any, any, any, any>;
1181
+ additionalProperties?: import("@tachybase/schema").Stringify</*elided*/ any>;
1182
+ "x-value"?: any;
1183
+ "x-index"?: number;
1184
+ "x-pattern"?: any;
1185
+ "x-display"?: any;
1186
+ "x-validator"?: any;
1187
+ "x-decorator"?: any;
1188
+ "x-decorator-props"?: any;
1189
+ "x-component"?: any;
1190
+ "x-component-props"?: any;
1191
+ "x-reactions"?: import("@tachybase/schema").SchemaReactions<any>;
1192
+ "x-content"?: any;
1193
+ "x-data"?: any;
1194
+ "x-visible"?: boolean;
1195
+ "x-hidden"?: boolean;
1196
+ "x-disabled"?: boolean;
1197
+ "x-editable"?: boolean;
1198
+ "x-read-only"?: boolean;
1199
+ "x-read-pretty"?: boolean;
1200
+ "x-compile-omitted"?: string[];
1201
+ }>;
1202
+ delete: {
1203
+ type: string;
1204
+ title: string;
1205
+ 'x-action': string;
1206
+ 'x-component': string;
1207
+ 'x-component-props': {
1208
+ confirm: {
1209
+ title: string;
1210
+ content: string;
1211
+ };
1212
+ };
1213
+ 'x-decorator': string;
1214
+ 'x-use-component-props': string;
1215
+ };
1216
+ clear: {
1217
+ type: string;
1218
+ title: string;
1219
+ 'x-action': string;
1220
+ 'x-component': string;
1221
+ 'x-component-props': {
1222
+ confirm: {
1223
+ title: string;
1224
+ content: string;
1225
+ };
1226
+ };
1227
+ 'x-decorator': string;
1228
+ 'x-use-component-props': () => {
1229
+ onClick(): Promise<void>;
1230
+ };
1231
+ };
1232
+ };
1233
+ };
1234
+ };
1235
+ };
1236
+ };
1237
+ };
1238
+ };
1239
+ };
1240
+ };
1241
+ };