@pitcher/canvas-ui 2026.1.20-125834-beta → 2026.1.20-131745

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;
@@ -4938,6 +4942,10 @@ export default function useCanvas(): {
4938
4942
  }[] | undefined;
4939
4943
  disable_rep_changing_allow_download?: boolean | undefined;
4940
4944
  initial_allow_download?: boolean | undefined;
4945
+ communication_templates_by_lang?: Record<string, {
4946
+ subject: string;
4947
+ body: string;
4948
+ }> | undefined;
4941
4949
  } | undefined;
4942
4950
  hide_page_break_in_toc?: boolean | undefined;
4943
4951
  disable_display_index_in_toc?: boolean | undefined;
@@ -5230,6 +5238,12 @@ export default function useCanvas(): {
5230
5238
  }[] | undefined;
5231
5239
  readonly disable_rep_changing_allow_download?: boolean | undefined;
5232
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;
5233
5247
  } | undefined;
5234
5248
  readonly hide_page_break_in_toc?: boolean | undefined;
5235
5249
  readonly disable_display_index_in_toc?: boolean | undefined;
@@ -5553,6 +5567,12 @@ export default function useCanvas(): {
5553
5567
  }[] | undefined;
5554
5568
  readonly disable_rep_changing_allow_download?: boolean | undefined;
5555
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;
5556
5576
  } | undefined;
5557
5577
  readonly hide_page_break_in_toc?: boolean | undefined;
5558
5578
  readonly disable_display_index_in_toc?: 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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pitcher/canvas-ui",
3
- "version": "2026.1.20-125834-beta",
3
+ "version": "2026.1.20-131745",
4
4
  "type": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"