@saltcorn/data 0.9.6-beta.2 → 0.9.6-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 +30 -2
- package/dist/base-plugin/actions.d.ts.map +1 -1
- package/dist/base-plugin/actions.js +36 -14
- package/dist/base-plugin/actions.js.map +1 -1
- package/dist/base-plugin/fileviews.d.ts +16 -0
- package/dist/base-plugin/fileviews.js +45 -1
- package/dist/base-plugin/fileviews.js.map +1 -1
- package/dist/base-plugin/index.d.ts +375 -246
- package/dist/base-plugin/index.d.ts.map +1 -1
- package/dist/base-plugin/types.d.ts +382 -287
- package/dist/base-plugin/types.d.ts.map +1 -1
- package/dist/base-plugin/types.js +271 -30
- package/dist/base-plugin/types.js.map +1 -1
- package/dist/base-plugin/viewtemplates/edit.d.ts +5 -2
- package/dist/base-plugin/viewtemplates/edit.d.ts.map +1 -1
- package/dist/base-plugin/viewtemplates/edit.js +69 -17
- package/dist/base-plugin/viewtemplates/edit.js.map +1 -1
- package/dist/base-plugin/viewtemplates/feed.d.ts +9 -4
- package/dist/base-plugin/viewtemplates/feed.d.ts.map +1 -1
- package/dist/base-plugin/viewtemplates/feed.js +23 -10
- package/dist/base-plugin/viewtemplates/feed.js.map +1 -1
- package/dist/base-plugin/viewtemplates/filter.js +2 -2
- package/dist/base-plugin/viewtemplates/filter.js.map +1 -1
- package/dist/base-plugin/viewtemplates/list.d.ts.map +1 -1
- package/dist/base-plugin/viewtemplates/list.js +22 -4
- package/dist/base-plugin/viewtemplates/list.js.map +1 -1
- package/dist/base-plugin/viewtemplates/room.js +1 -1
- package/dist/base-plugin/viewtemplates/room.js.map +1 -1
- package/dist/base-plugin/viewtemplates/show.js +2 -2
- package/dist/base-plugin/viewtemplates/show.js.map +1 -1
- package/dist/base-plugin/viewtemplates/viewable_fields.d.ts.map +1 -1
- package/dist/base-plugin/viewtemplates/viewable_fields.js +20 -4
- package/dist/base-plugin/viewtemplates/viewable_fields.js.map +1 -1
- package/dist/db/state.d.ts +1 -0
- package/dist/db/state.d.ts.map +1 -1
- package/dist/db/state.js +3 -0
- package/dist/db/state.js.map +1 -1
- package/dist/migrations/202406260915.d.ts +2 -0
- package/dist/migrations/202406260915.d.ts.map +1 -0
- package/dist/migrations/202406260915.js +5 -0
- package/dist/migrations/202406260915.js.map +1 -0
- package/dist/mobile-mocks/copy_excluded_files.d.ts +2 -0
- package/dist/mobile-mocks/copy_excluded_files.d.ts.map +1 -0
- package/dist/mobile-mocks/copy_excluded_files.js +5 -0
- package/dist/mobile-mocks/copy_excluded_files.js.map +1 -0
- package/dist/mobile-mocks/node/vm.js +201 -0
- package/dist/models/config.d.ts.map +1 -1
- package/dist/models/config.js +15 -1
- package/dist/models/config.js.map +1 -1
- package/dist/models/expression.d.ts.map +1 -1
- package/dist/models/expression.js +5 -1
- package/dist/models/expression.js.map +1 -1
- package/dist/models/field.d.ts.map +1 -1
- package/dist/models/field.js +10 -12
- package/dist/models/field.js.map +1 -1
- package/dist/models/file.d.ts +1 -0
- package/dist/models/file.d.ts.map +1 -1
- package/dist/models/file.js +6 -1
- package/dist/models/file.js.map +1 -1
- package/dist/models/index.d.ts +1 -1
- package/dist/models/internal/query.d.ts +1 -1
- package/dist/models/internal/query.d.ts.map +1 -1
- package/dist/models/internal/query.js +6 -4
- package/dist/models/internal/query.js.map +1 -1
- package/dist/models/notification.d.ts +2 -0
- package/dist/models/notification.d.ts.map +1 -1
- package/dist/models/notification.js +6 -0
- package/dist/models/notification.js.map +1 -1
- package/dist/models/page.d.ts.map +1 -1
- package/dist/models/page.js +8 -14
- package/dist/models/page.js.map +1 -1
- package/dist/models/table.d.ts +1 -1
- package/dist/models/table.d.ts.map +1 -1
- package/dist/models/table.js +46 -12
- package/dist/models/table.js.map +1 -1
- package/dist/models/trigger.d.ts +6 -1
- package/dist/models/trigger.d.ts.map +1 -1
- package/dist/models/trigger.js +17 -2
- package/dist/models/trigger.js.map +1 -1
- package/dist/models/view.d.ts.map +1 -1
- package/dist/models/view.js +5 -10
- package/dist/models/view.js.map +1 -1
- package/dist/plugin-helper.d.ts +1 -1
- package/dist/plugin-helper.d.ts.map +1 -1
- package/dist/plugin-helper.js +17 -10
- package/dist/plugin-helper.js.map +1 -1
- package/dist/tests/actions.test.js +14 -4
- package/dist/tests/actions.test.js.map +1 -1
- package/dist/tests/auxtest.test.js +7 -1
- package/dist/tests/auxtest.test.js.map +1 -1
- package/dist/tests/calc.test.js +46 -2
- package/dist/tests/calc.test.js.map +1 -1
- package/dist/tests/edit.test.js +84 -2
- package/dist/tests/edit.test.js.map +1 -1
- package/dist/tests/exact_views.test.js +5 -5
- package/dist/tests/exact_views.test.js.map +1 -1
- package/dist/tests/file.test.js +9 -0
- package/dist/tests/file.test.js.map +1 -1
- package/dist/tests/filter.test.js +3 -3
- package/dist/tests/filter.test.js.map +1 -1
- package/dist/tests/models.test.js +1 -1
- package/dist/tests/show.test.js +1 -1
- package/dist/tests/show.test.js.map +1 -1
- package/dist/tests/table.test.js +93 -21
- package/dist/tests/table.test.js.map +1 -1
- package/dist/tests/view.test.js +5 -1
- package/dist/tests/view.test.js.map +1 -1
- package/dist/utils.d.ts +2 -0
- package/dist/utils.d.ts.map +1 -1
- package/dist/utils.js +33 -0
- package/dist/utils.js.map +1 -1
- package/dist/web-mobile-commons.d.ts.map +1 -1
- package/dist/web-mobile-commons.js +7 -1
- package/dist/web-mobile-commons.js.map +1 -1
- package/package.json +8 -8
- package/webpack.config.js +1 -0
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
export const types: ({
|
|
2
2
|
name: string;
|
|
3
|
+
description: string;
|
|
3
4
|
sql_name: string;
|
|
4
5
|
js_type: string;
|
|
5
6
|
attributes: ({ table }: object) => object;
|
|
@@ -22,6 +23,22 @@ export const types: ({
|
|
|
22
23
|
description: string;
|
|
23
24
|
run: (s: any) => any;
|
|
24
25
|
};
|
|
26
|
+
monospace_block: {
|
|
27
|
+
isEdit: boolean;
|
|
28
|
+
configFields: ({
|
|
29
|
+
name: string;
|
|
30
|
+
label: string;
|
|
31
|
+
sublabel: string;
|
|
32
|
+
type: string;
|
|
33
|
+
} | {
|
|
34
|
+
name: string;
|
|
35
|
+
label: string;
|
|
36
|
+
type: string;
|
|
37
|
+
sublabel?: undefined;
|
|
38
|
+
})[];
|
|
39
|
+
description: string;
|
|
40
|
+
run: (s: any, req: any, attrs?: {}) => any;
|
|
41
|
+
};
|
|
25
42
|
ellipsize: {
|
|
26
43
|
isEdit: boolean;
|
|
27
44
|
configFields: {
|
|
@@ -237,6 +254,7 @@ export const types: ({
|
|
|
237
254
|
validate_attributes: ({ min_length, max_length, regexp }: object) => object;
|
|
238
255
|
} | {
|
|
239
256
|
name: string;
|
|
257
|
+
description: string;
|
|
240
258
|
sql_name: string;
|
|
241
259
|
js_type: string;
|
|
242
260
|
contract: ({ min, max }: {
|
|
@@ -455,6 +473,59 @@ export const types: ({
|
|
|
455
473
|
blockDisplay: boolean;
|
|
456
474
|
run: (nm: any, v: any, attrs: {} | undefined, cls: any, required: any, field: any, state?: {}) => any;
|
|
457
475
|
};
|
|
476
|
+
to_locale_string: {
|
|
477
|
+
description: string;
|
|
478
|
+
configFields: (field: any) => ({
|
|
479
|
+
type: string;
|
|
480
|
+
name: string;
|
|
481
|
+
label: string;
|
|
482
|
+
sublabel: string;
|
|
483
|
+
required?: undefined;
|
|
484
|
+
attributes?: undefined;
|
|
485
|
+
showIf?: undefined;
|
|
486
|
+
} | {
|
|
487
|
+
type: string;
|
|
488
|
+
name: string;
|
|
489
|
+
label: string;
|
|
490
|
+
required: boolean;
|
|
491
|
+
attributes: {
|
|
492
|
+
options: string[];
|
|
493
|
+
};
|
|
494
|
+
sublabel?: undefined;
|
|
495
|
+
showIf?: undefined;
|
|
496
|
+
} | {
|
|
497
|
+
type: string;
|
|
498
|
+
name: string;
|
|
499
|
+
label: string;
|
|
500
|
+
sublabel: string;
|
|
501
|
+
required: boolean;
|
|
502
|
+
showIf: {
|
|
503
|
+
style: string;
|
|
504
|
+
};
|
|
505
|
+
attributes?: undefined;
|
|
506
|
+
} | {
|
|
507
|
+
type: string;
|
|
508
|
+
name: string;
|
|
509
|
+
label: string;
|
|
510
|
+
required: boolean;
|
|
511
|
+
showIf: {
|
|
512
|
+
style: string;
|
|
513
|
+
};
|
|
514
|
+
attributes: {
|
|
515
|
+
options: string[];
|
|
516
|
+
};
|
|
517
|
+
sublabel?: undefined;
|
|
518
|
+
})[];
|
|
519
|
+
isEdit: boolean;
|
|
520
|
+
run: (v: any, req: any, attrs?: {}) => string;
|
|
521
|
+
};
|
|
522
|
+
role_select: {
|
|
523
|
+
isEdit: boolean;
|
|
524
|
+
blockDisplay: boolean;
|
|
525
|
+
description: string;
|
|
526
|
+
fill_options: (field: any) => Promise<void>;
|
|
527
|
+
run: (nm: any, v: any, attrs: any, cls: any, required: any, field: any) => any;
|
|
528
|
+
};
|
|
458
529
|
};
|
|
459
530
|
attributes: object[];
|
|
460
531
|
validate_attributes: ({ min, max }: object) => boolean;
|
|
@@ -462,6 +533,7 @@ export const types: ({
|
|
|
462
533
|
validate: ({ min, max }: object) => boolean;
|
|
463
534
|
} | {
|
|
464
535
|
name: string;
|
|
536
|
+
description: string;
|
|
465
537
|
sql_name: string;
|
|
466
538
|
js_type: string;
|
|
467
539
|
contract: () => Function;
|
|
@@ -538,6 +610,7 @@ export const types: ({
|
|
|
538
610
|
validate: () => boolean;
|
|
539
611
|
} | {
|
|
540
612
|
name: string;
|
|
613
|
+
description: string;
|
|
541
614
|
sql_name: string;
|
|
542
615
|
js_type: string;
|
|
543
616
|
contract: () => Function;
|
|
@@ -609,6 +682,7 @@ export const types: ({
|
|
|
609
682
|
validate: () => boolean;
|
|
610
683
|
} | {
|
|
611
684
|
name: string;
|
|
685
|
+
description: string;
|
|
612
686
|
sql_name: string;
|
|
613
687
|
js_type: string;
|
|
614
688
|
contract: ({ min, max }: {
|
|
@@ -775,6 +849,52 @@ export const types: ({
|
|
|
775
849
|
blockDisplay: boolean;
|
|
776
850
|
run: (nm: any, v: any, attrs: {} | undefined, cls: any, required: any, field: any, state?: {}) => any;
|
|
777
851
|
};
|
|
852
|
+
to_locale_string: {
|
|
853
|
+
description: string;
|
|
854
|
+
configFields: (field: any) => ({
|
|
855
|
+
type: string;
|
|
856
|
+
name: string;
|
|
857
|
+
label: string;
|
|
858
|
+
sublabel: string;
|
|
859
|
+
required?: undefined;
|
|
860
|
+
attributes?: undefined;
|
|
861
|
+
showIf?: undefined;
|
|
862
|
+
} | {
|
|
863
|
+
type: string;
|
|
864
|
+
name: string;
|
|
865
|
+
label: string;
|
|
866
|
+
required: boolean;
|
|
867
|
+
attributes: {
|
|
868
|
+
options: string[];
|
|
869
|
+
};
|
|
870
|
+
sublabel?: undefined;
|
|
871
|
+
showIf?: undefined;
|
|
872
|
+
} | {
|
|
873
|
+
type: string;
|
|
874
|
+
name: string;
|
|
875
|
+
label: string;
|
|
876
|
+
sublabel: string;
|
|
877
|
+
required: boolean;
|
|
878
|
+
showIf: {
|
|
879
|
+
style: string;
|
|
880
|
+
};
|
|
881
|
+
attributes?: undefined;
|
|
882
|
+
} | {
|
|
883
|
+
type: string;
|
|
884
|
+
name: string;
|
|
885
|
+
label: string;
|
|
886
|
+
required: boolean;
|
|
887
|
+
showIf: {
|
|
888
|
+
style: string;
|
|
889
|
+
};
|
|
890
|
+
attributes: {
|
|
891
|
+
options: string[];
|
|
892
|
+
};
|
|
893
|
+
sublabel?: undefined;
|
|
894
|
+
})[];
|
|
895
|
+
isEdit: boolean;
|
|
896
|
+
run: (v: any, req: any, attrs?: {}) => string;
|
|
897
|
+
};
|
|
778
898
|
show_with_html: {
|
|
779
899
|
configFields: {
|
|
780
900
|
input_type: string;
|
|
@@ -796,6 +916,7 @@ export const types: ({
|
|
|
796
916
|
validate: ({ min, max }: object) => boolean | object;
|
|
797
917
|
} | {
|
|
798
918
|
name: string;
|
|
919
|
+
description: string;
|
|
799
920
|
sql_name: string;
|
|
800
921
|
js_type: string;
|
|
801
922
|
contract: () => Function;
|
|
@@ -834,64 +955,45 @@ export const types: ({
|
|
|
834
955
|
export const viewtemplates: ({
|
|
835
956
|
name: string;
|
|
836
957
|
description: string;
|
|
837
|
-
|
|
838
|
-
|
|
839
|
-
|
|
840
|
-
view_to_create?: string | undefined;
|
|
841
|
-
create_view_display: string;
|
|
842
|
-
create_view_label?: string | undefined;
|
|
843
|
-
default_state?: object | undefined;
|
|
844
|
-
create_view_location?: string | undefined;
|
|
845
|
-
}, stateWithId?: object | undefined, extraOpts: object, { listQuery }: {
|
|
846
|
-
listQuery: any;
|
|
847
|
-
}) => Promise<any>;
|
|
848
|
-
view_quantity: string;
|
|
849
|
-
get_state_fields: (table_id: string, viewname: any, { columns }: {
|
|
958
|
+
get_state_fields: () => object[];
|
|
959
|
+
configuration_workflow: () => import("../models/workflow");
|
|
960
|
+
run: (table_id: number, viewname: string, { columns, layout }: {
|
|
850
961
|
columns: object[];
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
962
|
+
layout: object;
|
|
963
|
+
}, state: object, extra: object, { distinctValuesQuery }: {
|
|
964
|
+
distinctValuesQuery: any;
|
|
965
|
+
}) => Promise<Layout>;
|
|
966
|
+
initial_config: () => Promise<object>;
|
|
967
|
+
display_state_form: boolean;
|
|
968
|
+
getStringsForI18n({ layout }: {
|
|
969
|
+
layout: any;
|
|
970
|
+
}): string[];
|
|
856
971
|
routes: {
|
|
857
|
-
run_action: (table_id:
|
|
858
|
-
|
|
859
|
-
layout: any;
|
|
860
|
-
}, body: object, { req, res }: {
|
|
861
|
-
req: object;
|
|
972
|
+
run_action: (table_id: any, viewname: any, config: any, body: any, { req, res }: {
|
|
973
|
+
req: any;
|
|
862
974
|
res: any;
|
|
863
|
-
}, {
|
|
864
|
-
|
|
865
|
-
}) => Promise<
|
|
975
|
+
}, { actionQuery }: {
|
|
976
|
+
actionQuery: any;
|
|
977
|
+
}) => Promise<any>;
|
|
866
978
|
};
|
|
867
|
-
|
|
868
|
-
default_state_form: ({ default_state }: object) => boolean;
|
|
869
|
-
getStringsForI18n({ columns, create_view_label }: {
|
|
870
|
-
columns: any;
|
|
871
|
-
create_view_label: any;
|
|
872
|
-
}): string[];
|
|
873
|
-
queries: ({ table_id, exttable_name, name, configuration: { columns, layout, default_state }, req, }: {
|
|
979
|
+
queries: ({ table_id, viewname, configuration: { columns }, req, res, exttable_name, }: {
|
|
874
980
|
table_id: any;
|
|
875
|
-
|
|
876
|
-
name: any;
|
|
981
|
+
viewname: any;
|
|
877
982
|
configuration: {
|
|
878
983
|
columns: any;
|
|
879
|
-
layout: any;
|
|
880
|
-
default_state: any;
|
|
881
984
|
};
|
|
882
985
|
req: any;
|
|
986
|
+
res: any;
|
|
987
|
+
exttable_name: any;
|
|
883
988
|
}) => {
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
989
|
+
actionQuery(state: any, rndid: any): Promise<{
|
|
990
|
+
json: any;
|
|
991
|
+
}>;
|
|
992
|
+
distinctValuesQuery(state: any): Promise<{
|
|
993
|
+
distinct_values: {};
|
|
994
|
+
role: any;
|
|
887
995
|
}>;
|
|
888
|
-
getRowQuery(id: any): Promise<import("@saltcorn/db-common/internal").Row | null>;
|
|
889
996
|
};
|
|
890
|
-
configCheck: (view: any) => Promise<{
|
|
891
|
-
errors: string[];
|
|
892
|
-
warnings: string[];
|
|
893
|
-
}>;
|
|
894
|
-
connectedObjects: (configuration: any) => Promise<import("@saltcorn/types/base_types").ConnectedObjects>;
|
|
895
997
|
} | {
|
|
896
998
|
name: string;
|
|
897
999
|
description: string;
|
|
@@ -920,11 +1022,12 @@ export const viewtemplates: ({
|
|
|
920
1022
|
res: object;
|
|
921
1023
|
req: object;
|
|
922
1024
|
redirect: string;
|
|
923
|
-
}, { tryInsertQuery, tryUpdateQuery, getRowQuery, saveFileQuery, optionsQuery, getRowByIdQuery, }: {
|
|
1025
|
+
}, { tryInsertQuery, tryUpdateQuery, getRowQuery, saveFileQuery, saveFileFromContentsQuery, optionsQuery, getRowByIdQuery, }: {
|
|
924
1026
|
tryInsertQuery: any;
|
|
925
1027
|
tryUpdateQuery: any;
|
|
926
1028
|
getRowQuery: any;
|
|
927
1029
|
saveFileQuery: any;
|
|
1030
|
+
saveFileFromContentsQuery: any;
|
|
928
1031
|
optionsQuery: any;
|
|
929
1032
|
getRowByIdQuery: any;
|
|
930
1033
|
}, remote: any) => Promise<void>;
|
|
@@ -985,6 +1088,7 @@ export const viewtemplates: ({
|
|
|
985
1088
|
}>;
|
|
986
1089
|
tryUpdateQuery(row: any, id: any): Promise<any>;
|
|
987
1090
|
saveFileQuery(fieldVal: any, fieldId: any, fieldView: any, row: any): Promise<string | number>;
|
|
1091
|
+
saveFileFromContentsQuery(fieldVal: any, fieldId: any, fieldView: any, row: any, filename: any, encoding?: string): Promise<string | number>;
|
|
988
1092
|
authorizePostQuery(body: any, table_id: any): Promise<boolean | "" | null | undefined>;
|
|
989
1093
|
authorizeGetQuery(query: any, table_id: any): Promise<string | boolean | null | undefined>;
|
|
990
1094
|
getRowQuery(table_id: any, view_select: any, row_id: any, order_field: any): Promise<import("@saltcorn/db-common/internal").Row[]>;
|
|
@@ -1032,10 +1136,11 @@ export const viewtemplates: ({
|
|
|
1032
1136
|
req: any;
|
|
1033
1137
|
res: any;
|
|
1034
1138
|
redirect: any;
|
|
1035
|
-
}, { updateMatchingQuery, getRowQuery, saveFileQuery, optionsQuery, getRowByIdQuery, }: {
|
|
1139
|
+
}, { updateMatchingQuery, getRowQuery, saveFileQuery, saveFileFromContentsQuery, optionsQuery, getRowByIdQuery, }: {
|
|
1036
1140
|
updateMatchingQuery: any;
|
|
1037
1141
|
getRowQuery: any;
|
|
1038
1142
|
saveFileQuery: any;
|
|
1143
|
+
saveFileFromContentsQuery: any;
|
|
1039
1144
|
optionsQuery: any;
|
|
1040
1145
|
getRowByIdQuery: any;
|
|
1041
1146
|
}) => Promise<void>;
|
|
@@ -1049,97 +1154,62 @@ export const viewtemplates: ({
|
|
|
1049
1154
|
} | {
|
|
1050
1155
|
name: string;
|
|
1051
1156
|
description: string;
|
|
1052
|
-
get_state_fields: () => object[];
|
|
1053
1157
|
configuration_workflow: (req: object) => import("../models/workflow");
|
|
1054
|
-
run: (table_id: string, viewname: string, {
|
|
1055
|
-
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
}
|
|
1062
|
-
|
|
1063
|
-
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
|
|
1070
|
-
layout: object;
|
|
1071
|
-
}, extra: object, rows: object[], state: any) => Promise<string>;
|
|
1072
|
-
initial_config: Function;
|
|
1158
|
+
run: (table_id: string, viewname: string, { participant_field, msg_relation, msgsender_field, msgview, msgform, participant_maxread_field, }: {
|
|
1159
|
+
participant_field: string;
|
|
1160
|
+
msg_relation: string;
|
|
1161
|
+
msgsender_field: any;
|
|
1162
|
+
msgview: string;
|
|
1163
|
+
msgform: string;
|
|
1164
|
+
participant_maxread_field: string;
|
|
1165
|
+
}, state: object, { req, res }: {
|
|
1166
|
+
req: object;
|
|
1167
|
+
res: object;
|
|
1168
|
+
}, { getRowQuery, updateQuery, optionsQuery }: {
|
|
1169
|
+
getRowQuery: any;
|
|
1170
|
+
updateQuery: any;
|
|
1171
|
+
optionsQuery: any;
|
|
1172
|
+
}) => Promise<div>;
|
|
1173
|
+
get_state_fields: () => object[];
|
|
1073
1174
|
display_state_form: boolean;
|
|
1074
1175
|
routes: {
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
|
|
1176
|
+
submit_msg_ajax: (table_id: any, viewname: string, { participant_field, msg_relation, msgsender_field, msgview, msgform, participant_maxread_field, }: {
|
|
1177
|
+
participant_field: string;
|
|
1178
|
+
msg_relation: string;
|
|
1179
|
+
msgsender_field: any;
|
|
1180
|
+
msgview: string;
|
|
1181
|
+
msgform: string;
|
|
1182
|
+
participant_maxread_field: string;
|
|
1078
1183
|
}, body: any, { req, res }: {
|
|
1079
1184
|
req: object;
|
|
1080
|
-
res:
|
|
1081
|
-
}, {
|
|
1082
|
-
|
|
1185
|
+
res: object;
|
|
1186
|
+
}, { submitAjaxQuery }: {
|
|
1187
|
+
submitAjaxQuery: any;
|
|
1083
1188
|
}) => Promise<object>;
|
|
1189
|
+
ack_read: (table_id: any, viewname: any, { participant_field, participant_maxread_field }: {
|
|
1190
|
+
participant_field: string;
|
|
1191
|
+
participant_maxread_field: string;
|
|
1192
|
+
}, body: any, { req, res }: {
|
|
1193
|
+
req: object;
|
|
1194
|
+
res: object;
|
|
1195
|
+
}, { ackReadQuery }: {
|
|
1196
|
+
ackReadQuery: any;
|
|
1197
|
+
}) => Promise<void>;
|
|
1198
|
+
fetch_older_msg: (table_id: any, viewname: any, { participant_field, msg_relation, msgsender_field, msgview, msgform, participant_maxread_field, }: object, body: object, { req, res }: string, { fetchOlderMsgQuery }: any) => Promise<object>;
|
|
1084
1199
|
};
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
|
|
1094
|
-
|
|
1095
|
-
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
res: any;
|
|
1099
|
-
}) => {
|
|
1100
|
-
showQuery(state: any): Promise<{
|
|
1101
|
-
rows: null;
|
|
1102
|
-
message: string;
|
|
1103
|
-
} | {
|
|
1104
|
-
rows: import("@saltcorn/db-common/internal").Row[];
|
|
1105
|
-
message: null;
|
|
1106
|
-
}>;
|
|
1107
|
-
runManyQuery(state: any, { where, limit, offset, joinFieldsExtra, orderBy, orderDesc }: {
|
|
1108
|
-
where: any;
|
|
1109
|
-
limit: any;
|
|
1110
|
-
offset: any;
|
|
1111
|
-
joinFieldsExtra: any;
|
|
1112
|
-
orderBy: any;
|
|
1113
|
-
orderDesc: any;
|
|
1114
|
-
}): Promise<import("@saltcorn/db-common/internal").Row[]>;
|
|
1115
|
-
actionQuery(): Promise<{
|
|
1116
|
-
json: any;
|
|
1117
|
-
}>;
|
|
1118
|
-
};
|
|
1119
|
-
configCheck: (view: any) => Promise<{
|
|
1120
|
-
errors: string[];
|
|
1121
|
-
warnings: string[];
|
|
1122
|
-
}>;
|
|
1123
|
-
connectedObjects: (configuration: any) => Promise<import("@saltcorn/types/base_types").ConnectedObjects>;
|
|
1124
|
-
} | {
|
|
1125
|
-
name: string;
|
|
1126
|
-
description: string;
|
|
1127
|
-
configuration_workflow: (req: object) => import("../models/workflow");
|
|
1128
|
-
run: (table_id: string, viewname: string, { list_view, show_view, list_width, subtables }: {
|
|
1129
|
-
list_view: string;
|
|
1130
|
-
show_view: string;
|
|
1131
|
-
subtables: object;
|
|
1132
|
-
}, state: any, extraArgs: any, { getRowQuery }: {
|
|
1133
|
-
getRowQuery: any;
|
|
1134
|
-
}) => Promise<div>;
|
|
1135
|
-
get_state_fields: (table_id: any, viewname: any, { list_view, show_view }: {
|
|
1136
|
-
list_view: string;
|
|
1137
|
-
show_view: any;
|
|
1138
|
-
}) => Promise<object[]>;
|
|
1139
|
-
display_state_form: ({ list_view, _omit_state_form }: {
|
|
1140
|
-
list_view: string;
|
|
1141
|
-
_omit_state_form: boolean;
|
|
1142
|
-
}) => boolean;
|
|
1200
|
+
noAutoTest: boolean;
|
|
1201
|
+
authorize_join: ({ table_id, min_role, configuration: { participant_field } }: {
|
|
1202
|
+
participant_field: object;
|
|
1203
|
+
}, room_id: string, user: object) => Promise<object>;
|
|
1204
|
+
virtual_triggers: (table_id: any, viewname: string, { participant_field, msg_relation, msgsender_field, msgview, msgform, participant_maxread_field, }: {
|
|
1205
|
+
participant_field: any;
|
|
1206
|
+
msg_relation: string;
|
|
1207
|
+
msgsender_field: string;
|
|
1208
|
+
msgview: string;
|
|
1209
|
+
msgform: any;
|
|
1210
|
+
participant_maxread_field: any;
|
|
1211
|
+
}) => object[];
|
|
1212
|
+
getStringsForI18n(): object[];
|
|
1143
1213
|
queries: ({ table_id, viewname, configuration: { columns, default_state }, req, }: {
|
|
1144
1214
|
table_id: any;
|
|
1145
1215
|
viewname: any;
|
|
@@ -1149,14 +1219,38 @@ export const viewtemplates: ({
|
|
|
1149
1219
|
};
|
|
1150
1220
|
req: any;
|
|
1151
1221
|
}) => {
|
|
1152
|
-
getRowQuery(
|
|
1222
|
+
getRowQuery(state_id: any, part_table_name: any, part_user_field: any, part_key_to_room: any): Promise<import("@saltcorn/db-common/internal").Row | null>;
|
|
1223
|
+
updateQuery(partRow: any, part_table_name: any, max_read_id: any, part_maxread_field: any): Promise<void>;
|
|
1224
|
+
submitAjaxQuery(msg_relation: any, participant_field: any, body: any, msgform: any, msgsender_field: any, participant_maxread_field: any): Promise<{
|
|
1225
|
+
json: {
|
|
1226
|
+
msgid: {
|
|
1227
|
+
error: string;
|
|
1228
|
+
} | {
|
|
1229
|
+
success: any;
|
|
1230
|
+
};
|
|
1231
|
+
error?: undefined;
|
|
1232
|
+
};
|
|
1233
|
+
} | {
|
|
1234
|
+
json: {
|
|
1235
|
+
error: any;
|
|
1236
|
+
msgid?: undefined;
|
|
1237
|
+
};
|
|
1238
|
+
}>;
|
|
1239
|
+
ackReadQuery(participant_field: any, participant_maxread_field: any, body: any): Promise<{
|
|
1240
|
+
json: {
|
|
1241
|
+
error: string;
|
|
1242
|
+
success?: undefined;
|
|
1243
|
+
};
|
|
1244
|
+
} | {
|
|
1245
|
+
json: {
|
|
1246
|
+
success: string;
|
|
1247
|
+
error?: undefined;
|
|
1248
|
+
};
|
|
1249
|
+
}>;
|
|
1250
|
+
fetchOlderMsgQuery(participant_field: any, body: any): Promise<import("@saltcorn/db-common/internal").Row | null>;
|
|
1251
|
+
optionsQuery(reftable_name: any, type: any, attributes: any, where: any): Promise<any>;
|
|
1153
1252
|
};
|
|
1154
|
-
connectedObjects: (
|
|
1155
|
-
list_view: any;
|
|
1156
|
-
subtables: any;
|
|
1157
|
-
}) => Promise<{
|
|
1158
|
-
embeddedViews: import("../models/view")[];
|
|
1159
|
-
}>;
|
|
1253
|
+
connectedObjects: (configuration: any) => Promise<import("@saltcorn/types/base_types").ConnectedObjects>;
|
|
1160
1254
|
} | {
|
|
1161
1255
|
name: string;
|
|
1162
1256
|
description: string;
|
|
@@ -1175,8 +1269,9 @@ export const viewtemplates: ({
|
|
|
1175
1269
|
create_view_location?: string | undefined;
|
|
1176
1270
|
always_create_view: boolean;
|
|
1177
1271
|
cols: any;
|
|
1178
|
-
}, state: object, extraArgs: any, { countRowsQuery }: {
|
|
1272
|
+
}, state: object, extraArgs: any, { countRowsQuery, runManyQuery }: {
|
|
1179
1273
|
countRowsQuery: any;
|
|
1274
|
+
runManyQuery: any;
|
|
1180
1275
|
}) => Promise<div>;
|
|
1181
1276
|
get_state_fields: (table_id: number, viewname: any, { show_view }: {
|
|
1182
1277
|
show_view: any;
|
|
@@ -1185,119 +1280,177 @@ export const viewtemplates: ({
|
|
|
1185
1280
|
getStringsForI18n({ create_view_label }: {
|
|
1186
1281
|
create_view_label: any;
|
|
1187
1282
|
}): string[] | Object[];
|
|
1188
|
-
queries: ({ table_id, viewname, configuration: {
|
|
1283
|
+
queries: ({ table_id, viewname, configuration: { show_view }, req, res, }: {
|
|
1189
1284
|
table_id: any;
|
|
1190
1285
|
viewname: any;
|
|
1286
|
+
configuration: {
|
|
1287
|
+
show_view: any;
|
|
1288
|
+
};
|
|
1289
|
+
req: any;
|
|
1290
|
+
res: any;
|
|
1291
|
+
}) => {
|
|
1292
|
+
countRowsQuery(state: any): Promise<number>;
|
|
1293
|
+
runManyQuery(state: any, qextra: any, selectOpts: any): Promise<string[] | {
|
|
1294
|
+
html: string;
|
|
1295
|
+
row: any;
|
|
1296
|
+
}[]>;
|
|
1297
|
+
};
|
|
1298
|
+
connectedObjects: (configuration: any) => Promise<import("@saltcorn/types/base_types").ConnectedObjects>;
|
|
1299
|
+
} | {
|
|
1300
|
+
name: string;
|
|
1301
|
+
description: string;
|
|
1302
|
+
configuration_workflow: (req: object) => import("../models/workflow");
|
|
1303
|
+
run: (table_id: string | number, viewname: string, { columns, layout, view_to_create, create_view_display, create_view_label, default_state, create_view_location, create_link_style, create_link_size, create_view_showif, }: {
|
|
1304
|
+
columns: object[];
|
|
1305
|
+
view_to_create?: string | undefined;
|
|
1306
|
+
create_view_display: string;
|
|
1307
|
+
create_view_label?: string | undefined;
|
|
1308
|
+
default_state?: object | undefined;
|
|
1309
|
+
create_view_location?: string | undefined;
|
|
1310
|
+
}, stateWithId?: object | undefined, extraOpts: object, { listQuery }: {
|
|
1311
|
+
listQuery: any;
|
|
1312
|
+
}) => Promise<any>;
|
|
1313
|
+
view_quantity: string;
|
|
1314
|
+
get_state_fields: (table_id: string, viewname: any, { columns }: {
|
|
1315
|
+
columns: object[];
|
|
1316
|
+
}) => Function;
|
|
1317
|
+
initial_config: Function;
|
|
1318
|
+
on_delete: (table_id: any, viewname: string, { default_state }: {
|
|
1319
|
+
default_state: any;
|
|
1320
|
+
}) => Promise<void>;
|
|
1321
|
+
routes: {
|
|
1322
|
+
run_action: (table_id: number, viewname: any, { columns, layout }: {
|
|
1323
|
+
columns: object[];
|
|
1324
|
+
layout: any;
|
|
1325
|
+
}, body: object, { req, res }: {
|
|
1326
|
+
req: object;
|
|
1327
|
+
res: any;
|
|
1328
|
+
}, { getRowQuery }: {
|
|
1329
|
+
getRowQuery: any;
|
|
1330
|
+
}) => Promise<object>;
|
|
1331
|
+
};
|
|
1332
|
+
display_state_form: (opts: object) => boolean;
|
|
1333
|
+
default_state_form: ({ default_state }: object) => boolean;
|
|
1334
|
+
getStringsForI18n({ columns, create_view_label }: {
|
|
1335
|
+
columns: any;
|
|
1336
|
+
create_view_label: any;
|
|
1337
|
+
}): string[];
|
|
1338
|
+
queries: ({ table_id, exttable_name, name, configuration: { columns, layout, default_state }, req, }: {
|
|
1339
|
+
table_id: any;
|
|
1340
|
+
exttable_name: any;
|
|
1341
|
+
name: any;
|
|
1191
1342
|
configuration: {
|
|
1192
1343
|
columns: any;
|
|
1344
|
+
layout: any;
|
|
1193
1345
|
default_state: any;
|
|
1194
1346
|
};
|
|
1195
1347
|
req: any;
|
|
1196
1348
|
}) => {
|
|
1197
|
-
|
|
1349
|
+
listQuery(state: any, stateHash: any): Promise<{
|
|
1350
|
+
rows: import("@saltcorn/db-common/internal").Row[];
|
|
1351
|
+
rowCount: number;
|
|
1352
|
+
}>;
|
|
1353
|
+
getRowQuery(id: any): Promise<import("@saltcorn/db-common/internal").Row | null>;
|
|
1198
1354
|
};
|
|
1355
|
+
configCheck: (view: any) => Promise<{
|
|
1356
|
+
errors: string[];
|
|
1357
|
+
warnings: string[];
|
|
1358
|
+
}>;
|
|
1199
1359
|
connectedObjects: (configuration: any) => Promise<import("@saltcorn/types/base_types").ConnectedObjects>;
|
|
1200
1360
|
} | {
|
|
1201
1361
|
name: string;
|
|
1202
1362
|
description: string;
|
|
1203
1363
|
get_state_fields: () => object[];
|
|
1204
|
-
configuration_workflow: () => import("../models/workflow");
|
|
1205
|
-
run: (table_id:
|
|
1364
|
+
configuration_workflow: (req: object) => import("../models/workflow");
|
|
1365
|
+
run: (table_id: string, viewname: string, { columns, layout, page_title, page_title_formula }: {
|
|
1206
1366
|
columns: object[];
|
|
1207
1367
|
layout: object;
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
}
|
|
1211
|
-
|
|
1368
|
+
page_title?: string | undefined;
|
|
1369
|
+
page_title_formula: boolean;
|
|
1370
|
+
}, state: object, extra: object, { showQuery }: {
|
|
1371
|
+
showQuery: any;
|
|
1372
|
+
}) => Promise<string>;
|
|
1373
|
+
runMany: (table_id: number, viewname: string, { columns, layout }: {
|
|
1374
|
+
columns: object[];
|
|
1375
|
+
layout: object;
|
|
1376
|
+
}, state: object, extra: object, { runManyQuery }: {
|
|
1377
|
+
runManyQuery: any;
|
|
1378
|
+
}) => Promise<object[]>;
|
|
1379
|
+
renderRows: (table: object, viewname: string, { columns, layout }: {
|
|
1380
|
+
columns: object[];
|
|
1381
|
+
layout: object;
|
|
1382
|
+
}, extra: object, rows: object[], state: any) => Promise<string>;
|
|
1383
|
+
initial_config: Function;
|
|
1212
1384
|
display_state_form: boolean;
|
|
1213
|
-
getStringsForI18n({ layout }: {
|
|
1214
|
-
layout: any;
|
|
1215
|
-
}): string[];
|
|
1216
1385
|
routes: {
|
|
1217
|
-
run_action: (table_id:
|
|
1218
|
-
|
|
1386
|
+
run_action: (table_id: number, viewname: any, { columns, layout }: {
|
|
1387
|
+
columns: object[];
|
|
1388
|
+
layout: any;
|
|
1389
|
+
}, body: any, { req, res }: {
|
|
1390
|
+
req: object;
|
|
1219
1391
|
res: any;
|
|
1220
1392
|
}, { actionQuery }: {
|
|
1221
1393
|
actionQuery: any;
|
|
1222
|
-
}) => Promise<
|
|
1394
|
+
}) => Promise<object>;
|
|
1223
1395
|
};
|
|
1224
|
-
|
|
1396
|
+
getStringsForI18n({ layout }: {
|
|
1397
|
+
layout: object;
|
|
1398
|
+
}): string[];
|
|
1399
|
+
interpolate_title_string(table_id: any, title: any, state: any): Promise<any>;
|
|
1400
|
+
queries: ({ table_id, exttable_name, name, configuration: { columns, layout }, req, res, }: {
|
|
1225
1401
|
table_id: any;
|
|
1226
|
-
|
|
1402
|
+
exttable_name: any;
|
|
1403
|
+
name: any;
|
|
1227
1404
|
configuration: {
|
|
1228
1405
|
columns: any;
|
|
1406
|
+
layout: any;
|
|
1229
1407
|
};
|
|
1230
1408
|
req: any;
|
|
1231
1409
|
res: any;
|
|
1232
|
-
exttable_name: any;
|
|
1233
1410
|
}) => {
|
|
1234
|
-
|
|
1235
|
-
|
|
1411
|
+
showQuery(state: any): Promise<{
|
|
1412
|
+
rows: null;
|
|
1413
|
+
message: string;
|
|
1414
|
+
} | {
|
|
1415
|
+
rows: import("@saltcorn/db-common/internal").Row[];
|
|
1416
|
+
message: null;
|
|
1236
1417
|
}>;
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1418
|
+
runManyQuery(state: any, { where, limit, offset, joinFieldsExtra, orderBy, orderDesc }: {
|
|
1419
|
+
where: any;
|
|
1420
|
+
limit: any;
|
|
1421
|
+
offset: any;
|
|
1422
|
+
joinFieldsExtra: any;
|
|
1423
|
+
orderBy: any;
|
|
1424
|
+
orderDesc: any;
|
|
1425
|
+
}): Promise<import("@saltcorn/db-common/internal").Row[]>;
|
|
1426
|
+
actionQuery(): Promise<{
|
|
1427
|
+
json: any;
|
|
1240
1428
|
}>;
|
|
1241
1429
|
};
|
|
1430
|
+
configCheck: (view: any) => Promise<{
|
|
1431
|
+
errors: string[];
|
|
1432
|
+
warnings: string[];
|
|
1433
|
+
}>;
|
|
1434
|
+
connectedObjects: (configuration: any) => Promise<import("@saltcorn/types/base_types").ConnectedObjects>;
|
|
1242
1435
|
} | {
|
|
1243
1436
|
name: string;
|
|
1244
1437
|
description: string;
|
|
1245
1438
|
configuration_workflow: (req: object) => import("../models/workflow");
|
|
1246
|
-
run: (table_id: string, viewname: string, {
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
msgform: string;
|
|
1252
|
-
participant_maxread_field: string;
|
|
1253
|
-
}, state: object, { req, res }: {
|
|
1254
|
-
req: object;
|
|
1255
|
-
res: object;
|
|
1256
|
-
}, { getRowQuery, updateQuery, optionsQuery }: {
|
|
1439
|
+
run: (table_id: string, viewname: string, { list_view, show_view, list_width, subtables }: {
|
|
1440
|
+
list_view: string;
|
|
1441
|
+
show_view: string;
|
|
1442
|
+
subtables: object;
|
|
1443
|
+
}, state: any, extraArgs: any, { getRowQuery }: {
|
|
1257
1444
|
getRowQuery: any;
|
|
1258
|
-
updateQuery: any;
|
|
1259
|
-
optionsQuery: any;
|
|
1260
1445
|
}) => Promise<div>;
|
|
1261
|
-
get_state_fields: (
|
|
1262
|
-
|
|
1263
|
-
|
|
1264
|
-
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
msgform: string;
|
|
1270
|
-
participant_maxread_field: string;
|
|
1271
|
-
}, body: any, { req, res }: {
|
|
1272
|
-
req: object;
|
|
1273
|
-
res: object;
|
|
1274
|
-
}, { submitAjaxQuery }: {
|
|
1275
|
-
submitAjaxQuery: any;
|
|
1276
|
-
}) => Promise<object>;
|
|
1277
|
-
ack_read: (table_id: any, viewname: any, { participant_field, participant_maxread_field }: {
|
|
1278
|
-
participant_field: string;
|
|
1279
|
-
participant_maxread_field: string;
|
|
1280
|
-
}, body: any, { req, res }: {
|
|
1281
|
-
req: object;
|
|
1282
|
-
res: object;
|
|
1283
|
-
}, { ackReadQuery }: {
|
|
1284
|
-
ackReadQuery: any;
|
|
1285
|
-
}) => Promise<void>;
|
|
1286
|
-
fetch_older_msg: (table_id: any, viewname: any, { participant_field, msg_relation, msgsender_field, msgview, msgform, participant_maxread_field, }: object, body: object, { req, res }: string, { fetchOlderMsgQuery }: any) => Promise<object>;
|
|
1287
|
-
};
|
|
1288
|
-
noAutoTest: boolean;
|
|
1289
|
-
authorize_join: ({ table_id, min_role, configuration: { participant_field } }: {
|
|
1290
|
-
participant_field: object;
|
|
1291
|
-
}, room_id: string, user: object) => Promise<object>;
|
|
1292
|
-
virtual_triggers: (table_id: any, viewname: string, { participant_field, msg_relation, msgsender_field, msgview, msgform, participant_maxread_field, }: {
|
|
1293
|
-
participant_field: any;
|
|
1294
|
-
msg_relation: string;
|
|
1295
|
-
msgsender_field: string;
|
|
1296
|
-
msgview: string;
|
|
1297
|
-
msgform: any;
|
|
1298
|
-
participant_maxread_field: any;
|
|
1299
|
-
}) => object[];
|
|
1300
|
-
getStringsForI18n(): object[];
|
|
1446
|
+
get_state_fields: (table_id: any, viewname: any, { list_view, show_view }: {
|
|
1447
|
+
list_view: string;
|
|
1448
|
+
show_view: any;
|
|
1449
|
+
}) => Promise<object[]>;
|
|
1450
|
+
display_state_form: ({ list_view, _omit_state_form }: {
|
|
1451
|
+
list_view: string;
|
|
1452
|
+
_omit_state_form: boolean;
|
|
1453
|
+
}) => boolean;
|
|
1301
1454
|
queries: ({ table_id, viewname, configuration: { columns, default_state }, req, }: {
|
|
1302
1455
|
table_id: any;
|
|
1303
1456
|
viewname: any;
|
|
@@ -1307,38 +1460,14 @@ export const viewtemplates: ({
|
|
|
1307
1460
|
};
|
|
1308
1461
|
req: any;
|
|
1309
1462
|
}) => {
|
|
1310
|
-
getRowQuery(
|
|
1311
|
-
updateQuery(partRow: any, part_table_name: any, max_read_id: any, part_maxread_field: any): Promise<void>;
|
|
1312
|
-
submitAjaxQuery(msg_relation: any, participant_field: any, body: any, msgform: any, msgsender_field: any, participant_maxread_field: any): Promise<{
|
|
1313
|
-
json: {
|
|
1314
|
-
msgid: {
|
|
1315
|
-
error: string;
|
|
1316
|
-
} | {
|
|
1317
|
-
success: any;
|
|
1318
|
-
};
|
|
1319
|
-
error?: undefined;
|
|
1320
|
-
};
|
|
1321
|
-
} | {
|
|
1322
|
-
json: {
|
|
1323
|
-
error: any;
|
|
1324
|
-
msgid?: undefined;
|
|
1325
|
-
};
|
|
1326
|
-
}>;
|
|
1327
|
-
ackReadQuery(participant_field: any, participant_maxread_field: any, body: any): Promise<{
|
|
1328
|
-
json: {
|
|
1329
|
-
error: string;
|
|
1330
|
-
success?: undefined;
|
|
1331
|
-
};
|
|
1332
|
-
} | {
|
|
1333
|
-
json: {
|
|
1334
|
-
success: string;
|
|
1335
|
-
error?: undefined;
|
|
1336
|
-
};
|
|
1337
|
-
}>;
|
|
1338
|
-
fetchOlderMsgQuery(participant_field: any, body: any): Promise<import("@saltcorn/db-common/internal").Row | null>;
|
|
1339
|
-
optionsQuery(reftable_name: any, type: any, attributes: any, where: any): Promise<any>;
|
|
1463
|
+
getRowQuery(uniques: any): Promise<import("@saltcorn/db-common/internal").Row | null>;
|
|
1340
1464
|
};
|
|
1341
|
-
connectedObjects: (
|
|
1465
|
+
connectedObjects: ({ list_view, subtables }: {
|
|
1466
|
+
list_view: any;
|
|
1467
|
+
subtables: any;
|
|
1468
|
+
}) => Promise<{
|
|
1469
|
+
embeddedViews: import("../models/view")[];
|
|
1470
|
+
}>;
|
|
1342
1471
|
})[];
|
|
1343
1472
|
import fileviews = require("./fileviews");
|
|
1344
1473
|
import actions = require("./actions");
|