@creator.co/creatorco-prisma-client 1.0.50 → 1.0.51-alpha-c446596
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 -4
- package/index-browser.js +19 -0
- package/index.d.ts +3154 -225
- package/index.js +23 -4
- package/package.json +1 -1
- package/schema.prisma +21 -0
- package/wasm.js +19 -0
package/index-browser.js
CHANGED
|
@@ -121,6 +121,7 @@ exports.Prisma.TransactionIsolationLevel = makeStrictEnum({
|
|
|
121
121
|
|
|
122
122
|
exports.Prisma.UserScalarFieldEnum = {
|
|
123
123
|
id: 'id',
|
|
124
|
+
idmId: 'idmId',
|
|
124
125
|
role: 'role',
|
|
125
126
|
email: 'email',
|
|
126
127
|
password: 'password',
|
|
@@ -883,6 +884,18 @@ exports.Prisma.ImpactRadiusEventScalarFieldEnum = {
|
|
|
883
884
|
optInId: 'optInId'
|
|
884
885
|
};
|
|
885
886
|
|
|
887
|
+
exports.Prisma.CJEventScalarFieldEnum = {
|
|
888
|
+
id: 'id',
|
|
889
|
+
type: 'type',
|
|
890
|
+
created: 'created',
|
|
891
|
+
amount: 'amount',
|
|
892
|
+
commission: 'commission',
|
|
893
|
+
metaData: 'metaData',
|
|
894
|
+
userId: 'userId',
|
|
895
|
+
brandId: 'brandId',
|
|
896
|
+
optInId: 'optInId'
|
|
897
|
+
};
|
|
898
|
+
|
|
886
899
|
exports.Prisma.ShareASaleEventScalarFieldEnum = {
|
|
887
900
|
id: 'id',
|
|
888
901
|
transactionId: 'transactionId',
|
|
@@ -1041,6 +1054,7 @@ exports.Prisma.NullsOrder = {
|
|
|
1041
1054
|
};
|
|
1042
1055
|
|
|
1043
1056
|
exports.Prisma.UserOrderByRelevanceFieldEnum = {
|
|
1057
|
+
idmId: 'idmId',
|
|
1044
1058
|
role: 'role',
|
|
1045
1059
|
email: 'email',
|
|
1046
1060
|
password: 'password',
|
|
@@ -1358,6 +1372,10 @@ exports.Prisma.ImpactRadiusEventOrderByRelevanceFieldEnum = {
|
|
|
1358
1372
|
type: 'type'
|
|
1359
1373
|
};
|
|
1360
1374
|
|
|
1375
|
+
exports.Prisma.CJEventOrderByRelevanceFieldEnum = {
|
|
1376
|
+
type: 'type'
|
|
1377
|
+
};
|
|
1378
|
+
|
|
1361
1379
|
exports.Prisma.ShareASaleEventOrderByRelevanceFieldEnum = {
|
|
1362
1380
|
transactionId: 'transactionId'
|
|
1363
1381
|
};
|
|
@@ -1484,6 +1502,7 @@ exports.Prisma.ModelName = {
|
|
|
1484
1502
|
OptInView: 'OptInView',
|
|
1485
1503
|
RakutenActivity: 'RakutenActivity',
|
|
1486
1504
|
ImpactRadiusEvent: 'ImpactRadiusEvent',
|
|
1505
|
+
CJEvent: 'CJEvent',
|
|
1487
1506
|
ShareASaleEvent: 'ShareASaleEvent',
|
|
1488
1507
|
CreatorSearchFilter: 'CreatorSearchFilter',
|
|
1489
1508
|
Sequence: 'Sequence',
|