@creator.co/creatorco-prisma-client 1.0.45 → 1.0.46
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 +19 -4
- package/index-browser.js +15 -0
- package/index.d.ts +2036 -246
- package/index.js +19 -4
- package/package.json +1 -1
- package/schema.prisma +16 -0
- package/wasm.js +15 -0
package/index-browser.js
CHANGED
|
@@ -882,6 +882,16 @@ exports.Prisma.ImpactRadiusEventScalarFieldEnum = {
|
|
|
882
882
|
optInId: 'optInId'
|
|
883
883
|
};
|
|
884
884
|
|
|
885
|
+
exports.Prisma.ShareASaleEventScalarFieldEnum = {
|
|
886
|
+
id: 'id',
|
|
887
|
+
transactionId: 'transactionId',
|
|
888
|
+
created: 'created',
|
|
889
|
+
saleAmount: 'saleAmount',
|
|
890
|
+
commission: 'commission',
|
|
891
|
+
metaData: 'metaData',
|
|
892
|
+
optInId: 'optInId'
|
|
893
|
+
};
|
|
894
|
+
|
|
885
895
|
exports.Prisma.CreatorSearchFilterScalarFieldEnum = {
|
|
886
896
|
id: 'id',
|
|
887
897
|
brandId: 'brandId',
|
|
@@ -1319,6 +1329,10 @@ exports.Prisma.ImpactRadiusEventOrderByRelevanceFieldEnum = {
|
|
|
1319
1329
|
type: 'type'
|
|
1320
1330
|
};
|
|
1321
1331
|
|
|
1332
|
+
exports.Prisma.ShareASaleEventOrderByRelevanceFieldEnum = {
|
|
1333
|
+
transactionId: 'transactionId'
|
|
1334
|
+
};
|
|
1335
|
+
|
|
1322
1336
|
exports.Prisma.CreatorSearchFilterOrderByRelevanceFieldEnum = {
|
|
1323
1337
|
title: 'title'
|
|
1324
1338
|
};
|
|
@@ -1431,6 +1445,7 @@ exports.Prisma.ModelName = {
|
|
|
1431
1445
|
OptInView: 'OptInView',
|
|
1432
1446
|
RakutenActivity: 'RakutenActivity',
|
|
1433
1447
|
ImpactRadiusEvent: 'ImpactRadiusEvent',
|
|
1448
|
+
ShareASaleEvent: 'ShareASaleEvent',
|
|
1434
1449
|
CreatorSearchFilter: 'CreatorSearchFilter',
|
|
1435
1450
|
Sequence: 'Sequence',
|
|
1436
1451
|
SequenceStep: 'SequenceStep',
|