@creator.co/creatorco-prisma-client 1.0.34-alpha-925d6bb → 1.0.34
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 +42 -8
- package/index-browser.js +38 -4
- package/index.d.ts +7784 -2939
- package/index.js +42 -8
- package/package.json +1 -1
- package/schema.prisma +62 -18
- package/wasm.js +38 -4
package/index-browser.js
CHANGED
|
@@ -458,9 +458,30 @@ exports.Prisma.CampaignToCountryScalarFieldEnum = {
|
|
|
458
458
|
countryId: 'countryId'
|
|
459
459
|
};
|
|
460
460
|
|
|
461
|
-
exports.Prisma.
|
|
461
|
+
exports.Prisma.ProductListScalarFieldEnum = {
|
|
462
|
+
id: 'id',
|
|
463
|
+
title: 'title',
|
|
464
|
+
description: 'description',
|
|
465
|
+
metaData: 'metaData',
|
|
466
|
+
brandId: 'brandId'
|
|
467
|
+
};
|
|
468
|
+
|
|
469
|
+
exports.Prisma.ProductListItemScalarFieldEnum = {
|
|
470
|
+
id: 'id',
|
|
471
|
+
title: 'title',
|
|
472
|
+
description: 'description',
|
|
473
|
+
metaData: 'metaData',
|
|
474
|
+
productListId: 'productListId'
|
|
475
|
+
};
|
|
476
|
+
|
|
477
|
+
exports.Prisma.CampaignToProductListScalarFieldEnum = {
|
|
462
478
|
campaignId: 'campaignId',
|
|
463
|
-
|
|
479
|
+
productListId: 'productListId'
|
|
480
|
+
};
|
|
481
|
+
|
|
482
|
+
exports.Prisma.OptinToProductListItemScalarFieldEnum = {
|
|
483
|
+
optInId: 'optInId',
|
|
484
|
+
productListItemId: 'productListItemId'
|
|
464
485
|
};
|
|
465
486
|
|
|
466
487
|
exports.Prisma.VariableScalarFieldEnum = {
|
|
@@ -468,7 +489,7 @@ exports.Prisma.VariableScalarFieldEnum = {
|
|
|
468
489
|
title: 'title',
|
|
469
490
|
description: 'description',
|
|
470
491
|
metaData: 'metaData',
|
|
471
|
-
|
|
492
|
+
campaignId: 'campaignId'
|
|
472
493
|
};
|
|
473
494
|
|
|
474
495
|
exports.Prisma.VariableOptionScalarFieldEnum = {
|
|
@@ -1063,6 +1084,16 @@ exports.Prisma.CampaignToImageOrderByRelevanceFieldEnum = {
|
|
|
1063
1084
|
type: 'type'
|
|
1064
1085
|
};
|
|
1065
1086
|
|
|
1087
|
+
exports.Prisma.ProductListOrderByRelevanceFieldEnum = {
|
|
1088
|
+
title: 'title',
|
|
1089
|
+
description: 'description'
|
|
1090
|
+
};
|
|
1091
|
+
|
|
1092
|
+
exports.Prisma.ProductListItemOrderByRelevanceFieldEnum = {
|
|
1093
|
+
title: 'title',
|
|
1094
|
+
description: 'description'
|
|
1095
|
+
};
|
|
1096
|
+
|
|
1066
1097
|
exports.Prisma.VariableOrderByRelevanceFieldEnum = {
|
|
1067
1098
|
title: 'title',
|
|
1068
1099
|
description: 'description'
|
|
@@ -1286,7 +1317,10 @@ exports.Prisma.ModelName = {
|
|
|
1286
1317
|
CampaignToImage: 'CampaignToImage',
|
|
1287
1318
|
CampaignToCategory: 'CampaignToCategory',
|
|
1288
1319
|
CampaignToCountry: 'CampaignToCountry',
|
|
1289
|
-
|
|
1320
|
+
ProductList: 'ProductList',
|
|
1321
|
+
ProductListItem: 'ProductListItem',
|
|
1322
|
+
CampaignToProductList: 'CampaignToProductList',
|
|
1323
|
+
OptinToProductListItem: 'OptinToProductListItem',
|
|
1290
1324
|
Variable: 'Variable',
|
|
1291
1325
|
VariableOption: 'VariableOption',
|
|
1292
1326
|
Step: 'Step',
|