@arcote.tech/arc 0.0.2 → 0.0.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.
@@ -1,5 +1,5 @@
1
- export { collection, type ArcCollectionAny, type ArcIndexedCollectionAny, } from "./collection";
2
- export { type CollectionChange } from "./collection-change";
1
+ export * from "./collection";
2
+ export * from "./collection-change";
3
3
  export * from "./db";
4
- export { ArcCollectionQuery } from "./queries/abstract-collection-query";
5
- export type { GetAnyCollectionQueryResult } from "./queries/util";
4
+ export * from "./queries/abstract-collection-query";
5
+ export * from "./queries/util";
@@ -1 +1 @@
1
- export { context, type ArcContextAny } from "./context";
1
+ export * from "./context";
@@ -1,9 +1,9 @@
1
- export { array, type ArcArrayAny } from "./array";
2
- export { type ArcBrandedAny } from "./branded";
3
- export { ArcDate, date } from "./date";
4
- export { id } from "./id";
5
- export { ArcNumber, number } from "./number";
6
- export { object, type ArcObjectAny } from "./object";
7
- export { type ArcOptionalAny } from "./optional";
8
- export { ArcString, string } from "./string";
9
- export { stringEnum, type ArcStringEnumAny } from "./string-enum";
1
+ export * from "./array";
2
+ export * from "./branded";
3
+ export * from "./date";
4
+ export * from "./id";
5
+ export * from "./number";
6
+ export * from "./object";
7
+ export * from "./optional";
8
+ export * from "./string";
9
+ export * from "./string-enum";
package/dist/index.d.ts CHANGED
@@ -1,6 +1,6 @@
1
- export * from "./elements";
2
1
  export * from "./collection";
3
2
  export * from "./context";
3
+ export * from "./elements";
4
4
  export * from "./model";
5
5
  export * from "./rtc";
6
- export { type util, type ContextTypes } from "./utils";
6
+ export * from "./utils";