@proofkit/fmodata 0.1.0-alpha.2 → 0.1.0-alpha.3
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.
- package/dist/esm/index.d.ts +3 -0
- package/package.json +1 -1
- package/src/index.ts +16 -0
package/dist/esm/index.d.ts
CHANGED
|
@@ -1,4 +1,7 @@
|
|
|
1
1
|
export { BaseTable } from './client/base-table.js';
|
|
2
2
|
export { TableOccurrence, createTableOccurrence, } from './client/table-occurrence.js';
|
|
3
3
|
export { FMServerConnection as FileMakerOData } 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/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -5,6 +5,22 @@ export {
|
|
|
5
5
|
createTableOccurrence,
|
|
6
6
|
} from "./client/table-occurrence";
|
|
7
7
|
export { FMServerConnection as FileMakerOData } 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,
|