@bisondesk/commons-sdk 1.0.663 → 1.0.665

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.
@@ -1,12 +0,0 @@
1
- export type DocumentLayoutBranch = {
2
- branchId: string;
3
- branchName: string;
4
- language: string;
5
- letterhead: 'stationery' | 'drawn' | 'default';
6
- terms: boolean;
7
- };
8
- export type DocumentLayout = {
9
- groupId: string;
10
- branches: DocumentLayoutBranch[];
11
- };
12
- //# sourceMappingURL=document-layouts.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"document-layouts.d.ts","sourceRoot":"/","sources":["document-layouts.ts"],"names":[],"mappings":"AAIA,MAAM,MAAM,oBAAoB,GAAG;IACjC,QAAQ,EAAE,MAAM,CAAC;IACjB,UAAU,EAAE,MAAM,CAAC;IACnB,QAAQ,EAAE,MAAM,CAAC;IAEjB,UAAU,EAAE,YAAY,GAAG,OAAO,GAAG,SAAS,CAAC;IAC/C,KAAK,EAAE,OAAO,CAAC;CAChB,CAAC;AAOF,MAAM,MAAM,cAAc,GAAG;IAC3B,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,oBAAoB,EAAE,CAAC;CAClC,CAAC"}
@@ -1,2 +0,0 @@
1
- export {};
2
- //# sourceMappingURL=document-layouts.js.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"document-layouts.js","sourceRoot":"/","sources":["document-layouts.ts"],"names":[],"mappings":"","sourcesContent":["/**\n * What a built-in layout prints on one branch in one language: the letterhead the custom tree\n * gives the branch, and whether the branch has a terms page in that language.\n */\nexport type DocumentLayoutBranch = {\n branchId: string;\n branchName: string;\n language: string;\n /** Full-page stationery images, a drawn logo and footer, or the default drawn from the records. */\n letterhead: 'stationery' | 'drawn' | 'default';\n terms: boolean;\n};\n\n/**\n * A pdf-gen template group that is a built-in layout now, rendered in code rather than from a\n * DOCX. `branches` lists what the custom tree dresses each branch with, per language; it is\n * empty when every branch prints the same (the transport ITR, the vehicle sticker).\n */\nexport type DocumentLayout = {\n groupId: string;\n branches: DocumentLayoutBranch[];\n};\n"]}
@@ -1,22 +0,0 @@
1
- /**
2
- * What a built-in layout prints on one branch in one language: the letterhead the custom tree
3
- * gives the branch, and whether the branch has a terms page in that language.
4
- */
5
- export type DocumentLayoutBranch = {
6
- branchId: string;
7
- branchName: string;
8
- language: string;
9
- /** Full-page stationery images, a drawn logo and footer, or the default drawn from the records. */
10
- letterhead: 'stationery' | 'drawn' | 'default';
11
- terms: boolean;
12
- };
13
-
14
- /**
15
- * A pdf-gen template group that is a built-in layout now, rendered in code rather than from a
16
- * DOCX. `branches` lists what the custom tree dresses each branch with, per language; it is
17
- * empty when every branch prints the same (the transport ITR, the vehicle sticker).
18
- */
19
- export type DocumentLayout = {
20
- groupId: string;
21
- branches: DocumentLayoutBranch[];
22
- };