@creator.co/creatorco-prisma-client 1.0.58 → 1.0.59
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 +2153 -307
- package/index.js +23 -4
- package/package.json +1 -1
- package/schema.prisma +40 -25
- package/wasm.js +19 -0
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',
|
|
@@ -1311,6 +1322,13 @@ exports.Prisma.StateOrderByRelevanceFieldEnum = {
|
|
|
1311
1322
|
stateName: 'stateName'
|
|
1312
1323
|
};
|
|
1313
1324
|
|
|
1325
|
+
exports.Prisma.PendingBrandInvoicePaymentOrderByRelevanceFieldEnum = {
|
|
1326
|
+
invoiceId: 'invoiceId',
|
|
1327
|
+
type: 'type',
|
|
1328
|
+
source: 'source',
|
|
1329
|
+
status: 'status'
|
|
1330
|
+
};
|
|
1331
|
+
|
|
1314
1332
|
exports.Prisma.PaymentTransactionOrderByRelevanceFieldEnum = {
|
|
1315
1333
|
type: 'type',
|
|
1316
1334
|
notes: 'notes'
|
|
@@ -1521,6 +1539,7 @@ exports.Prisma.ModelName = {
|
|
|
1521
1539
|
BrandImage: 'BrandImage',
|
|
1522
1540
|
Country: 'Country',
|
|
1523
1541
|
State: 'State',
|
|
1542
|
+
PendingBrandInvoicePayment: 'PendingBrandInvoicePayment',
|
|
1524
1543
|
PaymentTransaction: 'PaymentTransaction',
|
|
1525
1544
|
ExternalAffiliateClick: 'ExternalAffiliateClick',
|
|
1526
1545
|
BrandAffiliateLink: 'BrandAffiliateLink',
|