File tree Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Expand file tree Collapse file tree 2 files changed +9
-7
lines changed Original file line number Diff line number Diff line change 1
1
# Unreleased
2
2
- [ fixed] Fixed ` Sendable ` warnings introduced in the Xcode 26 beta. (#14947 )
3
+ - [ added] Added support for setting ` title ` in string, number and array ` Schema `
4
+ types. (#14971 )
3
5
4
6
# 11.13.0
5
7
- [ feature] Initial release of the Firebase AI Logic SDK (` FirebaseAI ` ). This
Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ final class SchemaTests: XCTestCase {
60
60
" description " : " \( description) " ,
61
61
" format " : " date-time " ,
62
62
" nullable " : true,
63
- " title " : " \( title) " ,
63
+ " title " : " \( title) " ,
64
64
" type " : " STRING "
65
65
}
66
66
""" )
@@ -114,7 +114,7 @@ final class SchemaTests: XCTestCase {
114
114
],
115
115
" format " : " enum " ,
116
116
" nullable " : true,
117
- " title " : " \( title) " ,
117
+ " title " : " \( title) " ,
118
118
" type " : " STRING "
119
119
}
120
120
""" )
@@ -160,7 +160,7 @@ final class SchemaTests: XCTestCase {
160
160
" maximum " : \( maximum) ,
161
161
" minimum " : \( minimum) ,
162
162
" nullable " : true,
163
- " title " : " \( title) " ,
163
+ " title " : " \( title) " ,
164
164
" type " : " NUMBER "
165
165
}
166
166
""" )
@@ -204,7 +204,7 @@ final class SchemaTests: XCTestCase {
204
204
" maximum " : \( maximum) ,
205
205
" minimum " : \( minimum) ,
206
206
" nullable " : true,
207
- " title " : " \( title) " ,
207
+ " title " : " \( title) " ,
208
208
" type " : " NUMBER "
209
209
}
210
210
""" )
@@ -251,7 +251,7 @@ final class SchemaTests: XCTestCase {
251
251
" maximum " : \( maximum) ,
252
252
" minimum " : \( minimum) ,
253
253
" nullable " : true,
254
- " title " : " \( title) " ,
254
+ " title " : " \( title) " ,
255
255
" type " : " INTEGER "
256
256
}
257
257
""" )
@@ -285,7 +285,7 @@ final class SchemaTests: XCTestCase {
285
285
{
286
286
" description " : " \( description) " ,
287
287
" nullable " : true,
288
- " title " : " \( title) " ,
288
+ " title " : " \( title) " ,
289
289
" type " : " BOOLEAN "
290
290
}
291
291
""" )
@@ -341,7 +341,7 @@ final class SchemaTests: XCTestCase {
341
341
" maxItems " : \( maxItems) ,
342
342
" minItems " : \( minItems) ,
343
343
" nullable " : true,
344
- " title " : " \( title) " ,
344
+ " title " : " \( title) " ,
345
345
" type " : " ARRAY "
346
346
}
347
347
""" )
You can’t perform that action at this time.
0 commit comments