@proofkit/fmodata 0.1.0-alpha.3 → 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,6 +1,6 @@
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
4
  export type { Database } from './client/database.js';
5
5
  export type { EntitySet } from './client/entity-set.js';
6
6
  export type { Result, InferSchemaType, InsertData, UpdateData, ODataRecordMetadata, } from './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.3",
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,7 @@ 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
8
 
9
9
  // Type-only exports for TypeScript declaration file portability
10
10
  // Users get these instances from the builder pattern, not by direct instantiation