@vertigis/viewer-spec 53.0.0 → 53.1.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.
- package/messaging/common.d.ts +22 -0
- package/messaging/registry/drawing.d.ts +3 -12
- package/messaging/registry/layers.d.ts +83 -2
- package/messaging/registry/layers.js +1 -1
- package/messaging/registry/results.d.ts +33 -17
- package/messaging/registry/results.js +1 -1
- package/messaging/registry/system.d.ts +8 -1
- package/messaging/registry/system.js +1 -1
- package/messaging/schema/common-action.schema.json +151 -2
- package/messaging/schema/mobile-action.schema.json +151 -2
- package/messaging/schema/mobile-event.schema.json +2 -2
- package/messaging/schema/web-action.schema.json +753 -29
- package/messaging/schema/web-event.schema.json +2 -2
- package/package.json +2 -2
- package/version.d.ts +1 -1
- package/version.js +1 -1
|
@@ -165,10 +165,10 @@
|
|
|
165
165
|
"popupTemplate": {
|
|
166
166
|
"anyOf": [
|
|
167
167
|
{
|
|
168
|
-
"$ref": "#/definitions/esri.
|
|
168
|
+
"$ref": "#/definitions/esri.rest-api.PopupInfo.PopupInfo"
|
|
169
169
|
},
|
|
170
170
|
{
|
|
171
|
-
"$ref": "#/definitions/esri.
|
|
171
|
+
"$ref": "#/definitions/esri.PopupTemplate"
|
|
172
172
|
}
|
|
173
173
|
],
|
|
174
174
|
"description": "The template for displaying content in a pop-up when the feature is selected. If not explicitly set, it will be inherited from the associated layer extension if there is one."
|
|
@@ -464,6 +464,36 @@
|
|
|
464
464
|
},
|
|
465
465
|
"type": "object"
|
|
466
466
|
},
|
|
467
|
+
"@vertigis.arcgis-extensions.data.convert.CellData": {
|
|
468
|
+
"additionalProperties": false,
|
|
469
|
+
"description": "Data for a cell in a table.",
|
|
470
|
+
"properties": {
|
|
471
|
+
"formatted": {
|
|
472
|
+
"description": "The formatted value of the cell.",
|
|
473
|
+
"type": "string"
|
|
474
|
+
},
|
|
475
|
+
"raw": {
|
|
476
|
+
"anyOf": [
|
|
477
|
+
{
|
|
478
|
+
"format": "date-time",
|
|
479
|
+
"type": "string"
|
|
480
|
+
},
|
|
481
|
+
{
|
|
482
|
+
"type": [
|
|
483
|
+
"string",
|
|
484
|
+
"number",
|
|
485
|
+
"boolean"
|
|
486
|
+
]
|
|
487
|
+
}
|
|
488
|
+
],
|
|
489
|
+
"description": "The raw value of the cell."
|
|
490
|
+
}
|
|
491
|
+
},
|
|
492
|
+
"required": [
|
|
493
|
+
"raw"
|
|
494
|
+
],
|
|
495
|
+
"type": "object"
|
|
496
|
+
},
|
|
467
497
|
"@vertigis.arcgis-extensions.mapping._LayerExtension.LayerReference": {
|
|
468
498
|
"additionalProperties": false,
|
|
469
499
|
"description": "Matches an existing layer.",
|
|
@@ -4044,6 +4074,88 @@
|
|
|
4044
4074
|
},
|
|
4045
4075
|
"type": "object"
|
|
4046
4076
|
},
|
|
4077
|
+
"UploadDataArgs": {
|
|
4078
|
+
"additionalProperties": false,
|
|
4079
|
+
"description": "Arguements for the \"results.upload-data-args-to-feature\" operation.",
|
|
4080
|
+
"properties": {
|
|
4081
|
+
"data": {
|
|
4082
|
+
"description": "The cells in the table.",
|
|
4083
|
+
"items": {
|
|
4084
|
+
"items": {
|
|
4085
|
+
"$ref": "#/definitions/@vertigis.arcgis-extensions.data.convert.CellData"
|
|
4086
|
+
},
|
|
4087
|
+
"type": "array"
|
|
4088
|
+
},
|
|
4089
|
+
"type": "array"
|
|
4090
|
+
},
|
|
4091
|
+
"dateFormat": {
|
|
4092
|
+
"description": "The format for dates. The default is DateFormat.ROUND_TRIP. This can be a defined DateFormat string, the \"timestamp\" pseudo-format, or a custom format string.",
|
|
4093
|
+
"type": "string"
|
|
4094
|
+
},
|
|
4095
|
+
"displayField": {
|
|
4096
|
+
"description": "Typically a string field with text formatted for display.",
|
|
4097
|
+
"type": "string"
|
|
4098
|
+
},
|
|
4099
|
+
"escapeFormulaChars": {
|
|
4100
|
+
"description": "Whether to a prefix values that start with typical formula triggering chars (=,-,+,@).",
|
|
4101
|
+
"type": "boolean"
|
|
4102
|
+
},
|
|
4103
|
+
"generatePrimaryKey": {
|
|
4104
|
+
"description": "Indicates if a primary key should be generated if not found, defaults to true.",
|
|
4105
|
+
"type": "boolean"
|
|
4106
|
+
},
|
|
4107
|
+
"geometryFields": {
|
|
4108
|
+
"description": "The names of the geometry field(s).",
|
|
4109
|
+
"items": {
|
|
4110
|
+
"type": "string"
|
|
4111
|
+
},
|
|
4112
|
+
"type": "array"
|
|
4113
|
+
},
|
|
4114
|
+
"geometryFormat": {
|
|
4115
|
+
"$ref": "@vertigis.arcgis-extensions.data.convert.GeometryFormat",
|
|
4116
|
+
"description": "The format of the geometry in this table."
|
|
4117
|
+
},
|
|
4118
|
+
"inSpatialReference": {
|
|
4119
|
+
"$ref": "#/definitions/esri.SpatialReference",
|
|
4120
|
+
"description": "The spatial reference of the geometry in this table."
|
|
4121
|
+
},
|
|
4122
|
+
"includeHeaderRow": {
|
|
4123
|
+
"description": "The header row contains column names.",
|
|
4124
|
+
"type": "boolean"
|
|
4125
|
+
},
|
|
4126
|
+
"numberFormat": {
|
|
4127
|
+
"description": "The format for numbers. The default is NumberFormat.ROUND_TRIP.",
|
|
4128
|
+
"type": "string"
|
|
4129
|
+
},
|
|
4130
|
+
"outFields": {
|
|
4131
|
+
"description": "A list of fields to include. Defaults to the FeatureSources PopupTemplate outfields if available, otherwise \"*\" meaning all fields.",
|
|
4132
|
+
"items": {
|
|
4133
|
+
"type": "string"
|
|
4134
|
+
},
|
|
4135
|
+
"type": "array"
|
|
4136
|
+
},
|
|
4137
|
+
"outSpatialReference": {
|
|
4138
|
+
"$ref": "#/definitions/esri.SpatialReference",
|
|
4139
|
+
"description": "The output spatial reference of the converted table."
|
|
4140
|
+
},
|
|
4141
|
+
"primaryKeyField": {
|
|
4142
|
+
"description": "Optionally the primary key field.",
|
|
4143
|
+
"type": "string"
|
|
4144
|
+
},
|
|
4145
|
+
"title": {
|
|
4146
|
+
"description": "A title for this dataset.",
|
|
4147
|
+
"type": "string"
|
|
4148
|
+
},
|
|
4149
|
+
"useFormattedValues": {
|
|
4150
|
+
"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.",
|
|
4151
|
+
"type": "boolean"
|
|
4152
|
+
}
|
|
4153
|
+
},
|
|
4154
|
+
"required": [
|
|
4155
|
+
"data"
|
|
4156
|
+
],
|
|
4157
|
+
"type": "object"
|
|
4158
|
+
},
|
|
4047
4159
|
"WebAddAttachmentArgs": {
|
|
4048
4160
|
"additionalProperties": false,
|
|
4049
4161
|
"description": "VertiGIS Studio Web's arguments for the \"edit.add-attachment\" command. Not supported by Mobile.",
|
|
@@ -14952,6 +15064,24 @@
|
|
|
14952
15064
|
},
|
|
14953
15065
|
"type": "array"
|
|
14954
15066
|
},
|
|
15067
|
+
"results.upload-data-to-features": {
|
|
15068
|
+
"description": "Convert the supplied upload data args to features.",
|
|
15069
|
+
"enum": [
|
|
15070
|
+
"results.upload-data-to-features"
|
|
15071
|
+
]
|
|
15072
|
+
},
|
|
15073
|
+
"results.upload-data-to-features:input": {
|
|
15074
|
+
"items": {
|
|
15075
|
+
"$ref": "#/definitions/UploadDataArgs"
|
|
15076
|
+
},
|
|
15077
|
+
"type": "array"
|
|
15078
|
+
},
|
|
15079
|
+
"results.upload-data-to-features:output": {
|
|
15080
|
+
"items": {
|
|
15081
|
+
"$ref": "@vertigis.arcgis-extensions.data.FeatureStream.FeatureStream"
|
|
15082
|
+
},
|
|
15083
|
+
"type": "array"
|
|
15084
|
+
},
|
|
14955
15085
|
"search.clear": {
|
|
14956
15086
|
"description": "Clears the search input.",
|
|
14957
15087
|
"enum": [
|
|
@@ -18357,6 +18487,22 @@
|
|
|
18357
18487
|
],
|
|
18358
18488
|
"type": "object"
|
|
18359
18489
|
},
|
|
18490
|
+
{
|
|
18491
|
+
"additionalProperties": false,
|
|
18492
|
+
"properties": {
|
|
18493
|
+
"arguments": {
|
|
18494
|
+
"$ref": "#/definitions/results.upload-data-to-features:input"
|
|
18495
|
+
},
|
|
18496
|
+
"name": {
|
|
18497
|
+
"$ref": "#/definitions/results.upload-data-to-features"
|
|
18498
|
+
}
|
|
18499
|
+
},
|
|
18500
|
+
"required": [
|
|
18501
|
+
"name",
|
|
18502
|
+
"arguments"
|
|
18503
|
+
],
|
|
18504
|
+
"type": "object"
|
|
18505
|
+
},
|
|
18360
18506
|
{
|
|
18361
18507
|
"additionalProperties": false,
|
|
18362
18508
|
"properties": {
|
|
@@ -18614,6 +18760,9 @@
|
|
|
18614
18760
|
{
|
|
18615
18761
|
"$ref": "#/definitions/results.to-graphics"
|
|
18616
18762
|
},
|
|
18763
|
+
{
|
|
18764
|
+
"$ref": "#/definitions/results.upload-data-to-features"
|
|
18765
|
+
},
|
|
18617
18766
|
{
|
|
18618
18767
|
"$ref": "#/definitions/sketching.add-node-to-geometry"
|
|
18619
18768
|
},
|
|
@@ -154,10 +154,10 @@
|
|
|
154
154
|
"popupTemplate": {
|
|
155
155
|
"anyOf": [
|
|
156
156
|
{
|
|
157
|
-
"$ref": "#/definitions/esri.
|
|
157
|
+
"$ref": "#/definitions/esri.rest-api.PopupInfo.PopupInfo"
|
|
158
158
|
},
|
|
159
159
|
{
|
|
160
|
-
"$ref": "#/definitions/esri.
|
|
160
|
+
"$ref": "#/definitions/esri.PopupTemplate"
|
|
161
161
|
}
|
|
162
162
|
],
|
|
163
163
|
"description": "The template for displaying content in a pop-up when the feature is selected. If not explicitly set, it will be inherited from the associated layer extension if there is one."
|