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.
- package/dist/cjs/index.d.ts +1 -0
- package/dist/cjs/index.js +1 -0
- package/dist/esm/index.d.ts +1 -0
- package/dist/esm/index.js +1 -0
- package/package.json +1 -1
package/dist/cjs/index.d.ts
CHANGED
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;
|
package/dist/esm/index.d.ts
CHANGED
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;
|