@saltcorn/data 0.9.4-beta.2 → 0.9.4-beta.20
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/base-plugin/actions.d.ts +156 -67
- package/dist/base-plugin/actions.d.ts.map +1 -1
- package/dist/base-plugin/actions.js +147 -27
- package/dist/base-plugin/actions.js.map +1 -1
- package/dist/base-plugin/fieldviews.d.ts.map +1 -1
- package/dist/base-plugin/fieldviews.js +27 -10
- package/dist/base-plugin/fieldviews.js.map +1 -1
- package/dist/base-plugin/fileviews.d.ts +13 -0
- package/dist/base-plugin/fileviews.js +42 -2
- package/dist/base-plugin/fileviews.js.map +1 -1
- package/dist/base-plugin/index.d.ts +5 -2
- package/dist/base-plugin/index.d.ts.map +1 -1
- package/dist/base-plugin/types.d.ts.map +1 -1
- package/dist/base-plugin/types.js +25 -7
- package/dist/base-plugin/types.js.map +1 -1
- package/dist/base-plugin/viewtemplates/edit.d.ts +2 -0
- package/dist/base-plugin/viewtemplates/edit.d.ts.map +1 -1
- package/dist/base-plugin/viewtemplates/edit.js +194 -58
- package/dist/base-plugin/viewtemplates/edit.js.map +1 -1
- package/dist/base-plugin/viewtemplates/filter.d.ts.map +1 -1
- package/dist/base-plugin/viewtemplates/filter.js +88 -8
- package/dist/base-plugin/viewtemplates/filter.js.map +1 -1
- package/dist/base-plugin/viewtemplates/list.d.ts +3 -2
- package/dist/base-plugin/viewtemplates/list.d.ts.map +1 -1
- package/dist/base-plugin/viewtemplates/list.js +276 -41
- package/dist/base-plugin/viewtemplates/list.js.map +1 -1
- package/dist/base-plugin/viewtemplates/show.d.ts.map +1 -1
- package/dist/base-plugin/viewtemplates/show.js +130 -64
- package/dist/base-plugin/viewtemplates/show.js.map +1 -1
- package/dist/base-plugin/viewtemplates/viewable_fields.d.ts +4 -3
- package/dist/base-plugin/viewtemplates/viewable_fields.d.ts.map +1 -1
- package/dist/base-plugin/viewtemplates/viewable_fields.js +160 -47
- package/dist/base-plugin/viewtemplates/viewable_fields.js.map +1 -1
- package/dist/db/fixtures.d.ts.map +1 -1
- package/dist/db/fixtures.js +196 -30
- package/dist/db/fixtures.js.map +1 -1
- package/dist/db/state.d.ts +5 -0
- package/dist/db/state.d.ts.map +1 -1
- package/dist/db/state.js +20 -0
- package/dist/db/state.js.map +1 -1
- package/dist/migrate.d.ts +1 -0
- package/dist/migrate.d.ts.map +1 -1
- package/dist/migrate.js +6 -3
- package/dist/migrate.js.map +1 -1
- package/dist/migrations/202402071125.d.ts +2 -0
- package/dist/migrations/202402071125.d.ts.map +1 -0
- package/dist/migrations/202402071125.js +4 -0
- package/dist/migrations/202402071125.js.map +1 -0
- package/dist/models/config.d.ts.map +1 -1
- package/dist/models/config.js +33 -0
- package/dist/models/config.js.map +1 -1
- package/dist/models/email.d.ts.map +1 -1
- package/dist/models/email.js +6 -2
- package/dist/models/email.js.map +1 -1
- package/dist/models/expression.d.ts +2 -0
- package/dist/models/expression.d.ts.map +1 -1
- package/dist/models/expression.js +9 -0
- package/dist/models/expression.js.map +1 -1
- package/dist/models/field.d.ts +1 -1
- package/dist/models/field.d.ts.map +1 -1
- package/dist/models/field.js +4 -4
- package/dist/models/field.js.map +1 -1
- package/dist/models/file.d.ts +2 -0
- package/dist/models/file.d.ts.map +1 -1
- package/dist/models/file.js +9 -0
- package/dist/models/file.js.map +1 -1
- package/dist/models/internal/query.d.ts +6 -0
- package/dist/models/internal/query.d.ts.map +1 -0
- package/dist/models/internal/query.js +77 -0
- package/dist/models/internal/query.js.map +1 -0
- package/dist/models/page.d.ts.map +1 -1
- package/dist/models/page.js +4 -0
- package/dist/models/page.js.map +1 -1
- package/dist/models/page_group.d.ts +1 -0
- package/dist/models/page_group.d.ts.map +1 -1
- package/dist/models/page_group.js +1 -0
- package/dist/models/page_group.js.map +1 -1
- package/dist/models/table.d.ts +18 -4
- package/dist/models/table.d.ts.map +1 -1
- package/dist/models/table.js +78 -50
- package/dist/models/table.js.map +1 -1
- package/dist/models/trigger.d.ts +3 -3
- package/dist/models/trigger.d.ts.map +1 -1
- package/dist/models/trigger.js +69 -7
- package/dist/models/trigger.js.map +1 -1
- package/dist/models/user.d.ts.map +1 -1
- package/dist/models/user.js +5 -4
- package/dist/models/user.js.map +1 -1
- package/dist/models/view.d.ts +1 -0
- package/dist/models/view.d.ts.map +1 -1
- package/dist/models/view.js +6 -0
- package/dist/models/view.js.map +1 -1
- package/dist/plugin-helper.d.ts +8 -20
- package/dist/plugin-helper.d.ts.map +1 -1
- package/dist/plugin-helper.js +108 -76
- package/dist/plugin-helper.js.map +1 -1
- package/dist/tests/actions.test.js +143 -2
- package/dist/tests/actions.test.js.map +1 -1
- package/dist/tests/auth.test.js +101 -1
- package/dist/tests/auth.test.js.map +1 -1
- package/dist/tests/auxtest.test.js +4 -0
- package/dist/tests/auxtest.test.js.map +1 -1
- package/dist/tests/calc.test.js +11 -1
- package/dist/tests/calc.test.js.map +1 -1
- package/dist/tests/edit.test.js +394 -0
- package/dist/tests/edit.test.js.map +1 -1
- package/dist/tests/filter.test.d.ts +2 -0
- package/dist/tests/filter.test.d.ts.map +1 -0
- package/dist/tests/filter.test.js +438 -0
- package/dist/tests/filter.test.js.map +1 -0
- package/dist/tests/list.test.d.ts +2 -0
- package/dist/tests/list.test.d.ts.map +1 -0
- package/dist/tests/list.test.js +735 -0
- package/dist/tests/list.test.js.map +1 -0
- package/dist/tests/show.test.d.ts +2 -0
- package/dist/tests/show.test.d.ts.map +1 -0
- package/dist/tests/show.test.js +325 -0
- package/dist/tests/show.test.js.map +1 -0
- package/dist/tests/table.test.js +184 -56
- package/dist/tests/table.test.js.map +1 -1
- package/dist/tests/table_history.test.js +51 -0
- package/dist/tests/table_history.test.js.map +1 -1
- package/dist/tests/view.test.js +21 -1
- package/dist/tests/view.test.js.map +1 -1
- package/dist/utils.d.ts +4 -17
- package/dist/utils.d.ts.map +1 -1
- package/dist/utils.js +33 -32
- package/dist/utils.js.map +1 -1
- package/package.json +8 -7
|
@@ -84,7 +84,7 @@ export namespace webhook {
|
|
|
84
84
|
fieldview: string;
|
|
85
85
|
})[];
|
|
86
86
|
export { configFields_2 as configFields };
|
|
87
|
-
export function run_1({ row, configuration: { url, body } }: {
|
|
87
|
+
export function run_1({ row, user, configuration: { url, body } }: {
|
|
88
88
|
url: string;
|
|
89
89
|
body: object;
|
|
90
90
|
}): Promise<object>;
|
|
@@ -207,49 +207,49 @@ export namespace send_email {
|
|
|
207
207
|
label: string;
|
|
208
208
|
sublabel: string;
|
|
209
209
|
type: string;
|
|
210
|
-
|
|
211
|
-
required: boolean;
|
|
210
|
+
required?: undefined;
|
|
212
211
|
attributes?: undefined;
|
|
213
212
|
showIf?: undefined;
|
|
214
213
|
input_type?: undefined;
|
|
215
214
|
options?: undefined;
|
|
215
|
+
class?: undefined;
|
|
216
216
|
default?: undefined;
|
|
217
217
|
} | {
|
|
218
218
|
name: string;
|
|
219
219
|
label: string;
|
|
220
|
+
sublabel: string;
|
|
220
221
|
type: string;
|
|
222
|
+
class: string;
|
|
221
223
|
required: boolean;
|
|
222
224
|
attributes?: undefined;
|
|
223
225
|
showIf?: undefined;
|
|
224
|
-
sublabel?: undefined;
|
|
225
226
|
input_type?: undefined;
|
|
226
227
|
options?: undefined;
|
|
227
|
-
class?: undefined;
|
|
228
228
|
default?: undefined;
|
|
229
229
|
} | {
|
|
230
230
|
name: string;
|
|
231
231
|
label: string;
|
|
232
|
-
sublabel: string;
|
|
233
|
-
input_type: string;
|
|
234
|
-
options: string[];
|
|
235
232
|
type: string;
|
|
236
|
-
|
|
237
|
-
required?: undefined;
|
|
233
|
+
required: boolean;
|
|
238
234
|
attributes?: undefined;
|
|
239
235
|
showIf?: undefined;
|
|
236
|
+
sublabel?: undefined;
|
|
237
|
+
input_type?: undefined;
|
|
238
|
+
options?: undefined;
|
|
240
239
|
class?: undefined;
|
|
240
|
+
default?: undefined;
|
|
241
241
|
} | {
|
|
242
242
|
name: string;
|
|
243
243
|
label: string;
|
|
244
244
|
sublabel: string;
|
|
245
|
+
input_type: string;
|
|
246
|
+
options: string[];
|
|
245
247
|
type: string;
|
|
248
|
+
default: string;
|
|
246
249
|
required?: undefined;
|
|
247
250
|
attributes?: undefined;
|
|
248
251
|
showIf?: undefined;
|
|
249
|
-
input_type?: undefined;
|
|
250
|
-
options?: undefined;
|
|
251
252
|
class?: undefined;
|
|
252
|
-
default?: undefined;
|
|
253
253
|
} | {
|
|
254
254
|
name: string;
|
|
255
255
|
label: string;
|
|
@@ -279,7 +279,7 @@ export namespace send_email {
|
|
|
279
279
|
})[]>;
|
|
280
280
|
export { configFields_4 as configFields };
|
|
281
281
|
export const requireRow: boolean;
|
|
282
|
-
export function run_3({ row, table, configuration: { body_type, body_field, viewname, subject, subject_formula, to_email, to_email_field, to_email_fixed, only_if, attachment_path, disable_notify, confirm_field, }, user, }: {
|
|
282
|
+
export function run_3({ row, table, configuration: { body_type, body_field, viewname, subject, subject_formula, to_email, to_email_field, to_email_fixed, cc_email, only_if, attachment_path, disable_notify, confirm_field, }, user, }: {
|
|
283
283
|
row: object;
|
|
284
284
|
table: object;
|
|
285
285
|
configuration: object;
|
|
@@ -454,7 +454,9 @@ export namespace navigate {
|
|
|
454
454
|
attributes?: undefined;
|
|
455
455
|
})[];
|
|
456
456
|
export { configFields_10 as configFields };
|
|
457
|
-
export function run_9({ configuration: { nav_action, url } }: {
|
|
457
|
+
export function run_9({ row, user, configuration: { nav_action, url } }: {
|
|
458
|
+
row: any;
|
|
459
|
+
user: any;
|
|
458
460
|
configuration: {
|
|
459
461
|
nav_action: any;
|
|
460
462
|
url: any;
|
|
@@ -482,10 +484,10 @@ export namespace navigate {
|
|
|
482
484
|
} | undefined>;
|
|
483
485
|
export { run_9 as run };
|
|
484
486
|
}
|
|
485
|
-
export namespace
|
|
487
|
+
export namespace step_control_flow {
|
|
486
488
|
const description_11: string;
|
|
487
489
|
export { description_11 as description };
|
|
488
|
-
const configFields_11: {
|
|
490
|
+
const configFields_11: ({
|
|
489
491
|
name: string;
|
|
490
492
|
label: string;
|
|
491
493
|
type: string;
|
|
@@ -493,21 +495,76 @@ export namespace form_action {
|
|
|
493
495
|
attributes: {
|
|
494
496
|
options: string[];
|
|
495
497
|
};
|
|
496
|
-
|
|
498
|
+
showIf?: undefined;
|
|
499
|
+
} | {
|
|
500
|
+
name: string;
|
|
501
|
+
label: string;
|
|
502
|
+
type: string;
|
|
503
|
+
required: boolean;
|
|
504
|
+
showIf: {
|
|
505
|
+
control_action: string[];
|
|
506
|
+
};
|
|
507
|
+
attributes?: undefined;
|
|
508
|
+
})[];
|
|
497
509
|
export { configFields_11 as configFields };
|
|
498
|
-
export function run_10({ configuration: {
|
|
510
|
+
export function run_10({ row, user, configuration: { control_action, step } }: {
|
|
511
|
+
row: any;
|
|
512
|
+
user: any;
|
|
513
|
+
configuration: {
|
|
514
|
+
control_action: any;
|
|
515
|
+
step: any;
|
|
516
|
+
};
|
|
517
|
+
}): Promise<{
|
|
518
|
+
halt_steps: boolean;
|
|
519
|
+
goto_step?: undefined;
|
|
520
|
+
clear_return_values?: undefined;
|
|
521
|
+
} | {
|
|
522
|
+
goto_step: any;
|
|
523
|
+
halt_steps?: undefined;
|
|
524
|
+
clear_return_values?: undefined;
|
|
525
|
+
} | {
|
|
526
|
+
clear_return_values: boolean;
|
|
527
|
+
halt_steps?: undefined;
|
|
528
|
+
goto_step?: undefined;
|
|
529
|
+
} | undefined>;
|
|
530
|
+
export { run_10 as run };
|
|
531
|
+
}
|
|
532
|
+
export namespace form_action {
|
|
533
|
+
const description_12: string;
|
|
534
|
+
export { description_12 as description };
|
|
535
|
+
const requireRow_4: boolean;
|
|
536
|
+
export { requireRow_4 as requireRow };
|
|
537
|
+
const configFields_12: {
|
|
538
|
+
name: string;
|
|
539
|
+
label: string;
|
|
540
|
+
type: string;
|
|
541
|
+
required: boolean;
|
|
542
|
+
attributes: {
|
|
543
|
+
options: string[];
|
|
544
|
+
};
|
|
545
|
+
}[];
|
|
546
|
+
export { configFields_12 as configFields };
|
|
547
|
+
export function run_11({ row, table, configuration: { form_action } }: {
|
|
548
|
+
row: any;
|
|
549
|
+
table: any;
|
|
499
550
|
configuration: {
|
|
500
551
|
form_action: any;
|
|
501
552
|
};
|
|
502
553
|
}): Promise<{
|
|
503
554
|
eval_js: string;
|
|
555
|
+
set_fields?: undefined;
|
|
556
|
+
} | {
|
|
557
|
+
set_fields: {
|
|
558
|
+
[x: number]: any;
|
|
559
|
+
};
|
|
560
|
+
eval_js?: undefined;
|
|
504
561
|
}>;
|
|
505
|
-
export {
|
|
562
|
+
export { run_11 as run };
|
|
506
563
|
}
|
|
507
564
|
export namespace toast {
|
|
508
|
-
const
|
|
509
|
-
export {
|
|
510
|
-
const
|
|
565
|
+
const description_13: string;
|
|
566
|
+
export { description_13 as description };
|
|
567
|
+
const configFields_13: ({
|
|
511
568
|
name: string;
|
|
512
569
|
label: string;
|
|
513
570
|
type: string;
|
|
@@ -522,8 +579,10 @@ export namespace toast {
|
|
|
522
579
|
required: boolean;
|
|
523
580
|
attributes?: undefined;
|
|
524
581
|
})[];
|
|
525
|
-
export {
|
|
526
|
-
export function
|
|
582
|
+
export { configFields_13 as configFields };
|
|
583
|
+
export function run_12({ row, user, configuration: { type, notify_type, text } }: {
|
|
584
|
+
row: any;
|
|
585
|
+
user: any;
|
|
527
586
|
configuration: {
|
|
528
587
|
type: any;
|
|
529
588
|
notify_type: any;
|
|
@@ -542,12 +601,12 @@ export namespace toast {
|
|
|
542
601
|
error?: undefined;
|
|
543
602
|
notify_success?: undefined;
|
|
544
603
|
}>;
|
|
545
|
-
export {
|
|
604
|
+
export { run_12 as run };
|
|
546
605
|
}
|
|
547
606
|
export namespace run_js_code {
|
|
548
|
-
const
|
|
549
|
-
export {
|
|
550
|
-
export function
|
|
607
|
+
const description_14: string;
|
|
608
|
+
export { description_14 as description };
|
|
609
|
+
export function configFields_14({ table }: {
|
|
551
610
|
table: any;
|
|
552
611
|
}): Promise<({
|
|
553
612
|
name: string;
|
|
@@ -587,17 +646,17 @@ export namespace run_js_code {
|
|
|
587
646
|
help?: undefined;
|
|
588
647
|
showIf?: undefined;
|
|
589
648
|
})[]>;
|
|
590
|
-
export {
|
|
649
|
+
export { configFields_14 as configFields };
|
|
591
650
|
export { run_code as run };
|
|
592
651
|
}
|
|
593
652
|
export namespace duplicate_row_prefill_edit {
|
|
594
|
-
export function
|
|
653
|
+
export function configFields_15({ table }: {
|
|
595
654
|
table: any;
|
|
596
655
|
}): Promise<any[]>;
|
|
597
|
-
export {
|
|
598
|
-
const
|
|
599
|
-
export {
|
|
600
|
-
export function
|
|
656
|
+
export { configFields_15 as configFields };
|
|
657
|
+
const requireRow_5: boolean;
|
|
658
|
+
export { requireRow_5 as requireRow };
|
|
659
|
+
export function run_13({ row, table, configuration: { viewname, ...flds }, user }: {
|
|
601
660
|
row: any;
|
|
602
661
|
table: any;
|
|
603
662
|
configuration: {
|
|
@@ -608,12 +667,12 @@ export namespace duplicate_row_prefill_edit {
|
|
|
608
667
|
}): Promise<{
|
|
609
668
|
goto: string;
|
|
610
669
|
}>;
|
|
611
|
-
export {
|
|
670
|
+
export { run_13 as run };
|
|
612
671
|
}
|
|
613
672
|
export namespace set_user_language {
|
|
614
|
-
const
|
|
615
|
-
export {
|
|
616
|
-
export function
|
|
673
|
+
const description_15: string;
|
|
674
|
+
export { description_15 as description };
|
|
675
|
+
export function configFields_16({ table }: {
|
|
617
676
|
table: any;
|
|
618
677
|
}): Promise<{
|
|
619
678
|
name: string;
|
|
@@ -626,8 +685,8 @@ export namespace set_user_language {
|
|
|
626
685
|
}[];
|
|
627
686
|
};
|
|
628
687
|
}[]>;
|
|
629
|
-
export {
|
|
630
|
-
export function
|
|
688
|
+
export { configFields_16 as configFields };
|
|
689
|
+
export function run_14({ configuration: { language }, user, req, res }: {
|
|
631
690
|
configuration: {
|
|
632
691
|
language: any;
|
|
633
692
|
};
|
|
@@ -637,12 +696,12 @@ export namespace set_user_language {
|
|
|
637
696
|
}): Promise<{
|
|
638
697
|
reload_page: boolean;
|
|
639
698
|
}>;
|
|
640
|
-
export {
|
|
699
|
+
export { run_14 as run };
|
|
641
700
|
}
|
|
642
701
|
export namespace sync_table_from_external {
|
|
643
|
-
const
|
|
644
|
-
export {
|
|
645
|
-
export function
|
|
702
|
+
const description_16: string;
|
|
703
|
+
export { description_16 as description };
|
|
704
|
+
export function configFields_17({ table }: {
|
|
646
705
|
table: any;
|
|
647
706
|
}): Promise<({
|
|
648
707
|
name: string;
|
|
@@ -697,41 +756,71 @@ export namespace sync_table_from_external {
|
|
|
697
756
|
attributes?: undefined;
|
|
698
757
|
default?: undefined;
|
|
699
758
|
})[]>;
|
|
700
|
-
export {
|
|
701
|
-
export function
|
|
759
|
+
export { configFields_17 as configFields };
|
|
760
|
+
export function run_15({ configuration: { row_expr, table_src, table_dest, pk_field, delete_rows, match_field_names, }, user, ...rest }: {
|
|
702
761
|
row: object;
|
|
703
762
|
configuration: object;
|
|
704
763
|
user: object;
|
|
705
764
|
rest: any;
|
|
706
765
|
}): Promise<boolean | object>;
|
|
707
|
-
export {
|
|
766
|
+
export { run_15 as run };
|
|
708
767
|
}
|
|
709
768
|
export namespace reload_embedded_view {
|
|
710
|
-
const
|
|
711
|
-
export {
|
|
712
|
-
export function
|
|
769
|
+
const description_17: string;
|
|
770
|
+
export { description_17 as description };
|
|
771
|
+
export function configFields_18(): Promise<({
|
|
713
772
|
name: string;
|
|
714
773
|
label: string;
|
|
774
|
+
class: string;
|
|
715
775
|
type: string;
|
|
716
776
|
required: boolean;
|
|
717
777
|
attributes: {
|
|
718
778
|
options: any[];
|
|
719
779
|
};
|
|
720
|
-
}
|
|
721
|
-
|
|
722
|
-
|
|
780
|
+
} | {
|
|
781
|
+
name: string;
|
|
782
|
+
label: string;
|
|
783
|
+
type: string;
|
|
784
|
+
class: string;
|
|
785
|
+
required?: undefined;
|
|
786
|
+
attributes?: undefined;
|
|
787
|
+
})[]>;
|
|
788
|
+
export { configFields_18 as configFields };
|
|
789
|
+
export function run_16({ row, user, configuration: { view, new_state_fml } }: {
|
|
790
|
+
row: any;
|
|
791
|
+
user: any;
|
|
723
792
|
configuration: {
|
|
724
793
|
view: any;
|
|
794
|
+
new_state_fml: any;
|
|
725
795
|
};
|
|
726
796
|
}): Promise<{
|
|
727
797
|
eval_js: string;
|
|
728
798
|
}>;
|
|
729
|
-
export {
|
|
799
|
+
export { run_16 as run };
|
|
800
|
+
}
|
|
801
|
+
export namespace sleep {
|
|
802
|
+
const description_18: string;
|
|
803
|
+
export { description_18 as description };
|
|
804
|
+
const configFields_19: {
|
|
805
|
+
name: string;
|
|
806
|
+
label: string;
|
|
807
|
+
type: string;
|
|
808
|
+
required: boolean;
|
|
809
|
+
}[];
|
|
810
|
+
export { configFields_19 as configFields };
|
|
811
|
+
export function run_17({ configuration: { seconds } }: {
|
|
812
|
+
configuration: {
|
|
813
|
+
seconds: any;
|
|
814
|
+
};
|
|
815
|
+
}): Promise<{
|
|
816
|
+
eval_js: string;
|
|
817
|
+
}>;
|
|
818
|
+
export { run_17 as run };
|
|
730
819
|
}
|
|
731
820
|
export namespace notify_user {
|
|
732
|
-
const
|
|
733
|
-
export {
|
|
734
|
-
export function
|
|
821
|
+
const description_19: string;
|
|
822
|
+
export { description_19 as description };
|
|
823
|
+
export function configFields_20(): ({
|
|
735
824
|
name: string;
|
|
736
825
|
label: string;
|
|
737
826
|
type: string;
|
|
@@ -742,18 +831,18 @@ export namespace notify_user {
|
|
|
742
831
|
required: boolean;
|
|
743
832
|
type: string;
|
|
744
833
|
})[];
|
|
745
|
-
export {
|
|
746
|
-
export function
|
|
834
|
+
export { configFields_20 as configFields };
|
|
835
|
+
export function run_18({ row, user, configuration: { title, body, link, user_spec }, }: {
|
|
747
836
|
row: object;
|
|
748
837
|
configuration: object;
|
|
749
838
|
user: object;
|
|
750
839
|
}): Promise<void>;
|
|
751
|
-
export {
|
|
840
|
+
export { run_18 as run };
|
|
752
841
|
}
|
|
753
842
|
export namespace convert_session_to_user {
|
|
754
|
-
const
|
|
755
|
-
export {
|
|
756
|
-
export function
|
|
843
|
+
const description_20: string;
|
|
844
|
+
export { description_20 as description };
|
|
845
|
+
export function configFields_21({ table }: {
|
|
757
846
|
table: any;
|
|
758
847
|
}): Promise<({
|
|
759
848
|
name: string;
|
|
@@ -774,8 +863,8 @@ export namespace convert_session_to_user {
|
|
|
774
863
|
input_type?: undefined;
|
|
775
864
|
options?: undefined;
|
|
776
865
|
})[]>;
|
|
777
|
-
export {
|
|
778
|
-
export function
|
|
866
|
+
export { configFields_21 as configFields };
|
|
867
|
+
export function run_19({ row, configuration: { table_name, session_field, user_field }, user, }: {
|
|
779
868
|
row: any;
|
|
780
869
|
configuration: {
|
|
781
870
|
table_name: any;
|
|
@@ -784,7 +873,7 @@ export namespace convert_session_to_user {
|
|
|
784
873
|
};
|
|
785
874
|
user: any;
|
|
786
875
|
}): Promise<void>;
|
|
787
|
-
export {
|
|
876
|
+
export { run_19 as run };
|
|
788
877
|
}
|
|
789
878
|
export {};
|
|
790
879
|
//# sourceMappingURL=actions.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"actions.d.ts","sourceRoot":"","sources":["../../base-plugin/actions.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"actions.d.ts","sourceRoot":"","sources":["../../base-plugin/actions.js"],"names":[],"mappings":"AAyEA;;;;;;;;;GASG;AACH;;;;;;;;;;iBA0EC;;;;;;;;;;;;;;IAuCiB;;;;;;;;;;;;;;;;;;;;;;;;;;;SAqBb;;IAQI;;;;sBAWJ;;;;;;;;;;;;;;;;;;;IA+BI;;;wBAQJ;;;;;;IAca;;;;;;SAeb;;IAUI;;;;;wBA0CJ;;;;;;IAea;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UA+Ib;;;IAUI;;;;;wBAqHJ;;;;;;IAea;;;;;;;;SAYb;;;;IAUI;;;;;wBAsBJ;;;;;;IAaa,0CAAQ;;;;IASjB;;;;wBAKJ;;;;;;IAgBa;;;;;;;;;;;;;;;;;;;;;;UAiBb;;IAMI;;sBAgBJ;;;;;;IAea;;;;;;;;;;;;;;;;;;UAmBb;;IAUI;;;;;;kCAiBJ;;;;;;IAca;;;;;;;;;;;;;;;;;;;;;;;;UA0Bb;;;;IAEI;;;;;;;;;qBAkBJ;;;;;;;;;;;;;;;;;;;;;;;;;;IAuCI;;;;;;;;;;;;;;;;;;;;;;;;;;;mBAkBJ;;;;;;;;;;;;;;;;;;;;;;;;;;IA2BI;;;;;;;;;;;;;;;;;;;mBAYJ;;;;;;;;;;;;;;;;;;IAuBI;;;;;;;;;;;;;;OA2BJ;;;;;;;;;;;;;;;;;;;;;;IA2BI;;;;;;;;;;;;;;;;;;;;OAYJ;;;;;;IAea;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UA+Eb;;;;;IAQa;;uBAsBb;;;;IAEI;;;;;;;;;;OAUJ;;;;;;IASa;;;;;;;;;;;;SAcb;;IACI;;;;;;;;;OAgBJ;;;;;;IAea;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UAyDb;;IASI;;;;;kCAmFJ;;;;;;IAIa;;;;;;;;;;;;;;;;UAkBb;;IACI;;;;;;;;;OAQJ;;;;;;;;;;;;;IAYI;;;;;;OAMJ;;;;;;IAIa;;;;;;;;;;SAsBb;;IAQI;;;;sBAmBJ;;;;;;IAMa;;;;;;;;;;;;;;;;;;;;UA2Cb;;IACI;;;;;;;;sBAeJ"}
|