1+ <!DOCTYPE html>
2+ < html >
3+ < head >
4+ < meta charset ="UTF-8 ">
5+ < meta name ="viewport " content ="width=device-width, initial-scale=1.0 ">
6+ < meta name ="color-scheme " content ="light dark ">
7+ < title > SDK Changelog - python</ title >
8+ < style >
9+ : root {
10+ --bg-color : # ffffff ;
11+ --text-color : # 1a1a1a ;
12+ --text-secondary : # 666666 ;
13+ --code-bg : # f4f4f4 ;
14+ --border-color : # e0e0e0 ;
15+ --added-color : # 22863a ;
16+ --removed-color : # cb2431 ;
17+ --changed-color : # 6f42c1 ;
18+ --breaking-color : # d73a49 ;
19+ }
20+ @media (prefers-color-scheme : dark) {
21+ : root {
22+ --bg-color : # 1a1a1a ;
23+ --text-color : # e6e6e6 ;
24+ --text-secondary : # a0a0a0 ;
25+ --code-bg : # 2d2d2d ;
26+ --border-color : # 404040 ;
27+ --added-color : # 85e89d ;
28+ --removed-color : # f97583 ;
29+ --changed-color : # b392f0 ;
30+ --breaking-color : # f97583 ;
31+ }
32+ }
33+ body {
34+ font-family : -apple-system, BlinkMacSystemFont, 'Segoe UI' , Roboto, sans-serif;
35+ max-width : 900px ;
36+ margin : 40px auto;
37+ padding : 20px ;
38+ line-height : 1.7 ;
39+ background-color : var (--bg-color );
40+ color : var (--text-color );
41+ }
42+ code {
43+ background : var (--code-bg );
44+ padding : 2px 8px ;
45+ border-radius : 4px ;
46+ font-family : 'SF Mono' , 'Menlo' , 'Monaco' , 'Courier New' , monospace;
47+ font-size : 0.9em ;
48+ }
49+ h2 {
50+ color : var (--text-color );
51+ border-bottom : 2px solid var (--border-color );
52+ padding-bottom : 12px ;
53+ margin-top : 32px ;
54+ }
55+ ul {
56+ padding-left : 24px ;
57+ list-style-type : disc;
58+ list-style-position : outside;
59+ }
60+ ul ul {
61+ padding-left : 28px ;
62+ margin-top : 6px ;
63+ margin-bottom : 6px ;
64+ list-style-type : circle;
65+ }
66+ li {
67+ margin : 10px 0 ;
68+ display : list-item;
69+ }
70+ li li {
71+ margin : 4px 0 ;
72+ color : var (--text-secondary );
73+ display : list-item;
74+ }
75+ li li code {
76+ font-size : 0.85em ;
77+ }
78+ /* Ensure nested list items always show bullets */
79+ ul > li {
80+ list-style : disc;
81+ }
82+ ul ul > li {
83+ list-style : circle;
84+ }
85+ strong {
86+ font-weight : 600 ;
87+ }
88+ /* Semantic coloring for change types */
89+ strong: contains ('Added' ), li:has(strong:contains('Added')) strong:first-of-type {
90+ color: var(--added-color);
91+ }
92+ /* Warning emoji styling */
93+ li {
94+ list-style-position: outside;
95+ }
96+ </ style >
97+ </ head >
98+ < body > < h2 id ="python-sdk-changes "> Python SDK Changes:</ h2 >
99+
100+ < ul >
101+ < li > < code > codat_lending.banking.categorized_statement.get()</ code > : < code > response.report_items[].transactions[].is_recurring</ code > < strong > Added</ strong > </ li >
102+ </ ul >
103+ </ body >
104+ </ html >
0 commit comments