@vertigis/viewer-spec 50.0.0 → 50.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.
@@ -28,6 +28,54 @@ export declare type MobileAction = CommonAction
28
28
  * Generic action. Payload: [wkid, transformation name].
29
29
  */
30
30
  | "gnss-device-transformation-override"
31
+ /**
32
+ * RunTimedAction OR EndTimedAction.
33
+ */
34
+ | "map-area-download"
35
+ /**
36
+ * EndTimedAction.
37
+ */
38
+ | "map-area-download-layer-fail"
39
+ /**
40
+ * EndTimedAction.
41
+ */
42
+ | "map-area-download-table-fail"
43
+ /**
44
+ * RunTimedAction OR EndTimedAction.
45
+ */
46
+ | "map-area-changes-send"
47
+ /**
48
+ * EndTimedAction.
49
+ */
50
+ | "map-area-send-changes-layer-fail"
51
+ /**
52
+ * EndTimedAction.
53
+ */
54
+ | "map-area-send-changes-table-fail"
55
+ /**
56
+ * RunTimedAction OR EndTimedAction.
57
+ */
58
+ | "map-area-update"
59
+ /**
60
+ * EndTimedAction.
61
+ */
62
+ | "map-area-update-layer-fail"
63
+ /**
64
+ * EndTimedAction.
65
+ */
66
+ | "map-area-update-table-fail"
67
+ /**
68
+ * Map action. Payload: "{'custom' or 'predefined'} - {map area name}".
69
+ */
70
+ | "map-area-activate"
71
+ /**
72
+ * Map action. Payload: "{'custom' or 'predefined'} - {map area name}".
73
+ */
74
+ | "map-area-deactivate"
75
+ /**
76
+ * Map action. Payload: "{'custom' or 'predefined'} - {map area name}".
77
+ */
78
+ | "map-area-data-delete"
31
79
  /**
32
80
  * Generic action. Payload: log level.
33
81
  */
@@ -43,6 +43,63 @@ export interface OfflineCommandArgs {
43
43
  */
44
44
  maps: MapsLike;
45
45
  }
46
+ /**
47
+ * Arguments for the "offline.area-activated" event.
48
+ */
49
+ export interface AreaActivatedEventArgs {
50
+ /**
51
+ * The area that is now active.
52
+ */
53
+ activeArea: OfflineAreaBase;
54
+ /**
55
+ * The area that was previously active. Can be null if there was no
56
+ * previously active offline area.
57
+ */
58
+ previouslyActiveArea: OfflineAreaBase;
59
+ }
60
+ /**
61
+ * Arguments for the "offline.user-went-online" event.
62
+ */
63
+ export interface UserWentOnlineEventArgs {
64
+ /**
65
+ * The area that was previously active.
66
+ */
67
+ previouslyActiveArea: OfflineAreaBase;
68
+ }
69
+ /**
70
+ * Arguments for events that signify the end of an offline area operation.
71
+ */
72
+ export interface AreaOperationEndedEventArgs {
73
+ /**
74
+ * The offline area that is related to this event.
75
+ */
76
+ offlineArea: OfflineAreaBase;
77
+ /**
78
+ * The status of the offline area related to this event.
79
+ */
80
+ offlineAreaStatus: OfflineAreaStatus;
81
+ }
82
+ /**
83
+ * Arguments for the "offline.area-edits-submit-started" event.
84
+ */
85
+ export interface AreaEditsSubmitStartedEventArgs {
86
+ /**
87
+ * The offline area that is related to this event.
88
+ */
89
+ offlineArea: OfflineAreaBase;
90
+ /**
91
+ * The number of add edits that are being submitted.
92
+ */
93
+ adds: number;
94
+ /**
95
+ * The number of delete edits that are being submitted.
96
+ */
97
+ deletes: number;
98
+ /**
99
+ * The number of update edits that are being submitted.
100
+ */
101
+ updates: number;
102
+ }
46
103
  /**
47
104
  * Corresponds to `VertiGIS.Mobile.Infrastructure.Offline.OfflineAreaBase` in
48
105
  * the VertiGIS.Mobile SDK.
@@ -62,6 +119,12 @@ export interface CustomOfflineArea {
62
119
  */
63
120
  export interface CustomOfflineAreaDetails {
64
121
  }
122
+ /**
123
+ * Corresponds to `VertiGIS.Mobile.Infrastructure.Offline.OfflineAreaStatus` in
124
+ * the VertiGIS.Mobile SDK.
125
+ */
126
+ export interface OfflineAreaStatus {
127
+ }
65
128
  /**
66
129
  * Corresponds to `VertiGIS.Mobile.Infrastructure.Offline.LayerEdits` in the
67
130
  * VertiGIS.Mobile SDK.
@@ -139,6 +202,16 @@ export interface OfflineOperationResult {
139
202
  * on or updating a map area.
140
203
  */
141
204
  syncTableResults: IDictionary<FeatureTable, OfflineMapSyncLayerResult>;
205
+ /**
206
+ * A dictionary of layer errors that occurred during a sync (submit edits or
207
+ * update) operation.
208
+ */
209
+ syncLayerErrors: IDictionary<FeatureLayer, Exception>;
210
+ /**
211
+ * A dictionary of table errors that occurred during a sync (submit edits or
212
+ * update) operation.
213
+ */
214
+ syncTableErrors: IDictionary<FeatureTable, Exception>;
142
215
  }
143
216
  /**
144
217
  * An error code for a known offline operation error.
@@ -224,7 +297,7 @@ export declare class OfflineEvents extends EventRegistry {
224
297
  *
225
298
  * @mobileOnly
226
299
  */
227
- get areaActivated(): Event<OfflineAreaBase>;
300
+ get areaActivated(): Event<AreaActivatedEventArgs>;
228
301
  /**
229
302
  * Raised when an offline area is about to be activated.
230
303
  *
@@ -237,49 +310,67 @@ export declare class OfflineEvents extends EventRegistry {
237
310
  * @mobileOnly
238
311
  */
239
312
  get areaDeleted(): Event<OfflineAreaBase>;
313
+ /**
314
+ * Raised when an offline area download has started.
315
+ *
316
+ * @mobileOnly
317
+ */
318
+ get areaDownloadStarted(): Event<OfflineAreaBase>;
240
319
  /**
241
320
  * Raised when an offline area download is canceled by the user.
242
321
  *
243
322
  * @mobileOnly
244
323
  */
245
- get areaDownloadCanceled(): Event<OfflineAreaBase>;
324
+ get areaDownloadCanceled(): Event<AreaOperationEndedEventArgs>;
246
325
  /**
247
326
  * Raised when an offline area download fails.
248
327
  *
249
328
  * @mobileOnly
250
329
  */
251
- get areaDownloadFailed(): Event<OfflineAreaBase>;
330
+ get areaDownloadFailed(): Event<AreaOperationEndedEventArgs>;
252
331
  /**
253
332
  * Raised when an offline area download completes.
254
333
  *
255
334
  * @mobileOnly
256
335
  */
257
- get areaDownloaded(): Event<OfflineAreaBase>;
336
+ get areaDownloaded(): Event<AreaOperationEndedEventArgs>;
337
+ /**
338
+ * Raised when an offline area update has started.
339
+ *
340
+ * @mobileOnly
341
+ */
342
+ get areaUpdateStarted(): Event<OfflineAreaBase>;
258
343
  /**
259
344
  * Raised when an offline area has been updated.
260
345
  *
261
346
  * @mobileOnly
262
347
  */
263
- get areaUpdated(): Event<OfflineAreaBase>;
348
+ get areaUpdated(): Event<AreaOperationEndedEventArgs>;
264
349
  /**
265
350
  * Raised when an any error occurs during an offline map update.
266
351
  *
267
352
  * @mobileOnly
268
353
  */
269
- get areaUpdateFailed(): Event<OfflineAreaBase>;
354
+ get areaUpdateFailed(): Event<AreaOperationEndedEventArgs>;
355
+ /**
356
+ * Raised when an operation to submit offline area edits has started.
357
+ *
358
+ * @mobileOnly
359
+ */
360
+ get areaEditsSubmitStarted(): Event<AreaEditsSubmitStartedEventArgs>;
270
361
  /**
271
362
  * Raised when offline area edits have been submitted and this operation is
272
363
  * successfully completed.
273
364
  *
274
365
  * @mobileOnly
275
366
  */
276
- get areaEditsSubmitted(): Event<OfflineAreaBase>;
367
+ get areaEditsSubmitted(): Event<AreaOperationEndedEventArgs>;
277
368
  /**
278
369
  * Raised when any error occurs during an offline map submit edits.
279
370
  *
280
371
  * @mobileOnly
281
372
  */
282
- get areaEditsSubmitFailed(): Event<OfflineAreaBase>;
373
+ get areaEditsSubmitFailed(): Event<AreaOperationEndedEventArgs>;
283
374
  /**
284
375
  * Raised when a new custom offline map area is created.
285
376
  *
@@ -297,7 +388,7 @@ export declare class OfflineEvents extends EventRegistry {
297
388
  *
298
389
  * @mobileOnly
299
390
  */
300
- get userWentOnline(): Event;
391
+ get userWentOnline(): Event<UserWentOnlineEventArgs>;
301
392
  }
302
393
  export declare class OfflineOperations extends OperationRegistry {
303
394
  /**
@@ -1 +1 @@
1
- import{CommandRegistry}from"../CommandRegistry.js";import{EventRegistry}from"../EventRegistry.js";import{OperationRegistry}from"../OperationRegistry.js";export var OfflineErrorCode;!function(e){e[e.NETWORK_CONNECTION_REQUIRED=100]="NETWORK_CONNECTION_REQUIRED",e[e.PORTAL_CONNECTION_FAILURE=101]="PORTAL_CONNECTION_FAILURE",e[e.ALREADY_STARTED=102]="ALREADY_STARTED",e[e.EXCEPTION_THROWN=103]="EXCEPTION_THROWN",e[e.INVALID_MAP_AREA_DATA=104]="INVALID_MAP_AREA_DATA",e[e.BACKGROUND_TIME_EXPIRED=105]="BACKGROUND_TIME_EXPIRED",e[e.MULTIPLE_ERRORS=106]="MULTIPLE_ERRORS",e[e.WEBMAP_REQUIRED=200]="WEBMAP_REQUIRED",e[e.WEBMAP_LOAD_FAILURE=201]="WEBMAP_LOAD_FAILURE",e[e.WEBMAP_NOT_LOADED=202]="WEBMAP_NOT_LOADED",e[e.WEBMAP_UNAUTHORIZED=203]="WEBMAP_UNAUTHORIZED"}(OfflineErrorCode||(OfflineErrorCode={}));export class OfflineCommands extends CommandRegistry{get cancelCreateArea(){return this._messages.command("offline.cancel-create-area")}get cancelDownload(){return this._messages.command("offline.cancel-download")}get deleteArea(){return this._messages.command("offline.delete-area")}get displayCreateArea(){return this._messages.command("offline.display-create-area")}}export class OfflineEvents extends EventRegistry{get areaActivated(){return this._messages.event("offline.area-activated")}get areaActivating(){return this._messages.event("offline.area-activating")}get areaDeleted(){return this._messages.event("offline.area-deleted")}get areaDownloadCanceled(){return this._messages.event("offline.area-download-canceled")}get areaDownloadFailed(){return this._messages.event("offline.area-download-failed")}get areaDownloaded(){return this._messages.event("offline.area-downloaded")}get areaUpdated(){return this._messages.event("offline.area-updated")}get areaUpdateFailed(){return this._messages.event("offline.area-update-failed")}get areaEditsSubmitted(){return this._messages.event("offline.area-edits-submitted")}get areaEditsSubmitFailed(){return this._messages.event("offline.area-edits-submit-failed")}get customAreaCreated(){return this._messages.event("offline.custom-area-created")}get customAreaDeleted(){return this._messages.event("offline.custom-area-deleted")}get userWentOnline(){return this._messages.event("offline.user-went-online")}}export class OfflineOperations extends OperationRegistry{get createArea(){return this._messages.operation("offline.create-area")}get getAreas(){return this._messages.operation("offline.get-areas")}get getEdits(){return this._messages.operation("offline.get-edits")}get activateArea(){return this._messages.operation("offline.activate-area")}get downloadArea(){return this._messages.operation("offline.download-area")}get goOnline(){return this._messages.operation("offline.go-online")}get checkForActiveArea(){return this._messages.operation("offline.check-for-active-area")}get submitEdits(){return this._messages.operation("offline.submit-edits")}get updateArea(){return this._messages.operation("offline.update-area")}}
1
+ import{CommandRegistry}from"../CommandRegistry.js";import{EventRegistry}from"../EventRegistry.js";import{OperationRegistry}from"../OperationRegistry.js";export var OfflineErrorCode;!function(e){e[e.NETWORK_CONNECTION_REQUIRED=100]="NETWORK_CONNECTION_REQUIRED",e[e.PORTAL_CONNECTION_FAILURE=101]="PORTAL_CONNECTION_FAILURE",e[e.ALREADY_STARTED=102]="ALREADY_STARTED",e[e.EXCEPTION_THROWN=103]="EXCEPTION_THROWN",e[e.INVALID_MAP_AREA_DATA=104]="INVALID_MAP_AREA_DATA",e[e.BACKGROUND_TIME_EXPIRED=105]="BACKGROUND_TIME_EXPIRED",e[e.MULTIPLE_ERRORS=106]="MULTIPLE_ERRORS",e[e.WEBMAP_REQUIRED=200]="WEBMAP_REQUIRED",e[e.WEBMAP_LOAD_FAILURE=201]="WEBMAP_LOAD_FAILURE",e[e.WEBMAP_NOT_LOADED=202]="WEBMAP_NOT_LOADED",e[e.WEBMAP_UNAUTHORIZED=203]="WEBMAP_UNAUTHORIZED"}(OfflineErrorCode||(OfflineErrorCode={}));export class OfflineCommands extends CommandRegistry{get cancelCreateArea(){return this._messages.command("offline.cancel-create-area")}get cancelDownload(){return this._messages.command("offline.cancel-download")}get deleteArea(){return this._messages.command("offline.delete-area")}get displayCreateArea(){return this._messages.command("offline.display-create-area")}}export class OfflineEvents extends EventRegistry{get areaActivated(){return this._messages.event("offline.area-activated")}get areaActivating(){return this._messages.event("offline.area-activating")}get areaDeleted(){return this._messages.event("offline.area-deleted")}get areaDownloadStarted(){return this._messages.event("offline.area-download-started")}get areaDownloadCanceled(){return this._messages.event("offline.area-download-canceled")}get areaDownloadFailed(){return this._messages.event("offline.area-download-failed")}get areaDownloaded(){return this._messages.event("offline.area-downloaded")}get areaUpdateStarted(){return this._messages.event("offline.area-update-started")}get areaUpdated(){return this._messages.event("offline.area-updated")}get areaUpdateFailed(){return this._messages.event("offline.area-update-failed")}get areaEditsSubmitStarted(){return this._messages.event("offline.area-edits-submit-started")}get areaEditsSubmitted(){return this._messages.event("offline.area-edits-submitted")}get areaEditsSubmitFailed(){return this._messages.event("offline.area-edits-submit-failed")}get customAreaCreated(){return this._messages.event("offline.custom-area-created")}get customAreaDeleted(){return this._messages.event("offline.custom-area-deleted")}get userWentOnline(){return this._messages.event("offline.user-went-online")}}export class OfflineOperations extends OperationRegistry{get createArea(){return this._messages.operation("offline.create-area")}get getAreas(){return this._messages.operation("offline.get-areas")}get getEdits(){return this._messages.operation("offline.get-edits")}get activateArea(){return this._messages.operation("offline.activate-area")}get downloadArea(){return this._messages.operation("offline.download-area")}get goOnline(){return this._messages.operation("offline.go-online")}get checkForActiveArea(){return this._messages.operation("offline.check-for-active-area")}get submitEdits(){return this._messages.operation("offline.submit-edits")}get updateArea(){return this._messages.operation("offline.update-area")}}
@@ -2335,10 +2335,18 @@
2335
2335
  "description": "A value indicating whether or not the operation was successful.",
2336
2336
  "type": "boolean"
2337
2337
  },
2338
+ "syncLayerErrors": {
2339
+ "$ref": "System.Collections.Generic.IDictionary_4",
2340
+ "description": "A dictionary of layer errors that occurred during a sync (submit edits or update) operation."
2341
+ },
2338
2342
  "syncLayerResults": {
2339
2343
  "$ref": "System.Collections.Generic.IDictionary_2",
2340
2344
  "description": "A dictionary of layer sync results that occurred while submitting edits on or updating a map area."
2341
2345
  },
2346
+ "syncTableErrors": {
2347
+ "$ref": "System.Collections.Generic.IDictionary_1",
2348
+ "description": "A dictionary of table errors that occurred during a sync (submit edits or update) operation."
2349
+ },
2342
2350
  "syncTableResults": {
2343
2351
  "$ref": "System.Collections.Generic.IDictionary_3",
2344
2352
  "description": "A dictionary of table sync results that occurred while submitting edits on or updating a map area."
@@ -2359,7 +2367,9 @@
2359
2367
  "errorCodeString",
2360
2368
  "errorMessage",
2361
2369
  "success",
2370
+ "syncLayerErrors",
2362
2371
  "syncLayerResults",
2372
+ "syncTableErrors",
2363
2373
  "syncTableResults",
2364
2374
  "warnings"
2365
2375
  ],
@@ -383,6 +383,73 @@
383
383
  "additionalProperties": false,
384
384
  "type": "object"
385
385
  },
386
+ "AreaActivatedEventArgs": {
387
+ "additionalProperties": false,
388
+ "description": "Arguments for the \"offline.area-activated\" event.",
389
+ "properties": {
390
+ "activeArea": {
391
+ "$ref": "OfflineAreaBase",
392
+ "description": "The area that is now active."
393
+ },
394
+ "previouslyActiveArea": {
395
+ "$ref": "OfflineAreaBase",
396
+ "description": "The area that was previously active. Can be null if there was no previously active offline area."
397
+ }
398
+ },
399
+ "required": [
400
+ "activeArea",
401
+ "previouslyActiveArea"
402
+ ],
403
+ "type": "object"
404
+ },
405
+ "AreaEditsSubmitStartedEventArgs": {
406
+ "additionalProperties": false,
407
+ "description": "Arguments for the \"offline.area-edits-submit-started\" event.",
408
+ "properties": {
409
+ "adds": {
410
+ "description": "The number of add edits that are being submitted.",
411
+ "type": "number"
412
+ },
413
+ "deletes": {
414
+ "description": "The number of delete edits that are being submitted.",
415
+ "type": "number"
416
+ },
417
+ "offlineArea": {
418
+ "$ref": "OfflineAreaBase",
419
+ "description": "The offline area that is related to this event."
420
+ },
421
+ "updates": {
422
+ "description": "The number of update edits that are being submitted.",
423
+ "type": "number"
424
+ }
425
+ },
426
+ "required": [
427
+ "adds",
428
+ "deletes",
429
+ "offlineArea",
430
+ "updates"
431
+ ],
432
+ "type": "object"
433
+ },
434
+ "AreaOperationEndedEventArgs": {
435
+ "additionalProperties": false,
436
+ "description": "Arguments for events that signify the end of an offline area operation.",
437
+ "properties": {
438
+ "offlineArea": {
439
+ "$ref": "OfflineAreaBase",
440
+ "description": "The offline area that is related to this event."
441
+ },
442
+ "offlineAreaStatus": {
443
+ "$ref": "OfflineAreaStatus",
444
+ "description": "The status of the offline area related to this event."
445
+ }
446
+ },
447
+ "required": [
448
+ "offlineArea",
449
+ "offlineAreaStatus"
450
+ ],
451
+ "type": "object"
452
+ },
386
453
  "AttachmentEventArgs": {
387
454
  "additionalProperties": false,
388
455
  "description": "Event args for attachement events.",
@@ -1508,6 +1575,20 @@
1508
1575
  "additionalProperties": false,
1509
1576
  "type": "object"
1510
1577
  },
1578
+ "UserWentOnlineEventArgs": {
1579
+ "additionalProperties": false,
1580
+ "description": "Arguments for the \"offline.user-went-online\" event.",
1581
+ "properties": {
1582
+ "previouslyActiveArea": {
1583
+ "$ref": "OfflineAreaBase",
1584
+ "description": "The area that was previously active."
1585
+ }
1586
+ },
1587
+ "required": [
1588
+ "previouslyActiveArea"
1589
+ ],
1590
+ "type": "object"
1591
+ },
1511
1592
  "WorkflowErrorEventArgs": {
1512
1593
  "additionalProperties": false,
1513
1594
  "description": "Arguments for the \"workflow.workflow-error\" event.",
@@ -10689,7 +10770,7 @@
10689
10770
  ]
10690
10771
  },
10691
10772
  "offline.area-activated:input": {
10692
- "$ref": "OfflineAreaBase"
10773
+ "$ref": "#/definitions/AreaActivatedEventArgs"
10693
10774
  },
10694
10775
  "offline.area-activating": {
10695
10776
  "description": "Raised when an offline area is about to be activated.",
@@ -10716,7 +10797,7 @@
10716
10797
  ]
10717
10798
  },
10718
10799
  "offline.area-download-canceled:input": {
10719
- "$ref": "OfflineAreaBase"
10800
+ "$ref": "#/definitions/AreaOperationEndedEventArgs"
10720
10801
  },
10721
10802
  "offline.area-download-failed": {
10722
10803
  "description": "Raised when an offline area download fails.",
@@ -10725,6 +10806,15 @@
10725
10806
  ]
10726
10807
  },
10727
10808
  "offline.area-download-failed:input": {
10809
+ "$ref": "#/definitions/AreaOperationEndedEventArgs"
10810
+ },
10811
+ "offline.area-download-started": {
10812
+ "description": "Raised when an offline area download has started.",
10813
+ "enum": [
10814
+ "offline.area-download-started"
10815
+ ]
10816
+ },
10817
+ "offline.area-download-started:input": {
10728
10818
  "$ref": "OfflineAreaBase"
10729
10819
  },
10730
10820
  "offline.area-downloaded": {
@@ -10734,7 +10824,7 @@
10734
10824
  ]
10735
10825
  },
10736
10826
  "offline.area-downloaded:input": {
10737
- "$ref": "OfflineAreaBase"
10827
+ "$ref": "#/definitions/AreaOperationEndedEventArgs"
10738
10828
  },
10739
10829
  "offline.area-edits-submit-failed": {
10740
10830
  "description": "Raised when any error occurs during an offline map submit edits.",
@@ -10743,7 +10833,16 @@
10743
10833
  ]
10744
10834
  },
10745
10835
  "offline.area-edits-submit-failed:input": {
10746
- "$ref": "OfflineAreaBase"
10836
+ "$ref": "#/definitions/AreaOperationEndedEventArgs"
10837
+ },
10838
+ "offline.area-edits-submit-started": {
10839
+ "description": "Raised when an operation to submit offline area edits has started.",
10840
+ "enum": [
10841
+ "offline.area-edits-submit-started"
10842
+ ]
10843
+ },
10844
+ "offline.area-edits-submit-started:input": {
10845
+ "$ref": "#/definitions/AreaEditsSubmitStartedEventArgs"
10747
10846
  },
10748
10847
  "offline.area-edits-submitted": {
10749
10848
  "description": "Raised when offline area edits have been submitted and this operation is successfully completed.",
@@ -10752,7 +10851,7 @@
10752
10851
  ]
10753
10852
  },
10754
10853
  "offline.area-edits-submitted:input": {
10755
- "$ref": "OfflineAreaBase"
10854
+ "$ref": "#/definitions/AreaOperationEndedEventArgs"
10756
10855
  },
10757
10856
  "offline.area-update-failed": {
10758
10857
  "description": "Raised when an any error occurs during an offline map update.",
@@ -10761,6 +10860,15 @@
10761
10860
  ]
10762
10861
  },
10763
10862
  "offline.area-update-failed:input": {
10863
+ "$ref": "#/definitions/AreaOperationEndedEventArgs"
10864
+ },
10865
+ "offline.area-update-started": {
10866
+ "description": "Raised when an offline area update has started.",
10867
+ "enum": [
10868
+ "offline.area-update-started"
10869
+ ]
10870
+ },
10871
+ "offline.area-update-started:input": {
10764
10872
  "$ref": "OfflineAreaBase"
10765
10873
  },
10766
10874
  "offline.area-updated": {
@@ -10770,7 +10878,7 @@
10770
10878
  ]
10771
10879
  },
10772
10880
  "offline.area-updated:input": {
10773
- "$ref": "OfflineAreaBase"
10881
+ "$ref": "#/definitions/AreaOperationEndedEventArgs"
10774
10882
  },
10775
10883
  "offline.custom-area-created": {
10776
10884
  "description": "Raised when a new custom offline map area is created.",
@@ -10796,6 +10904,9 @@
10796
10904
  "offline.user-went-online"
10797
10905
  ]
10798
10906
  },
10907
+ "offline.user-went-online:input": {
10908
+ "$ref": "#/definitions/UserWentOnlineEventArgs"
10909
+ },
10799
10910
  "panel.host-panel-component-changed": {
10800
10911
  "description": "Raised when the component that is currently being displayed by the host panel is changed. Argument is the id of the component.",
10801
10912
  "enum": [
@@ -11239,18 +11350,27 @@
11239
11350
  {
11240
11351
  "$ref": "#/definitions/offline.area-download-failed"
11241
11352
  },
11353
+ {
11354
+ "$ref": "#/definitions/offline.area-download-started"
11355
+ },
11242
11356
  {
11243
11357
  "$ref": "#/definitions/offline.area-downloaded"
11244
11358
  },
11245
11359
  {
11246
11360
  "$ref": "#/definitions/offline.area-edits-submit-failed"
11247
11361
  },
11362
+ {
11363
+ "$ref": "#/definitions/offline.area-edits-submit-started"
11364
+ },
11248
11365
  {
11249
11366
  "$ref": "#/definitions/offline.area-edits-submitted"
11250
11367
  },
11251
11368
  {
11252
11369
  "$ref": "#/definitions/offline.area-update-failed"
11253
11370
  },
11371
+ {
11372
+ "$ref": "#/definitions/offline.area-update-started"
11373
+ },
11254
11374
  {
11255
11375
  "$ref": "#/definitions/offline.area-updated"
11256
11376
  },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vertigis/viewer-spec",
3
- "version": "50.0.0",
3
+ "version": "50.1.0",
4
4
  "license": "SEE LICENSE IN LICENSE",
5
5
  "description": "VertiGIS Viewer Specification",
6
6
  "type": "module",
package/version.d.ts CHANGED
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * The current version of the Geocortex Viewer Specification.
3
3
  */
4
- export declare const version = "50.0.0";
4
+ export declare const version = "50.1.0";
package/version.js CHANGED
@@ -1,4 +1,4 @@
1
1
  /**
2
2
  * The current version of the Geocortex Viewer Specification.
3
3
  */
4
- export const version = "50.0.0";
4
+ export const version = "50.1.0";