@a_team/prisma 3.8.6-win → 3.9.0-linux
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/dist/client/edge.js +22 -4
- package/dist/client/index-browser.js +18 -0
- package/dist/client/index.d.ts +2402 -224
- package/dist/client/index.js +24 -6
- package/dist/client/{query_engine-windows.dll.node → libquery_engine-linux-musl-openssl-3.0.x.so.node} +0 -0
- package/dist/client/package.json +1 -1
- package/dist/client/schema.prisma +68 -27
- package/dist/client/wasm.js +18 -0
- package/package.json +2 -2
|
@@ -126,6 +126,13 @@ exports.Prisma.AccountScalarFieldEnum = {
|
|
|
126
126
|
migrations: 'migrations'
|
|
127
127
|
};
|
|
128
128
|
|
|
129
|
+
exports.Prisma.BillingAccountScalarFieldEnum = {
|
|
130
|
+
id: 'id',
|
|
131
|
+
clientCompany: 'clientCompany',
|
|
132
|
+
createdAt: 'createdAt',
|
|
133
|
+
updatedAt: 'updatedAt'
|
|
134
|
+
};
|
|
135
|
+
|
|
129
136
|
exports.Prisma.ClientCompanyScalarFieldEnum = {
|
|
130
137
|
id: 'id',
|
|
131
138
|
createdAt: 'createdAt',
|
|
@@ -474,6 +481,16 @@ exports.InternalOnboardingStage = exports.$Enums.InternalOnboardingStage = {
|
|
|
474
481
|
ProfileCompleteWithPendingApplication: 'ProfileCompleteWithPendingApplication'
|
|
475
482
|
};
|
|
476
483
|
|
|
484
|
+
exports.BillingPaymentDue = exports.$Enums.BillingPaymentDue = {
|
|
485
|
+
Net0: 'Net0',
|
|
486
|
+
Net15: 'Net15',
|
|
487
|
+
Net30: 'Net30',
|
|
488
|
+
Net45: 'Net45',
|
|
489
|
+
Net60: 'Net60',
|
|
490
|
+
Net90: 'Net90',
|
|
491
|
+
Net120: 'Net120'
|
|
492
|
+
};
|
|
493
|
+
|
|
477
494
|
exports.ContractPartyType = exports.$Enums.ContractPartyType = {
|
|
478
495
|
BillingCustomer: 'BillingCustomer',
|
|
479
496
|
MissionRole: 'MissionRole',
|
|
@@ -560,6 +577,7 @@ exports.MissionRoleVisibilityStatus = exports.$Enums.MissionRoleVisibilityStatus
|
|
|
560
577
|
|
|
561
578
|
exports.Prisma.ModelName = {
|
|
562
579
|
Account: 'Account',
|
|
580
|
+
BillingAccount: 'BillingAccount',
|
|
563
581
|
ClientCompany: 'ClientCompany',
|
|
564
582
|
Company: 'Company',
|
|
565
583
|
Contract: 'Contract',
|