@creator.co/creatorco-prisma-client 1.0.33 → 1.0.34-alpha-925d6bb
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 +17 -11
- package/index-browser.js +11 -5
- package/index.d.ts +3088 -2428
- package/index.js +17 -11
- 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 +7 -1
- package/query_engine-windows.dll.node +0 -0
- package/runtime/edge-esm.js +16 -16
- package/runtime/edge.js +15 -15
- package/runtime/library.d.ts +34 -13
- package/runtime/library.js +46 -46
- package/runtime/react-native.js +77 -0
- package/runtime/wasm.js +17 -17
- package/schema.prisma +17 -4
- package/wasm.js +11 -5
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.13.0
|
|
20
|
+
* Query Engine version: b9a39a7ee606c28e3455d0fd60e78c3ba82b1a2b
|
|
21
21
|
*/
|
|
22
22
|
Prisma.prismaVersion = {
|
|
23
|
-
client: "5.
|
|
24
|
-
engine: "
|
|
23
|
+
client: "5.13.0",
|
|
24
|
+
engine: "b9a39a7ee606c28e3455d0fd60e78c3ba82b1a2b"
|
|
25
25
|
}
|
|
26
26
|
|
|
27
27
|
Prisma.PrismaClientKnownRequestError = () => {
|
|
@@ -458,12 +458,17 @@ exports.Prisma.CampaignToCountryScalarFieldEnum = {
|
|
|
458
458
|
countryId: 'countryId'
|
|
459
459
|
};
|
|
460
460
|
|
|
461
|
+
exports.Prisma.CampaignToVariableScalarFieldEnum = {
|
|
462
|
+
campaignId: 'campaignId',
|
|
463
|
+
variableId: 'variableId'
|
|
464
|
+
};
|
|
465
|
+
|
|
461
466
|
exports.Prisma.VariableScalarFieldEnum = {
|
|
462
467
|
id: 'id',
|
|
463
468
|
title: 'title',
|
|
464
469
|
description: 'description',
|
|
465
470
|
metaData: 'metaData',
|
|
466
|
-
|
|
471
|
+
brandId: 'brandId'
|
|
467
472
|
};
|
|
468
473
|
|
|
469
474
|
exports.Prisma.VariableOptionScalarFieldEnum = {
|
|
@@ -1281,6 +1286,7 @@ exports.Prisma.ModelName = {
|
|
|
1281
1286
|
CampaignToImage: 'CampaignToImage',
|
|
1282
1287
|
CampaignToCategory: 'CampaignToCategory',
|
|
1283
1288
|
CampaignToCountry: 'CampaignToCountry',
|
|
1289
|
+
CampaignToVariable: 'CampaignToVariable',
|
|
1284
1290
|
Variable: 'Variable',
|
|
1285
1291
|
VariableOption: 'VariableOption',
|
|
1286
1292
|
Step: 'Step',
|