pothos-drizzle-generator 0.0.1 → 0.0.2

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,3 +1,4 @@
1
1
  export * from "./global-types.js";
2
+ export * from "./libs/operations.js";
2
3
  declare const pluginName: "pothosDrizzleGenerator";
3
4
  export default pluginName;
package/dist/cjs/index.js CHANGED
@@ -20,6 +20,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
20
20
  const core_1 = __importDefault(require("@pothos/core"));
21
21
  const PothosDrizzleGeneratorPlugin_js_1 = require("./PothosDrizzleGeneratorPlugin.js");
22
22
  __exportStar(require("./global-types.js"), exports);
23
+ __exportStar(require("./libs/operations.js"), exports);
23
24
  const pluginName = "pothosDrizzleGenerator";
24
25
  const allowPluginReRegistration = core_1.default.allowPluginReRegistration;
25
26
  core_1.default.allowPluginReRegistration = true;
@@ -1,3 +1,4 @@
1
1
  export * from "./global-types.js";
2
+ export * from "./libs/operations.js";
2
3
  declare const pluginName: "pothosDrizzleGenerator";
3
4
  export default pluginName;
package/dist/esm/index.js CHANGED
@@ -1,6 +1,7 @@
1
1
  import SchemaBuilder from "@pothos/core";
2
2
  import { PothosDrizzleGeneratorPlugin } from "./PothosDrizzleGeneratorPlugin.js";
3
3
  export * from "./global-types.js";
4
+ export * from "./libs/operations.js";
4
5
  const pluginName = "pothosDrizzleGenerator";
5
6
  const allowPluginReRegistration = SchemaBuilder.allowPluginReRegistration;
6
7
  SchemaBuilder.allowPluginReRegistration = true;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pothos-drizzle-generator",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "main": "./dist/cjs/index.js",
5
5
  "types": "./dist/cjs/index.d.ts",
6
6
  "exports": {