@ragestudio/scylla-odm 0.5.0 → 0.6.0

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/index.d.mts CHANGED
@@ -1,4 +1,6 @@
1
1
  import { Schema } from "./schema/index.mjs";
2
2
  import { Model } from "./model/index.mjs";
3
+ import { Result } from "./result/index.mjs";
4
+ import { ColumnTypes } from "./types.mjs";
3
5
  import { Client } from "./client.mjs";
4
- export { Client, Client as default, Model, Schema };
6
+ export { Client, Client as default, ColumnTypes, Model, Result, Schema };
package/dist/index.mjs CHANGED
@@ -1,9 +1,11 @@
1
+ import { Result } from "./result/index.mjs";
1
2
  import { Model } from "./model/index.mjs";
2
3
  import { Client } from "./client.mjs";
3
4
  import { Schema } from "./schema/index.mjs";
5
+ import { ColumnTypes } from "./types.mjs";
4
6
  //#region src/index.ts
5
7
  var src_default = Client;
6
8
  //#endregion
7
- export { Client, Model, Schema, src_default as default };
9
+ export { Client, ColumnTypes, Model, Result, Schema, src_default as default };
8
10
 
9
11
  //# sourceMappingURL=index.mjs.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.mjs","names":[],"sources":["../src/index.ts"],"sourcesContent":["import Client from \"./client\"\nimport Model from \"./model\"\nimport Schema from \"./schema\"\n\nexport default Client\nexport { Client, Model, Schema }\n"],"mappings":";;;;AAIA,IAAA,cAAe"}
1
+ {"version":3,"file":"index.mjs","names":[],"sources":["../src/index.ts"],"sourcesContent":["import Client from \"./client\"\nimport Model from \"./model\"\nimport Schema from \"./schema\"\nimport Result from \"./result\"\nimport { ColumnTypes } from \"./types\"\n\nexport default Client\nexport { Client, Model, Schema, Result, ColumnTypes }\n"],"mappings":";;;;;;AAMA,IAAA,cAAe"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ragestudio/scylla-odm",
3
- "version": "0.5.0",
3
+ "version": "0.6.0",
4
4
  "description": "An ODM for ScyllaDB",
5
5
  "license": "MIT",
6
6
  "author": "RageStudio",