@creator.co/creatorco-prisma-client 1.0.58 → 1.0.60
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 +44 -5
- package/index-browser.js +40 -1
- package/index.d.ts +5822 -947
- package/index.js +44 -5
- package/package.json +1 -1
- package/schema.prisma +68 -25
- package/wasm.js +40 -1
package/index-browser.js
CHANGED
|
@@ -693,6 +693,17 @@ exports.Prisma.StateScalarFieldEnum = {
|
|
|
693
693
|
stateName: 'stateName'
|
|
694
694
|
};
|
|
695
695
|
|
|
696
|
+
exports.Prisma.PendingBrandInvoicePaymentScalarFieldEnum = {
|
|
697
|
+
id: 'id',
|
|
698
|
+
invoiceId: 'invoiceId',
|
|
699
|
+
type: 'type',
|
|
700
|
+
source: 'source',
|
|
701
|
+
brandId: 'brandId',
|
|
702
|
+
status: 'status',
|
|
703
|
+
createdAt: 'createdAt',
|
|
704
|
+
updatedAt: 'updatedAt'
|
|
705
|
+
};
|
|
706
|
+
|
|
696
707
|
exports.Prisma.PaymentTransactionScalarFieldEnum = {
|
|
697
708
|
id: 'id',
|
|
698
709
|
amount: 'amount',
|
|
@@ -1047,6 +1058,20 @@ exports.Prisma.CreatorFlagScalarFieldEnum = {
|
|
|
1047
1058
|
editedByUserId: 'editedByUserId'
|
|
1048
1059
|
};
|
|
1049
1060
|
|
|
1061
|
+
exports.Prisma.BrandContractScalarFieldEnum = {
|
|
1062
|
+
id: 'id',
|
|
1063
|
+
brandId: 'brandId',
|
|
1064
|
+
createdAt: 'createdAt',
|
|
1065
|
+
updatedAt: 'updatedAt',
|
|
1066
|
+
file: 'file',
|
|
1067
|
+
contractType: 'contractType',
|
|
1068
|
+
startDate: 'startDate',
|
|
1069
|
+
endDate: 'endDate',
|
|
1070
|
+
archivedAt: 'archivedAt',
|
|
1071
|
+
createdByUserId: 'createdByUserId',
|
|
1072
|
+
editedByUserId: 'editedByUserId'
|
|
1073
|
+
};
|
|
1074
|
+
|
|
1050
1075
|
exports.Prisma.SortOrder = {
|
|
1051
1076
|
asc: 'asc',
|
|
1052
1077
|
desc: 'desc'
|
|
@@ -1311,6 +1336,13 @@ exports.Prisma.StateOrderByRelevanceFieldEnum = {
|
|
|
1311
1336
|
stateName: 'stateName'
|
|
1312
1337
|
};
|
|
1313
1338
|
|
|
1339
|
+
exports.Prisma.PendingBrandInvoicePaymentOrderByRelevanceFieldEnum = {
|
|
1340
|
+
invoiceId: 'invoiceId',
|
|
1341
|
+
type: 'type',
|
|
1342
|
+
source: 'source',
|
|
1343
|
+
status: 'status'
|
|
1344
|
+
};
|
|
1345
|
+
|
|
1314
1346
|
exports.Prisma.PaymentTransactionOrderByRelevanceFieldEnum = {
|
|
1315
1347
|
type: 'type',
|
|
1316
1348
|
notes: 'notes'
|
|
@@ -1450,6 +1482,11 @@ exports.Prisma.CreatorFlagOrderByRelevanceFieldEnum = {
|
|
|
1450
1482
|
comment: 'comment',
|
|
1451
1483
|
color: 'color'
|
|
1452
1484
|
};
|
|
1485
|
+
|
|
1486
|
+
exports.Prisma.BrandContractOrderByRelevanceFieldEnum = {
|
|
1487
|
+
file: 'file',
|
|
1488
|
+
contractType: 'contractType'
|
|
1489
|
+
};
|
|
1453
1490
|
exports.trolleyPaymentType = exports.$Enums.trolleyPaymentType = {
|
|
1454
1491
|
optIn: 'optIn',
|
|
1455
1492
|
tip: 'tip',
|
|
@@ -1521,6 +1558,7 @@ exports.Prisma.ModelName = {
|
|
|
1521
1558
|
BrandImage: 'BrandImage',
|
|
1522
1559
|
Country: 'Country',
|
|
1523
1560
|
State: 'State',
|
|
1561
|
+
PendingBrandInvoicePayment: 'PendingBrandInvoicePayment',
|
|
1524
1562
|
PaymentTransaction: 'PaymentTransaction',
|
|
1525
1563
|
ExternalAffiliateClick: 'ExternalAffiliateClick',
|
|
1526
1564
|
BrandAffiliateLink: 'BrandAffiliateLink',
|
|
@@ -1554,7 +1592,8 @@ exports.Prisma.ModelName = {
|
|
|
1554
1592
|
CampaignToShopifyProduct: 'CampaignToShopifyProduct',
|
|
1555
1593
|
ShopifyDiscountCode: 'ShopifyDiscountCode',
|
|
1556
1594
|
ShopifySale: 'ShopifySale',
|
|
1557
|
-
CreatorFlag: 'CreatorFlag'
|
|
1595
|
+
CreatorFlag: 'CreatorFlag',
|
|
1596
|
+
BrandContract: 'BrandContract'
|
|
1558
1597
|
};
|
|
1559
1598
|
|
|
1560
1599
|
/**
|