@creator.co/creatorco-prisma-client 1.0.10 → 1.0.12
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 +23 -5
- package/index-browser.js +15 -1
- package/index.d.ts +1656 -2
- package/index.js +27 -5
- package/libquery_engine-linux-arm64-openssl-1.0.x.so.node +0 -0
- package/package.json +1 -1
- package/schema.prisma +13 -1
package/index-browser.js
CHANGED
|
@@ -778,6 +778,15 @@ exports.Prisma.SlowQueriesScalarFieldEnum = {
|
|
|
778
778
|
environment: 'environment'
|
|
779
779
|
};
|
|
780
780
|
|
|
781
|
+
exports.Prisma.CreatorSearchFilterScalarFieldEnum = {
|
|
782
|
+
id: 'id',
|
|
783
|
+
brandId: 'brandId',
|
|
784
|
+
title: 'title',
|
|
785
|
+
filters: 'filters',
|
|
786
|
+
createdAt: 'createdAt',
|
|
787
|
+
updatedAt: 'updatedAt'
|
|
788
|
+
};
|
|
789
|
+
|
|
781
790
|
exports.Prisma.SortOrder = {
|
|
782
791
|
asc: 'asc',
|
|
783
792
|
desc: 'desc'
|
|
@@ -1095,6 +1104,10 @@ exports.Prisma.SlowQueriesOrderByRelevanceFieldEnum = {
|
|
|
1095
1104
|
environment: 'environment'
|
|
1096
1105
|
};
|
|
1097
1106
|
|
|
1107
|
+
exports.Prisma.CreatorSearchFilterOrderByRelevanceFieldEnum = {
|
|
1108
|
+
title: 'title'
|
|
1109
|
+
};
|
|
1110
|
+
|
|
1098
1111
|
|
|
1099
1112
|
exports.Prisma.ModelName = {
|
|
1100
1113
|
User: 'User',
|
|
@@ -1150,7 +1163,8 @@ exports.Prisma.ModelName = {
|
|
|
1150
1163
|
ListToSocialPost: 'ListToSocialPost',
|
|
1151
1164
|
OptInView: 'OptInView',
|
|
1152
1165
|
RakutenActivity: 'RakutenActivity',
|
|
1153
|
-
SlowQueries: 'SlowQueries'
|
|
1166
|
+
SlowQueries: 'SlowQueries',
|
|
1167
|
+
CreatorSearchFilter: 'CreatorSearchFilter'
|
|
1154
1168
|
};
|
|
1155
1169
|
|
|
1156
1170
|
/**
|