@koalarx/nest-cli 1.2.23 → 2.0.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.
Files changed (27) hide show
  1. package/README.md +35 -1
  2. package/code-base/env/config.txt +0 -2
  3. package/code-base/startup-project/.eslintrc.js +12 -10
  4. package/code-base/startup-project/.vscode/launch.json +9 -24
  5. package/code-base/startup-project/Dockerfile +26 -5
  6. package/code-base/startup-project/package.json +11 -14
  7. package/code-base/startup-project/prisma/scripts/fix-extensions.mjs +31 -0
  8. package/code-base/startup-project/src/test/setup-e2e.ts +7 -2
  9. package/code-base/startup-project/tsconfig.build-prisma.json +21 -0
  10. package/code-base/startup-project/tsconfig.build.json +7 -2
  11. package/code-base/startup-project/tsconfig.json +1 -2
  12. package/commands/new-project/index.ts +1 -1
  13. package/index.js +2 -2
  14. package/package.json +1 -1
  15. package/code-base/startup-project/prisma/generated/browser.ts +0 -34
  16. package/code-base/startup-project/prisma/generated/client.ts +0 -54
  17. package/code-base/startup-project/prisma/generated/commonInputTypes.ts +0 -172
  18. package/code-base/startup-project/prisma/generated/enums.ts +0 -15
  19. package/code-base/startup-project/prisma/generated/internal/class.ts +0 -210
  20. package/code-base/startup-project/prisma/generated/internal/prismaNamespace.ts +0 -927
  21. package/code-base/startup-project/prisma/generated/internal/prismaNamespaceBrowser.ts +0 -116
  22. package/code-base/startup-project/prisma/generated/models/Person.ts +0 -1497
  23. package/code-base/startup-project/prisma/generated/models/PersonAddress.ts +0 -1265
  24. package/code-base/startup-project/prisma/generated/models/PersonPhone.ts +0 -1315
  25. package/code-base/startup-project/prisma/generated/models.ts +0 -14
  26. package/code-base/startup-project/vitest.config.e2e.mts +0 -19
  27. package/code-base/startup-project/vitest.config.mts +0 -18
@@ -1,116 +0,0 @@
1
-
2
- /* !!! This is code generated by Prisma. Do not edit directly. !!! */
3
- /* eslint-disable */
4
- // biome-ignore-all lint: generated file
5
- // @ts-nocheck
6
- /*
7
- * WARNING: This is an internal file that is subject to change!
8
- *
9
- * 🛑 Under no circumstances should you import this file directly! 🛑
10
- *
11
- * All exports from this file are wrapped under a `Prisma` namespace object in the browser.ts file.
12
- * While this enables partial backward compatibility, it is not part of the stable public API.
13
- *
14
- * If you are looking for your Models, Enums, and Input Types, please import them from the respective
15
- * model files in the `model` directory!
16
- */
17
-
18
- import * as runtime from "@prisma/client/runtime/index-browser"
19
-
20
- export type * from '../models'
21
- export type * from './prismaNamespace'
22
-
23
- export const Decimal = runtime.Decimal
24
-
25
-
26
- export const NullTypes = {
27
- DbNull: runtime.NullTypes.DbNull as (new (secret: never) => typeof runtime.DbNull),
28
- JsonNull: runtime.NullTypes.JsonNull as (new (secret: never) => typeof runtime.JsonNull),
29
- AnyNull: runtime.NullTypes.AnyNull as (new (secret: never) => typeof runtime.AnyNull),
30
- }
31
- /**
32
- * Helper for filtering JSON entries that have `null` on the database (empty on the db)
33
- *
34
- * @see https://www.prisma.io/docs/concepts/components/prisma-client/working-with-fields/working-with-json-fields#filtering-on-a-json-field
35
- */
36
- export const DbNull = runtime.DbNull
37
-
38
- /**
39
- * Helper for filtering JSON entries that have JSON `null` values (not empty on the db)
40
- *
41
- * @see https://www.prisma.io/docs/concepts/components/prisma-client/working-with-fields/working-with-json-fields#filtering-on-a-json-field
42
- */
43
- export const JsonNull = runtime.JsonNull
44
-
45
- /**
46
- * Helper for filtering JSON entries that are `Prisma.DbNull` or `Prisma.JsonNull`
47
- *
48
- * @see https://www.prisma.io/docs/concepts/components/prisma-client/working-with-fields/working-with-json-fields#filtering-on-a-json-field
49
- */
50
- export const AnyNull = runtime.AnyNull
51
-
52
-
53
- export const ModelName = {
54
- Person: 'Person',
55
- PersonPhone: 'PersonPhone',
56
- PersonAddress: 'PersonAddress'
57
- } as const
58
-
59
- export type ModelName = (typeof ModelName)[keyof typeof ModelName]
60
-
61
- /*
62
- * Enums
63
- */
64
-
65
- export const TransactionIsolationLevel = {
66
- ReadUncommitted: 'ReadUncommitted',
67
- ReadCommitted: 'ReadCommitted',
68
- RepeatableRead: 'RepeatableRead',
69
- Serializable: 'Serializable'
70
- } as const
71
-
72
- export type TransactionIsolationLevel = (typeof TransactionIsolationLevel)[keyof typeof TransactionIsolationLevel]
73
-
74
-
75
- export const PersonScalarFieldEnum = {
76
- id: 'id',
77
- name: 'name',
78
- active: 'active',
79
- personAddressId: 'personAddressId'
80
- } as const
81
-
82
- export type PersonScalarFieldEnum = (typeof PersonScalarFieldEnum)[keyof typeof PersonScalarFieldEnum]
83
-
84
-
85
- export const PersonPhoneScalarFieldEnum = {
86
- id: 'id',
87
- phone: 'phone',
88
- personId: 'personId'
89
- } as const
90
-
91
- export type PersonPhoneScalarFieldEnum = (typeof PersonPhoneScalarFieldEnum)[keyof typeof PersonPhoneScalarFieldEnum]
92
-
93
-
94
- export const PersonAddressScalarFieldEnum = {
95
- id: 'id',
96
- address: 'address'
97
- } as const
98
-
99
- export type PersonAddressScalarFieldEnum = (typeof PersonAddressScalarFieldEnum)[keyof typeof PersonAddressScalarFieldEnum]
100
-
101
-
102
- export const SortOrder = {
103
- asc: 'asc',
104
- desc: 'desc'
105
- } as const
106
-
107
- export type SortOrder = (typeof SortOrder)[keyof typeof SortOrder]
108
-
109
-
110
- export const QueryMode = {
111
- default: 'default',
112
- insensitive: 'insensitive'
113
- } as const
114
-
115
- export type QueryMode = (typeof QueryMode)[keyof typeof QueryMode]
116
-