Skip to content

Commit

Permalink
feat(:nail_care:): add modern feature service metadata props to ILaye…
Browse files Browse the repository at this point in the history
…rDefinition

AFFECTS PACKAGES:
@esri/arcgis-rest-common-types
  • Loading branch information
jgravois committed Nov 13, 2018
1 parent 3c96fce commit 7c89396
Showing 1 changed file with 29 additions and 1 deletion.
30 changes: 29 additions & 1 deletion packages/arcgis-rest-common-types/src/webmap.ts
Original file line number Diff line number Diff line change
Expand Up @@ -850,7 +850,7 @@ export interface ILayerDefinition extends IHasZM {
| "esriServerHTMLPopupTypeAsHTMLText";

/** The identifier assigned to the layer. */
id?: string;
id?: number;
/** Boolean value indicating whether the data is versioned. */
isDataVersioned?: boolean;
/** Numeric value indicating tbe maximum number of records that will be returned at once for a query. */
Expand Down Expand Up @@ -907,6 +907,34 @@ export interface ILayerDefinition extends IHasZM {
editDateField?: string;
editorField?: string;
};
parentLayerId?: number;
ownershipBasedAccessControlForFeatures?: boolean;
syncCanReturnChanges?: boolean;
archivingInfo?: {
supportsQueryWithHistoricMoment?: boolean;
startArchivingMoment?: number;
};
supportsValidateSQL?: boolean;
advancedQueryCapabilities?: {
supportsPagination?: boolean;
supportsTrueCurve?: boolean;
supportsQueryWithDistance?: boolean;
supportsReturningQueryExtent?: boolean;
supportsStatistics?: boolean;
supportsOrderBy?: boolean;
supportsDistinct?: boolean;
supportsSqlExpression?: boolean;
};
allowTrueCurvesUpdates?: boolean;
onlyAllowTrueCurveUpdatesByTrueCurveClients?: boolean;
supportsApplyEditsWithGlobalIds?: boolean;
subtypeField?: string;
indexes?: any[];
dateFieldsTimeReference?: {
timeZone?: string;
respectsDaylightSaving?: boolean;
};
useStandardizedQueries?: boolean;
}

export interface ITypeInfoDomain {
Expand Down

0 comments on commit 7c89396

Please sign in to comment.