@proofkit/fmodata 0.1.0-alpha.2 → 0.1.0-alpha.4

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.
@@ -1,4 +1,7 @@
1
1
  export { BaseTable } from './client/base-table.js';
2
2
  export { TableOccurrence, createTableOccurrence, } from './client/table-occurrence.js';
3
- export { FMServerConnection as FileMakerOData } from './client/filemaker-odata.js';
3
+ export { FMServerConnection } from './client/filemaker-odata.js';
4
+ export type { Database } from './client/database.js';
5
+ export type { EntitySet } from './client/entity-set.js';
6
+ export type { Result, InferSchemaType, InsertData, UpdateData, ODataRecordMetadata, } from './types.js';
4
7
  export type { Filter, TypedFilter, FieldFilter, StringOperators, NumberOperators, BooleanOperators, DateOperators, LogicalFilter, } from './filter-types.js';
package/dist/esm/index.js CHANGED
@@ -3,7 +3,7 @@ import { TableOccurrence, createTableOccurrence } from "./client/table-occurrenc
3
3
  import { FMServerConnection } from "./client/filemaker-odata.js";
4
4
  export {
5
5
  BaseTable,
6
- FMServerConnection as FileMakerOData,
6
+ FMServerConnection,
7
7
  TableOccurrence,
8
8
  createTableOccurrence
9
9
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@proofkit/fmodata",
3
- "version": "0.1.0-alpha.2",
3
+ "version": "0.1.0-alpha.4",
4
4
  "description": "FileMaker OData API client",
5
5
  "repository": "git@github.com:proofgeist/proofkit.git",
6
6
  "author": "Eric <37158449+eluce2@users.noreply.github.com>",
package/src/index.ts CHANGED
@@ -4,7 +4,23 @@ export {
4
4
  TableOccurrence,
5
5
  createTableOccurrence,
6
6
  } from "./client/table-occurrence";
7
- export { FMServerConnection as FileMakerOData } from "./client/filemaker-odata";
7
+ export { FMServerConnection } from "./client/filemaker-odata";
8
+
9
+ // Type-only exports for TypeScript declaration file portability
10
+ // Users get these instances from the builder pattern, not by direct instantiation
11
+ export type { Database } from "./client/database";
12
+ export type { EntitySet } from "./client/entity-set";
13
+
14
+ // Utility types for type annotations
15
+ export type {
16
+ Result,
17
+ InferSchemaType,
18
+ InsertData,
19
+ UpdateData,
20
+ ODataRecordMetadata,
21
+ } from "./types";
22
+
23
+ // Filter types
8
24
  export type {
9
25
  Filter,
10
26
  TypedFilter,