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