You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Convert httpClient calls to @esri/arcgis-rest-request with ArcGISIdentityManager for authentication
* Fix addFields and deleteFields
* Fixed outFields and returnGeometry for query generation
* [service] prepend form name to all event form fields for clarity and to avoid ESRI column name conflicts
* [service] Fix check to determine if an observation sync to ESRI is a create or update
* [service] OAuth refresh token flow in work
* [service] Add IdentityManager to ObservationSender construction
* [service] Remove httpClient
* [service] fix FeatureQuerier response from request
* [service] Refactor ArcGISIdentityManager management
* draft changes
* [service] ArcGIS field names are lowercase, account for this when adding/removing fields
* Undo revert of FeatureQuerier
* [service] Remove HttpClient.ts, no longer used
* [service] updateConfig inner async methods await before we query
* [server] Attribute sync fix upon adding feature server
* [web/service] API update to include feature service authentication status
* [service] fix regression in token, username/password validation req parameter parsing
* [service] Clean up TODO comments
* [service] form field mapping need to account for form name and field name to avoid conflicts
* Reduce response logging that may cause confusion
* [service] include event forms in detecting config changes
* Merge develop
* [service] sync configured events instead of checking changes of all events. Store event ids instead of names
* [server] Fix query syntax error
* fix failing errors for observations
* [service] fix event deletion and firstRun logic
* fix issues with updates
* fix deletion issue
* fix required field issue
* update arcgis read me
---------
Co-authored-by: Rick Saccoccia <[email protected]>
Co-authored-by: William Newman <[email protected]>
Co-authored-by: Clinton Werth <[email protected]>
}).then((queryResponse)=>response(queryResponseasQueryObjectResult)).catch((error)=>this._console.error('Error in FeatureQuerier.queryObservation :: '+error));
71
67
}
72
68
73
69
/**
@@ -77,19 +73,14 @@ export class FeatureQuerier {
77
73
* @param geometry query the geometry, default is true
where: `${this._config.observationIdField} IS NOT NULL`,
81
+
returnGeometry: geometry,
82
+
outFields: fields?.length ? fields : '*'
83
+
}).then((queryResponse)=>response(queryResponseasQueryObjectResult)).catch((error)=>this._console.error('Error in FeatureQuerier.queryObservations :: '+error));
}).then((queryResponse)=>response(queryResponseasQueryObjectResult)).catch((error)=>this._console.error('Error in FeatureQuerier.queryDistinct :: '+error));
0 commit comments