@creator.co/creatorco-prisma-client 1.0.61-alpha-b23a5b2 → 1.0.61
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 +28 -35
- package/index-browser.js +24 -31
- package/index.d.ts +2531 -1588
- package/index.js +28 -35
- package/package.json +1 -1
- package/schema.prisma +30 -29
- package/wasm.js +24 -31
package/index-browser.js
CHANGED
|
@@ -958,8 +958,7 @@ exports.Prisma.SequenceScalarFieldEnum = {
|
|
|
958
958
|
createdAt: 'createdAt',
|
|
959
959
|
completed: 'completed',
|
|
960
960
|
brandId: 'brandId',
|
|
961
|
-
enabled: 'enabled'
|
|
962
|
-
emailCredentialsId: 'emailCredentialsId'
|
|
961
|
+
enabled: 'enabled'
|
|
963
962
|
};
|
|
964
963
|
|
|
965
964
|
exports.Prisma.SequenceStepScalarFieldEnum = {
|
|
@@ -1064,7 +1063,7 @@ exports.Prisma.BrandContractScalarFieldEnum = {
|
|
|
1064
1063
|
brandId: 'brandId',
|
|
1065
1064
|
createdAt: 'createdAt',
|
|
1066
1065
|
updatedAt: 'updatedAt',
|
|
1067
|
-
|
|
1066
|
+
fileId: 'fileId',
|
|
1068
1067
|
contractType: 'contractType',
|
|
1069
1068
|
startDate: 'startDate',
|
|
1070
1069
|
endDate: 'endDate',
|
|
@@ -1073,22 +1072,20 @@ exports.Prisma.BrandContractScalarFieldEnum = {
|
|
|
1073
1072
|
editedByUserId: 'editedByUserId'
|
|
1074
1073
|
};
|
|
1075
1074
|
|
|
1076
|
-
exports.Prisma.
|
|
1077
|
-
id: 'id',
|
|
1078
|
-
|
|
1079
|
-
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
|
|
1086
|
-
|
|
1087
|
-
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
metaData: 'metaData',
|
|
1091
|
-
brandId: 'brandId'
|
|
1075
|
+
exports.Prisma.FileScalarFieldEnum = {
|
|
1076
|
+
id: 'id',
|
|
1077
|
+
brandId: 'brandId',
|
|
1078
|
+
name: 'name',
|
|
1079
|
+
description: 'description',
|
|
1080
|
+
status: 'status',
|
|
1081
|
+
md5: 'md5',
|
|
1082
|
+
type: 'type',
|
|
1083
|
+
size: 'size',
|
|
1084
|
+
createdByUserId: 'createdByUserId',
|
|
1085
|
+
editedByUserId: 'editedByUserId',
|
|
1086
|
+
createdAt: 'createdAt',
|
|
1087
|
+
updatedAt: 'updatedAt',
|
|
1088
|
+
archivedAt: 'archivedAt'
|
|
1092
1089
|
};
|
|
1093
1090
|
|
|
1094
1091
|
exports.Prisma.SortOrder = {
|
|
@@ -1503,20 +1500,16 @@ exports.Prisma.CreatorFlagOrderByRelevanceFieldEnum = {
|
|
|
1503
1500
|
};
|
|
1504
1501
|
|
|
1505
1502
|
exports.Prisma.BrandContractOrderByRelevanceFieldEnum = {
|
|
1506
|
-
|
|
1503
|
+
fileId: 'fileId',
|
|
1507
1504
|
contractType: 'contractType'
|
|
1508
1505
|
};
|
|
1509
1506
|
|
|
1510
|
-
exports.Prisma.
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
smtpReplyToEmail: 'smtpReplyToEmail',
|
|
1517
|
-
imapHost: 'imapHost',
|
|
1518
|
-
imapUser: 'imapUser',
|
|
1519
|
-
imapPassword: 'imapPassword'
|
|
1507
|
+
exports.Prisma.FileOrderByRelevanceFieldEnum = {
|
|
1508
|
+
id: 'id',
|
|
1509
|
+
name: 'name',
|
|
1510
|
+
description: 'description',
|
|
1511
|
+
md5: 'md5',
|
|
1512
|
+
type: 'type'
|
|
1520
1513
|
};
|
|
1521
1514
|
exports.trolleyPaymentType = exports.$Enums.trolleyPaymentType = {
|
|
1522
1515
|
optIn: 'optIn',
|
|
@@ -1625,7 +1618,7 @@ exports.Prisma.ModelName = {
|
|
|
1625
1618
|
ShopifySale: 'ShopifySale',
|
|
1626
1619
|
CreatorFlag: 'CreatorFlag',
|
|
1627
1620
|
BrandContract: 'BrandContract',
|
|
1628
|
-
|
|
1621
|
+
File: 'File'
|
|
1629
1622
|
};
|
|
1630
1623
|
|
|
1631
1624
|
/**
|