@creator.co/creatorco-prisma-client 1.0.24-alpha-273a26f → 1.0.25
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/edge.js +15 -12
- package/index-browser.js +9 -6
- package/index.d.ts +126 -4
- package/index.js +15 -12
- package/libquery_engine-darwin-arm64.dylib.node +0 -0
- package/libquery_engine-darwin.dylib.node +0 -0
- package/libquery_engine-debian-openssl-3.0.x.so.node +0 -0
- package/libquery_engine-linux-arm64-openssl-1.0.x.so.node +0 -0
- package/libquery_engine-linux-arm64-openssl-3.0.x.so.node +0 -0
- package/libquery_engine-linux-musl-arm64-openssl-3.0.x.so.node +0 -0
- package/package.json +1 -1
- package/query_engine-windows.dll.node +0 -0
- package/runtime/edge-esm.js +14 -14
- package/runtime/edge.js +12 -12
- package/runtime/library.d.ts +16 -6
- package/runtime/library.js +5 -5
- package/runtime/wasm.js +8 -8
- package/schema.prisma +3 -0
- package/wasm.js +9 -6
package/index-browser.js
CHANGED
|
@@ -16,12 +16,12 @@ exports.Prisma = Prisma
|
|
|
16
16
|
exports.$Enums = {}
|
|
17
17
|
|
|
18
18
|
/**
|
|
19
|
-
* Prisma Client JS version: 5.
|
|
20
|
-
* Query Engine version:
|
|
19
|
+
* Prisma Client JS version: 5.12.1
|
|
20
|
+
* Query Engine version: 473ed3124229e22d881cb7addf559799debae1ab
|
|
21
21
|
*/
|
|
22
22
|
Prisma.prismaVersion = {
|
|
23
|
-
client: "5.
|
|
24
|
-
engine: "
|
|
23
|
+
client: "5.12.1",
|
|
24
|
+
engine: "473ed3124229e22d881cb7addf559799debae1ab"
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
Prisma.PrismaClientKnownRequestError = () => {
|
|
@@ -384,6 +384,7 @@ exports.Prisma.CampaignScalarFieldEnum = {
|
|
|
384
384
|
status: 'status',
|
|
385
385
|
date: 'date',
|
|
386
386
|
publishDate: 'publishDate',
|
|
387
|
+
sfSyncDate: 'sfSyncDate',
|
|
387
388
|
description: 'description',
|
|
388
389
|
productDescription: 'productDescription',
|
|
389
390
|
prizeDescription: 'prizeDescription',
|
|
@@ -599,7 +600,8 @@ exports.Prisma.BrandImageScalarFieldEnum = {
|
|
|
599
600
|
exports.Prisma.CountryScalarFieldEnum = {
|
|
600
601
|
id: 'id',
|
|
601
602
|
countryCode: 'countryCode',
|
|
602
|
-
countryName: 'countryName'
|
|
603
|
+
countryName: 'countryName',
|
|
604
|
+
teleCode: 'teleCode'
|
|
603
605
|
};
|
|
604
606
|
|
|
605
607
|
exports.Prisma.StateScalarFieldEnum = {
|
|
@@ -1113,7 +1115,8 @@ exports.Prisma.BrandImageOrderByRelevanceFieldEnum = {
|
|
|
1113
1115
|
|
|
1114
1116
|
exports.Prisma.CountryOrderByRelevanceFieldEnum = {
|
|
1115
1117
|
countryCode: 'countryCode',
|
|
1116
|
-
countryName: 'countryName'
|
|
1118
|
+
countryName: 'countryName',
|
|
1119
|
+
teleCode: 'teleCode'
|
|
1117
1120
|
};
|
|
1118
1121
|
|
|
1119
1122
|
exports.Prisma.StateOrderByRelevanceFieldEnum = {
|