@pitcher/canvas-ui 2026.1.15-101627-beta → 2026.1.15-141335-beta

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.
@@ -4857,6 +4857,7 @@ export default function useCanvas(): {
4857
4857
  name: string;
4858
4858
  enabled: boolean;
4859
4859
  type: "base" | "app";
4860
+ sidebar_name?: string | undefined;
4860
4861
  }[] | undefined;
4861
4862
  sfdc?: {
4862
4863
  use_static_ip_proxy?: boolean | undefined;
@@ -4865,6 +4866,7 @@ export default function useCanvas(): {
4865
4866
  enable_recents?: boolean | undefined;
4866
4867
  enable_favorites?: boolean | undefined;
4867
4868
  enable_sync_file_filtering?: boolean | undefined;
4869
+ enable_sfdc_sync?: boolean | undefined;
4868
4870
  time_format?: string | undefined;
4869
4871
  date_format?: string | undefined;
4870
4872
  is_file_expiration_mandatory?: boolean | undefined;
@@ -4907,6 +4909,7 @@ export default function useCanvas(): {
4907
4909
  enable_multipeer_connectivity?: boolean;
4908
4910
  enable_syncbox?: boolean;
4909
4911
  enable_sync_file_filtering?: boolean;
4912
+ enable_sfdc_sync?: boolean;
4910
4913
  time_format?: string;
4911
4914
  date_format?: string;
4912
4915
  is_file_expiration_mandatory?: boolean;
@@ -5187,6 +5190,7 @@ export default function useCanvas(): {
5187
5190
  name: string;
5188
5191
  enabled: boolean;
5189
5192
  type: "base" | "app";
5193
+ sidebar_name?: string | undefined;
5190
5194
  }[] | undefined;
5191
5195
  sfdc?: {
5192
5196
  use_static_ip_proxy?: boolean | undefined;
@@ -5195,6 +5199,7 @@ export default function useCanvas(): {
5195
5199
  enable_recents?: boolean | undefined;
5196
5200
  enable_favorites?: boolean | undefined;
5197
5201
  enable_sync_file_filtering?: boolean | undefined;
5202
+ enable_sfdc_sync?: boolean | undefined;
5198
5203
  time_format?: string | undefined;
5199
5204
  date_format?: string | undefined;
5200
5205
  is_file_expiration_mandatory?: boolean | undefined;
@@ -5509,6 +5514,7 @@ export default function useCanvas(): {
5509
5514
  readonly name: string;
5510
5515
  readonly enabled: boolean;
5511
5516
  readonly type: "base" | "app";
5517
+ readonly sidebar_name?: string | undefined;
5512
5518
  }[] | undefined;
5513
5519
  readonly sfdc?: {
5514
5520
  readonly use_static_ip_proxy?: boolean | undefined;
@@ -5517,6 +5523,7 @@ export default function useCanvas(): {
5517
5523
  readonly enable_recents?: boolean | undefined;
5518
5524
  readonly enable_favorites?: boolean | undefined;
5519
5525
  readonly enable_sync_file_filtering?: boolean | undefined;
5526
+ readonly enable_sfdc_sync?: boolean | undefined;
5520
5527
  readonly time_format?: string | undefined;
5521
5528
  readonly date_format?: string | undefined;
5522
5529
  readonly is_file_expiration_mandatory?: boolean | undefined;
@@ -5830,6 +5837,7 @@ export default function useCanvas(): {
5830
5837
  readonly name: string;
5831
5838
  readonly enabled: boolean;
5832
5839
  readonly type: "base" | "app";
5840
+ readonly sidebar_name?: string | undefined;
5833
5841
  }[] | undefined;
5834
5842
  readonly sfdc?: {
5835
5843
  readonly use_static_ip_proxy?: boolean | undefined;
@@ -5838,6 +5846,7 @@ export default function useCanvas(): {
5838
5846
  readonly enable_recents?: boolean | undefined;
5839
5847
  readonly enable_favorites?: boolean | undefined;
5840
5848
  readonly enable_sync_file_filtering?: boolean | undefined;
5849
+ readonly enable_sfdc_sync?: boolean | undefined;
5841
5850
  readonly time_format?: string | undefined;
5842
5851
  readonly date_format?: string | undefined;
5843
5852
  readonly is_file_expiration_mandatory?: boolean | undefined;
@@ -4,7 +4,7 @@ import { PitcherEnv } from '../sdk/interfaces';
4
4
  * Composable for SmartStore availability checks
5
5
  *
6
6
  * SmartStore is Salesforce Mobile SDK's local database for offline data access on iOS.
7
- * It requires both iOS mode and the sfdc_offline_enabled LaunchDarkly flag to be enabled.
7
+ * It requires both iOS mode and the enable_sfdc_sync instance setting to be enabled.
8
8
  *
9
9
  * @param env - Optional reactive environment object from app store (avoids redundant API calls)
10
10
  *
@@ -4,16 +4,16 @@ export declare function crmQuery(payload: CRMQueryPayload): Promise<any>;
4
4
  /**
5
5
  * Executes a CRM query with automatic iOS/SmartStore adaptation.
6
6
  *
7
- * On iOS devices with the 'sfdc_offline_enabled' LaunchDarkly flag enabled,
7
+ * On iOS devices with the 'enable_sfdc_sync' instance setting enabled,
8
8
  * this function automatically converts SOQL queries to SmartStore Smart SQL format
9
9
  * and uses the local SmartStore for offline data access.
10
- * On other platforms or when the flag is disabled, it uses the standard CRM query API.
10
+ * On other platforms or when the setting is disabled, it uses the standard CRM query API.
11
11
  *
12
12
  * @param {CRMQueryPayload} payload - The query payload containing the SOQL query string.
13
13
  * @returns {Promise<any>} - Promise resolving with query results.
14
14
  *
15
15
  * @example
16
- * // Works on all platforms - automatically adapts for iOS with sfdc_offline_enabled LD flag
16
+ * // Works on all platforms - automatically adapts for iOS with enable_sfdc_sync instance setting
17
17
  * const result = await crmQueryAdaptive({ query: 'SELECT Id, Name FROM Account WHERE Active = true' })
18
18
  */
19
19
  export declare function crmQueryAdaptive(payload: CRMQueryPayload): Promise<any>;
@@ -60,6 +60,7 @@ export type InstanceSettings = OrganizationSettings & {
60
60
  enable_multipeer_connectivity?: boolean;
61
61
  enable_syncbox?: boolean;
62
62
  enable_sync_file_filtering?: boolean;
63
+ enable_sfdc_sync?: boolean;
63
64
  time_format?: string;
64
65
  date_format?: string;
65
66
  is_file_expiration_mandatory?: boolean;
@@ -1,4 +1,4 @@
1
- export type LaunchDarklyBooleanFlagKey = 'ai_code_generation_model' | 'ai_text_generation_model' | 'ai_image_generation_model' | 'ai_video_generation_model' | 'allow_ai_prompts_in_canvas_text' | 'allow_bulk_actions_canvases_files' | 'allow_content_grid_autofill' | 'allow_canvas_duplication' | 'allow_canvases_tables_columns_settings' | 'allow_table_column_resizing' | 'allow_creating_canvas_with_no_template' | 'allow_dynamic_data_table_for_scribble_component' | 'allow_html_for_scribble_component' | 'allow_embeddable_for_scribble_component' | 'allow_embeddable_hiding' | 'allow_multimedia_for_scribble_component' | 'allow_note_taking' | 'allow_rep_canvas_metadata_edit' | 'allow_rep_file_distributions' | 'allow_rep_file_rating' | 'allow_rep_file_upload' | 'allow_saving_annotations_in_personal_layer' | 'allow_user_to_edit_font_size_and_color_in_canvas_tokens' | 'are_sections_system_controlled' | 'enable_canvas_core_distributions' | 'enable_file_core_distributions' | 'copy_context_to_canvas' | 'copy_template_metadata_to_canvas' | 'disable_canvas_edit_for_reps' | 'disable_custom_tooltips' | 'disable_file_edit_content' | 'disable_fullscreen_canvas_builder' | 'disable_impact_web_browser_fullscreen' | 'display_section_list_name' | 'disable_download_canvas' | 'enable_ai_generated_thumbnails' | 'enable_analytics' | 'enable_app_developer_role' | 'enable_algolia_search' | 'enable_background_image_theme_options' | 'enable_better_canvas_builder_control_bars_on_zoom' | 'enable_bulk_update_file_attributes' | 'enable_canvas_as_home' | 'enable_canvas_blocks' | 'enable_canvas_node_debugging' | 'enable_canvas_locks' | 'enable_canvas_template_edit_in_impact' | 'enable_canvas_tokens' | 'enable_collaborations' | 'enable_collection_player_data_accessor' | 'enable_content_grid_data_accessor' | 'enable_content_type_change_in_content_selector' | 'enable_cross_tab_instance_reload_for_ld_sync' | 'enable_create_section_from_section_template' | 'enable_custom_display_overrides' | 'enable_default_crm_shape' | 'enable_detailed_date_format' | 'enable_dsr_readonly_annotations' | 'enable_dynamic_data_table_component' | 'enable_custom_data_tables' | 'enable_embedded_video_autoplay' | 'enable_embedded_video' | 'enable_enhanced_canvas_drawer_app' | 'enable_enhanced_indicators' | 'enable_enhanced_section_execution_states' | 'enable_experimental_canvas_builder_dnd' | 'enable_extra_file_data' | 'enable_file_pages_metadata' | 'enable_file_revisions' | 'enable_folder_details_edit' | 'enable_handlebar_template_support' | 'enable_height_in_component_theming' | 'enable_hotspot_visibility' | 'enable_improved_canvas_node_updating' | 'enable_individual_users_in_file_distribution' | 'enable_insearch_in_section_selector' | 'enable_instance_cloner' | 'enable_advanced_cloner' | 'enable_instance_editor_role' | 'enable_instance_navigation_from_management' | 'enable_knock_notifications' | 'enable_maintain_section_theme_control' | 'enable_metadata_in_file_uploads_with_default_values' | 'enable_more_intuitive_component_spacing' | 'enable_multimedia_component_ai_images' | 'enable_new_meeting_bar' | 'enable_original_pdf_link' | 'enable_scale_content' | 'enable_sorting_in_tiptap_table' | 'enable_theme_assets' | 'enable_toc_enhancements_to_support_same_section_in_section_list' | 'enable_pia_assistant' | 'enable_pipe_character_multi_search' | 'enable_popup_apps' | 'enable_reorder_search' | 'enable_reorder_scribble_isolation' | 'enable_reorder_component_options_menu' | 'enable_resizable_multimedia_component' | 'enable_responsive_scribble_component' | 'enable_saved_canvases_filters' | 'enable_short_tag_column_in_tables' | 'enable_scribble_component' | 'enable_scribble_content_as_background' | 'enable_search_and_filters_in_multimedia_component' | 'enable_section_context_in_dsr' | 'enable_selectors_dnd' | 'enable_section_selector_edit_section' | 'enable_smart_folders' | 'enable_smart_folders_for_sections' | 'enable_smart_folders_in_section_selector' | 'enable_smart_folders_in_files' | 'enable_sorting_in_sections' | 'enable_suggested_tags' | 'enable_template_folders' | 'enable_theme_options_border_radius' | 'enable_themes' | 'hide_asset_uploader' | 'include_files_content_in_print' | 'interpolate_rep_canvases_on_edit_mode' | 'is_fe_sentry_enabled' | 'is_timeline_component_allowed' | 'launch_in_full_screen_on_present_mode' | 'prefer_online_handlers' | 'restrict_owned_files_from_admins' | 'show_asset_manager_for_multimedia' | 'show_clear_all_annotations_button' | 'show_content_selector_list_view' | 'show_metadata_filters_in_all_canvas_things' | 'show_only_preview_mode_for_html_component' | 'show_popularity_icons' | 'use_core_endpoint_for_analytics' | 'convert_pptx_to_section_with_scribble_pdfjs' | 'use_short_url_for_shared_link' | 'use_zoho_instead_of_ms_wopi' | 'enable_new_section_list' | 'enable_sharebox_apps' | 'enable_sharebox_bulk_filtering' | 'enable_back_to_previous_location_in_canvas' | 'enable_crm_shape_for_external_links' | 'enable_adaptive_popup_apps' | 'enable_file_version_polling' | 'skip_pspdfkit_wait_for_high_res_thumbs' | 'enable_reactive_scribble_component_toolbar' | 'enable_embeddable_full_screen_mode' | 'enable_enhanced_user_management' | 'keep_static_pptx_editable' | 'enable_canvas_pdf_dimensions' | 'enable_editable_pptx_of_canvas' | 'enable_canvas_control_bars_collapse' | 'enable_rep_app_visibility_order' | 'sfdc_offline_enabled';
1
+ export type LaunchDarklyBooleanFlagKey = 'ai_code_generation_model' | 'ai_text_generation_model' | 'ai_image_generation_model' | 'ai_video_generation_model' | 'allow_ai_prompts_in_canvas_text' | 'allow_bulk_actions_canvases_files' | 'allow_content_grid_autofill' | 'allow_canvas_duplication' | 'allow_canvases_tables_columns_settings' | 'allow_table_column_resizing' | 'allow_creating_canvas_with_no_template' | 'allow_dynamic_data_table_for_scribble_component' | 'allow_html_for_scribble_component' | 'allow_embeddable_for_scribble_component' | 'allow_embeddable_hiding' | 'allow_multimedia_for_scribble_component' | 'allow_note_taking' | 'allow_rep_canvas_metadata_edit' | 'allow_rep_file_distributions' | 'allow_rep_file_rating' | 'allow_rep_file_upload' | 'allow_saving_annotations_in_personal_layer' | 'allow_user_to_edit_font_size_and_color_in_canvas_tokens' | 'are_sections_system_controlled' | 'enable_canvas_core_distributions' | 'enable_file_core_distributions' | 'copy_context_to_canvas' | 'copy_template_metadata_to_canvas' | 'disable_canvas_edit_for_reps' | 'disable_custom_tooltips' | 'disable_file_edit_content' | 'disable_fullscreen_canvas_builder' | 'disable_impact_web_browser_fullscreen' | 'display_section_list_name' | 'disable_download_canvas' | 'enable_ai_generated_thumbnails' | 'enable_analytics' | 'enable_app_developer_role' | 'enable_algolia_search' | 'enable_background_image_theme_options' | 'enable_better_canvas_builder_control_bars_on_zoom' | 'enable_bulk_update_file_attributes' | 'enable_canvas_as_home' | 'enable_canvas_blocks' | 'enable_canvas_node_debugging' | 'enable_canvas_locks' | 'enable_canvas_template_edit_in_impact' | 'enable_canvas_tokens' | 'enable_collaborations' | 'enable_collection_player_data_accessor' | 'enable_content_grid_data_accessor' | 'enable_content_type_change_in_content_selector' | 'enable_cross_tab_instance_reload_for_ld_sync' | 'enable_create_section_from_section_template' | 'enable_custom_display_overrides' | 'enable_default_crm_shape' | 'enable_detailed_date_format' | 'enable_dsr_readonly_annotations' | 'enable_dynamic_data_table_component' | 'enable_custom_data_tables' | 'enable_embedded_video_autoplay' | 'enable_embedded_video' | 'enable_enhanced_canvas_drawer_app' | 'enable_enhanced_indicators' | 'enable_enhanced_section_execution_states' | 'enable_experimental_canvas_builder_dnd' | 'enable_extra_file_data' | 'enable_file_pages_metadata' | 'enable_file_revisions' | 'enable_folder_details_edit' | 'enable_handlebar_template_support' | 'enable_height_in_component_theming' | 'enable_hotspot_visibility' | 'enable_improved_canvas_node_updating' | 'enable_individual_users_in_file_distribution' | 'enable_insearch_in_section_selector' | 'enable_instance_cloner' | 'enable_advanced_cloner' | 'enable_instance_editor_role' | 'enable_instance_navigation_from_management' | 'enable_knock_notifications' | 'enable_maintain_section_theme_control' | 'enable_metadata_in_file_uploads_with_default_values' | 'enable_more_intuitive_component_spacing' | 'enable_multimedia_component_ai_images' | 'enable_new_meeting_bar' | 'enable_original_pdf_link' | 'enable_scale_content' | 'enable_sorting_in_tiptap_table' | 'enable_theme_assets' | 'enable_toc_enhancements_to_support_same_section_in_section_list' | 'enable_pia_assistant' | 'enable_pipe_character_multi_search' | 'enable_popup_apps' | 'enable_reorder_search' | 'enable_reorder_scribble_isolation' | 'enable_reorder_component_options_menu' | 'enable_resizable_multimedia_component' | 'enable_responsive_scribble_component' | 'enable_saved_canvases_filters' | 'enable_short_tag_column_in_tables' | 'enable_scribble_component' | 'enable_scribble_content_as_background' | 'enable_search_and_filters_in_multimedia_component' | 'enable_section_context_in_dsr' | 'enable_selectors_dnd' | 'enable_section_selector_edit_section' | 'enable_smart_folders' | 'enable_smart_folders_for_sections' | 'enable_smart_folders_in_section_selector' | 'enable_smart_folders_in_files' | 'enable_sorting_in_sections' | 'enable_suggested_tags' | 'enable_template_folders' | 'enable_theme_options_border_radius' | 'enable_themes' | 'hide_asset_uploader' | 'include_files_content_in_print' | 'interpolate_rep_canvases_on_edit_mode' | 'is_fe_sentry_enabled' | 'is_timeline_component_allowed' | 'launch_in_full_screen_on_present_mode' | 'prefer_online_handlers' | 'restrict_owned_files_from_admins' | 'show_asset_manager_for_multimedia' | 'show_clear_all_annotations_button' | 'show_content_selector_list_view' | 'show_metadata_filters_in_all_canvas_things' | 'show_only_preview_mode_for_html_component' | 'show_popularity_icons' | 'use_core_endpoint_for_analytics' | 'convert_pptx_to_section_with_scribble_pdfjs' | 'use_short_url_for_shared_link' | 'use_zoho_instead_of_ms_wopi' | 'enable_new_section_list' | 'enable_sharebox_apps' | 'enable_sharebox_bulk_filtering' | 'enable_back_to_previous_location_in_canvas' | 'enable_crm_shape_for_external_links' | 'enable_adaptive_popup_apps' | 'enable_file_version_polling' | 'skip_pspdfkit_wait_for_high_res_thumbs' | 'enable_reactive_scribble_component_toolbar' | 'enable_embeddable_full_screen_mode' | 'enable_enhanced_user_management' | 'keep_static_pptx_editable' | 'enable_canvas_pdf_dimensions' | 'enable_editable_pptx_of_canvas' | 'enable_canvas_control_bars_collapse' | 'enable_rep_app_visibility_order';
2
2
  export type LaunchDarklyNumberFlagKey = 'canvas_section_selector_page_size' | 'canvas_section_selector_selected_items_with_thumbnail_size';
3
3
  type LaunchDarklyObjectFlags = {
4
4
  canvas_manager_table_columns: CanvasManagerTableColumns;
@@ -108,6 +108,7 @@ export type OrganizationSettings = {
108
108
  name: string;
109
109
  enabled: boolean;
110
110
  type: 'base' | 'app';
111
+ sidebar_name?: string;
111
112
  }[];
112
113
  sfdc?: {
113
114
  use_static_ip_proxy?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pitcher/canvas-ui",
3
- "version": "2026.1.15-101627-beta",
3
+ "version": "2026.1.15-141335-beta",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"