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