@creator.co/creatorco-prisma-client 1.0.50-alpha-73636ce → 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 +21 -4
- package/index-browser.js +17 -0
- package/index.d.ts +3057 -256
- package/index.js +21 -4
- package/package.json +1 -1
- package/schema.prisma +20 -0
- package/wasm.js +17 -0
package/index-browser.js
CHANGED
|
@@ -884,6 +884,18 @@ exports.Prisma.ImpactRadiusEventScalarFieldEnum = {
|
|
|
884
884
|
optInId: 'optInId'
|
|
885
885
|
};
|
|
886
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
|
+
|
|
887
899
|
exports.Prisma.ShareASaleEventScalarFieldEnum = {
|
|
888
900
|
id: 'id',
|
|
889
901
|
transactionId: 'transactionId',
|
|
@@ -1360,6 +1372,10 @@ exports.Prisma.ImpactRadiusEventOrderByRelevanceFieldEnum = {
|
|
|
1360
1372
|
type: 'type'
|
|
1361
1373
|
};
|
|
1362
1374
|
|
|
1375
|
+
exports.Prisma.CJEventOrderByRelevanceFieldEnum = {
|
|
1376
|
+
type: 'type'
|
|
1377
|
+
};
|
|
1378
|
+
|
|
1363
1379
|
exports.Prisma.ShareASaleEventOrderByRelevanceFieldEnum = {
|
|
1364
1380
|
transactionId: 'transactionId'
|
|
1365
1381
|
};
|
|
@@ -1486,6 +1502,7 @@ exports.Prisma.ModelName = {
|
|
|
1486
1502
|
OptInView: 'OptInView',
|
|
1487
1503
|
RakutenActivity: 'RakutenActivity',
|
|
1488
1504
|
ImpactRadiusEvent: 'ImpactRadiusEvent',
|
|
1505
|
+
CJEvent: 'CJEvent',
|
|
1489
1506
|
ShareASaleEvent: 'ShareASaleEvent',
|
|
1490
1507
|
CreatorSearchFilter: 'CreatorSearchFilter',
|
|
1491
1508
|
Sequence: 'Sequence',
|