@creator.co/creatorco-prisma-client 1.0.13 → 1.0.15
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 +24 -6
- package/index-browser.js +20 -2
- package/index.d.ts +2564 -217
- package/index.js +24 -6
- package/package.json +1 -1
- package/schema.prisma +18 -0
package/index-browser.js
CHANGED
|
@@ -303,7 +303,8 @@ exports.Prisma.BrandScalarFieldEnum = {
|
|
|
303
303
|
affiliateCommission: 'affiliateCommission',
|
|
304
304
|
extraData: 'extraData',
|
|
305
305
|
specialistId: 'specialistId',
|
|
306
|
-
parentBrandId: 'parentBrandId'
|
|
306
|
+
parentBrandId: 'parentBrandId',
|
|
307
|
+
searchName: 'searchName'
|
|
307
308
|
};
|
|
308
309
|
|
|
309
310
|
exports.Prisma.SearchContactsScalarFieldEnum = {
|
|
@@ -767,6 +768,17 @@ exports.Prisma.RakutenActivityScalarFieldEnum = {
|
|
|
767
768
|
userId: 'userId'
|
|
768
769
|
};
|
|
769
770
|
|
|
771
|
+
exports.Prisma.ImpactRadiusEventScalarFieldEnum = {
|
|
772
|
+
id: 'id',
|
|
773
|
+
type: 'type',
|
|
774
|
+
created: 'created',
|
|
775
|
+
amount: 'amount',
|
|
776
|
+
commission: 'commission',
|
|
777
|
+
metaData: 'metaData',
|
|
778
|
+
userId: 'userId',
|
|
779
|
+
brandId: 'brandId'
|
|
780
|
+
};
|
|
781
|
+
|
|
770
782
|
exports.Prisma.CreatorSearchFilterScalarFieldEnum = {
|
|
771
783
|
id: 'id',
|
|
772
784
|
brandId: 'brandId',
|
|
@@ -943,7 +955,8 @@ exports.Prisma.BrandOrderByRelevanceFieldEnum = {
|
|
|
943
955
|
description: 'description',
|
|
944
956
|
website: 'website',
|
|
945
957
|
logoUrl: 'logoUrl',
|
|
946
|
-
affiliateBaseUrl: 'affiliateBaseUrl'
|
|
958
|
+
affiliateBaseUrl: 'affiliateBaseUrl',
|
|
959
|
+
searchName: 'searchName'
|
|
947
960
|
};
|
|
948
961
|
|
|
949
962
|
exports.Prisma.SearchContactsOrderByRelevanceFieldEnum = {
|
|
@@ -1132,6 +1145,10 @@ exports.Prisma.RakutenActivityOrderByRelevanceFieldEnum = {
|
|
|
1132
1145
|
orderId: 'orderId'
|
|
1133
1146
|
};
|
|
1134
1147
|
|
|
1148
|
+
exports.Prisma.ImpactRadiusEventOrderByRelevanceFieldEnum = {
|
|
1149
|
+
type: 'type'
|
|
1150
|
+
};
|
|
1151
|
+
|
|
1135
1152
|
exports.Prisma.CreatorSearchFilterOrderByRelevanceFieldEnum = {
|
|
1136
1153
|
title: 'title'
|
|
1137
1154
|
};
|
|
@@ -1199,6 +1216,7 @@ exports.Prisma.ModelName = {
|
|
|
1199
1216
|
ListToSocialPost: 'ListToSocialPost',
|
|
1200
1217
|
OptInView: 'OptInView',
|
|
1201
1218
|
RakutenActivity: 'RakutenActivity',
|
|
1219
|
+
ImpactRadiusEvent: 'ImpactRadiusEvent',
|
|
1202
1220
|
CreatorSearchFilter: 'CreatorSearchFilter',
|
|
1203
1221
|
Sequence: 'Sequence',
|
|
1204
1222
|
SequenceStep: 'SequenceStep',
|