pyobjc-framework-DataDetection 9.2__tar.gz → 10.1__tar.gz

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 (29) hide show
  1. pyobjc-framework-DataDetection-10.1/Lib/DataDetection/__init__.py +34 -0
  2. {pyobjc-framework-DataDetection-9.2 → pyobjc-framework-DataDetection-10.1}/Lib/DataDetection/_metadata.py +1 -1
  3. {pyobjc-framework-DataDetection-9.2 → pyobjc-framework-DataDetection-10.1}/Lib/pyobjc_framework_DataDetection.egg-info/PKG-INFO +6 -3
  4. {pyobjc-framework-DataDetection-9.2 → pyobjc-framework-DataDetection-10.1}/Lib/pyobjc_framework_DataDetection.egg-info/SOURCES.txt +3 -1
  5. pyobjc-framework-DataDetection-10.1/Lib/pyobjc_framework_DataDetection.egg-info/requires.txt +2 -0
  6. {pyobjc-framework-DataDetection-9.2 → pyobjc-framework-DataDetection-10.1}/PKG-INFO +6 -3
  7. pyobjc-framework-DataDetection-10.1/metadata/raw/arm64-14.0.fwinfo +554 -0
  8. pyobjc-framework-DataDetection-10.1/metadata/raw/x86_64-14.0.fwinfo +554 -0
  9. {pyobjc-framework-DataDetection-9.2 → pyobjc-framework-DataDetection-10.1}/pyobjc_setup.py +16 -6
  10. {pyobjc-framework-DataDetection-9.2 → pyobjc-framework-DataDetection-10.1}/setup.py +1 -1
  11. pyobjc-framework-DataDetection-9.2/Lib/DataDetection/__init__.py +0 -30
  12. pyobjc-framework-DataDetection-9.2/Lib/pyobjc_framework_DataDetection.egg-info/requires.txt +0 -2
  13. {pyobjc-framework-DataDetection-9.2 → pyobjc-framework-DataDetection-10.1}/Lib/pyobjc_framework_DataDetection.egg-info/dependency_links.txt +0 -0
  14. {pyobjc-framework-DataDetection-9.2 → pyobjc-framework-DataDetection-10.1}/Lib/pyobjc_framework_DataDetection.egg-info/not-zip-safe +0 -0
  15. {pyobjc-framework-DataDetection-9.2 → pyobjc-framework-DataDetection-10.1}/Lib/pyobjc_framework_DataDetection.egg-info/top_level.txt +0 -0
  16. {pyobjc-framework-DataDetection-9.2 → pyobjc-framework-DataDetection-10.1}/License.txt +0 -0
  17. {pyobjc-framework-DataDetection-9.2 → pyobjc-framework-DataDetection-10.1}/MANIFEST.in +0 -0
  18. {pyobjc-framework-DataDetection-9.2 → pyobjc-framework-DataDetection-10.1}/PyObjCTest/__init__.py +0 -0
  19. {pyobjc-framework-DataDetection-9.2 → pyobjc-framework-DataDetection-10.1}/PyObjCTest/test_datadetection.py +0 -0
  20. {pyobjc-framework-DataDetection-9.2 → pyobjc-framework-DataDetection-10.1}/metadata/DataDetection.fwinfo +0 -0
  21. {pyobjc-framework-DataDetection-9.2 → pyobjc-framework-DataDetection-10.1}/metadata/metadata.ini +0 -0
  22. {pyobjc-framework-DataDetection-9.2 → pyobjc-framework-DataDetection-10.1}/metadata/raw/arm64-12.0.fwinfo +0 -0
  23. {pyobjc-framework-DataDetection-9.2 → pyobjc-framework-DataDetection-10.1}/metadata/raw/arm64-12.3.fwinfo +0 -0
  24. {pyobjc-framework-DataDetection-9.2 → pyobjc-framework-DataDetection-10.1}/metadata/raw/arm64-13.3.fwinfo +0 -0
  25. {pyobjc-framework-DataDetection-9.2 → pyobjc-framework-DataDetection-10.1}/metadata/raw/x86_64-12.0.fwinfo +0 -0
  26. {pyobjc-framework-DataDetection-9.2 → pyobjc-framework-DataDetection-10.1}/metadata/raw/x86_64-12.3.fwinfo +0 -0
  27. {pyobjc-framework-DataDetection-9.2 → pyobjc-framework-DataDetection-10.1}/metadata/raw/x86_64-13.3.fwinfo +0 -0
  28. {pyobjc-framework-DataDetection-9.2 → pyobjc-framework-DataDetection-10.1}/pyproject.toml +0 -0
  29. {pyobjc-framework-DataDetection-9.2 → pyobjc-framework-DataDetection-10.1}/setup.cfg +0 -0
@@ -0,0 +1,34 @@
1
+ """
2
+ Python mapping for the DataDetection framework.
3
+
4
+ This module does not contain docstrings for the wrapped code, check Apple's
5
+ documentation for details on how to use these functions and classes.
6
+ """
7
+
8
+
9
+ def _setup():
10
+ import sys
11
+
12
+ import Foundation
13
+ import objc
14
+ from . import _metadata
15
+
16
+ dir_func, getattr_func = objc.createFrameworkDirAndGetattr(
17
+ name="DataDetection",
18
+ frameworkIdentifier="com.apple.DataDetection",
19
+ frameworkPath=objc.pathForFramework(
20
+ "/System/Library/Frameworks/DataDetection.framework"
21
+ ),
22
+ globals_dict=globals(),
23
+ inline_list=None,
24
+ parents=(Foundation,),
25
+ metadict=_metadata.__dict__,
26
+ )
27
+
28
+ globals()["__dir__"] = dir_func
29
+ globals()["__getattr__"] = getattr_func
30
+
31
+ del sys.modules["DataDetection._metadata"]
32
+
33
+
34
+ globals().pop("_setup")()
@@ -1,6 +1,6 @@
1
1
  # This file is generated by objective.metadata
2
2
  #
3
- # Last update: Fri Feb 17 21:39:26 2023
3
+ # Last update: Sat Jul 1 14:10:59 2023
4
4
  #
5
5
  # flake8: noqa
6
6
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyobjc-framework-DataDetection
3
- Version: 9.2
3
+ Version: 10.1
4
4
  Summary: Wrappers for the framework DataDetection on macOS
5
5
  Home-page: https://github.com/ronaldoussoren/pyobjc
6
6
  Author: Ronald Oussoren
@@ -18,17 +18,20 @@ Classifier: Operating System :: MacOS :: MacOS X
18
18
  Classifier: Programming Language :: Python
19
19
  Classifier: Programming Language :: Python :: 3
20
20
  Classifier: Programming Language :: Python :: 3 :: Only
21
- Classifier: Programming Language :: Python :: 3.7
22
21
  Classifier: Programming Language :: Python :: 3.8
23
22
  Classifier: Programming Language :: Python :: 3.9
24
23
  Classifier: Programming Language :: Python :: 3.10
25
24
  Classifier: Programming Language :: Python :: 3.11
25
+ Classifier: Programming Language :: Python :: 3.12
26
+ Classifier: Programming Language :: Python :: 3.13
26
27
  Classifier: Programming Language :: Python :: Implementation :: CPython
27
28
  Classifier: Programming Language :: Objective C
28
29
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
29
30
  Classifier: Topic :: Software Development :: User Interfaces
30
- Requires-Python: >=3.7
31
+ Requires-Python: >=3.8
31
32
  Description-Content-Type: text/x-rst; charset=UTF-8
33
+ Requires-Dist: pyobjc-core>=10.1
34
+ Requires-Dist: pyobjc-framework-Cocoa>=10.1
32
35
  Project-URL: Documentation, https://pyobjc.readthedocs.io/en/latest/
33
36
  Project-URL: Issue tracker, https://github.com/ronaldoussoren/pyobjc/issues
34
37
  Project-URL: Repository, https://github.com/ronaldoussoren/pyobjc
@@ -18,6 +18,8 @@ metadata/metadata.ini
18
18
  metadata/raw/arm64-12.0.fwinfo
19
19
  metadata/raw/arm64-12.3.fwinfo
20
20
  metadata/raw/arm64-13.3.fwinfo
21
+ metadata/raw/arm64-14.0.fwinfo
21
22
  metadata/raw/x86_64-12.0.fwinfo
22
23
  metadata/raw/x86_64-12.3.fwinfo
23
- metadata/raw/x86_64-13.3.fwinfo
24
+ metadata/raw/x86_64-13.3.fwinfo
25
+ metadata/raw/x86_64-14.0.fwinfo
@@ -0,0 +1,2 @@
1
+ pyobjc-core>=10.1
2
+ pyobjc-framework-Cocoa>=10.1
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: pyobjc-framework-DataDetection
3
- Version: 9.2
3
+ Version: 10.1
4
4
  Summary: Wrappers for the framework DataDetection on macOS
5
5
  Home-page: https://github.com/ronaldoussoren/pyobjc
6
6
  Author: Ronald Oussoren
@@ -18,17 +18,20 @@ Classifier: Operating System :: MacOS :: MacOS X
18
18
  Classifier: Programming Language :: Python
19
19
  Classifier: Programming Language :: Python :: 3
20
20
  Classifier: Programming Language :: Python :: 3 :: Only
21
- Classifier: Programming Language :: Python :: 3.7
22
21
  Classifier: Programming Language :: Python :: 3.8
23
22
  Classifier: Programming Language :: Python :: 3.9
24
23
  Classifier: Programming Language :: Python :: 3.10
25
24
  Classifier: Programming Language :: Python :: 3.11
25
+ Classifier: Programming Language :: Python :: 3.12
26
+ Classifier: Programming Language :: Python :: 3.13
26
27
  Classifier: Programming Language :: Python :: Implementation :: CPython
27
28
  Classifier: Programming Language :: Objective C
28
29
  Classifier: Topic :: Software Development :: Libraries :: Python Modules
29
30
  Classifier: Topic :: Software Development :: User Interfaces
30
- Requires-Python: >=3.7
31
+ Requires-Python: >=3.8
31
32
  Description-Content-Type: text/x-rst; charset=UTF-8
33
+ Requires-Dist: pyobjc-core>=10.1
34
+ Requires-Dist: pyobjc-framework-Cocoa>=10.1
32
35
 
33
36
 
34
37
  Wrappers for the "DataDetection" framework on macOS.
@@ -0,0 +1,554 @@
1
+ // GENERATED FILE DO NOT EDIT
2
+ //
3
+ // This file was generated by objective.metadata
4
+ // Last update: Sat Jul 1 14:10:58 2023
5
+ {
6
+ "arch": "arm64",
7
+ "definitions": {
8
+ "aliases": {},
9
+ "called_definitions": {},
10
+ "cftypes": {},
11
+ "classes": {
12
+ "DDMatch": {
13
+ "categories": [],
14
+ "methods": [
15
+ {
16
+ "args": [],
17
+ "class_method": false,
18
+ "retval": {
19
+ "typestr": "@",
20
+ "typestr_special": false
21
+ },
22
+ "selector": "init",
23
+ "visibility": "public"
24
+ },
25
+ {
26
+ "args": [],
27
+ "class_method": false,
28
+ "retval": {
29
+ "typestr": "@",
30
+ "typestr_special": false
31
+ },
32
+ "selector": "matchedString",
33
+ "visibility": "public"
34
+ }
35
+ ],
36
+ "name": "DDMatch",
37
+ "properties": [
38
+ {
39
+ "attributes": [
40
+ "nonatomic",
41
+ "readonly"
42
+ ],
43
+ "name": "matchedString",
44
+ "typestr": "@",
45
+ "typestr_special": false
46
+ }
47
+ ],
48
+ "protocols": [],
49
+ "super": "NSObject"
50
+ },
51
+ "DDMatchCalendarEvent": {
52
+ "categories": [],
53
+ "methods": [
54
+ {
55
+ "args": [],
56
+ "class_method": false,
57
+ "retval": {
58
+ "typestr": "Z",
59
+ "typestr_special": true
60
+ },
61
+ "selector": "isAllDay",
62
+ "visibility": "public"
63
+ },
64
+ {
65
+ "args": [],
66
+ "class_method": false,
67
+ "retval": {
68
+ "typestr": "@",
69
+ "typestr_special": false
70
+ },
71
+ "selector": "startDate",
72
+ "visibility": "public"
73
+ },
74
+ {
75
+ "args": [],
76
+ "class_method": false,
77
+ "retval": {
78
+ "typestr": "@",
79
+ "typestr_special": false
80
+ },
81
+ "selector": "startTimeZone",
82
+ "visibility": "public"
83
+ },
84
+ {
85
+ "args": [],
86
+ "class_method": false,
87
+ "retval": {
88
+ "typestr": "@",
89
+ "typestr_special": false
90
+ },
91
+ "selector": "endDate",
92
+ "visibility": "public"
93
+ },
94
+ {
95
+ "args": [],
96
+ "class_method": false,
97
+ "retval": {
98
+ "typestr": "@",
99
+ "typestr_special": false
100
+ },
101
+ "selector": "endTimeZone",
102
+ "visibility": "public"
103
+ }
104
+ ],
105
+ "name": "DDMatchCalendarEvent",
106
+ "properties": [
107
+ {
108
+ "attributes": [
109
+ "nonatomic",
110
+ "readonly",
111
+ [
112
+ "getter",
113
+ "isAllDay"
114
+ ]
115
+ ],
116
+ "name": "allDay",
117
+ "typestr": "Z",
118
+ "typestr_special": true
119
+ },
120
+ {
121
+ "attributes": [
122
+ "nonatomic",
123
+ "readonly"
124
+ ],
125
+ "name": "startDate",
126
+ "typestr": "@",
127
+ "typestr_special": false
128
+ },
129
+ {
130
+ "attributes": [
131
+ "nonatomic",
132
+ "readonly"
133
+ ],
134
+ "name": "startTimeZone",
135
+ "typestr": "@",
136
+ "typestr_special": false
137
+ },
138
+ {
139
+ "attributes": [
140
+ "nonatomic",
141
+ "readonly"
142
+ ],
143
+ "name": "endDate",
144
+ "typestr": "@",
145
+ "typestr_special": false
146
+ },
147
+ {
148
+ "attributes": [
149
+ "nonatomic",
150
+ "readonly"
151
+ ],
152
+ "name": "endTimeZone",
153
+ "typestr": "@",
154
+ "typestr_special": false
155
+ }
156
+ ],
157
+ "protocols": [],
158
+ "super": "DDMatch"
159
+ },
160
+ "DDMatchEmailAddress": {
161
+ "categories": [],
162
+ "methods": [
163
+ {
164
+ "args": [],
165
+ "class_method": false,
166
+ "retval": {
167
+ "typestr": "@",
168
+ "typestr_special": false
169
+ },
170
+ "selector": "emailAddress",
171
+ "visibility": "public"
172
+ },
173
+ {
174
+ "args": [],
175
+ "class_method": false,
176
+ "retval": {
177
+ "typestr": "@",
178
+ "typestr_special": false
179
+ },
180
+ "selector": "label",
181
+ "visibility": "public"
182
+ }
183
+ ],
184
+ "name": "DDMatchEmailAddress",
185
+ "properties": [
186
+ {
187
+ "attributes": [
188
+ "nonatomic",
189
+ "readonly"
190
+ ],
191
+ "name": "emailAddress",
192
+ "typestr": "@",
193
+ "typestr_special": false
194
+ },
195
+ {
196
+ "attributes": [
197
+ "nonatomic",
198
+ "readonly"
199
+ ],
200
+ "name": "label",
201
+ "typestr": "@",
202
+ "typestr_special": false
203
+ }
204
+ ],
205
+ "protocols": [],
206
+ "super": "DDMatch"
207
+ },
208
+ "DDMatchFlightNumber": {
209
+ "categories": [],
210
+ "methods": [
211
+ {
212
+ "args": [],
213
+ "class_method": false,
214
+ "retval": {
215
+ "typestr": "@",
216
+ "typestr_special": false
217
+ },
218
+ "selector": "airline",
219
+ "visibility": "public"
220
+ },
221
+ {
222
+ "args": [],
223
+ "class_method": false,
224
+ "retval": {
225
+ "typestr": "@",
226
+ "typestr_special": false
227
+ },
228
+ "selector": "flightNumber",
229
+ "visibility": "public"
230
+ }
231
+ ],
232
+ "name": "DDMatchFlightNumber",
233
+ "properties": [
234
+ {
235
+ "attributes": [
236
+ "nonatomic",
237
+ "readonly"
238
+ ],
239
+ "name": "airline",
240
+ "typestr": "@",
241
+ "typestr_special": false
242
+ },
243
+ {
244
+ "attributes": [
245
+ "nonatomic",
246
+ "readonly"
247
+ ],
248
+ "name": "flightNumber",
249
+ "typestr": "@",
250
+ "typestr_special": false
251
+ }
252
+ ],
253
+ "protocols": [],
254
+ "super": "DDMatch"
255
+ },
256
+ "DDMatchLink": {
257
+ "categories": [],
258
+ "methods": [
259
+ {
260
+ "args": [],
261
+ "class_method": false,
262
+ "retval": {
263
+ "typestr": "@",
264
+ "typestr_special": false
265
+ },
266
+ "selector": "URL",
267
+ "visibility": "public"
268
+ }
269
+ ],
270
+ "name": "DDMatchLink",
271
+ "properties": [
272
+ {
273
+ "attributes": [
274
+ "nonatomic",
275
+ "readonly"
276
+ ],
277
+ "name": "URL",
278
+ "typestr": "@",
279
+ "typestr_special": false
280
+ }
281
+ ],
282
+ "protocols": [],
283
+ "super": "DDMatch"
284
+ },
285
+ "DDMatchMoneyAmount": {
286
+ "categories": [],
287
+ "methods": [
288
+ {
289
+ "args": [],
290
+ "class_method": false,
291
+ "retval": {
292
+ "typestr": "@",
293
+ "typestr_special": false
294
+ },
295
+ "selector": "currency",
296
+ "visibility": "public"
297
+ },
298
+ {
299
+ "args": [],
300
+ "class_method": false,
301
+ "retval": {
302
+ "typestr": "d",
303
+ "typestr_special": false
304
+ },
305
+ "selector": "amount",
306
+ "visibility": "public"
307
+ }
308
+ ],
309
+ "name": "DDMatchMoneyAmount",
310
+ "properties": [
311
+ {
312
+ "attributes": [
313
+ "nonatomic",
314
+ "readonly"
315
+ ],
316
+ "name": "currency",
317
+ "typestr": "@",
318
+ "typestr_special": false
319
+ },
320
+ {
321
+ "attributes": [
322
+ "nonatomic",
323
+ "readonly"
324
+ ],
325
+ "name": "amount",
326
+ "typestr": "d",
327
+ "typestr_special": false
328
+ }
329
+ ],
330
+ "protocols": [],
331
+ "super": "DDMatch"
332
+ },
333
+ "DDMatchPhoneNumber": {
334
+ "categories": [],
335
+ "methods": [
336
+ {
337
+ "args": [],
338
+ "class_method": false,
339
+ "retval": {
340
+ "typestr": "@",
341
+ "typestr_special": false
342
+ },
343
+ "selector": "phoneNumber",
344
+ "visibility": "public"
345
+ },
346
+ {
347
+ "args": [],
348
+ "class_method": false,
349
+ "retval": {
350
+ "typestr": "@",
351
+ "typestr_special": false
352
+ },
353
+ "selector": "label",
354
+ "visibility": "public"
355
+ }
356
+ ],
357
+ "name": "DDMatchPhoneNumber",
358
+ "properties": [
359
+ {
360
+ "attributes": [
361
+ "nonatomic",
362
+ "readonly"
363
+ ],
364
+ "name": "phoneNumber",
365
+ "typestr": "@",
366
+ "typestr_special": false
367
+ },
368
+ {
369
+ "attributes": [
370
+ "nonatomic",
371
+ "readonly"
372
+ ],
373
+ "name": "label",
374
+ "typestr": "@",
375
+ "typestr_special": false
376
+ }
377
+ ],
378
+ "protocols": [],
379
+ "super": "DDMatch"
380
+ },
381
+ "DDMatchPostalAddress": {
382
+ "categories": [],
383
+ "methods": [
384
+ {
385
+ "args": [],
386
+ "class_method": false,
387
+ "retval": {
388
+ "typestr": "@",
389
+ "typestr_special": false
390
+ },
391
+ "selector": "street",
392
+ "visibility": "public"
393
+ },
394
+ {
395
+ "args": [],
396
+ "class_method": false,
397
+ "retval": {
398
+ "typestr": "@",
399
+ "typestr_special": false
400
+ },
401
+ "selector": "city",
402
+ "visibility": "public"
403
+ },
404
+ {
405
+ "args": [],
406
+ "class_method": false,
407
+ "retval": {
408
+ "typestr": "@",
409
+ "typestr_special": false
410
+ },
411
+ "selector": "state",
412
+ "visibility": "public"
413
+ },
414
+ {
415
+ "args": [],
416
+ "class_method": false,
417
+ "retval": {
418
+ "typestr": "@",
419
+ "typestr_special": false
420
+ },
421
+ "selector": "postalCode",
422
+ "visibility": "public"
423
+ },
424
+ {
425
+ "args": [],
426
+ "class_method": false,
427
+ "retval": {
428
+ "typestr": "@",
429
+ "typestr_special": false
430
+ },
431
+ "selector": "country",
432
+ "visibility": "public"
433
+ }
434
+ ],
435
+ "name": "DDMatchPostalAddress",
436
+ "properties": [
437
+ {
438
+ "attributes": [
439
+ "nonatomic",
440
+ "readonly"
441
+ ],
442
+ "name": "street",
443
+ "typestr": "@",
444
+ "typestr_special": false
445
+ },
446
+ {
447
+ "attributes": [
448
+ "nonatomic",
449
+ "readonly"
450
+ ],
451
+ "name": "city",
452
+ "typestr": "@",
453
+ "typestr_special": false
454
+ },
455
+ {
456
+ "attributes": [
457
+ "nonatomic",
458
+ "readonly"
459
+ ],
460
+ "name": "state",
461
+ "typestr": "@",
462
+ "typestr_special": false
463
+ },
464
+ {
465
+ "attributes": [
466
+ "nonatomic",
467
+ "readonly"
468
+ ],
469
+ "name": "postalCode",
470
+ "typestr": "@",
471
+ "typestr_special": false
472
+ },
473
+ {
474
+ "attributes": [
475
+ "nonatomic",
476
+ "readonly"
477
+ ],
478
+ "name": "country",
479
+ "typestr": "@",
480
+ "typestr_special": false
481
+ }
482
+ ],
483
+ "protocols": [],
484
+ "super": "DDMatch"
485
+ },
486
+ "DDMatchShipmentTrackingNumber": {
487
+ "categories": [],
488
+ "methods": [
489
+ {
490
+ "args": [],
491
+ "class_method": false,
492
+ "retval": {
493
+ "typestr": "@",
494
+ "typestr_special": false
495
+ },
496
+ "selector": "carrier",
497
+ "visibility": "public"
498
+ },
499
+ {
500
+ "args": [],
501
+ "class_method": false,
502
+ "retval": {
503
+ "typestr": "@",
504
+ "typestr_special": false
505
+ },
506
+ "selector": "trackingNumber",
507
+ "visibility": "public"
508
+ }
509
+ ],
510
+ "name": "DDMatchShipmentTrackingNumber",
511
+ "properties": [
512
+ {
513
+ "attributes": [
514
+ "nonatomic",
515
+ "readonly"
516
+ ],
517
+ "name": "carrier",
518
+ "typestr": "@",
519
+ "typestr_special": false
520
+ },
521
+ {
522
+ "attributes": [
523
+ "nonatomic",
524
+ "readonly"
525
+ ],
526
+ "name": "trackingNumber",
527
+ "typestr": "@",
528
+ "typestr_special": false
529
+ }
530
+ ],
531
+ "protocols": [],
532
+ "super": "DDMatch"
533
+ }
534
+ },
535
+ "enum": {},
536
+ "enum_type": {},
537
+ "expressions": {},
538
+ "externs": {},
539
+ "formal_protocols": {},
540
+ "func_macros": {},
541
+ "functions": {},
542
+ "informal_protocols": {},
543
+ "literals": {},
544
+ "structs": {},
545
+ "typedefs": {}
546
+ },
547
+ "framework": "DataDetection",
548
+ "headers": [
549
+ "DDMatch.h",
550
+ "DataDetectionBase.h"
551
+ ],
552
+ "release": "10.16",
553
+ "sdk": "/Users/ronald/Applications/Xcode-beta.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs/MacOSX14.0.sdk"
554
+ }