@creator.co/creatorco-prisma-client 1.0.34-alpha-925d6bb → 1.0.34-alpha-6895cd0
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 +43 -8
- package/index-browser.js +39 -4
- package/index.d.ts +7810 -2932
- package/index.js +43 -8
- package/package.json +1 -1
- package/schema.prisma +54 -17
- package/wasm.js +39 -4
package/index-browser.js
CHANGED
|
@@ -458,9 +458,31 @@ 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
|
+
id: 'id',
|
|
484
|
+
optInId: 'optInId',
|
|
485
|
+
productListItemId: 'productListItemId'
|
|
464
486
|
};
|
|
465
487
|
|
|
466
488
|
exports.Prisma.VariableScalarFieldEnum = {
|
|
@@ -468,7 +490,7 @@ exports.Prisma.VariableScalarFieldEnum = {
|
|
|
468
490
|
title: 'title',
|
|
469
491
|
description: 'description',
|
|
470
492
|
metaData: 'metaData',
|
|
471
|
-
|
|
493
|
+
campaignId: 'campaignId'
|
|
472
494
|
};
|
|
473
495
|
|
|
474
496
|
exports.Prisma.VariableOptionScalarFieldEnum = {
|
|
@@ -1063,6 +1085,16 @@ exports.Prisma.CampaignToImageOrderByRelevanceFieldEnum = {
|
|
|
1063
1085
|
type: 'type'
|
|
1064
1086
|
};
|
|
1065
1087
|
|
|
1088
|
+
exports.Prisma.ProductListOrderByRelevanceFieldEnum = {
|
|
1089
|
+
title: 'title',
|
|
1090
|
+
description: 'description'
|
|
1091
|
+
};
|
|
1092
|
+
|
|
1093
|
+
exports.Prisma.ProductListItemOrderByRelevanceFieldEnum = {
|
|
1094
|
+
title: 'title',
|
|
1095
|
+
description: 'description'
|
|
1096
|
+
};
|
|
1097
|
+
|
|
1066
1098
|
exports.Prisma.VariableOrderByRelevanceFieldEnum = {
|
|
1067
1099
|
title: 'title',
|
|
1068
1100
|
description: 'description'
|
|
@@ -1286,7 +1318,10 @@ exports.Prisma.ModelName = {
|
|
|
1286
1318
|
CampaignToImage: 'CampaignToImage',
|
|
1287
1319
|
CampaignToCategory: 'CampaignToCategory',
|
|
1288
1320
|
CampaignToCountry: 'CampaignToCountry',
|
|
1289
|
-
|
|
1321
|
+
ProductList: 'ProductList',
|
|
1322
|
+
ProductListItem: 'ProductListItem',
|
|
1323
|
+
CampaignToProductList: 'CampaignToProductList',
|
|
1324
|
+
OptinToProductListItem: 'OptinToProductListItem',
|
|
1290
1325
|
Variable: 'Variable',
|
|
1291
1326
|
VariableOption: 'VariableOption',
|
|
1292
1327
|
Step: 'Step',
|