@a_team/prisma 3.23.6-win → 3.23.7-linux-debian
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/client/edge.js +6 -4
- package/dist/client/index-browser.js +2 -0
- package/dist/client/index.d.ts +71 -0
- package/dist/client/index.js +8 -6
- package/dist/client/{query_engine-windows.dll.node → libquery_engine-debian-openssl-3.0.x.so.node} +0 -0
- package/dist/client/package.json +1 -1
- package/dist/client/schema.prisma +2 -0
- package/dist/client/wasm.js +2 -0
- package/package.json +2 -2
package/dist/client/{query_engine-windows.dll.node → libquery_engine-debian-openssl-3.0.x.so.node}
RENAMED
|
Binary file
|
package/dist/client/package.json
CHANGED
|
@@ -648,9 +648,11 @@ model Experience {
|
|
|
648
648
|
startDate DateTime? @db.Date
|
|
649
649
|
endDate DateTime? @db.Date
|
|
650
650
|
description String?
|
|
651
|
+
descriptionHTML String?
|
|
651
652
|
skills String[] @db.ObjectId
|
|
652
653
|
metrics Metric[]
|
|
653
654
|
talentSpecializationId String? @db.ObjectId
|
|
655
|
+
talentSkills String[] @db.ObjectId
|
|
654
656
|
createdAt DateTime? @default(now()) @db.Date
|
|
655
657
|
updatedAt DateTime? @updatedAt @db.Date
|
|
656
658
|
|
package/dist/client/wasm.js
CHANGED
|
@@ -291,8 +291,10 @@ exports.Prisma.ExperienceScalarFieldEnum = {
|
|
|
291
291
|
startDate: 'startDate',
|
|
292
292
|
endDate: 'endDate',
|
|
293
293
|
description: 'description',
|
|
294
|
+
descriptionHTML: 'descriptionHTML',
|
|
294
295
|
skills: 'skills',
|
|
295
296
|
talentSpecializationId: 'talentSpecializationId',
|
|
297
|
+
talentSkills: 'talentSkills',
|
|
296
298
|
createdAt: 'createdAt',
|
|
297
299
|
updatedAt: 'updatedAt'
|
|
298
300
|
};
|