@vertigis/viewer-spec 58.8.0 → 58.9.0

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.
@@ -430,7 +430,7 @@ export declare class UIOperations extends OperationRegistry {
430
430
  *
431
431
  * @webOnly
432
432
  */
433
- get getComponentIds(): Operation<ItemRef, string>;
433
+ get getComponentIds(): Operation<ItemRef, string[]>;
434
434
  /**
435
435
  * Gets the current locale code for the application. (example: "en", "fr" or
436
436
  * "de-AT"). Web only.
@@ -561,7 +561,7 @@
561
561
  "type": "string"
562
562
  },
563
563
  "dateFormat": {
564
- "description": "The default format for date values. Either a {@link utilities /date!DateFormat} constant, or a custom date format string.",
564
+ "description": "The default format for date values. Either a {@link utilities /format/formats!DateFormat} constant, or a custom date format string.",
565
565
  "type": "string"
566
566
  },
567
567
  "fractionalDigits": {
@@ -573,7 +573,11 @@
573
573
  "type": "string"
574
574
  },
575
575
  "numberFormat": {
576
- "description": "The default format for number values. Either a {@link utilities /number!NumberFormat} constant, or a custom number format string.",
576
+ "description": "The default format for number values. Either a {@link utilities /format/formats!NumberFormat} constant, or a custom number format string.",
577
+ "type": "string"
578
+ },
579
+ "timeFormat": {
580
+ "description": "The default format for time values. Either a {@link utilities /format/formats!DateFormat} constant, or a custom time format string.",
577
581
  "type": "string"
578
582
  },
579
583
  "timeZone": {
@@ -3394,11 +3398,11 @@
3394
3398
  "type": "array"
3395
3399
  },
3396
3400
  "currency": {
3397
- "description": "The default unit of currency to use when formatting currency. See {@link utilities /number!NumberSettings.currency}.",
3401
+ "description": "The default unit of currency to use when formatting currency. See {@link utilities /format/number!NumberSettings.currency}.",
3398
3402
  "type": "string"
3399
3403
  },
3400
3404
  "dateFormat": {
3401
- "description": "The default format to use when formatting dates. See {@link utilities /date!DateFormatter.format}.",
3405
+ "description": "The default format to use when formatting dates. See {@link utilities /format/date!DateFormatter.format}.",
3402
3406
  "type": "string"
3403
3407
  },
3404
3408
  "defaultValue": {
@@ -3406,7 +3410,7 @@
3406
3410
  "type": "string"
3407
3411
  },
3408
3412
  "fractionalDigits": {
3409
- "description": "The default number of digits to show after the decimal point when formatting numbers. See {@link utilities /number!NumberSettings.fractionalDigits}.",
3413
+ "description": "The default number of digits to show after the decimal point when formatting numbers. See {@link utilities /format/number!NumberSettings.fractionalDigits}.",
3410
3414
  "type": "number"
3411
3415
  },
3412
3416
  "locale": {
@@ -3414,15 +3418,19 @@
3414
3418
  "type": "string"
3415
3419
  },
3416
3420
  "numberFormat": {
3417
- "description": "The default format to use when formatting numbers. See {@link utilities /number!NumberFormatter.format}.",
3421
+ "description": "The default format to use when formatting numbers. See {@link utilities /format/number!NumberFormatter.format}.",
3418
3422
  "type": "string"
3419
3423
  },
3420
3424
  "text": {
3421
3425
  "description": "The string to translate. If the text is a language resource key, then a localized version of that resource will be used if one exists, otherwise the original text is returned.",
3422
3426
  "type": "string"
3423
3427
  },
3428
+ "timeFormat": {
3429
+ "description": "The default format to use when formatting times. See {@link utilities /format/time!TimeFormatter.format}.",
3430
+ "type": "string"
3431
+ },
3424
3432
  "timeZone": {
3425
- "description": "The time zone of a date being formatted.",
3433
+ "description": "The time zone of a date being formatted. See {@link utilities /format/date!DateFormatter.timeZone}.",
3426
3434
  "type": "string"
3427
3435
  }
3428
3436
  },
@@ -3522,6 +3530,10 @@
3522
3530
  "description": "Optionally the primary key field.",
3523
3531
  "type": "string"
3524
3532
  },
3533
+ "timeFormat": {
3534
+ "description": "The format for time-only fields. The default is TimeFormat.ROUND_TRIP. This can be a defined TimeFormat string, or a custom format string.",
3535
+ "type": "string"
3536
+ },
3525
3537
  "title": {
3526
3538
  "description": "A title for this dataset.",
3527
3539
  "type": "string"
@@ -5418,8 +5430,10 @@
5418
5430
  "esri.rest-api.FieldJson.FieldJsonType": {
5419
5431
  "description": "The type of the Field.",
5420
5432
  "enum": [
5433
+ "esriFieldTypeBigInteger",
5421
5434
  "esriFieldTypeBlob",
5422
5435
  "esriFieldTypeDate",
5436
+ "esriFieldTypeDateOnly",
5423
5437
  "esriFieldTypeDouble",
5424
5438
  "esriFieldTypeGUID",
5425
5439
  "esriFieldTypeGeometry",
@@ -5430,6 +5444,8 @@
5430
5444
  "esriFieldTypeSingle",
5431
5445
  "esriFieldTypeSmallInteger",
5432
5446
  "esriFieldTypeString",
5447
+ "esriFieldTypeTimeOnly",
5448
+ "esriFieldTypeTimestampOffset",
5433
5449
  "esriFieldTypeXML"
5434
5450
  ],
5435
5451
  "type": "string"
@@ -8653,8 +8669,20 @@
8653
8669
  "description": "Possible date formats for {@link FormatJson.dateFormat}.",
8654
8670
  "enum": [
8655
8671
  "dayShortMonthYear",
8672
+ "dayShortMonthYearLongTime",
8673
+ "dayShortMonthYearLongTime24",
8674
+ "dayShortMonthYearShortTime",
8675
+ "dayShortMonthYearShortTime24",
8656
8676
  "longDate",
8677
+ "longDateLongTime",
8678
+ "longDateLongTime24",
8679
+ "longDateShortTime",
8680
+ "longDateShortTime24",
8657
8681
  "longMonthDayYear",
8682
+ "longMonthDayYearLongTime",
8683
+ "longMonthDayYearLongTime24",
8684
+ "longMonthDayYearShortTime",
8685
+ "longMonthDayYearShortTime24",
8658
8686
  "longMonthYear",
8659
8687
  "shortDate",
8660
8688
  "shortDateLE",
@@ -1905,8 +1905,10 @@
1905
1905
  "esri.rest-api.FieldJson.FieldJsonType": {
1906
1906
  "description": "The type of the Field.",
1907
1907
  "enum": [
1908
+ "esriFieldTypeBigInteger",
1908
1909
  "esriFieldTypeBlob",
1909
1910
  "esriFieldTypeDate",
1911
+ "esriFieldTypeDateOnly",
1910
1912
  "esriFieldTypeDouble",
1911
1913
  "esriFieldTypeGUID",
1912
1914
  "esriFieldTypeGeometry",
@@ -1917,6 +1919,8 @@
1917
1919
  "esriFieldTypeSingle",
1918
1920
  "esriFieldTypeSmallInteger",
1919
1921
  "esriFieldTypeString",
1922
+ "esriFieldTypeTimeOnly",
1923
+ "esriFieldTypeTimestampOffset",
1920
1924
  "esriFieldTypeXML"
1921
1925
  ],
1922
1926
  "type": "string"
@@ -4915,8 +4919,20 @@
4915
4919
  "description": "Possible date formats for {@link FormatJson.dateFormat}.",
4916
4920
  "enum": [
4917
4921
  "dayShortMonthYear",
4922
+ "dayShortMonthYearLongTime",
4923
+ "dayShortMonthYearLongTime24",
4924
+ "dayShortMonthYearShortTime",
4925
+ "dayShortMonthYearShortTime24",
4918
4926
  "longDate",
4927
+ "longDateLongTime",
4928
+ "longDateLongTime24",
4929
+ "longDateShortTime",
4930
+ "longDateShortTime24",
4919
4931
  "longMonthDayYear",
4932
+ "longMonthDayYearLongTime",
4933
+ "longMonthDayYearLongTime24",
4934
+ "longMonthDayYearShortTime",
4935
+ "longMonthDayYearShortTime24",
4920
4936
  "longMonthYear",
4921
4937
  "shortDate",
4922
4938
  "shortDateLE",
@@ -545,7 +545,7 @@
545
545
  "type": "string"
546
546
  },
547
547
  "dateFormat": {
548
- "description": "The default format for date values. Either a {@link utilities /date!DateFormat} constant, or a custom date format string.",
548
+ "description": "The default format for date values. Either a {@link utilities /format/formats!DateFormat} constant, or a custom date format string.",
549
549
  "type": "string"
550
550
  },
551
551
  "fractionalDigits": {
@@ -557,7 +557,11 @@
557
557
  "type": "string"
558
558
  },
559
559
  "numberFormat": {
560
- "description": "The default format for number values. Either a {@link utilities /number!NumberFormat} constant, or a custom number format string.",
560
+ "description": "The default format for number values. Either a {@link utilities /format/formats!NumberFormat} constant, or a custom number format string.",
561
+ "type": "string"
562
+ },
563
+ "timeFormat": {
564
+ "description": "The default format for time values. Either a {@link utilities /format/formats!DateFormat} constant, or a custom time format string.",
561
565
  "type": "string"
562
566
  },
563
567
  "timeZone": {
@@ -4416,11 +4420,11 @@
4416
4420
  "type": "array"
4417
4421
  },
4418
4422
  "currency": {
4419
- "description": "The default unit of currency to use when formatting currency. See {@link utilities /number!NumberSettings.currency}.",
4423
+ "description": "The default unit of currency to use when formatting currency. See {@link utilities /format/number!NumberSettings.currency}.",
4420
4424
  "type": "string"
4421
4425
  },
4422
4426
  "dateFormat": {
4423
- "description": "The default format to use when formatting dates. See {@link utilities /date!DateFormatter.format}.",
4427
+ "description": "The default format to use when formatting dates. See {@link utilities /format/date!DateFormatter.format}.",
4424
4428
  "type": "string"
4425
4429
  },
4426
4430
  "defaultValue": {
@@ -4428,7 +4432,7 @@
4428
4432
  "type": "string"
4429
4433
  },
4430
4434
  "fractionalDigits": {
4431
- "description": "The default number of digits to show after the decimal point when formatting numbers. See {@link utilities /number!NumberSettings.fractionalDigits}.",
4435
+ "description": "The default number of digits to show after the decimal point when formatting numbers. See {@link utilities /format/number!NumberSettings.fractionalDigits}.",
4432
4436
  "type": "number"
4433
4437
  },
4434
4438
  "locale": {
@@ -4436,15 +4440,19 @@
4436
4440
  "type": "string"
4437
4441
  },
4438
4442
  "numberFormat": {
4439
- "description": "The default format to use when formatting numbers. See {@link utilities /number!NumberFormatter.format}.",
4443
+ "description": "The default format to use when formatting numbers. See {@link utilities /format/number!NumberFormatter.format}.",
4440
4444
  "type": "string"
4441
4445
  },
4442
4446
  "text": {
4443
4447
  "description": "The string to translate. If the text is a language resource key, then a localized version of that resource will be used if one exists, otherwise the original text is returned.",
4444
4448
  "type": "string"
4445
4449
  },
4450
+ "timeFormat": {
4451
+ "description": "The default format to use when formatting times. See {@link utilities /format/time!TimeFormatter.format}.",
4452
+ "type": "string"
4453
+ },
4446
4454
  "timeZone": {
4447
- "description": "The time zone of a date being formatted.",
4455
+ "description": "The time zone of a date being formatted. See {@link utilities /format/date!DateFormatter.timeZone}.",
4448
4456
  "type": "string"
4449
4457
  }
4450
4458
  },
@@ -4544,6 +4552,10 @@
4544
4552
  "description": "Optionally the primary key field.",
4545
4553
  "type": "string"
4546
4554
  },
4555
+ "timeFormat": {
4556
+ "description": "The format for time-only fields. The default is TimeFormat.ROUND_TRIP. This can be a defined TimeFormat string, or a custom format string.",
4557
+ "type": "string"
4558
+ },
4547
4559
  "title": {
4548
4560
  "description": "A title for this dataset.",
4549
4561
  "type": "string"
@@ -6551,8 +6563,10 @@
6551
6563
  "esri.rest-api.FieldJson.FieldJsonType": {
6552
6564
  "description": "The type of the Field.",
6553
6565
  "enum": [
6566
+ "esriFieldTypeBigInteger",
6554
6567
  "esriFieldTypeBlob",
6555
6568
  "esriFieldTypeDate",
6569
+ "esriFieldTypeDateOnly",
6556
6570
  "esriFieldTypeDouble",
6557
6571
  "esriFieldTypeGUID",
6558
6572
  "esriFieldTypeGeometry",
@@ -6563,6 +6577,8 @@
6563
6577
  "esriFieldTypeSingle",
6564
6578
  "esriFieldTypeSmallInteger",
6565
6579
  "esriFieldTypeString",
6580
+ "esriFieldTypeTimeOnly",
6581
+ "esriFieldTypeTimestampOffset",
6566
6582
  "esriFieldTypeXML"
6567
6583
  ],
6568
6584
  "type": "string"
@@ -9786,8 +9802,20 @@
9786
9802
  "description": "Possible date formats for {@link FormatJson.dateFormat}.",
9787
9803
  "enum": [
9788
9804
  "dayShortMonthYear",
9805
+ "dayShortMonthYearLongTime",
9806
+ "dayShortMonthYearLongTime24",
9807
+ "dayShortMonthYearShortTime",
9808
+ "dayShortMonthYearShortTime24",
9789
9809
  "longDate",
9810
+ "longDateLongTime",
9811
+ "longDateLongTime24",
9812
+ "longDateShortTime",
9813
+ "longDateShortTime24",
9790
9814
  "longMonthDayYear",
9815
+ "longMonthDayYearLongTime",
9816
+ "longMonthDayYearLongTime24",
9817
+ "longMonthDayYearShortTime",
9818
+ "longMonthDayYearShortTime24",
9791
9819
  "longMonthYear",
9792
9820
  "shortDate",
9793
9821
  "shortDateLE",
@@ -459,7 +459,7 @@
459
459
  "type": "string"
460
460
  },
461
461
  "dateFormat": {
462
- "description": "The default format for date values. Either a {@link utilities /date!DateFormat} constant, or a custom date format string.",
462
+ "description": "The default format for date values. Either a {@link utilities /format/formats!DateFormat} constant, or a custom date format string.",
463
463
  "type": "string"
464
464
  },
465
465
  "fractionalDigits": {
@@ -471,7 +471,11 @@
471
471
  "type": "string"
472
472
  },
473
473
  "numberFormat": {
474
- "description": "The default format for number values. Either a {@link utilities /number!NumberFormat} constant, or a custom number format string.",
474
+ "description": "The default format for number values. Either a {@link utilities /format/formats!NumberFormat} constant, or a custom number format string.",
475
+ "type": "string"
476
+ },
477
+ "timeFormat": {
478
+ "description": "The default format for time values. Either a {@link utilities /format/formats!DateFormat} constant, or a custom time format string.",
475
479
  "type": "string"
476
480
  },
477
481
  "timeZone": {
@@ -3462,8 +3466,10 @@
3462
3466
  "esri.rest-api.FieldJson.FieldJsonType": {
3463
3467
  "description": "The type of the Field.",
3464
3468
  "enum": [
3469
+ "esriFieldTypeBigInteger",
3465
3470
  "esriFieldTypeBlob",
3466
3471
  "esriFieldTypeDate",
3472
+ "esriFieldTypeDateOnly",
3467
3473
  "esriFieldTypeDouble",
3468
3474
  "esriFieldTypeGUID",
3469
3475
  "esriFieldTypeGeometry",
@@ -3474,6 +3480,8 @@
3474
3480
  "esriFieldTypeSingle",
3475
3481
  "esriFieldTypeSmallInteger",
3476
3482
  "esriFieldTypeString",
3483
+ "esriFieldTypeTimeOnly",
3484
+ "esriFieldTypeTimestampOffset",
3477
3485
  "esriFieldTypeXML"
3478
3486
  ],
3479
3487
  "type": "string"
@@ -6472,8 +6480,20 @@
6472
6480
  "description": "Possible date formats for {@link FormatJson.dateFormat}.",
6473
6481
  "enum": [
6474
6482
  "dayShortMonthYear",
6483
+ "dayShortMonthYearLongTime",
6484
+ "dayShortMonthYearLongTime24",
6485
+ "dayShortMonthYearShortTime",
6486
+ "dayShortMonthYearShortTime24",
6475
6487
  "longDate",
6488
+ "longDateLongTime",
6489
+ "longDateLongTime24",
6490
+ "longDateShortTime",
6491
+ "longDateShortTime24",
6476
6492
  "longMonthDayYear",
6493
+ "longMonthDayYearLongTime",
6494
+ "longMonthDayYearLongTime24",
6495
+ "longMonthDayYearShortTime",
6496
+ "longMonthDayYearShortTime24",
6477
6497
  "longMonthYear",
6478
6498
  "shortDate",
6479
6499
  "shortDateLE",
@@ -640,7 +640,7 @@
640
640
  "type": "string"
641
641
  },
642
642
  "dateFormat": {
643
- "description": "The default format for date values. Either a {@link utilities /date!DateFormat} constant, or a custom date format string.",
643
+ "description": "The default format for date values. Either a {@link utilities /format/formats!DateFormat} constant, or a custom date format string.",
644
644
  "type": "string"
645
645
  },
646
646
  "fractionalDigits": {
@@ -652,7 +652,11 @@
652
652
  "type": "string"
653
653
  },
654
654
  "numberFormat": {
655
- "description": "The default format for number values. Either a {@link utilities /number!NumberFormat} constant, or a custom number format string.",
655
+ "description": "The default format for number values. Either a {@link utilities /format/formats!NumberFormat} constant, or a custom number format string.",
656
+ "type": "string"
657
+ },
658
+ "timeFormat": {
659
+ "description": "The default format for time values. Either a {@link utilities /format/formats!DateFormat} constant, or a custom time format string.",
656
660
  "type": "string"
657
661
  },
658
662
  "timeZone": {
@@ -3504,6 +3508,10 @@
3504
3508
  "description": "The delimiter between rows. The default is the platform-specific line ending (e.g. \"\\r\\n\" on Windows, \"\\n\" on Unix or MacOS).",
3505
3509
  "type": "string"
3506
3510
  },
3511
+ "timeFormat": {
3512
+ "description": "The format for time-only fields. The default is TimeFormat.ROUND_TRIP. This can be a defined TimeFormat string, or a custom format string.",
3513
+ "type": "string"
3514
+ },
3507
3515
  "useFormattedValues": {
3508
3516
  "description": "If true, the configured formatters will be run on the raw values in the supplied data and these values will be output with type information if possible. If false, the formatted or presentable values already present in the supplied data will be taken 'as-is'. Field types configured on the input will be ignored and all values will be output as strings.",
3509
3517
  "type": "boolean"
@@ -3625,6 +3633,10 @@
3625
3633
  "description": "Optionally the primary key field, used for converting from Shapefile to features.",
3626
3634
  "type": "string"
3627
3635
  },
3636
+ "timeFormat": {
3637
+ "description": "The format for time-only fields. The default is TimeFormat.ROUND_TRIP. This can be a defined TimeFormat string, or a custom format string.",
3638
+ "type": "string"
3639
+ },
3628
3640
  "useFormattedValues": {
3629
3641
  "description": "If true, the configured formatters will be run on the raw values in the supplied data and these values will be output with type information if possible. If false, the formatted or presentable values already present in the supplied data will be taken 'as-is'. Field types configured on the input will be ignored and all values will be output as strings.",
3630
3642
  "type": "boolean"
@@ -3701,6 +3713,10 @@
3701
3713
  "description": "When exporting to XLSX, the name of the resulting work sheet. The default is \"sheet1\".",
3702
3714
  "type": "string"
3703
3715
  },
3716
+ "timeFormat": {
3717
+ "description": "The format for time-only fields. The default is TimeFormat.ROUND_TRIP. This can be a defined TimeFormat string, or a custom format string.",
3718
+ "type": "string"
3719
+ },
3704
3720
  "useFormattedValues": {
3705
3721
  "description": "If true, the configured formatters will be run on the raw values in the supplied data and these values will be output with type information if possible. If false, the formatted or presentable values already present in the supplied data will be taken 'as-is'. Field types configured on the input will be ignored and all values will be output as strings.",
3706
3722
  "type": "boolean"
@@ -5217,11 +5233,11 @@
5217
5233
  "type": "array"
5218
5234
  },
5219
5235
  "currency": {
5220
- "description": "The default unit of currency to use when formatting currency. See {@link utilities /number!NumberSettings.currency}.",
5236
+ "description": "The default unit of currency to use when formatting currency. See {@link utilities /format/number!NumberSettings.currency}.",
5221
5237
  "type": "string"
5222
5238
  },
5223
5239
  "dateFormat": {
5224
- "description": "The default format to use when formatting dates. See {@link utilities /date!DateFormatter.format}.",
5240
+ "description": "The default format to use when formatting dates. See {@link utilities /format/date!DateFormatter.format}.",
5225
5241
  "type": "string"
5226
5242
  },
5227
5243
  "defaultValue": {
@@ -5229,7 +5245,7 @@
5229
5245
  "type": "string"
5230
5246
  },
5231
5247
  "fractionalDigits": {
5232
- "description": "The default number of digits to show after the decimal point when formatting numbers. See {@link utilities /number!NumberSettings.fractionalDigits}.",
5248
+ "description": "The default number of digits to show after the decimal point when formatting numbers. See {@link utilities /format/number!NumberSettings.fractionalDigits}.",
5233
5249
  "type": "number"
5234
5250
  },
5235
5251
  "locale": {
@@ -5237,15 +5253,19 @@
5237
5253
  "type": "string"
5238
5254
  },
5239
5255
  "numberFormat": {
5240
- "description": "The default format to use when formatting numbers. See {@link utilities /number!NumberFormatter.format}.",
5256
+ "description": "The default format to use when formatting numbers. See {@link utilities /format/number!NumberFormatter.format}.",
5241
5257
  "type": "string"
5242
5258
  },
5243
5259
  "text": {
5244
5260
  "description": "The string to translate. If the text is a language resource key, then a localized version of that resource will be used if one exists, otherwise the original text is returned.",
5245
5261
  "type": "string"
5246
5262
  },
5263
+ "timeFormat": {
5264
+ "description": "The default format to use when formatting times. See {@link utilities /format/time!TimeFormatter.format}.",
5265
+ "type": "string"
5266
+ },
5247
5267
  "timeZone": {
5248
- "description": "The time zone of a date being formatted.",
5268
+ "description": "The time zone of a date being formatted. See {@link utilities /format/date!DateFormatter.timeZone}.",
5249
5269
  "type": "string"
5250
5270
  },
5251
5271
  "timeout": {
@@ -7557,6 +7577,10 @@
7557
7577
  "description": "The delimiter between rows. The default is the platform-specific line ending (e.g. \"\\r\\n\" on Windows, \"\\n\" on Unix or MacOS).",
7558
7578
  "type": "string"
7559
7579
  },
7580
+ "timeFormat": {
7581
+ "description": "The format for time-only fields. The default is TimeFormat.ROUND_TRIP. This can be a defined TimeFormat string, or a custom format string.",
7582
+ "type": "string"
7583
+ },
7560
7584
  "useFormattedValues": {
7561
7585
  "description": "If true, the configured formatters will be run on the raw values in the supplied data and these values will be output with type information if possible. If false, the formatted or presentable values already present in the supplied data will be taken 'as-is'. Field types configured on the input will be ignored and all values will be output as strings.",
7562
7586
  "type": "boolean"
@@ -7610,6 +7634,10 @@
7610
7634
  "$ref": "#/definitions/esri.SpatialReference",
7611
7635
  "description": "When exporting to a shapefile, this is the spatial reference of the geometry in the shapefile file. The default is WGS84. When importing from shapefile, this is the spatial reference of the geometry in the result."
7612
7636
  },
7637
+ "timeFormat": {
7638
+ "description": "The format for time-only fields. The default is TimeFormat.ROUND_TRIP. This can be a defined TimeFormat string, or a custom format string.",
7639
+ "type": "string"
7640
+ },
7613
7641
  "useFormattedValues": {
7614
7642
  "description": "If true, the configured formatters will be run on the raw values in the supplied data and these values will be output with type information if possible. If false, the formatted or presentable values already present in the supplied data will be taken 'as-is'. Field types configured on the input will be ignored and all values will be output as strings.",
7615
7643
  "type": "boolean"
@@ -7678,6 +7706,10 @@
7678
7706
  "description": "When exporting to XLSX, the name of the resulting work sheet. The default is \"sheet1\".",
7679
7707
  "type": "string"
7680
7708
  },
7709
+ "timeFormat": {
7710
+ "description": "The format for time-only fields. The default is TimeFormat.ROUND_TRIP. This can be a defined TimeFormat string, or a custom format string.",
7711
+ "type": "string"
7712
+ },
7681
7713
  "useFormattedValues": {
7682
7714
  "description": "If true, the configured formatters will be run on the raw values in the supplied data and these values will be output with type information if possible. If false, the formatted or presentable values already present in the supplied data will be taken 'as-is'. Field types configured on the input will be ignored and all values will be output as strings.",
7683
7715
  "type": "boolean"
@@ -7810,11 +7842,11 @@
7810
7842
  "type": "array"
7811
7843
  },
7812
7844
  "currency": {
7813
- "description": "The default unit of currency to use when formatting currency. See {@link utilities /number!NumberSettings.currency}.",
7845
+ "description": "The default unit of currency to use when formatting currency. See {@link utilities /format/number!NumberSettings.currency}.",
7814
7846
  "type": "string"
7815
7847
  },
7816
7848
  "dateFormat": {
7817
- "description": "The default format to use when formatting dates. See {@link utilities /date!DateFormatter.format}.",
7849
+ "description": "The default format to use when formatting dates. See {@link utilities /format/date!DateFormatter.format}.",
7818
7850
  "type": "string"
7819
7851
  },
7820
7852
  "defaultValue": {
@@ -7822,7 +7854,7 @@
7822
7854
  "type": "string"
7823
7855
  },
7824
7856
  "fractionalDigits": {
7825
- "description": "The default number of digits to show after the decimal point when formatting numbers. See {@link utilities /number!NumberSettings.fractionalDigits}.",
7857
+ "description": "The default number of digits to show after the decimal point when formatting numbers. See {@link utilities /format/number!NumberSettings.fractionalDigits}.",
7826
7858
  "type": "number"
7827
7859
  },
7828
7860
  "locale": {
@@ -7830,15 +7862,19 @@
7830
7862
  "type": "string"
7831
7863
  },
7832
7864
  "numberFormat": {
7833
- "description": "The default format to use when formatting numbers. See {@link utilities /number!NumberFormatter.format}.",
7865
+ "description": "The default format to use when formatting numbers. See {@link utilities /format/number!NumberFormatter.format}.",
7834
7866
  "type": "string"
7835
7867
  },
7836
7868
  "text": {
7837
7869
  "description": "The string to translate. If the text is a language resource key, then a localized version of that resource will be used if one exists, otherwise the original text is returned.",
7838
7870
  "type": "string"
7839
7871
  },
7872
+ "timeFormat": {
7873
+ "description": "The default format to use when formatting times. See {@link utilities /format/time!TimeFormatter.format}.",
7874
+ "type": "string"
7875
+ },
7840
7876
  "timeZone": {
7841
- "description": "The time zone of a date being formatted.",
7877
+ "description": "The time zone of a date being formatted. See {@link utilities /format/date!DateFormatter.timeZone}.",
7842
7878
  "type": "string"
7843
7879
  }
7844
7880
  },
@@ -8139,6 +8175,10 @@
8139
8175
  "description": "Optionally the primary key field.",
8140
8176
  "type": "string"
8141
8177
  },
8178
+ "timeFormat": {
8179
+ "description": "The format for time-only fields. The default is TimeFormat.ROUND_TRIP. This can be a defined TimeFormat string, or a custom format string.",
8180
+ "type": "string"
8181
+ },
8142
8182
  "title": {
8143
8183
  "description": "A title for this dataset.",
8144
8184
  "type": "string"
@@ -10665,8 +10705,10 @@
10665
10705
  "esri.rest-api.FieldJson.FieldJsonType": {
10666
10706
  "description": "The type of the Field.",
10667
10707
  "enum": [
10708
+ "esriFieldTypeBigInteger",
10668
10709
  "esriFieldTypeBlob",
10669
10710
  "esriFieldTypeDate",
10711
+ "esriFieldTypeDateOnly",
10670
10712
  "esriFieldTypeDouble",
10671
10713
  "esriFieldTypeGUID",
10672
10714
  "esriFieldTypeGeometry",
@@ -10677,6 +10719,8 @@
10677
10719
  "esriFieldTypeSingle",
10678
10720
  "esriFieldTypeSmallInteger",
10679
10721
  "esriFieldTypeString",
10722
+ "esriFieldTypeTimeOnly",
10723
+ "esriFieldTypeTimestampOffset",
10680
10724
  "esriFieldTypeXML"
10681
10725
  ],
10682
10726
  "type": "string"
@@ -13971,8 +14015,20 @@
13971
14015
  "description": "Possible date formats for {@link FormatJson.dateFormat}.",
13972
14016
  "enum": [
13973
14017
  "dayShortMonthYear",
14018
+ "dayShortMonthYearLongTime",
14019
+ "dayShortMonthYearLongTime24",
14020
+ "dayShortMonthYearShortTime",
14021
+ "dayShortMonthYearShortTime24",
13974
14022
  "longDate",
14023
+ "longDateLongTime",
14024
+ "longDateLongTime24",
14025
+ "longDateShortTime",
14026
+ "longDateShortTime24",
13975
14027
  "longMonthDayYear",
14028
+ "longMonthDayYearLongTime",
14029
+ "longMonthDayYearLongTime24",
14030
+ "longMonthDayYearShortTime",
14031
+ "longMonthDayYearShortTime24",
13976
14032
  "longMonthYear",
13977
14033
  "shortDate",
13978
14034
  "shortDateLE",
@@ -22659,7 +22715,10 @@
22659
22715
  "type": "string"
22660
22716
  },
22661
22717
  "ui.get-component-ids:output": {
22662
- "type": "string"
22718
+ "items": {
22719
+ "type": "string"
22720
+ },
22721
+ "type": "array"
22663
22722
  },
22664
22723
  "ui.get-component-state": {
22665
22724
  "description": "Gets the state of a component. Web only.",
@@ -467,7 +467,7 @@
467
467
  "type": "string"
468
468
  },
469
469
  "dateFormat": {
470
- "description": "The default format for date values. Either a {@link utilities /date!DateFormat} constant, or a custom date format string.",
470
+ "description": "The default format for date values. Either a {@link utilities /format/formats!DateFormat} constant, or a custom date format string.",
471
471
  "type": "string"
472
472
  },
473
473
  "fractionalDigits": {
@@ -479,7 +479,11 @@
479
479
  "type": "string"
480
480
  },
481
481
  "numberFormat": {
482
- "description": "The default format for number values. Either a {@link utilities /number!NumberFormat} constant, or a custom number format string.",
482
+ "description": "The default format for number values. Either a {@link utilities /format/formats!NumberFormat} constant, or a custom number format string.",
483
+ "type": "string"
484
+ },
485
+ "timeFormat": {
486
+ "description": "The default format for time values. Either a {@link utilities /format/formats!DateFormat} constant, or a custom time format string.",
483
487
  "type": "string"
484
488
  },
485
489
  "timeZone": {
@@ -2921,8 +2925,10 @@
2921
2925
  "esri.rest-api.FieldJson.FieldJsonType": {
2922
2926
  "description": "The type of the Field.",
2923
2927
  "enum": [
2928
+ "esriFieldTypeBigInteger",
2924
2929
  "esriFieldTypeBlob",
2925
2930
  "esriFieldTypeDate",
2931
+ "esriFieldTypeDateOnly",
2926
2932
  "esriFieldTypeDouble",
2927
2933
  "esriFieldTypeGUID",
2928
2934
  "esriFieldTypeGeometry",
@@ -2933,6 +2939,8 @@
2933
2939
  "esriFieldTypeSingle",
2934
2940
  "esriFieldTypeSmallInteger",
2935
2941
  "esriFieldTypeString",
2942
+ "esriFieldTypeTimeOnly",
2943
+ "esriFieldTypeTimestampOffset",
2936
2944
  "esriFieldTypeXML"
2937
2945
  ],
2938
2946
  "type": "string"
@@ -5931,8 +5939,20 @@
5931
5939
  "description": "Possible date formats for {@link FormatJson.dateFormat}.",
5932
5940
  "enum": [
5933
5941
  "dayShortMonthYear",
5942
+ "dayShortMonthYearLongTime",
5943
+ "dayShortMonthYearLongTime24",
5944
+ "dayShortMonthYearShortTime",
5945
+ "dayShortMonthYearShortTime24",
5934
5946
  "longDate",
5947
+ "longDateLongTime",
5948
+ "longDateLongTime24",
5949
+ "longDateShortTime",
5950
+ "longDateShortTime24",
5935
5951
  "longMonthDayYear",
5952
+ "longMonthDayYearLongTime",
5953
+ "longMonthDayYearLongTime24",
5954
+ "longMonthDayYearShortTime",
5955
+ "longMonthDayYearShortTime24",
5936
5956
  "longMonthYear",
5937
5957
  "shortDate",
5938
5958
  "shortDateLE",