@esri/hub-web-components 0.0.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 (70) hide show
  1. package/LICENSE.md +13 -0
  2. package/README.md +35 -0
  3. package/dist/cdn/2NFBUAOJ.js +4 -0
  4. package/dist/cdn/3ZRJV7VD.js +3 -0
  5. package/dist/cdn/CADUTR4A.js +4 -0
  6. package/dist/cdn/E5QHKHGG.js +41 -0
  7. package/dist/cdn/IDWXUFCL.js +6 -0
  8. package/dist/cdn/MNXAWZSB.js +9 -0
  9. package/dist/cdn/YBCM3RPB.js +4 -0
  10. package/dist/cdn/assets/hub-ai-assistant/t9n/messages.en.json +1 -0
  11. package/dist/cdn/assets/hub-ai-assistant/t9n/messages.es.json +1 -0
  12. package/dist/cdn/index.js +4 -0
  13. package/dist/chunks/chat-action.js +41 -0
  14. package/dist/chunks/runtime.js +12 -0
  15. package/dist/components/arcgis-chat-shell/customElement.d.ts +27 -0
  16. package/dist/components/arcgis-chat-shell/customElement.js +44 -0
  17. package/dist/components/arcgis-chat-shell/index.d.ts +5 -0
  18. package/dist/components/arcgis-chat-shell/index.js +5 -0
  19. package/dist/components/arcgis-chat-ui/components/chat-action/customElement.d.ts +9 -0
  20. package/dist/components/arcgis-chat-ui/components/chat-action/customElement.js +9 -0
  21. package/dist/components/arcgis-chat-ui/components/chat-action/index.d.ts +2 -0
  22. package/dist/components/arcgis-chat-ui/components/chat-action/index.js +2 -0
  23. package/dist/components/arcgis-chat-ui/components/chat-response/customElement.d.ts +9 -0
  24. package/dist/components/arcgis-chat-ui/components/chat-response/customElement.js +42 -0
  25. package/dist/components/arcgis-chat-ui/components/chat-response/index.d.ts +8 -0
  26. package/dist/components/arcgis-chat-ui/components/chat-response/index.js +8 -0
  27. package/dist/components/arcgis-chat-ui/components/chat-status/customElement.d.ts +6 -0
  28. package/dist/components/arcgis-chat-ui/components/chat-status/customElement.js +8 -0
  29. package/dist/components/arcgis-chat-ui/components/chat-status/index.d.ts +1 -0
  30. package/dist/components/arcgis-chat-ui/components/chat-status/index.js +1 -0
  31. package/dist/components/arcgis-chat-ui/customElement.d.ts +58 -0
  32. package/dist/components/arcgis-chat-ui/customElement.js +127 -0
  33. package/dist/components/arcgis-chat-ui/index.d.ts +3 -0
  34. package/dist/components/arcgis-chat-ui/index.js +3 -0
  35. package/dist/components/arcgis-chat-ui/util/constants.d.ts +4 -0
  36. package/dist/components/arcgis-chat-ui/util/customElement.d.ts +3 -0
  37. package/dist/components/arcgis-chat-ui/util/types.d.ts +27 -0
  38. package/dist/components/arcgis-hub-ai-assistant/customElement.d.ts +90 -0
  39. package/dist/components/arcgis-hub-ai-assistant/customElement.js +210 -0
  40. package/dist/components/arcgis-hub-ai-assistant/index.d.ts +9 -0
  41. package/dist/components/arcgis-hub-ai-assistant/index.js +9 -0
  42. package/dist/components/arcgis-hub-ai-assistant/util/api.d.ts +25 -0
  43. package/dist/components/arcgis-hub-ai-assistant/util/customElement.d.ts +18 -0
  44. package/dist/components/arcgis-hub-ai-assistant/util/customElement.js +33 -0
  45. package/dist/components/arcgis-hub-ai-assistant/util/framework.d.ts +184 -0
  46. package/dist/components/arcgis-hub-ai-assistant/util/index.d.ts +1 -0
  47. package/dist/components/arcgis-hub-ai-assistant/util/index.js +1 -0
  48. package/dist/components/arcgis-hub-ai-assistant/util/test.d.ts +1387 -0
  49. package/dist/controllers/useT9n.d.ts +1 -0
  50. package/dist/docs/api.json +1113 -0
  51. package/dist/docs/docs.json +1010 -0
  52. package/dist/docs/vscode.css-custom-data.json +6 -0
  53. package/dist/docs/vscode.html-custom-data.json +133 -0
  54. package/dist/docs/web-types.json +413 -0
  55. package/dist/embed-config.d.ts +18 -0
  56. package/dist/embed-config.js +24 -0
  57. package/dist/enums.d.ts +10 -0
  58. package/dist/index.d.ts +74 -0
  59. package/dist/index.js +8 -0
  60. package/dist/loader.d.ts +2 -0
  61. package/dist/loader.js +13 -0
  62. package/dist/main.css +1 -0
  63. package/dist/runtime.d.ts +6 -0
  64. package/dist/types/components.d.ts +1 -0
  65. package/dist/types/lumina.d.ts +28 -0
  66. package/dist/types/preact.d.ts +36 -0
  67. package/dist/types/react.d.ts +47 -0
  68. package/dist/types/stencil.d.ts +35 -0
  69. package/dist/util/configuration.d.ts +16 -0
  70. package/package.json +99 -0
@@ -0,0 +1,1387 @@
1
+ export declare const testResponses: {
2
+ "Where are parks near dupont circle?": {
3
+ status: number;
4
+ response: {
5
+ text: string;
6
+ actions: {
7
+ action: string;
8
+ text: null;
9
+ properties: {
10
+ topic: null;
11
+ datasets: string[];
12
+ latitude: number;
13
+ longitude: number;
14
+ zoom: number;
15
+ location: string;
16
+ };
17
+ }[];
18
+ sources: {
19
+ id: string;
20
+ type: string;
21
+ title: string;
22
+ description: string;
23
+ source: string;
24
+ }[];
25
+ location: {
26
+ name: string;
27
+ latitude: number;
28
+ longitude: number;
29
+ zoom: number;
30
+ };
31
+ };
32
+ meta: {
33
+ request: string;
34
+ location: string;
35
+ context: string;
36
+ language: null;
37
+ steps: (({
38
+ tool: string;
39
+ tool_input: {
40
+ topic: string;
41
+ location: string;
42
+ context: {
43
+ domain: string;
44
+ };
45
+ };
46
+ log: string;
47
+ type: string;
48
+ message_log: {
49
+ content: string;
50
+ additional_kwargs: {
51
+ tool_calls: {
52
+ index: number;
53
+ id: string;
54
+ function: {
55
+ arguments: string;
56
+ name: string;
57
+ };
58
+ type: string;
59
+ }[];
60
+ };
61
+ response_metadata: {
62
+ finish_reason: string;
63
+ model_name: string;
64
+ system_fingerprint: string;
65
+ };
66
+ type: string;
67
+ name: null;
68
+ id: string;
69
+ }[];
70
+ tool_call_id: string;
71
+ features?: undefined;
72
+ coordinates?: undefined;
73
+ datasets?: undefined;
74
+ } | {
75
+ features: ({
76
+ NAME: string;
77
+ ADDRESS: string;
78
+ ALPHA_CODE: string;
79
+ PARK_CODE: number;
80
+ AQUIRED: string;
81
+ TRANS_DC: null;
82
+ SOURCE: string;
83
+ RESERVE: string;
84
+ LABEL: null;
85
+ SQUARE: string;
86
+ SUFFIX: null;
87
+ LOT: string;
88
+ SSL: string;
89
+ PAR: string;
90
+ GIS_ID: string;
91
+ OBJECTID: number;
92
+ GLOBALID: string;
93
+ CREATED: null;
94
+ EDITED: null;
95
+ "SHAPE.AREA": number;
96
+ "SHAPE.LEN": number;
97
+ SIZE_?: undefined;
98
+ WARD?: undefined;
99
+ X_COORDINATE?: undefined;
100
+ Y_COORDINATE?: undefined;
101
+ LATITUDE?: undefined;
102
+ LONGITUDE?: undefined;
103
+ MAR_ID?: undefined;
104
+ SE_ANNO_CAD_DATA?: undefined;
105
+ USE_TYPE?: undefined;
106
+ PROPID?: undefined;
107
+ ACTIVE?: undefined;
108
+ DIAMOND60?: undefined;
109
+ DIAMOND90?: undefined;
110
+ BBCOURT?: undefined;
111
+ FBFIELD?: undefined;
112
+ SOCCERJR?: undefined;
113
+ SOCCERREG?: undefined;
114
+ TENNISCT?: undefined;
115
+ VOLLEYB?: undefined;
116
+ SKATEPARK?: undefined;
117
+ WOODLAND?: undefined;
118
+ VSTRSHCAN?: undefined;
119
+ DMPSTR?: undefined;
120
+ PICNIC?: undefined;
121
+ PLYGRD?: undefined;
122
+ TOTLOT?: undefined;
123
+ INSWIM?: undefined;
124
+ OUTSWIM?: undefined;
125
+ SPRAYPARK?: undefined;
126
+ UTILBX?: undefined;
127
+ TRAFPOLE?: undefined;
128
+ UTILPOLE?: undefined;
129
+ BUSSTP?: undefined;
130
+ LOCK_?: undefined;
131
+ NMZ?: undefined;
132
+ DRINKFOUNT?: undefined;
133
+ BENCHES?: undefined;
134
+ ATHLIGHT?: undefined;
135
+ LNDSCPBED?: undefined;
136
+ TOTIMPV?: undefined;
137
+ SIGNS?: undefined;
138
+ TURFONLY?: undefined;
139
+ FENCE?: undefined;
140
+ TOPO?: undefined;
141
+ COMMGAR?: undefined;
142
+ AREA_?: undefined;
143
+ ZONE_?: undefined;
144
+ PARKPARTN?: undefined;
145
+ RES_NUM?: undefined;
146
+ ADJ_SCHOOL_SITE?: undefined;
147
+ COMMENTS?: undefined;
148
+ DATE_ACQUIRED?: undefined;
149
+ CHECKED?: undefined;
150
+ AGENCY?: undefined;
151
+ CREATOR?: undefined;
152
+ EDITOR?: undefined;
153
+ PHONE?: undefined;
154
+ EMAIL?: undefined;
155
+ CONTACT?: undefined;
156
+ CONTACT2?: undefined;
157
+ WEB_URL?: undefined;
158
+ ORGANIZATION?: undefined;
159
+ PLOTS?: undefined;
160
+ ACRES?: undefined;
161
+ } | {
162
+ NAME: string;
163
+ ADDRESS: string;
164
+ ALPHA_CODE: string;
165
+ PARK_CODE: number;
166
+ AQUIRED: string;
167
+ TRANS_DC: null;
168
+ SOURCE: string;
169
+ RESERVE: string;
170
+ LABEL: null;
171
+ SQUARE: string;
172
+ SUFFIX: string;
173
+ LOT: string;
174
+ SSL: string;
175
+ PAR: null;
176
+ GIS_ID: string;
177
+ OBJECTID: number;
178
+ GLOBALID: string;
179
+ CREATED: null;
180
+ EDITED: null;
181
+ "SHAPE.AREA": number;
182
+ "SHAPE.LEN": number;
183
+ SIZE_?: undefined;
184
+ WARD?: undefined;
185
+ X_COORDINATE?: undefined;
186
+ Y_COORDINATE?: undefined;
187
+ LATITUDE?: undefined;
188
+ LONGITUDE?: undefined;
189
+ MAR_ID?: undefined;
190
+ SE_ANNO_CAD_DATA?: undefined;
191
+ USE_TYPE?: undefined;
192
+ PROPID?: undefined;
193
+ ACTIVE?: undefined;
194
+ DIAMOND60?: undefined;
195
+ DIAMOND90?: undefined;
196
+ BBCOURT?: undefined;
197
+ FBFIELD?: undefined;
198
+ SOCCERJR?: undefined;
199
+ SOCCERREG?: undefined;
200
+ TENNISCT?: undefined;
201
+ VOLLEYB?: undefined;
202
+ SKATEPARK?: undefined;
203
+ WOODLAND?: undefined;
204
+ VSTRSHCAN?: undefined;
205
+ DMPSTR?: undefined;
206
+ PICNIC?: undefined;
207
+ PLYGRD?: undefined;
208
+ TOTLOT?: undefined;
209
+ INSWIM?: undefined;
210
+ OUTSWIM?: undefined;
211
+ SPRAYPARK?: undefined;
212
+ UTILBX?: undefined;
213
+ TRAFPOLE?: undefined;
214
+ UTILPOLE?: undefined;
215
+ BUSSTP?: undefined;
216
+ LOCK_?: undefined;
217
+ NMZ?: undefined;
218
+ DRINKFOUNT?: undefined;
219
+ BENCHES?: undefined;
220
+ ATHLIGHT?: undefined;
221
+ LNDSCPBED?: undefined;
222
+ TOTIMPV?: undefined;
223
+ SIGNS?: undefined;
224
+ TURFONLY?: undefined;
225
+ FENCE?: undefined;
226
+ TOPO?: undefined;
227
+ COMMGAR?: undefined;
228
+ AREA_?: undefined;
229
+ ZONE_?: undefined;
230
+ PARKPARTN?: undefined;
231
+ RES_NUM?: undefined;
232
+ ADJ_SCHOOL_SITE?: undefined;
233
+ COMMENTS?: undefined;
234
+ DATE_ACQUIRED?: undefined;
235
+ CHECKED?: undefined;
236
+ AGENCY?: undefined;
237
+ CREATOR?: undefined;
238
+ EDITOR?: undefined;
239
+ PHONE?: undefined;
240
+ EMAIL?: undefined;
241
+ CONTACT?: undefined;
242
+ CONTACT2?: undefined;
243
+ WEB_URL?: undefined;
244
+ ORGANIZATION?: undefined;
245
+ PLOTS?: undefined;
246
+ ACRES?: undefined;
247
+ } | {
248
+ NAME: string;
249
+ ADDRESS: string;
250
+ ALPHA_CODE: string;
251
+ PARK_CODE: number;
252
+ AQUIRED: string;
253
+ TRANS_DC: null;
254
+ SOURCE: string;
255
+ RESERVE: string;
256
+ LABEL: null;
257
+ SQUARE: null;
258
+ SUFFIX: null;
259
+ LOT: null;
260
+ SSL: string;
261
+ PAR: null;
262
+ GIS_ID: string;
263
+ OBJECTID: number;
264
+ GLOBALID: string;
265
+ CREATED: null;
266
+ EDITED: null;
267
+ "SHAPE.AREA": number;
268
+ "SHAPE.LEN": number;
269
+ SIZE_?: undefined;
270
+ WARD?: undefined;
271
+ X_COORDINATE?: undefined;
272
+ Y_COORDINATE?: undefined;
273
+ LATITUDE?: undefined;
274
+ LONGITUDE?: undefined;
275
+ MAR_ID?: undefined;
276
+ SE_ANNO_CAD_DATA?: undefined;
277
+ USE_TYPE?: undefined;
278
+ PROPID?: undefined;
279
+ ACTIVE?: undefined;
280
+ DIAMOND60?: undefined;
281
+ DIAMOND90?: undefined;
282
+ BBCOURT?: undefined;
283
+ FBFIELD?: undefined;
284
+ SOCCERJR?: undefined;
285
+ SOCCERREG?: undefined;
286
+ TENNISCT?: undefined;
287
+ VOLLEYB?: undefined;
288
+ SKATEPARK?: undefined;
289
+ WOODLAND?: undefined;
290
+ VSTRSHCAN?: undefined;
291
+ DMPSTR?: undefined;
292
+ PICNIC?: undefined;
293
+ PLYGRD?: undefined;
294
+ TOTLOT?: undefined;
295
+ INSWIM?: undefined;
296
+ OUTSWIM?: undefined;
297
+ SPRAYPARK?: undefined;
298
+ UTILBX?: undefined;
299
+ TRAFPOLE?: undefined;
300
+ UTILPOLE?: undefined;
301
+ BUSSTP?: undefined;
302
+ LOCK_?: undefined;
303
+ NMZ?: undefined;
304
+ DRINKFOUNT?: undefined;
305
+ BENCHES?: undefined;
306
+ ATHLIGHT?: undefined;
307
+ LNDSCPBED?: undefined;
308
+ TOTIMPV?: undefined;
309
+ SIGNS?: undefined;
310
+ TURFONLY?: undefined;
311
+ FENCE?: undefined;
312
+ TOPO?: undefined;
313
+ COMMGAR?: undefined;
314
+ AREA_?: undefined;
315
+ ZONE_?: undefined;
316
+ PARKPARTN?: undefined;
317
+ RES_NUM?: undefined;
318
+ ADJ_SCHOOL_SITE?: undefined;
319
+ COMMENTS?: undefined;
320
+ DATE_ACQUIRED?: undefined;
321
+ CHECKED?: undefined;
322
+ AGENCY?: undefined;
323
+ CREATOR?: undefined;
324
+ EDITOR?: undefined;
325
+ PHONE?: undefined;
326
+ EMAIL?: undefined;
327
+ CONTACT?: undefined;
328
+ CONTACT2?: undefined;
329
+ WEB_URL?: undefined;
330
+ ORGANIZATION?: undefined;
331
+ PLOTS?: undefined;
332
+ ACRES?: undefined;
333
+ } | {
334
+ NAME: string;
335
+ ADDRESS: string;
336
+ ALPHA_CODE: string;
337
+ PARK_CODE: number;
338
+ AQUIRED: string;
339
+ TRANS_DC: null;
340
+ SOURCE: string;
341
+ RESERVE: string;
342
+ LABEL: string;
343
+ SQUARE: string;
344
+ SUFFIX: null;
345
+ LOT: string;
346
+ SSL: string;
347
+ PAR: null;
348
+ GIS_ID: string;
349
+ OBJECTID: number;
350
+ GLOBALID: string;
351
+ CREATED: null;
352
+ EDITED: null;
353
+ "SHAPE.AREA": number;
354
+ "SHAPE.LEN": number;
355
+ SIZE_?: undefined;
356
+ WARD?: undefined;
357
+ X_COORDINATE?: undefined;
358
+ Y_COORDINATE?: undefined;
359
+ LATITUDE?: undefined;
360
+ LONGITUDE?: undefined;
361
+ MAR_ID?: undefined;
362
+ SE_ANNO_CAD_DATA?: undefined;
363
+ USE_TYPE?: undefined;
364
+ PROPID?: undefined;
365
+ ACTIVE?: undefined;
366
+ DIAMOND60?: undefined;
367
+ DIAMOND90?: undefined;
368
+ BBCOURT?: undefined;
369
+ FBFIELD?: undefined;
370
+ SOCCERJR?: undefined;
371
+ SOCCERREG?: undefined;
372
+ TENNISCT?: undefined;
373
+ VOLLEYB?: undefined;
374
+ SKATEPARK?: undefined;
375
+ WOODLAND?: undefined;
376
+ VSTRSHCAN?: undefined;
377
+ DMPSTR?: undefined;
378
+ PICNIC?: undefined;
379
+ PLYGRD?: undefined;
380
+ TOTLOT?: undefined;
381
+ INSWIM?: undefined;
382
+ OUTSWIM?: undefined;
383
+ SPRAYPARK?: undefined;
384
+ UTILBX?: undefined;
385
+ TRAFPOLE?: undefined;
386
+ UTILPOLE?: undefined;
387
+ BUSSTP?: undefined;
388
+ LOCK_?: undefined;
389
+ NMZ?: undefined;
390
+ DRINKFOUNT?: undefined;
391
+ BENCHES?: undefined;
392
+ ATHLIGHT?: undefined;
393
+ LNDSCPBED?: undefined;
394
+ TOTIMPV?: undefined;
395
+ SIGNS?: undefined;
396
+ TURFONLY?: undefined;
397
+ FENCE?: undefined;
398
+ TOPO?: undefined;
399
+ COMMGAR?: undefined;
400
+ AREA_?: undefined;
401
+ ZONE_?: undefined;
402
+ PARKPARTN?: undefined;
403
+ RES_NUM?: undefined;
404
+ ADJ_SCHOOL_SITE?: undefined;
405
+ COMMENTS?: undefined;
406
+ DATE_ACQUIRED?: undefined;
407
+ CHECKED?: undefined;
408
+ AGENCY?: undefined;
409
+ CREATOR?: undefined;
410
+ EDITOR?: undefined;
411
+ PHONE?: undefined;
412
+ EMAIL?: undefined;
413
+ CONTACT?: undefined;
414
+ CONTACT2?: undefined;
415
+ WEB_URL?: undefined;
416
+ ORGANIZATION?: undefined;
417
+ PLOTS?: undefined;
418
+ ACRES?: undefined;
419
+ } | {
420
+ NAME: string;
421
+ ADDRESS: string;
422
+ SIZE_: number;
423
+ WARD: number;
424
+ X_COORDINATE: number;
425
+ Y_COORDINATE: number;
426
+ LATITUDE: number;
427
+ LONGITUDE: number;
428
+ MAR_ID: number;
429
+ GIS_ID: string;
430
+ SE_ANNO_CAD_DATA: null;
431
+ OBJECTID: number;
432
+ GLOBALID: string;
433
+ ALPHA_CODE?: undefined;
434
+ PARK_CODE?: undefined;
435
+ AQUIRED?: undefined;
436
+ TRANS_DC?: undefined;
437
+ SOURCE?: undefined;
438
+ RESERVE?: undefined;
439
+ LABEL?: undefined;
440
+ SQUARE?: undefined;
441
+ SUFFIX?: undefined;
442
+ LOT?: undefined;
443
+ SSL?: undefined;
444
+ PAR?: undefined;
445
+ CREATED?: undefined;
446
+ EDITED?: undefined;
447
+ "SHAPE.AREA"?: undefined;
448
+ "SHAPE.LEN"?: undefined;
449
+ USE_TYPE?: undefined;
450
+ PROPID?: undefined;
451
+ ACTIVE?: undefined;
452
+ DIAMOND60?: undefined;
453
+ DIAMOND90?: undefined;
454
+ BBCOURT?: undefined;
455
+ FBFIELD?: undefined;
456
+ SOCCERJR?: undefined;
457
+ SOCCERREG?: undefined;
458
+ TENNISCT?: undefined;
459
+ VOLLEYB?: undefined;
460
+ SKATEPARK?: undefined;
461
+ WOODLAND?: undefined;
462
+ VSTRSHCAN?: undefined;
463
+ DMPSTR?: undefined;
464
+ PICNIC?: undefined;
465
+ PLYGRD?: undefined;
466
+ TOTLOT?: undefined;
467
+ INSWIM?: undefined;
468
+ OUTSWIM?: undefined;
469
+ SPRAYPARK?: undefined;
470
+ UTILBX?: undefined;
471
+ TRAFPOLE?: undefined;
472
+ UTILPOLE?: undefined;
473
+ BUSSTP?: undefined;
474
+ LOCK_?: undefined;
475
+ NMZ?: undefined;
476
+ DRINKFOUNT?: undefined;
477
+ BENCHES?: undefined;
478
+ ATHLIGHT?: undefined;
479
+ LNDSCPBED?: undefined;
480
+ TOTIMPV?: undefined;
481
+ SIGNS?: undefined;
482
+ TURFONLY?: undefined;
483
+ FENCE?: undefined;
484
+ TOPO?: undefined;
485
+ COMMGAR?: undefined;
486
+ AREA_?: undefined;
487
+ ZONE_?: undefined;
488
+ PARKPARTN?: undefined;
489
+ RES_NUM?: undefined;
490
+ ADJ_SCHOOL_SITE?: undefined;
491
+ COMMENTS?: undefined;
492
+ DATE_ACQUIRED?: undefined;
493
+ CHECKED?: undefined;
494
+ AGENCY?: undefined;
495
+ CREATOR?: undefined;
496
+ EDITOR?: undefined;
497
+ PHONE?: undefined;
498
+ EMAIL?: undefined;
499
+ CONTACT?: undefined;
500
+ CONTACT2?: undefined;
501
+ WEB_URL?: undefined;
502
+ ORGANIZATION?: undefined;
503
+ PLOTS?: undefined;
504
+ ACRES?: undefined;
505
+ } | {
506
+ NAME: string;
507
+ ADDRESS: string;
508
+ USE_TYPE: string;
509
+ PROPID: string;
510
+ ACTIVE: string;
511
+ DIAMOND60: null;
512
+ DIAMOND90: null;
513
+ BBCOURT: null;
514
+ FBFIELD: null;
515
+ SOCCERJR: null;
516
+ SOCCERREG: null;
517
+ TENNISCT: null;
518
+ VOLLEYB: null;
519
+ SKATEPARK: null;
520
+ WOODLAND: null;
521
+ VSTRSHCAN: null;
522
+ DMPSTR: null;
523
+ PICNIC: null;
524
+ PLYGRD: null;
525
+ TOTLOT: null;
526
+ INSWIM: null;
527
+ OUTSWIM: null;
528
+ SPRAYPARK: null;
529
+ UTILBX: null;
530
+ TRAFPOLE: null;
531
+ UTILPOLE: null;
532
+ BUSSTP: null;
533
+ LOCK_: null;
534
+ NMZ: null;
535
+ DRINKFOUNT: null;
536
+ BENCHES: null;
537
+ ATHLIGHT: null;
538
+ LNDSCPBED: null;
539
+ TOTIMPV: null;
540
+ SIGNS: null;
541
+ TURFONLY: null;
542
+ FENCE: null;
543
+ TOPO: null;
544
+ COMMGAR: null;
545
+ WARD: string;
546
+ AREA_: null;
547
+ ZONE_: string;
548
+ PARKPARTN: null;
549
+ RES_NUM: string;
550
+ ADJ_SCHOOL_SITE: string;
551
+ SSL: string;
552
+ COMMENTS: string;
553
+ DATE_ACQUIRED: null;
554
+ SE_ANNO_CAD_DATA: null;
555
+ GLOBALID: string;
556
+ CREATED: null;
557
+ EDITED: null;
558
+ "SHAPE.AREA": number;
559
+ "SHAPE.LEN": number;
560
+ OBJECTID: number;
561
+ ALPHA_CODE?: undefined;
562
+ PARK_CODE?: undefined;
563
+ AQUIRED?: undefined;
564
+ TRANS_DC?: undefined;
565
+ SOURCE?: undefined;
566
+ RESERVE?: undefined;
567
+ LABEL?: undefined;
568
+ SQUARE?: undefined;
569
+ SUFFIX?: undefined;
570
+ LOT?: undefined;
571
+ PAR?: undefined;
572
+ GIS_ID?: undefined;
573
+ SIZE_?: undefined;
574
+ X_COORDINATE?: undefined;
575
+ Y_COORDINATE?: undefined;
576
+ LATITUDE?: undefined;
577
+ LONGITUDE?: undefined;
578
+ MAR_ID?: undefined;
579
+ CHECKED?: undefined;
580
+ AGENCY?: undefined;
581
+ CREATOR?: undefined;
582
+ EDITOR?: undefined;
583
+ PHONE?: undefined;
584
+ EMAIL?: undefined;
585
+ CONTACT?: undefined;
586
+ CONTACT2?: undefined;
587
+ WEB_URL?: undefined;
588
+ ORGANIZATION?: undefined;
589
+ PLOTS?: undefined;
590
+ ACRES?: undefined;
591
+ } | {
592
+ NAME: string;
593
+ ADDRESS: string;
594
+ USE_TYPE: string;
595
+ PROPID: string;
596
+ ACTIVE: string;
597
+ DIAMOND60: number;
598
+ DIAMOND90: number;
599
+ BBCOURT: number;
600
+ FBFIELD: number;
601
+ SOCCERJR: number;
602
+ SOCCERREG: number;
603
+ TENNISCT: number;
604
+ VOLLEYB: number;
605
+ SKATEPARK: string;
606
+ WOODLAND: string;
607
+ VSTRSHCAN: number;
608
+ DMPSTR: number;
609
+ PICNIC: number;
610
+ PLYGRD: number;
611
+ TOTLOT: number;
612
+ INSWIM: number;
613
+ OUTSWIM: number;
614
+ SPRAYPARK: string;
615
+ UTILBX: number;
616
+ TRAFPOLE: number;
617
+ UTILPOLE: number;
618
+ BUSSTP: string;
619
+ LOCK_: null;
620
+ NMZ: string;
621
+ DRINKFOUNT: number;
622
+ BENCHES: number;
623
+ ATHLIGHT: string;
624
+ LNDSCPBED: string;
625
+ TOTIMPV: string;
626
+ SIGNS: string;
627
+ TURFONLY: string;
628
+ FENCE: string;
629
+ TOPO: string;
630
+ COMMGAR: string;
631
+ WARD: string;
632
+ AREA_: null;
633
+ ZONE_: string;
634
+ PARKPARTN: string;
635
+ RES_NUM: string;
636
+ ADJ_SCHOOL_SITE: string;
637
+ SSL: string;
638
+ COMMENTS: null;
639
+ DATE_ACQUIRED: null;
640
+ SE_ANNO_CAD_DATA: null;
641
+ GLOBALID: string;
642
+ CREATED: null;
643
+ EDITED: number;
644
+ "SHAPE.AREA": number;
645
+ "SHAPE.LEN": number;
646
+ OBJECTID: number;
647
+ ALPHA_CODE?: undefined;
648
+ PARK_CODE?: undefined;
649
+ AQUIRED?: undefined;
650
+ TRANS_DC?: undefined;
651
+ SOURCE?: undefined;
652
+ RESERVE?: undefined;
653
+ LABEL?: undefined;
654
+ SQUARE?: undefined;
655
+ SUFFIX?: undefined;
656
+ LOT?: undefined;
657
+ PAR?: undefined;
658
+ GIS_ID?: undefined;
659
+ SIZE_?: undefined;
660
+ X_COORDINATE?: undefined;
661
+ Y_COORDINATE?: undefined;
662
+ LATITUDE?: undefined;
663
+ LONGITUDE?: undefined;
664
+ MAR_ID?: undefined;
665
+ CHECKED?: undefined;
666
+ AGENCY?: undefined;
667
+ CREATOR?: undefined;
668
+ EDITOR?: undefined;
669
+ PHONE?: undefined;
670
+ EMAIL?: undefined;
671
+ CONTACT?: undefined;
672
+ CONTACT2?: undefined;
673
+ WEB_URL?: undefined;
674
+ ORGANIZATION?: undefined;
675
+ PLOTS?: undefined;
676
+ ACRES?: undefined;
677
+ } | {
678
+ NAME: string;
679
+ ADDRESS: string;
680
+ USE_TYPE: string;
681
+ PROPID: string;
682
+ ACTIVE: string;
683
+ DIAMOND60: null;
684
+ DIAMOND90: number;
685
+ BBCOURT: number;
686
+ FBFIELD: number;
687
+ SOCCERJR: number;
688
+ SOCCERREG: number;
689
+ TENNISCT: number;
690
+ VOLLEYB: number;
691
+ SKATEPARK: string;
692
+ WOODLAND: string;
693
+ VSTRSHCAN: number;
694
+ DMPSTR: number;
695
+ PICNIC: number;
696
+ PLYGRD: number;
697
+ TOTLOT: number;
698
+ INSWIM: number;
699
+ OUTSWIM: number;
700
+ SPRAYPARK: string;
701
+ UTILBX: number;
702
+ TRAFPOLE: number;
703
+ UTILPOLE: number;
704
+ BUSSTP: string;
705
+ LOCK_: null;
706
+ NMZ: string;
707
+ DRINKFOUNT: number;
708
+ BENCHES: number;
709
+ ATHLIGHT: null;
710
+ LNDSCPBED: string;
711
+ TOTIMPV: string;
712
+ SIGNS: string;
713
+ TURFONLY: string;
714
+ FENCE: string;
715
+ TOPO: string;
716
+ COMMGAR: string;
717
+ WARD: string;
718
+ AREA_: null;
719
+ ZONE_: string;
720
+ PARKPARTN: string;
721
+ RES_NUM: string;
722
+ ADJ_SCHOOL_SITE: null;
723
+ SSL: string;
724
+ COMMENTS: null;
725
+ DATE_ACQUIRED: number;
726
+ SE_ANNO_CAD_DATA: null;
727
+ GLOBALID: string;
728
+ CREATED: null;
729
+ EDITED: null;
730
+ "SHAPE.AREA": number;
731
+ "SHAPE.LEN": number;
732
+ OBJECTID: number;
733
+ ALPHA_CODE?: undefined;
734
+ PARK_CODE?: undefined;
735
+ AQUIRED?: undefined;
736
+ TRANS_DC?: undefined;
737
+ SOURCE?: undefined;
738
+ RESERVE?: undefined;
739
+ LABEL?: undefined;
740
+ SQUARE?: undefined;
741
+ SUFFIX?: undefined;
742
+ LOT?: undefined;
743
+ PAR?: undefined;
744
+ GIS_ID?: undefined;
745
+ SIZE_?: undefined;
746
+ X_COORDINATE?: undefined;
747
+ Y_COORDINATE?: undefined;
748
+ LATITUDE?: undefined;
749
+ LONGITUDE?: undefined;
750
+ MAR_ID?: undefined;
751
+ CHECKED?: undefined;
752
+ AGENCY?: undefined;
753
+ CREATOR?: undefined;
754
+ EDITOR?: undefined;
755
+ PHONE?: undefined;
756
+ EMAIL?: undefined;
757
+ CONTACT?: undefined;
758
+ CONTACT2?: undefined;
759
+ WEB_URL?: undefined;
760
+ ORGANIZATION?: undefined;
761
+ PLOTS?: undefined;
762
+ ACRES?: undefined;
763
+ } | {
764
+ NAME: string;
765
+ ADDRESS: string;
766
+ USE_TYPE: string;
767
+ PROPID: string;
768
+ ACTIVE: string;
769
+ DIAMOND60: null;
770
+ DIAMOND90: null;
771
+ BBCOURT: null;
772
+ FBFIELD: null;
773
+ SOCCERJR: null;
774
+ SOCCERREG: null;
775
+ TENNISCT: null;
776
+ VOLLEYB: null;
777
+ SKATEPARK: null;
778
+ WOODLAND: null;
779
+ VSTRSHCAN: null;
780
+ DMPSTR: null;
781
+ PICNIC: null;
782
+ PLYGRD: number;
783
+ TOTLOT: null;
784
+ INSWIM: null;
785
+ OUTSWIM: null;
786
+ SPRAYPARK: null;
787
+ UTILBX: null;
788
+ TRAFPOLE: null;
789
+ UTILPOLE: null;
790
+ BUSSTP: null;
791
+ LOCK_: null;
792
+ NMZ: null;
793
+ DRINKFOUNT: null;
794
+ BENCHES: null;
795
+ ATHLIGHT: null;
796
+ LNDSCPBED: null;
797
+ TOTIMPV: null;
798
+ SIGNS: null;
799
+ TURFONLY: null;
800
+ FENCE: null;
801
+ TOPO: null;
802
+ COMMGAR: string;
803
+ WARD: string;
804
+ AREA_: null;
805
+ ZONE_: string;
806
+ PARKPARTN: null;
807
+ RES_NUM: string;
808
+ ADJ_SCHOOL_SITE: string;
809
+ SSL: string;
810
+ COMMENTS: null;
811
+ DATE_ACQUIRED: number;
812
+ SE_ANNO_CAD_DATA: null;
813
+ GLOBALID: string;
814
+ CREATED: null;
815
+ EDITED: null;
816
+ "SHAPE.AREA": number;
817
+ "SHAPE.LEN": number;
818
+ OBJECTID: number;
819
+ ALPHA_CODE?: undefined;
820
+ PARK_CODE?: undefined;
821
+ AQUIRED?: undefined;
822
+ TRANS_DC?: undefined;
823
+ SOURCE?: undefined;
824
+ RESERVE?: undefined;
825
+ LABEL?: undefined;
826
+ SQUARE?: undefined;
827
+ SUFFIX?: undefined;
828
+ LOT?: undefined;
829
+ PAR?: undefined;
830
+ GIS_ID?: undefined;
831
+ SIZE_?: undefined;
832
+ X_COORDINATE?: undefined;
833
+ Y_COORDINATE?: undefined;
834
+ LATITUDE?: undefined;
835
+ LONGITUDE?: undefined;
836
+ MAR_ID?: undefined;
837
+ CHECKED?: undefined;
838
+ AGENCY?: undefined;
839
+ CREATOR?: undefined;
840
+ EDITOR?: undefined;
841
+ PHONE?: undefined;
842
+ EMAIL?: undefined;
843
+ CONTACT?: undefined;
844
+ CONTACT2?: undefined;
845
+ WEB_URL?: undefined;
846
+ ORGANIZATION?: undefined;
847
+ PLOTS?: undefined;
848
+ ACRES?: undefined;
849
+ } | {
850
+ NAME: string;
851
+ ADDRESS: string;
852
+ USE_TYPE: null;
853
+ PROPID: string;
854
+ ACTIVE: null;
855
+ DIAMOND60: null;
856
+ DIAMOND90: null;
857
+ BBCOURT: null;
858
+ FBFIELD: null;
859
+ SOCCERJR: null;
860
+ SOCCERREG: null;
861
+ TENNISCT: null;
862
+ VOLLEYB: null;
863
+ SKATEPARK: null;
864
+ WOODLAND: null;
865
+ VSTRSHCAN: null;
866
+ DMPSTR: null;
867
+ PICNIC: null;
868
+ PLYGRD: null;
869
+ TOTLOT: null;
870
+ INSWIM: null;
871
+ OUTSWIM: null;
872
+ SPRAYPARK: null;
873
+ UTILBX: null;
874
+ TRAFPOLE: null;
875
+ UTILPOLE: null;
876
+ BUSSTP: null;
877
+ LOCK_: null;
878
+ NMZ: null;
879
+ DRINKFOUNT: null;
880
+ BENCHES: null;
881
+ ATHLIGHT: null;
882
+ LNDSCPBED: null;
883
+ TOTIMPV: null;
884
+ SIGNS: null;
885
+ TURFONLY: null;
886
+ FENCE: null;
887
+ TOPO: null;
888
+ COMMGAR: null;
889
+ WARD: string;
890
+ AREA_: null;
891
+ ZONE_: null;
892
+ PARKPARTN: null;
893
+ RES_NUM: string;
894
+ ADJ_SCHOOL_SITE: null;
895
+ SSL: string;
896
+ COMMENTS: string;
897
+ DATE_ACQUIRED: null;
898
+ SE_ANNO_CAD_DATA: null;
899
+ GLOBALID: string;
900
+ CREATED: null;
901
+ EDITED: null;
902
+ "SHAPE.AREA": number;
903
+ "SHAPE.LEN": number;
904
+ OBJECTID: number;
905
+ ALPHA_CODE?: undefined;
906
+ PARK_CODE?: undefined;
907
+ AQUIRED?: undefined;
908
+ TRANS_DC?: undefined;
909
+ SOURCE?: undefined;
910
+ RESERVE?: undefined;
911
+ LABEL?: undefined;
912
+ SQUARE?: undefined;
913
+ SUFFIX?: undefined;
914
+ LOT?: undefined;
915
+ PAR?: undefined;
916
+ GIS_ID?: undefined;
917
+ SIZE_?: undefined;
918
+ X_COORDINATE?: undefined;
919
+ Y_COORDINATE?: undefined;
920
+ LATITUDE?: undefined;
921
+ LONGITUDE?: undefined;
922
+ MAR_ID?: undefined;
923
+ CHECKED?: undefined;
924
+ AGENCY?: undefined;
925
+ CREATOR?: undefined;
926
+ EDITOR?: undefined;
927
+ PHONE?: undefined;
928
+ EMAIL?: undefined;
929
+ CONTACT?: undefined;
930
+ CONTACT2?: undefined;
931
+ WEB_URL?: undefined;
932
+ ORGANIZATION?: undefined;
933
+ PLOTS?: undefined;
934
+ ACRES?: undefined;
935
+ } | {
936
+ NAME: null;
937
+ ADDRESS: string;
938
+ USE_TYPE: string;
939
+ PROPID: string;
940
+ ACTIVE: string;
941
+ DIAMOND60: null;
942
+ DIAMOND90: null;
943
+ BBCOURT: null;
944
+ FBFIELD: null;
945
+ SOCCERJR: null;
946
+ SOCCERREG: null;
947
+ TENNISCT: null;
948
+ VOLLEYB: null;
949
+ SKATEPARK: null;
950
+ WOODLAND: null;
951
+ VSTRSHCAN: null;
952
+ DMPSTR: null;
953
+ PICNIC: null;
954
+ PLYGRD: null;
955
+ TOTLOT: null;
956
+ INSWIM: null;
957
+ OUTSWIM: null;
958
+ SPRAYPARK: null;
959
+ UTILBX: null;
960
+ TRAFPOLE: null;
961
+ UTILPOLE: null;
962
+ BUSSTP: null;
963
+ LOCK_: null;
964
+ NMZ: null;
965
+ DRINKFOUNT: null;
966
+ BENCHES: null;
967
+ ATHLIGHT: null;
968
+ LNDSCPBED: null;
969
+ TOTIMPV: null;
970
+ SIGNS: null;
971
+ TURFONLY: null;
972
+ FENCE: null;
973
+ TOPO: null;
974
+ COMMGAR: null;
975
+ WARD: string;
976
+ AREA_: null;
977
+ ZONE_: null;
978
+ PARKPARTN: null;
979
+ RES_NUM: string;
980
+ ADJ_SCHOOL_SITE: null;
981
+ SQUARE: null;
982
+ SUFFIX: null;
983
+ LOT: null;
984
+ SSL: string;
985
+ PAR: null;
986
+ CHECKED: string;
987
+ COMMENTS: string;
988
+ AGENCY: string;
989
+ GIS_ID: string;
990
+ OBJECTID: number;
991
+ "SHAPE.LEN": number;
992
+ "SHAPE.AREA": number;
993
+ SE_ANNO_CAD_DATA: null;
994
+ GLOBALID: string;
995
+ CREATOR: null;
996
+ CREATED: null;
997
+ EDITOR: null;
998
+ EDITED: null;
999
+ ALPHA_CODE?: undefined;
1000
+ PARK_CODE?: undefined;
1001
+ AQUIRED?: undefined;
1002
+ TRANS_DC?: undefined;
1003
+ SOURCE?: undefined;
1004
+ RESERVE?: undefined;
1005
+ LABEL?: undefined;
1006
+ SIZE_?: undefined;
1007
+ X_COORDINATE?: undefined;
1008
+ Y_COORDINATE?: undefined;
1009
+ LATITUDE?: undefined;
1010
+ LONGITUDE?: undefined;
1011
+ MAR_ID?: undefined;
1012
+ DATE_ACQUIRED?: undefined;
1013
+ PHONE?: undefined;
1014
+ EMAIL?: undefined;
1015
+ CONTACT?: undefined;
1016
+ CONTACT2?: undefined;
1017
+ WEB_URL?: undefined;
1018
+ ORGANIZATION?: undefined;
1019
+ PLOTS?: undefined;
1020
+ ACRES?: undefined;
1021
+ } | {
1022
+ NAME: string;
1023
+ ADDRESS: string;
1024
+ PHONE: null;
1025
+ EMAIL: null;
1026
+ CONTACT: null;
1027
+ CONTACT2: null;
1028
+ WEB_URL: string;
1029
+ COMMENTS: null;
1030
+ ORGANIZATION: string;
1031
+ PLOTS: number;
1032
+ ACRES: number;
1033
+ WARD: string;
1034
+ MAR_ID: number;
1035
+ GIS_ID: string;
1036
+ GLOBALID: string;
1037
+ CREATED: null;
1038
+ EDITED: number;
1039
+ OBJECTID: number;
1040
+ "SHAPE.AREA": number;
1041
+ "SHAPE.LEN": number;
1042
+ ALPHA_CODE?: undefined;
1043
+ PARK_CODE?: undefined;
1044
+ AQUIRED?: undefined;
1045
+ TRANS_DC?: undefined;
1046
+ SOURCE?: undefined;
1047
+ RESERVE?: undefined;
1048
+ LABEL?: undefined;
1049
+ SQUARE?: undefined;
1050
+ SUFFIX?: undefined;
1051
+ LOT?: undefined;
1052
+ SSL?: undefined;
1053
+ PAR?: undefined;
1054
+ SIZE_?: undefined;
1055
+ X_COORDINATE?: undefined;
1056
+ Y_COORDINATE?: undefined;
1057
+ LATITUDE?: undefined;
1058
+ LONGITUDE?: undefined;
1059
+ SE_ANNO_CAD_DATA?: undefined;
1060
+ USE_TYPE?: undefined;
1061
+ PROPID?: undefined;
1062
+ ACTIVE?: undefined;
1063
+ DIAMOND60?: undefined;
1064
+ DIAMOND90?: undefined;
1065
+ BBCOURT?: undefined;
1066
+ FBFIELD?: undefined;
1067
+ SOCCERJR?: undefined;
1068
+ SOCCERREG?: undefined;
1069
+ TENNISCT?: undefined;
1070
+ VOLLEYB?: undefined;
1071
+ SKATEPARK?: undefined;
1072
+ WOODLAND?: undefined;
1073
+ VSTRSHCAN?: undefined;
1074
+ DMPSTR?: undefined;
1075
+ PICNIC?: undefined;
1076
+ PLYGRD?: undefined;
1077
+ TOTLOT?: undefined;
1078
+ INSWIM?: undefined;
1079
+ OUTSWIM?: undefined;
1080
+ SPRAYPARK?: undefined;
1081
+ UTILBX?: undefined;
1082
+ TRAFPOLE?: undefined;
1083
+ UTILPOLE?: undefined;
1084
+ BUSSTP?: undefined;
1085
+ LOCK_?: undefined;
1086
+ NMZ?: undefined;
1087
+ DRINKFOUNT?: undefined;
1088
+ BENCHES?: undefined;
1089
+ ATHLIGHT?: undefined;
1090
+ LNDSCPBED?: undefined;
1091
+ TOTIMPV?: undefined;
1092
+ SIGNS?: undefined;
1093
+ TURFONLY?: undefined;
1094
+ FENCE?: undefined;
1095
+ TOPO?: undefined;
1096
+ COMMGAR?: undefined;
1097
+ AREA_?: undefined;
1098
+ ZONE_?: undefined;
1099
+ PARKPARTN?: undefined;
1100
+ RES_NUM?: undefined;
1101
+ ADJ_SCHOOL_SITE?: undefined;
1102
+ DATE_ACQUIRED?: undefined;
1103
+ CHECKED?: undefined;
1104
+ AGENCY?: undefined;
1105
+ CREATOR?: undefined;
1106
+ EDITOR?: undefined;
1107
+ } | {
1108
+ NAME: string;
1109
+ ADDRESS: string;
1110
+ PHONE: null;
1111
+ EMAIL: null;
1112
+ CONTACT: null;
1113
+ CONTACT2: null;
1114
+ WEB_URL: null;
1115
+ COMMENTS: null;
1116
+ ORGANIZATION: string;
1117
+ PLOTS: null;
1118
+ ACRES: number;
1119
+ WARD: string;
1120
+ MAR_ID: number;
1121
+ GIS_ID: string;
1122
+ GLOBALID: string;
1123
+ CREATED: null;
1124
+ EDITED: number;
1125
+ OBJECTID: number;
1126
+ "SHAPE.AREA": number;
1127
+ "SHAPE.LEN": number;
1128
+ ALPHA_CODE?: undefined;
1129
+ PARK_CODE?: undefined;
1130
+ AQUIRED?: undefined;
1131
+ TRANS_DC?: undefined;
1132
+ SOURCE?: undefined;
1133
+ RESERVE?: undefined;
1134
+ LABEL?: undefined;
1135
+ SQUARE?: undefined;
1136
+ SUFFIX?: undefined;
1137
+ LOT?: undefined;
1138
+ SSL?: undefined;
1139
+ PAR?: undefined;
1140
+ SIZE_?: undefined;
1141
+ X_COORDINATE?: undefined;
1142
+ Y_COORDINATE?: undefined;
1143
+ LATITUDE?: undefined;
1144
+ LONGITUDE?: undefined;
1145
+ SE_ANNO_CAD_DATA?: undefined;
1146
+ USE_TYPE?: undefined;
1147
+ PROPID?: undefined;
1148
+ ACTIVE?: undefined;
1149
+ DIAMOND60?: undefined;
1150
+ DIAMOND90?: undefined;
1151
+ BBCOURT?: undefined;
1152
+ FBFIELD?: undefined;
1153
+ SOCCERJR?: undefined;
1154
+ SOCCERREG?: undefined;
1155
+ TENNISCT?: undefined;
1156
+ VOLLEYB?: undefined;
1157
+ SKATEPARK?: undefined;
1158
+ WOODLAND?: undefined;
1159
+ VSTRSHCAN?: undefined;
1160
+ DMPSTR?: undefined;
1161
+ PICNIC?: undefined;
1162
+ PLYGRD?: undefined;
1163
+ TOTLOT?: undefined;
1164
+ INSWIM?: undefined;
1165
+ OUTSWIM?: undefined;
1166
+ SPRAYPARK?: undefined;
1167
+ UTILBX?: undefined;
1168
+ TRAFPOLE?: undefined;
1169
+ UTILPOLE?: undefined;
1170
+ BUSSTP?: undefined;
1171
+ LOCK_?: undefined;
1172
+ NMZ?: undefined;
1173
+ DRINKFOUNT?: undefined;
1174
+ BENCHES?: undefined;
1175
+ ATHLIGHT?: undefined;
1176
+ LNDSCPBED?: undefined;
1177
+ TOTIMPV?: undefined;
1178
+ SIGNS?: undefined;
1179
+ TURFONLY?: undefined;
1180
+ FENCE?: undefined;
1181
+ TOPO?: undefined;
1182
+ COMMGAR?: undefined;
1183
+ AREA_?: undefined;
1184
+ ZONE_?: undefined;
1185
+ PARKPARTN?: undefined;
1186
+ RES_NUM?: undefined;
1187
+ ADJ_SCHOOL_SITE?: undefined;
1188
+ DATE_ACQUIRED?: undefined;
1189
+ CHECKED?: undefined;
1190
+ AGENCY?: undefined;
1191
+ CREATOR?: undefined;
1192
+ EDITOR?: undefined;
1193
+ } | {
1194
+ NAME: string;
1195
+ ADDRESS: string;
1196
+ PHONE: null;
1197
+ EMAIL: string;
1198
+ CONTACT: string;
1199
+ CONTACT2: string;
1200
+ WEB_URL: string;
1201
+ COMMENTS: string;
1202
+ ORGANIZATION: string;
1203
+ PLOTS: number;
1204
+ ACRES: number;
1205
+ WARD: string;
1206
+ MAR_ID: number;
1207
+ GIS_ID: string;
1208
+ GLOBALID: string;
1209
+ CREATED: null;
1210
+ EDITED: number;
1211
+ OBJECTID: number;
1212
+ "SHAPE.AREA": number;
1213
+ "SHAPE.LEN": number;
1214
+ ALPHA_CODE?: undefined;
1215
+ PARK_CODE?: undefined;
1216
+ AQUIRED?: undefined;
1217
+ TRANS_DC?: undefined;
1218
+ SOURCE?: undefined;
1219
+ RESERVE?: undefined;
1220
+ LABEL?: undefined;
1221
+ SQUARE?: undefined;
1222
+ SUFFIX?: undefined;
1223
+ LOT?: undefined;
1224
+ SSL?: undefined;
1225
+ PAR?: undefined;
1226
+ SIZE_?: undefined;
1227
+ X_COORDINATE?: undefined;
1228
+ Y_COORDINATE?: undefined;
1229
+ LATITUDE?: undefined;
1230
+ LONGITUDE?: undefined;
1231
+ SE_ANNO_CAD_DATA?: undefined;
1232
+ USE_TYPE?: undefined;
1233
+ PROPID?: undefined;
1234
+ ACTIVE?: undefined;
1235
+ DIAMOND60?: undefined;
1236
+ DIAMOND90?: undefined;
1237
+ BBCOURT?: undefined;
1238
+ FBFIELD?: undefined;
1239
+ SOCCERJR?: undefined;
1240
+ SOCCERREG?: undefined;
1241
+ TENNISCT?: undefined;
1242
+ VOLLEYB?: undefined;
1243
+ SKATEPARK?: undefined;
1244
+ WOODLAND?: undefined;
1245
+ VSTRSHCAN?: undefined;
1246
+ DMPSTR?: undefined;
1247
+ PICNIC?: undefined;
1248
+ PLYGRD?: undefined;
1249
+ TOTLOT?: undefined;
1250
+ INSWIM?: undefined;
1251
+ OUTSWIM?: undefined;
1252
+ SPRAYPARK?: undefined;
1253
+ UTILBX?: undefined;
1254
+ TRAFPOLE?: undefined;
1255
+ UTILPOLE?: undefined;
1256
+ BUSSTP?: undefined;
1257
+ LOCK_?: undefined;
1258
+ NMZ?: undefined;
1259
+ DRINKFOUNT?: undefined;
1260
+ BENCHES?: undefined;
1261
+ ATHLIGHT?: undefined;
1262
+ LNDSCPBED?: undefined;
1263
+ TOTIMPV?: undefined;
1264
+ SIGNS?: undefined;
1265
+ TURFONLY?: undefined;
1266
+ FENCE?: undefined;
1267
+ TOPO?: undefined;
1268
+ COMMGAR?: undefined;
1269
+ AREA_?: undefined;
1270
+ ZONE_?: undefined;
1271
+ PARKPARTN?: undefined;
1272
+ RES_NUM?: undefined;
1273
+ ADJ_SCHOOL_SITE?: undefined;
1274
+ DATE_ACQUIRED?: undefined;
1275
+ CHECKED?: undefined;
1276
+ AGENCY?: undefined;
1277
+ CREATOR?: undefined;
1278
+ EDITOR?: undefined;
1279
+ })[];
1280
+ coordinates: number[];
1281
+ datasets: {
1282
+ title: string;
1283
+ description: string;
1284
+ id: string;
1285
+ url: string;
1286
+ item_id: string;
1287
+ }[];
1288
+ tool?: undefined;
1289
+ tool_input?: undefined;
1290
+ log?: undefined;
1291
+ type?: undefined;
1292
+ message_log?: undefined;
1293
+ tool_call_id?: undefined;
1294
+ })[] | ({
1295
+ tool: string;
1296
+ tool_input: {
1297
+ text: string;
1298
+ actions: {
1299
+ action: string;
1300
+ properties: {
1301
+ datasets: string[];
1302
+ location: string;
1303
+ longitude: number;
1304
+ latitude: number;
1305
+ zoom: number;
1306
+ };
1307
+ }[];
1308
+ sources: {
1309
+ id: string;
1310
+ type: string;
1311
+ title: string;
1312
+ description: string;
1313
+ source: string;
1314
+ }[];
1315
+ location: {
1316
+ name: string;
1317
+ latitude: number;
1318
+ longitude: number;
1319
+ zoom: number;
1320
+ };
1321
+ };
1322
+ log: string;
1323
+ type: string;
1324
+ message_log: {
1325
+ content: string;
1326
+ additional_kwargs: {
1327
+ tool_calls: {
1328
+ index: number;
1329
+ id: string;
1330
+ function: {
1331
+ arguments: string;
1332
+ name: string;
1333
+ };
1334
+ type: string;
1335
+ }[];
1336
+ };
1337
+ response_metadata: {
1338
+ finish_reason: string;
1339
+ model_name: string;
1340
+ system_fingerprint: string;
1341
+ };
1342
+ type: string;
1343
+ name: null;
1344
+ id: string;
1345
+ }[];
1346
+ tool_call_id: string;
1347
+ text?: undefined;
1348
+ actions?: undefined;
1349
+ sources?: undefined;
1350
+ location?: undefined;
1351
+ } | {
1352
+ text: string;
1353
+ actions: {
1354
+ action: string;
1355
+ text: null;
1356
+ properties: {
1357
+ topic: null;
1358
+ datasets: string[];
1359
+ latitude: number;
1360
+ longitude: number;
1361
+ zoom: number;
1362
+ location: string;
1363
+ };
1364
+ }[];
1365
+ sources: {
1366
+ id: string;
1367
+ type: string;
1368
+ title: string;
1369
+ description: string;
1370
+ source: string;
1371
+ }[];
1372
+ location: {
1373
+ name: string;
1374
+ latitude: number;
1375
+ longitude: number;
1376
+ zoom: number;
1377
+ };
1378
+ tool?: undefined;
1379
+ tool_input?: undefined;
1380
+ log?: undefined;
1381
+ type?: undefined;
1382
+ message_log?: undefined;
1383
+ tool_call_id?: undefined;
1384
+ })[])[];
1385
+ };
1386
+ };
1387
+ };