Skip to main content
Version: 1.1.0

ICAPlannerBaseConfig

@spartanfx/react v1.1.0


@spartanfx/react / codeapps / ICAPlannerBaseConfig

Interface: ICAPlannerBaseConfig<TId>

Base config shared by CodeApps Planner adapters.

Extends

Extended by

Type Parameters

TId

TId extends string | number

Properties

PropertyTypeDescriptionInherited from
autoRefresh?booleanEnable auto-refresh after mutations (default: true).ICAAdapterBaseConfig.autoRefresh
cacheDuration?numberCache TTL for read results in ms (default: 60_000).ICAAdapterBaseConfig.cacheDuration
choiceColumns?string[]SharePoint-only: column names backed by Choice / Lookup / Person columns. The Planner schema is consumer-driven (it doesn't know which columns are Choice columns), so declare them here to enable automatic expansion of string labels to the { "@odata.type", Value, Id } object the SharePoint connector requires on create/update. No default — when omitted, no resolution is performed. Ignored for services that don't expose getReferencedEntity (e.g. Dataverse). See: https://learn.microsoft.com/en-us/power-apps/developer/code-apps/how-to/sharepoint-operations-
debounceMs?numberDebounce delay for refetch on date-range change (default: 300 ms).-
debug?booleanEnable verbose console logging (default: false).ICAAdapterBaseConfig.debug
endDate?DateInitial end of the visible range. Default: Dec 31 of current year.-
odataFilter?stringAdditional OData $filter to combine with the date-range clause.-
onError?(error) => voidError callback. Called for every operational failure.ICAAdapterBaseConfig.onError
onNotify?CANotifyFnNotification callback. If omitted, hook errors surface via error state only.ICAAdapterBaseConfig.onNotify
retryPolicy?ICARetryPolicyRetry policy for transient failures.ICAAdapterBaseConfig.retryPolicy
rowLimit?numberMaximum records per fetch (default: 5000).-
schemaIPlannerSchemaSchema mapping internal planner fields to data source columns.-
searchText?stringOptional search text for client-side filtering.-
serviceICATabularService<CAPlannerRecord, TId>Generated tabular service from pac code add-data-source.-
startDate?DateInitial start of the visible range. Default: Jan 1 of current year.-