@rebasepro/server-postgresql 0.5.0 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/{server-postgresql/src/PostgresAdapter.d.ts → PostgresAdapter.d.ts} +1 -1
- package/dist/{server-postgresql/src/PostgresBackendDriver.d.ts → PostgresBackendDriver.d.ts} +2 -2
- package/dist/{server-postgresql/src/PostgresBootstrapper.d.ts → PostgresBootstrapper.d.ts} +11 -1
- package/dist/{server-postgresql/src/collections → collections}/PostgresCollectionRegistry.d.ts +4 -0
- package/dist/index.es.js +10168 -11145
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +10735 -11429
- package/dist/index.umd.js.map +1 -1
- package/dist/{server-postgresql/src/services → services}/EntityPersistService.d.ts +0 -14
- package/dist/utils/pg-error-utils.d.ts +55 -0
- package/package.json +24 -21
- package/src/PostgresAdapter.ts +9 -10
- package/src/PostgresBackendDriver.ts +134 -121
- package/src/PostgresBootstrapper.ts +86 -13
- package/src/auth/ensure-tables.ts +28 -5
- package/src/auth/services.ts +28 -18
- package/src/cli.ts +99 -96
- package/src/collections/PostgresCollectionRegistry.ts +7 -0
- package/src/connection.ts +11 -6
- package/src/data-transformer.ts +16 -14
- package/src/databasePoolManager.ts +3 -2
- package/src/history/HistoryService.ts +3 -2
- package/src/history/ensure-history-table.ts +5 -4
- package/src/schema/auth-schema.ts +1 -2
- package/src/schema/doctor-cli.ts +2 -1
- package/src/schema/doctor.ts +40 -37
- package/src/schema/generate-drizzle-schema-logic.ts +56 -18
- package/src/schema/generate-drizzle-schema.ts +11 -11
- package/src/schema/introspect-db-inference.ts +25 -25
- package/src/schema/introspect-db-logic.ts +38 -38
- package/src/schema/introspect-db.ts +28 -27
- package/src/services/BranchService.ts +14 -0
- package/src/services/EntityFetchService.ts +28 -25
- package/src/services/EntityPersistService.ts +11 -141
- package/src/services/RelationService.ts +57 -37
- package/src/services/entity-helpers.ts +6 -2
- package/src/services/realtimeService.ts +45 -32
- package/src/utils/drizzle-conditions.ts +31 -15
- package/src/utils/pg-error-utils.ts +211 -0
- package/src/websocket.ts +15 -12
- package/test/auth-services.test.ts +36 -19
- package/test/batch-many-to-many-regression.test.ts +119 -39
- package/test/data-transformer-hardening.test.ts +67 -33
- package/test/data-transformer.test.ts +4 -2
- package/test/doctor.test.ts +10 -5
- package/test/drizzle-conditions.test.ts +59 -6
- package/test/generate-drizzle-schema.test.ts +65 -40
- package/test/introspect-db-generation.test.ts +179 -81
- package/test/introspect-db-utils.test.ts +92 -37
- package/test/mocks/chalk.cjs +7 -0
- package/test/pg-error-utils.test.ts +221 -0
- package/test/postgresDataDriver.test.ts +14 -5
- package/test/property-ordering.test.ts +126 -79
- package/test/realtimeService.test.ts +6 -2
- package/test/relation-pipeline-gaps.test.ts +84 -36
- package/test/relations.test.ts +247 -0
- package/test/unmapped-tables-safety.test.ts +14 -6
- package/test/websocket.test.ts +1 -1
- package/tsconfig.json +5 -0
- package/tsconfig.prod.json +3 -0
- package/vite.config.ts +5 -5
- package/dist/common/src/collections/CollectionRegistry.d.ts +0 -56
- package/dist/common/src/collections/default-collections.d.ts +0 -9
- package/dist/common/src/collections/index.d.ts +0 -2
- package/dist/common/src/data/buildRebaseData.d.ts +0 -14
- package/dist/common/src/data/query_builder.d.ts +0 -55
- package/dist/common/src/index.d.ts +0 -4
- package/dist/common/src/util/builders.d.ts +0 -57
- package/dist/common/src/util/callbacks.d.ts +0 -6
- package/dist/common/src/util/collections.d.ts +0 -11
- package/dist/common/src/util/common.d.ts +0 -2
- package/dist/common/src/util/conditions.d.ts +0 -26
- package/dist/common/src/util/entities.d.ts +0 -58
- package/dist/common/src/util/enums.d.ts +0 -3
- package/dist/common/src/util/index.d.ts +0 -16
- package/dist/common/src/util/navigation_from_path.d.ts +0 -34
- package/dist/common/src/util/navigation_utils.d.ts +0 -20
- package/dist/common/src/util/parent_references_from_path.d.ts +0 -6
- package/dist/common/src/util/paths.d.ts +0 -14
- package/dist/common/src/util/permissions.d.ts +0 -14
- package/dist/common/src/util/references.d.ts +0 -2
- package/dist/common/src/util/relations.d.ts +0 -22
- package/dist/common/src/util/resolutions.d.ts +0 -72
- package/dist/common/src/util/storage.d.ts +0 -24
- package/dist/types/src/controllers/analytics_controller.d.ts +0 -7
- package/dist/types/src/controllers/auth.d.ts +0 -104
- package/dist/types/src/controllers/client.d.ts +0 -168
- package/dist/types/src/controllers/collection_registry.d.ts +0 -46
- package/dist/types/src/controllers/customization_controller.d.ts +0 -60
- package/dist/types/src/controllers/data.d.ts +0 -207
- package/dist/types/src/controllers/data_driver.d.ts +0 -218
- package/dist/types/src/controllers/database_admin.d.ts +0 -11
- package/dist/types/src/controllers/dialogs_controller.d.ts +0 -36
- package/dist/types/src/controllers/effective_role.d.ts +0 -4
- package/dist/types/src/controllers/email.d.ts +0 -36
- package/dist/types/src/controllers/index.d.ts +0 -18
- package/dist/types/src/controllers/local_config_persistence.d.ts +0 -20
- package/dist/types/src/controllers/navigation.d.ts +0 -225
- package/dist/types/src/controllers/registry.d.ts +0 -63
- package/dist/types/src/controllers/side_dialogs_controller.d.ts +0 -67
- package/dist/types/src/controllers/side_entity_controller.d.ts +0 -97
- package/dist/types/src/controllers/snackbar.d.ts +0 -24
- package/dist/types/src/controllers/storage.d.ts +0 -171
- package/dist/types/src/index.d.ts +0 -4
- package/dist/types/src/rebase_context.d.ts +0 -122
- package/dist/types/src/types/auth_adapter.d.ts +0 -301
- package/dist/types/src/types/backend.d.ts +0 -571
- package/dist/types/src/types/backend_hooks.d.ts +0 -172
- package/dist/types/src/types/builders.d.ts +0 -15
- package/dist/types/src/types/chips.d.ts +0 -5
- package/dist/types/src/types/collections.d.ts +0 -961
- package/dist/types/src/types/component_ref.d.ts +0 -47
- package/dist/types/src/types/cron.d.ts +0 -102
- package/dist/types/src/types/data_source.d.ts +0 -64
- package/dist/types/src/types/database_adapter.d.ts +0 -94
- package/dist/types/src/types/entities.d.ts +0 -145
- package/dist/types/src/types/entity_actions.d.ts +0 -104
- package/dist/types/src/types/entity_callbacks.d.ts +0 -173
- package/dist/types/src/types/entity_link_builder.d.ts +0 -7
- package/dist/types/src/types/entity_overrides.d.ts +0 -10
- package/dist/types/src/types/entity_views.d.ts +0 -87
- package/dist/types/src/types/export_import.d.ts +0 -21
- package/dist/types/src/types/formex.d.ts +0 -40
- package/dist/types/src/types/index.d.ts +0 -28
- package/dist/types/src/types/locales.d.ts +0 -4
- package/dist/types/src/types/modify_collections.d.ts +0 -5
- package/dist/types/src/types/plugins.d.ts +0 -282
- package/dist/types/src/types/properties.d.ts +0 -1173
- package/dist/types/src/types/property_config.d.ts +0 -74
- package/dist/types/src/types/relations.d.ts +0 -336
- package/dist/types/src/types/slots.d.ts +0 -262
- package/dist/types/src/types/translations.d.ts +0 -900
- package/dist/types/src/types/user_management_delegate.d.ts +0 -86
- package/dist/types/src/types/websockets.d.ts +0 -78
- package/dist/types/src/users/index.d.ts +0 -1
- package/dist/types/src/users/user.d.ts +0 -50
- /package/dist/{server-postgresql/src/auth → auth}/ensure-tables.d.ts +0 -0
- /package/dist/{server-postgresql/src/auth → auth}/services.d.ts +0 -0
- /package/dist/{server-postgresql/src/cli.d.ts → cli.d.ts} +0 -0
- /package/dist/{server-postgresql/src/connection.d.ts → connection.d.ts} +0 -0
- /package/dist/{server-postgresql/src/data-transformer.d.ts → data-transformer.d.ts} +0 -0
- /package/dist/{server-postgresql/src/databasePoolManager.d.ts → databasePoolManager.d.ts} +0 -0
- /package/dist/{server-postgresql/src/history → history}/HistoryService.d.ts +0 -0
- /package/dist/{server-postgresql/src/history → history}/ensure-history-table.d.ts +0 -0
- /package/dist/{server-postgresql/src/index.d.ts → index.d.ts} +0 -0
- /package/dist/{server-postgresql/src/interfaces.d.ts → interfaces.d.ts} +0 -0
- /package/dist/{server-postgresql/src/schema → schema}/auth-schema.d.ts +0 -0
- /package/dist/{server-postgresql/src/schema → schema}/doctor-cli.d.ts +0 -0
- /package/dist/{server-postgresql/src/schema → schema}/doctor.d.ts +0 -0
- /package/dist/{server-postgresql/src/schema → schema}/generate-drizzle-schema-logic.d.ts +0 -0
- /package/dist/{server-postgresql/src/schema → schema}/generate-drizzle-schema.d.ts +0 -0
- /package/dist/{server-postgresql/src/schema → schema}/introspect-db-inference.d.ts +0 -0
- /package/dist/{server-postgresql/src/schema → schema}/introspect-db-logic.d.ts +0 -0
- /package/dist/{server-postgresql/src/schema → schema}/introspect-db.d.ts +0 -0
- /package/dist/{server-postgresql/src/schema → schema}/test-schema.d.ts +0 -0
- /package/dist/{server-postgresql/src/services → services}/BranchService.d.ts +0 -0
- /package/dist/{server-postgresql/src/services → services}/EntityFetchService.d.ts +0 -0
- /package/dist/{server-postgresql/src/services → services}/RelationService.d.ts +0 -0
- /package/dist/{server-postgresql/src/services → services}/entity-helpers.d.ts +0 -0
- /package/dist/{server-postgresql/src/services → services}/entityService.d.ts +0 -0
- /package/dist/{server-postgresql/src/services → services}/index.d.ts +0 -0
- /package/dist/{server-postgresql/src/services → services}/realtimeService.d.ts +0 -0
- /package/dist/{server-postgresql/src/types.d.ts → types.d.ts} +0 -0
- /package/dist/{server-postgresql/src/utils → utils}/drizzle-conditions.d.ts +0 -0
- /package/dist/{server-postgresql/src/websocket.d.ts → websocket.d.ts} +0 -0
|
@@ -1,900 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Recursively makes all properties optional.
|
|
3
|
-
* Used to type partial translation overrides.
|
|
4
|
-
*/
|
|
5
|
-
export type DeepPartial<T> = T extends object ? {
|
|
6
|
-
[K in keyof T]?: DeepPartial<T[K]>;
|
|
7
|
-
} : T;
|
|
8
|
-
/**
|
|
9
|
-
* All user-visible strings used internally by @rebasepro/core.
|
|
10
|
-
* Pass a `DeepPartial<RebaseTranslations>` via the `translations` prop
|
|
11
|
-
* on your Rebase entry-point component to override any key, or to add
|
|
12
|
-
* a new locale.
|
|
13
|
-
*
|
|
14
|
-
* @group Core
|
|
15
|
-
*/
|
|
16
|
-
export interface RebaseTranslations {
|
|
17
|
-
save: string;
|
|
18
|
-
create: string;
|
|
19
|
-
/** Used when duplicating an existing entity */
|
|
20
|
-
create_copy: string;
|
|
21
|
-
save_and_close: string;
|
|
22
|
-
create_copy_and_close: string;
|
|
23
|
-
create_and_close: string;
|
|
24
|
-
/** Discard changes on an existing entity */
|
|
25
|
-
discard: string;
|
|
26
|
-
/** Clear a new/copy form (not yet persisted) */
|
|
27
|
-
clear: string;
|
|
28
|
-
cancel: string;
|
|
29
|
-
edit: string;
|
|
30
|
-
copy: string;
|
|
31
|
-
delete: string;
|
|
32
|
-
delete_not_allowed: string;
|
|
33
|
-
edit_entity?: string;
|
|
34
|
-
back_to_detail?: string;
|
|
35
|
-
delete_confirmation_title: string;
|
|
36
|
-
delete_confirmation_body: string;
|
|
37
|
-
delete_multiple_confirmation_body: string;
|
|
38
|
-
unsaved_changes_title: string;
|
|
39
|
-
unsaved_changes_body: string;
|
|
40
|
-
discard_changes: string;
|
|
41
|
-
keep_editing: string;
|
|
42
|
-
search: string;
|
|
43
|
-
find_by_id: string;
|
|
44
|
-
find_entity_by_id: string;
|
|
45
|
-
filter: string;
|
|
46
|
-
clear_filter: string;
|
|
47
|
-
clear_filter_sort: string;
|
|
48
|
-
clear_sort: string;
|
|
49
|
-
/** Reset all active filters */
|
|
50
|
-
clear_all: string;
|
|
51
|
-
no_items: string;
|
|
52
|
-
no_entries_found: string;
|
|
53
|
-
all_entries_loaded: string;
|
|
54
|
-
create_your_first_entry: string;
|
|
55
|
-
no_results_filter_sort: string;
|
|
56
|
-
/** Shown when a text search yields no results. Supports `{{search}}` interpolation. */
|
|
57
|
-
no_results_search?: string;
|
|
58
|
-
add: string;
|
|
59
|
-
remove: string;
|
|
60
|
-
copy_id: string;
|
|
61
|
-
add_specific: string;
|
|
62
|
-
select_specific: string;
|
|
63
|
-
select_from: string;
|
|
64
|
-
done: string;
|
|
65
|
-
log_out: string;
|
|
66
|
-
column_cannot_be_edited: string;
|
|
67
|
-
close: string;
|
|
68
|
-
unsaved_local_changes: string;
|
|
69
|
-
unsaved_local_changes_description: string;
|
|
70
|
-
preview_changes: string;
|
|
71
|
-
apply_changes: string;
|
|
72
|
-
discard_local_changes: string;
|
|
73
|
-
preview_local_changes: string;
|
|
74
|
-
preview_local_changes_description: string;
|
|
75
|
-
type: string;
|
|
76
|
-
string: string;
|
|
77
|
-
number: string;
|
|
78
|
-
boolean: string;
|
|
79
|
-
date: string;
|
|
80
|
-
map: string;
|
|
81
|
-
array: string;
|
|
82
|
-
arrays_of_arrays_not_supported: string;
|
|
83
|
-
data_type_not_supported: string;
|
|
84
|
-
browser_does_not_support_audio: string;
|
|
85
|
-
user_not_found: string;
|
|
86
|
-
/** "Delete" action on collections, may require permissions check */
|
|
87
|
-
delete_selected: string;
|
|
88
|
-
cannot_delete_selected: string;
|
|
89
|
-
/** Label for buttons that add a new item to a list */
|
|
90
|
-
add_entry: string;
|
|
91
|
-
add_on_top: string;
|
|
92
|
-
add_below: string;
|
|
93
|
-
/** Label when a fieldName is provided — "Add to {fieldName}" */
|
|
94
|
-
add_to_field: string;
|
|
95
|
-
/** Placeholder for the 'value' input in a KeyValue field */
|
|
96
|
-
value: string;
|
|
97
|
-
/** Placeholder for the 'key' input in a KeyValue field */
|
|
98
|
-
key: string;
|
|
99
|
-
/** Drag and drop help text for multiple files */
|
|
100
|
-
drag_drop_multiple: string;
|
|
101
|
-
/** Drag and drop help text for a single file */
|
|
102
|
-
drag_drop_single: string;
|
|
103
|
-
open_menu: string;
|
|
104
|
-
close_drawer: string;
|
|
105
|
-
navigation_drawer: string;
|
|
106
|
-
collapse: string;
|
|
107
|
-
expand: string;
|
|
108
|
-
/** Tooltip for the language switcher in the drawer footer */
|
|
109
|
-
change_language?: string;
|
|
110
|
-
/** Tooltip for the theme toggle in the drawer footer */
|
|
111
|
-
toggle_theme?: string;
|
|
112
|
-
/** Aria label for the user menu trigger in the drawer footer */
|
|
113
|
-
user_menu?: string;
|
|
114
|
-
error: string;
|
|
115
|
-
error_uploading_file: string;
|
|
116
|
-
error_deleting: string;
|
|
117
|
-
error_before_delete: string;
|
|
118
|
-
error_firestore_index: string;
|
|
119
|
-
create_index: string;
|
|
120
|
-
value_is_not_reference: string;
|
|
121
|
-
click_to_edit: string;
|
|
122
|
-
data_is_not_array_of_references: string;
|
|
123
|
-
collection_does_not_exist: string;
|
|
124
|
-
loading: string;
|
|
125
|
-
local_changes_applied: string;
|
|
126
|
-
local_changes_discarded: string;
|
|
127
|
-
open_in_console: string;
|
|
128
|
-
see_console_details: string;
|
|
129
|
-
drop_here_create_group: string;
|
|
130
|
-
filter_for_null_values: string;
|
|
131
|
-
value_updated_elsewhere: string;
|
|
132
|
-
add_property: string;
|
|
133
|
-
edit_name: string;
|
|
134
|
-
this_entity_not_exist: string;
|
|
135
|
-
internal_error: string;
|
|
136
|
-
/** Shown in unsaved-changes dialogs */
|
|
137
|
-
are_you_sure_leave: string;
|
|
138
|
-
passkey_error_unsupported: string;
|
|
139
|
-
/** Snackbar message after a successful save */
|
|
140
|
-
saved_correctly: string;
|
|
141
|
-
/** Snackbar title when a beforeSave callback throws */
|
|
142
|
-
error_before_saving: string;
|
|
143
|
-
/** Snackbar title when an afterSave callback throws */
|
|
144
|
-
error_after_saving: string;
|
|
145
|
-
/** Snackbar title when the save itself fails */
|
|
146
|
-
error_saving_entity: string;
|
|
147
|
-
/** Alert shown when the entity does not exist in the database */
|
|
148
|
-
entity_does_not_exist: string;
|
|
149
|
-
/** Tooltip when the form has unsaved modifications */
|
|
150
|
-
form_modified: string;
|
|
151
|
-
/** Tooltip when the form is in sync with the database */
|
|
152
|
-
form_in_sync: string;
|
|
153
|
-
admin: string;
|
|
154
|
-
home: string;
|
|
155
|
-
this_form_has_errors: string;
|
|
156
|
-
error_loading_navigation: string;
|
|
157
|
-
error_loading_auth: string;
|
|
158
|
-
this_form_has_been_modified: string;
|
|
159
|
-
current_form_in_sync: string;
|
|
160
|
-
unexpected_value: string;
|
|
161
|
-
unexpected_value_click_to_edit: string;
|
|
162
|
-
unexpected_reference_value: string;
|
|
163
|
-
copy_url_to_clipboard: string;
|
|
164
|
-
open_image_in_new_tab: string;
|
|
165
|
-
reference_not_set: string;
|
|
166
|
-
reference_does_not_exist: string;
|
|
167
|
-
entity_not_found: string;
|
|
168
|
-
file_not_found: string;
|
|
169
|
-
unsaved_changes_in_entity: string;
|
|
170
|
-
delete_this_role: string;
|
|
171
|
-
no_roles_yet: string;
|
|
172
|
-
create_default_roles: string;
|
|
173
|
-
delete_role_confirmation: string;
|
|
174
|
-
delete_this_user: string;
|
|
175
|
-
no_users_yet: string;
|
|
176
|
-
add_logged_user_as_admin: string;
|
|
177
|
-
add_current_user_as_admin: string;
|
|
178
|
-
create_default_roles_and_add_admin: string;
|
|
179
|
-
delete_user_confirmation: string;
|
|
180
|
-
create_your_users_and_roles: string;
|
|
181
|
-
no_users_or_roles_defined: string;
|
|
182
|
-
save_before_changing_schema: string;
|
|
183
|
-
edit_schema_for_this_form: string;
|
|
184
|
-
no_permissions_to_edit_collection: string;
|
|
185
|
-
rename_group: string;
|
|
186
|
-
group_name_label: string;
|
|
187
|
-
group_name_empty_error: string;
|
|
188
|
-
group_name_exists_error: string;
|
|
189
|
-
search_collections: string;
|
|
190
|
-
/** Default group name shown when collections/views have no explicit group */
|
|
191
|
-
views_group: string;
|
|
192
|
-
youd_need_to_save_before_additional_collections: string;
|
|
193
|
-
page_not_found: string;
|
|
194
|
-
page_not_found_body: string;
|
|
195
|
-
back_to_home: string;
|
|
196
|
-
default_collection_view: string;
|
|
197
|
-
table_view: string;
|
|
198
|
-
cards_view: string;
|
|
199
|
-
kanban_view: string;
|
|
200
|
-
choose_how_entities_displayed_default: string;
|
|
201
|
-
document_view: string;
|
|
202
|
-
side_panel: string;
|
|
203
|
-
full_screen: string;
|
|
204
|
-
should_documents_opened_full_screen: string;
|
|
205
|
-
select_custom_view: string;
|
|
206
|
-
no_custom_views_defined: string;
|
|
207
|
-
select_custom_action: string;
|
|
208
|
-
no_custom_actions_defined: string;
|
|
209
|
-
no_collections_found: string;
|
|
210
|
-
start_building_collections: string;
|
|
211
|
-
create_first_collection: string;
|
|
212
|
-
define_collections_programmatically: string;
|
|
213
|
-
edit_collection: string;
|
|
214
|
-
no_permissions_edit_collection: string;
|
|
215
|
-
no_permissions_create_collection: string;
|
|
216
|
-
create_collection: string;
|
|
217
|
-
update_collection: string;
|
|
218
|
-
new_collection: string;
|
|
219
|
-
add_new_collection: string;
|
|
220
|
-
collection_with_name: string;
|
|
221
|
-
change_icon: string;
|
|
222
|
-
is_subcollection_of: string;
|
|
223
|
-
name: string;
|
|
224
|
-
collection_name_description: string;
|
|
225
|
-
path: string;
|
|
226
|
-
relative_path_to_parent: string;
|
|
227
|
-
path_in_database: string;
|
|
228
|
-
singular_name: string;
|
|
229
|
-
singular_name_description: string;
|
|
230
|
-
description: string;
|
|
231
|
-
description_of_collection: string;
|
|
232
|
-
collection_id: string;
|
|
233
|
-
collection_id_description: string;
|
|
234
|
-
collection_group: string;
|
|
235
|
-
collection_group_description: string;
|
|
236
|
-
advanced_settings: string;
|
|
237
|
-
doc_history_global: string;
|
|
238
|
-
doc_history_enabled: string;
|
|
239
|
-
doc_history_not_enabled: string;
|
|
240
|
-
doc_history_description: string;
|
|
241
|
-
document_id_generation: string;
|
|
242
|
-
code_defined: string;
|
|
243
|
-
users_must_define_id: string;
|
|
244
|
-
users_can_define_id: string;
|
|
245
|
-
doc_id_auto_generated: string;
|
|
246
|
-
config_doc_id_generation: string;
|
|
247
|
-
enable_text_search: string;
|
|
248
|
-
text_search_description: string;
|
|
249
|
-
database_id: string;
|
|
250
|
-
default_text: string;
|
|
251
|
-
custom_actions: string;
|
|
252
|
-
more_info: string;
|
|
253
|
-
define_custom_actions_cli: string;
|
|
254
|
-
action_defined_in_code: string;
|
|
255
|
-
add_custom_entity_action: string;
|
|
256
|
-
remove_this_action: string;
|
|
257
|
-
remove_action_warning: string;
|
|
258
|
-
subcollections_of: string;
|
|
259
|
-
add_subcollection: string;
|
|
260
|
-
custom_views: string;
|
|
261
|
-
define_custom_views_cli: string;
|
|
262
|
-
view_defined_in_code: string;
|
|
263
|
-
add_custom_entity_view: string;
|
|
264
|
-
delete_this_subcollection: string;
|
|
265
|
-
remove_collection_warning: string;
|
|
266
|
-
remove_this_view: string;
|
|
267
|
-
remove_view_warning: string;
|
|
268
|
-
no_collection_selected: string;
|
|
269
|
-
code_for_collection: string;
|
|
270
|
-
use_config_define_json: string;
|
|
271
|
-
customise_collection_code: string;
|
|
272
|
-
copied: string;
|
|
273
|
-
property_cant_be_edited: string;
|
|
274
|
-
property_not_editable_description: string;
|
|
275
|
-
delete_this_property: string;
|
|
276
|
-
delete_property_warning: string;
|
|
277
|
-
error_must_specify_id: string;
|
|
278
|
-
error_id_format: string;
|
|
279
|
-
error_id_already_exists: string;
|
|
280
|
-
error_must_specify_title: string;
|
|
281
|
-
custom_or_other: string;
|
|
282
|
-
select_property_widget: string;
|
|
283
|
-
error_changing_data_type: string;
|
|
284
|
-
required: string;
|
|
285
|
-
enum_form_dialog: string;
|
|
286
|
-
imported_data_preview: string;
|
|
287
|
-
entities_with_same_id_overwritten: string;
|
|
288
|
-
collection_editor: string;
|
|
289
|
-
properties_in_this_group: string;
|
|
290
|
-
data_property_mapping: string;
|
|
291
|
-
property_edit_view: string;
|
|
292
|
-
all_of_these: string;
|
|
293
|
-
any_of_these: string;
|
|
294
|
-
only_admins_edit_roles: string;
|
|
295
|
-
error_user_not_found: string;
|
|
296
|
-
/** Placeholder / label for the "all roles" filter option */
|
|
297
|
-
all_roles: string;
|
|
298
|
-
role: string;
|
|
299
|
-
name_of_this_role: string;
|
|
300
|
-
id_of_this_role: string;
|
|
301
|
-
create_entities: string;
|
|
302
|
-
read_entities: string;
|
|
303
|
-
update_entities: string;
|
|
304
|
-
delete_entities: string;
|
|
305
|
-
all_collections: string;
|
|
306
|
-
create_entities_in_collections: string;
|
|
307
|
-
access_all_data_in_every_collection: string;
|
|
308
|
-
update_data_in_any_collection: string;
|
|
309
|
-
delete_data_in_any_collection: string;
|
|
310
|
-
allow_all_permissions_in_this_collections: string;
|
|
311
|
-
all: string;
|
|
312
|
-
customise_permissions_description: string;
|
|
313
|
-
create_collections: string;
|
|
314
|
-
yes: string;
|
|
315
|
-
no: string;
|
|
316
|
-
can_user_create_collections: string;
|
|
317
|
-
edit_collections: string;
|
|
318
|
-
only_own_collections: string;
|
|
319
|
-
own: string;
|
|
320
|
-
can_user_edit_collections: string;
|
|
321
|
-
delete_collections: string;
|
|
322
|
-
can_user_delete_collections: string;
|
|
323
|
-
error_saving_role: string;
|
|
324
|
-
create_role: string;
|
|
325
|
-
update: string;
|
|
326
|
-
only_admins_change_roles: string;
|
|
327
|
-
must_be_at_least_one_admin: string;
|
|
328
|
-
logged_user_not_found: string;
|
|
329
|
-
user: string;
|
|
330
|
-
user_id: string;
|
|
331
|
-
error_updating_asset: string;
|
|
332
|
-
error_deleting_asset: string;
|
|
333
|
-
name_of_this_user: string;
|
|
334
|
-
email_of_this_user: string;
|
|
335
|
-
roles: string;
|
|
336
|
-
create_user: string;
|
|
337
|
-
filters: string;
|
|
338
|
-
multiple_entities: string;
|
|
339
|
-
unsaved_changes: string;
|
|
340
|
-
so_empty: string;
|
|
341
|
-
no_results: string;
|
|
342
|
-
refresh_data: string;
|
|
343
|
-
dark_mode: string;
|
|
344
|
-
light_mode: string;
|
|
345
|
-
system_mode: string;
|
|
346
|
-
ok: string;
|
|
347
|
-
save_collection_config: string;
|
|
348
|
-
search_for_more_icons: string;
|
|
349
|
-
ai_modified: string;
|
|
350
|
-
size_label: string;
|
|
351
|
-
group_by: string;
|
|
352
|
-
initialize_kanban_order: string;
|
|
353
|
-
users: string;
|
|
354
|
-
add_user: string;
|
|
355
|
-
add_role: string;
|
|
356
|
-
is_admin: string;
|
|
357
|
-
default_permissions: string;
|
|
358
|
-
created_on: string;
|
|
359
|
-
email: string;
|
|
360
|
-
id: string;
|
|
361
|
-
read: string;
|
|
362
|
-
column_in_file: string;
|
|
363
|
-
map_to_property: string;
|
|
364
|
-
default_values: string;
|
|
365
|
-
default_values_description: string;
|
|
366
|
-
property: string;
|
|
367
|
-
default_value: string;
|
|
368
|
-
autogenerate_id: string;
|
|
369
|
-
id_column_description: string;
|
|
370
|
-
do_not_set_value: string;
|
|
371
|
-
set_value_to_true: string;
|
|
372
|
-
set_value_to_false: string;
|
|
373
|
-
drag_and_drop_file: string;
|
|
374
|
-
error_saving_data: string;
|
|
375
|
-
retry: string;
|
|
376
|
-
saving_data: string;
|
|
377
|
-
entities_saved: string;
|
|
378
|
-
do_not_close_tab: string;
|
|
379
|
-
import: string;
|
|
380
|
-
import_data: string;
|
|
381
|
-
upload_file_description: string;
|
|
382
|
-
back: string;
|
|
383
|
-
next: string;
|
|
384
|
-
save_data: string;
|
|
385
|
-
use_column_as_id: string;
|
|
386
|
-
do_not_import_property: string;
|
|
387
|
-
entities_will_be_overwritten: string;
|
|
388
|
-
data_imported_successfully: string;
|
|
389
|
-
export: string;
|
|
390
|
-
export_data: string;
|
|
391
|
-
download_table_csv: string;
|
|
392
|
-
csv: string;
|
|
393
|
-
json: string;
|
|
394
|
-
dates_as_timestamps: string;
|
|
395
|
-
dates_as_strings: string;
|
|
396
|
-
flatten_arrays: string;
|
|
397
|
-
download: string;
|
|
398
|
-
large_number_of_documents: string;
|
|
399
|
-
include_undefined_values: string;
|
|
400
|
-
submit: string;
|
|
401
|
-
no_filterable_properties: string;
|
|
402
|
-
apply_filters: string;
|
|
403
|
-
/** Label shown on the filter presets dropdown trigger */
|
|
404
|
-
filter_presets?: string;
|
|
405
|
-
/** Tooltip shown when hovering over a preset entry */
|
|
406
|
-
filter_preset_apply?: string;
|
|
407
|
-
/** Shown when a preset is active, with {{label}} interpolation */
|
|
408
|
-
filter_preset_active?: string;
|
|
409
|
-
list: string;
|
|
410
|
-
table_view_mode: string;
|
|
411
|
-
cards: string;
|
|
412
|
-
board: string;
|
|
413
|
-
initialize_kanban_order_desc: string;
|
|
414
|
-
kanban_view_not_available: string;
|
|
415
|
-
kanban_view_requires_enum: string;
|
|
416
|
-
no_enum_values_configured: string;
|
|
417
|
-
items_need_backfill: string;
|
|
418
|
-
kanban_order_not_configured: string;
|
|
419
|
-
initialize: string;
|
|
420
|
-
confirm_multiple_delete: string;
|
|
421
|
-
delete_entity_confirm_title: string;
|
|
422
|
-
no_filter: string;
|
|
423
|
-
is_true: string;
|
|
424
|
-
is_false: string;
|
|
425
|
-
error_uploading_file_size: string;
|
|
426
|
-
error_uploading_file_type: string;
|
|
427
|
-
drag_drop_files: string;
|
|
428
|
-
drag_drop_file: string;
|
|
429
|
-
multiple_deleted: string;
|
|
430
|
-
some_entities_deleted: string;
|
|
431
|
-
error_deleting_entities: string;
|
|
432
|
-
deleted: string;
|
|
433
|
-
select_reference: string;
|
|
434
|
-
select_references: string;
|
|
435
|
-
account_settings?: string;
|
|
436
|
-
profile?: string;
|
|
437
|
-
sessions?: string;
|
|
438
|
-
security?: string;
|
|
439
|
-
change_password?: string;
|
|
440
|
-
current_password?: string;
|
|
441
|
-
new_password?: string;
|
|
442
|
-
confirm_password?: string;
|
|
443
|
-
password_changed?: string;
|
|
444
|
-
passwords_dont_match?: string;
|
|
445
|
-
password_too_short?: string;
|
|
446
|
-
password_change_not_available?: string;
|
|
447
|
-
changing_password?: string;
|
|
448
|
-
display_name?: string;
|
|
449
|
-
photo_url?: string;
|
|
450
|
-
save_profile?: string;
|
|
451
|
-
saving?: string;
|
|
452
|
-
no_active_sessions?: string;
|
|
453
|
-
revoking?: string;
|
|
454
|
-
revoke_all_sessions?: string;
|
|
455
|
-
unknown_device?: string;
|
|
456
|
-
current?: string;
|
|
457
|
-
role_id: string;
|
|
458
|
-
role_name: string;
|
|
459
|
-
add_reference: string;
|
|
460
|
-
add_reference_to: string;
|
|
461
|
-
/** RolesView — table & permissions */
|
|
462
|
-
role_deleted_successfully: string;
|
|
463
|
-
error_deleting_role: string;
|
|
464
|
-
collection_permissions: string;
|
|
465
|
-
collection: string;
|
|
466
|
-
no_collections_configured: string;
|
|
467
|
-
no_security_rules_defined: string;
|
|
468
|
-
no_rules: string;
|
|
469
|
-
/** UsersView — snackbar */
|
|
470
|
-
bootstrap_admin_success: string;
|
|
471
|
-
failed_to_bootstrap_admin: string;
|
|
472
|
-
user_deleted_successfully: string;
|
|
473
|
-
error_deleting_user: string;
|
|
474
|
-
user_created_successfully?: string;
|
|
475
|
-
invitation_sent?: string;
|
|
476
|
-
invitation_sent_title?: string;
|
|
477
|
-
temporary_password?: string;
|
|
478
|
-
temporary_password_description?: string;
|
|
479
|
-
copy_password?: string;
|
|
480
|
-
password_copied?: string;
|
|
481
|
-
/** UsersView — pagination & search */
|
|
482
|
-
search_users?: string;
|
|
483
|
-
created?: string;
|
|
484
|
-
actions?: string;
|
|
485
|
-
no_users_found?: string;
|
|
486
|
-
reset_password?: string;
|
|
487
|
-
reset_password_success?: string;
|
|
488
|
-
reset_password_confirmation?: string;
|
|
489
|
-
error_resetting_password?: string;
|
|
490
|
-
/** Permission-denied empty states */
|
|
491
|
-
no_permission_to_view_users?: string;
|
|
492
|
-
no_permission_to_view_roles?: string;
|
|
493
|
-
no_permission_description?: string;
|
|
494
|
-
/** Editor table-bubble */
|
|
495
|
-
add_row_before: string;
|
|
496
|
-
add_row_after: string;
|
|
497
|
-
delete_row: string;
|
|
498
|
-
add_column_before: string;
|
|
499
|
-
add_column_after: string;
|
|
500
|
-
delete_column: string;
|
|
501
|
-
delete_table: string;
|
|
502
|
-
/** Editor image-bubble */
|
|
503
|
-
alt_text: string;
|
|
504
|
-
title: string;
|
|
505
|
-
/** MapFieldBinding */
|
|
506
|
-
a_property_of_this_map_has_error: string;
|
|
507
|
-
/** AI Collection Generator Popover */
|
|
508
|
-
generate_collection_with_ai: string;
|
|
509
|
-
modify_collection_with_ai: string;
|
|
510
|
-
describe_collection_to_create: string;
|
|
511
|
-
describe_changes_to_make: string;
|
|
512
|
-
ai_placeholder_create: string;
|
|
513
|
-
ai_placeholder_modify: string;
|
|
514
|
-
ai_assist: string;
|
|
515
|
-
generating: string;
|
|
516
|
-
/** Recently extracted strings for collection editor */
|
|
517
|
-
this_is_subcollection_of: string;
|
|
518
|
-
use_existing_paths_database: string;
|
|
519
|
-
describe_collection_ai: string;
|
|
520
|
-
generate_with_ai: string;
|
|
521
|
-
create_from_json_config: string;
|
|
522
|
-
paste_json_config: string;
|
|
523
|
-
create_collection_from_file_formats: string;
|
|
524
|
-
select_template: string;
|
|
525
|
-
products: string;
|
|
526
|
-
collection_products_subtitle: string;
|
|
527
|
-
collection_users_subtitle: string;
|
|
528
|
-
blog_posts: string;
|
|
529
|
-
collection_blog_posts_subtitle: string;
|
|
530
|
-
pages: string;
|
|
531
|
-
collection_pages_subtitle: string;
|
|
532
|
-
continue_from_scratch: string;
|
|
533
|
-
/** Admin views config */
|
|
534
|
-
cms_users: string;
|
|
535
|
-
roles_menu: string;
|
|
536
|
-
project_settings: string;
|
|
537
|
-
by_signing_in_you_agree_to_our: string;
|
|
538
|
-
terms_and_conditions: string;
|
|
539
|
-
and_our: string;
|
|
540
|
-
privacy_policy: string;
|
|
541
|
-
email_password: string;
|
|
542
|
-
sign_in_with_google: string;
|
|
543
|
-
auth_user_not_found: string;
|
|
544
|
-
auth_wrong_password: string;
|
|
545
|
-
auth_user_disabled: string;
|
|
546
|
-
auth_account_exists_with_different_credential: string;
|
|
547
|
-
auth_email_already_in_use: string;
|
|
548
|
-
auth_google_permissions_required: string;
|
|
549
|
-
auth_invalid_email_password: string;
|
|
550
|
-
auth_enter_email_first: string;
|
|
551
|
-
auth_password_reset_sent: string;
|
|
552
|
-
auth_sign_in_account: string;
|
|
553
|
-
auth_create_new_account: string;
|
|
554
|
-
auth_password: string;
|
|
555
|
-
auth_reset_password: string;
|
|
556
|
-
auth_new_user: string;
|
|
557
|
-
auth_have_account: string;
|
|
558
|
-
auth_sign_in: string;
|
|
559
|
-
auth_sign_up: string;
|
|
560
|
-
auto_setup_collections_button: string;
|
|
561
|
-
auto_setup_collections_title: string;
|
|
562
|
-
auto_setup_collections_desc: string;
|
|
563
|
-
this_can_take_a_minute: string;
|
|
564
|
-
no_collections_found_to_setup: string;
|
|
565
|
-
collections_have_been_setup: string;
|
|
566
|
-
error_setting_up_collections: string;
|
|
567
|
-
add_your: string;
|
|
568
|
-
database_collections: string;
|
|
569
|
-
no_unmapped_collections: string;
|
|
570
|
-
query_and_update_with_datatalk: string;
|
|
571
|
-
welcome_to_rebase: string;
|
|
572
|
-
admin_panel_ready_bring_data: string;
|
|
573
|
-
admin_panel_ready_get_started: string;
|
|
574
|
-
auto_detect_collections: string;
|
|
575
|
-
auto_detect_collections_desc: string;
|
|
576
|
-
create_a_collection: string;
|
|
577
|
-
create_collection_desc: string;
|
|
578
|
-
read_the_docs: string;
|
|
579
|
-
read_the_docs_desc: string;
|
|
580
|
-
explore_docs: string;
|
|
581
|
-
want_to_customize_with_code: string;
|
|
582
|
-
to_scaffold_a_local_project: string;
|
|
583
|
-
validation: string;
|
|
584
|
-
unique: string;
|
|
585
|
-
required_message: string;
|
|
586
|
-
required_tooltip: string;
|
|
587
|
-
unique_tooltip: string;
|
|
588
|
-
lowercase: string;
|
|
589
|
-
uppercase: string;
|
|
590
|
-
trim: string;
|
|
591
|
-
exact_length: string;
|
|
592
|
-
min_length: string;
|
|
593
|
-
max_length: string;
|
|
594
|
-
matches_regex: string;
|
|
595
|
-
not_valid_regexp: string;
|
|
596
|
-
regex_helper: string;
|
|
597
|
-
min_value: string;
|
|
598
|
-
max_value: string;
|
|
599
|
-
less_than: string;
|
|
600
|
-
more_than: string;
|
|
601
|
-
positive_value: string;
|
|
602
|
-
negative_value: string;
|
|
603
|
-
integer_value: string;
|
|
604
|
-
invalid_regular_expression: string;
|
|
605
|
-
must_specify_target_collection: string;
|
|
606
|
-
need_specify_repeat_field: string;
|
|
607
|
-
need_specify_block_properties: string;
|
|
608
|
-
incomplete_condition: string;
|
|
609
|
-
field_name: string;
|
|
610
|
-
kanban_column_property: string;
|
|
611
|
-
select_a_property: string;
|
|
612
|
-
kanban_property_not_found: string;
|
|
613
|
-
no_enum_string_properties: string;
|
|
614
|
-
kanban_column_description: string;
|
|
615
|
-
create_property: string;
|
|
616
|
-
order_property: string;
|
|
617
|
-
order_property_not_found: string;
|
|
618
|
-
no_number_properties: string;
|
|
619
|
-
order_property_description: string;
|
|
620
|
-
display_settings: string;
|
|
621
|
-
default_row_size: string;
|
|
622
|
-
side_dialog_width: string;
|
|
623
|
-
side_dialog_width_description: string;
|
|
624
|
-
inline_editing_enabled: string;
|
|
625
|
-
inline_editing_disabled: string;
|
|
626
|
-
inline_editing_description: string;
|
|
627
|
-
include_json_view: string;
|
|
628
|
-
no_json_view: string;
|
|
629
|
-
json_view_description: string;
|
|
630
|
-
not_found_suffix: string;
|
|
631
|
-
editor_text: string;
|
|
632
|
-
editor_text_description: string;
|
|
633
|
-
editor_heading_1: string;
|
|
634
|
-
editor_heading_1_description: string;
|
|
635
|
-
editor_heading_2: string;
|
|
636
|
-
editor_heading_2_description: string;
|
|
637
|
-
editor_heading_3: string;
|
|
638
|
-
editor_heading_3_description: string;
|
|
639
|
-
editor_todo_list: string;
|
|
640
|
-
editor_todo_list_description: string;
|
|
641
|
-
editor_bullet_list: string;
|
|
642
|
-
editor_bullet_list_description: string;
|
|
643
|
-
editor_numbered_list: string;
|
|
644
|
-
editor_numbered_list_description: string;
|
|
645
|
-
editor_quote: string;
|
|
646
|
-
editor_quote_description: string;
|
|
647
|
-
editor_code: string;
|
|
648
|
-
editor_code_description: string;
|
|
649
|
-
editor_image: string;
|
|
650
|
-
editor_image_description: string;
|
|
651
|
-
editor_multiple: string;
|
|
652
|
-
editor_link: string;
|
|
653
|
-
editor_save: string;
|
|
654
|
-
editor_cancel: string;
|
|
655
|
-
editor_remove_link: string;
|
|
656
|
-
editor_paste_or_type_link: string;
|
|
657
|
-
editor_open_in_new_window: string;
|
|
658
|
-
editor_bold: string;
|
|
659
|
-
editor_italic: string;
|
|
660
|
-
editor_underline: string;
|
|
661
|
-
editor_strikethrough: string;
|
|
662
|
-
editor_autocomplete: string;
|
|
663
|
-
editor_autocomplete_description: string;
|
|
664
|
-
text_search_dialog_title: string;
|
|
665
|
-
text_search_local_not_recommended: string;
|
|
666
|
-
text_search_local_fetch_warning: string;
|
|
667
|
-
text_search_external_suggestion: string;
|
|
668
|
-
text_search_local_description: string;
|
|
669
|
-
text_search_own_implementation: string;
|
|
670
|
-
text_search_enable_for_collection: string;
|
|
671
|
-
text_search_enable_for_project: string;
|
|
672
|
-
text_search_enabled_snackbar: string;
|
|
673
|
-
settings_heading: string;
|
|
674
|
-
settings_project_name: string;
|
|
675
|
-
settings_default_language: string;
|
|
676
|
-
settings_default_language_caption: string;
|
|
677
|
-
settings_enable_local_text_search: string;
|
|
678
|
-
settings_local_text_search_caption: string;
|
|
679
|
-
settings_doc_history_all_collections: string;
|
|
680
|
-
settings_doc_history_caption: string;
|
|
681
|
-
settings_theme: string;
|
|
682
|
-
settings_primary_color: string;
|
|
683
|
-
settings_secondary_color: string;
|
|
684
|
-
settings_sample_theme_components: string;
|
|
685
|
-
settings_drag_drop_logo: string;
|
|
686
|
-
settings_security_rules: string;
|
|
687
|
-
settings_security_rules_description: string;
|
|
688
|
-
settings_security_rules_add_domain: string;
|
|
689
|
-
settings_security_rules_caption: string;
|
|
690
|
-
studio_sql_executing_query?: string;
|
|
691
|
-
studio_sql_query_error?: string;
|
|
692
|
-
studio_sql_run_query_placeholder?: string;
|
|
693
|
-
studio_sql_visual_execution_plan?: string;
|
|
694
|
-
studio_sql_success?: string;
|
|
695
|
-
studio_sql_no_results?: string;
|
|
696
|
-
studio_sql_rows?: string;
|
|
697
|
-
studio_sql_time?: string;
|
|
698
|
-
studio_sql_copy_markdown?: string;
|
|
699
|
-
studio_sql_export_json?: string;
|
|
700
|
-
studio_sql_export_csv?: string;
|
|
701
|
-
studio_sql_format_sql?: string;
|
|
702
|
-
studio_sql_explain?: string;
|
|
703
|
-
studio_sql_limit_1000: string;
|
|
704
|
-
studio_sql_remove_from_favorites?: string;
|
|
705
|
-
studio_sql_add_to_favorites?: string;
|
|
706
|
-
studio_sql_save?: string;
|
|
707
|
-
studio_sql_run?: string;
|
|
708
|
-
studio_sql_database?: string;
|
|
709
|
-
studio_sql_role?: string;
|
|
710
|
-
studio_sql_admin?: string;
|
|
711
|
-
studio_sql_select_db?: string;
|
|
712
|
-
studio_sql_query_results?: string;
|
|
713
|
-
studio_sql_save_snippet?: string;
|
|
714
|
-
studio_sql_snippet_name?: string;
|
|
715
|
-
studio_sql_snippet_name_placeholder?: string;
|
|
716
|
-
studio_sql_snippet_saved_local?: string;
|
|
717
|
-
studio_sql_cancel?: string;
|
|
718
|
-
studio_sql_dangerous_operation?: string;
|
|
719
|
-
studio_sql_dangerous_operation_body?: string;
|
|
720
|
-
studio_sql_snippet_saved?: string;
|
|
721
|
-
studio_sql_markdown_copied?: string;
|
|
722
|
-
studio_sql_markdown_copy_failed?: string;
|
|
723
|
-
studio_sql_row_updated?: string;
|
|
724
|
-
studio_sql_cannot_edit_missing_query?: string;
|
|
725
|
-
studio_sql_cannot_resolve_table?: string;
|
|
726
|
-
studio_sql_missing_pk?: string;
|
|
727
|
-
studio_sql_update_failed?: string;
|
|
728
|
-
studio_sql_execution_not_supported?: string;
|
|
729
|
-
studio_sql_error_executing?: string;
|
|
730
|
-
studio_sql_error_explaining?: string;
|
|
731
|
-
studio_sql_save_first_to_favorite?: string;
|
|
732
|
-
studio_sql_cms?: string;
|
|
733
|
-
studio_sql_cms_collections_tooltip?: string;
|
|
734
|
-
studio_sql_edit_entity?: string;
|
|
735
|
-
studio_sql_sql_not_supported?: string;
|
|
736
|
-
studio_sql_fetch_error?: string;
|
|
737
|
-
studio_sql_unexpected_format?: string;
|
|
738
|
-
studio_sql_no_tables?: string;
|
|
739
|
-
studio_sql_schema_fetch_error?: string;
|
|
740
|
-
studio_sql_sidebar_snippets?: string;
|
|
741
|
-
studio_sql_sidebar_history?: string;
|
|
742
|
-
studio_sql_sidebar_schema?: string;
|
|
743
|
-
studio_sql_sidebar_no_snippets?: string;
|
|
744
|
-
studio_sql_sidebar_save_snippet_hint?: string;
|
|
745
|
-
studio_sql_sidebar_no_history?: string;
|
|
746
|
-
studio_sql_sidebar_history_hint?: string;
|
|
747
|
-
studio_sql_sidebar_delete_snippet?: string;
|
|
748
|
-
studio_schema_tables?: string;
|
|
749
|
-
studio_schema_loading?: string;
|
|
750
|
-
studio_schema_no_tables?: string;
|
|
751
|
-
studio_schema_retry?: string;
|
|
752
|
-
studio_schema_primary_key?: string;
|
|
753
|
-
studio_schema_select_all?: string;
|
|
754
|
-
studio_schema_insert_into?: string;
|
|
755
|
-
studio_schema_update?: string;
|
|
756
|
-
studio_schema_delete_from?: string;
|
|
757
|
-
studio_schema_columns?: string;
|
|
758
|
-
studio_rls_title?: string;
|
|
759
|
-
studio_rls_description?: string;
|
|
760
|
-
studio_rls_enabled?: string;
|
|
761
|
-
studio_rls_disabled?: string;
|
|
762
|
-
studio_rls_no_rls?: string;
|
|
763
|
-
studio_rls_enable_rls?: string;
|
|
764
|
-
studio_rls_disable_rls?: string;
|
|
765
|
-
studio_rls_create_policy?: string;
|
|
766
|
-
studio_rls_policies?: string;
|
|
767
|
-
studio_rls_no_policies?: string;
|
|
768
|
-
studio_rls_no_policies_desc?: string;
|
|
769
|
-
studio_rls_add_first_policy?: string;
|
|
770
|
-
studio_rls_force_rls?: string;
|
|
771
|
-
studio_rls_force_rls_desc?: string;
|
|
772
|
-
studio_rls_enable_force_rls?: string;
|
|
773
|
-
studio_rls_disable_force_rls?: string;
|
|
774
|
-
studio_rls_edit?: string;
|
|
775
|
-
studio_rls_delete?: string;
|
|
776
|
-
studio_rls_confirm_delete_title?: string;
|
|
777
|
-
studio_rls_confirm_delete_body?: string;
|
|
778
|
-
studio_rls_confirm_enable_title?: string;
|
|
779
|
-
studio_rls_confirm_enable_body?: string;
|
|
780
|
-
studio_rls_confirm_disable_title?: string;
|
|
781
|
-
studio_rls_confirm_disable_body?: string;
|
|
782
|
-
studio_rls_select_table?: string;
|
|
783
|
-
studio_rls_no_tables?: string;
|
|
784
|
-
studio_rls_error?: string;
|
|
785
|
-
studio_rls_retry?: string;
|
|
786
|
-
studio_rls_loading?: string;
|
|
787
|
-
studio_policy_edit?: string;
|
|
788
|
-
studio_policy_create?: string;
|
|
789
|
-
studio_policy_defining_rules?: string;
|
|
790
|
-
studio_policy_cancel?: string;
|
|
791
|
-
studio_policy_save?: string;
|
|
792
|
-
studio_policy_template?: string;
|
|
793
|
-
studio_policy_select_template?: string;
|
|
794
|
-
studio_policy_name?: string;
|
|
795
|
-
studio_policy_name_placeholder?: string;
|
|
796
|
-
studio_policy_behavior?: string;
|
|
797
|
-
studio_policy_permissive?: string;
|
|
798
|
-
studio_policy_permissive_desc?: string;
|
|
799
|
-
studio_policy_restrictive?: string;
|
|
800
|
-
studio_policy_restrictive_desc?: string;
|
|
801
|
-
studio_policy_command?: string;
|
|
802
|
-
studio_policy_target_roles?: string;
|
|
803
|
-
studio_policy_roles_placeholder?: string;
|
|
804
|
-
studio_policy_using_expr?: string;
|
|
805
|
-
studio_policy_using_expr_desc?: string;
|
|
806
|
-
studio_policy_check_expr?: string;
|
|
807
|
-
studio_policy_check_expr_desc?: string;
|
|
808
|
-
studio_policy_help_title?: string;
|
|
809
|
-
studio_policy_help_intro?: string;
|
|
810
|
-
studio_policy_help_step1_title: string;
|
|
811
|
-
studio_policy_help_step1_desc: string;
|
|
812
|
-
studio_policy_help_step2_title: string;
|
|
813
|
-
studio_policy_help_step2_desc: string;
|
|
814
|
-
studio_policy_help_role_public?: string;
|
|
815
|
-
studio_policy_help_role_authenticated?: string;
|
|
816
|
-
studio_policy_help_role_anon?: string;
|
|
817
|
-
studio_policy_help_step3_title: string;
|
|
818
|
-
studio_policy_help_step3_desc: string;
|
|
819
|
-
studio_policy_help_step3_example: string;
|
|
820
|
-
studio_policy_help_step4_title: string;
|
|
821
|
-
studio_policy_help_step4_desc: string;
|
|
822
|
-
studio_policy_help_step4_example: string;
|
|
823
|
-
studio_policy_help_auth_vars_title?: string;
|
|
824
|
-
studio_policy_help_auth_vars_desc?: string;
|
|
825
|
-
studio_policy_help_auth_uid?: string;
|
|
826
|
-
studio_policy_help_auth_jwt?: string;
|
|
827
|
-
studio_policy_help_auth_roles?: string;
|
|
828
|
-
studio_policy_help_docs_cta?: string;
|
|
829
|
-
studio_policy_help_read_docs?: string;
|
|
830
|
-
studio_policy_help_got_it?: string;
|
|
831
|
-
studio_add_kanban_column?: string;
|
|
832
|
-
studio_add_kanban_column_title?: string;
|
|
833
|
-
studio_add_kanban_column_name?: string;
|
|
834
|
-
studio_add_kanban_column_name_placeholder?: string;
|
|
835
|
-
studio_add_kanban_column_add?: string;
|
|
836
|
-
studio_add_kanban_column_cancel?: string;
|
|
837
|
-
studio_collection_view_sql?: string;
|
|
838
|
-
studio_collection_view_cms?: string;
|
|
839
|
-
studio_editor_collection_tooltip?: string;
|
|
840
|
-
studio_editor_collection_no_permission?: string;
|
|
841
|
-
studio_editor_collection_start_tooltip?: string;
|
|
842
|
-
studio_editor_collection_start_no_permission?: string;
|
|
843
|
-
studio_editor_collection_start_copied?: string;
|
|
844
|
-
studio_editor_entity_tooltip?: string;
|
|
845
|
-
studio_editor_entity_no_permission?: string;
|
|
846
|
-
studio_home_edit_collection?: string;
|
|
847
|
-
studio_home_delete_collection?: string;
|
|
848
|
-
studio_home_confirm_delete_title?: string;
|
|
849
|
-
studio_home_confirm_delete_body?: string;
|
|
850
|
-
studio_kanban_setup?: string;
|
|
851
|
-
studio_missing_reference?: string;
|
|
852
|
-
studio_missing_reference_create?: string;
|
|
853
|
-
studio_new_collection?: string;
|
|
854
|
-
studio_new_collection_card?: string;
|
|
855
|
-
studio_new_collection_no_permission?: string;
|
|
856
|
-
studio_property_add_column?: string;
|
|
857
|
-
studio_property_add_column_no_permission?: string;
|
|
858
|
-
studio_add_kanban_column_desc?: string;
|
|
859
|
-
studio_add_kanban_column_adding?: string;
|
|
860
|
-
studio_collection_view_edit?: string;
|
|
861
|
-
studio_editor_collection_disabled?: string;
|
|
862
|
-
studio_editor_collection_edit?: string;
|
|
863
|
-
studio_editor_entity_save_first?: string;
|
|
864
|
-
studio_editor_entity_edit_schema?: string;
|
|
865
|
-
studio_editor_collection_start_save_filter?: string;
|
|
866
|
-
studio_editor_collection_start_clear_filter?: string;
|
|
867
|
-
studio_editor_collection_start_reset_filter?: string;
|
|
868
|
-
studio_editor_collection_start_saved?: string;
|
|
869
|
-
studio_home_duplicate_collection?: string;
|
|
870
|
-
studio_home_delete?: string;
|
|
871
|
-
studio_home_confirm_delete_no_data?: string;
|
|
872
|
-
studio_home_collection_deleted?: string;
|
|
873
|
-
studio_kanban_configure?: string;
|
|
874
|
-
studio_missing_reference_error?: string;
|
|
875
|
-
studio_new_collection_add?: string;
|
|
876
|
-
db_column_type?: string;
|
|
877
|
-
primary_key_unique_id?: string;
|
|
878
|
-
spread_children_as_columns?: string;
|
|
879
|
-
mode?: string;
|
|
880
|
-
timezone?: string;
|
|
881
|
-
target_collection?: string;
|
|
882
|
-
storage_file_name?: string;
|
|
883
|
-
storage_path?: string;
|
|
884
|
-
storage_max_size?: string;
|
|
885
|
-
storage_resize_mode?: string;
|
|
886
|
-
storage_output_format?: string;
|
|
887
|
-
storage_max_width?: string;
|
|
888
|
-
storage_max_height?: string;
|
|
889
|
-
storage_quality?: string;
|
|
890
|
-
storage_file_upload_config?: string;
|
|
891
|
-
storage_image_resize_config?: string;
|
|
892
|
-
storage_all_file_types?: string;
|
|
893
|
-
storage_allowed_file_types?: string;
|
|
894
|
-
storage_include_bucket_url?: string;
|
|
895
|
-
storage_save_url?: string;
|
|
896
|
-
datetime_automatic_value?: string;
|
|
897
|
-
markdown_paste_behavior?: string;
|
|
898
|
-
markdown_strip_html?: string;
|
|
899
|
-
markdown_convert_pasted?: string;
|
|
900
|
-
}
|