@pitcher/canvas-ui 2026.1.15-85318 → 2026.1.19-112908-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.
|
@@ -4605,6 +4605,10 @@ export default function useCanvas(): {
|
|
|
4605
4605
|
}[] | undefined;
|
|
4606
4606
|
disable_rep_changing_allow_download?: boolean | undefined;
|
|
4607
4607
|
initial_allow_download?: boolean | undefined;
|
|
4608
|
+
communication_templates_by_lang?: Record<string, {
|
|
4609
|
+
subject: string;
|
|
4610
|
+
body: string;
|
|
4611
|
+
}> | undefined;
|
|
4608
4612
|
} | undefined;
|
|
4609
4613
|
hide_page_break_in_toc?: boolean | undefined;
|
|
4610
4614
|
disable_display_index_in_toc?: boolean | undefined;
|
|
@@ -4857,6 +4861,7 @@ export default function useCanvas(): {
|
|
|
4857
4861
|
name: string;
|
|
4858
4862
|
enabled: boolean;
|
|
4859
4863
|
type: "base" | "app";
|
|
4864
|
+
sidebar_name?: string | undefined;
|
|
4860
4865
|
}[] | undefined;
|
|
4861
4866
|
sfdc?: {
|
|
4862
4867
|
use_static_ip_proxy?: boolean | undefined;
|
|
@@ -4937,6 +4942,10 @@ export default function useCanvas(): {
|
|
|
4937
4942
|
}[] | undefined;
|
|
4938
4943
|
disable_rep_changing_allow_download?: boolean | undefined;
|
|
4939
4944
|
initial_allow_download?: boolean | undefined;
|
|
4945
|
+
communication_templates_by_lang?: Record<string, {
|
|
4946
|
+
subject: string;
|
|
4947
|
+
body: string;
|
|
4948
|
+
}> | undefined;
|
|
4940
4949
|
} | undefined;
|
|
4941
4950
|
hide_page_break_in_toc?: boolean | undefined;
|
|
4942
4951
|
disable_display_index_in_toc?: boolean | undefined;
|
|
@@ -5189,6 +5198,7 @@ export default function useCanvas(): {
|
|
|
5189
5198
|
name: string;
|
|
5190
5199
|
enabled: boolean;
|
|
5191
5200
|
type: "base" | "app";
|
|
5201
|
+
sidebar_name?: string | undefined;
|
|
5192
5202
|
}[] | undefined;
|
|
5193
5203
|
sfdc?: {
|
|
5194
5204
|
use_static_ip_proxy?: boolean | undefined;
|
|
@@ -5228,6 +5238,12 @@ export default function useCanvas(): {
|
|
|
5228
5238
|
}[] | undefined;
|
|
5229
5239
|
readonly disable_rep_changing_allow_download?: boolean | undefined;
|
|
5230
5240
|
readonly initial_allow_download?: boolean | undefined;
|
|
5241
|
+
readonly communication_templates_by_lang?: {
|
|
5242
|
+
readonly [x: string]: {
|
|
5243
|
+
readonly subject: string;
|
|
5244
|
+
readonly body: string;
|
|
5245
|
+
};
|
|
5246
|
+
} | undefined;
|
|
5231
5247
|
} | undefined;
|
|
5232
5248
|
readonly hide_page_break_in_toc?: boolean | undefined;
|
|
5233
5249
|
readonly disable_display_index_in_toc?: boolean | undefined;
|
|
@@ -5512,6 +5528,7 @@ export default function useCanvas(): {
|
|
|
5512
5528
|
readonly name: string;
|
|
5513
5529
|
readonly enabled: boolean;
|
|
5514
5530
|
readonly type: "base" | "app";
|
|
5531
|
+
readonly sidebar_name?: string | undefined;
|
|
5515
5532
|
}[] | undefined;
|
|
5516
5533
|
readonly sfdc?: {
|
|
5517
5534
|
readonly use_static_ip_proxy?: boolean | undefined;
|
|
@@ -5550,6 +5567,12 @@ export default function useCanvas(): {
|
|
|
5550
5567
|
}[] | undefined;
|
|
5551
5568
|
readonly disable_rep_changing_allow_download?: boolean | undefined;
|
|
5552
5569
|
readonly initial_allow_download?: boolean | undefined;
|
|
5570
|
+
readonly communication_templates_by_lang?: {
|
|
5571
|
+
readonly [x: string]: {
|
|
5572
|
+
readonly subject: string;
|
|
5573
|
+
readonly body: string;
|
|
5574
|
+
};
|
|
5575
|
+
} | undefined;
|
|
5553
5576
|
} | undefined;
|
|
5554
5577
|
readonly hide_page_break_in_toc?: boolean | undefined;
|
|
5555
5578
|
readonly disable_display_index_in_toc?: boolean | undefined;
|
|
@@ -5834,6 +5857,7 @@ export default function useCanvas(): {
|
|
|
5834
5857
|
readonly name: string;
|
|
5835
5858
|
readonly enabled: boolean;
|
|
5836
5859
|
readonly type: "base" | "app";
|
|
5860
|
+
readonly sidebar_name?: string | undefined;
|
|
5837
5861
|
}[] | undefined;
|
|
5838
5862
|
readonly sfdc?: {
|
|
5839
5863
|
readonly use_static_ip_proxy?: boolean | undefined;
|
|
@@ -39,6 +39,10 @@ export type OrganizationSettings = {
|
|
|
39
39
|
}[];
|
|
40
40
|
disable_rep_changing_allow_download?: boolean;
|
|
41
41
|
initial_allow_download?: boolean;
|
|
42
|
+
communication_templates_by_lang?: Record<string, {
|
|
43
|
+
subject: string;
|
|
44
|
+
body: string;
|
|
45
|
+
}>;
|
|
42
46
|
};
|
|
43
47
|
};
|
|
44
48
|
allow_revoke_shared_link?: boolean;
|
|
@@ -108,6 +112,7 @@ export type OrganizationSettings = {
|
|
|
108
112
|
name: string;
|
|
109
113
|
enabled: boolean;
|
|
110
114
|
type: 'base' | 'app';
|
|
115
|
+
sidebar_name?: string;
|
|
111
116
|
}[];
|
|
112
117
|
sfdc?: {
|
|
113
118
|
use_static_ip_proxy?: boolean;
|