@a_team/prisma 3.13.8-win → 3.14.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 +56 -4
- package/dist/client/index-browser.js +52 -0
- package/dist/client/index.d.ts +5932 -2757
- package/dist/client/index.js +58 -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 +69 -0
- package/dist/client/wasm.js +52 -0
- package/package.json +2 -2
|
@@ -281,6 +281,27 @@ exports.Prisma.ExperienceScalarFieldEnum = {
|
|
|
281
281
|
skills: 'skills'
|
|
282
282
|
};
|
|
283
283
|
|
|
284
|
+
exports.Prisma.InvoiceScalarFieldEnum = {
|
|
285
|
+
id: 'id',
|
|
286
|
+
type: 'type',
|
|
287
|
+
totalAmount: 'totalAmount',
|
|
288
|
+
status: 'status',
|
|
289
|
+
downloadURL: 'downloadURL',
|
|
290
|
+
referenceNumber: 'referenceNumber',
|
|
291
|
+
relatedInvoices: 'relatedInvoices',
|
|
292
|
+
key: 'key',
|
|
293
|
+
stripeCustomerId: 'stripeCustomerId',
|
|
294
|
+
paymentTerms: 'paymentTerms',
|
|
295
|
+
currency: 'currency',
|
|
296
|
+
createdAt: 'createdAt',
|
|
297
|
+
dueDate: 'dueDate',
|
|
298
|
+
paidAt: 'paidAt',
|
|
299
|
+
issuedAt: 'issuedAt',
|
|
300
|
+
paymentCycle: 'paymentCycle',
|
|
301
|
+
mission: 'mission',
|
|
302
|
+
accountId: 'accountId'
|
|
303
|
+
};
|
|
304
|
+
|
|
284
305
|
exports.Prisma.LinkedInRecommendationScalarFieldEnum = {
|
|
285
306
|
id: 'id',
|
|
286
307
|
userId: 'userId',
|
|
@@ -389,6 +410,16 @@ exports.Prisma.MissionSpecScalarFieldEnum = {
|
|
|
389
410
|
workingHoursNumberOfMinutesOverlap: 'workingHoursNumberOfMinutesOverlap'
|
|
390
411
|
};
|
|
391
412
|
|
|
413
|
+
exports.Prisma.PaymentCycleScalarFieldEnum = {
|
|
414
|
+
id: 'id',
|
|
415
|
+
mission: 'mission',
|
|
416
|
+
status: 'status',
|
|
417
|
+
createdAt: 'createdAt',
|
|
418
|
+
updatedAt: 'updatedAt',
|
|
419
|
+
startDate: 'startDate',
|
|
420
|
+
endDate: 'endDate'
|
|
421
|
+
};
|
|
422
|
+
|
|
392
423
|
exports.Prisma.ProposalScalarFieldEnum = {
|
|
393
424
|
id: 'id',
|
|
394
425
|
createdBy: 'createdBy',
|
|
@@ -576,6 +607,20 @@ exports.ExperienceType = exports.$Enums.ExperienceType = {
|
|
|
576
607
|
project: 'project'
|
|
577
608
|
};
|
|
578
609
|
|
|
610
|
+
exports.InvoiceType = exports.$Enums.InvoiceType = {
|
|
611
|
+
MissionPaymentCycle: 'MissionPaymentCycle',
|
|
612
|
+
MissionRoleTimesheet: 'MissionRoleTimesheet',
|
|
613
|
+
MissionRolePlatformFee: 'MissionRolePlatformFee',
|
|
614
|
+
WorkspacePaymentCycle: 'WorkspacePaymentCycle'
|
|
615
|
+
};
|
|
616
|
+
|
|
617
|
+
exports.InvoicePaymentStatus = exports.$Enums.InvoicePaymentStatus = {
|
|
618
|
+
Paid: 'Paid',
|
|
619
|
+
Canceled: 'Canceled',
|
|
620
|
+
Created: 'Created',
|
|
621
|
+
Static: 'Static'
|
|
622
|
+
};
|
|
623
|
+
|
|
579
624
|
exports.MissionStatus = exports.$Enums.MissionStatus = {
|
|
580
625
|
Spec: 'Spec',
|
|
581
626
|
Formation: 'Formation',
|
|
@@ -602,6 +647,11 @@ exports.MissionSpecStatus = exports.$Enums.MissionSpecStatus = {
|
|
|
602
647
|
published: 'published'
|
|
603
648
|
};
|
|
604
649
|
|
|
650
|
+
exports.PaymentCycleStatus = exports.$Enums.PaymentCycleStatus = {
|
|
651
|
+
Open: 'Open',
|
|
652
|
+
Closed: 'Closed'
|
|
653
|
+
};
|
|
654
|
+
|
|
605
655
|
exports.ProposalSchemaVersion = exports.$Enums.ProposalSchemaVersion = {
|
|
606
656
|
v1: 'v1',
|
|
607
657
|
v2: 'v2',
|
|
@@ -799,11 +849,13 @@ exports.Prisma.ModelName = {
|
|
|
799
849
|
Company: 'Company',
|
|
800
850
|
Contract: 'Contract',
|
|
801
851
|
Experience: 'Experience',
|
|
852
|
+
Invoice: 'Invoice',
|
|
802
853
|
LinkedInRecommendation: 'LinkedInRecommendation',
|
|
803
854
|
Mission: 'Mission',
|
|
804
855
|
MissionApplication: 'MissionApplication',
|
|
805
856
|
MissionPrefill: 'MissionPrefill',
|
|
806
857
|
MissionSpec: 'MissionSpec',
|
|
858
|
+
PaymentCycle: 'PaymentCycle',
|
|
807
859
|
Proposal: 'Proposal',
|
|
808
860
|
RoleCategory: 'RoleCategory',
|
|
809
861
|
Solution: 'Solution',
|