@baeta/plugin-prisma 0.0.19-75-20230619184544-4493aaa → 0.0.19
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 +6 -4
- package/dist/index.d.cts +12 -0
- package/dist/index.d.ts +1 -1
- package/package.json +19 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
# @baeta/plugin-prisma
|
|
2
2
|
|
|
3
|
-
## 0.0.19
|
|
3
|
+
## 0.0.19
|
|
4
4
|
|
|
5
5
|
### Patch Changes
|
|
6
6
|
|
|
7
7
|
- [#69](https://github.com/andreisergiu98/baeta/pull/69) [`3cdd9b3`](https://github.com/andreisergiu98/baeta/commit/3cdd9b30369d21179769a4b8d5f76e326ae6db37) Thanks [@andreisergiu98](https://github.com/andreisergiu98)! - update dependencies
|
|
8
8
|
|
|
9
|
-
-
|
|
10
|
-
|
|
11
|
-
|
|
9
|
+
- [#91](https://github.com/andreisergiu98/baeta/pull/91) [`e0944f6`](https://github.com/andreisergiu98/baeta/commit/e0944f6320e6cf2f0a3d2c9f51edd282bdce0546) Thanks [@andreisergiu98](https://github.com/andreisergiu98)! - update dependencies
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [[`3ff5e54`](https://github.com/andreisergiu98/baeta/commit/3ff5e54f31cf42ba2264b12309338d6e78710722), [`3cdd9b3`](https://github.com/andreisergiu98/baeta/commit/3cdd9b30369d21179769a4b8d5f76e326ae6db37), [`e0944f6`](https://github.com/andreisergiu98/baeta/commit/e0944f6320e6cf2f0a3d2c9f51edd282bdce0546)]:
|
|
12
|
+
- @baeta/generator-sdk@0.0.9
|
|
13
|
+
- @baeta/plugin-exec@0.0.7
|
|
12
14
|
|
|
13
15
|
## 0.0.18
|
|
14
16
|
|
package/dist/index.d.cts
ADDED
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import * as _baeta_generator_sdk from '@baeta/generator-sdk';
|
|
2
|
+
|
|
3
|
+
interface PrismaPluginOptions {
|
|
4
|
+
prismaSchema: string;
|
|
5
|
+
generateClient?: boolean;
|
|
6
|
+
generateCommand?: string;
|
|
7
|
+
generatedSchemaPath?: string;
|
|
8
|
+
}
|
|
9
|
+
|
|
10
|
+
declare function prismaPlugin(options: PrismaPluginOptions): _baeta_generator_sdk.GeneratorPluginV1<{}>[];
|
|
11
|
+
|
|
12
|
+
export { type PrismaPluginOptions, prismaPlugin as default, prismaPlugin };
|
package/dist/index.d.ts
CHANGED
|
@@ -9,4 +9,4 @@ interface PrismaPluginOptions {
|
|
|
9
9
|
|
|
10
10
|
declare function prismaPlugin(options: PrismaPluginOptions): _baeta_generator_sdk.GeneratorPluginV1<{}>[];
|
|
11
11
|
|
|
12
|
-
export { PrismaPluginOptions, prismaPlugin as default, prismaPlugin };
|
|
12
|
+
export { type PrismaPluginOptions, prismaPlugin as default, prismaPlugin };
|
package/package.json
CHANGED
|
@@ -1,6 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@baeta/plugin-prisma",
|
|
3
|
-
"version": "0.0.19
|
|
3
|
+
"version": "0.0.19",
|
|
4
|
+
"keywords": [
|
|
5
|
+
"baeta",
|
|
6
|
+
"graphql",
|
|
7
|
+
"schema",
|
|
8
|
+
"types",
|
|
9
|
+
"typescript",
|
|
10
|
+
"framework",
|
|
11
|
+
"builder"
|
|
12
|
+
],
|
|
4
13
|
"homepage": "https://github.com/andreisergiu98/baeta#readme",
|
|
5
14
|
"bugs": {
|
|
6
15
|
"url": "https://github.com/andreisergiu98/baeta/issues"
|
|
@@ -11,7 +20,10 @@
|
|
|
11
20
|
"directory": "packages/plugin-prisma"
|
|
12
21
|
},
|
|
13
22
|
"license": "MIT",
|
|
14
|
-
"author":
|
|
23
|
+
"author": {
|
|
24
|
+
"name": "Andrei Pampu",
|
|
25
|
+
"url": "https://github.com/andreisergiu98"
|
|
26
|
+
},
|
|
15
27
|
"type": "module",
|
|
16
28
|
"exports": {
|
|
17
29
|
".": {
|
|
@@ -33,15 +45,15 @@
|
|
|
33
45
|
"types": "tsc --noEmit"
|
|
34
46
|
},
|
|
35
47
|
"dependencies": {
|
|
36
|
-
"@baeta/generator-sdk": "^0.0.9
|
|
37
|
-
"@baeta/plugin-exec": "^0.0.7
|
|
38
|
-
"execa": "^
|
|
48
|
+
"@baeta/generator-sdk": "^0.0.9",
|
|
49
|
+
"@baeta/plugin-exec": "^0.0.7",
|
|
50
|
+
"execa": "^8.0.1"
|
|
39
51
|
},
|
|
40
52
|
"devDependencies": {
|
|
41
53
|
"@baeta/builder": "^0.0.0",
|
|
42
54
|
"@baeta/tsconfig": "^0.0.0",
|
|
43
|
-
"@types/node": "^18.
|
|
44
|
-
"typescript": "^5.
|
|
55
|
+
"@types/node": "^18.19.0",
|
|
56
|
+
"typescript": "^5.3.2"
|
|
45
57
|
},
|
|
46
58
|
"engines": {
|
|
47
59
|
"node": ">=18.0.0"
|