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