@cyanheads/ris-austria-mcp-server 0.1.5

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 (154) hide show
  1. package/AGENTS.md +401 -0
  2. package/CLAUDE.md +401 -0
  3. package/Dockerfile +125 -0
  4. package/LICENSE +201 -0
  5. package/README.md +309 -0
  6. package/changelog/0.1.x/0.1.0.md +25 -0
  7. package/changelog/0.1.x/0.1.1.md +24 -0
  8. package/changelog/0.1.x/0.1.2.md +16 -0
  9. package/changelog/0.1.x/0.1.3.md +11 -0
  10. package/changelog/0.1.x/0.1.4.md +11 -0
  11. package/changelog/0.1.x/0.1.5.md +18 -0
  12. package/changelog/template.md +129 -0
  13. package/dist/config/server-config.d.ts +19 -0
  14. package/dist/config/server-config.d.ts.map +1 -0
  15. package/dist/config/server-config.js +35 -0
  16. package/dist/config/server-config.js.map +1 -0
  17. package/dist/index.d.ts +7 -0
  18. package/dist/index.d.ts.map +1 -0
  19. package/dist/index.js +37 -0
  20. package/dist/index.js.map +1 -0
  21. package/dist/mcp-server/resources/definitions/ris-document.resource.d.ts +30 -0
  22. package/dist/mcp-server/resources/definitions/ris-document.resource.d.ts.map +1 -0
  23. package/dist/mcp-server/resources/definitions/ris-document.resource.js +75 -0
  24. package/dist/mcp-server/resources/definitions/ris-document.resource.js.map +1 -0
  25. package/dist/mcp-server/tools/definitions/_shared.d.ts +8 -0
  26. package/dist/mcp-server/tools/definitions/_shared.d.ts.map +1 -0
  27. package/dist/mcp-server/tools/definitions/_shared.js +10 -0
  28. package/dist/mcp-server/tools/definitions/_shared.js.map +1 -0
  29. package/dist/mcp-server/tools/definitions/ris-get-document.tool.d.ts +189 -0
  30. package/dist/mcp-server/tools/definitions/ris-get-document.tool.d.ts.map +1 -0
  31. package/dist/mcp-server/tools/definitions/ris-get-document.tool.js +504 -0
  32. package/dist/mcp-server/tools/definitions/ris-get-document.tool.js.map +1 -0
  33. package/dist/mcp-server/tools/definitions/ris-list-reference.tool.d.ts +42 -0
  34. package/dist/mcp-server/tools/definitions/ris-list-reference.tool.d.ts.map +1 -0
  35. package/dist/mcp-server/tools/definitions/ris-list-reference.tool.js +316 -0
  36. package/dist/mcp-server/tools/definitions/ris-list-reference.tool.js.map +1 -0
  37. package/dist/mcp-server/tools/definitions/ris-lookup-citation.tool.d.ts +80 -0
  38. package/dist/mcp-server/tools/definitions/ris-lookup-citation.tool.d.ts.map +1 -0
  39. package/dist/mcp-server/tools/definitions/ris-lookup-citation.tool.js +529 -0
  40. package/dist/mcp-server/tools/definitions/ris-lookup-citation.tool.js.map +1 -0
  41. package/dist/mcp-server/tools/definitions/ris-search-announcements.tool.d.ts +118 -0
  42. package/dist/mcp-server/tools/definitions/ris-search-announcements.tool.d.ts.map +1 -0
  43. package/dist/mcp-server/tools/definitions/ris-search-announcements.tool.js +389 -0
  44. package/dist/mcp-server/tools/definitions/ris-search-announcements.tool.js.map +1 -0
  45. package/dist/mcp-server/tools/definitions/ris-search-case-law.tool.d.ts +178 -0
  46. package/dist/mcp-server/tools/definitions/ris-search-case-law.tool.d.ts.map +1 -0
  47. package/dist/mcp-server/tools/definitions/ris-search-case-law.tool.js +495 -0
  48. package/dist/mcp-server/tools/definitions/ris-search-case-law.tool.js.map +1 -0
  49. package/dist/mcp-server/tools/definitions/ris-search-drafts.tool.d.ts +80 -0
  50. package/dist/mcp-server/tools/definitions/ris-search-drafts.tool.d.ts.map +1 -0
  51. package/dist/mcp-server/tools/definitions/ris-search-drafts.tool.js +264 -0
  52. package/dist/mcp-server/tools/definitions/ris-search-drafts.tool.js.map +1 -0
  53. package/dist/mcp-server/tools/definitions/ris-search-gazette.tool.d.ts +147 -0
  54. package/dist/mcp-server/tools/definitions/ris-search-gazette.tool.d.ts.map +1 -0
  55. package/dist/mcp-server/tools/definitions/ris-search-gazette.tool.js +509 -0
  56. package/dist/mcp-server/tools/definitions/ris-search-gazette.tool.js.map +1 -0
  57. package/dist/mcp-server/tools/definitions/ris-search-legislation.tool.d.ts +145 -0
  58. package/dist/mcp-server/tools/definitions/ris-search-legislation.tool.d.ts.map +1 -0
  59. package/dist/mcp-server/tools/definitions/ris-search-legislation.tool.js +466 -0
  60. package/dist/mcp-server/tools/definitions/ris-search-legislation.tool.js.map +1 -0
  61. package/dist/mcp-server/tools/definitions/ris-track-changes.tool.d.ts +73 -0
  62. package/dist/mcp-server/tools/definitions/ris-track-changes.tool.d.ts.map +1 -0
  63. package/dist/mcp-server/tools/definitions/ris-track-changes.tool.js +265 -0
  64. package/dist/mcp-server/tools/definitions/ris-track-changes.tool.js.map +1 -0
  65. package/dist/services/ris/normalizer.d.ts +40 -0
  66. package/dist/services/ris/normalizer.d.ts.map +1 -0
  67. package/dist/services/ris/normalizer.js +480 -0
  68. package/dist/services/ris/normalizer.js.map +1 -0
  69. package/dist/services/ris/reference/applications.d.ts +529 -0
  70. package/dist/services/ris/reference/applications.d.ts.map +1 -0
  71. package/dist/services/ris/reference/applications.js +520 -0
  72. package/dist/services/ris/reference/applications.js.map +1 -0
  73. package/dist/services/ris/reference/changed-since-intervals.d.ts +42 -0
  74. package/dist/services/ris/reference/changed-since-intervals.d.ts.map +1 -0
  75. package/dist/services/ris/reference/changed-since-intervals.js +16 -0
  76. package/dist/services/ris/reference/changed-since-intervals.js.map +1 -0
  77. package/dist/services/ris/reference/citation-formats.d.ts +39 -0
  78. package/dist/services/ris/reference/citation-formats.d.ts.map +1 -0
  79. package/dist/services/ris/reference/citation-formats.js +39 -0
  80. package/dist/services/ris/reference/citation-formats.js.map +1 -0
  81. package/dist/services/ris/reference/collections.d.ts +82 -0
  82. package/dist/services/ris/reference/collections.d.ts.map +1 -0
  83. package/dist/services/ris/reference/collections.js +102 -0
  84. package/dist/services/ris/reference/collections.js.map +1 -0
  85. package/dist/services/ris/reference/courts.d.ts +201 -0
  86. package/dist/services/ris/reference/courts.d.ts.map +1 -0
  87. package/dist/services/ris/reference/courts.js +198 -0
  88. package/dist/services/ris/reference/courts.js.map +1 -0
  89. package/dist/services/ris/reference/decision-kinds.d.ts +78 -0
  90. package/dist/services/ris/reference/decision-kinds.d.ts.map +1 -0
  91. package/dist/services/ris/reference/decision-kinds.js +117 -0
  92. package/dist/services/ris/reference/decision-kinds.js.map +1 -0
  93. package/dist/services/ris/reference/decision-types.d.ts +36 -0
  94. package/dist/services/ris/reference/decision-types.d.ts.map +1 -0
  95. package/dist/services/ris/reference/decision-types.js +29 -0
  96. package/dist/services/ris/reference/decision-types.js.map +1 -0
  97. package/dist/services/ris/reference/district-authorities.d.ts +314 -0
  98. package/dist/services/ris/reference/district-authorities.d.ts.map +1 -0
  99. package/dist/services/ris/reference/district-authorities.js +212 -0
  100. package/dist/services/ris/reference/district-authorities.js.map +1 -0
  101. package/dist/services/ris/reference/gazette-parts.d.ts +73 -0
  102. package/dist/services/ris/reference/gazette-parts.d.ts.map +1 -0
  103. package/dist/services/ris/reference/gazette-parts.js +58 -0
  104. package/dist/services/ris/reference/gazette-parts.js.map +1 -0
  105. package/dist/services/ris/reference/index.d.ts +23 -0
  106. package/dist/services/ris/reference/index.d.ts.map +1 -0
  107. package/dist/services/ris/reference/index.js +23 -0
  108. package/dist/services/ris/reference/index.js.map +1 -0
  109. package/dist/services/ris/reference/issuing-bodies.d.ts +642 -0
  110. package/dist/services/ris/reference/issuing-bodies.d.ts.map +1 -0
  111. package/dist/services/ris/reference/issuing-bodies.js +616 -0
  112. package/dist/services/ris/reference/issuing-bodies.js.map +1 -0
  113. package/dist/services/ris/reference/justiz-subject-areas.d.ts +133 -0
  114. package/dist/services/ris/reference/justiz-subject-areas.d.ts.map +1 -0
  115. package/dist/services/ris/reference/justiz-subject-areas.js +67 -0
  116. package/dist/services/ris/reference/justiz-subject-areas.js.map +1 -0
  117. package/dist/services/ris/reference/law-types.d.ts +46 -0
  118. package/dist/services/ris/reference/law-types.d.ts.map +1 -0
  119. package/dist/services/ris/reference/law-types.js +41 -0
  120. package/dist/services/ris/reference/law-types.js.map +1 -0
  121. package/dist/services/ris/reference/ministries.d.ts +360 -0
  122. package/dist/services/ris/reference/ministries.d.ts.map +1 -0
  123. package/dist/services/ris/reference/ministries.js +408 -0
  124. package/dist/services/ris/reference/ministries.js.map +1 -0
  125. package/dist/services/ris/reference/search-syntax.d.ts +66 -0
  126. package/dist/services/ris/reference/search-syntax.d.ts.map +1 -0
  127. package/dist/services/ris/reference/search-syntax.js +65 -0
  128. package/dist/services/ris/reference/search-syntax.js.map +1 -0
  129. package/dist/services/ris/reference/section-types.d.ts +33 -0
  130. package/dist/services/ris/reference/section-types.d.ts.map +1 -0
  131. package/dist/services/ris/reference/section-types.js +29 -0
  132. package/dist/services/ris/reference/section-types.js.map +1 -0
  133. package/dist/services/ris/reference/stages.d.ts +41 -0
  134. package/dist/services/ris/reference/stages.d.ts.map +1 -0
  135. package/dist/services/ris/reference/stages.js +27 -0
  136. package/dist/services/ris/reference/stages.js.map +1 -0
  137. package/dist/services/ris/reference/states.d.ts +90 -0
  138. package/dist/services/ris/reference/states.d.ts.map +1 -0
  139. package/dist/services/ris/reference/states.js +85 -0
  140. package/dist/services/ris/reference/states.js.map +1 -0
  141. package/dist/services/ris/request-builder.d.ts +195 -0
  142. package/dist/services/ris/request-builder.d.ts.map +1 -0
  143. package/dist/services/ris/request-builder.js +673 -0
  144. package/dist/services/ris/request-builder.js.map +1 -0
  145. package/dist/services/ris/ris-service.d.ts +65 -0
  146. package/dist/services/ris/ris-service.d.ts.map +1 -0
  147. package/dist/services/ris/ris-service.js +200 -0
  148. package/dist/services/ris/ris-service.js.map +1 -0
  149. package/dist/services/ris/types.d.ts +651 -0
  150. package/dist/services/ris/types.d.ts.map +1 -0
  151. package/dist/services/ris/types.js +11 -0
  152. package/dist/services/ris/types.js.map +1 -0
  153. package/package.json +108 -0
  154. package/server.json +111 -0
@@ -0,0 +1,39 @@
1
+ /**
2
+ * @fileoverview The citation shapes `ris_lookup_citation` parses, with examples and the
3
+ * deterministic route each resolves through.
4
+ * @module services/ris/reference/citation-formats
5
+ */
6
+ /** All citation kinds the resolver understands. */
7
+ export const RIS_CITATION_FORMATS = [
8
+ {
9
+ kind: 'norm',
10
+ description: 'A provision of a law: section sign or Artikel plus the official abbreviation, in either order — section-first ("§ 6 DSG") or abbreviation-first ("DSG §1", the shape ris_search_case_law returns in norms_cited) — or a bare abbreviation for the whole law.',
11
+ examples: ['§ 6 DSG', 'Art 10 B-VG', 'DSG §1', 'DSGVO Art32', 'ABGB'],
12
+ resolvesVia: 'Consolidated federal law (BrKons) via title + section-range filters, as in force on the requested date; a state hint routes to consolidated state law (LrKons).',
13
+ },
14
+ {
15
+ kind: 'gazette',
16
+ description: 'A gazette citation: BGBl. with optional part I/II/III and Nr. year, pre-2004 BGBl. forms, imperial-era RGBl./StGBl. forms, or LGBl. with a state hint.',
17
+ examples: [
18
+ 'BGBl. I Nr. 165/1999',
19
+ 'BGBl. II Nr. 171/2026',
20
+ 'BGBl. Nr. 194/1961',
21
+ 'RGBl. Nr. 189/1902',
22
+ 'LGBl. Nr. 61/2026',
23
+ ],
24
+ resolvesVia: 'Year 2004+ → BgblAuth (Bgblnummer); 1945–2003 → BgblPdf (Bundesgesetzblatt); 1848–1940 and RGBl./StGBl./GBlÖ prefixes → BgblAlt (Gesetzblattnummer + Jahrgang); LGBl. + state hint → LgblAuth (Lgblnummer).',
25
+ },
26
+ {
27
+ kind: 'case_number',
28
+ description: 'A Geschäftszahl — the format identifies the court (per-court examples: reference topic courts).',
29
+ examples: ['2025-0.934.677', 'Ra 2019/22/0184', 'G 287/2022', '6Ob56/25k', 'W122 2312999-1'],
30
+ resolvesVia: 'Pattern-matched to the owning court application, then an exact Geschaeftszahl search; a court hint short-circuits, ambiguous formats probe up to two candidate applications.',
31
+ },
32
+ {
33
+ kind: 'collection_number',
34
+ description: 'An official collection citation of the VfGH or VwGH.',
35
+ examples: ['VfSlg 19.632/2012', 'VwSlg 18.000 A/2010'],
36
+ resolvesVia: 'Vfgh/Vwgh via the Sammlungsnummer filter.',
37
+ },
38
+ ];
39
+ //# sourceMappingURL=citation-formats.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"citation-formats.js","sourceRoot":"","sources":["../../../../src/services/ris/reference/citation-formats.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAcH,mDAAmD;AACnD,MAAM,CAAC,MAAM,oBAAoB,GAAG;IAClC;QACE,IAAI,EAAE,MAAM;QACZ,WAAW,EACT,8PAA8P;QAChQ,QAAQ,EAAE,CAAC,SAAS,EAAE,aAAa,EAAE,QAAQ,EAAE,aAAa,EAAE,MAAM,CAAC;QACrE,WAAW,EACT,iKAAiK;KACpK;IACD;QACE,IAAI,EAAE,SAAS;QACf,WAAW,EACT,wJAAwJ;QAC1J,QAAQ,EAAE;YACR,sBAAsB;YACtB,uBAAuB;YACvB,oBAAoB;YACpB,oBAAoB;YACpB,mBAAmB;SACpB;QACD,WAAW,EACT,6MAA6M;KAChN;IACD;QACE,IAAI,EAAE,aAAa;QACnB,WAAW,EACT,iGAAiG;QACnG,QAAQ,EAAE,CAAC,gBAAgB,EAAE,iBAAiB,EAAE,YAAY,EAAE,WAAW,EAAE,gBAAgB,CAAC;QAC5F,WAAW,EACT,8KAA8K;KACjL;IACD;QACE,IAAI,EAAE,mBAAmB;QACzB,WAAW,EAAE,sDAAsD;QACnE,QAAQ,EAAE,CAAC,mBAAmB,EAAE,qBAAqB,CAAC;QACtD,WAAW,EAAE,2CAA2C;KACzD;CAC2C,CAAC"}
@@ -0,0 +1,82 @@
1
+ /**
2
+ * @fileoverview The seven announcement collections served by `ris_search_announcements`
3
+ * (the Sonstige controller minus Upts), with each collection's supported tool parameters.
4
+ * Five of the seven are legally binding authentic publications.
5
+ * @module services/ris/reference/collections
6
+ */
7
+ /** One sectoral announcement collection. */
8
+ export interface AnnouncementCollection {
9
+ /** RIS `Applikation` value it routes to. */
10
+ readonly application: string;
11
+ /** Whether documents are amtssignierte, legally binding publications. */
12
+ readonly authentic: boolean;
13
+ /** Value used by the tool's `collection` parameter. */
14
+ readonly code: string;
15
+ /** Coverage window, when documented. */
16
+ readonly coverage: string | null;
17
+ /** Official German designation. */
18
+ readonly germanName: string;
19
+ /** English name. */
20
+ readonly name: string;
21
+ /** Tool parameters valid for this collection (besides paging/sorting/changed_since). */
22
+ readonly params: readonly string[];
23
+ }
24
+ /** All seven announcement collections. */
25
+ export declare const RIS_COLLECTIONS: readonly [{
26
+ readonly code: "social_insurance";
27
+ readonly application: "Avsv";
28
+ readonly name: "Official social-insurance notices";
29
+ readonly germanName: "Amtliche Verlautbarungen der Sozialversicherung";
30
+ readonly authentic: true;
31
+ readonly coverage: "2002 and later";
32
+ readonly params: readonly ["query", "title", "number", "published_from", "published_to", "issuer"];
33
+ }, {
34
+ readonly code: "veterinary";
35
+ readonly application: "Avn";
36
+ readonly name: "Official veterinary notices";
37
+ readonly germanName: "Amtliche Veterinärnachrichten";
38
+ readonly authentic: true;
39
+ readonly coverage: "2004-09-15 and later";
40
+ readonly params: readonly ["query", "title", "number", "published_from", "published_to", "in_force_as_of", "norm", "case_number", "type"];
41
+ }, {
42
+ readonly code: "court_rules";
43
+ readonly application: "KmGer";
44
+ readonly name: "Court rules of procedure and case-allocation plans";
45
+ readonly germanName: "Kundmachungen der Gerichte";
46
+ readonly authentic: true;
47
+ readonly coverage: "Currently LVwG Tirol and LVwG Vorarlberg only";
48
+ readonly params: readonly ["query", "title", "published_from", "published_to", "in_force_as_of", "type"];
49
+ }, {
50
+ readonly code: "trade_exam_rules";
51
+ readonly application: "PruefGewO";
52
+ readonly name: "Trade-exam regulations";
53
+ readonly germanName: "Prüfungsordnungen gemäß Gewerbeordnung";
54
+ readonly authentic: true;
55
+ readonly coverage: null;
56
+ readonly params: readonly ["query", "title", "published_from", "published_to", "in_force_as_of", "type"];
57
+ }, {
58
+ readonly code: "health_structure_plans";
59
+ readonly application: "Spg";
60
+ readonly name: "Health structure plans";
61
+ readonly germanName: "Strukturpläne Gesundheit (ÖSG, RSG)";
62
+ readonly authentic: true;
63
+ readonly coverage: null;
64
+ readonly params: readonly ["query", "title", "number", "published_from", "published_to", "in_force_as_of", "plan_type", "plan_state"];
65
+ }, {
66
+ readonly code: "ministerial_decrees";
67
+ readonly application: "Erlaesse";
68
+ readonly name: "Federal-ministry decrees";
69
+ readonly germanName: "Erlässe der Bundesministerien";
70
+ readonly authentic: false;
71
+ readonly coverage: null;
72
+ readonly params: readonly ["query", "title", "in_force_as_of", "entered_force_from", "entered_force_to", "issuer", "norm", "case_number", "department"];
73
+ }, {
74
+ readonly code: "council_minutes";
75
+ readonly application: "Mrp";
76
+ readonly name: "Council-of-ministers minutes";
77
+ readonly germanName: "Ministerratsprotokolle";
78
+ readonly authentic: false;
79
+ readonly coverage: "2004 and later";
80
+ readonly params: readonly ["query", "published_from", "published_to", "issuer", "session_number", "legislature"];
81
+ }];
82
+ //# sourceMappingURL=collections.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"collections.d.ts","sourceRoot":"","sources":["../../../../src/services/ris/reference/collections.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAEH,4CAA4C;AAC5C,MAAM,WAAW,sBAAsB;IACrC,4CAA4C;IAC5C,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAC;IAC7B,yEAAyE;IACzE,QAAQ,CAAC,SAAS,EAAE,OAAO,CAAC;IAC5B,uDAAuD;IACvD,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,wCAAwC;IACxC,QAAQ,CAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAC;IACjC,mCAAmC;IACnC,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAC;IAC5B,oBAAoB;IACpB,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,wFAAwF;IACxF,QAAQ,CAAC,MAAM,EAAE,SAAS,MAAM,EAAE,CAAC;CACpC;AAED,0CAA0C;AAC1C,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA6F0B,CAAC"}
@@ -0,0 +1,102 @@
1
+ /**
2
+ * @fileoverview The seven announcement collections served by `ris_search_announcements`
3
+ * (the Sonstige controller minus Upts), with each collection's supported tool parameters.
4
+ * Five of the seven are legally binding authentic publications.
5
+ * @module services/ris/reference/collections
6
+ */
7
+ /** All seven announcement collections. */
8
+ export const RIS_COLLECTIONS = [
9
+ {
10
+ code: 'social_insurance',
11
+ application: 'Avsv',
12
+ name: 'Official social-insurance notices',
13
+ germanName: 'Amtliche Verlautbarungen der Sozialversicherung',
14
+ authentic: true,
15
+ coverage: '2002 and later',
16
+ params: ['query', 'title', 'number', 'published_from', 'published_to', 'issuer'],
17
+ },
18
+ {
19
+ code: 'veterinary',
20
+ application: 'Avn',
21
+ name: 'Official veterinary notices',
22
+ germanName: 'Amtliche Veterinärnachrichten',
23
+ authentic: true,
24
+ coverage: '2004-09-15 and later',
25
+ params: [
26
+ 'query',
27
+ 'title',
28
+ 'number',
29
+ 'published_from',
30
+ 'published_to',
31
+ 'in_force_as_of',
32
+ 'norm',
33
+ 'case_number',
34
+ 'type',
35
+ ],
36
+ },
37
+ {
38
+ code: 'court_rules',
39
+ application: 'KmGer',
40
+ name: 'Court rules of procedure and case-allocation plans',
41
+ germanName: 'Kundmachungen der Gerichte',
42
+ authentic: true,
43
+ coverage: 'Currently LVwG Tirol and LVwG Vorarlberg only',
44
+ params: ['query', 'title', 'published_from', 'published_to', 'in_force_as_of', 'type'],
45
+ },
46
+ {
47
+ code: 'trade_exam_rules',
48
+ application: 'PruefGewO',
49
+ name: 'Trade-exam regulations',
50
+ germanName: 'Prüfungsordnungen gemäß Gewerbeordnung',
51
+ authentic: true,
52
+ coverage: null,
53
+ params: ['query', 'title', 'published_from', 'published_to', 'in_force_as_of', 'type'],
54
+ },
55
+ {
56
+ code: 'health_structure_plans',
57
+ application: 'Spg',
58
+ name: 'Health structure plans',
59
+ germanName: 'Strukturpläne Gesundheit (ÖSG, RSG)',
60
+ authentic: true,
61
+ coverage: null,
62
+ params: [
63
+ 'query',
64
+ 'title',
65
+ 'number',
66
+ 'published_from',
67
+ 'published_to',
68
+ 'in_force_as_of',
69
+ 'plan_type',
70
+ 'plan_state',
71
+ ],
72
+ },
73
+ {
74
+ code: 'ministerial_decrees',
75
+ application: 'Erlaesse',
76
+ name: 'Federal-ministry decrees',
77
+ germanName: 'Erlässe der Bundesministerien',
78
+ authentic: false,
79
+ coverage: null,
80
+ params: [
81
+ 'query',
82
+ 'title',
83
+ 'in_force_as_of',
84
+ 'entered_force_from',
85
+ 'entered_force_to',
86
+ 'issuer',
87
+ 'norm',
88
+ 'case_number',
89
+ 'department',
90
+ ],
91
+ },
92
+ {
93
+ code: 'council_minutes',
94
+ application: 'Mrp',
95
+ name: 'Council-of-ministers minutes',
96
+ germanName: 'Ministerratsprotokolle',
97
+ authentic: false,
98
+ coverage: '2004 and later',
99
+ params: ['query', 'published_from', 'published_to', 'issuer', 'session_number', 'legislature'],
100
+ },
101
+ ];
102
+ //# sourceMappingURL=collections.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"collections.js","sourceRoot":"","sources":["../../../../src/services/ris/reference/collections.ts"],"names":[],"mappings":"AAAA;;;;;GAKG;AAoBH,0CAA0C;AAC1C,MAAM,CAAC,MAAM,eAAe,GAAG;IAC7B;QACE,IAAI,EAAE,kBAAkB;QACxB,WAAW,EAAE,MAAM;QACnB,IAAI,EAAE,mCAAmC;QACzC,UAAU,EAAE,iDAAiD;QAC7D,SAAS,EAAE,IAAI;QACf,QAAQ,EAAE,gBAAgB;QAC1B,MAAM,EAAE,CAAC,OAAO,EAAE,OAAO,EAAE,QAAQ,EAAE,gBAAgB,EAAE,cAAc,EAAE,QAAQ,CAAC;KACjF;IACD;QACE,IAAI,EAAE,YAAY;QAClB,WAAW,EAAE,KAAK;QAClB,IAAI,EAAE,6BAA6B;QACnC,UAAU,EAAE,+BAA+B;QAC3C,SAAS,EAAE,IAAI;QACf,QAAQ,EAAE,sBAAsB;QAChC,MAAM,EAAE;YACN,OAAO;YACP,OAAO;YACP,QAAQ;YACR,gBAAgB;YAChB,cAAc;YACd,gBAAgB;YAChB,MAAM;YACN,aAAa;YACb,MAAM;SACP;KACF;IACD;QACE,IAAI,EAAE,aAAa;QACnB,WAAW,EAAE,OAAO;QACpB,IAAI,EAAE,oDAAoD;QAC1D,UAAU,EAAE,4BAA4B;QACxC,SAAS,EAAE,IAAI;QACf,QAAQ,EAAE,+CAA+C;QACzD,MAAM,EAAE,CAAC,OAAO,EAAE,OAAO,EAAE,gBAAgB,EAAE,cAAc,EAAE,gBAAgB,EAAE,MAAM,CAAC;KACvF;IACD;QACE,IAAI,EAAE,kBAAkB;QACxB,WAAW,EAAE,WAAW;QACxB,IAAI,EAAE,wBAAwB;QAC9B,UAAU,EAAE,wCAAwC;QACpD,SAAS,EAAE,IAAI;QACf,QAAQ,EAAE,IAAI;QACd,MAAM,EAAE,CAAC,OAAO,EAAE,OAAO,EAAE,gBAAgB,EAAE,cAAc,EAAE,gBAAgB,EAAE,MAAM,CAAC;KACvF;IACD;QACE,IAAI,EAAE,wBAAwB;QAC9B,WAAW,EAAE,KAAK;QAClB,IAAI,EAAE,wBAAwB;QAC9B,UAAU,EAAE,qCAAqC;QACjD,SAAS,EAAE,IAAI;QACf,QAAQ,EAAE,IAAI;QACd,MAAM,EAAE;YACN,OAAO;YACP,OAAO;YACP,QAAQ;YACR,gBAAgB;YAChB,cAAc;YACd,gBAAgB;YAChB,WAAW;YACX,YAAY;SACb;KACF;IACD;QACE,IAAI,EAAE,qBAAqB;QAC3B,WAAW,EAAE,UAAU;QACvB,IAAI,EAAE,0BAA0B;QAChC,UAAU,EAAE,+BAA+B;QAC3C,SAAS,EAAE,KAAK;QAChB,QAAQ,EAAE,IAAI;QACd,MAAM,EAAE;YACN,OAAO;YACP,OAAO;YACP,gBAAgB;YAChB,oBAAoB;YACpB,kBAAkB;YAClB,QAAQ;YACR,MAAM;YACN,aAAa;YACb,YAAY;SACb;KACF;IACD;QACE,IAAI,EAAE,iBAAiB;QACvB,WAAW,EAAE,KAAK;QAClB,IAAI,EAAE,8BAA8B;QACpC,UAAU,EAAE,wBAAwB;QACpC,SAAS,EAAE,KAAK;QAChB,QAAQ,EAAE,gBAAgB;QAC1B,MAAM,EAAE,CAAC,OAAO,EAAE,gBAAgB,EAAE,cAAc,EAAE,QAAQ,EAAE,gBAAgB,EAAE,aAAa,CAAC;KAC/F;CACmD,CAAC"}
@@ -0,0 +1,201 @@
1
+ /**
2
+ * @fileoverview The 17 case-law court/tribunal codes served by `ris_search_case_law`:
3
+ * English descriptions, active-vs-historical status with successor mapping, and a real
4
+ * Geschäftszahl format example per court. Examples come from the design's live-confirmed
5
+ * set and from live search results harvested 2026-07-05.
6
+ * @module services/ris/reference/courts
7
+ */
8
+ /** One court/tribunal reachable through the case-law surface. */
9
+ export interface RisCourt {
10
+ /** Exact RIS `Applikation` value the code routes to. */
11
+ readonly application: string;
12
+ /** Court code used by the `court` tool parameter (lowercase). */
13
+ readonly code: string;
14
+ /** German designation. */
15
+ readonly germanName: string;
16
+ /** A real Geschäftszahl from this court, showing the case-number format. */
17
+ readonly gzExample: string | null;
18
+ /** English name. */
19
+ readonly name: string;
20
+ /** Extra usage note, when needed. */
21
+ readonly note: string | null;
22
+ /** Whether the body still decides cases or is a closed historical window. */
23
+ readonly status: 'active' | 'historical';
24
+ /** Court code of the successor body, for historical bodies with one. */
25
+ readonly successor: string | null;
26
+ /** Coverage window, when documented. */
27
+ readonly window: string | null;
28
+ }
29
+ /** All 17 case-law codes. */
30
+ export declare const RIS_COURTS: readonly [{
31
+ readonly code: "vfgh";
32
+ readonly application: "Vfgh";
33
+ readonly name: "Constitutional Court";
34
+ readonly germanName: "Verfassungsgerichtshof";
35
+ readonly status: "active";
36
+ readonly window: "Decisions 1980 and later";
37
+ readonly successor: null;
38
+ readonly gzExample: "G 287/2022";
39
+ readonly note: "Official collection numbers use the VfSlg form (e.g. \"VfSlg 19.632/2012\").";
40
+ }, {
41
+ readonly code: "vwgh";
42
+ readonly application: "Vwgh";
43
+ readonly name: "Supreme Administrative Court";
44
+ readonly germanName: "Verwaltungsgerichtshof";
45
+ readonly status: "active";
46
+ readonly window: "Decisions 1990 and later; older decisions selected";
47
+ readonly successor: null;
48
+ readonly gzExample: "Ra 2019/22/0184";
49
+ readonly note: "Official collection numbers use the VwSlg form (e.g. \"VwSlg 18.000 A/2010\").";
50
+ }, {
51
+ readonly code: "justiz";
52
+ readonly application: "Justiz";
53
+ readonly name: "Ordinary courts (Supreme Court of Justice and selected lower courts)";
54
+ readonly germanName: "Ordentliche Gerichtsbarkeit (OGH, OLG, LG, BG)";
55
+ readonly status: "active";
56
+ readonly window: "Selected decisions only, not the full record";
57
+ readonly successor: null;
58
+ readonly gzExample: "6Ob56/25k";
59
+ readonly note: "The court_name, legal_area, and subject_area filters apply only here.";
60
+ }, {
61
+ readonly code: "bvwg";
62
+ readonly application: "Bvwg";
63
+ readonly name: "Federal Administrative Court";
64
+ readonly germanName: "Bundesverwaltungsgericht";
65
+ readonly status: "active";
66
+ readonly window: "Decisions 2014 and later";
67
+ readonly successor: null;
68
+ readonly gzExample: "W122 2312999-1";
69
+ readonly note: null;
70
+ }, {
71
+ readonly code: "lvwg";
72
+ readonly application: "Lvwg";
73
+ readonly name: "State administrative courts";
74
+ readonly germanName: "Landesverwaltungsgerichte";
75
+ readonly status: "active";
76
+ readonly window: "Decisions 2014 and later";
77
+ readonly successor: null;
78
+ readonly gzExample: "LVwG-AV-757/001-2026";
79
+ readonly note: "The state filter selects one of the nine courts (ASCII spelling, e.g. \"Kaernten\").";
80
+ }, {
81
+ readonly code: "dsk";
82
+ readonly application: "Dsk";
83
+ readonly name: "Data protection authority";
84
+ readonly germanName: "Datenschutzbehörde / Datenschutzkommission";
85
+ readonly status: "active";
86
+ readonly window: "Decisions 1990 and later, selected";
87
+ readonly successor: null;
88
+ readonly gzExample: "2026-0.092.118";
89
+ readonly note: "The issuing_body filter splits the Datenschutzbehörde (2014+) from the historical Datenschutzkommission (up to 2013).";
90
+ }, {
91
+ readonly code: "normenliste";
92
+ readonly application: "Normenliste";
93
+ readonly name: "VwGH norm index";
94
+ readonly germanName: "Normenliste des Verwaltungsgerichtshofes";
95
+ readonly status: "active";
96
+ readonly window: null;
97
+ readonly successor: null;
98
+ readonly gzExample: null;
99
+ readonly note: "A register of norms, not decisions — no case-number, date, or decision-type filters.";
100
+ }, {
101
+ readonly code: "dok";
102
+ readonly application: "Dok";
103
+ readonly name: "Civil-service disciplinary authorities";
104
+ readonly germanName: "Bundesdisziplinarbehörde / Disziplinarkommissionen";
105
+ readonly status: "active";
106
+ readonly window: null;
107
+ readonly successor: null;
108
+ readonly gzExample: "2024-0.222.873";
109
+ readonly note: "The issuing_body filter takes one of 59 documented authorities (topic issuing_bodies).";
110
+ }, {
111
+ readonly code: "pvak";
112
+ readonly application: "Pvak";
113
+ readonly name: "Staff-representation oversight authority";
114
+ readonly germanName: "Personalvertretungsaufsichtsbehörde / Personalvertretungsaufsichtskommission";
115
+ readonly status: "active";
116
+ readonly window: null;
117
+ readonly successor: null;
118
+ readonly gzExample: "B10-PVAB/25";
119
+ readonly note: null;
120
+ }, {
121
+ readonly code: "gbk";
122
+ readonly application: "Gbk";
123
+ readonly name: "Equal-treatment commissions";
124
+ readonly germanName: "Bundes-Gleichbehandlungskommission / Gleichbehandlungskommission";
125
+ readonly status: "active";
126
+ readonly window: null;
127
+ readonly successor: null;
128
+ readonly gzExample: "B-GBK II/307/26";
129
+ readonly note: "The commission, senate, and discrimination_ground filters apply only here.";
130
+ }, {
131
+ readonly code: "uvs";
132
+ readonly application: "Uvs";
133
+ readonly name: "Independent administrative senates";
134
+ readonly germanName: "Unabhängige Verwaltungssenate";
135
+ readonly status: "historical";
136
+ readonly window: "1991–2013";
137
+ readonly successor: "lvwg";
138
+ readonly gzExample: "411-034/13";
139
+ readonly note: null;
140
+ }, {
141
+ readonly code: "asylgh";
142
+ readonly application: "AsylGH";
143
+ readonly name: "Asylum Court";
144
+ readonly germanName: "Asylgerichtshof";
145
+ readonly status: "historical";
146
+ readonly window: "2008–2013";
147
+ readonly successor: "bvwg";
148
+ readonly gzExample: "B5 420141-2/2012";
149
+ readonly note: null;
150
+ }, {
151
+ readonly code: "ubas";
152
+ readonly application: "Ubas";
153
+ readonly name: "Independent Federal Asylum Senate";
154
+ readonly germanName: "Unabhängiger Bundesasylsenat";
155
+ readonly status: "historical";
156
+ readonly window: "1998–2008";
157
+ readonly successor: "asylgh";
158
+ readonly gzExample: "227.475/0/21E-VIII/23/02";
159
+ readonly note: null;
160
+ }, {
161
+ readonly code: "umse";
162
+ readonly application: "Umse";
163
+ readonly name: "Environmental Senate";
164
+ readonly germanName: "Umweltsenat";
165
+ readonly status: "historical";
166
+ readonly window: "Until 2013";
167
+ readonly successor: null;
168
+ readonly gzExample: "US 8B/2013/14-4";
169
+ readonly note: null;
170
+ }, {
171
+ readonly code: "bks";
172
+ readonly application: "Bks";
173
+ readonly name: "Federal Communications Senate";
174
+ readonly germanName: "Bundeskommunikationssenat";
175
+ readonly status: "historical";
176
+ readonly window: "Until 2013";
177
+ readonly successor: null;
178
+ readonly gzExample: "611.001/0009-BKS/2013";
179
+ readonly note: "The subject_law filter (media statute) applies only here.";
180
+ }, {
181
+ readonly code: "verg";
182
+ readonly application: "Verg";
183
+ readonly name: "Procurement review bodies";
184
+ readonly germanName: "Vergabekontrollbehörden";
185
+ readonly status: "active";
186
+ readonly window: null;
187
+ readonly successor: null;
188
+ readonly gzExample: "VKS-961040/13";
189
+ readonly note: "Bodies: Bundesvergabeamt, Bundes-Vergabekontrollkommission, Vergabekontrollsenat Salzburg, Vergabekontrollsenat Wien (topic issuing_bodies).";
190
+ }, {
191
+ readonly code: "upts";
192
+ readonly application: "Upts";
193
+ readonly name: "Independent Party-Transparency Senate";
194
+ readonly germanName: "Unabhängiger Parteien-Transparenz-Senat";
195
+ readonly status: "active";
196
+ readonly window: null;
197
+ readonly successor: null;
198
+ readonly gzExample: "2026-0.074.605/UPTS/Grüne";
199
+ readonly note: "Served by the Sonstige controller upstream; documents are plain-PDF only. The party filter is full-text — parties beyond the documented list appear in live data (e.g. \"Wandel\", \"TeamKärnten\").";
200
+ }];
201
+ //# sourceMappingURL=courts.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"courts.d.ts","sourceRoot":"","sources":["../../../../src/services/ris/reference/courts.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,iEAAiE;AACjE,MAAM,WAAW,QAAQ;IACvB,wDAAwD;IACxD,QAAQ,CAAC,WAAW,EAAE,MAAM,CAAC;IAC7B,iEAAiE;IACjE,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,0BAA0B;IAC1B,QAAQ,CAAC,UAAU,EAAE,MAAM,CAAC;IAC5B,4EAA4E;IAC5E,QAAQ,CAAC,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;IAClC,oBAAoB;IACpB,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB,qCAAqC;IACrC,QAAQ,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI,CAAC;IAC7B,6EAA6E;IAC7E,QAAQ,CAAC,MAAM,EAAE,QAAQ,GAAG,YAAY,CAAC;IACzC,wEAAwE;IACxE,QAAQ,CAAC,SAAS,EAAE,MAAM,GAAG,IAAI,CAAC;IAClC,wCAAwC;IACxC,QAAQ,CAAC,MAAM,EAAE,MAAM,GAAG,IAAI,CAAC;CAChC;AAED,6BAA6B;AAC7B,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA4LiB,CAAC"}
@@ -0,0 +1,198 @@
1
+ /**
2
+ * @fileoverview The 17 case-law court/tribunal codes served by `ris_search_case_law`:
3
+ * English descriptions, active-vs-historical status with successor mapping, and a real
4
+ * Geschäftszahl format example per court. Examples come from the design's live-confirmed
5
+ * set and from live search results harvested 2026-07-05.
6
+ * @module services/ris/reference/courts
7
+ */
8
+ /** All 17 case-law codes. */
9
+ export const RIS_COURTS = [
10
+ {
11
+ code: 'vfgh',
12
+ application: 'Vfgh',
13
+ name: 'Constitutional Court',
14
+ germanName: 'Verfassungsgerichtshof',
15
+ status: 'active',
16
+ window: 'Decisions 1980 and later',
17
+ successor: null,
18
+ gzExample: 'G 287/2022',
19
+ note: 'Official collection numbers use the VfSlg form (e.g. "VfSlg 19.632/2012").',
20
+ },
21
+ {
22
+ code: 'vwgh',
23
+ application: 'Vwgh',
24
+ name: 'Supreme Administrative Court',
25
+ germanName: 'Verwaltungsgerichtshof',
26
+ status: 'active',
27
+ window: 'Decisions 1990 and later; older decisions selected',
28
+ successor: null,
29
+ gzExample: 'Ra 2019/22/0184',
30
+ note: 'Official collection numbers use the VwSlg form (e.g. "VwSlg 18.000 A/2010").',
31
+ },
32
+ {
33
+ code: 'justiz',
34
+ application: 'Justiz',
35
+ name: 'Ordinary courts (Supreme Court of Justice and selected lower courts)',
36
+ germanName: 'Ordentliche Gerichtsbarkeit (OGH, OLG, LG, BG)',
37
+ status: 'active',
38
+ window: 'Selected decisions only, not the full record',
39
+ successor: null,
40
+ gzExample: '6Ob56/25k',
41
+ note: 'The court_name, legal_area, and subject_area filters apply only here.',
42
+ },
43
+ {
44
+ code: 'bvwg',
45
+ application: 'Bvwg',
46
+ name: 'Federal Administrative Court',
47
+ germanName: 'Bundesverwaltungsgericht',
48
+ status: 'active',
49
+ window: 'Decisions 2014 and later',
50
+ successor: null,
51
+ gzExample: 'W122 2312999-1',
52
+ note: null,
53
+ },
54
+ {
55
+ code: 'lvwg',
56
+ application: 'Lvwg',
57
+ name: 'State administrative courts',
58
+ germanName: 'Landesverwaltungsgerichte',
59
+ status: 'active',
60
+ window: 'Decisions 2014 and later',
61
+ successor: null,
62
+ gzExample: 'LVwG-AV-757/001-2026',
63
+ note: 'The state filter selects one of the nine courts (ASCII spelling, e.g. "Kaernten").',
64
+ },
65
+ {
66
+ code: 'dsk',
67
+ application: 'Dsk',
68
+ name: 'Data protection authority',
69
+ germanName: 'Datenschutzbehörde / Datenschutzkommission',
70
+ status: 'active',
71
+ window: 'Decisions 1990 and later, selected',
72
+ successor: null,
73
+ gzExample: '2026-0.092.118',
74
+ note: 'The issuing_body filter splits the Datenschutzbehörde (2014+) from the historical Datenschutzkommission (up to 2013).',
75
+ },
76
+ {
77
+ code: 'normenliste',
78
+ application: 'Normenliste',
79
+ name: 'VwGH norm index',
80
+ germanName: 'Normenliste des Verwaltungsgerichtshofes',
81
+ status: 'active',
82
+ window: null,
83
+ successor: null,
84
+ gzExample: null,
85
+ note: 'A register of norms, not decisions — no case-number, date, or decision-type filters.',
86
+ },
87
+ {
88
+ code: 'dok',
89
+ application: 'Dok',
90
+ name: 'Civil-service disciplinary authorities',
91
+ germanName: 'Bundesdisziplinarbehörde / Disziplinarkommissionen',
92
+ status: 'active',
93
+ window: null,
94
+ successor: null,
95
+ gzExample: '2024-0.222.873',
96
+ note: 'The issuing_body filter takes one of 59 documented authorities (topic issuing_bodies).',
97
+ },
98
+ {
99
+ code: 'pvak',
100
+ application: 'Pvak',
101
+ name: 'Staff-representation oversight authority',
102
+ germanName: 'Personalvertretungsaufsichtsbehörde / Personalvertretungsaufsichtskommission',
103
+ status: 'active',
104
+ window: null,
105
+ successor: null,
106
+ gzExample: 'B10-PVAB/25',
107
+ note: null,
108
+ },
109
+ {
110
+ code: 'gbk',
111
+ application: 'Gbk',
112
+ name: 'Equal-treatment commissions',
113
+ germanName: 'Bundes-Gleichbehandlungskommission / Gleichbehandlungskommission',
114
+ status: 'active',
115
+ window: null,
116
+ successor: null,
117
+ gzExample: 'B-GBK II/307/26',
118
+ note: 'The commission, senate, and discrimination_ground filters apply only here.',
119
+ },
120
+ {
121
+ code: 'uvs',
122
+ application: 'Uvs',
123
+ name: 'Independent administrative senates',
124
+ germanName: 'Unabhängige Verwaltungssenate',
125
+ status: 'historical',
126
+ window: '1991–2013',
127
+ successor: 'lvwg',
128
+ gzExample: '411-034/13',
129
+ note: null,
130
+ },
131
+ {
132
+ code: 'asylgh',
133
+ application: 'AsylGH',
134
+ name: 'Asylum Court',
135
+ germanName: 'Asylgerichtshof',
136
+ status: 'historical',
137
+ window: '2008–2013',
138
+ successor: 'bvwg',
139
+ gzExample: 'B5 420141-2/2012',
140
+ note: null,
141
+ },
142
+ {
143
+ code: 'ubas',
144
+ application: 'Ubas',
145
+ name: 'Independent Federal Asylum Senate',
146
+ germanName: 'Unabhängiger Bundesasylsenat',
147
+ status: 'historical',
148
+ window: '1998–2008',
149
+ successor: 'asylgh',
150
+ gzExample: '227.475/0/21E-VIII/23/02',
151
+ note: null,
152
+ },
153
+ {
154
+ code: 'umse',
155
+ application: 'Umse',
156
+ name: 'Environmental Senate',
157
+ germanName: 'Umweltsenat',
158
+ status: 'historical',
159
+ window: 'Until 2013',
160
+ successor: null,
161
+ gzExample: 'US 8B/2013/14-4',
162
+ note: null,
163
+ },
164
+ {
165
+ code: 'bks',
166
+ application: 'Bks',
167
+ name: 'Federal Communications Senate',
168
+ germanName: 'Bundeskommunikationssenat',
169
+ status: 'historical',
170
+ window: 'Until 2013',
171
+ successor: null,
172
+ gzExample: '611.001/0009-BKS/2013',
173
+ note: 'The subject_law filter (media statute) applies only here.',
174
+ },
175
+ {
176
+ code: 'verg',
177
+ application: 'Verg',
178
+ name: 'Procurement review bodies',
179
+ germanName: 'Vergabekontrollbehörden',
180
+ status: 'active',
181
+ window: null,
182
+ successor: null,
183
+ gzExample: 'VKS-961040/13',
184
+ note: 'Bodies: Bundesvergabeamt, Bundes-Vergabekontrollkommission, Vergabekontrollsenat Salzburg, Vergabekontrollsenat Wien (topic issuing_bodies).',
185
+ },
186
+ {
187
+ code: 'upts',
188
+ application: 'Upts',
189
+ name: 'Independent Party-Transparency Senate',
190
+ germanName: 'Unabhängiger Parteien-Transparenz-Senat',
191
+ status: 'active',
192
+ window: null,
193
+ successor: null,
194
+ gzExample: '2026-0.074.605/UPTS/Grüne',
195
+ note: 'Served by the Sonstige controller upstream; documents are plain-PDF only. The party filter is full-text — parties beyond the documented list appear in live data (e.g. "Wandel", "TeamKärnten").',
196
+ },
197
+ ];
198
+ //# sourceMappingURL=courts.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"courts.js","sourceRoot":"","sources":["../../../../src/services/ris/reference/courts.ts"],"names":[],"mappings":"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"}