orchid-orm 1.4.19 → 1.4.21

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/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # orchid-orm
2
2
 
3
+ ## 1.4.21
4
+
5
+ ### Patch Changes
6
+
7
+ - Add --code cli argument to rake-db
8
+ - Improve codegen
9
+ - Updated dependencies
10
+ - Updated dependencies
11
+ - pqb@0.8.4
12
+
3
13
  ## 1.4.19
4
14
 
5
15
  ### Patch Changes
package/dist/index.d.ts CHANGED
@@ -229,6 +229,8 @@ declare type Repo<T extends Query, Methods extends MethodsBase<T>, Mapped = MapM
229
229
  }>(q: Q) => Q & Mapped) & T & Mapped;
230
230
  declare const createRepo: <T extends Query, Methods extends MethodsBase<T>>(table: T, methods: Methods) => Repo<T, Methods, MapMethods<T, Methods>>;
231
231
 
232
+ declare class AppCodeUpdaterError extends Error {
233
+ }
232
234
  declare type AppCodeUpdaterConfig = {
233
235
  tablePath(tableName: string): string;
234
236
  baseTablePath: string;
@@ -237,4 +239,4 @@ declare type AppCodeUpdaterConfig = {
237
239
  };
238
240
  declare const appCodeUpdater: (config: AppCodeUpdaterConfig) => AppCodeUpdater;
239
241
 
240
- export { AppCodeUpdaterConfig, DbTable, MapMethods, MapQueryMethods, MethodsBase, OrchidORM, QueryMethods, Repo, Table, TableClass, TableClasses, TableToDb, appCodeUpdater, createBaseTable, createRepo, orchidORM };
242
+ export { AppCodeUpdaterConfig, AppCodeUpdaterError, DbTable, MapMethods, MapQueryMethods, MethodsBase, OrchidORM, QueryMethods, Repo, Table, TableClass, TableClasses, TableToDb, appCodeUpdater, createBaseTable, createRepo, orchidORM };