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