@creator.co/creatorco-prisma-client 1.0.57 → 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 +26 -5
- package/index-browser.js +22 -1
- package/index.d.ts +2042 -126
- package/index.js +26 -5
- package/package.json +1 -1
- package/schema.prisma +48 -31
- package/wasm.js +22 -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',
|
|
@@ -844,7 +855,9 @@ exports.Prisma.MessageTemplateScalarFieldEnum = {
|
|
|
844
855
|
label: 'label',
|
|
845
856
|
template: 'template',
|
|
846
857
|
brandId: 'brandId',
|
|
847
|
-
metaData: 'metaData'
|
|
858
|
+
metaData: 'metaData',
|
|
859
|
+
createdAt: 'createdAt',
|
|
860
|
+
updatedAt: 'updatedAt'
|
|
848
861
|
};
|
|
849
862
|
|
|
850
863
|
exports.Prisma.EmailTemplateScalarFieldEnum = {
|
|
@@ -1309,6 +1322,13 @@ exports.Prisma.StateOrderByRelevanceFieldEnum = {
|
|
|
1309
1322
|
stateName: 'stateName'
|
|
1310
1323
|
};
|
|
1311
1324
|
|
|
1325
|
+
exports.Prisma.PendingBrandInvoicePaymentOrderByRelevanceFieldEnum = {
|
|
1326
|
+
invoiceId: 'invoiceId',
|
|
1327
|
+
type: 'type',
|
|
1328
|
+
source: 'source',
|
|
1329
|
+
status: 'status'
|
|
1330
|
+
};
|
|
1331
|
+
|
|
1312
1332
|
exports.Prisma.PaymentTransactionOrderByRelevanceFieldEnum = {
|
|
1313
1333
|
type: 'type',
|
|
1314
1334
|
notes: 'notes'
|
|
@@ -1519,6 +1539,7 @@ exports.Prisma.ModelName = {
|
|
|
1519
1539
|
BrandImage: 'BrandImage',
|
|
1520
1540
|
Country: 'Country',
|
|
1521
1541
|
State: 'State',
|
|
1542
|
+
PendingBrandInvoicePayment: 'PendingBrandInvoicePayment',
|
|
1522
1543
|
PaymentTransaction: 'PaymentTransaction',
|
|
1523
1544
|
ExternalAffiliateClick: 'ExternalAffiliateClick',
|
|
1524
1545
|
BrandAffiliateLink: 'BrandAffiliateLink',
|