/** * @fileoverview The default `spec` dialect — passes filters through verbatim. * Used for servers that implement BrAPI v2.1 query-string filters as * specified (modern PIPPA / GnpIS / Reference Server deployments). Selected * when no server-specific dialect matches the detected `serverInfo.serverName`, * or when an operator pins `BRAPI__DIALECT=spec` to override detection. * * Note: the BrAPI Community Test Server is intentionally **not** spec-shaped * for GET filters — see `brapi-test-dialect.ts`. * * @module services/brapi-dialect/spec-dialect */ import type { BrapiDialect } from './types.js'; export declare const specDialect: BrapiDialect; //# sourceMappingURL=spec-dialect.d.ts.map